* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: "Segoe UI", "PingFang SC", Roboto, sans-serif
}

body {
    background: #f5f9ff;
    color: #1e293b;
    padding-bottom: 150px
}
a{
    text-decoration: none;
    color: #1e293b;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px
}

.header {
    background: #fff;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
    position: sticky;
    top: 0;
    z-index: 100
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 70px
}

.logo img {
    height: 48px;
    vertical-align: middle
}

.nav {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex: 1;
    list-style: none;
    margin: 0;
    padding: 0
}

.nav-item {
    position: relative;
    list-style: none
}

.nav-link {
    text-decoration: none;
    color: #2c3e50;
    font-weight: 700;
    font-size: 1rem;
    transition: color 0.2s;
    display: inline-block;
    padding: 8px 0;
    white-space: nowrap
}

.nav-link:hover,
.nav-item.active>.nav-link {
    color: #2b6cb0
}

.dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border-radius: 16px;
    box-shadow: 0 12px 28px rgba(0, 0, 0, 0.12);
    min-width: 160px;
    padding: 12px 0;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-8px);
    transition: all 0.25s ease;
    z-index: 200;
    list-style: none;
    border: 1px solid #eef2ff
}

.nav-item:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0)
}

.dropdown-menu a {
    display: block;
    padding: 8px 20px;
    color: #2c3e50;
    text-decoration: none;
    font-size: 0.9rem;
    font-weight: 500;
    transition: background 0.2s
}

.dropdown-menu a:hover {
    background: #eef2ff;
    color: #2b6cb0
}

.nav-link i {
    font-size: 0.8rem;
    margin-left: 4px;
    opacity: 0.6
}

.header-tel {
    font-size: 1.1rem;
    font-weight: 600;
    color: #2b6cb0;
    background: #eef2ff;
    padding: 6px 16px;
    border-radius: 40px
}

.header-tel i {
    margin-right: 6px
}

.carousel {
    position: relative;
    width: 100%;
    overflow: hidden;
    border-radius: 0 0 20px 20px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05)
}

.carousel-inner {
    display: flex;
    transition: transform 0.5s ease
}

.carousel-item {
    flex: 0 0 100%
}

.carousel-item img {
    width: 100%;
    height: 400px;
    object-fit: cover;
    display: block
}

.carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.4);
    color: #fff;
    border: none;
    font-size: 28px;
    padding: 8px 16px;
    border-radius: 50%;
    cursor: pointer;
    transition: 0.2s
}

.carousel-btn:hover {
    background: rgba(0, 0, 0, 0.7)
}

.prev {
    left: 20px
}

.next {
    right: 20px
}

.dots {
    position: absolute;
    bottom: 15px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 10px
}

.dot {
    width: 10px;
    height: 10px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    cursor: pointer
}

.dot.active {
    background: #fff
}

.section-title {
    font-size: 1.8rem;
    font-weight: 700;
    margin: 50px 0 25px;
    color: #0f3b5c;
    border-left: 5px solid #2b6cb0;
    padding-left: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 12px
}

.title-left {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 20px
}

.title-tabs {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

.more-btn {
    background: transparent;
    border: 1px solid #2b6cb0;
    color: #2b6cb0;
    padding: 6px 18px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s;
    white-space: nowrap
}

.more-btn:hover {
    background: #2b6cb0;
    color: #fff
}

.tab-btn,
.region-btn {
    background: #eef2ff;
    padding: 8px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #2b6cb0;
    cursor: pointer;
    transition: all 0.2s
}

.tab-btn.active,
.region-btn.active {
    background: #2b6cb0;
    color: #fff
}

.school-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
    margin-bottom: 40px
}

.school-card {
    background: #fff;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    text-align: center;
    padding-bottom: 15px;
    transition: 0.2s
}

.school-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.1)
}

.school-card img {
    width: 100%;
    height: 150px;
    object-fit: cover
}

.school-card h3,
.news-info h4,
.brochure-info h4,
.info-info h4 {
    font-size: 18px;
    font-weight: 500;
    margin: 12px 0 5px;
    line-height: 1.4
}

.school-card .desc {
    font-size: 0.85rem;
    color: #5b6e8c;
    padding: 0 10px 10px
}

.two-col-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 40px
}

.news-card,
.brochure-card,
.info-card {
    display: flex;
    gap: 16px;
    background: #fff;
    border-radius: 20px;
    padding: 14px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9eef3;
    transition: 0.2s
}

.news-card:hover,
.brochure-card:hover,
.info-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08)
}

.news-img,
.brochure-img,
.info-img {
    width: 190px;
    height: 120px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0
}

.news-info,
.brochure-info,
.info-info {
    flex: 1
}

.news-info a,
.brochure-info a,
.info-info a {
    text-decoration: none;
    color: #1f2a44
}

.news-info a:hover,
.brochure-info a:hover,
.info-info a:hover {
    color: #2b6cb0
}

.date {
    font-size: 0.75rem;
    color: #8a99b0;
    margin-top: 6px;
    display: inline-block
}

.summary {
    font-size: 0.8rem;
    color: #5b6e8c;
    line-height: 1.4;
    margin-top: 6px;
    display: block
}

.volunteer-wrapper {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    margin-bottom: 40px
}

.process-box {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05)
}

.process-box h3 {
    font-size: 1.3rem;
    margin-bottom: 20px;
    color: #0f3b5c;
    border-left: 4px solid #2b6cb0;
    padding-left: 15px;
    font-weight: 600
}

.process-list {
    list-style: none
}

.process-list li {
    display: flex;
    align-items: baseline;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px dashed #e9eef3
}

.process-step {
    font-weight: 700;
    background: #eef2ff;
    width: 70px;
    text-align: center;
    padding: 4px 0;
    border-radius: 30px;
    color: #2b6cb0;
    font-size: 0.85rem
}

.process-content {
    flex: 1
}

.process-content strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 4px;
    font-weight: 600
}

.process-content span {
    font-size: 0.85rem;
    color: #5b6e8c
}

.volunteer-right-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 16px
}

.volunteer-right-header h3 {
    font-size: 1.3rem;
    font-weight: 600;
    color: #0f3b5c
}

.more-sm-btn {
    background: transparent;
    border: 1px solid #2b6cb0;
    color: #2b6cb0;
    padding: 4px 14px;
    border-radius: 40px;
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s
}

.more-sm-btn:hover {
    background: #2b6cb0;
    color: #fff
}

.info-list {
    display: flex;
    flex-direction: column;
    gap: 20px
}

.breadcrumb {
    margin: 20px 0 10px;
    font-size: 0.9rem;
    color: #5b6e8c
}

.breadcrumb a {
    color: #2b6cb0;
    text-decoration: none
}

.breadcrumb a:hover {
    text-decoration: underline
}

.breadcrumb span {
    color: #1e293b
}

.page-header {
    margin-bottom: 30px
}

.page-header h1 {
    font-size: 32px;
    font-weight: 700;
    color: #0f3b5c;
    border-left: 5px solid #2b6cb0;
    padding-left: 18px
}

.content-wrapper {
    display: flex;
    gap: 40px;
    margin: 20px 0 50px
}

.list-main {
    flex: 2
}

.sidebar {
    flex: 1;
    min-width: 280px
}

.list-item {
    display: flex;
    gap: 20px;
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 24px;
    box-shadow: 0 5px 12px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9eef3;
    transition: 0.2s
}

.list-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.08)
}

.list-img {
    width: 190px;
    height: 120px;
    border-radius: 16px;
    object-fit: cover;
    flex-shrink: 0
}

.list-content {
    flex: 1
}

.list-title {
    font-size: 1.2rem;
    font-weight: 500;
    margin-bottom: 8px
}

.list-title a {
    text-decoration: none;
    color: #1f2a44;
    transition: color 0.2s
}

.list-title a:hover {
    color: #2b6cb0
}

.list-meta {
    font-size: 0.75rem;
    color: #8a99b0;
    margin-bottom: 10px;
    display: flex;
    gap: 16px
}

.list-summary {
    font-size: 0.85rem;
    color: #5b6e8c;
    line-height: 1.5
}

.pagination {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin: 30px 0 50px;
    flex-wrap: wrap
}

.page-num {
    background: #fff;
    text-decoration: none;
    padding: 8px 16px;
    border-radius: 40px;
    cursor: pointer;
    transition: 0.2s;
    font-weight: 500;
    color: #1f2a44;
}

.page-num.page-num-current {
    background: #2b6cb0;
    color: #fff;
    border-color: #2b6cb0
}

.page-num:hover:not(.page-num-current) {
    background: #eef2ff
}

.page-num.disabled {
    opacity: 0.5;
    cursor: not-allowed
}

.sidebar-card {
    background: #fff;
    border-radius: 24px;
    padding: 20px;
    margin-bottom: 30px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.03);
    border: 1px solid #e9eef3
}

.sidebar-card h3 {
    font-size: 1.3rem;
    font-weight: 600;
    border-left: 4px solid #2b6cb0;
    padding-left: 14px;
    margin-bottom: 18px;
    color: #0f3b5c
}

.hot-article-item {
    display: flex;
    gap: 14px;
    margin-bottom: 18px;
    align-items: center
}

.hot-article-img {
    width: 115px;
    height: 77px;
    border-radius: 12px;
    object-fit: cover;
    flex-shrink: 0;
    background: #eef2ff
}

.hot-article-info {
    flex: 1
}

.hot-article-info a {
    text-decoration: none;
    color: #1f2a44;
    font-weight: 500;
    font-size: 0.9rem;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden
}

.hot-article-info a:hover {
    color: #2b6cb0
}

.rec-school-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px
}

.rec-school-item {
    text-align: center;
    background: #f8fafc;
    border-radius: 18px;
    padding: 12px 8px;
    transition: 0.2s
}

.rec-school-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.05)
}

.rec-school-img {
    width: 100%;
    aspect-ratio: 1 / 0.9;
    object-fit: cover;
    border-radius: 16px;
    margin-bottom: 10px;
    background: #e2e8f0
}

.rec-school-name {
    font-size: 0.85rem;
    font-weight: 500;
    color: #1e293b;
    line-height: 1.3
}

.intro-box {
    background: #eef2ff;
    padding: 16px 20px;
    border-radius: 20px;
    margin-bottom: 30px;
    font-size: 0.95rem;
    line-height: 1.5;
    color: #1e293b;
    border-left: 5px solid #2b6cb0
}

.filter-bar {
    background: #fff;
    border-radius: 20px;
    padding: 20px 24px;
    margin-bottom: 30px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.03);
    display: flex;
    flex-direction: column;
    gap: 20px
}

.filter-group {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap
}

.filter-group label {
    font-weight: 600;
    color: #0f3b5c;
    width: 80px;
    font-size: 0.95rem
}

.filter-options {
    display: flex;
    flex-wrap: wrap;
    gap: 12px
}

.filter-btn {
    background: #eef2ff;
    padding: 6px 20px;
    border-radius: 40px;
    font-size: 0.9rem;
    font-weight: 500;
    color: #2b6cb0;
    cursor: pointer;
    transition: all 0.2s
}

.filter-btn.active {
    background: #2b6cb0;
    color: #fff
}

.filter-btn:hover {
    background: #cddfef
}

.school-grid-large {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    margin-bottom: 40px
}

.school-card-large {
    background: #fff;
    border-radius: 24px;
    overflow: hidden;
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.05);
    transition: 0.2s
}

.school-card-large:hover {
    transform: translateY(-5px);
    box-shadow: 0 16px 28px rgba(0, 0, 0, 0.1)
}

.school-card-large img {
    width: 100%;
    height: 160px;
    object-fit: cover
}

.school-card-large .info {
    padding: 16px
}

.school-card-large h3 {
    font-size: 18px;
    font-weight: 500;
    margin-bottom: 8px
}

.school-card-large .school-desc {
    font-size: 0.85rem;
    color: #5b6e8c;
    margin-bottom: 8px;
    line-height: 1.4
}

.school-card-large .address {
    font-size: 0.8rem;
    color: #8a99b0;
    display: flex;
    align-items: center;
    gap: 6px
}

.address i {
    width: 16px
}

.school-badge {
    display: inline-block;
    font-size: 0.7rem;
    padding: 2px 8px;
    border-radius: 20px;
    margin-top: 6px;
    background: #eef2ff;
    color: #2b6cb0
}

.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin: 40px 0 20px
}

.section-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: #0f3b5c;
    border-left: 5px solid #2b6cb0;
    padding-left: 18px
}

.consult-bar {
    background: #2c5a7a;
    border-top: 1px solid #1e4059;
    padding: 20px 0;
    position: fixed;
    bottom: 0;
    left: 0;
    width: 100%;
    z-index: 999;
    box-shadow: 0 -4px 12px rgba(0, 0, 0, 0.2)
}

.slogan {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
    background: rgba(0, 0, 0, 0.2);
    padding: 6px 20px;
    border-radius: 40px;
    display: inline-block
}

.consult-form {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: center;
    gap: 15px
}

.consult-item {
    display: flex;
    align-items: center;
    gap: 8px;
    background: #fff;
    padding: 5px 16px;
    border-radius: 50px;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.1)
}

.consult-item label {
    font-weight: 600;
    color: #2c3e50;
    white-space: nowrap
}

.consult-item input {
    border: none;
    padding: 10px 0;
    font-size: 0.95rem;
    background: transparent;
    outline: none;
    width: 140px
}

.verify-group {
    display: flex;
    align-items: center;
    gap: 6px
}

.verify-group input {
    width: 70px
}

.verify-code {
    background: #e2e8f0;
    text-align: center;
    padding: 6px 12px;
    border-radius: 40px;
    font-weight: bold;
    cursor: pointer;
    user-select: none
}

.submit-btn {
    background: #f9a826;
    color: #1e2a3e;
    border: none;
    padding: 10px 24px;
    border-radius: 40px;
    font-weight: 700;
    cursor: pointer;
    transition: 0.2s;
    white-space: nowrap
}

.submit-btn:hover {
    background: #e69500
}
/* 文章头部 */
        .article-header h1 {
            font-size: 32px;
            font-weight: 700;
            color: #0f3b5c;
            margin-bottom: 16px;
            line-height: 1.3;
        }
        .article-meta {
            display: flex;
            gap: 20px;
            align-items: center;
            padding-bottom: 20px;
            border-bottom: 1px solid #e9eef3;
            margin-bottom: 24px;
            color: #5b6e8c;
            font-size: 0.9rem;
        }
        .article-meta i {
            margin-right: 6px;
            color: #2b6cb0;
        }
        /* 正文样式 */
        .article-body {
            font-size: 1rem;
            line-height: 1.75;
            color: #1e293b;
        }
        .article-body p {
            margin-bottom: 1.2em;
        }
        .article-body h2 {
            font-size: 1.5rem;
            margin: 1.5em 0 0.8em;
            color: #0f3b5c;
        }
        .article-body img {
            max-width: 100%;
            border-radius: 20px;
            margin: 20px 0;
        }

        /* 右侧公用卡片样式 */
        .sidebar-card {
            background: #fff;
            border-radius: 24px;
            padding: 20px;
            margin-bottom: 30px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.03);
            border: 1px solid #e9eef3;
        }
        .sidebar-card h3 {
            font-size: 1.3rem;
            font-weight: 600;
            border-left: 4px solid #2b6cb0;
            padding-left: 14px;
            margin-bottom: 18px;
            color: #0f3b5c;
        }

        /* 热门文章 - 图文列表 (缩略图115*77) */
        .hot-article-item {
            display: flex;
            gap: 14px;
            margin-bottom: 18px;
            align-items: center;
        }
        .hot-article-img {
            width: 115px;
            height: 77px;
            border-radius: 12px;
            object-fit: cover;
            flex-shrink: 0;
            background: #eef2ff;
        }
        .hot-article-info {
            flex: 1;
        }
        .hot-article-info a {
            text-decoration: none;
            color: #1f2a44;
            font-weight: 500;
            font-size: 0.9rem;
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .hot-article-info a:hover {
            color: #2b6cb0;
        }

        /* 推荐复读学校 - 两列三行网格 */
        .rec-school-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
        }
        .rec-school-item {
            text-align: center;
            background: #f8fafc;
            border-radius: 18px;
            padding: 12px 8px;
            transition: 0.2s;
        }
        .rec-school-item:hover {
            transform: translateY(-3px);
            box-shadow: 0 6px 12px rgba(0,0,0,0.05);
        }
        .rec-school-img {
            width: 100%;
            aspect-ratio: 1 / 0.9;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 10px;
            background: #e2e8f0;
        }
        .rec-school-name {
            font-size: 0.85rem;
            font-weight: 500;
            color: #1e293b;
            line-height: 1.3;
        }

.footer {
    background: #0b2a3e;
    color: #cbd5e6;
    padding: 30px 0 20px;
    text-align: center;
    font-size: 0.85rem;
    margin-top: 40px
}

.footer a {
    color: #aac8f0;
    text-decoration: none;
    margin: 0 8px
}

.footer p {
    margin: 8px 0
}

@media (max-width: 1000px) {
    .school-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .volunteer-wrapper {
        grid-template-columns: 1fr;
        gap: 24px
    }

    .school-grid-large {
        grid-template-columns: repeat(2, 1fr)
    }
}

@media (max-width: 900px) {
    .school-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .two-col-grid {
        grid-template-columns: 1fr
    }

    .consult-form {
        flex-wrap: wrap
    }

    .nav {
        gap: 12px;
        flex-wrap: wrap
    }

    .section-title {
        flex-direction: column;
        align-items: flex-start
    }

    .title-left {
        width: 100%;
        justify-content: space-between
    }

    .news-img,
    .brochure-img,
    .info-img {
        width: 120px;
        height: 80px
    }

    .content-wrapper {
        flex-direction: column
    }

    .sidebar {
        order: 2
    }

    .list-item {
        flex-direction: column
    }

    .list-img {
        width: 100%;
        height: auto;
        aspect-ratio: 16/9
    }
}

@media (max-width: 600px) {
    .school-grid {
        grid-template-columns: 1fr
    }

    .news-img,
    .brochure-img,
    .info-img {
        width: 100px;
        height: 70px
    }

    .hot-article-img {
        width: 90px;
        height: 60px
    }

    .rec-school-grid {
        gap: 12px
    }

    .school-grid-large {
        grid-template-columns: 1fr
    }

    .filter-group {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px
    }

    .filter-group label {
        width: auto
    }
}