/* 继承通用样式 */
body.glass-body {
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    min-height: 100vh;
    padding-bottom: 120px;
    position: relative;
}

/* 玻璃态卡片 */
.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 24px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    margin: 15px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

/* 信息区块 */
.info-section {
    margin-bottom: 15px;
}

.section-header {
    padding: 20px;
    background: linear-gradient(135deg, rgba(236, 0, 0, 0.05) 0%, rgba(193, 0, 0, 0.05) 100%);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}

.section-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 18px;
    font-weight: 700;
    color: #1a1a1a;
    margin-bottom: 8px;
}

.section-title i {
    color: #ec0000;
    font-size: 20px;
}

.section-desc {
    font-size: 13px;
    color: #666;
    margin-top: 4px;
    line-height: 1.5;
}

.info-list {
    padding: 10px 0;
}

/* 信息项 - 玻璃态效果 */
.info-item.glass-item {
    display: flex;
    align-items: center;
    padding: 18px 20px;
    text-decoration: none;
    color: #333;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.info-item.glass-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 0;
    background: linear-gradient(90deg, rgba(236, 0, 0, 0.05), transparent);
    transition: width 0.3s ease;
}

.info-item.glass-item:hover::before,
.info-item.glass-item:active::before {
    width: 100%;
}

.info-item.glass-item:last-child {
    border-bottom: none;
}

.info-item.glass-item:active {
    background: rgba(236, 0, 0, 0.03);
    transform: scale(0.98);
}

/* 图标样式 - 渐变背景 */
.item-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-right: 15px;
    flex-shrink: 0;
    transition: transform 0.3s ease;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
}

.icon-identity {
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
}

.icon-company {
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
}

.icon-bank {
    background: linear-gradient(135deg, #4facfe 0%, #00f2fe 100%);
    color: white;
}

.info-item.glass-item:hover .item-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
}

.item-content {
    flex: 1;
    min-width: 0;
}

.item-title {
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    margin-bottom: 6px;
    transition: color 0.3s ease;
}

.item-desc {
    font-size: 13px;
    color: #666;
    line-height: 1.4;
}

.item-status {
    display: flex;
    align-items: center;
    gap: 12px;
}

/* 状态徽章 - 现代化设计 */
.status-badge {
    padding: 6px 14px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.status-badge.complete {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

.status-badge.incomplete {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(245, 158, 11, 0.3);
}

.item-status i {
    color: #ccc;
    font-size: 14px;
    transition: color 0.3s ease, transform 0.3s ease;
}

.info-item.glass-item:hover .item-status i {
    color: #ec0000;
    transform: translateX(4px);
}

/* 完成状态的特殊样式 */
.info-item.completed {
    opacity: 0.8;
    pointer-events: none;
    cursor: not-allowed;
}

.info-item.completed .item-icon {
    opacity: 0.7;
}

.info-item.completed .item-content {
    opacity: 0.7;
}

.info-item.completed:hover .item-icon {
    transform: none;
}

/* 进度指示器 */
.progress-section {
    margin: 15px;
    padding: 20px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 12px;
}

.progress-label {
    font-size: 14px;
    font-weight: 600;
    color: #333;
}

.progress-percent {
    font-size: 16px;
    font-weight: 700;
    color: #ec0000;
}

.progress-bar {
    height: 8px;
    background: rgba(0, 0, 0, 0.05);
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, #ec0000 0%, #c10000 100%);
    border-radius: 10px;
    width: 0%;
    transition: width 0.5s ease;
    box-shadow: 0 2px 8px rgba(236, 0, 0, 0.3);
}

/* 操作按钮 */
.action-bar {
    padding: 15px;
    position: fixed;
    bottom: 70px;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.1);
    z-index: 50;
}

.action-btn.gradient-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    height: 50px;
    background: linear-gradient(135deg, #ec0000 0%, #c10000 100%);
    color: #fff;
    border: none;
    border-radius: 25px;
    font-size: 16px;
    font-weight: 600;
    text-decoration: none;
    box-shadow: 0 6px 20px rgba(236, 0, 0, 0.4);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.action-btn.gradient-btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s ease, height 0.6s ease;
}

.action-btn.gradient-btn:active::before {
    width: 300px;
    height: 300px;
}

.action-btn.gradient-btn:active {
    transform: scale(0.98);
    box-shadow: 0 4px 15px rgba(236, 0, 0, 0.4);
}

.action-btn.gradient-btn i {
    font-size: 18px;
}

/* 响应式设计 */
@media (max-width: 375px) {
    .item-icon {
        width: 48px;
        height: 48px;
        font-size: 20px;
    }
    
    .item-title {
        font-size: 15px;
    }
    
    .item-desc {
        font-size: 12px;
    }
    
    .section-title {
        font-size: 16px;
    }
}
