/* 成绩查询页面 - 统一风格 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;
}

/* 主内容区 */
.score-main {
    padding: 0 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

.score-container {
    max-width: 100%;
}

/* 浮动卡片效果 */
.content-card {
    background: #ffffff;
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 24px;
    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);
}

.content-card:first-child {
    margin-top: -50px;
}

/* 公告区域 */
.score-announcement {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
}

.score-announcement h2 {
    font-size: clamp(26px, 4vw, 32px);
    font-weight: 700;
    color: white;
    margin-bottom: 28px;
    text-align: center;
}

.announcement-content {
    max-width: 800px;
    margin: 0 auto;
}

.info-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.info-item {
    padding: 16px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 16px;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.95);
}

.info-item:last-child {
    border-bottom: none;
}

.info-item strong {
    color: white;
    font-weight: 600;
}

.info-item a {
    color: #fff;
    text-decoration: underline;
    transition: opacity 0.3s ease;
}

.info-item a:hover {
    opacity: 0.8;
}

/* 历年分数线 */
.historical-scores h2 {
    font-size: clamp(26px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 28px;
    text-align: center;
    color: #1d1d1f;
}

.cjArea h3 {
    font-size: 18px;
    font-weight: 600;
    color: #ff6b35;
    margin: 28px 0 16px;
    text-align: center;
}

.cjArea h3.lkTit {
    margin-top: 40px;
}

/* 分数线表格 */
.cjArea table {
    width: 100%;
    border-collapse: collapse;
    background: #f5f5f7;
    border-radius: 16px;
    overflow: hidden;
    font-size: 14px;
}

.cjArea th,
.cjArea td {
    padding: 14px 8px;
    text-align: center;
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.cjArea .wkTit th {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    font-weight: 600;
    font-size: 13px;
}

.cjArea .c_blue td {
    background: rgba(255, 107, 53, 0.08);
    font-weight: 600;
    color: #1d1d1f;
}

.cjArea .c_white td {
    background: #ffffff;
    color: #6e6e73;
}

.cjArea td.first {
    font-weight: 600;
    color: #1d1d1f;
    background: #f5f5f7 !important;
}

/* 成绩查询列表 */
.score-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.score-list li {
    border-bottom: 1px solid rgba(0, 0, 0, 0.06);
}

.score-list li:last-child {
    border-bottom: none;
}

.score-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.notice-tag {
    display: inline-block;
    padding: 4px 10px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    color: white;
    font-size: 12px;
    font-weight: 600;
    border-radius: 6px;
    flex-shrink: 0;
}

.score-item a {
    flex: 1;
    font-size: 15px;
    color: #1d1d1f;
    text-decoration: none;
    transition: color 0.3s ease;
    min-width: 200px;
}

.score-item a:hover {
    color: #ff6b35;
}

.score-item .date {
    font-size: 13px;
    color: #6e6e73;
    flex-shrink: 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;
    }
    
    .score-main {
        padding: 0 16px 40px;
    }
    
    .content-card {
        padding: 28px 20px;
        border-radius: 20px;
        margin-bottom: 20px;
    }
    
    .content-card:first-child {
        margin-top: -40px;
    }
    
    .score-announcement h2,
    .historical-scores h2 {
        font-size: clamp(22px, 5vw, 28px);
        margin-bottom: 24px;
    }
    
    .info-item {
        font-size: 15px;
        padding: 14px 0;
    }
    
    .cjArea h3 {
        font-size: 16px;
        margin: 24px 0 12px;
    }
    
    .cjArea table {
        font-size: 11px;
    }
    
    .cjArea th,
    .cjArea td {
        padding: 10px 4px;
    }
    
    .score-item {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
        padding: 14px 0;
    }
    
    .score-item a {
        min-width: auto;
        font-size: 14px;
    }
    
    .notice-tag {
        font-size: 11px;
        padding: 3px 8px;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 90px 12px 60px;
    }
    
    .score-main {
        padding: 0 12px 32px;
    }
    
    .content-card {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .content-card:first-child {
        margin-top: -35px;
    }
    
    .cjArea {
        overflow-x: auto;
        margin: 0 -16px;
        padding: 0 16px;
    }
    
    .cjArea table {
        min-width: 700px;
    }
}
