/* 志愿填报页面 - 统一风格 v2.0 */

/* 页面头部横幅 */
.page-hero {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 50%, #ffb347 100%);
    padding: 120px 24px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.page-hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(255, 255, 255, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(255, 255, 255, 0.1) 0%, transparent 40%);
}

.page-hero h1 {
    font-size: clamp(32px, 6vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 12px;
    position: relative;
    z-index: 1;
}

.page-hero p {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.9);
    position: relative;
    z-index: 1;
}

/* 主内容区 */
.volunteer-main {
    padding: 0 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

/* 浮动卡片效果 */
.content-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    margin: -50px auto 40px;
    position: relative;
    z-index: 10;
    box-shadow: 0 20px 60px rgba(255, 107, 53, 0.15), 0 8px 25px rgba(0, 0, 0, 0.08);
}

/* 标签页 */
.volunteer-tabs {
    display: flex;
    gap: 12px;
    margin-bottom: 32px;
    padding-bottom: 24px;
    border-bottom: 1px solid #f0f0f0;
}

.volunteer-tabs .tab-btn {
    padding: 14px 32px;
    background: #f5f5f7;
    border: 2px solid #f0f0f0;
    border-radius: 50px;
    font-size: 15px;
    font-weight: 600;
    color: #666;
    cursor: pointer;
    transition: all 0.3s ease;
    text-decoration: none;
}

.volunteer-tabs .tab-btn:hover {
    border-color: #ff6b35;
    color: #ff6b35;
}

.volunteer-tabs .tab-btn.active {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-color: transparent;
    color: white;
    box-shadow: 0 4px 15px rgba(255, 107, 53, 0.3);
}

.tab-pane {
    display: none;
}

.tab-pane.active {
    display: block;
}

/* 填报须知内容 */
.notice-content h3 {
    font-size: 22px;
    font-weight: 700;
    margin: 40px 0 20px;
    color: #1d1d1f;
    position: relative;
    padding-left: 16px;
}

.notice-content h3:first-child {
    margin-top: 0;
}

.notice-content h3::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 24px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
}

.notice-content h4 {
    font-size: 18px;
    font-weight: 600;
    margin: 28px 0 16px;
    color: #1d1d1f;
}

/* 时间表格 */
.time-table {
    margin-bottom: 28px;
    overflow-x: auto;
}

.time-table table {
    width: 100%;
    border-collapse: collapse;
    background: #ffffff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
}

.time-table th,
.time-table td {
    padding: 16px 20px;
    text-align: left;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.time-table th {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    font-size: 14px;
    font-weight: 600;
    color: white;
    text-transform: uppercase;
    letter-spacing: 0.02em;
}

.time-table td {
    font-size: 15px;
    color: #1d1d1f;
    line-height: 1.5;
}

.time-table tr:last-child td {
    border-bottom: none;
}

.time-table tr:hover td {
    background: rgba(255, 107, 53, 0.04);
}

/* 维护提示 */
.maintenance-notice {
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
    border-radius: 16px;
    padding: 24px;
    margin: 28px 0;
    border-left: 4px solid #f7931e;
}

.maintenance-notice p {
    font-size: 15px;
    color: #1d1d1f;
    margin-bottom: 8px;
    line-height: 1.6;
}

.maintenance-notice p:last-child {
    margin-bottom: 0;
}

.maintenance-notice a {
    color: #ff6b35;
    font-weight: 600;
    text-decoration: none;
}

.maintenance-notice a:hover {
    text-decoration: underline;
}

/* 填报规则列表 */
.notice-content ol {
    background: #f5f5f7;
    border-radius: 16px;
    padding: 28px 28px 28px 48px;
    margin: 20px 0;
}

.notice-content ol li {
    font-size: 16px;
    color: #1d1d1f;
    line-height: 1.6;
    margin-bottom: 14px;
    padding-left: 8px;
}

.notice-content ol li:last-child {
    margin-bottom: 0;
}

/* 警告框 */
.warning-box {
    background: linear-gradient(135deg, #2196f3 0%, #00bcd4 100%);
    border-radius: 20px;
    padding: 28px;
    margin: 20px 0;
}

.warning-box p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.95);
    line-height: 1.7;
    margin-bottom: 12px;
}

.warning-box p:last-child {
    margin-bottom: 0;
}

/* 响应式 - 平板 */
@media (max-width: 768px) {
    .page-hero {
        padding: 100px 16px 70px;
    }
    
    .page-hero h1 {
        font-size: clamp(26px, 7vw, 36px);
    }
    
    .page-hero p {
        font-size: 15px;
    }
    
    .volunteer-main {
        padding: 0 16px 40px;
    }
    
    .content-card {
        margin: -40px 0 32px;
        padding: 28px 20px;
        border-radius: 20px;
    }
    
    .volunteer-tabs {
        flex-direction: column;
        gap: 10px;
        margin-bottom: 24px;
        padding-bottom: 20px;
    }
    
    .volunteer-tabs .tab-btn {
        text-align: center;
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .notice-content h3 {
        font-size: 19px;
        margin: 32px 0 16px;
    }
    
    .notice-content h4 {
        font-size: 16px;
        margin: 24px 0 14px;
    }
    
    .time-table th,
    .time-table td {
        padding: 12px 14px;
        font-size: 14px;
    }
    
    .maintenance-notice {
        padding: 20px;
        border-radius: 12px;
    }
    
    .maintenance-notice p {
        font-size: 14px;
    }
    
    .notice-content ol {
        padding: 24px 24px 24px 40px;
        border-radius: 12px;
    }
    
    .notice-content ol li {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .warning-box {
        padding: 24px;
        border-radius: 16px;
    }
    
    .warning-box p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 90px 12px 60px;
    }
    
    .volunteer-main {
        padding: 0 12px 32px;
    }
    
    .content-card {
        padding: 24px 16px;
        margin: -35px 0 24px;
        border-radius: 16px;
    }
    
    .volunteer-tabs .tab-btn {
        padding: 12px 20px;
        font-size: 14px;
    }
    
    .time-table {
        font-size: 13px;
    }
    
    .time-table th,
    .time-table td {
        padding: 10px 10px;
    }
    
    .notice-content ol {
        padding: 20px 20px 20px 36px;
    }
    
    .warning-box {
        padding: 20px;
    }
}
