 /* ===== 全局重置 & 基础 ===== */
        * { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: "PingFang SC", "Microsoft YaHei", Arial, sans-serif; background: #fff; color: #1a1a2e; line-height: 1.6; }
        a { text-decoration: none; color: inherit; }
        img { display: block; max-width: 100%; height: auto; }
        ul,li{
            list-style: none;
        }
        .container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }

        /* ===== 全新品牌色（深绿+红+金） ===== */
        :root {
            --primary: #085741;          /* 深绿 - 主色 */
            --primary-dark: #06422f;      /* 深绿暗色 */
            --primary-light: #2a7a5e;     /* 浅绿 - 悬停/背景 */
            --secondary: #c1080e;         /* 正红 - 强调 */
            --secondary-hover: #a0070b;   /* 暗红 */
            --accent: #d4a017;            /* 暖金 - 点缀 */
            --gray-bg: #f5f8fa;
            --gray-border: #e5e7eb;
            --text-dark: #1a1a2e;
            --text-muted: #6b7280;
            --shadow-sm: 0 4px 14px rgba(8, 87, 65, 0.10);
            --shadow-hover: 0 8px 30px rgba(8, 87, 65, 0.18);
            --radius: 6px;
        }

        /* ===== 顶部信息栏 ===== */
        .top-bar {
            background: #e8f0ed;
            border-bottom: 1px solid var(--gray-border);
            font-size: 13px;
            color: var(--text-muted);
            padding: 6px 0;
        }
        .top-bar .container { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; }
        .top-bar .left i { color: var(--primary); }
        .top-bar .right { display: flex; gap: 20px; align-items: center; }
        .top-bar .right .hotline { color: var(--primary); font-weight: 600; font-size: 15px; }

        /* ===== Header ===== */
        .header {
            background: #fff;
            border-bottom: 2px solid var(--gray-border);
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 2px 12px rgba(0,0,0,0.04);
        }
        .header .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
        }

        .logo-area {
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .logo-icon {
            width: 64px;
            height: 64px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .logo-icon svg { width: 100%; height: 100%; display: block; }

        .logo-text h1 {
            font-size: 22px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 1px;
            line-height: 1.2;
        }
        .logo-text .sub {
            font-size: 13px;
            color: var(--text-muted);
            letter-spacing: 2px;
            font-weight: 400;
        }

        .header-right {
            display: flex;
            align-items: center;
            gap: 22px;
            flex-wrap: wrap;
        }
        .header-right .contact-item {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: var(--text-muted);
            cursor: pointer;
            transition: color 0.2s;
        }
        .header-right .contact-item:hover { color: var(--primary); }
        .header-right .contact-item i { font-size: 18px; color: var(--primary); }
        .header-right .btn-consult {
            background: var(--secondary);
            color: #fff;
            padding: 8px 22px;
            border-radius: 30px;
            font-size: 14px;
            font-weight: 600;
            transition: background 0.25s;
            border: none;
            cursor: pointer;
        }
        .header-right .btn-consult:hover { background: var(--secondary-hover); }

        /* ===== 导航 ===== */
        .nav-wrap { background: #fff; border-bottom: 2px solid var(--gray-border); box-shadow: 0 2px 6px rgba(0,0,0,0.03); }
        .nav-wrap .container { display: flex; justify-content: space-between; align-items: center; }
        .nav-menu { display: flex; list-style: none; flex-wrap: wrap; }
        .nav-menu>li { position: relative; }
        .nav-menu>li>a {
            display: block; padding: 12px 18px; font-size: 15px; font-weight: 500;
            color: var(--text-dark); transition: 0.2s; border-bottom: 3px solid transparent;
        }
        .nav-menu>li>a:hover, .nav-menu>li>a.active {
            color: var(--primary); border-bottom-color: var(--primary); background: #f0f7f4;
        }
        .nav-menu>li>a.active { font-weight: 600; }
        .nav-menu .dropdown {
            display: none; position: absolute; top: 100%; left: 0; background: #fff;
            min-width: 160px; box-shadow: 0 8px 24px rgba(0,0,0,0.10); border-radius: var(--radius);
            padding: 6px 0; border: 1px solid var(--gray-border); z-index: 50;
        }
        .nav-menu>li:hover .dropdown { display: block; }
        .nav-menu .dropdown li a {
            display: block; padding: 8px 20px; font-size: 14px; color: var(--text-dark);
            transition: background 0.15s;
        }
        .nav-menu .dropdown li a:hover { background: #f0f7f4; color: var(--primary); }

        .hamburger {
            display: none; flex-direction: column; gap: 5px; cursor: pointer;
            background: none; border: none; padding: 6px 4px;
        }
        .hamburger span { display: block; width: 26px; height: 3px; background: var(--text-dark); border-radius: 2px; transition: 0.25s; }

        /* ===== Banner ===== */
        .banner-wrap { position: relative; overflow: hidden; background: #eef2f7; }
        .banner-slider { display: flex; transition: transform 0.6s ease; }
        .banner-slide {
            min-width: 100%; position: relative; height: 460px;
            background-size: cover; background-position: center; display: flex; align-items: center;
        }
        .banner-slide .overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.35); z-index: 1; }
        .banner-slide .content {
            position: relative; z-index: 2; color: #fff; max-width: 620px; padding: 0 20px;
        }
        .banner-slide .content h2 { font-size: 40px; font-weight: 700; margin-bottom: 10px; line-height: 1.2; text-shadow: 0 2px 12px rgba(0,0,0,0.2); }
        .banner-slide .content h2 span { color: var(--accent); }
        .banner-slide .content p { font-size: 18px; margin-bottom: 18px; opacity: 0.95; text-shadow: 0 1px 8px rgba(0,0,0,0.2); }
        .banner-slide .content .btns { display: flex; gap: 14px; flex-wrap: wrap; }
        .banner-slide .content .btns a {
            padding: 12px 36px; border-radius: 30px; font-weight: 600; font-size: 16px;
            transition: 0.25s; display: inline-block;
        }
        .banner-slide .content .btns .btn-primary { background: var(--secondary); color: #fff; }
        .banner-slide .content .btns .btn-primary:hover { background: var(--secondary-hover); transform: translateY(-2px); }
        .banner-slide .content .btns .btn-outline {
            background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.7);
        }
        .banner-slide .content .btns .btn-outline:hover { background: rgba(255,255,255,0.15); border-color: #fff; }

        .banner-dots {
            position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%);
            display: flex; gap: 12px; z-index: 5;
        }
        .banner-dots span {
            width: 12px; height: 12px; border-radius: 50%;
            background: rgba(255,255,255,0.5); cursor: pointer; transition: 0.25s; border: none;
        }
        .banner-dots span.active { background: #fff; transform: scale(1.2); }

        /* ===== 核心优势 ===== */
        .section-advantages { padding: 50px 0 40px; background: #fff; }
        .advantages-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 20px; }
        .advantage-item {
            text-align: center; padding: 24px 14px; border-radius: var(--radius);
            background: var(--gray-bg); transition: 0.25s; box-shadow: var(--shadow-sm);
        }
        .advantage-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
        .advantage-item .icon { font-size: 36px; color: var(--primary); margin-bottom: 10px; }
        .advantage-item h4 { font-size: 17px; font-weight: 600; margin-bottom: 4px; color: var(--text-dark); }
        .advantage-item p { font-size: 13px; color: var(--text-muted); margin: 0; }

        /* ===== 痛点 ===== */
        .section-pain { padding: 50px 0; background: var(--gray-bg); }
        .section-title { text-align: center; margin-bottom: 36px; }
        .section-title h2 { font-size: 32px; font-weight: 700; color: var(--text-dark); position: relative; display: inline-block; }
        .section-title h2::after {
            content: ''; display: block; width: 60px; height: 4px;
            background: var(--secondary); margin: 8px auto 0; border-radius: 2px;
        }
        .section-title .sub { color: var(--text-muted); font-size: 16px; margin-top: 8px; }

        .pain-grid { display: grid; grid-template-columns: repeat(5,1fr); gap: 18px; }
        .pain-card {
            background: #fff; border-radius: var(--radius); overflow: hidden;
            box-shadow: var(--shadow-sm); transition: 0.25s;
        }
        .pain-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
        .pain-card .img-wrap { height: 140px; background: #dce3ed; overflow: hidden; }
        .pain-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .pain-card .body { padding: 14px 16px 18px; }
        .pain-card .body h4 { font-size: 16px; font-weight: 600; margin-bottom: 4px; }
        .pain-card .body p { font-size: 13px; color: var(--text-muted); margin: 0; }

        .pain-cta { text-align: center; margin-top: 30px; }
        .pain-cta a {
            display: inline-block; background: var(--primary); color: #fff;
            padding: 12px 40px; border-radius: 30px; font-weight: 600; font-size: 16px;
            transition: 0.25s;
        }
        .pain-cta a:hover { background: var(--primary-dark); transform: translateY(-2px); }

        /* ===== 关于我们 ===== */
        .section-about { padding: 56px 0; background: #fff; }
        .about-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; }
        .about-wrap .img-wrap {
            border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm);
            background: #dce3ed; height: 340px;
        }
        .about-wrap .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .about-text h3 { font-size: 28px; font-weight: 700; color: var(--primary); margin-bottom: 14px; }
        .about-text p { color: #374151; margin-bottom: 12px; font-size: 15px; line-height: 1.8; }
        .about-stats { display: grid; grid-template-columns: repeat(4,1fr); gap: 12px; margin: 18px 0 22px; }
        .about-stats .stat {
            text-align: center; background: var(--gray-bg); padding: 12px 6px;
            border-radius: var(--radius); box-shadow: var(--shadow-sm);
        }
        .about-stats .stat .num { font-size: 24px; font-weight: 700; color: var(--primary); }
        .about-stats .stat .label { font-size: 12px; color: var(--text-muted); }
        .about-text .btn-more {
            display: inline-block; padding: 10px 32px; background: var(--primary);
            color: #fff; border-radius: 30px; font-weight: 600; transition: 0.25s;
        }
        .about-text .btn-more:hover { background: var(--primary-dark); transform: translateY(-2px); }

        /* ===== 课程 ===== */
        .section-course { padding: 50px 0; background: var(--gray-bg); }
        .course-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 24px; }
        .course-card {
            background: #fff; border-radius: var(--radius); overflow: hidden;
            transition: 0.25s; box-shadow: var(--shadow-sm);
        }
        .course-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
        .course-card .img-wrap { height: 170px; background: #dce3ed; overflow: hidden; }
        .course-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .course-card .body { padding: 18px 20px 22px; }
        .course-card .body h4 { font-size: 18px; font-weight: 600; margin-bottom: 6px; color: var(--text-dark); }
        .course-card .body p { font-size: 14px; color: var(--text-muted); margin-bottom: 12px; line-height: 1.7; }
        .course-card .body a { color: var(--primary); font-weight: 500; font-size: 14px; }
        .course-card .body a i { margin-left: 4px; transition: 0.2s; }
        .course-card .body a:hover i { transform: translateX(4px); }

        /* ===== 教学流程 ===== */
        .section-flow { padding: 50px 0; background: #fff; }
        .flow-wrap {
            display: flex; justify-content: space-between; align-items: flex-start;
            position: relative; margin-top: 20px; flex-wrap: wrap;
        }
        .flow-wrap::before {
            content: ''; position: absolute; top: 44px; left: 60px; right: 60px;
            height: 3px; background: var(--gray-border); z-index: 0;
        }
        .flow-step {
            flex: 1; text-align: center; position: relative; z-index: 1;
            min-width: 100px; padding: 0 8px;
        }
        .flow-step .num {
            display: inline-flex; align-items: center; justify-content: center;
            width: 48px; height: 48px; border-radius: 50%; background: var(--primary);
            color: #fff; font-weight: 700; font-size: 18px; margin-bottom: 10px;
        }
        .flow-step .icon { font-size: 28px; color: var(--primary); margin-bottom: 6px; }
        .flow-step h4 { font-size: 16px; font-weight: 600; margin-bottom: 2px; }
        .flow-step p { font-size: 13px; color: var(--text-muted); margin: 0; }

        /* ===== 校园环境 ===== */
        .section-campus { padding: 50px 0; background: var(--gray-bg); }
        .campus-grid {
            display: grid; grid-template-columns: 2fr 1fr 1fr;
            grid-template-rows: auto auto; gap: 14px;
        }
        .campus-grid .big { grid-row: 1 / 3; height: 380px; background: #dce3ed; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
        .campus-grid .big img { width: 100%; height: 100%; object-fit: cover; }
        .campus-grid .small { height: 180px; background: #dce3ed; border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-sm); }
        .campus-grid .small img { width: 100%; height: 100%; object-fit: cover; }

        /* ===== 师资 ===== */
        .section-teacher { padding: 50px 0; background: #fff; }
        .teacher-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 22px; }
        .teacher-card {
            background: #fff; border-radius: var(--radius); overflow: hidden;
            box-shadow: var(--shadow-sm); transition: 0.25s; text-align: center;
        }
        .teacher-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
        .teacher-card .img-wrap { height: 200px; background: #dce3ed; overflow: hidden; }
        .teacher-card .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .teacher-card .body { padding: 16px 14px 20px; }
        .teacher-card .body h4 { font-size: 17px; font-weight: 600; }
        .teacher-card .body .title { font-size: 13px; color: var(--primary); font-weight: 500; }
        .teacher-card .body .detail { font-size: 13px; color: var(--text-muted); margin: 6px 0 10px; }
        .teacher-card .body .btn-sm {
            display: inline-block; padding: 6px 20px; border: 1px solid var(--primary);
            color: var(--primary); border-radius: 20px; font-size: 13px; font-weight: 500;
            transition: 0.2s;
        }
        .teacher-card .body .btn-sm:hover { background: var(--primary); color: #fff; }

        /* ===== 案例 ===== */
        .section-case { padding: 50px 0; background: var(--gray-bg); }
        .case-tabs {
            display: flex; justify-content: center; gap: 12px;
            margin-bottom: 28px; flex-wrap: wrap;
        }
        .case-tabs button {
            padding: 8px 28px; border: 2px solid var(--gray-border); background: #fff;
            border-radius: 30px; font-size: 15px; font-weight: 500; color: var(--text-muted);
            cursor: pointer; transition: 0.2s;
        }
        .case-tabs button.active {
            border-color: var(--primary); background: var(--primary); color: #fff;
        }
        .case-tabs button:hover:not(.active) {
            border-color: var(--primary-light); color: var(--primary);
        }
        .case-content {
            display: grid; grid-template-columns: 1fr 1fr; gap: 28px;
            background: #fff; border-radius: var(--radius); padding: 28px;
            box-shadow: var(--shadow-sm); transition: 0.25s;
        }
        .case-content:hover { box-shadow: var(--shadow-hover); }
        .case-content .img-wrap { height: 260px; background: #dce3ed; border-radius: var(--radius); overflow: hidden; }
        .case-content .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .case-content .info h4 { font-size: 20px; font-weight: 600; margin-bottom: 8px; }
        .case-content .info .meta { font-size: 14px; color: var(--text-muted); margin-bottom: 6px; }
        .case-content .info p { font-size: 14px; color: #374151; line-height: 1.8; margin-bottom: 6px; }
        .case-content .info .highlight { color: var(--primary); font-weight: 500; }
        .case-cta { text-align: center; margin-top: 24px; }
        .case-cta a {
            display: inline-block; padding: 10px 36px; background: var(--primary);
            color: #fff; border-radius: 30px; font-weight: 600; transition: 0.25s;
        }
        .case-cta a:hover { background: var(--primary-dark); transform: translateY(-2px); }

        /* ===== 家长评价 ===== */
        .section-review { padding: 50px 0; background: #fff; }
        .review-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 22px; }
        .review-card {
            background: var(--gray-bg); border-radius: var(--radius); padding: 22px 24px;
            box-shadow: var(--shadow-sm); transition: 0.2s;
        }
        .review-card:hover { box-shadow: var(--shadow-hover); }
        .review-card .stars { color: var(--accent); font-size: 16px; letter-spacing: 2px; }
        .review-card .text { font-size: 14px; color: #374151; line-height: 1.8; margin: 8px 0 12px; font-style: italic; }
        .review-card .author { display: flex; align-items: center; gap: 12px; }
        .review-card .author .avatar { width: 44px; height: 44px; border-radius: 50%; background: #dce3ed; overflow: hidden; flex-shrink: 0; }
        .review-card .author .avatar img { width: 100%; height: 100%; object-fit: cover; }
        .review-card .author .name { font-weight: 600; font-size: 15px; }
        .review-card .author .detail { font-size: 12px; color: var(--text-muted); }

        /* ===== 新闻 ===== */
        .section-news { padding: 50px 0; background: var(--gray-bg); }
        .news-tabs { display: flex; gap: 8px; margin-bottom: 24px; flex-wrap: wrap; }
        .news-tabs button {
            padding: 6px 20px; border: none; background: #fff; border-radius: 20px;
            font-size: 14px; font-weight: 500; color: var(--text-muted); cursor: pointer;
            transition: 0.2s; box-shadow: var(--shadow-sm);
        }
        .news-tabs button.active { background: var(--primary); color: #fff; }
        .news-tabs button:hover:not(.active) { box-shadow: var(--shadow-hover); color: var(--text-dark); }

        .news-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
        .news-featured {
            background: #fff; border-radius: var(--radius); overflow: hidden;
            box-shadow: var(--shadow-sm); transition: 0.25s;
        }
        .news-featured:hover { box-shadow: var(--shadow-hover); }
        .news-featured .img-wrap { height: 200px; background: #dce3ed; }
        .news-featured .img-wrap img { width: 100%; height: 100%; object-fit: cover; }
        .news-featured .body { padding: 18px 22px 22px; }
        .news-featured .body h4 { font-size: 18px; font-weight: 600; margin-bottom: 4px; }
        .news-featured .body .date { font-size: 13px; color: var(--text-muted); }
        .news-featured .body p { font-size: 14px; color: var(--text-muted); margin: 8px 0 12px; line-height: 1.7; }
        .news-featured .body a { color: var(--primary); font-weight: 500; }

        .news-list { display: flex; flex-direction: column; gap: 12px; }
        .news-list .item {
            background: #fff; border-radius: var(--radius); padding: 14px 18px;
            box-shadow: var(--shadow-sm); display: flex; justify-content: space-between;
            align-items: center; transition: 0.2s;
        }
        .news-list .item:hover { box-shadow: var(--shadow-hover); }
        .news-list .item .info h5 { font-size: 15px; font-weight: 500; margin-bottom: 2px; }
        .news-list .item .info .date { font-size: 12px; color: var(--text-muted); }
        .news-list .item .tag {
            font-size: 12px; color: var(--secondary); background: #fde8e8;
            padding: 2px 12px; border-radius: 12px; white-space: nowrap;
        }

        .news-more { text-align: right; margin-top: 14px; }
        .news-more a { color: var(--primary); font-weight: 500; }

        /* ===== 家长问答 ===== */
        .section-qa { padding: 50px 0; background: #fff; }
        .qa-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 36px; }
        .qa-left h4 { font-size: 20px; font-weight: 600; margin-bottom: 16px; color: var(--primary); }
        .qa-left ul { list-style: none; padding: 0; }
        .qa-left ul li {
            padding: 10px 0; border-bottom: 1px solid var(--gray-border);
            display: flex; align-items: center; gap: 10px; font-size: 15px; color: #374151;
        }
        .qa-left ul li i { color: var(--secondary); font-size: 16px; width: 20px; text-align: center; }

        .qa-right h4 { font-size: 20px; font-weight: 600; margin-bottom: 16px; color: var(--primary); }
        .qa-right .tag-list { display: flex; flex-wrap: wrap; gap: 10px; }
        .qa-right .tag-list span {
            background: var(--gray-bg); padding: 6px 16px; border-radius: 20px;
            font-size: 14px; color: var(--text-dark); border: 1px solid var(--gray-border);
            transition: 0.2s; cursor: pointer;
        }
        .qa-right .tag-list span:hover {
            border-color: var(--primary); color: var(--primary); box-shadow: var(--shadow-sm);
        }
        .qa-more { margin-top: 18px; }
        .qa-more a { color: var(--primary); font-weight: 500; }

        /* ===== 家长评价自动滚动 ===== */
        .review-viewport { overflow: hidden; position: relative; }
        .review-grid { display: flex !important; gap: 22px; width: 100%; transition: transform 0.55s ease; will-change: transform; }
        .review-grid .review-card { flex: 0 0 calc((100% - 44px) / 3); min-width: 0; }
        @media (max-width: 1024px) { .review-grid .review-card { flex-basis: calc((100% - 22px) / 2); } }
        @media (max-width: 768px) { .review-grid .review-card { flex-basis: 100%; } }

        /* ===== 图片新闻 ===== */
        .section-gallery { padding: 50px 0; background: var(--gray-bg); }
        .gallery-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 18px; }
        .gallery-item {
            border-radius: var(--radius); overflow: hidden; background: #fff;
            box-shadow: var(--shadow-sm); transition: 0.25s; position: relative;
        }
        .gallery-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); }
        .gallery-item .img-wrap { height: 190px; background: #dce3ed; overflow: hidden; }
        .gallery-item .img-wrap img { width: 100%; height: 100%; object-fit: cover; transition: 0.3s; }
        .gallery-item:hover .img-wrap img { transform: scale(1.04); }
        .gallery-item .label { padding: 10px 16px 14px; font-weight: 500; font-size: 15px; text-align: center; background: #fff; }

        /* ===== 咨询转化 Banner ===== */
        .section-cta-banner {
            padding: 50px 0;
            background: linear-gradient(135deg, #06422f 0%, #085741 100%);
            color: #fff;
        }
        .cta-banner-wrap { display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
        .cta-banner-wrap .left h3 { font-size: 30px; font-weight: 700; margin-bottom: 6px; }
        .cta-banner-wrap .left p { font-size: 17px; opacity: 0.9; }
        .cta-banner-wrap .right { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
        .cta-banner-wrap .right .btn-cta {
            padding: 14px 38px; border-radius: 30px; font-weight: 600; font-size: 17px;
            transition: 0.25s; display: inline-block;
        }
        .cta-banner-wrap .right .btn-cta.primary { background: var(--secondary); color: #fff; }
        .cta-banner-wrap .right .btn-cta.primary:hover { background: var(--secondary-hover); transform: translateY(-2px); }
        .cta-banner-wrap .right .btn-cta.outline {
            background: transparent; color: #fff; border: 2px solid rgba(255,255,255,0.6);
        }
        .cta-banner-wrap .right .btn-cta.outline:hover { background: rgba(255,255,255,0.10); border-color: #fff; }
        .cta-banner-wrap .hotline { font-size: 20px; font-weight: 600; letter-spacing: 1px; }
        .cta-banner-wrap .hotline i { margin-right: 6px; }

        /* ===== 友情链接 ===== */
        .section-links { padding: 30px 0 20px; background: var(--gray-bg); border-top: 1px solid var(--gray-border); }
        .section-links h4 { font-size: 15px; font-weight: 600; color: var(--text-muted); margin-bottom: 10px; }
        .links-wrap { display: flex; flex-wrap: wrap; gap: 8px 20px; }
        .links-wrap a { font-size: 13px; color: var(--text-muted); transition: 0.2s; }
        .links-wrap a:hover { color: var(--primary); }

        /* ===== Footer ===== */
        .footer {
            background: #0f1a2e;
            color: rgba(255,255,255,0.7);
            padding: 44px 0 20px;
        }
        .footer .container { display: grid; grid-template-columns: 2fr 1fr 1fr; gap: 40px; }
        .footer-brand .logo-text { color: #fff; font-size: 20px; font-weight: 700; margin-bottom: 6px; }
        .footer-brand .logo-text span { color: var(--accent); }
        .footer-brand p { font-size: 14px; line-height: 1.8; max-width: 340px; margin-top: 6px; }
        .footer-nav h5 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 12px; }
        .footer-nav ul { list-style: none; padding: 0; display: flex; flex-direction: column; gap: 6px; }
        .footer-nav ul li a { font-size: 14px; transition: 0.2s; }
        .footer-nav ul li a:hover { color: #fff; }
        .footer-contact h5 { color: #fff; font-size: 16px; font-weight: 600; margin-bottom: 12px; }
        .footer-contact .qr { display: flex; gap: 16px; align-items: center; margin-top: 6px; }
        .footer-contact .qr .box {
            width: 72px; height: 72px; background: #fff; border-radius: var(--radius);
            overflow: hidden; display: flex; align-items: center; justify-content: center;
            font-size: 10px; color: #999;
        }
        .footer-contact .qr .box img { width: 100%; height: 100%; object-fit: contain; }
        .footer-contact .tel { font-size: 18px; font-weight: 600; color: #fff; margin-top: 4px; }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.08);
            margin-top: 30px; padding-top: 18px; text-align: center;
            font-size: 13px; color: rgba(255,255,255,0.4);
            grid-column: 1 / -1;
        }
        .footer-bottom .extra { display: flex; justify-content: center; gap: 24px; flex-wrap: wrap; margin-top: 4px; }

        /* ===== 悬浮按钮 ===== */
        .float-btns {
            position: fixed; right: 24px; bottom: 120px;
            display: flex; flex-direction: column; gap: 12px; z-index: 200;
        }
        .float-btns a {
            width: 50px; height: 50px; border-radius: 50%; background: var(--primary);
            color: #fff; display: flex; align-items: center; justify-content: center;
            font-size: 22px; box-shadow: 0 4px 16px rgba(8,87,65,0.35);
            transition: 0.25s; text-decoration: none;
        }
        .float-btns a:hover { transform: scale(1.08); background: var(--primary-dark); }
        .float-btns a.wechat { background: #07c160; box-shadow: 0 4px 16px rgba(7,193,96,0.35); }
        .float-btns a.wechat:hover { background: #06ad56; }
        .float-btns a.top { background: rgba(0,0,0,0.5); box-shadow: none; font-size: 20px; }
        .float-btns a.top:hover { background: rgba(0,0,0,0.7); }

        /* ===== 微信弹窗 ===== */
        .wechat-modal {
            display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.5);
            z-index: 300; align-items: center; justify-content: center;
        }
        .wechat-modal.show { display: flex; }
        .wechat-modal .modal-box {
            background: #fff; border-radius: 12px; padding: 30px 36px 36px;
            max-width: 360px; text-align: center; position: relative;
            animation: fadeInUp 0.3s ease;
        }
        .wechat-modal .modal-box .close {
            position: absolute; top: 10px; right: 16px; font-size: 24px;
            cursor: pointer; color: var(--text-muted); background: none; border: none;
        }
        .wechat-modal .modal-box .close:hover { color: #000; }
        .wechat-modal .modal-box .qr-img {
            width: 180px; height: 180px; background: #eee;
            margin: 10px auto 14px; border-radius: 8px; overflow: hidden;
            display: flex; align-items: center; justify-content: center; font-size: 12px; color: #999;
        }
        .wechat-modal .modal-box .qr-img img { width: 100%; height: 100%; object-fit: contain; }
        .wechat-modal .modal-box h4 { font-size: 18px; margin-bottom: 4px; }
        .wechat-modal .modal-box p { font-size: 14px; color: var(--text-muted); }

        /* ===== 静态 Tab 面板：仅通过 hide/show 切换 ===== */
        #caseContent { display: block; }
        .case-panel { display: none; grid-template-columns: 1fr 1fr; gap: 28px; background: #fff; border-radius: var(--radius); padding: 28px; box-shadow: var(--shadow-sm); transition: 0.25s; }
        .case-panel.active { display: grid; }
        #newsList { display: block; }
        #newsPanels .news-wrap-panel { display: none; }
        #newsPanels .news-wrap-panel.active { display: grid; }
        @media (max-width: 1024px) { .case-panel { grid-template-columns: 1fr; } }
        @media (max-width: 768px) { .case-panel { padding: 18px; } }

        @keyframes fadeInUp {
            from { opacity: 0; transform: translateY(30px); }
            to { opacity: 1; transform: translateY(0); }
        }

        /* ===== 移动端底部固定栏 ===== */
        .mobile-bottom-bar {
            display: none; position: fixed; bottom: 0; left: 0; right: 0;
            background: #fff; border-top: 1px solid var(--gray-border);
            padding: 8px 16px; z-index: 150; box-shadow: 0 -4px 16px rgba(0,0,0,0.06);
            justify-content: space-around; align-items: center;
        }
        .mobile-bottom-bar a {
            display: flex; flex-direction: column; align-items: center;
            font-size: 12px; color: var(--text-muted); gap: 2px; padding: 4px 12px;
        }
        .mobile-bottom-bar a i { font-size: 22px; }
        .mobile-bottom-bar a.primary { color: var(--primary); font-weight: 600; }
        .mobile-bottom-bar a.primary i { color: var(--primary); }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .advantages-grid { grid-template-columns: repeat(3,1fr); }
            .teacher-grid { grid-template-columns: repeat(3,1fr); }
            .course-grid { grid-template-columns: repeat(2,1fr); }
            .review-grid { grid-template-columns: repeat(2,1fr); }
            .gallery-grid { grid-template-columns: repeat(2,1fr); }
            .footer .container { grid-template-columns: 1fr 1fr; }
            .about-wrap { grid-template-columns: 1fr; }
            .campus-grid { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
            .campus-grid .big { grid-row: auto; height: 260px; }
            .campus-grid .small { height: 160px; }
            .case-content { grid-template-columns: 1fr; }
            .news-wrap { grid-template-columns: 1fr; }
            .qa-wrap { grid-template-columns: 1fr; }
            .flow-wrap::before { display: none; }
            .flow-wrap { justify-content: center; gap: 20px; }
            .flow-step { flex: 0 0 120px; }
        }

        @media (max-width: 768px) {
            .top-bar .right { display: none; }
            .top-bar .left { font-size: 12px; }
            .header .container { flex-wrap: wrap; }
            .header-right { display: none; }
            .hamburger { display: flex; }
            .nav-menu {
                display: none; flex-direction: column; width: 100%;
                background: #fff; padding: 10px 0; border-top: 1px solid var(--gray-border);
            }
            .nav-menu.open { display: flex; }
            .nav-menu>li>a { padding: 10px 16px; border-bottom: none; }
            .nav-menu .dropdown {
                position: static; box-shadow: none; border: none; padding-left: 20px; display: none;
            }
            .nav-menu>li:hover .dropdown { display: none; }
            .nav-menu>li.open .dropdown { display: block; }
            .banner-slide { height: 300px; }
            .banner-slide .content h2 { font-size: 26px; }
            .banner-slide .content p { font-size: 15px; }
            .banner-slide .content .btns a { padding: 8px 22px; font-size: 14px; }
            .advantages-grid { grid-template-columns: repeat(2,1fr); }
            .pain-grid { grid-template-columns: repeat(2,1fr); }
            .course-grid { grid-template-columns: 1fr; }
            .teacher-grid { grid-template-columns: repeat(2,1fr); }
            .review-grid { grid-template-columns: 1fr; }
            .gallery-grid { grid-template-columns: 1fr 1fr; }
            .footer .container { grid-template-columns: 1fr; gap: 28px; }
            .campus-grid { grid-template-columns: 1fr 1fr; }
            .campus-grid .big { height: 200px; }
            .campus-grid .small { height: 140px; }
            .about-stats { grid-template-columns: repeat(2,1fr); }
            .cta-banner-wrap .left h3 { font-size: 24px; }
            .cta-banner-wrap .hotline { font-size: 17px; }
            .float-btns { right: 14px; bottom: 90px; }
            .float-btns a { width: 44px; height: 44px; font-size: 18px; }
            .mobile-bottom-bar { display: flex; }
            .section-title h2 { font-size: 26px; }
            .case-content { padding: 18px; }
            .news-featured .body h4 { font-size: 16px; }
            .news-list .item { flex-wrap: wrap; gap: 6px; }
            .cta-banner-wrap .right .btn-cta { padding: 10px 24px; font-size: 15px; }
        }

        @media (max-width: 480px) {
            .banner-slide { height: 240px; }
            .banner-slide .content h2 { font-size: 20px; }
            .banner-slide .content p { font-size: 13px; }
            .banner-slide .content .btns a { padding: 6px 16px; font-size: 12px; }
            .advantages-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .advantage-item { padding: 14px 8px; }
            .advantage-item .icon { font-size: 28px; }
            .pain-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .teacher-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
            .gallery-grid { grid-template-columns: 1fr 1fr; gap: 10px; }
            .gallery-item .img-wrap { height: 130px; }
            .campus-grid .big { height: 160px; }
            .campus-grid .small { height: 110px; }
            .float-btns { right: 10px; bottom: 80px; }
            .float-btns a { width: 38px; height: 38px; font-size: 16px; }
            .mobile-bottom-bar a { font-size: 10px; }
            .mobile-bottom-bar a i { font-size: 18px; }
            .section-title h2 { font-size: 22px; }
            .cta-banner-wrap .left h3 { font-size: 20px; }
            .cta-banner-wrap .hotline { font-size: 15px; }
            .footer-brand .logo-text { font-size: 18px; }
        }
    
        /* ===== Modern editorial redesign ===== */
        :root {
            --primary: #173b4a;
            --primary-dark: #0e2a35;
            --primary-light: #2d6370;
            --secondary: #e76f51;
            --secondary-hover: #c9573d;
            --accent: #e4b86a;
            --gray-bg: #f6f4ef;
            --gray-border: #e7e1d8;
            --text-dark: #1d2b32;
            --text-muted: #718087;
            --shadow-sm: 0 8px 24px rgba(25, 48, 57, .06);
            --shadow-hover: 0 18px 42px rgba(25, 48, 57, .13);
            --radius: 18px;
        }
        html { scroll-behavior: smooth; }
        body {
            background: #fbfaf7;
            color: var(--text-dark);
            font-family: "PingFang SC", "Microsoft YaHei", system-ui, sans-serif;
            letter-spacing: .01em;
        }
        .container { max-width: 1320px; padding: 0 28px; }
        .top-bar { background: var(--primary-dark); border: 0; color: rgba(255,255,255,.72); padding: 8px 0; font-size: 12px; }
        .top-bar .left i, .top-bar .right .hotline { color: var(--accent); }
        .header {
            background: rgba(251,250,247,.88);
            border-bottom: 1px solid rgba(231,225,216,.8);
            padding: 18px 0;
            box-shadow: 0 5px 24px rgba(23,59,74,.05);
            backdrop-filter: blur(16px);
        }
        .logo-area { gap: 13px; }
        .logo-text h1 { color: var(--primary); font-size: 20px; letter-spacing: .04em; }
        .logo-text .sub { color: #889298; letter-spacing: .15em; font-size: 11px; margin-top: 4px; }
        .header-right { gap: 18px; }
        .header-right .contact-item { color: #66757b; font-size: 13px; }
        .header-right .contact-item i { color: var(--secondary); font-size: 16px; }
        .header-right .btn-consult, .pain-cta a, .about-text .btn-more, .case-cta a { background: var(--secondary); border-radius: 12px; padding: 11px 20px; box-shadow: 0 8px 18px rgba(231,111,81,.2); }
        .header-right .btn-consult:hover, .pain-cta a:hover, .about-text .btn-more:hover, .case-cta a:hover { background: var(--secondary-hover); transform: translateY(-2px); }
        .nav-wrap { background: var(--primary); border: 0; box-shadow: none; }
        .nav-wrap .container { min-height: 50px; }
        .nav-menu>li>a { color: rgba(255,255,255,.78); padding: 15px 17px 14px; font-size: 14px; border: 0; }
        .nav-menu>li>a:hover, .nav-menu>li>a.active { color: #fff; background: rgba(255,255,255,.09); border: 0; }
        .nav-menu .dropdown { border: 0; border-radius: 12px; padding: 8px; box-shadow: 0 18px 35px rgba(14,42,53,.17); }
        .nav-menu .dropdown li a { border-radius: 8px; padding: 9px 14px; }
        .nav-menu .dropdown li a:hover { background: #f6f4ef; color: var(--primary); }
        .banner-wrap { background: var(--primary-dark); }
        .banner-slide { height: 560px; }
        .banner-slide .overlay { background: linear-gradient(90deg, rgba(10,35,44,.82) 0%, rgba(10,35,44,.45) 48%, rgba(10,35,44,.12) 100%); }
        .banner-slide .content { max-width: 690px; padding: 0 28px; }
        .banner-slide .content::before { content: "SUNSHINE · GROW WITH CARE"; display: block; color: var(--accent); font-size: 11px; letter-spacing: .2em; margin-bottom: 18px; font-weight: 700; }
        .banner-slide .content h2 { font-size: clamp(34px, 4.2vw, 62px); line-height: 1.08; letter-spacing: -.04em; margin-bottom: 18px; text-shadow: none; }
        .banner-slide .content h2 span { color: var(--accent); }
        .banner-slide .content p { color: rgba(255,255,255,.82); font-size: 17px; line-height: 1.9; max-width: 500px; margin-bottom: 28px; text-shadow: none; }
        .banner-slide .content .btns a { border-radius: 12px; padding: 13px 24px; font-size: 14px; }
        .banner-slide .content .btns .btn-primary { background: var(--secondary); box-shadow: 0 10px 22px rgba(231,111,81,.3); }
        .banner-slide .content .btns .btn-outline { border-color: rgba(255,255,255,.5); background: rgba(255,255,255,.06); backdrop-filter: blur(8px); }
        .banner-dots { bottom: 28px; left: auto; right: 4%; transform: none; gap: 8px; }
        .banner-dots span { width: 28px; height: 4px; border-radius: 4px; }
        .banner-dots span.active { background: var(--accent); transform: none; }
        .section-advantages, .section-about, .section-flow, .section-teacher, .section-review, .section-qa { background: #fbfaf7; }
        .section-advantages, .section-pain, .section-about, .section-course, .section-flow, .section-campus, .section-teacher, .section-case, .section-review, .section-news, .section-qa, .section-gallery { padding: 82px 0; }
        .section-title { margin-bottom: 46px; text-align: left; }
        .section-title h2 { font-size: 34px; letter-spacing: -.04em; }
        .section-title h2::after { width: 42px; height: 3px; background: var(--secondary); margin: 12px 0 0; }
        .section-title .sub { font-size: 14px; color: #8a9498; margin-top: 10px; }
        .advantages-grid { gap: 14px; }
        .advantage-item, .pain-card, .course-card, .teacher-card, .review-card, .news-featured, .news-list .item, .case-content, .gallery-item { border: 1px solid rgba(231,225,216,.9); border-radius: var(--radius); box-shadow: none; }
        .advantage-item { background: #fff; padding: 25px 16px; }
        .advantage-item:hover, .pain-card:hover, .course-card:hover, .teacher-card:hover, .review-card:hover, .news-featured:hover, .news-list .item:hover, .gallery-item:hover { box-shadow: var(--shadow-hover); transform: translateY(-5px); }
        .advantage-item .icon { color: var(--secondary); font-size: 30px; }
        .advantage-item h4 { font-size: 16px; }
        .section-pain, .section-course, .section-campus, .section-case, .section-news, .section-gallery { background: var(--gray-bg); }
        .pain-card .img-wrap, .course-card .img-wrap, .teacher-card .img-wrap, .news-featured .img-wrap, .gallery-item .img-wrap { background: #e9e3da; }
        .pain-card .body, .course-card .body, .teacher-card .body, .news-featured .body { padding: 20px; }
        .about-wrap { gap: 72px; }
        .about-wrap .img-wrap { height: 390px; border-radius: 24px; box-shadow: 18px 18px 0 rgba(228,184,106,.22); }
        .about-text h3 { font-size: 35px; color: var(--primary); letter-spacing: -.04em; }
        .about-text p { color: #59686d; font-size: 15px; }
        .about-stats .stat { background: #fff; border: 1px solid var(--gray-border); border-radius: 12px; box-shadow: none; }
        .about-stats .stat .num { color: var(--secondary); }
        .course-grid { gap: 18px; }
        .course-card .img-wrap { height: 190px; }
        .course-card .body a, .news-featured .body a, .news-more a, .qa-more a { color: var(--secondary); }
        .flow-wrap::before { background: #d9d2c8; height: 1px; }
        .flow-step .num { background: var(--secondary); box-shadow: 0 8px 16px rgba(231,111,81,.22); }
        .flow-step .icon { color: var(--primary); }
        .campus-grid { gap: 16px; }
        .campus-grid .big, .campus-grid .small { border-radius: 18px; box-shadow: none; }
        .case-tabs button { border: 1px solid var(--gray-border); border-radius: 10px; box-shadow: none; }
        .case-tabs button.active { background: var(--primary); border-color: var(--primary); }
        .case-content { padding: 18px; background: #fff; }
        .review-card { background: #fff; padding: 26px; }
        .review-card .stars { color: var(--accent); }
        .news-tabs button { border: 1px solid var(--gray-border); box-shadow: none; border-radius: 10px; }
        .news-tabs button.active { background: var(--secondary); }
        .news-list .item { padding: 16px 18px; }
        .news-list .item .tag { background: #fff0eb; color: var(--secondary); }
        .qa-left ul li { border-bottom-color: var(--gray-border); }
        .qa-left ul li i { color: var(--secondary); }
        .qa-right .tag-list span { background: #fff; border-radius: 10px; }
        .section-cta-banner { background: var(--primary); position: relative; overflow: hidden; }
        .section-cta-banner::after { content: ""; position: absolute; width: 420px; height: 420px; border: 1px solid rgba(228,184,106,.2); border-radius: 50%; right: -90px; top: -180px; }
        .cta-banner-wrap { position: relative; z-index: 1; }
        .cta-banner-wrap .right .btn-cta { border-radius: 12px; padding: 13px 22px; }
        .cta-banner-wrap .right .btn-cta.primary { background: var(--secondary); }
        .section-links { background: #f0ede7; border: 0; }
        .footer { background: #102d38; padding: 58px 0 22px; }
        .footer-brand .logo-text span { color: var(--accent); }
        .float-btns a { border-radius: 14px; background: var(--secondary); box-shadow: 0 10px 20px rgba(231,111,81,.25); }
        .float-btns a.wechat { background: #1d8c67; box-shadow: 0 10px 20px rgba(29,140,103,.25); }
        .float-btns a.top { background: var(--primary); box-shadow: none; }
        .wechat-modal .modal-box { border-radius: 22px; box-shadow: 0 24px 70px rgba(14,42,53,.22); }
        .mobile-bottom-bar { background: rgba(251,250,247,.94); border-top: 1px solid var(--gray-border); backdrop-filter: blur(14px); }
        .mobile-bottom-bar a.primary, .mobile-bottom-bar a.primary i { color: var(--secondary); }
        @media (max-width: 768px) {
            .container { padding: 0 18px; }
            .header { padding: 13px 0; }
            .logo-icon { width: 46px; height: 46px; border-radius: 13px;background:#fff; }
            .logo-text h1 { font-size: 16px; }
            .logo-text .sub { font-size: 9px; letter-spacing: .08em; }
            .nav-menu { background: var(--primary); border-top: 1px solid rgba(255,255,255,.1); }
            .nav-menu>li>a { color: rgba(255,255,255,.86); }
            .hamburger span { background: var(--primary); }
            .banner-slide { height: 430px; }
            .banner-slide .content { padding: 0 18px; }
            .banner-slide .content h2 { font-size: 34px; }
            .banner-slide .content::before { margin-bottom: 12px; }
            .section-advantages, .section-pain, .section-about, .section-course, .section-flow, .section-campus, .section-teacher, .section-case, .section-review, .section-news, .section-qa, .section-gallery { padding: 58px 0; }
            .section-title { margin-bottom: 30px; }
            .section-title h2 { font-size: 28px; }
            .about-wrap { gap: 42px; }
            .about-wrap .img-wrap { height: 280px; box-shadow: 10px 10px 0 rgba(228,184,106,.2); }
        }
        /* ===== 移动端抽屉菜单修复 ===== */
        @media (max-width: 768px) {
            .nav-wrap { position: relative; z-index: 100; }
            .nav-wrap .container { position: relative; }
            .nav-menu,
            .nav-menu.open {
                position: fixed;
                top: 96px;
                right: 0;
                left: auto;
                width: min(84vw, 320px);
                height: calc(100vh - 96px);
                max-height: none;
                overflow-y: auto;
                display: flex !important;
                flex-direction: column;
                flex-wrap: nowrap;
                align-items: stretch;
                padding: 12px 0 28px;
                background: var(--primary);
                box-shadow: -16px 0 36px rgba(14,42,53,.22);
                transform: translateX(102%);
                opacity: 0;
                visibility: hidden;
                pointer-events: none;
                transition: transform .28s ease, opacity .28s ease, visibility .28s ease;
            }
            .nav-menu.open {
                transform: translateX(0);
                opacity: 1;
                visibility: visible;
                pointer-events: auto;
            }
            .nav-menu > li > a { display: block; color: rgba(255,255,255,.9); padding: 14px 22px; }
            .nav-menu > li > a:hover,
            .nav-menu > li > a.active { background: rgba(255,255,255,.1); color: #fff; }
            .nav-menu .dropdown { position: static; width: auto; background: rgba(255,255,255,.06); padding: 0 0 6px 14px; }
            .nav-menu > li.open .dropdown { display: block; }
            .hamburger { position: relative; z-index: 110; }
            .hamburger[aria-expanded="true"] span:nth-child(1) { transform: translateY(8px) rotate(45deg); }
            .hamburger[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
            .hamburger[aria-expanded="true"] span:nth-child(3) { transform: translateY(-8px) rotate(-45deg); }
        }
        
        
        :root {
	--ink: #173b4a;
	--deep: #0e2a35;
	--coral: #e76f51;
	--coral-dark: #c9573d;
	--gold: #e4b86a;
	--paper: #fbfaf7;
	--mist: #f2eee8;
	--line: #e7e1d8;
	--muted: #728087;
	--white: #fff;
	--radius: 18px;
	--shadow: 0 18px 45px rgba(23,59,74,.09)
}

* {
	box-sizing: border-box;
	margin: 0;
	padding: 0
}

html {
	scroll-behavior: smooth
}

body {
	font-family: "PingFang SC","Microsoft YaHei",system-ui,sans-serif;
	color: #1d2b32;
	background: var(--paper);
	line-height: 1.8
}

a {
	text-decoration: none;
	color: inherit
}

img {
	display: block;
	width: 100%;
	height: 100%;
	object-fit: cover
}

.page-main {
	padding: 28px 0 90px
}

.breadcrumb {
	display: flex;
	gap: 10px;
	align-items: center;
	color: #8b9497;
	font-size: 13px;
	margin: 4px 0 32px
}

.breadcrumb a {
	color: var(--ink)
}

.breadcrumb i {
	font-size: 10px;
	color: var(--gold)
}

.layout {
	display: grid;
	grid-template-columns: minmax(0,1fr) 320px;
	gap: 28px;
	align-items: start
}

.article-card {
	background: var(--white);
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 42px 52px;
	box-shadow: 0 8px 24px rgba(23,59,74,.035)
}

.article-head {
	border-bottom: 1px solid var(--line);
	padding-bottom: 26px;
	margin-bottom: 28px
}

.article-tag {
	display: inline-flex;
	padding: 5px 11px;
	background: #fff0eb;
	border-radius: 7px;
	color: var(--coral);
	font-size: 11px;
	font-weight: 700;
	margin-bottom: 13px
}

.article-head h1 {
	font-size: clamp(28px,3.5vw,43px);
	line-height: 1.3;
	letter-spacing: -.045em;
	color: var(--ink);
	margin-bottom: 12px
}

.article-meta {
	display: flex;
	flex-wrap: wrap;
	gap: 12px 22px;
	color: #9aa3a5;
	font-size: 12px
}

.article-meta i {
	color: var(--coral);
	margin-right: 5px
}

.article-lead {
	font-size: 17px;
	line-height: 2;
	color: #52656b;
	background: #faf7f1;
	border-left: 3px solid var(--gold);
	padding: 16px 20px;
	margin: 0 0 28px;
	border-radius: 0 10px 10px 0
}

.article-body {
	color: #52646a;
	font-size: 15px;
	line-height: 2.05
}

.article-body h2 {
	font-size: 24px;
	line-height: 1.4;
	color: var(--ink);
	letter-spacing: -.03em;
	margin: 32px 0 12px
}

.article-body h2:before {
	content: "";
	display: inline-block;
	width: 25px;
	height: 3px;
	background: var(--coral);
	border-radius: 3px;
	vertical-align: middle;
	margin: 0 10px 5px 0
}

.article-body h3 {
	font-size: 18px;
	color: var(--ink);
	margin: 24px 0 7px
}

.article-body p {
	margin-bottom: 16px
}

.article-body figure {
	margin: 25px 0 27px
}

.article-body figure img {
	height: 330px;
	border-radius: 14px;
	background: var(--mist)
}

.article-body figcaption {
	text-align: center;
	font-size: 12px;
	color: #9aa3a5;
	margin-top: 8px
}

.article-body blockquote {
	margin: 22px 0;
	padding: 18px 21px;
	border-radius: 12px;
	background: #f4f0e9;
	color: #6d664e;
	font-size: 14px
}

.article-body ul {
	padding-left: 22px;
	margin: 10px 0 18px
}

.article-body li {
	margin: 6px 0
}

.article-foot {
	border-top: 1px solid var(--line);
	margin-top: 30px;
	padding-top: 22px;
	display: flex;
	justify-content: space-between;
	gap: 20px;
	align-items: center
}

.article-tags {
	display: flex;
	flex-wrap: wrap;
	gap: 8px
}

.article-tags span {
	font-size: 12px;
	color: #69787d;
	background: var(--mist);
	border-radius: 7px;
	padding: 5px 10px
}

.share {
	display: flex;
	align-items: center;
	gap: 9px;
	color: #98a1a3;
	font-size: 12px;
	white-space: nowrap
}

.share a {
	width: 28px;
	height: 28px;
	border-radius: 50%;
	display: grid;
	place-items: center;
	background: #f1ede6;
	color: var(--ink);
	font-size: 13px
}

.share a:hover {
	background: var(--coral);
	color: #fff
}

.article-nav {
	display: grid;
	grid-template-columns: 1fr 1fr;
	gap: 14px;
	margin-top: 18px
}

.article-nav a {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: 14px;
	padding: 15px 17px;
	font-size: 13px;
	color: #627278
}

.article-nav a:hover {
	border-color: #efb4a7;
	color: var(--coral)
}

.article-nav small {
	display: block;
	color: #a2abad;
	font-size: 11px;
	margin-bottom: 3px
}

.side-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	margin-bottom: 18px
}

.side-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 14px
}

.side-title h2 {
	font-size: 20px;
	color: var(--ink);
	letter-spacing: -.03em
}

.more {
	font-size: 12px;
	color: var(--coral);
	font-weight: 700
}

.recommend-list,.rank-list {
	list-style: none
}

.recommend-list li {
	padding: 13px 0;
	border-bottom: 1px solid var(--line)
}

.recommend-list li:last-child {
	border-bottom: 0
}

.recommend-list a {
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 9px
}

.badge {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	display: grid;
	place-items: center;
	background: #fff0eb;
	color: var(--coral);
	font-size: 11px;
	font-weight: 700
}

.recommend-list h3 {
	font-size: 14px;
	line-height: 1.5;
	color: var(--ink)
}

.recommend-list p {
	font-size: 12px;
	line-height: 1.55;
	color: var(--muted);
	margin: 3px 0
}

.recommend-list time {
	font-size: 11px;
	color: #a4abad
}

.rank-list li {
	display: flex;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid var(--line)
}

.rank-list li:last-child {
	border-bottom: 0
}

.rank-no {
	color: var(--coral);
	font-size: 12px;
	font-weight: 700;
	width: 18px
}

.rank-list a {
	font-size: 13px;
	color: #53656b;
	line-height: 1.55
}

.rank-list a:hover {
	color: var(--coral)
}

.consult {
	background: var(--ink);
	color: #fff;
	border-radius: var(--radius);
	padding: 24px
}

.consult h2 {
	font-size: 20px;
	margin-bottom: 5px
}

.consult p {
	font-size: 12px;
	color: rgba(255,255,255,.68);
	line-height: 1.75;
	margin-bottom: 16px
}

.consult a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	background: var(--coral);
	border-radius: 10px;
	padding: 10px;
	font-size: 13px;
	font-weight: 700
}

.consult a:hover {
	background: var(--coral-dark)
}

.related {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 25px 30px;
	margin-top: 22px
}

.related h2 {
	color: var(--ink);
	font-size: 22px;
	margin-bottom: 9px
}

.related h2:before {
	content: "";
	display: inline-block;
	width: 27px;
	height: 3px;
	background: var(--coral);
	border-radius: 3px;
	vertical-align: middle;
	margin: 0 9px 4px 0
}

.related-grid {
	display: grid;
	grid-template-columns: repeat(3,1fr);
	gap: 15px
}

.related-item {
	border: 1px solid var(--line);
	border-radius: 12px;
	overflow: hidden
}

.related-item .thumb {
	height: 120px;
	background: var(--mist)
}

.related-item .copy {
	padding: 13px
}

.related-item h3 {
	font-size: 14px;
	line-height: 1.55;
	color: var(--ink)
}

.related-item h3:hover {
	color: var(--coral)
}

.related-item time {
	font-size: 11px;
	color: #a4abad
}

.back-link {
	display: inline-flex;
	align-items: center;
	gap: 7px;
	color: var(--coral);
	font-size: 13px;
	font-weight: 700;
	margin-bottom: 19px
}

.back-link i {
	font-size: 11px
}

.back-link:hover {
	color: var(--coral-dark)
}

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

	.related-grid {
		grid-template-columns: repeat(3,1fr)
	}
}

@media(max-width:680px) {
	.container {
		padding: 0 18px
	}

	.page-main {
		padding: 20px 0 60px
	}

	.breadcrumb {
		margin-bottom: 24px
	}

	.article-card {
		padding: 27px 21px
	}

	.article-head h1 {
		font-size: 28px
	}

	.article-lead {
		font-size: 15px;
		padding: 14px 16px
	}

	.article-body {
		font-size: 14px
	}

	.article-body figure img {
		height: 220px
	}

	.article-foot {
		align-items: flex-start;
		flex-direction: column
	}

	.article-nav {
		grid-template-columns: 1fr
	}

	.related {
		padding: 22px 18px
	}

	.related-grid {
		grid-template-columns: 1fr
	}

	.related-item {
		display: grid;
		grid-template-columns: 110px 1fr
	}

	.related-item .thumb {
		height: 100%;
		min-height: 90px
	}

	.side-card {
		margin-bottom: 16px
	}
}


.page-heading {
	display: flex;
	justify-content: space-between;
	align-items: flex-end;
	gap: 28px;
	margin-bottom: 28px
}

.eyebrow {
	font-size: 11px;
	color: var(--coral);
	font-weight: 700;
	letter-spacing: .2em;
	margin-bottom: 10px
}

.page-heading h1 {
	font-size: clamp(36px,4vw,54px);
	line-height: 1.1;
	letter-spacing: -.05em;
	color: var(--ink)
}

.page-heading h1 span {
	color: var(--coral)
}

.heading-note {
	max-width: 345px;
	color: var(--muted);
	font-size: 14px;
	line-height: 1.9
}

.news-tabs {
	display: flex;
	gap: 10px;
	flex-wrap: wrap;
	margin-bottom: 30px
}

.news-tabs a {
	padding: 9px 18px;
	border: 1px solid var(--line);
	background: #fff;
	border-radius: 10px;
	color: #617076;
	font-size: 13px;
	transition: .2s
}

.news-tabs a:hover,.news-tabs a.active {
	background: var(--ink);
	border-color: var(--ink);
	color: #fff
}

.layout {
	display: grid;
	grid-template-columns: minmax(0,1fr) 320px;
	gap: 28px;
	align-items: start
}

.main-col,.side-col {
	min-width: 0
}

.feature {
	display: grid;
	grid-template-columns: 1.06fr .94fr;
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	overflow: hidden;
	margin-bottom: 22px;
	min-height: 290px
}

.feature-img {
	min-height: 290px;
	background: #d9d2c8
}

.feature-copy {
	padding: 30px 32px;
	display: flex;
	flex-direction: column;
	justify-content: center
}

.tag {
	display: inline-flex;
	width: max-content;
	padding: 4px 10px;
	background: #fff0eb;
	border-radius: 7px;
	color: var(--coral);
	font-size: 11px;
	font-weight: 700;
	margin-bottom: 12px
}

.feature h2 {
	font-size: 25px;
	line-height: 1.35;
	letter-spacing: -.035em;
	color: var(--ink);
	margin-bottom: 9px
}

.feature h2 a:hover {
	color: var(--coral)
}

.meta {
	font-size: 12px;
	color: #9aa3a5;
	margin-bottom: 10px
}

.feature p {
	font-size: 14px;
	color: var(--muted);
	line-height: 1.85;
	margin-bottom: 18px
}

.read-more {
	color: var(--coral);
	font-weight: 700;
	font-size: 13px
}

.read-more i {
	margin-left: 7px;
	transition: .2s
}

.read-more:hover i {
	transform: translateX(4px)
}

.news-panel {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 27px 30px
}

.panel-title {
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin-bottom: 7px
}

.panel-title h2 {
	font-size: 23px;
	color: var(--ink);
	letter-spacing: -.035em
}

.panel-title h2:before {
	content: "";
	display: inline-block;
	width: 28px;
	height: 3px;
	border-radius: 3px;
	background: var(--coral);
	vertical-align: middle;
	margin: 0 10px 4px 0
}

.panel-count {
	font-size: 12px;
	color: #a1abad
}

.news-item {
	display: grid;
	grid-template-columns: 155px 1fr;
	gap: 21px;
	padding: 21px 0;
	border-bottom: 1px solid var(--line)
}

.news-item:last-child {
	border-bottom: 0
}

.news-thumb {
	height: 108px;
	border-radius: 12px;
	overflow: hidden;
	background: var(--mist)
}

.news-info h3 {
	font-size: 17px;
	line-height: 1.5;
	color: var(--ink);
	margin-bottom: 4px
}

.news-info h3 a:hover {
	color: var(--coral)
}

.news-info p {
	font-size: 13px;
	color: var(--muted);
	line-height: 1.75;
	margin-bottom: 7px
}

.news-info .meta {
	margin: 0
}

.side-card {
	background: #fff;
	border: 1px solid var(--line);
	border-radius: var(--radius);
	padding: 24px;
	margin-bottom: 18px
}

.side-title {
	display: flex;
	justify-content: space-between;
	align-items: center;
	margin-bottom: 14px
}

.side-title h2 {
	font-size: 20px;
	color: var(--ink);
	letter-spacing: -.03em
}

.more {
	color: var(--coral);
	font-size: 12px;
	font-weight: 700
}

.recommend-list,.rank-list {
	list-style: none
}

.recommend-list li {
	padding: 13px 0;
	border-bottom: 1px solid var(--line)
}

.recommend-list li:last-child {
	border-bottom: 0
}

.recommend-list a {
	display: grid;
	grid-template-columns: 30px 1fr;
	gap: 9px
}

.badge {
	width: 26px;
	height: 26px;
	border-radius: 8px;
	background: #fff0eb;
	color: var(--coral);
	display: grid;
	place-items: center;
	font-size: 11px;
	font-weight: 700
}

.recommend-list h3 {
	font-size: 14px;
	line-height: 1.5;
	color: var(--ink)
}

.recommend-list p {
	font-size: 12px;
	line-height: 1.55;
	color: var(--muted);
	margin: 3px 0
}

.recommend-list time {
	font-size: 11px;
	color: #a4abad
}

.rank-list li {
	display: flex;
	gap: 10px;
	padding: 11px 0;
	border-bottom: 1px solid var(--line)
}

.rank-list li:last-child {
	border-bottom: 0
}

.rank-no {
	font-size: 12px;
	color: var(--coral);
	font-weight: 700;
	width: 18px
}

.rank-list a {
	font-size: 13px;
	color: #53656b;
	line-height: 1.55
}

.rank-list a:hover {
	color: var(--coral)
}

.tag-cloud {
	display: flex;
	flex-wrap: wrap;
	gap: 8px
}

.tag-cloud a {
	padding: 7px 11px;
	border-radius: 9px;
	background: #fcfaf6;
	border: 1px solid var(--line);
	font-size: 12px;
	color: #66767b
}

.tag-cloud a:hover {
	color: var(--coral);
	border-color: #efb4a7;
	background: #fff5f1
}

.pagination {
	display: flex;
	justify-content: center;
	gap: 8px;
	margin-top: 27px
}

.pagination a {
	width: 34px;
	height: 34px;
	display: grid;
	place-items: center;
	border: 1px solid var(--line);
	border-radius: 9px;
	background: #fff;
	font-size: 12px;
	color: #6b7b80
}

.pagination a:hover,.pagination a.active {
	background: var(--coral);
	border-color: var(--coral);
	color: #fff
}

.pagination a.wide {
	width: auto;
	padding: 0 14px
}

.subscribe {
	background: var(--ink);
	color: #fff;
	border-radius: var(--radius);
	padding: 23px
}

.subscribe h2 {
	font-size: 19px;
	margin-bottom: 5px
}

.subscribe p {
	color: rgba(255,255,255,.68);
	font-size: 12px;
	line-height: 1.7;
	margin-bottom: 16px
}

.subscribe a {
	display: flex;
	justify-content: center;
	align-items: center;
	gap: 8px;
	padding: 10px;
	border-radius: 10px;
	background: var(--coral);
	font-size: 13px;
	font-weight: 700
}

.subscribe a:hover {
	background: var(--coral-dark)
}

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

	.side-col {
		display: grid;
		grid-template-columns: 1fr 1fr;
		gap: 18px
	}

	.side-card {
		margin: 0
	}

	.subscribe {
		grid-column: 1/-1
	}
}

@media(max-width:680px) {
	.container {
		padding: 0 18px
	}

	.page-main {
		padding: 20px 0 60px
	}

	.breadcrumb {
		margin-bottom: 25px
	}

	.page-heading {
		display: block;
		margin-bottom: 24px
	}

	.heading-note {
		margin-top: 14px
	}

	.news-tabs {
		gap: 7px
	}

	.news-tabs a {
		padding: 8px 13px
	}

	.feature {
		grid-template-columns: 1fr
	}

	.feature-img {
		height: 205px;
		min-height: 205px
	}

	.feature-copy {
		padding: 23px
	}

	.feature h2 {
		font-size: 22px
	}

	.news-panel {
		padding: 22px 18px
	}

	.news-item {
		grid-template-columns: 105px 1fr;
		gap: 14px;
		padding: 16px 0
	}

	.news-thumb {
		height: 84px
	}

	.news-info h3 {
		font-size: 15px
	}

	.news-info p {
		font-size: 12px;
		display: -webkit-box;
		-webkit-line-clamp: 2;
		-webkit-box-orient: vertical;
		overflow: hidden
	}

	.side-col {
		display: block
	}

	.side-card {
		margin-bottom: 16px
	}
}

.page_tag a {
    line-height: 30px;
    height: 32px;
    display: inline-block;
    border: 1px solid #eee;
    padding: 0 10px;
    margin-bottom: 8px;
    margin-right: 8px;
}


/* ===== 分页 ===== */
.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 8px;
    margin: 42px 0 10px;
    color: #718087;
    font-size: 14px;
}

.pagination a,
.pagination span {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    border: 1px solid #e7e1d8;
    border-radius: 10px;
    background: #fff;
    color: #52636a;
    line-height: 1;
    text-decoration: none;
    box-sizing: border-box;
    transition: all .22s ease;
}

/* 普通页码和上下页 */
.pagination a:hover {
    border-color: #e76f51;
    background: #fff0eb;
    color: #e76f51;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(231, 111, 81, .14);
}

/* 当前页 */
.pagination .activation {
    border-color: #173b4a;
    background: #173b4a;
    color: #fff;
    font-weight: 600;
    box-shadow: 0 8px 18px rgba(23, 59, 74, .18);
}

/* 不可用状态：上页和省略号 */
.pagination .disable {
    border-color: transparent;
    background: transparent;
    color: #b7bfc1;
    cursor: default;
    box-shadow: none;
}

/* 让“上页 / 下页”比数字页码略宽 */
.pagination > a:first-of-type,
.pagination > a:last-of-type,
.pagination > span.disable:first-child {
    min-width: 58px;
}

/* 适配新闻列表页白色卡片区域 */
.news-list-wrap .pagination,
.news-content .pagination {
    padding-top: 8px;
}

/* 移动端 */
@media (max-width: 768px) {
    .pagination {
        gap: 6px;
        margin-top: 30px;
        font-size: 13px;
    }

    .pagination a,
    .pagination span {
        min-width: 34px;
        height: 34px;
        padding: 0 9px;
        border-radius: 8px;
    }

    .pagination > a:first-of-type,
    .pagination > a:last-of-type,
    .pagination > span.disable:first-child {
        min-width: 52px;
    }
}

@media (max-width: 480px) {
    .pagination {
        gap: 4px;
    }

    .pagination a,
    .pagination span {
        min-width: 30px;
        height: 32px;
        padding: 0 7px;
        font-size: 12px;
    }

    .pagination > a:first-of-type,
    .pagination > a:last-of-type,
    .pagination > span.disable:first-child {
        min-width: 46px;
    }
}

