/* User/Index/style.css - 任务管理系统样式表（含已完成按钮绿色样式） */

/* ==================== 基础重置 ==================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "PingFang SC", "Microsoft YaHei", sans-serif;
}
body {
    background-color: #f0f9ff;
    color: #333;
    font-size: 14px;
    line-height: 1.5;
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
    overflow: hidden;
}
.app-container {
    width: 400px;
    max-width: 100%;
    background-color: #fff;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    display: flex;
    flex-direction: column;
    height: 700px;
    border: 1px solid #e1f5fe;
    overflow: hidden;
    position: relative;
    min-height: 100%;
    border-radius: 20px;
}
@media (max-width: 767px) {
    body {
        padding: 0;
    }
    .app-container {
        width: 100%;
        height: 100vh;
        border-radius: 0 !important;
    }
}
.avatar-header {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 16px;
    border-bottom: 1px solid #f0f9ff;
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    flex-shrink: 0;
    position: relative;
}
.back-btn {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    border: none;
    background: rgba(255, 255, 255, 0.3);
    cursor: pointer;
    font-size: 18px;
    color: #fff;
    transition: all 0.3s ease;
}
.back-btn:hover {
    background: rgba(255, 255, 255, 0.5);
    transform: translateY(-50%) scale(1.1);
}
.page-title {
    font-size: 18px;
    font-weight: bold;
    color: #fff;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.1);
}
.page-content {
    flex: 1;
    padding: 16px;
    overflow-y: auto !important;
    -webkit-overflow-scrolling: touch;
    background-color: #f8fbff;
    padding-bottom: 70px !important;
    scrollbar-width: none;
    -ms-overflow-style: none;
}
.page-content::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}
.toast {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: rgba(0, 0, 0, 0.8);
    color: white;
    padding: 12px 24px;
    border-radius: 8px;
    z-index: 9999;
    font-size: 14px;
    animation: fadeInOut 2s ease-in-out;
    display: none;
}
@keyframes fadeInOut {
    0% { opacity: 0; top: 10px; }
    15% { opacity: 1; top: 20px; }
    85% { opacity: 1; top: 20px; }
    100% { opacity: 0; top: 10px; }
}
.modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000;
    display: none;
    padding-top: 20px;
    padding-bottom: 80px !important;
}
#checkModal {
    z-index: 1001 !important;
}
.modal-content {
    background-color: white;
    border-radius: 20px;
    width: 90%;
    max-width: 420px;
    overflow: hidden;
    animation: modalSlideIn 0.3s ease;
    display: flex;
    flex-direction: column;
    max-height: calc(100vh - 100px) !important;
    margin-top: 0;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.15);
    border: 1px solid rgba(255, 255, 255, 0.3);
}
@keyframes modalSlideIn {
    from { opacity: 0; transform: translateY(-50px); }
    to { opacity: 1; transform: translateY(0); }
}
.modal-header {
    padding: 20px 24px;
    border-bottom: 1px solid #f0f9ff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-shrink: 0;
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
    color: white;
}
.modal-title { 
    font-size: 18px; 
    font-weight: bold; 
    color: white;
}
.close-modal {
    background: rgba(255, 255, 255, 0.3);
    border: none;
    font-size: 20px;
    color: white;
    cursor: pointer;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.close-modal:hover { 
    background: rgba(255, 255, 255, 0.5); 
    transform: rotate(90deg);
}
.modal-body { 
    padding: 24px; 
    overflow-y: auto; 
    flex: 1;
    background: #f8fbff;
}
.modal-body::-webkit-scrollbar { display: none; }
.modal-footer {
    padding: 20px 24px;
    border-top: 1px solid #f0f9ff;
    display: flex;
    gap: 12px;
    flex-shrink: 0;
    background: white;
}
.modal-button {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.5px;
}
.modal-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.modal-button.confirm {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    color: #333;
}
.modal-button.cancel {
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
    color: #333;
}
.modal-button.cancel:hover {
    background: linear-gradient(135deg, #fda085 0%, #f6d365 100%);
}
.modal-button.pass { 
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); 
    color: #333; 
}
.modal-button.reject { 
    background: linear-gradient(135deg, #fda085 0%, #f6d365 100%); 
    color: #333; 
}

/* 上传区域样式 */
.upload-area {
    border: 2px dashed #4dc9ff;
    border-radius: 12px;
    padding: 40px 20px; /* 增加内边距 */
    text-align: center;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-bottom: 20px;
    background: linear-gradient(135deg, #f5fdff 0%, #e6f7ff 100%);
    display: flex; /* 改为flex布局 */
    flex-direction: column; /* 垂直方向排列 */
    align-items: center; /* 水平居中 */
    justify-content: center; /* 垂直居中 */
    gap: 12px; /* 子元素间距 */
    min-height: 160px; /* 最小高度确保有足够空间 */
    width: 100%;
    box-sizing: border-box;
    position: relative;
    overflow: hidden; /* 防止内容溢出 */
}

.upload-area:hover {
    border-color: #0084ff;
    background: #f0f7ff;
}

.upload-icon {
    font-size: 48px;
    color: #ccc;
    margin-bottom: 12px;
}

.upload-text {
    font-size: 16px;
    font-weight: 600;
    color: #333;
    margin-bottom: 8px;
}

.upload-hint {
    font-size: 12px;
    color: #999;
}

.x-stats-section {
    margin-bottom: 16px;
}
.x-stat-card {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    color: #333;
    border-radius: 16px;
    padding: 20px;
    box-shadow: 0 8px 25px rgba(132, 250, 176, 0.2);
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px;
}
.x-actions { 
    display: flex; 
    gap: 12px; 
    margin-bottom: 0;
}
.x-action-btn {
    flex: 1;
    padding: 14px;
    border: none;
    border-radius: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    color: #333;
    transition: all 0.3s ease;
}
.x-action-btn:hover { 
    transform: translateY(-2px); 
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}
.publish-btn { 
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
}
.refresh-btn { 
    background: linear-gradient(135deg, #f6d365 0%, #fda085 100%);
}
.fullscreen-mode .x-stats-section,
.fullscreen-mode .x-actions {
    display: none !important;
}
.fullscreen-mode .xs-section {
    height: 100% !important;
    margin: 0 !important;
    border-radius: 0 !important;
    box-shadow: none !important;
    background: transparent !important;
}
.fullscreen-mode .xs-section .section-header {
    display: none !important;
}
.fullscreen-mode .xs-section .xs-list {
    height: 100% !important;
    padding: 0 !important;
    margin: 0 !important;
}

.xs-list {
    max-height: 400px;
    overflow-y: auto;
    
    scrollbar-width: none;
    -ms-overflow-style: none;
    display: flex;
    flex-direction: column; /* 改为垂直排列 */
    gap: 0; /* 去掉卡片之间的gap，改为margin控制 */
    padding: 0; /* 去掉所有内边距 */
    background-color: transparent !important; /* 确保透明 */
}
/* 全屏模式下也保持透明（避免原有样式覆盖） */
.fullscreen-mode .xs-list {
    max-height: none !important;
    height: 100% !important;
    overflow-y: auto !important;
    padding: 16px !important;
    background-color: transparent !important; /* 强制透明 */
}
.stat-item { 
    text-align: center;
    flex: 1;
}
.stat-label { 
    font-size: 12px; 
    opacity: 0.9; 
    margin-bottom: 4px; 
    color: rgba(0, 0, 0, 0.7);
}
.stat-value { 
    font-size: 20px; 
    font-weight: bold; 
}
/* 务必确保 xs-section 也为透明（否则会挡住 page-content 背景） */
.xs-section {
    background-color: transparent; /* 之前要求的透明，必须保留 */
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0,0,0,0.05);
}
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 16px;
    border-bottom: 1px solid #f0f9ff;
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%);
}
.section-title { 
    font-size: 16px; 
    font-weight: bold; 
    color: #333; 
}
.view-all { 
    font-size: 14px; 
    color: #00b7ff; 
    cursor: pointer; 
    text-decoration: none; 
    font-weight: 500;
}
.x-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.x-admin-ops {
    display: flex;
    flex-direction: column;
    gap: 6px;
    width: 60px;
    flex-shrink: 0;
}
.x-admin-ops .x-op-btn {
    width: 100%;
    padding: 6px 0;
    font-size: 12px;
}
/* 隐藏滚动条 */
.xs-list::-webkit-scrollbar {
    display: none;
    width: 0;
    background: transparent;
}

/* 如果 xs-list 有父元素背景，需要去掉 */
.xs-section {
    background-color: transparent !important; /* 确保section背景透明 */
    box-shadow: none !important; /* 去掉阴影 */
    border-radius: 0 !important; /* 去掉圆角 */
    overflow: visible !important; /* 允许内容显示 */
}

/* section-header 背景保持，但列表区域透明 */
.xs-section .section-header {
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%); /* 保持header背景 */
    border-radius: 16px 16px 0 0; /* 只给header圆角 */
    margin-bottom: 0px; /* header和列表之间的间距 */
}


.x-item {
    padding: 20px;
    border-radius: 16px;
    display: flex;
    flex-direction: column;
    justify-content: space-between; /* 改为 space-between 让内容撑开 */
    align-items: flex-start;
    position: relative;
    cursor: pointer;
    
    min-height: 140px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fdff 100%);
    transition: all 0.3s ease;
    margin-top: 12px; /* 用margin控制卡片之间的间距 */
    /* 去掉底部边距，确保贴紧 */
    margin-bottom: 0 !important; /* 强制去掉底部边距 */
    
    /* 添加边框和阴影 */
    border: 1px solid rgba(0, 183, 255, 0.15);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05),
                0 2px 6px rgba(0, 183, 255, 0.08);
    
    /* 单列布局设置 */
    width: 100%;
    flex: 0 0 auto; /* 改为固定高度，不自动伸缩 */
}

.x-item:hover {
    background: linear-gradient(135deg, #f8fdff 0%, #f0f9ff 100%);
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(0, 183, 255, 0.15);
}
.x-item:last-child { margin-bottom: 0; }
.x-item.invalid {
    position: relative;
    background: linear-gradient(135deg, #ffffff 0%, #f5f5f5 100%);
    opacity: 0.8;
}
@media (min-width: 768px) {
    .x-item {
        flex: 1 1 calc(50% - 12px);
    }
}
.x-invalid-watermark {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(-30deg);
    font-size: 28px;
    font-weight: bold;
    color: rgba(255, 77, 79, 0.2);
    border: 3px solid rgba(255, 77, 79, 0.3);
    padding: 15px 30px;
    border-radius: 8px;
    z-index: 100;
    pointer-events: none;
    text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
    background: rgba(255, 255, 255, 0.7);
    white-space: nowrap;
}

.x-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
}
.x-title-text {
    font-size: 16px;
    font-weight: 500;
    color: #333;
    flex: 1;
    margin-right: 12px;
    word-break: break-word;
    line-height: 1.4;
}
.x-reward {
    font-size: 16px;
    font-weight: bold;
    color: #ff6b6b;
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%);
    padding: 6px 12px;
    border-radius: 10px;
    flex-shrink: 0;
    border: 1px solid #ffcccb;
}
.x-desc {
    display: none;
}
.x-bottom {
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    font-size: 12px;
    margin-top: 4px;
}
.x-meta {
    display: flex;
    flex-direction: column;
    gap: 4px;
    color: #666;
}
.x-meta-item { 
    white-space: nowrap; 
    overflow: hidden; 
    text-overflow: ellipsis;
    line-height: 1.3;
}

/* ==================== 用户按钮样式（Element UI风格） ==================== */
/* 专门针对用户视图中的按钮，不修改管理员按钮 */
.x-status, .x-op-btn {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 10px;
    font-size: 13px;
    font-weight: 500;
    line-height: 1.2;
    border: none; /* 移除边框，适配渐变色 */
    cursor: pointer;
    text-align: center;
    min-width: 80px;
    width: 100%;
    transition: all 0.3s ease;
}

.x-status:hover, .x-op-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 8px rgba(0, 0, 0, 0.1);
}

/* 状态标签保持原样 */
.status-valid { background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%); color: #006064; }
.status-expired { background: linear-gradient(135deg, #f5f5f5 0%, #e0e0e0 100%); color: #616161; }
.status-checking { background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%); color: #e65100; }
.status-passed { background: linear-gradient(135deg, #e8f5e9 0%, #c8e6c9 100%); color: #1b5e20; }
.status-rejected { background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%); color: #c62828; }

/* ==================== 用户操作按钮（Element UI风格） ==================== */
/* 已完成按钮 - 绿色背景，黑色文字，Element UI风格 */
.x-op-btn.approved { 
    background: linear-gradient(135deg, #67c23a 0%, #85ce61 100%);
    color: white;
    border: 1px solid #67c23a;
    box-shadow: 0 2px 4px rgba(103, 194, 58, 0.2);
}

.x-op-btn.approved:hover:not(:disabled) { 
    background: linear-gradient(135deg, #5daf34 0%, #78be50 100%);
    border-color: #5daf34;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(103, 194, 58, 0.3);
}

.x-op-btn.approved:active:not(:disabled) { 
    background: linear-gradient(135deg, #529b2e 0%, #6bad45 100%);
    border-color: #529b2e;
    transform: translateY(0);
    box-shadow: 0 2px 4px rgba(103, 194, 58, 0.2);
}

.x-op-btn.approved:disabled { 
    background: linear-gradient(135deg, #b3e19d 0%, #c2e7b0 100%);
    color: rgba(255, 255, 255, 0.8);
    border-color: #b3e19d;
    cursor: not-allowed;
    opacity: 0.8;
}

/* 正在处理按钮 - 黄色背景，黑色文字，Element UI风格 */
.x-op-btn.processing { 
    background-color: #ffaa33; 
    color: #fff; 
    border: 1px solid #faecd8;
}
.x-op-btn.processing:hover { 
    background-color: #faecd8; 
    border-color: #f8d9b0;
}

/* 已驳回按钮 - 红色背景，黑色文字，Element UI风格 */
.x-op-btn.rejected { 
    background-color: #fef0f0; 
    color: #333; 
    border: 1px solid #fde2e2;
}
.x-op-btn.rejected:hover:not(:disabled) { 
    background-color: #fde2e2; 
    border-color: #fbc4c4;
}

/* 完成任务按钮（蓝色）保持原样 */
.x-op-btn.complete { 
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%); 
    color: #333; 
}
.x-op-btn.complete:disabled { 
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%) !important; 
    color: #757575 !important;
    cursor: not-allowed;
    opacity: 0.7;
}

/* 重新提交按钮 - 紫色背景，黑色文字，Element UI风格 */
.x-op-btn.resubmit { 
    background-color: #f3e5f5; 
    color: #333; 
    border: 1px solid #e1bee7;
}
.x-op-btn.resubmit:hover:not(:disabled) { 
    background-color: #e1bee7; 
    border-color: #d1a0d9;
}

/* 审核按钮保持原样 */
.x-op-btn.check { 
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%); 
    color: #006064; 
}

/* 管理员操作按钮保持原样 */
.x-op-btn.edit { 
    background: linear-gradient(135deg, #fff3e0 0%, #ffe0b2 100%); 
    color: #e65100; 
}
.x-op-btn.view { 
    background: linear-gradient(135deg, #e0f7fa 0%, #b2ebf2 100%); 
    color: #006064; 
}
.x-op-btn.delete { 
    background: linear-gradient(135deg, #ffebee 0%, #ffcdd2 100%); 
    color: #c62828; 
}

/* 禁用状态的统一处理 */
.x-op-btn:disabled {
    background: linear-gradient(135deg, #e0e0e0 0%, #bdbdbd 100%) !important;
    cursor: not-allowed;
    opacity: 0.7;
    color: #757575 !important;
    border: 1px solid #d4d4d4 !important;
}

.op-group { 
    display: flex; 
    gap: 8px; 
    align-items: center;
    flex-wrap: wrap;
    justify-content: flex-end;
}
.empty-xs {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 60px 20px;
    color: #999;
    width: 100%; /* 确保占满整个父容器宽度 */
    height: 100%; /* 确保占满整个父容器高度 */
    min-height: 300px; /* 最小高度确保有足够的空间 */
}
.empty-icon {
    font-size: 64px; /* 增大图标 */
    margin-bottom: 16px;
    opacity: 0.5;
    color: #b0e0e6; /* 柔和的蓝色 */
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, rgba(224, 247, 250, 0.3) 0%, rgba(178, 235, 242, 0.3) 100%);
    border-radius: 50%;
    margin-left: auto;
    margin-right: auto;
}
.empty-text {
    font-size: 16px;
    color: #666;
    font-weight: 500;
    margin-top: 8px;
    text-align: center;
    width: 100%;;
}
.form-group { margin-bottom: 20px; }
.form-label {
    display: block;
    font-size: 14px;
    color: #555;
    margin-bottom: 8px;
    font-weight: 500;
}
.form-input, .form-textarea {
    width: 100%;
    padding: 14px 16px;
    border: 2px solid #e1f5fe;
    border-radius: 12px;
    font-size: 16px;
    outline: none;
    transition: all 0.3s ease;
    background: white;
}
.form-input:focus, .form-textarea:focus { 
    border-color: #4dc9ff; 
    box-shadow: 0 0 0 3px rgba(77, 201, 255, 0.1);
}
.form-textarea { min-height: 100px; resize: vertical; }
.preview-container {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 16px;
}
.preview-item {
    width: 80px;
    height: 80px;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    border: 2px solid #e1f5fe;
    transition: all 0.3s ease;
}
.preview-item:hover {
    transform: scale(1.05);
    border-color: #4dc9ff;
    box-shadow: 0 3px 10px rgba(77, 201, 255, 0.2);
}
.preview-img { width: 100%; height: 100%; object-fit: cover; }
.preview-delete {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ff6b6b 0%, #ee5a52 100%);
    color: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    cursor: pointer;
    border: 2px solid white;
    transition: all 0.3s ease;
}
.preview-delete:hover {
    transform: scale(1.1);
}
.check-note { 
    padding: 16px; 
    background: linear-gradient(135deg, #f5fdff 0%, #e6f7ff 100%); 
    border-radius: 12px; 
    margin-bottom: 20px; 
    font-size: 14px; 
    color: #333;
    line-height: 1.5;
    border: 1px solid #e1f5fe;
}
.check-img-list { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 10px; 
    margin-bottom: 20px; 
}
.check-img-item { 
    width: 100px; 
    height: 100px; 
    border-radius: 12px; 
    overflow: hidden; 
    border: 2px solid #e1f5fe;
    transition: all 0.3s ease;
}
.check-img-item:hover {
    transform: scale(1.05);
    border-color: #4dc9ff;
    box-shadow: 0 3px 10px rgba(77, 201, 255, 0.2);
}
.check-img { width: 100%; height: 100%; object-fit: cover; }
.record-item {
    padding: 16px;
    border-radius: 12px;
    margin-bottom: 12px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
}
.record-item:last-child {
    margin-bottom: 0;
}
.record-item.pending {
    background: linear-gradient(135deg, #ffd6e7 0%, #ffc2d1 100%);
    border: 1px solid #ff8fab;
}
.record-item.normal {
    background: linear-gradient(135deg, #e3f2fd 0%, #bbdefb 100%);
    border: 1px solid #90caf9;
}
.record-top {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
}
.record-username { font-weight: 500; color: #333; }
.record-time { font-size: 12px; color: #666; }
.record-note { 
    padding: 12px; 
    background: rgba(255, 255, 255, 0.5); 
    border-radius: 8px; 
    font-size: 14px; 
    color: #333; 
    margin-bottom: 12px; 
    line-height: 1.5;
}
.record-img-list { 
    display: flex; 
    flex-wrap: wrap; 
    gap: 8px; 
    margin-bottom: 12px; 
}
.record-img-item { 
    width: 80px; 
    height: 80px; 
    border-radius: 8px; 
    overflow: hidden; 
    border: 1px solid rgba(255, 255, 255, 0.3); 
}
.record-img { width: 100%; height: 100%; object-fit: cover; }
.record-status { 
    display: inline-block; 
    padding: 4px 10px; 
    border-radius: 6px; 
    font-size: 12px; 
    font-weight: 500; 
}
.detail-btn {
    background: linear-gradient(135deg, #84fab0 0%, #8fd3f4 100%);
    color: #333;
    border: none;
    padding: 6px 12px;
    border-radius: 8px;
    font-size: 12px;
    cursor: pointer;
    margin-left: 8px;
    transition: all 0.3s ease;
}
.detail-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 3px 10px rgba(132, 250, 176, 0.3);
}

/* 底部导航样式 */
.app-footer {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: #fff;
    border-top: 1px solid #f0f9ff;
    padding: 12px 0;
    display: flex;
    justify-content: space-around;
    align-items: center;
    z-index: 100;
    background: linear-gradient(135deg, #a1c4fd 0%, #c2e9fb 100%);
}
.footer-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    color: rgba(255, 255, 255, 0.8);
    transition: all 0.3s ease;
    flex: 1;
}
#publishModal .modal-content {
    z-index: 10000;
}
.footer-item.active {
    color: #fff;
    transform: translateY(-2px);
}
.footer-icon {
    font-size: 20px;
}
.footer-text {
    font-size: 11px;
    font-weight: 500;
}