        :root {
            color-scheme: light;
            --color-bg: #FFFFFF;
            --color-bg-alt: #FBFBFD;
            --color-bg-dark: #1D1D1F;
            --color-text-primary: #1D1D1F;
            --color-text-secondary: #6E6E73;
            --color-text-tertiary: #86868B;
            --color-text-on-dark: #F5F5F7;
            --color-divider: #D2D2D7;
            --color-brand: #05D38E;
            --color-brand-hover: #0CE59C;
            --color-brand-pressed: #04B87C;
            --color-link: #0066CC;
            --gradient-p1: linear-gradient(30deg, #15EF82 0%, #3CE6E9 100%);
            --gradient-p2: linear-gradient(30deg, #76ADFF 0%, #9494FF 100%);
            --gradient-p3: linear-gradient(30deg, #FFBF1D 0%, #FF712F 100%);
            --font-sans: -apple-system, BlinkMacSystemFont, "SF Pro Display", Inter, "Helvetica Neue", Arial, sans-serif;
            --font-cn: "PingFang SC", "苹方", "Noto Sans SC", "Microsoft YaHei", sans-serif;
            --font-num: Poppins, -apple-system, "SF Pro Display", Inter, sans-serif;
            --font-display-xl: clamp(48px, 9vw, 120px);
            --font-display-l: clamp(40px, 6vw, 80px);
            --font-headline: clamp(36px, 5vw, 72px);
            --font-title: clamp(22px, 2vw, 32px);
            --font-body-l: clamp(18px, 1.6vw, 24px);
            --font-body: 16px;
            --font-caption: 12px;
            --font-eyebrow: 14px;
            --space-1: 4px;
            --space-2: 8px;
            --space-3: 12px;
            --space-4: 16px;
            --space-5: 24px;
            --space-6: 32px;
            --space-8: 48px;
            --space-10: 64px;
            --space-12: 96px;
            --space-16: 128px;
            --radius-sm: 8px;
            --radius-md: 12px;
            --radius-lg: 18px;
            --radius-xl: 28px;
            --radius-full: 9999px;
            --shadow-sm: 0 1px 2px rgba(0,0,0,0.04);
            --shadow-md: 0 6px 20px rgba(0,0,0,0.06);
            --shadow-lg: 0 20px 60px rgba(0,0,0,0.08);
            --ease-out: cubic-bezier(0.22,1,0.36,1);
            --ease-in-out: cubic-bezier(0.65,0,0.35,1);
            --dur-fast: 150ms;
            --dur-base: 250ms;
            --dur-slow: 500ms;
            --container-max: 1240px;
            --container-pad-desk: 32px;
            --container-pad-mobile: 20px;
        }
        @media (max-width: 734px) {
            :root {
                --font-display-xl: 40px;
                --font-display-l: 32px;
                --font-headline: 26px;
                --font-title: 20px;
            }
        }

        /* RESET & BASE */
        *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-cn), var(--font-sans);
            font-size: var(--font-body);
            color: var(--color-text-primary);
            background: var(--color-bg);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            padding-top: 94px;
        }
        .phrase {
            display: inline-block;
            white-space: nowrap;
        }
        .text-gradient {
            background-clip: text;
            -webkit-background-clip: text;
            color: var(--color-text-primary);
            -webkit-text-fill-color: transparent;
        }
        .grad-p1 {
            background-image: var(--gradient-p1);
        }
        .container {
            max-width: var(--container-max);
            margin-inline: auto;
            padding-inline: var(--container-pad-desk);
        }
        .cta-group {
            display: flex;
            gap: var(--space-5);
            align-items: center;
            flex-wrap: wrap;
        }
        .cta-group.center {
            justify-content: center;
        }
        .fade-in {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
        }
        .fade-in.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* BUTTONS */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
            height: 44px;
            padding: 0 24px;
            border-radius: var(--radius-full);
            font-size: 15px;
            font-weight: 500;
            text-decoration: none;
            cursor: pointer;
            border: none;
            transition: background var(--dur-fast) var(--ease-out), transform var(--dur-fast) var(--ease-out);
            white-space: nowrap;
            font-family: var(--font-sans);
        }
        .btn:active {
            transform: scale(0.97);
        }
        .btn-primary {
            background: var(--color-text-primary);
            color: #fff;
        }
        .btn-primary:hover {
            background: #2C2C2E;
            font-weight: 600;
        }
        .btn-primary.on-brand {
            background: var(--color-brand-pressed);
            color: #fff;
        }
        .btn-primary.on-brand:hover {
            background: var(--color-brand);
            font-weight: 600;
        }

        /* TOPBAR */
        .site-topbar {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 201;
            height: 34px;
            background: var(--color-bg-dark);
            display: flex;
            align-items: center;
        }
        .topbar-inner {
            padding-inline: 40px;
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .topbar-products {
            display: flex;
            gap: var(--space-6);
            align-items: center;
            list-style: none;
        }
        .topbar-products a {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 400;
            color: rgba(245, 245, 247, 0.45);
            text-decoration: none;
            font-family: var(--font-sans);
            transition: color var(--dur-fast);
        }
        .topbar-products a:hover {
            color: rgba(245, 245, 247, 0.85);
        }
        .topbar-products li.active a {
            color: rgba(245,245,247,0.45);
            font-weight: 600;
        }
        .topbar-products .dot { width: 14px; height: 14px; border-radius: 4px; flex-shrink: 0; background-size: contain; background-position: center; background-repeat: no-repeat; }
        .topbar-products .dot-fakao { background-image: url(images/icon-fakao.png); }
        .topbar-products .dot-fashuo { background-image: url(images/icon-fashuo.png); }
        .topbar-products .dot-cpa { background-image: url(images/icon-cpa.png); }
        .app-download-btn { position: relative; }
        .topbar-products .dot-app { position: relative; overflow: hidden; background: transparent; }
        .topbar-products .dot-app img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: contain; opacity: 0; transition: opacity 0.8s ease, transform 0.8s ease; }
        .topbar-products .dot-app img.dot-app-android { opacity: 1; animation: jx-topbar-slide-1 7s infinite; }
        .topbar-products .dot-app img.dot-app-ios { opacity: 0; animation: jx-topbar-slide-2 7s infinite; }
        @keyframes jx-topbar-slide-1 { 0%, 40% { opacity: 1; transform: translateY(0); } 45%, 95% { opacity: 0; transform: translateY(100%); } 100% { opacity: 1; transform: translateY(0); } }
        @keyframes jx-topbar-slide-2 { 0%, 40% { opacity: 0; transform: translateY(-100%); } 45%, 95% { opacity: 1; transform: translateY(0); } 100% { opacity: 0; transform: translateY(100%); } }
        .app-qrcode { display: none; position: absolute; top: 100%; left: 50%; transform: translateX(-50%); width: 120px; height: 120px; margin-top: 8px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); z-index: 1000; }
        .app-download-btn:hover .app-qrcode { display: block; }
        @media (max-width: 734px) {
            .topbar-products a span:not(.dot) { display: none; }
            .topbar-products { gap: var(--space-3); }
        }

        /* NAV */
        .site-nav {
            position: fixed;
            top: 34px;
            left: 0;
            right: 0;
            z-index: 200;
            height: 68px;
            background: rgba(255, 255, 255, 0.82);
            backdrop-filter: saturate(180%) blur(20px);
            -webkit-backdrop-filter: saturate(180%) blur(20px);
            border-bottom: 1px solid rgba(0, 0, 0, 0.05);
        }
        .nav-inner {
            padding-inline: 40px;
            height: 100%;
            display: flex;
            align-items: center;
            gap: var(--space-5);
        }
        .nav-logo{display:flex;align-items:center;text-decoration:none;flex-shrink:0;}
        .nav-links {
            display: flex;
            align-items: center;
            gap: 28px;
            list-style: none;
            margin-left: 40px;
        }
        .nav-links a {
            font-size: 16px;
            font-weight: 600;
            color: var(--color-text-primary);
            text-decoration: none;
            transition: font-weight var(--dur-fast);
        }
        .nav-links a:hover {
            font-weight: 600;
        }
        .nav-links a.nav-active {
            font-weight: 600;
            color: var(--color-brand-pressed);
        }
        .nav-actions {
            display: flex;
            align-items: center;
            gap: var(--space-4);
            flex-shrink: 0;
            margin-left: auto;
        }
        .nav-actions .btn-primary.on-brand { position: relative; overflow: hidden; background: #FF9500; box-shadow: 0 4px 12px rgba(255,149,0,0.30), 0 0 18px rgba(255,149,0,0.18); }
        .nav-actions .btn-primary.on-brand:hover { background: #E68600; box-shadow: 0 8px 22px rgba(255,149,0,0.42), 0 0 28px rgba(255,149,0,0.32); transform: translateY(-1px); }
        .nav-actions .btn-primary.on-brand > * { position: relative; z-index: 2; }
        .nav-actions .btn-primary.on-brand::before {
            content: '';
            position: absolute;
            top: 0;
            left: -75%;
            width: 55%;
            height: 100%;
            background: linear-gradient(120deg, transparent 0%, rgba(255,255,255,0.55) 50%, transparent 100%);
            transform: skewX(-22deg);
            animation: nav-study-shine 3.6s ease-in-out 1.2s infinite;
            z-index: 1;
            pointer-events: none;
        }
        @keyframes nav-study-shine {
            0% { left: -75%; opacity: 0; }
            10% { opacity: 1; }
            50% { left: 130%; opacity: 1; }
            60%, 100% { left: 130%; opacity: 0; }
        }
        @media (prefers-reduced-motion: reduce) {
            .nav-actions .btn-primary.on-brand::before { animation: none; display: none; }
        }
        .nav-actions .btn-consult { background: var(--color-brand); color: #fff; border-color: transparent; }
        .nav-actions .btn-consult:hover { background: var(--color-brand-pressed); color: #fff; border-color: transparent; }
        .nav-mobile-toggle {
            display: none;
            background: none;
            border: none;
            cursor: pointer;
            padding: 8px;
            color: var(--color-text-primary);
        }
        .nav-mobile-actions { display: none; }
        @media (max-width: 1068px) {
            .nav-links {
                display: none;
            }
            .nav-mobile-toggle {
                display: flex;
                align-items: center;
            }
            .nav-inner > .nav-actions > a.btn { display: none; }
            .nav-mobile-actions {
                display: block;
                order: -1;
                width: 100%;
                margin-bottom: 16px;
                padding-bottom: 16px;
                border-bottom: 1px solid rgba(0,0,0,0.08);
            }
            .nav-mobile-actions .nav-actions { margin-left: 0; width: 100%; }
            .nav-mobile-actions .nav-actions .btn { flex: 1; }
        }

        /* SUBPAGE HERO */
        .subpage-hero {
            padding-top: 40px;
            padding-bottom: 100px;
            background: radial-gradient(ellipse 70% 60% at 20% 10%, rgba(5, 211, 142, 0.15), transparent 60%),
                        radial-gradient(ellipse 60% 50% at 85% 20%, rgba(93, 234, 199, 0.13), transparent 60%),
                        radial-gradient(ellipse 80% 60% at 50% 80%, rgba(60, 230, 233, 0.18), transparent 65%),
                        linear-gradient(180deg, #FAFAFC 0%, #FFFFFF 100%);
            text-align: center;
        }
        .subpage-hero .container {
            max-width: 800px;
        }
        .subpage-hero .crumb-row {
            max-width: var(--container-max);
            margin-inline: auto;
            padding-inline: var(--container-pad-desk);
        }
        .breadcrumb {
            padding-bottom: 12px;
            font-size: 13px;
            color: var(--color-text-tertiary);
            text-align: left;
            position: relative;
            z-index: 2;
        }
        .breadcrumb a {
            color: var(--color-text-secondary);
            text-decoration: none;
            transition: color var(--dur-fast);
        }
        .breadcrumb a:hover {
            color: var(--color-brand);
        }
        .hero-eyebrow {
            display: inline-flex;
            align-items: center;
            gap: var(--space-2);
            font-size: var(--font-eyebrow);
            font-weight: 600;
            letter-spacing: 0.04em;
            color: var(--color-brand-pressed);
            background: rgba(5, 211, 142, 0.08);
            padding: 5px 14px;
            border-radius: var(--radius-full);
            margin-bottom: var(--space-5);
            font-family: var(--font-sans);
        }
        .subpage-hero h1 {
            font-size: var(--font-display-l);
            font-weight: 800;
            line-height:1.42;
            letter-spacing: -0.025em;
            color: var(--color-text-primary);
            margin-bottom: var(--space-5);
            font-family: var(--font-sans);
            text-wrap: balance;
        }
        .subpage-hero .hero-sub {
            font-size: var(--font-body-l);
            color: var(--color-text-secondary);
            line-height: 1.55;
            margin-bottom: var(--space-8);
            max-width: 600px;
            margin-inline: auto;
            letter-spacing: -0.005em;
        }
        .subpage-hero .hero-sub strong {
            color: var(--color-text-primary);
            font-weight: 600;
        }

        /* SECTIONS */
        section {
            padding-block: 80px;
        }
        .bg-alt {
            background: var(--color-bg-alt);
        }
        .bg-dark {
            background: var(--color-bg-dark);
            color: var(--color-text-on-dark);
        }
        .section-eyebrow {
            display: inline-block;
            font-size: var(--font-eyebrow);
            font-weight: 600;
            letter-spacing: 0.04em;
            color: var(--color-brand-pressed);
            margin-bottom: var(--space-4);
            font-family: var(--font-sans);
        }
        .section-eyebrow.on-dark {
            color: var(--color-brand);
        }
        .section-headline {
            font-size: var(--font-headline);
            font-weight: 600;
            line-height:1.38;
            letter-spacing: -0.02em;
            color: var(--color-text-primary);
            margin-bottom: var(--space-5);
            font-family: var(--font-sans);
        }
        .section-headline.on-dark {
            color: var(--color-text-on-dark);
        }
        .section-sub {
            font-size: var(--font-body-l);
            color: var(--color-text-secondary);
            line-height: 1.55;
            max-width: 640px;
            letter-spacing: -0.005em;
        }
        .section-sub.on-dark {
            color: rgba(245, 245, 247, 0.7);
        }
        .section-header {
            margin-bottom: var(--space-12);
        }
        .section-header.center {
            text-align: center;
        }
        .section-header.center .section-sub {
            margin-inline: auto;
        }

        /* CARDS */
        .card-grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1040px;
            margin-inline: auto;
        }
        .num-big { white-space: nowrap; }
        .num-item {
            background: transparent;
            padding: var(--space-8);
            text-align: center;
            border-radius: var(--radius-lg);
        }
        .num-item:hover {
            background: rgba(5, 211, 142, 0.05);
        }
        .num-big {
            font-size: var(--font-display-l);
            font-weight: 700;
            line-height: 1.05;
            color: var(--color-brand);
            font-family: var(--font-num);
            margin-bottom: var(--space-3);
        }
        .num-label {
            font-size: 15px;
            color: var(--color-text-secondary);
        }

        /* PASS RATE SECTION */
        .pass-rate-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: var(--space-12);
            margin-top: var(--space-12);
        }
        .pass-rate-col h3 {
            font-size: var(--font-title);
            font-weight: 600;
            color: var(--color-text-primary);
            margin-bottom: var(--space-6);
        }
        .pass-rate-col p {
            font-size: var(--font-body);
            color: var(--color-text-secondary);
            line-height: 1.75;
            margin-bottom: var(--space-4);
        }

        /* SUCCESS STORIES GRID */
        .masonry-grid {
            column-count: 3;
            column-gap: 24px;
            margin-top: var(--space-12);
        }
        .story-card {
            background: #fff;
            border-radius: var(--radius-xl);
            padding: var(--space-8);
            margin-bottom: 24px;
            box-shadow: var(--shadow-sm);
            border: 1px solid rgba(5, 211, 142, 0.12);
            break-inside: avoid;
            transition: transform var(--dur-base) var(--ease-out), box-shadow var(--dur-base) var(--ease-out);
        }
        .story-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-md);
            border-color: var(--color-brand);
        }
        .story-emoji {
            font-size: 32px;
            margin-bottom: var(--space-4);
        }
        .story-name {
            font-size: var(--font-title);
            font-weight: 600;
            color: var(--color-text-primary);
            margin-bottom: var(--space-2);
        }
        .story-achievement {
            font-size: 13px;
            font-weight: 600;
            color: var(--color-brand);
            margin-bottom: var(--space-4);
        }
        .story-quote {
            font-size: 14px;
            color: var(--color-text-secondary);
            line-height: 1.65;
            margin-bottom: var(--space-4);
            font-style: italic;
        }
        .story-meta {
            font-size: 12px;
            color: var(--color-text-tertiary);
            padding-top: var(--space-4);
            border-top: 1px solid rgba(0, 0, 0, 0.05);
        }

        /* STATS TABLE */
        .stats-table {
            margin-top: var(--space-12);
        }
        .table-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: var(--space-4);
            padding: var(--space-6);
            border-bottom: 1px solid rgba(0, 0, 0, 0.08);
        }
        .table-row:hover {
            background: rgba(5, 211, 142, 0.03);
        }
        .table-row.header {
            background: rgba(5, 211, 142, 0.08);
            font-weight: 600;
            color: var(--color-brand);
        }
        .table-row.header:hover {
            background: rgba(5, 211, 142, 0.08);
        }
        .table-col {
            display: flex;
            align-items: center;
            font-size: 15px;
            color: var(--color-text-on-dark);
        }
        .table-col.metric {
            font-weight: 600;
            color: #F5F5F7;
        }
        .table-col.rate {
            font-size: var(--font-title);
            font-weight: 700;
            color: var(--color-brand);
        }

        /* FINAL CTA */
        .final-cta {
            background: var(--color-bg-dark);
            padding-block: var(--space-16);
            text-align: center;
        }
        .final-cta h2 {
            font-size: calc(var(--font-display-l) * 0.8);
            font-weight: 700;
            line-height: 1.16;
            color: var(--color-text-on-dark);
            margin-bottom: var(--space-5);
            font-family: var(--font-sans);
            text-wrap: balance;
        }
        .final-cta p {
            font-size: var(--font-body-l);
            color: rgba(245, 245, 247, 0.65);
            margin-bottom: var(--space-8);
        }

          /* ── Footer ── */
  .site-footer {
    background: #0e0e10;
    padding-block: 64px 0;
  }
  .footer-grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1fr;
    gap: 40px;
    padding-bottom: 56px;
  }
  .footer-logo { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
  .footer-brand-name { font-size: 17px; font-weight: 700; color: #fff; font-family: var(--font-sans); }
  .footer-brand-tagline { font-size: 13px; color: rgba(255,255,255,0.45); line-height: 1.6; margin-bottom: 20px; }
  .footer-apps { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 20px; }
  .footer-app-btn {
    display: flex; align-items: center; gap: 8px; padding: 9px 16px;
    border: 1px solid rgba(255,255,255,0.15); border-radius: 10px;
    text-decoration: none; background: rgba(255,255,255,0.05);
    transition: background 0.2s, border-color 0.2s; min-width: 128px;
  }
  .footer-app-btn:hover { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.3); }
  .footer-app-btn svg { width: 20px; height: 20px; fill: #fff; flex-shrink: 0; }
  .footer-app-btn-text { display: flex; flex-direction: column; }
  .footer-app-label { font-size: 10px; color: rgba(255,255,255,0.5); line-height: 1.2; }
  .footer-app-platform { font-size: 13px; font-weight: 600; color: #fff; line-height: 1.3; }
  .footer-socials { display: flex; gap: 16px; }
  .footer-socials a { font-size: 13px; color: rgba(255,255,255,0.4); text-decoration: none; transition: color 0.2s; }
  .footer-socials a:hover { color: rgba(255,255,255,0.8); }
  .footer-wechat-btn { position: relative; }
  .footer-wechat-qrcode { display: none; position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); width: 120px; height: auto; margin-bottom: 8px; border-radius: 8px; box-shadow: 0 4px 20px rgba(0,0,0,0.3); z-index: 1000; }
  .footer-wechat-btn:hover .footer-wechat-qrcode { display: block; }
  .footer-col-title { font-size: 14px; font-weight: 700; color: #fff; margin-bottom: 16px; font-family: var(--font-sans); }
  .footer-links { display: flex; flex-direction: column; gap: 12px; list-style: none; }
  .footer-links a { font-size: 13.5px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
  .footer-links a:hover { color: rgba(255,255,255,0.85); }
  .footer-bottom {
    border-top: 1px solid rgba(255,255,255,0.08);
    padding: 24px 0 20px;
    display: flex; align-items: flex-start; justify-content: space-between; gap: 16px; flex-wrap: wrap;
  }
  .footer-legal-company { font-size: 0.8125rem; color: rgba(255,255,255,0.7); margin-bottom: var(--space-2); font-weight: 500; }
  .footer-legal-records { font-size: 0.75rem; color: rgba(255,255,255,0.45); line-height: 1.8; max-width: 680px; display: flex; flex-wrap: wrap; gap: 4px 8px; align-items: center; margin-bottom: var(--space-2); }
  .footer-legal-records a { color: rgba(255,255,255,0.45); text-decoration: none; }
  .footer-legal-records a:hover { color: rgba(255,255,255,0.7); }
  .footer-legal-records .dot { margin: 0 4px; }
  .footer-legal-links { display: flex; align-items: center; gap: 8px; flex-shrink: 0; padding-top: 2px; color: rgba(255,255,255,0.45); font-size: 0.75rem; }
  .footer-legal-links a { font-size: 13px; color: rgba(255,255,255,0.45); text-decoration: none; transition: color 0.2s; }
  .footer-legal-links a:hover { color: rgba(255,255,255,0.7); }
  .footer-legal-links .dot { color: rgba(255,255,255,0.2); }
  .footer-tagline { font-size: 12px; color: rgba(255,255,255,0.45); font-style: italic; letter-spacing: 0.02em; padding: 14px 0 22px; }


        /* RESPONSIVE */
        @media (max-width: 1068px) {
            .card-grid-4 {
                grid-template-columns: repeat(2, 1fr);
            }
            .masonry-grid {
                column-count: 2;
            }
            .pass-rate-grid {
                grid-template-columns: 1fr;
            }
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }
        @media (max-width: 734px) {
            section {
                padding-block: 80px;
            }
            .subpage-hero {
                padding-top: 32px;
                padding-bottom: 60px;
            }
            .card-grid-4 {
                grid-template-columns: 1fr;
            }
            .masonry-grid {
                column-count: 1;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: var(--space-8);
            }
            .cta-group {
                flex-direction: column;
                align-items: stretch;
            }
            .btn {
                justify-content: center;
            }
        }
        /* ── 全局防孤字规则 ─────────────────────────────────────────── */
    h1,h2,h3,h4{text-wrap:balance;}
    p,.hero-sub,.section-sub,.class-tagline,.hero-eyebrow,
    .match-card-pain,.wi-quote,.wi-compare,.promise-desc,
    .onev1-text,.class-point-desc,.card-desc,.stat-label,
    .timeline-desc,.teacher-bio,.story-quote{text-wrap:pretty;}
    /* ───────────────────────────────────────────────────────────── */
  
        /* ── 战报墙 ─────────────────────────────────────────────── */
        .score-layout {
            display: grid;
            grid-template-columns: 340px 1fr;
            gap: 40px;
            margin-top: var(--space-10);
            align-items: start;
        }
        @media(max-width:900px){ .score-layout{ grid-template-columns:1fr; } }

        /* 详情大卡 */
        .score-detail-card { max-width: 380px; margin: 0 auto 44px;
            background: var(--color-bg-dark);
            border-radius: var(--radius-xl);
            padding: 28px;
            color: var(--color-text-on-dark);
            position: relative;
            overflow: hidden;
        }
        .score-detail-card::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse 80% 60% at 20% 10%, rgba(5,211,142,0.18), transparent 60%);
            pointer-events: none;
        }
        .sdc-eyebrow {
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.08em;
            color: var(--color-brand);
            margin-bottom: 6px;
            font-family: var(--font-sans);
        }
        .sdc-total {
            font-family: var(--font-num);
            font-size: 72px;
            font-weight: 800;
            line-height: 1;
            color: #fff;
            letter-spacing: -0.03em;
        }
        .sdc-total-label {
            font-size: 13px;
            color: rgba(245,245,247,0.5);
            margin-bottom: 24px;
            font-family: var(--font-sans);
        }
        .sdc-rows {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .sdc-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 12px;
            background: rgba(255,255,255,0.06);
            border-radius: var(--radius-sm);
            font-size: 13px;
        }
        .sdc-row-name { color: rgba(245,245,247,0.65); }
        .sdc-row-score {
            font-family: var(--font-num);
            font-weight: 700;
            font-size: 15px;
            color: var(--color-brand);
        }
        .sdc-note {
            font-size: 11px;
            color: rgba(245,245,247,0.3);
            margin-top: 20px;
            line-height: 1.5;
        }

        /* 成绩标签云 */
        .score-right-header {
            display: flex;
            align-items: baseline;
            gap: 10px;
            margin-bottom: 20px;
        }
        .score-right-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--color-text-primary);
        }
        .score-right-count {
            font-size: 13px;
            color: var(--color-text-tertiary);
        }
        .score-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .score-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            background: var(--color-bg);
            border: 1px solid rgba(0,0,0,0.08);
            border-radius: var(--radius-full);
            font-family: var(--font-num);
            font-size: 17px;
            font-weight: 700;
            color: var(--color-text-primary);
            box-shadow: var(--shadow-sm);
            transition: transform 0.15s var(--ease-out), box-shadow 0.15s var(--ease-out);
        }
        .score-tag:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .score-tag.top { color: var(--color-brand-pressed); border-color: rgba(5,211,142,0.25); }
        .score-note {
            font-size: 12px;
            color: var(--color-text-tertiary);
            margin-top: var(--space-5);
            padding-top: var(--space-5);
            border-top: 1px solid rgba(0,0,0,0.06);
        }

        /* ── 押题对照表 ──────────────────────────────────────────── */
        .yati-timestamp {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 600;
            color: var(--color-text-tertiary);
            background: rgba(0,0,0,0.04);
            border: 1px solid rgba(0,0,0,0.08);
            padding: 6px 14px;
            border-radius: var(--radius-full);
            margin-bottom: var(--space-8);
            font-family: var(--font-sans);
            letter-spacing: 0.02em;
        }
        .yati-timestamp::before {
            content: '';
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--color-brand);
            flex-shrink: 0;
        }
        .yati-table {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            border: 1px solid rgba(0,0,0,0.09);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .yati-table thead tr {
            background: var(--color-bg-alt);
        }
        .yati-table th {
            padding: 12px 20px;
            font-size: 11px;
            font-weight: 700;
            letter-spacing: 0.06em;
            color: var(--color-text-tertiary);
            text-align: left;
            border-bottom: 1px solid rgba(0,0,0,0.08);
        }
        .yati-table td {
            padding: 16px 20px;
            font-size: 14px;
            color: var(--color-text-primary);
            border-bottom: 1px solid rgba(0,0,0,0.05);
            vertical-align: top;
            line-height: 1.5;
        }
        .yati-table tr:last-child td { border-bottom: none; }
        .yati-table tr:hover td { background: rgba(5,211,142,0.03); }
        .yati-col-subject { width: 80px; }
        .yati-col-type { width: 110px; }
        .yati-col-q { }
        .yati-col-src { width: 160px; }
        .yati-col-result { width: 72px; text-align: center; }
        .yati-subject-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            color: var(--color-brand-pressed);
            background: rgba(5,211,142,0.10);
            padding: 2px 9px;
            border-radius: var(--radius-full);
        }
        .yati-type-tag {
            font-size: 12px;
            color: var(--color-text-tertiary);
        }
        .yati-q-text {
            font-weight: 500;
            color: var(--color-text-primary);
        }
        .yati-src-text {
            font-size: 13px;
            color: var(--color-text-secondary);
            font-weight: 500;
        }
        .yati-hit {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            border: 2px solid var(--color-brand);
            font-size: 13px;
            font-weight: 700;
            color: var(--color-brand-pressed);
            background: rgba(5,211,142,0.07);
            transform: rotate(8deg);
        }
        @media(max-width:734px){
            .yati-table th, .yati-table td { padding: 10px 12px; font-size: 13px; }
            .yati-col-result, .yati-col-type { display: none; }
        }

        /* ── 学员心声 ────────────────────────────────────────────── */
        .voice-grid {
            display: grid;
            grid-template-columns: repeat(3,1fr);
            gap: 20px;
            margin-top: var(--space-10);
        }
        @media(max-width:734px){ .voice-grid{ grid-template-columns:1fr; } }
        .voice-card {
            background: rgba(255,255,255,0.07);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-lg);
            padding: 24px;
        }
        .voice-quote {
            font-size: 15px;
            color: rgba(245,245,247,0.90);
            line-height: 1.65;
            font-style: italic;
            margin-bottom: 16px;
        }
        .voice-quote::before { content: '"'; color: var(--color-brand); font-size: 1.3em; font-style: normal; }
        .voice-quote::after  { content: '"'; color: var(--color-brand); font-size: 1.3em; font-style: normal; }
        .voice-meta {
            font-size: 13px;
            color: rgba(245,245,247,0.45);
            font-weight: 500;
        }

    
        /* ── 战报图片墙 ─────────────────────────────────────────── */
        .zhanbao-stack { margin-top: var(--space-10); }
        

        .zb-groups{display:flex;flex-direction:column;gap:44px;}
        /* 案例事实卡（来自经验贴真实案例） */
        .zbf-stack{position:relative;min-height:96px;}
        .zbf-layer{position:absolute;inset:4% 3%;background:var(--color-bg);border:1px solid rgba(0,0,0,.08);border-radius:var(--radius-lg);box-shadow:var(--shadow-sm);}
        .zbf-layer:nth-child(1){transform:rotate(-2.5deg) translate(-6px,3px);opacity:.55;}
        .zbf-layer:nth-child(2){transform:rotate(1.8deg) translate(6px,1px);opacity:.75;}
        .zbf-layer.zbf-front{transform:none;opacity:1;display:flex;align-items:center;justify-content:center;gap:12px;}
        .zb-stack-dots{font-size:17px;font-weight:800;color:rgba(5,211,142,.5);letter-spacing:.22em;line-height:1;}
        .zb-stack-t{font-size:14.5px;font-weight:700;color:var(--color-brand-pressed);font-family:var(--font-sans);}
        .zbf-grid{display:grid;grid-template-columns:repeat(auto-fill,minmax(330px,1fr));gap:14px;}
        
        .zbf-card{display:flex;min-width:0;align-items:center;gap:12px;background:var(--color-bg);border:1px solid rgba(0,0,0,.07);border-radius:var(--radius-lg);padding:16px 18px;text-decoration:none;box-shadow:var(--shadow-sm);transition:transform .18s var(--ease-out),box-shadow .18s var(--ease-out),border-color .18s;}
        .zbf-card:hover{transform:translateY(-3px);box-shadow:var(--shadow-md);border-color:rgba(5,211,142,.4);}
        .zbf-card .zb-av{width:34px;height:34px;font-size:13px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;flex-shrink:0;font-family:var(--font-sans);}
        .zbf-body{display:flex;flex-direction:column;gap:3px;min-width:0;flex:1;}
        .zbf-title{font-size:14px;font-weight:600;color:var(--color-text-primary);line-height:1.5;}
        .zbf-school{font-size:13px;font-weight:700;color:var(--color-brand-pressed);font-family:var(--font-sans);}
        .zbf-badge{font-size:13px;font-weight:800;color:var(--color-brand-pressed);background:rgba(5,211,142,.10);border-radius:999px;padding:5px 12px;flex-shrink:0;font-family:var(--font-num);white-space:nowrap;}
        /* 成绩单原件长廊 */
        .zb-strip-wrap{margin-top:8px;}
        .zb-strip-label{font-size:13px;font-weight:700;color:var(--color-text-secondary);margin-bottom:12px;font-family:var(--font-sans);}
        .zb-strip{overflow:hidden;border-radius:var(--radius-lg);-webkit-mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);mask-image:linear-gradient(90deg,transparent,#000 6%,#000 94%,transparent);}
        .zb-strip-track{display:flex;gap:12px;width:max-content;animation:zbscroll 80s linear infinite;}
        .zb-strip:hover .zb-strip-track{animation-play-state:paused;}
        .zb-strip-track img{height:150px;width:112px;object-fit:cover;object-position:top;border-radius:10px;border:1px solid rgba(0,0,0,.08);cursor:pointer;background:#fff;box-shadow:var(--shadow-sm);}
        @keyframes zbscroll{from{transform:translateX(0);}to{transform:translateX(-50%);}}
        @media(prefers-reduced-motion:reduce){.zb-strip-track{animation:none;}}
        
        .zb-group-head{display:flex;align-items:center;gap:10px;margin-bottom:16px;}
        .zb-group-head .zb-av{width:30px;height:30px;font-size:13px;border-radius:50%;display:flex;align-items:center;justify-content:center;color:#fff;font-weight:800;font-family:var(--font-sans);}
        .zb-group-name{font-size:19px;font-weight:800;color:var(--color-text-primary);font-family:var(--font-sans);}
        .zb-group-count{font-size:13px;color:var(--color-text-tertiary);margin-left:2px;}
        .zb-group-count b{color:var(--color-brand-pressed);font-family:var(--font-num);font-size:15px;}
        
        .zb-groups.show-all 
        .zb-showall{padding-top:4px;}
        .zb-total-bar{width:100%;border:1.5px dashed rgba(5,211,142,.5);border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;gap:22px;padding:22px 18px;background:rgba(5,211,142,.04);flex-wrap:wrap;}
        .zb-total-t{font-size:clamp(17px,2.2vw,23px);font-weight:800;color:var(--color-text-primary);font-family:var(--font-sans);}
        .zb-total-t b{color:var(--color-brand-pressed);font-family:var(--font-num);font-size:1.2em;}
        
        .zhanbao-img-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
        }
        @media(max-width:1068px){ .zhanbao-img-grid{ grid-template-columns: repeat(4,1fr); } }
        @media(max-width:600px){ .zhanbao-img-grid{ grid-template-columns: repeat(3,1fr); } }

        .zhanbao-img-wrap {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--color-bg);
            border: 1px solid rgba(0,0,0,0.07);
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            position: relative;
            transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out);
            display: flex;
            flex-direction: column;
        }
        .zhanbao-img-wrap:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
            border-color: rgba(5,211,142,0.3);
        }
        /* 顶部品牌色条 */
        .zhanbao-accent {
            height: 3px;
            background: var(--gradient-p1);
            flex-shrink: 0;
        }
        /* 分数主体区 */
        .zhanbao-body {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            padding: 20px 12px 16px;
            gap: 4px;
        }
        .zb-av{width:34px;height:34px;border-radius:50%;display:flex;align-items:center;justify-content:center;font-size:12px;font-weight:800;color:#fff;font-family:var(--font-sans);margin-bottom:2px;}
        .zb-tag{font-size:11.5px;font-weight:700;padding:3px 11px;border-radius:999px;font-family:var(--font-sans);}
        .zb-t-zhizhi{background:rgba(59,91,219,.10);color:#3B5BDB;}
        .zb-t-feifa{background:rgba(139,92,246,.10);color:#7C3AED;}
        .zb-t-yingjie{background:rgba(232,150,12,.13);color:#B45309;}
        .zb-t-erzhan{background:rgba(5,211,142,.11);color:var(--color-brand-pressed);}
        .zhanbao-score {
            font-family: var(--font-num);
            font-size: clamp(28px, 3.5vw, 44px);
            font-weight: 800;
            color: var(--color-text-primary);
            line-height: 1;
            letter-spacing: -0.03em;
        }
        .zhanbao-score-label {
            font-size: 11px;
            font-weight: 500;
            color: var(--color-text-tertiary);
            letter-spacing: 0.04em;
            font-family: var(--font-sans);
        }
        /* 底部查看按钮 */
        .zhanbao-footer {
            padding: 0 12px 14px;
            display: flex;
            justify-content: center;
        }
        .zhanbao-view {
            font-size: 11px;
            font-weight: 600;
            color: var(--color-text-tertiary);
            letter-spacing: 0.04em;
            font-family: var(--font-sans);
            opacity: 0;
            transition: opacity 0.2s var(--ease-out), color 0.2s;
        }
        .zhanbao-img-wrap:hover .zhanbao-view {
            opacity: 1;
            color: var(--color-brand-pressed);
        }
        /* 隐藏的原图 */
        .zhanbao-img-wrap img {
            display: none;
        }

        /* ── 押题文字卡片 ───────────────────────────────────────── */
        .yati-img-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 14px;
            margin-top: var(--space-10);
        }
        @media(max-width:900px){ .yati-img-grid{ grid-template-columns: repeat(3,1fr); } }
        @media(max-width:600px){ .yati-img-grid{ grid-template-columns: repeat(2,1fr); } }

        .yati-img-wrap {
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: var(--color-bg);
            border: 1px solid rgba(0,0,0,0.07);
            box-shadow: var(--shadow-sm);
            cursor: pointer;
            display: flex;
            flex-direction: column;
            transition: transform 0.2s var(--ease-out), box-shadow 0.2s var(--ease-out), border-color 0.2s;
        }
        .yati-img-wrap:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-md);
        }
        /* 顶部科目色条 */
        .yati-accent { height: 3px; flex-shrink: 0; }
        /* 卡片主体 */
        .yati-body {
            flex: 1;
            padding: 16px 16px 12px;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .yati-subject-row {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .yati-subj-tag {
            font-size: 11px;
            font-weight: 700;
            padding: 2px 8px;
            border-radius: var(--radius-full);
            letter-spacing: 0.03em;
        }
        .yati-type-lbl {
            font-size: 11px;
            color: var(--color-text-tertiary);
            font-weight: 500;
        }
        .yati-question {
            font-size:12.5px;
            font-weight: 600;
            color:var(--color-text-tertiary);
            line-height: 1.55;
            flex: 1;
        }
        /* 底部信息栏 */
        .yati-card-footer {
            padding: 10px 16px 12px;
            border-top: 1px solid rgba(0,0,0,0.05);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .yati-src-text {
            font-size: 11px;
            color: var(--color-text-tertiary);
            font-weight: 500;
        }
        .yati-hit-badge {
            font-size: 11px;
            font-weight: 700;
            color: var(--color-brand-pressed);
            background: rgba(5,211,142,0.10);
            padding: 2px 8px;
            border-radius: var(--radius-full);
            opacity: 0;
            transition: opacity 0.2s var(--ease-out);
        }
        .yati-img-wrap:hover .yati-hit-badge { opacity: 1; }
        .yati-img-wrap{position:relative;}
        .yati-stamp{position:absolute;top:10px;right:10px;z-index:2;transform:rotate(10deg);border:2.5px solid #E03131;color:#E03131;font-weight:800;font-size:14px;letter-spacing:.18em;padding:3px 9px 3px 12px;border-radius:6px;background:rgba(255,255,255,.88);font-family:var(--font-sans);box-shadow:0 2px 8px rgba(224,49,49,.15);}
        .yati-year{font-size:11px;font-weight:700;color:#B45309;background:rgba(232,150,12,.13);padding:2px 8px;border-radius:999px;font-family:var(--font-sans);flex-shrink:0;}
        .yati-hitline{display:flex;align-items:center;gap:6px;font-size:12.5px;font-weight:700;color:var(--color-brand-pressed);margin-top:10px;padding-top:9px;border-top:1px dashed rgba(5,211,142,.35);}
        .yati-hitline svg{flex-shrink:0;}
        .yati-more{grid-column:1/-1;border:1.5px dashed rgba(5,211,142,.5);border-radius:var(--radius-lg);display:flex;align-items:center;justify-content:center;gap:22px;padding:26px 18px;background:rgba(5,211,142,.04);flex-wrap:wrap;}
        .yati-more-dots{font-size:22px;font-weight:800;color:rgba(5,211,142,.45);line-height:1;letter-spacing:.18em;}
        .yati-more-t{font-size:clamp(19px,2.4vw,26px);font-weight:800;color:var(--color-text-primary);font-family:var(--font-sans);}
        .yati-more-t b{color:var(--color-brand-pressed);font-family:var(--font-num);}
        .yati-more-year{font-size:1.25em;}
        .yati-img-wrap img { display: none; }

        /* ── 灯箱 Lightbox ───────────────────────────────────────── */
        .lightbox {
            display: none;
            position: fixed;
            inset: 0;
            z-index: 9999;
            background: rgba(0,0,0,0.88);
            align-items: center;
            justify-content: center;
            padding: 24px;
            cursor: zoom-out;
        }
        .lightbox.open { display: flex; }
        .lightbox img {
            max-width: 90vw;
            max-height: 90vh;
            border-radius: var(--radius-lg);
            box-shadow: 0 32px 80px rgba(0,0,0,0.5);
            object-fit: contain;
        }
        .lightbox-close {
            position: fixed;
            top: 20px;
            right: 28px;
            color: rgba(255,255,255,0.7);
            font-size: 32px;
            cursor: pointer;
            line-height: 1;
            background: none;
            border: none;
        }


    /* ─── 免费咨询按钮 ─── */
    .btn-consult{background:rgba(255,255,255,0.12);color:var(--color-text-primary);border:1.5px solid rgba(0,0,0,0.18);}
    .btn-consult:hover{background:var(--color-text-primary);color:#fff;border-color:transparent;font-weight:600;}
  .qa-geo{padding:76px 0;background:var(--color-bg-alt);}
  .qa-geo .container{max-width:820px;}
  .qa-geo-eyebrow{font-size:13px;font-weight:700;color:var(--color-brand-pressed);letter-spacing:.06em;text-align:center;margin-bottom:10px;font-family:var(--font-sans);}
  .qa-geo-title{font-size:clamp(24px,3vw,34px);font-weight:800;color:var(--color-text-primary);text-align:center;margin-bottom:36px;font-family:var(--font-sans);line-height:1.3;}
  .qa-item{background:var(--color-bg);border:1px solid var(--color-divider);border-radius:14px;margin-bottom:12px;overflow:hidden;}
  .qa-item summary{cursor:pointer;padding:18px 22px;font-size:16px;font-weight:700;color:var(--color-text-primary);font-family:var(--font-sans);list-style:none;display:flex;align-items:center;gap:10px;}
  .qa-item summary::-webkit-details-marker{display:none;}
  .qa-item summary::before{content:"Q";flex-shrink:0;width:24px;height:24px;border-radius:7px;background:rgba(5,211,142,.12);color:var(--color-brand-pressed);font-size:13px;font-weight:800;display:flex;align-items:center;justify-content:center;}
  .qa-item[open] summary{border-bottom:1px solid var(--color-divider);}
  .qa-a{padding:16px 22px 20px 56px;font-size:15px;line-height:1.85;color:var(--color-text-secondary);}
  .qa-a b{color:var(--color-brand-pressed);font-weight:700;}
@keyframes qr-pop{from{opacity:0;transform:scale(0.88);}to{opacity:1;transform:scale(1);}}
