/* 录取查询页面 - 统一风格 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;
}

/* 主内容区 */
.admission-main {
    padding: 0 24px 60px;
    max-width: 1200px;
    margin: 0 auto;
    min-height: 100vh;
}

.admission-container {
    max-width: 100%;
}

/* 浮动卡片效果 */
.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);
}

.admission-query h2 {
    font-size: clamp(26px, 4vw, 32px);
    font-weight: 700;
    margin-bottom: 32px;
    text-align: center;
    color: #1d1d1f;
}

/* 高亮框 */
.highlight-box {
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 16px;
    padding: 24px;
    margin-bottom: 32px;
}

.highlight-box h3 {
    font-size: 18px;
    font-weight: 600;
    color: white;
    text-align: center;
    margin: 0;
    padding: 0;
}

.highlight-box h3::before {
    display: none;
}

.notice-content h4 {
    font-size: 18px;
    font-weight: 700;
    margin: 36px 0 20px;
    color: #1d1d1f;
    position: relative;
    padding-left: 16px;
}

.notice-content h4::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 20px;
    background: linear-gradient(135deg, #ff6b35 0%, #f7931e 100%);
    border-radius: 2px;
}

/* 录取时间表 */
.admission-schedule {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.schedule-item {
    background: #f5f5f7;
    border-radius: 16px;
    padding: 24px;
    transition: all 0.3s ease;
}

.schedule-item:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.08);
}

.schedule-item h5 {
    font-size: 16px;
    font-weight: 700;
    color: #ff6b35;
    margin-bottom: 12px;
}

.schedule-item p {
    font-size: 14px;
    color: #6e6e73;
    margin-bottom: 12px;
}

.schedule-item ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.schedule-item li {
    font-size: 15px;
    color: #1d1d1f;
    padding: 8px 0;
    padding-left: 20px;
    position: relative;
}

.schedule-item li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #ff6b35;
    border-radius: 50%;
}

/* 提示信息 */
.notice-tip {
    font-size: 15px;
    color: #1d1d1f;
    line-height: 1.7;
    padding: 20px 24px;
    background: linear-gradient(135deg, #fff9e6 0%, #fff5d6 100%);
    border-radius: 12px;
    border-left: 4px solid #f7931e;
    margin: 28px 0;
}

/* 查询方式 */
.query-methods {
    display: grid;
    gap: 16px;
    margin-bottom: 28px;
}

.query-method {
    background: #f5f5f7;
    border-radius: 16px;
    padding: 24px;
}

.query-method h5 {
    font-size: 16px;
    font-weight: 700;
    color: #1d1d1f;
    margin-bottom: 14px;
}

.query-method p {
    font-size: 15px;
    color: #6e6e73;
    line-height: 1.6;
}

.query-method ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.query-method li {
    font-size: 15px;
    color: #1d1d1f;
    padding: 8px 0;
    line-height: 1.6;
}

.query-method a {
    color: #ff6b35;
    text-decoration: none;
    font-weight: 500;
}

.query-method a:hover {
    text-decoration: underline;
}

/* 特别提醒 */
.special-notice {
    background: linear-gradient(135deg, #2196f3 0%, #00bcd4 100%);
    border-radius: 20px;
    padding: 28px;
    margin-top: 36px;
}

.special-notice h4 {
    color: white;
    margin: 0 0 16px 0;
    padding-left: 0;
    font-size: 18px;
}

.special-notice h4::before {
    display: none;
}

.special-notice p {
    font-size: 15px;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.8;
}

/* 响应式 - 平板 */
@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;
    }
    
    .admission-main {
        padding: 0 16px 40px;
    }
    
    .content-card {
        margin: -40px 0 32px;
        padding: 28px 20px;
        border-radius: 20px;
    }
    
    .admission-query h2 {
        font-size: clamp(22px, 5vw, 28px);
        margin-bottom: 24px;
    }
    
    .highlight-box {
        padding: 20px;
        border-radius: 12px;
        margin-bottom: 24px;
    }
    
    .highlight-box h3 {
        font-size: 16px;
    }
    
    .notice-content h4 {
        font-size: 16px;
        margin: 28px 0 16px;
    }
    
    .schedule-item,
    .query-method {
        padding: 20px;
        border-radius: 12px;
    }
    
    .schedule-item h5,
    .query-method h5 {
        font-size: 15px;
        margin-bottom: 12px;
    }
    
    .schedule-item li,
    .query-method li,
    .query-method p {
        font-size: 14px;
    }
    
    .notice-tip {
        font-size: 14px;
        padding: 16px 20px;
        border-radius: 10px;
    }
    
    .special-notice {
        padding: 24px;
        border-radius: 16px;
        margin-top: 28px;
    }
    
    .special-notice h4 {
        font-size: 16px;
    }
    
    .special-notice p {
        font-size: 14px;
        line-height: 1.7;
    }
}

@media (max-width: 480px) {
    .page-hero {
        padding: 90px 12px 60px;
    }
    
    .admission-main {
        padding: 0 12px 32px;
    }
    
    .content-card {
        padding: 24px 16px;
        margin: -35px 0 24px;
        border-radius: 16px;
    }
    
    .highlight-box {
        padding: 16px;
    }
    
    .schedule-item,
    .query-method {
        padding: 16px;
    }
    
    .special-notice {
        padding: 20px;
    }
}
