﻿/* ==================== 基础样式 ==================== */
:root {
    --primary-color: #667eea;
    --primary-dark: #5a67d8;
    --secondary-color: #764ba2;
    --accent-color: #f5576c;
    --success-color: #48bb78;
    --warning-color: #ed8936;
    --text-dark: #2d3748;
    --text-gray: #718096;
    --text-light: #a0aec0;
    --bg-light: #f7fafc;
    --bg-white: #ffffff;
    --border-color: #e2e8f0;
    --shadow-sm: 0 2px 4px rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 25px rgba(0, 0, 0, 0.15);
    --shadow-xl: 0 20px 40px rgba(0, 0, 0, 0.2);
    --transition: all 0.3s ease;
    --border-radius: 12px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    color: var(--text-dark);
    background-color: var(--bg-white);
    overflow-x: hidden;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* ==================== 头部导航 ==================== */
.header {
    position: sticky;
    top: 0;
    z-index: 200;
    background: #ffffff;
    border-bottom: 1px solid rgba(102, 126, 234, 0.08);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.header-content {
    display: flex;
    align-items: center;
    height: 64px;
    gap: 32px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--primary-color);
    flex-shrink: 0;
    text-decoration: none;
}

.logo i {
    font-size: 1.5rem;
}

/* ===== 现代化导航链接 ===== */
.nav {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-left: 24px;
    margin-right: auto;
}

.nav a {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 8px 18px;
    font-size: 0.92rem;
    font-weight: 500;
    color: #64748b;
    text-decoration: none;
    border-radius: 8px;
    transition: color 0.2s, background-color 0.2s;
    -webkit-tap-highlight-color: transparent;
}

.nav a:hover {
    color: #667eea;
    background-color: rgba(102, 126, 234, 0.06);
}

.nav a.active {
    color: #667eea;
    background-color: rgba(102, 126, 234, 0.1);
    font-weight: 600;
}

.header-actions {
    display: flex;
    align-items: center;
    gap: 12px;
}
    flex-shrink: 1;
    min-width: 0;
}

.header-search-inline:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102,126,234,0.10);
}

.header-search-inline i {
    color: #b0b8c9;
    font-size: 0.85rem;
    margin-right: 8px;
    flex-shrink: 0;
}

.header-search-inline input {
    flex: 1;
    border: none;
    outline: none;
    padding: 7px 0;
    font-size: 0.85rem;
    background: transparent;
    color: var(--text-dark);
    font-family: inherit;
    min-width: 0;
}

.header-search-inline input::placeholder {
    color: #c0c9d8;
}

.header-search-inline .btn-hs-search {
    padding: 5px 14px;
    background: var(--primary-color);
    color: #fff;
    border: none;
    border-radius: 16px;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.2s;
    font-family: inherit;
    white-space: nowrap;
    flex-shrink: 0;
}

.header-search-inline .btn-hs-search:hover {
    background: var(--primary-dark);
}

/* ==================== 查看全部按钮显示控制 ==================== */
/* 桌面端：只显示桌面按钮 */
.mobile-only-btn {
    display: none !important;
}
.desktop-only-btn {
    display: block !important;
}

/* ≤768px：只显示移动按钮 */
@media (max-width: 768px) {
    .mobile-only-btn {
        display: block !important;
    }
    .desktop-only-btn {
        display: none !important;
    }
}

/* 新闻区域：手机端也要显示查看全部按钮（高优先级覆盖） */
@media (max-width: 768px) {
    .news-section .desktop-only-btn {
        display: block !important;
    }
}

.btn-login {
    background: transparent;
    color: var(--text-dark);
    border: 2px solid var(--border-color);
}

.btn-login:hover {
    border-color: var(--primary-color);
    color: var(--primary-color);
}

.btn-register {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-register:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.5);
}

.mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    font-size: 1.5rem;
    color: var(--text-dark);
    cursor: pointer;
}

/* ===== 移动端头部布局：Logo | 搜索框 | 菜单 ===== */
@media (max-width: 900px) {
    .header-content {
        flex-wrap: nowrap;
        gap: 12px;
    }

    .logo {
        flex-shrink: 0;
        font-size: 1.2rem;
    }

    .logo i {
        font-size: 1.4rem;
    }

    /* 移动端搜索框 - 显示在中间 */
    .mobile-search-box {
        display: flex;
        flex: 1;
        min-width: 0;
        max-width: 200px;
    }

    .mobile-search-input {
        width: 100%;
        display: flex;
        align-items: center;
        background: #f5f6f8;
        border: 1.5px solid transparent;
        border-radius: 20px;
        padding: 0 12px;
        height: 38px;
        transition: border-color 0.2s;
    }

    .mobile-search-input:focus-within {
        border-color: var(--primary-color);
        background: #fff;
    }

    .mobile-search-input i {
        color: #b0b8c9;
        font-size: 0.85rem;
        margin-right: 8px;
    }

    .mobile-search-input input {
        flex: 1;
        border: none;
        outline: none;
        background: transparent;
        font-size: 0.85rem;
        color: var(--text-dark);
        min-width: 0;
    }

    .mobile-search-input input::placeholder {
        color: #c0c9d8;
    }

    /* 移动端菜单按钮 - 放到最右边 */
    .mobile-menu-btn {
        display: flex;
        align-items: center;
        justify-content: center;
        width: 38px;
        height: 38px;
        flex-shrink: 0;
        margin-left: auto;
        background: #f5f6f8;
        border-radius: 10px;
        font-size: 1.1rem;
    }

    .nav {
        display: none;
    }
}

/* ==================== 轮播横幅 - 蓝色深色风 ==================== */
.banner {
    position: relative;
    height: 480px;
    overflow: hidden;
    background: linear-gradient(135deg, #1a2a6c 0%, #2348b8 45%, #3a6fd8 100%);
}

.banner-slider {
    height: 100%;
}

.banner-slide {
    height: 100%;
    display: none;
    align-items: center;
    justify-content: center;
    position: relative;
}

.banner-slide.active {
    display: flex;
}

/* 背景装饰图形 */
.banner-bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.6;
}

.shape-1 {
    width: 400px;
    height: 400px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.12), rgba(100, 160, 255, 0.15));
    top: -100px;
    right: -100px;
    animation: floatShape 20s ease-in-out infinite;
}

.shape-2 {
    width: 300px;
    height: 300px;
    background: linear-gradient(135deg, rgba(79, 172, 254, 0.20), rgba(0, 242, 254, 0.12));
    bottom: -50px;
    left: -50px;
    animation: floatShape 25s ease-in-out infinite reverse;
}

.shape-3 {
    width: 200px;
    height: 200px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(180, 210, 255, 0.10));
    top: 50%;
    left: 30%;
    animation: floatShape 18s ease-in-out infinite;
}

.shape-4 {
    width: 350px;
    height: 350px;
    background: linear-gradient(135deg, rgba(100, 200, 255, 0.15), rgba(56, 178, 240, 0.10));
    top: -80px;
    right: 10%;
    animation: floatShape 22s ease-in-out infinite;
}

.shape-5 {
    width: 250px;
    height: 250px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.10), rgba(180, 220, 255, 0.08));
    bottom: 20%;
    left: 5%;
    animation: floatShape 19s ease-in-out infinite reverse;
}

.shape-6 {
    width: 380px;
    height: 380px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08), rgba(120, 170, 255, 0.10));
    top: -90px;
    left: 20%;
    animation: floatShape 24s ease-in-out infinite;
}

.shape-7 {
    width: 280px;
    height: 280px;
    background: linear-gradient(135deg, rgba(100, 180, 255, 0.12), rgba(60, 130, 230, 0.08));
    bottom: -40px;
    right: 15%;
    animation: floatShape 21s ease-in-out infinite reverse;
}

@keyframes floatShape {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(20px, -20px) rotate(5deg); }
    50% { transform: translate(0, -30px) rotate(0deg); }
    75% { transform: translate(-20px, -15px) rotate(-5deg); }
}

/* 浅色风格内容 */
.banner-content-light {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    max-width: 1100px;
    margin: 0 auto;
}

.banner-text {
    animation: fadeInLeft 0.8s ease;
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.banner-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    background: rgba(255, 255, 255, 0.18);
    color: #ffffff;
    border: 1px solid rgba(255, 255, 255, 0.3);
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 500;
    margin-bottom: 20px;
    backdrop-filter: blur(6px);
}

.banner-badge.badge-green {
    background: rgba(72, 220, 150, 0.22);
    color: #a8f0cb;
    border-color: rgba(72, 220, 150, 0.35);
}

.banner-badge.badge-orange {
    background: rgba(255, 190, 80, 0.22);
    color: #ffe0a0;
    border-color: rgba(255, 190, 80, 0.35);
}

.banner-text h1,
.banner-text h2 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 15px;
    line-height: 1.2;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.18);
}

.banner-text p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.82);
    line-height: 1.8;
    margin-bottom: 30px;
}

.banner-text strong {
    color: #7eceff;
    font-weight: 700;
}

.banner-cta {
    display: flex;
    gap: 15px;
    flex-wrap: wrap;
}

.btn-primary-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: #ffffff;
    color: #2348b8;
    border-radius: 30px;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.20);
    transition: var(--transition);
}

.btn-primary-light:hover {
    transform: translateY(-2px);
    background: #e8f0ff;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25);
}

.btn-outline-light {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 30px;
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    border: 2px solid rgba(255, 255, 255, 0.55);
    border-radius: 30px;
    font-weight: 600;
    font-size: 1rem;
    backdrop-filter: blur(6px);
    transition: var(--transition);
}

.btn-outline-light:hover {
    background: rgba(255, 255, 255, 0.22);
    border-color: #ffffff;
}

/* 右侧卡片展示 */
.banner-illustration {
    display: flex;
    flex-direction: column;
    gap: 15px;
    animation: fadeInRight 0.8s ease 0.2s both;
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

.illustration-card {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 18px 25px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.illustration-card:hover {
    transform: translateX(10px);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.20);
}

.illustration-card i {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    font-size: 1.3rem;
}

.card-1 i { background: rgba(255, 255, 255, 0.20); color: #a8d8ff; }
.card-2 i { background: rgba(255, 255, 255, 0.20); color: #a8f0cb; }
.card-3 i { background: rgba(255, 255, 255, 0.20); color: #ffb3b3; }

.illustration-card span {
    font-size: 1.1rem;
    font-weight: 600;
    color: #ffffff;
}

/* 专业预览卡片 */
.banner-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.major-preview-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 25px 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 16px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    transition: var(--transition);
}

.major-preview-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.20);
}

.mpc-icon {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.20) !important;
}

.mpc-icon i {
    font-size: 1.5rem;
    color: #ffffff !important;
}

.major-preview-card span {
    font-size: 1rem;
    font-weight: 600;
    color: #ffffff;
}

/* 数据统计网格 */
.banner-stat-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    animation: fadeInRight 0.8s ease 0.2s both;
}

.stat-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.14);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 20px;
    backdrop-filter: blur(10px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.15);
    text-align: center;
    transition: var(--transition);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.22);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.20);
}

.stat-value {
    font-size: 2.5rem;
    font-weight: 700;
    color: #7eceff;
    line-height: 1;
}

.stat-unit {
    font-size: 1.2rem;
    color: #7eceff;
    font-weight: 600;
}

.stat-name {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.75);
    margin-top: 8px;
}

/* 轮播控制按钮 - 浅色风格 */
.banner-controls-light {
    position: absolute;
    bottom: 30px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    gap: 15px;
}

.banner-controls-light .banner-prev,
.banner-controls-light .banner-next {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.18);
    border: 1px solid rgba(255, 255, 255, 0.35);
    color: #ffffff;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    backdrop-filter: blur(6px);
}

.banner-controls-light .banner-prev:hover,
.banner-controls-light .banner-next:hover {
    background: rgba(255, 255, 255, 0.32);
    border-color: #ffffff;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.20);
}

.banner-dots {
    display: flex;
    gap: 8px;
}

.dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.35);
    cursor: pointer;
    transition: var(--transition);
}

.dot.active {
    width: 28px;
    border-radius: 5px;
    background: #ffffff;
}

/* ==================== 页面横幅（通用） ==================== */
.page-banner {
    padding: 60px 0;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.page-banner::before {
    content: '';
    position: absolute;
    top: -100px;
    right: -100px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(255,255,255,0.15) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner::after {
    content: '';
    position: absolute;
    bottom: -80px;
    left: -80px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(255,255,255,0.1) 0%, transparent 70%);
    border-radius: 50%;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><circle cx="50" cy="50" r="1.5" fill="rgba(255,255,255,0.08)"/></svg>');
    background-size: 40px 40px;
}

.page-banner-content {
    position: relative;
    z-index: 1;
    text-align: center;
    color: white;
}

.page-banner-content h1 {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 15px;
    text-shadow: 0 2px 10px rgba(0,0,0,0.1);
}

.page-banner-content h1 i {
    margin-right: 15px;
    opacity: 0.9;
}

.page-banner-content p {
    font-size: 1.15rem;
    opacity: 0.9;
    margin-bottom: 25px;
    font-weight: 300;
}

.breadcrumb {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    background: rgba(255,255,255,0.1);
    padding: 10px 25px;
    border-radius: 30px;
    backdrop-filter: blur(10px);
}

.breadcrumb a {
    color: white;
    opacity: 0.85;
    transition: var(--transition);
}

.breadcrumb a:hover {
    opacity: 1;
    text-decoration: none;
}

.breadcrumb i {
    font-size: 0.7rem;
    opacity: 0.6;
}

/* ==================== 搜索区域 ==================== */
.search-section {
    position: relative;
    margin-top: 30px;
    z-index: 10;
    padding: 0 20px;
}

.search-box {
    max-width: 900px;
    margin: 0 auto;
    background: white;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.search-tabs {
    display: flex;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border-color);
}

.search-tab {
    flex: 1;
    padding: 18px 20px;
    border: none;
    background: transparent;
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-gray);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
}

.search-tab::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: var(--primary-color);
    border-radius: 3px 3px 0 0;
    transition: var(--transition);
}

.search-tab.active {
    color: var(--primary-color);
    background: white;
}

.search-tab.active::after {
    width: 60%;
}

.search-form {
    padding: 30px;
}

.search-input-group {
    display: flex;
    align-items: center;
    background: var(--bg-light);
    border-radius: 50px;
    padding: 8px 8px 8px 25px;
    border: 2px solid transparent;
    transition: var(--transition);
}

.search-input-group:focus-within {
    border-color: var(--primary-color);
    background: white;
}

.search-input-group i {
    color: var(--text-light);
    margin-right: 15px;
    font-size: 1.2rem;
}

.search-input-group input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 1rem;
    outline: none;
}

.search-input-group input::placeholder {
    color: var(--text-light);
}

.btn-search {
    padding: 15px 35px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 50px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-search:hover {
    transform: scale(1.05);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.search-filters {
    display: flex;
    gap: 15px;
    margin-top: 20px;
    flex-wrap: wrap;
}

.filter-select {
    flex: 1;
    min-width: 150px;
    padding: 12px 15px;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
    background: white;
    cursor: pointer;
    transition: var(--transition);
    outline: none;
}

.filter-select:hover,
.filter-select:focus {
    border-color: var(--primary-color);
}

/* ==================== 学校列表（横向列表样式） ==================== */
.schools-section {
    padding: 40px 0;
    background: var(--bg-light);
}

.section-header {
    text-align: center;
    margin-bottom: 30px;
}

.section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.section-subtitle {
    font-size: 1.1rem;
    color: var(--text-gray);
}

/* 横向列表布局 - 使用flex布局 */
.schools-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.school-list-item {
    display: flex;
    align-items: stretch;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.04);
    min-height: auto;
}

.school-list-item:hover {
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
    transform: translateY(-2px);
    border-color: rgba(102, 126, 234, 0.1);
}

.schools-list:hover .school-list-image {
    box-shadow: none;
}

.school-list-image {
    position: relative;
    width: 280px;
    height: 200px;
    flex-shrink: 0;
    overflow: hidden;
    display: flex;
    align-items: stretch;
    background: linear-gradient(135deg, #f5f7fa 0%, #e8ecf1 100%);
}

.school-list-image::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, rgba(0,0,0,0) 60%, rgba(0,0,0,0.03) 100%);
    z-index: 1;
    pointer-events: none;
}

.school-list-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.school-list-item:hover .school-list-image img {
    transform: scale(1.05);
}

/* 学校列表内容区 */
.school-list-content {
    background: #fff;
    padding: 24px 28px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    flex: 1;
}

.school-list-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 12px;
}

.school-list-name {
    font-size: 1.25rem;
    font-weight: 700;
    color: #1a1a2e;
    margin-bottom: 12px;
    line-height: 1.4;
    letter-spacing: -0.01em;
}

.school-list-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    font-size: 0.875rem;
    color: #64748b;
    margin-bottom: 12px;
}

.school-list-meta span {
    display: flex;
    align-items: center;
    gap: 6px;
}

.school-list-meta i {
    color: #667eea;
    font-size: 0.85rem;
}

.school-list-desc {
    font-size: 0.9rem;
    color: #64748b;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    margin-bottom: 16px;
}

/* 操作按钮区 */
.school-list-action {
    padding: 0 28px 0 0;
    flex-shrink: 0;
    display: flex;
    align-items: center;
}

.btn-view-detail {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 10px 28px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    border: none;
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.35);
}

.btn-view-detail:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(102, 126, 234, 0.45);
}

/* 标签样式 */
.tag {
    display: inline-flex;
    align-items: center;
    padding: 4px 10px;
    font-size: 0.75rem;
    font-weight: 500;
    border-radius: 6px;
}

.tag-public {
    background: #e6f7ff;
    color: #1890ff;
}

.tag-private {
    background: #fff7e6;
    color: #fa8c16;
}

.tag-health { background: #fff1f0; color: #ff4d4f; }
.tag-it { background: #f0f5ff; color: #597ef7; }
.tag-finance { background: #fff7e6; color: #fa8c16; }
.tag-manufacture { background: #e6fffb; color: #13c2c2; }
.tag-service { background: #f9f0ff; color: #722ed1; }
.tag-education { background: #fff0f0; color: #eb2f96; }
.tag-level { background: linear-gradient(135deg, #ff4d4f, #ff7875); color: #fff; }
.tag-level-blue { background: linear-gradient(135deg, #1890ff, #69c0ff); color: #fff; }
.tag-hot { background: linear-gradient(135deg, #fa8c16, #ffc069); color: #fff; }

/* 保留原有的school-card样式供其他页面使用 */
.schools-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.school-card {
    background: white;
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.school-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.school-image {
    position: relative;
    height: 200px;
    overflow: hidden;
}

.school-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition);
}

.school-card:hover .school-image img {
    transform: scale(1.1);
}

.school-badge {
    position: absolute;
    top: 15px;
    left: 15px;
    padding: 5px 12px;
    background: linear-gradient(135deg, var(--accent-color), #ff6b9d);
    color: white;
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 20px;
    box-shadow: 0 2px 10px rgba(245, 87, 108, 0.4);
}

.school-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
}

.school-card:hover .school-overlay {
    opacity: 1;
}

.btn-view {
    padding: 12px 30px;
    background: white;
    color: var(--text-dark);
    border-radius: 25px;
    font-weight: 600;
}

.btn-view:hover {
    background: var(--primary-color);
    color: white;
}

.school-info {
    padding: 20px;
}

.school-tags {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.school-name {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
    line-height: 1.4;
}

.school-meta {
    display: flex;
    gap: 20px;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 15px;
}

.school-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.school-meta i {
    color: var(--primary-color);
}

.school-stats {
    display: flex;
    justify-content: space-between;
    padding-top: 15px;
    border-top: 1px solid var(--border-color);
}

.school-stat {
    text-align: center;
}

.school-stat .value {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--primary-color);
}

.school-stat .label {
    font-size: 0.8rem;
    color: var(--text-light);
}

.section-footer {
    text-align: center;
    margin-top: 40px;
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 15px 40px;
    background: white;
    color: var(--primary-color);
    border: 2px solid var(--primary-color);
    border-radius: 30px;
    font-weight: 600;
}

.btn-secondary:hover {
    background: var(--primary-color);
    color: white;
}

/* ==================== 热门专业 ==================== */
.majors-section {
    padding: 40px 0;
    background: white;
}

.majors-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.major-card {
    background: white;
    border-radius: var(--border-radius);
    padding: 35px 30px;
    text-align: center;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border: 1px solid var(--border-color);
}

.major-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent;
}

.major-icon {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}

.major-icon i {
    font-size: 2rem;
    color: white;
}

.major-name {
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 10px;
}

.major-desc {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.major-info {
    display: flex;
    justify-content: center;
    gap: 25px;
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.major-info span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.major-info i {
    color: var(--primary-color);
}

.btn-major {
    display: inline-block;
    padding: 10px 25px;
    background: var(--bg-light);
    color: var(--text-dark);
    border-radius: 20px;
    font-weight: 500;
    transition: var(--transition);
}

.btn-major:hover {
    background: var(--primary-color);
    color: white;
}

/* ==================== 择校FAQ（首页） ==================== */
.faq-section {
    padding: 50px 0;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
    position: relative;
}

/* FAQ区域底色装饰 */
.faq-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.03) 0%, rgba(118, 75, 162, 0.03) 100%);
    pointer-events: none;
}

.faq-section .container {
    position: relative;
    z-index: 1;
}

.faq-grid {
    max-width: 1200px;
    margin: 0 auto;
}

/* FAQ折叠列表样式 - 与详情页保持一致 */
.faq-item {
    background: #fff;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    margin-bottom: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item:hover {
    border-color: rgba(102, 126, 234, 0.3);
    box-shadow: 0 4px 20px rgba(102, 126, 234, 0.08);
}

.faq-item.active {
    border-color: rgba(102, 126, 234, 0.4);
    box-shadow: 0 6px 24px rgba(102, 126, 234, 0.12);
}

.faq-question {
    padding: 18px 24px;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.faq-question:hover {
    background: #f7fafc;
}

.faq-question h3 {
    font-size: 1.05rem;
    color: #2d3748;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 15px;
    line-height: 1.5;
}

.faq-question i {
    color: #667eea;
    font-size: 1.1rem;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.faq-item.active .faq-question i {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 500px;
}

.faq-answer-content {
    padding: 0 24px 20px;
    color: #718096;
    line-height: 1.8;
    font-size: 0.95rem;
}

.faq-answer-content p {
    margin: 0 0 12px 0;
}

.faq-answer-content p:last-child {
    margin-bottom: 0;
}

.faq-answer-content ul {
    margin: 10px 0;
    padding-left: 20px;
}

.faq-answer-content li {
    margin-bottom: 8px;
    list-style: disc;
}

.faq-answer-content strong {
    color: #2d3748;
    font-weight: 600;
}

.faq-loading {
    text-align: center;
    padding: 60px 20px;
    color: #a0aec0;
    font-size: 1rem;
}

.faq-empty {
    text-align: center;
    padding: 60px 20px;
    color: #a0aec0;
}

.faq-empty i {
    font-size: 3rem;
    margin-bottom: 16px;
    display: block;
    color: #e2e8f0;
}

@media (max-width: 768px) {
    .faq-question {
        padding: 14px 16px;
    }
    
    .faq-question h3 {
        font-size: 0.95rem;
    }
    
    .faq-answer-content {
        padding: 0 16px 14px;
        font-size: 0.9rem;
    }
    
    .faq-section {
        padding: 36px 0;
    }
}

/* ==================== 招生动态 - 横向卡片样式 ==================== */
.news-section {
    padding: 80px 0;
    background: linear-gradient(180deg, #ffffff 0%, #f0f4ff 50%, #fafbff 100%);
}

.news-section .section-header {
    text-align: center;
    margin-bottom: 50px;
}

.news-section .section-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #1a1a1a;
    -webkit-text-fill-color: #1a1a1a;
}

.news-section .section-subtitle {
    font-size: 1rem;
    color: #718096;
    margin-top: 8px;
}

/* 横向卡片列表 */
.news-card-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
    max-width: 1200px;
    margin: 0 auto;
}

/* 单个横向卡片 */
.news-row-card {
    display: flex;
    align-items: center;
    background: #fff;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 1px solid rgba(0, 0, 0, 0.04);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    padding: 16px;
    gap: 24px;
}

.news-row-card:hover {
    transform: translateX(8px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.15);
}

.news-row-card:hover .news-row-thumb img {
    transform: scale(1.05);
}

/* 卡片缩略图 */
.news-row-thumb {
    position: relative;
    width: 200px;
    height: 130px;
    flex-shrink: 0;
    border-radius: 12px;
    overflow: hidden;
}

.news-row-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

/* 卡片标签 */
.news-row-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 4px 10px;
    border-radius: 16px;
    font-size: 0.7rem;
    font-weight: 600;
    color: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.15);
}

.news-row-badge.hot {
    background: linear-gradient(135deg, #ff4d4f, #ff7875);
}

.news-row-badge.policy {
    background: linear-gradient(135deg, #597ef7, #7990f7);
}

.news-row-badge.school {
    background: linear-gradient(135deg, #52c41a, #73d13d);
}

.news-row-badge.info {
    background: linear-gradient(135deg, #fa8c16, #ffa940);
}

/* 卡片内容 */
.news-row-content {
    flex: 1;
    min-width: 0;
}

.news-row-date {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    color: #a0aec0;
    margin-bottom: 8px;
}

.news-row-date i {
    opacity: 0.7;
}

.news-row-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2d3748;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-row-title a {
    color: inherit;
    text-decoration: none;
    transition: color 0.2s;
}

.news-row-title a:hover {
    color: #667eea;
}

.news-row-desc {
    font-size: 0.9rem;
    color: #718096;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 卡片右侧 */
.news-row-meta {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    flex-shrink: 0;
}

.news-row-views {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.85rem;
    color: #a0aec0;
}

.news-row-views i {
    opacity: 0.7;
}

.news-row-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 18px;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
    text-decoration: none;
    transition: all 0.3s ease;
}

.news-row-link:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.news-row-link i {
    font-size: 0.75rem;
    transition: transform 0.2s;
}

.news-row-card:hover .news-row-link i {
    transform: translateX(3px);
}

/* 响应式布局 */
@media (max-width: 900px) {
    .news-row-card {
        flex-direction: column;
        align-items: stretch;
        gap: 16px;
    }
    
    .news-row-thumb {
        width: 100%;
        height: 160px;
    }
    
    .news-row-meta {
        flex-direction: row;
        justify-content: space-between;
        padding-top: 12px;
        border-top: 1px solid #f0f0f0;
    }
    
    .news-row-card:hover {
        transform: translateY(-4px);
    }
}

@media (max-width: 640px) {
    .news-section {
        padding: 50px 0;
    }
    
    .news-section .section-title {
        font-size: 1.6rem;
    }
    
    .news-row-thumb {
        height: 140px;
    }
    
    .news-row-title {
        font-size: 1rem;
    }
    
    .news-row-desc {
        -webkit-line-clamp: 2;
    }
}

/* 招生动态右侧预约咨询边栏 */
.news-sidebar {
    position: sticky;
    top: 90px;
    height: fit-content;
}

.contact-sidebar-card {
    background: linear-gradient(160deg, #f0f4ff 0%, #e8eeff 40%, #f5f0ff 100%);
    border: 1.5px solid rgba(102, 126, 234, 0.15);
    border-radius: 16px;
    padding: 22px 18px;
    box-shadow: 0 8px 24px rgba(102, 126, 234, 0.12);
}

.sidebar-card-header {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 14px;
    padding-bottom: 12px;
    border-bottom: 2px solid rgba(102, 126, 234, 0.15);
}

.sidebar-card-header i {
    font-size: 1.2rem;
}

.sidebar-hotline {
    text-align: center;
    margin-bottom: 16px;
    padding: 10px;
    background: rgba(102, 126, 234, 0.08);
    border-radius: 10px;
}

.sidebar-hotline-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary-color);
    margin-bottom: 4px;
}

.sidebar-hotline-num:hover {
    color: var(--primary-dark);
}

.sidebar-hotline-time {
    font-size: 0.8rem;
    color: var(--text-gray);
}

.sidebar-contact-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sidebar-contact-form input {
    width: 100%;
    padding: 11px 14px;
    border: 1.5px solid #e2e8f0;
    border-radius: 10px;
    font-size: 0.88rem;
    outline: none;
    transition: var(--transition);
    background: #fff;
}

.sidebar-contact-form input:focus {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.15);
}

.sidebar-btn-submit {
    width: 100%;
    padding: 12px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.sidebar-btn-submit:hover {
    background: linear-gradient(135deg, #5a67d8 0%, #6b4e9b 100%);
    box-shadow: 0 4px 14px rgba(102, 126, 234, 0.4);
    transform: translateY(-1px);
}

.sidebar-privacy {
    font-size: 0.75rem;
    color: var(--text-light);
    text-align: center;
    margin-top: 10px;
    line-height: 1.4;
}

.news-item {
    display: flex;
    gap: 20px;
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
}

.news-item:hover {
    box-shadow: var(--shadow-md);
    transform: translateX(5px);
}

.news-date {
    flex-shrink: 0;
    width: 70px;
    text-align: center;
    padding: 10px;
    background: var(--bg-light);
    border-radius: 10px;
}

.news-date .day {
    display: block;
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    line-height: 1;
}

.news-date .month {
    font-size: 0.85rem;
    color: var(--text-gray);
}

.news-info {
    flex: 1;
}

.news-tag {
    display: inline-block;
    padding: 3px 10px;
    font-size: 0.75rem;
    font-weight: 600;
    border-radius: 4px;
    margin-bottom: 10px;
}

.tag-hot { background: #fff2f0; color: #ff4d4f; }
.tag-policy { background: #f0f5ff; color: #1890ff; }
.tag-school { background: #f6ffed; color: #52c41a; }
.tag-info { background: #fff7e6; color: #fa8c16; }

.news-title {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 8px;
    line-height: 1.4;
}

.news-title a:hover {
    color: var(--primary-color);
}

.news-excerpt {
    font-size: 0.95rem;
    color: var(--text-gray);
    margin-bottom: 12px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.news-meta {
    display: flex;
    gap: 20px;
    font-size: 0.85rem;
    color: var(--text-light);
}

.news-meta span {
    display: flex;
    align-items: center;
    gap: 5px;
}

.news-sidebar {
    display: flex;
    flex-direction: column;
    gap: 25px;
}

.sidebar-card {
    background: white;
    padding: 25px;
    border-radius: var(--border-radius);
    box-shadow: var(--shadow-sm);
}

.sidebar-title {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text-dark);
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 2px solid var(--bg-light);
}

.sidebar-title i {
    color: var(--accent-color);
}

.hot-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border-color);
}

.hot-list li:last-child {
    border-bottom: none;
}

.hot-list .rank {
    width: 24px;
    height: 24px;
    background: var(--primary-color);
    color: white;
    border-radius: 4px;
    font-size: 0.85rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
}

.hot-list li:nth-child(1) .rank { background: #ff4d4f; }
.hot-list li:nth-child(2) .rank { background: #ff7a45; }
.hot-list li:nth-child(3) .rank { background: #ffa940; }

.hot-list a {
    flex: 1;
    font-size: 0.95rem;
    color: var(--text-dark);
    transition: var(--transition);
}

.hot-list a:hover {
    color: var(--primary-color);
}

.contact-content {
    text-align: center;
}

.contact-phone {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--primary-color);
    margin-bottom: 10px;
}

.contact-time {
    font-size: 0.9rem;
    color: var(--text-gray);
    margin-bottom: 20px;
}

.btn-consult {
    width: 100%;
    padding: 15px;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    border: none;
    border-radius: 10px;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}

.btn-consult:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

/* ==================== 数据统计 ==================== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.stats-item {
    text-align: center;
    color: white;
}

.stats-icon {
    width: 60px;
    height: 60px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 15px;
}

.stats-icon i {
    font-size: 1.5rem;
}

.stats-number {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 5px;
}

.stats-number .unit {
    font-size: 1.5rem;
}

.stats-label {
    font-size: 1rem;
    opacity: 0.9;
}

/* ==================== 关于我们 ==================== */
.about-section {
    padding: 80px 0;
    background: white;
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.about-text .section-title {
    text-align: left;
    margin-bottom: 20px;
}

.about-desc {
    font-size: 1.1rem;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 30px;
}

.about-features {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 15px;
    margin-bottom: 30px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.feature-item i {
    color: var(--success-color);
    font-size: 1.1rem;
}

.about-links {
    display: flex;
    gap: 15px;
}

.about-link {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 12px 20px;
    background: var(--bg-light);
    border-radius: 8px;
    font-size: 0.95rem;
    color: var(--text-dark);
}

.about-link:hover {
    background: var(--primary-color);
    color: white;
}

.about-link i {
    font-size: 1.2rem;
}

.about-image {
    border-radius: var(--border-radius);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}

.about-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* ==================== 页脚（两列布局：左侧品牌，右侧上下排列） ==================== */
.footer {
    background: linear-gradient(180deg, #1a202c 0%, #171923 100%);
    color: #a0aec0;
    padding: 0;
    font-size: 0.9rem;
}

.footer-main {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 60px;
    padding: 55px 0 45px;
}

/* 第一列：品牌介绍 */
.footer-col-brand {
    /* 品牌介绍列 */
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer-logo img {
    height: 32px;
    filter: grayscale(1) brightness(1000%);
}

.footer-logo span {
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
}

.footer-desc {
    font-size: 0.88rem;
    line-height: 1.8;
    color: #a0aec0;
    margin: 0 0 8px 0;
}

.footer-desc:last-of-type {
    margin-bottom: 20px;
}

/* 统计数据横排 */
.footer-stats {
    display: flex;
    gap: 12px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
}

.footer-stat-item {
    flex: 1;
    text-align: center;
    padding: 12px 6px;
    background: rgba(255, 255, 255, 0.04);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
    transition: all 0.3s ease;
}

.footer-stat-item:hover {
    background: rgba(102, 126, 234, 0.12);
    border-color: rgba(102, 126, 234, 0.25);
    transform: translateY(-2px);
}

.footer-stat-num {
    display: block;
    font-size: 1.3rem;
    font-weight: 700;
    color: #667eea;
    line-height: 1.2;
}

.footer-stat-num .unit {
    font-size: 0.8rem;
    font-weight: 600;
}

.footer-stat-label {
    font-size: 0.75rem;
    color: #a0aec0;
    margin-top: 4px;
    display: block;
}

/* 第二列：上下排列的区块 */
.footer-col-right {
    display: flex;
    flex-direction: column;
    gap: 30px;
}

/* 快捷链接和联系我们区块 */
.footer-section h4 {
    color: #ffffff;
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 16px;
    position: relative;
    padding-bottom: 10px;
}

.footer-section h4::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 30px;
    height: 3px;
    background: linear-gradient(90deg, #667eea, #764ba2);
    border-radius: 2px;
}

/* 快捷链接 */
.footer-links-section ul {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px 20px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links-section li {
    margin-bottom: 0;
}

.footer-links-section a {
    color: #a0aec0;
    font-size: 0.88rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 0;
}

.footer-links-section a:hover {
    color: #667eea;
}

.footer-links-section a i {
    font-size: 0.8rem;
    width: 16px;
    text-align: center;
}

/* 联系方式 */
.contact-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
    margin-bottom: 16px;
}

.contact-item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.contact-item:hover {
    background: rgba(255, 255, 255, 0.06);
}

.contact-item i {
    color: #667eea;
    font-size: 0.95rem;
    width: 18px;
    text-align: center;
    flex-shrink: 0;
    margin-top: 2px;
}

.contact-detail {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.contact-label {
    font-size: 0.75rem;
    color: #718096;
}

.contact-value {
    font-size: 0.88rem;
    color: #e2e8f0;
    font-weight: 500;
}

.contact-item a {
    color: #e2e8f0;
    text-decoration: none;
    font-size: 0.88rem;
    font-weight: 500;
}

.contact-item a:hover {
    color: #667eea;
}

/* 二维码区域 */
.footer-qrcode {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 12px;
    background: rgba(255, 255, 255, 0.03);
    border-radius: 10px;
    border: 1px solid rgba(255, 255, 255, 0.06);
}

.qrcode-box {
    width: 80px;
    height: 80px;
    flex-shrink: 0;
    border-radius: 8px;
    overflow: hidden;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 4px;
}

.qrcode-box img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 4px;
}

.qrcode-text {
    font-size: 0.82rem;
    color: #a0aec0;
    line-height: 1.5;
}

/* 底部版权栏 */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    padding: 20px 0;
}

/* 底部快捷链接 + 友情链接区域 */
.footer-links-bottom {
    padding: 16px 0;
    border-top: 1px dashed rgba(255, 255, 255, 0.1);
    border-bottom: 1px dashed rgba(255, 255, 255, 0.1);
    margin-bottom: 0;
}

.footer-quick-links,
.footer-friend-links {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px 16px;
    font-size: 0.88rem;
}

.footer-friend-links {
    margin-top: 10px;
}

.footer-links-label {
    color: #ffffff;
    font-weight: 600;
    margin-right: 4px;
    flex-shrink: 0;
}

.footer-quick-links a,
.footer-friend-links a {
    color: #a0aec0;
    transition: color 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 5px;
    padding: 3px 8px;
    border-radius: 4px;
}

.footer-quick-links a:hover,
.footer-friend-links a:hover {
    color: #667eea;
    background: rgba(102, 126, 234, 0.1);
}

.footer-quick-links a i {
    font-size: 0.8rem;
    width: 14px;
    text-align: center;
}

.footer-bottom-content {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 15px;
}

.footer-bottom-links {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.85rem;
}

.footer-bottom-links a {
    color: #a0aec0;
    transition: color 0.25s ease;
}

.footer-bottom-links a:hover {
    color: #667eea;
}

.footer-bottom-links .divider {
    color: rgba(255, 255, 255, 0.15);
}

.footer-credentials {
    font-size: 0.82rem;
    color: #718096;
}

.footer-credentials p {
    margin: 0;
}

/* ==================== 页脚响应式 ==================== */
/* 平板端：单列布局 */
@media (max-width: 1024px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .footer-col-right {
        flex-direction: row;
        gap: 40px;
    }

    .footer-links-section {
        flex: 1;
    }

    .footer-contact-section {
        flex: 1;
    }

    .footer-stats {
        max-width: 500px;
    }
}

/* 平板端：单列布局 */
@media (max-width: 768px) {
    .footer-main {
        grid-template-columns: 1fr;
        gap: 32px;
        padding: 40px 0 35px;
    }

    .footer-logo span {
        font-size: 1.2rem;
    }

    .footer-desc {
        font-size: 0.85rem;
        line-height: 1.7;
    }

    .footer-stats {
        gap: 8px;
    }

    .footer-stat-item {
        padding: 10px 5px;
    }

    .footer-stat-num {
        font-size: 1.15rem;
    }

    .footer-stat-label {
        font-size: 0.72rem;
    }

    .footer-col-right {
        flex-direction: column;
        gap: 24px;
    }

    /* 快捷链接现在在底部，这个样式保留备用 */

    .footer-section h4 {
        font-size: 0.95rem;
        margin-bottom: 14px;
    }

    .footer-links-section a {
        font-size: 0.85rem;
    }

    .contact-list {
        gap: 8px;
        margin-bottom: 14px;
    }

    .contact-item {
        padding: 8px 10px;
    }

    .footer-qrcode {
        padding: 10px;
        gap: 12px;
    }

    .qrcode-box {
        width: 70px;
        height: 70px;
    }

    .qrcode-text {
        font-size: 0.8rem;
    }

    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
        gap: 10px;
    }

    .footer-bottom-links {
        justify-content: center;
        font-size: 0.82rem;
    }

    .footer-credentials {
        font-size: 0.78rem;
    }
}

/* 小屏手机端：进一步优化 */
@media (max-width: 480px) {
    .footer-main {
        padding: 32px 0 28px;
        gap: 28px;
    }

    .footer-desc {
        font-size: 0.82rem;
        margin-bottom: 6px;
    }

    .footer-stats {
        flex-wrap: nowrap;
        gap: 6px;
    }

    .footer-stat-item {
        flex: 1;
        padding: 8px 4px;
    }

    .qrcode-box {
        width: 65px;
        height: 65px;
    }

    /* 移动端底部链接优化 */
    .footer-links-bottom {
        padding: 12px 0;
    }

    .footer-quick-links,
    .footer-friend-links {
        font-size: 0.82rem;
        gap: 6px 10px;
    }

    .footer-quick-links a,
    .footer-friend-links a {
        padding: 4px 6px;
        font-size: 0.82rem;
    }

    .footer-links-label {
        font-size: 0.82rem;
    }
}

/* ==================== 回到顶部 ==================== */
.back-to-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
}

.back-to-top:hover {
    background: var(--primary-dark);
    transform: translateY(-5px);
}

/* ==================== 响应式设计 ==================== */
@media (max-width: 1024px) {
    /* 学校列表：平板端改为垂直堆叠 */
    .schools-list {
        display: flex;
        flex-direction: column;
        gap: 16px;
    }
    
    .school-list-item {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.04);
    }
    
    .school-list-image {
        width: 100%;
        height: 180px;
        border-radius: 16px 16px 0 0;
    }
    
    .school-list-content {
        padding: 20px;
    }
    
    .school-list-action {
        padding: 0 20px 20px;
        justify-content: stretch;
    }
    
    .btn-view-detail {
        width: 100%;
        justify-content: center;
    }
    
    .school-list-name {
        font-size: 1.15rem;
    }
    
    .school-list-meta {
        gap: 14px;
        font-size: 0.85rem;
    }
    
    .school-list-desc {
        font-size: 0.875rem;
    }
    
    .schools-grid,
    .majors-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .news-content {
        grid-template-columns: 1fr;
    }
    
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-content {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
    
    /* 平板：头图两栏适当收窄 */
    .banner-content-light {
        gap: 40px;
    }
    
    .banner-text h1,
    .banner-text h2 {
        font-size: 2.2rem;
    }
    
    .banner-stat-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 12px;
    }
    
    .stat-value {
        font-size: 1.8rem;
    }
}

@media (max-width: 768px) {
    .nav,
    .header-actions {
        display: none;
    }
    
    .mobile-menu-btn {
        display: flex;
    }
    
    /* ===== 头图移动端：单列布局，高度自适应 ===== */
    .banner {
        height: auto;
        min-height: 0;
        padding: 50px 0 70px;
    }
    
    .banner-slider {
        height: auto;
    }
    
    .banner-slide {
        height: auto;
        padding: 0;
    }
    
    /* 单列排列，右侧装饰区隐藏 */
    .banner-content-light {
        grid-template-columns: 1fr;
        gap: 0;
        text-align: center;
    }
    
    /* 隐藏右侧装饰卡片，保持头图简洁 */
    .banner-illustration,
    .banner-cards,
    .banner-stat-grid {
        display: none;
    }
    
    .banner-text {
        padding: 0 4px;
    }
    
    .banner-text h1,
    .banner-text h2 {
        font-size: 1.9rem;
        line-height: 1.3;
        margin-bottom: 12px;
    }
    
    .banner-text p {
        font-size: 1rem;
        margin-bottom: 24px;
    }
    
    .banner-badge {
        font-size: 0.82rem;
        padding: 6px 14px;
        margin-bottom: 14px;
    }
    
    .banner-cta {
        justify-content: center;
    }
    
    .btn-primary-light,
    .btn-outline-light {
        padding: 12px 24px;
        font-size: 0.92rem;
    }
    
    /* 底部控制按钮 */
    .banner-controls-light {
        bottom: 18px;
        gap: 10px;
    }
    
    .banner-controls-light .banner-prev,
    .banner-controls-light .banner-next {
        width: 36px;
        height: 36px;
        font-size: 0.8rem;
    }
    
    /* 移动端：学校和专业网格改为2列 */
    .schools-grid,
    .majors-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
    
    /* 移动端：学校列表垂直堆叠 */
    .schools-list {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }
    
    .school-list-item {
        display: flex;
        flex-direction: column;
        background: #fff;
        border-radius: 16px;
        overflow: hidden;
        box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
        border: 1px solid rgba(0, 0, 0, 0.04);
    }
    
    .school-list-image {
        width: 100%;
        height: 180px;
        border-radius: 16px 16px 0 0;
    }
    
    .school-list-content {
        padding: 18px;
    }
    
    .school-list-tags {
        display: flex;
        flex-wrap: wrap;
        gap: 8px;
        margin-bottom: 10px;
    }
    
    .school-list-name {
        font-size: 1.1rem;
        margin-bottom: 10px;
    }
    
    .school-list-meta {
        display: flex;
        flex-wrap: wrap;
        gap: 14px;
        margin-bottom: 10px;
        font-size: 0.85rem;
    }
    
    .school-list-meta span {
        display: flex;
        align-items: center;
        gap: 6px;
    }
    
    .school-list-meta i {
        font-size: 0.8rem;
    }
    
    .school-list-desc {
        font-size: 0.875rem;
        -webkit-line-clamp: 2;
        line-height: 1.6;
    }
    
    .school-list-action {
        padding: 0 18px 18px;
        justify-content: stretch;
    }
    
    .btn-view-detail {
        display: flex;
        justify-content: center;
        padding: 12px 20px;
        font-size: 0.9rem;
    }
    
    /* 移动端新闻区域：按钮移到列表下方 */
    .news-content {
        display: flex;
        flex-direction: column;
    }
    
    .news-sidebar {
        order: 2;
    }
    
    .news-list {
        order: 1;
    }
    
    /* 移动端新闻底部按钮移到列表下方 */
    .news-list .section-footer {
        order: 3;
        margin-top: 20px;
    }
    
    .search-filters {
        flex-direction: column;
    }
    
    .filter-select {
        min-width: 100%;
    }
    
    /* 移动端学校卡片简化：隐藏详细信息 */
    .school-card .school-meta {
        display: none;
    }
    .school-card .school-stats {
        display: none;
    }
    
    .school-card .school-tags {
        margin-bottom: 8px;
    }
    
    .school-card .school-name {
        font-size: 1rem;
        white-space: nowrap;
        overflow: hidden;
        text-overflow: ellipsis;
        margin-bottom: 8px;
        line-height: 1.3;
    }
    
    .school-card .school-info {
        padding: 14px;
    }
    
    .stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 30px;
    }
    
    /* 移动端隐藏专业统计信息 */
    .major-card .major-info {
        display: none;
    }
    
    .about-features {
        grid-template-columns: 1fr;
    }
    
    .about-links {
        flex-direction: column;
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
}
/* ===== 底部咨询表单样式 ===== */

@media (max-width: 480px) {
    .container {
        padding: 0 15px;
    }

    /* 极小屏进一步缩小头图文字 */
    .banner {
        padding: 40px 0 60px;
    }

    .banner-text h1,
    .banner-text h2 {
        font-size: 1.55rem;
    }

    .banner-text p {
        font-size: 0.95rem;
    }

    .banner-cta {
        flex-direction: column;
        align-items: center;
        gap: 10px;
    }

    .btn-primary-light,
    .btn-outline-light {
        width: 100%;
        max-width: 260px;
        justify-content: center;
    }

    .stat-number {
        font-size: 1.8rem;
    }

    .search-tabs {
        flex-direction: column;
    }

    .search-tab {
        padding: 15px;
        text-align: center;
    }

    .search-form {
        padding: 20px;
    }

    .search-input-group {
        flex-direction: column;
        padding: 15px;
        border-radius: 15px;
    }

    .search-input-group input {
        width: 100%;
        text-align: center;
        margin-bottom: 15px;
    }

    .btn-search {
        width: 100%;
    }

    .news-item {
        flex-direction: column;
        gap: 15px;
    }

    .news-date {
        width: auto;
        display: flex;
        gap: 10px;
        background: transparent;
        padding: 0;
    }

    .stats-grid {
        grid-template-columns: 1fr;
    }

    /* 极小屏：学校列表优化 */
    .schools-list {
        gap: 12px;
    }

    .school-list-item {
        border-radius: 12px;
    }

    .school-list-image {
        height: 160px;
    }

    .school-list-content {
        padding: 15px;
    }

    .school-list-tags {
        gap: 6px;
        margin-bottom: 8px;
    }

    .school-list-tags .tag {
        padding: 3px 8px;
        font-size: 0.7rem;
    }

    .school-list-name {
        font-size: 1rem;
        margin-bottom: 8px;
    }

    .school-list-meta {
        gap: 10px;
        font-size: 0.8rem;
    }

    .school-list-desc {
        font-size: 0.8rem;
        -webkit-line-clamp: 2;
    }

    .school-list-action {
        padding: 0 15px 15px;
    }

    .btn-view-detail {
        padding: 10px 16px;
        font-size: 0.85rem;
    }

    .footer-content {
        gap: 25px;
    }
}

/* ==================== 动画 ==================== */
@keyframes fadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes slideInLeft {
    from {
        opacity: 0;
        transform: translateX(-30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes slideInRight {
    from {
        opacity: 0;
        transform: translateX(30px);
    }
    to {
        opacity: 1;
        transform: translateX(0);
    }
}

@keyframes bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.animate-fadeIn {
    animation: fadeIn 0.6s ease;
}

.animate-slideInLeft {
    animation: slideInLeft 0.6s ease;
}

.animate-slideInRight {
    animation: slideInRight 0.6s ease;
}

/* 滚动动画 */
.scroll-animate {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease;
}

.scroll-animate.visible {
    opacity: 1;
    transform: translateY(0);
}
/* ===== 底部咨询表单新样式 ===== */
.contact-form-section {
    padding: 90px 0;
    background: linear-gradient(160deg, #f0f4ff 0%, #e8eeff 40%, #f5f0ff 100%);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: -120px;
    right: -80px;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(102,126,234,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-section::after {
    content: '';
    position: absolute;
    bottom: -100px;
    left: -60px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(118,75,162,0.06) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

.contact-form-wrapper {
    max-width: 680px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-form-header {
    text-align: center;
    margin-bottom: 36px;
}

.contact-badge {
    display: inline-block;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    font-size: 0.8rem;
    font-weight: 600;
    padding: 5px 16px;
    border-radius: 20px;
    margin-bottom: 16px;
    letter-spacing: 1px;
}

.contact-form-header h3 {
    font-size: 1.8rem;
    color: #2d3748;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
}

.contact-form-header h3 i {
    color: #667eea;
    font-size: 1.5rem;
}

.contact-form-header p {
    font-size: 1rem;
    color: #718096;
}

.contact-form-modern {
    background: #fff;
    border-radius: 20px;
    padding: 40px 36px 32px;
    box-shadow: 0 8px 40px rgba(102, 126, 234, 0.1), 0 2px 8px rgba(0,0,0,0.04);
    border: 1px solid rgba(102, 126, 234, 0.08);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.form-row-3col {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 16px;
    margin-bottom: 16px;
}

.form-row-submit {
    margin-bottom: 12px;
}

.form-group-modern {
    position: relative;
    margin-bottom: 18px;
}

.form-group-modern .input-icon {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: #667eea;
    font-size: 0.95rem;
    z-index: 2;
    pointer-events: none;
}

.form-group-modern input {
    width: 100%;
    padding: 15px 18px 15px 44px;
    border: 1.5px solid #e2e8f0;
    border-radius: 12px;
    font-size: 0.95rem;
    font-family: inherit;
    transition: border-color 0.2s, box-shadow 0.2s, background 0.2s;
    background: #fafbff;
}

.form-group-modern input:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 4px rgba(102, 126, 234, 0.1);
    background: #fff;
}

.form-group-modern input::placeholder {
    color: #a0aec0;
}

.btn-submit-modern {
    width: 100%;
    padding: 16px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1.05rem;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.3s;
    font-family: inherit;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    margin-top: 6px;
    position: relative;
    overflow: hidden;
}

.btn-submit-modern::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.15) 0%, transparent 60%);
    opacity: 0;
    transition: opacity 0.3s;
}

.btn-submit-modern:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 30px rgba(102, 126, 234, 0.45);
}

.btn-submit-modern:hover::after {
    opacity: 1;
}

.form-privacy {
    text-align: center;
    font-size: 0.8rem;
    color: #a0aec0;
    margin-top: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
}

.form-privacy i {
    color: #48bb78;
    font-size: 0.75rem;
}

@media (max-width: 768px) {
    .contact-form-section {
        padding: 60px 0;
    }
    .contact-form-modern {
        padding: 28px 20px 24px;
        border-radius: 16px;
        margin: 0 8px;
    }
    .form-row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    .form-row-3col {
        display: flex !important;
        flex-direction: column !important;
        gap: 12px !important;
        grid-template-columns: none !important;
    }
    .form-row-3col .form-group-modern {
        width: 100% !important;
    }
    .contact-form-header h3 {
        font-size: 1.4rem;
    }
    .contact-badge {
        font-size: 0.75rem;
        padding: 4px 12px;
    }
}

@media (max-width: 480px) {
    .contact-form-modern {
        padding: 24px 16px 20px;
    }
    .form-group-modern input {
        padding: 13px 14px 13px 40px;
        font-size: 0.9rem;
    }
    .btn-submit-modern {
        padding: 14px;
        font-size: 1rem;
    }
}

/* ==================== 首页搜索框 - 简约风格 ==================== */
.home-search-bar {
    padding: 24px 0;
    background: var(--bg-light);
}

.home-search-box {
    display: flex;
    align-items: center;
    background: #ffffff;
    border: 1px solid var(--border-color);
    border-radius: 12px;
    padding: 4px 4px 4px 16px;
    max-width: 600px;
    margin: 0 auto;
    transition: all 0.2s ease;
}

.home-search-box:focus-within {
    border-color: var(--primary-color);
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

.home-search-box .search-icon {
    color: var(--text-light);
    font-size: 18px;
    margin-right: 12px;
    flex-shrink: 0;
}

.home-search-box input {
    flex: 1;
    border: none;
    background: transparent;
    font-size: 15px;
    color: var(--text-dark);
    outline: none;
    padding: 12px 0;
    font-family: 'Noto Sans SC', sans-serif;
}

.home-search-box input::placeholder {
    color: var(--text-light);
}

.btn-home-search {
    padding: 10px 24px;
    background: var(--primary-color);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: 'Noto Sans SC', sans-serif;
    white-space: nowrap;
}

.btn-home-search:hover {
    background: var(--primary-dark);
}

.btn-home-search:active {
    transform: scale(0.98);
}

/* 响应式 */
@media (max-width: 768px) {
    .home-search-bar {
        padding: 16px 0;
    }

    .home-search-box {
        padding: 3px 3px 3px 12px;
        border-radius: 10px;
    }

    .home-search-box .search-icon {
        font-size: 16px;
        margin-right: 8px;
    }

    .home-search-box input {
        font-size: 14px;
        padding: 10px 0;
    }

    .btn-home-search {
        padding: 9px 18px;
        font-size: 13px;
        border-radius: 7px;
    }
}

@media (max-width: 480px) {
    .home-search-box {
        padding: 2px 2px 2px 10px;
        border-radius: 8px;
    }

    .home-search-box .search-icon {
        font-size: 15px;
    }

    .home-search-box input {
        font-size: 13px;
        padding: 9px 0;
    }

    .btn-home-search {
        padding: 8px 14px;
        font-size: 12px;
        border-radius: 6px;
    }
}


/* ==================== 面包屑导航 ==================== */
.breadcrumb {
    max-width: 1200px;
    margin: 18px auto 12px;
    padding: 0 20px;
    font-size: .82rem;
    display: flex;
    align-items: center;
    gap: 0;
}
.breadcrumb a {
    color: #667eea;
    text-decoration: none;
    padding: 3px 6px;
    border-radius: 4px;
    transition: all .2s;
}
.breadcrumb a:hover {
    color: #5a6fd6;
    background: rgba(102, 126, 234, .08);
}
.breadcrumb .bc-sep {
    color: #cbd5e1;
    margin: 0 6px;
    font-size: .75rem;
    user-select: none;
}
.breadcrumb .bc-current {
    color: #334155;
    font-weight: 600;

.breadcrumb a:hover {
    color: #5a6fd6;
    background: rgba(102, 126, 234, .08);
}
.breadcrumb .bc-sep {
    color: #cbd5e1;
    margin: 0 6px;
    user-select: none;
}

/* cache-bust 1779550795 */
