/* roulang page: index */
/* ========== 设计变量 ========== */
        :root {
            --bg-cream: #faf7f2;
            --bg-warm: #f3ede5;
            --bg-deep: #241a12;
            --bg-deep-soft: #33251b;
            --primary: #3d2b1f;
            --primary-dark: #241a14;
            --accent: #b08d5a;
            --accent-light: #d9c4a3;
            --accent-soft: #f0e6d8;
            --green: #6c7f56;
            --text: #2c221a;
            --text-light: #7d6c5e;
            --border: #e2d5c4;
            --white: #ffffff;
            --shadow-sm: 0 2px 12px rgba(61, 43, 31, .06);
            --shadow-md: 0 10px 32px rgba(61, 43, 31, .09);
            --shadow-lg: 0 18px 50px rgba(61, 43, 31, .13);
            --radius-sm: 8px;
            --radius-md: 16px;
            --radius-lg: 28px;
            --radius-xl: 36px;
            --transition: .3s ease;
            --font-sans: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', 'Helvetica Neue', Helvetica, Arial, sans-serif;
        }

        /* ========== 基础重置 ========== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background: var(--bg-cream);
            color: var(--text);
            line-height: 1.75;
            font-size: 16px;
            -webkit-font-smoothing: antialiased;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color var(--transition), background var(--transition), border-color var(--transition), box-shadow var(--transition), transform var(--transition);
        }

        a:hover,
        a:focus {
            color: var(--accent);
            outline: none;
        }

        ul,
        ol {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit;
            border: none;
            background: none;
            outline: none;
        }

        button {
            cursor: pointer;
        }

        /* 通用容器 */
        .site-container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        .section-pad {
            padding: 96px 0;
        }

        @media (max-width: 768px) {
            .section-pad {
                padding: 64px 0;
            }
        }

        /* ========== 标题层级 ========== */
        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            letter-spacing: .14em;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            background: rgba(176, 141, 90, .12);
            border: 1px solid rgba(176, 141, 90, .24);
            padding: 6px 18px;
            border-radius: 100px;
            margin-bottom: 20px;
        }

        .section-title {
            font-size: clamp(28px, 4.2vw, 42px);
            font-weight: 800;
            line-height: 1.28;
            letter-spacing: -.01em;
            color: var(--primary);
            margin-bottom: 16px;
        }

        .section-desc {
            font-size: 16px;
            line-height: 1.8;
            color: var(--text-light);
            max-width: 720px;
        }

        .centered {
            text-align: center;
        }

        .centered .section-desc {
            margin: 0 auto;
        }

        /* ========== 按钮 ========== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            font-size: 15px;
            font-weight: 600;
            padding: 13px 30px;
            border-radius: 50px;
            transition: all var(--transition);
            white-space: nowrap;
            letter-spacing: .02em;
            line-height: 1.4;
            border: 1.5px solid transparent;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 4px 20px rgba(61, 43, 31, .22);
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(61, 43, 31, .3);
        }

        .btn-gold {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 20px rgba(176, 141, 90, .28);
        }

        .btn-gold:hover {
            background: #9c7a4a;
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 28px rgba(176, 141, 90, .38);
        }

        .btn-outline {
            background: transparent;
            border-color: var(--accent);
            color: var(--accent);
        }

        .btn-outline:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(176, 141, 90, .3);
        }

        .btn-white-outline {
            border-color: rgba(255, 255, 255, .7);
            color: #fff;
        }

        .btn-white-outline:hover {
            background: rgba(255, 255, 255, .12);
            border-color: #fff;
            color: #fff;
            transform: translateY(-2px);
        }

        .btn:focus-visible {
            outline: 3px solid rgba(176, 141, 90, .4);
            outline-offset: 2px;
        }

        /* ========== 导航 ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            z-index: 1000;
            transition: background .4s ease, box-shadow .4s ease, backdrop-filter .4s ease;
            background: transparent;
            border-bottom: 1px solid transparent;
        }

        .site-header.scrolled {
            background: rgba(250, 247, 242, .85);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom-color: rgba(226, 213, 196, .55);
            box-shadow: 0 6px 30px rgba(61, 43, 31, .07);
        }

        .site-header.scrolled .nav-links a {
            color: var(--text);
        }

        .site-header.scrolled .nav-links a:hover {
            color: var(--accent);
        }

        .site-header.scrolled .brand-logo {
            color: var(--primary);
        }

        .site-header.scrolled .brand-sub {
            color: var(--text-light);
        }

        .nav-wrap {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 28px;
            height: 78px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .brand-logo {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
            color: #fff;
            font-weight: 800;
            font-size: 19px;
            letter-spacing: .01em;
            transition: color .3s;
        }

        .brand-logo:hover {
            color: var(--accent-light);
        }

        .brand-sub {
            font-size: 11px;
            font-weight: 400;
            color: rgba(255, 255, 255, .72);
            letter-spacing: .08em;
            margin-top: 3px;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 34px;
        }

        .nav-links a {
            font-size: 15px;
            font-weight: 500;
            color: rgba(255, 255, 255, .9);
            position: relative;
            padding: 6px 0;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--accent);
            border-radius: 2px;
            transition: width .3s ease;
        }

        .nav-links a:hover::after,
        .nav-links a.active::after {
            width: 100%;
        }

        .nav-links a:hover {
            color: #fff;
        }

        .nav-cta {
            font-size: 14px;
            font-weight: 600;
            padding: 10px 24px !important;
            border-radius: 100px;
            background: var(--accent);
            border: 1.5px solid var(--accent);
            box-shadow: 0 4px 18px rgba(176, 141, 90, .3);
        }

        .nav-cta:hover {
            background: transparent;
            color: #fff;
            border-color: #fff;
        }

        .nav-cta::after {
            display: none;
        }

        .mobile-toggle {
            display: none;
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .25);
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 5px;
        }

        .mobile-toggle span {
            width: 18px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all .3s;
        }

        .site-header.scrolled .mobile-toggle span {
            background: var(--primary);
        }

        .site-header.scrolled .mobile-toggle {
            background: rgba(61, 43, 31, .05);
            border-color: rgba(61, 43, 31, .2);
        }

        .mobile-toggle.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .mobile-toggle.open span:nth-child(2) {
            opacity: 0;
        }

        .mobile-toggle.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        @media (max-width: 900px) {
            .nav-links {
                position: fixed;
                top: 78px;
                right: -100%;
                width: min(300px, 80vw);
                height: calc(100vh - 78px);
                flex-direction: column;
                align-items: flex-start;
                background: rgba(36, 26, 18, .97);
                backdrop-filter: blur(20px);
                padding: 40px 32px;
                gap: 28px;
                transition: right .4s ease;
                box-shadow: -10px 0 40px rgba(0, 0, 0, .2);
            }

            .nav-links.open {
                right: 0;
            }

            .nav-links a {
                color: #fff !important;
                font-size: 17px;
            }

            .nav-cta {
                margin-top: 8px;
            }

            .mobile-toggle {
                display: flex;
            }
        }

        /* ========== Hero ========== */
        .hero {
            position: relative;
            min-height: 92vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-size: cover;
            background-position: center 35%;
            padding: 160px 24px 90px;
            color: #fff;
            isolation: isolate;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: linear-gradient(180deg, rgba(20, 12, 8, .65) 0%, rgba(33, 23, 16, .45) 50%, rgba(20, 12, 8, .72) 100%);
        }

        .hero::after {
            content: '';
            position: absolute;
            inset: 0;
            z-index: -1;
            background: radial-gradient(ellipse at center, transparent 0%, rgba(0, 0, 0, .2) 100%);
        }

        .hero-inner {
            max-width: 850px;
            margin: 0 auto;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .14em;
            padding: 8px 22px;
            border: 1px solid rgba(255, 255, 255, .35);
            border-radius: 100px;
            background: rgba(255, 255, 255, .1);
            backdrop-filter: blur(6px);
            margin-bottom: 26px;
        }

        .hero-tag i {
            color: var(--accent-light);
        }

        .hero h1 {
            font-size: clamp(28px, 4.6vw, 48px);
            font-weight: 800;
            line-height: 1.3;
            letter-spacing: -.01em;
            margin-bottom: 22px;
            color: #fff;
            text-shadow: 0 4px 24px rgba(0, 0, 0, .25);
        }

        .hero-desc {
            font-size: 17px;
            line-height: 1.9;
            color: rgba(255, 255, 255, .85);
            max-width: 680px;
            margin: 0 auto 34px;
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin-bottom: 56px;
        }

        .hero-stats {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 0;
            border-top: 1px solid rgba(255, 255, 255, .2);
            padding-top: 40px;
        }

        .hero-stat {
            flex: 1;
            min-width: 180px;
            padding: 0 24px;
            text-align: center;
        }

        .hero-stat+.hero-stat {
            border-left: 1px solid rgba(255, 255, 255, .18);
        }

        .hero-stat strong {
            display: block;
            font-size: 34px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -.01em;
            font-family: Georgia, serif;
            line-height: 1.1;
        }

        .hero-stat span {
            display: block;
            margin-top: 6px;
            font-size: 14px;
            color: rgba(255, 255, 255, .7);
            letter-spacing: .04em;
        }

        @media (max-width: 768px) {
            .hero {
                min-height: 82vh;
                padding-top: 130px;
            }

            .hero-stats {
                flex-direction: column;
                gap: 16px;
                padding-top: 24px;
            }

            .hero-stat+.hero-stat {
                border-left: none;
                border-top: 1px solid rgba(255, 255, 255, .14);
                padding-top: 16px;
            }
        }

        /* ========== App / 预约区 ========== */
        .app-section {
            background: var(--bg-deep);
            color: #fff;
            position: relative;
            overflow: hidden;
            border-radius: 0;
        }

        .app-section::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -120px;
            width: 380px;
            height: 380px;
            background: radial-gradient(circle, rgba(176, 141, 90, .25) 0%, transparent 70%);
            pointer-events: none;
        }

        .app-grid {
            display: grid;
            grid-template-columns: 1.1fr .9fr;
            gap: 70px;
            align-items: center;
        }

        .app-content .section-label {
            background: rgba(176, 141, 90, .18);
            border-color: rgba(176, 141, 90, .35);
        }

        .app-content .section-title {
            color: #fff;
        }

        .app-content .section-desc {
            color: rgba(255, 255, 255, .7);
        }

        .app-steps {
            margin-top: 38px;
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .app-step {
            display: flex;
            gap: 18px;
            align-items: flex-start;
            padding: 20px 24px;
            border-radius: var(--radius-md);
            background: rgba(255, 255, 255, .04);
            border: 1px solid rgba(255, 255, 255, .08);
            transition: background .3s, border-color .3s, transform .3s;
        }

        .app-step:hover {
            background: rgba(255, 255, 255, .075);
            border-color: rgba(176, 141, 90, .4);
            transform: translateX(4px);
        }

        .app-step-num {
            flex-shrink: 0;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            box-shadow: 0 4px 16px rgba(176, 141, 90, .4);
        }

        .app-step h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 4px;
        }

        .app-step p {
            font-size: 14px;
            color: rgba(255, 255, 255, .6);
            line-height: 1.7;
        }

        /* 模拟小程序卡片 */
        .app-mock {
            position: relative;
            background: linear-gradient(145deg, rgba(255, 255, 255, .1), rgba(255, 255, 255, .04));
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: var(--radius-lg);
            padding: 38px 34px 44px;
            backdrop-filter: blur(12px);
            box-shadow: var(--shadow-lg);
        }

        .app-mock-header {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 28px;
            padding-bottom: 22px;
            border-bottom: 1px solid rgba(255, 255, 255, .12);
        }

        .app-mock-header h4 {
            font-size: 18px;
            font-weight: 700;
        }

        .app-mock-header span {
            font-size: 13px;
            color: var(--accent-light);
            font-weight: 600;
        }

        .mock-row {
            display: flex;
            align-items: center;
            gap: 14px;
            padding: 14px 0;
            border-bottom: 1px dashed rgba(255, 255, 255, .1);
        }

        .mock-row i {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: rgba(176, 141, 90, .18);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-light);
            font-size: 15px;
            flex-shrink: 0;
        }

        .mock-row .mock-label {
            flex: 1;
            font-size: 14px;
            color: rgba(255, 255, 255, .55);
        }

        .mock-row .mock-value {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
        }

        .mock-btn {
            width: 100%;
            margin-top: 28px;
            padding: 14px;
            background: var(--accent);
            color: #fff;
            border-radius: 50px;
            font-weight: 700;
            font-size: 15px;
            transition: all .3s;
            text-align: center;
            box-shadow: 0 6px 22px rgba(176, 141, 90, .3);
        }

        .mock-btn:hover {
            background: #9c7a4a;
            transform: translateY(-2px);
            box-shadow: 0 10px 30px rgba(176, 141, 90, .4);
            color: #fff;
        }

        @media (max-width: 900px) {
            .app-grid {
                grid-template-columns: 1fr;
                gap: 50px;
            }

            .app-mock {
                max-width: 460px;
                margin: 0 auto;
                width: 100%;
            }
        }

        /* ========== 服务矩阵 ========== */
        .services-section {
            background: var(--bg-cream);
            position: relative;
        }

        .services-list {
            margin-top: 52px;
            display: flex;
            flex-direction: column;
            gap: 16px;
        }

        .service-row {
            display: grid;
            grid-template-columns: 90px 1.1fr 1.4fr auto;
            align-items: center;
            gap: 28px;
            padding: 28px 34px;
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: all .35s ease;
        }

        .service-row:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--accent-light);
            transform: translateY(-3px);
        }

        .service-num {
            font-size: 26px;
            font-weight: 800;
            color: var(--accent);
            font-family: Georgia, serif;
            opacity: .55;
            line-height: 1;
        }

        .service-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--accent-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 21px;
            transition: all .3s;
        }

        .service-row:hover .service-icon {
            background: var(--accent);
            color: #fff;
            transform: rotate(-6deg) scale(1.05);
        }

        .service-info h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 6px;
        }

        .service-info p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.7;
            max-width: 480px;
        }

        .service-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            white-space: nowrap;
            border: 1.5px solid var(--accent);
            border-radius: 50px;
            padding: 9px 22px;
            transition: all .3s;
        }

        .service-link:hover {
            background: var(--accent);
            color: #fff;
        }

        @media (max-width: 900px) {
            .service-row {
                grid-template-columns: 60px 1fr auto;
                padding: 22px 22px;
                gap: 16px;
            }

            .service-info {
                grid-column: 2 / -1;
            }
        }

        @media (max-width: 600px) {
            .service-row {
                grid-template-columns: 1fr;
                gap: 14px;
            }

            .service-num {
                display: none;
            }
        }

        /* ========== 关于 + 对比 ========== */
        .about-section {
            background: var(--bg-warm);
            overflow: hidden;
        }

        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .about-media {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }

        .about-media img {
            width: 100%;
            height: 460px;
            object-fit: cover;
            transition: transform .8s ease;
        }

        .about-media:hover img {
            transform: scale(1.03);
        }

        .about-media::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(36, 26, 18, .3));
        }

        .about-badge {
            position: absolute;
            left: 28px;
            bottom: 28px;
            z-index: 2;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(8px);
            border-radius: 14px;
            padding: 16px 22px;
            font-size: 13px;
            color: var(--text);
            font-weight: 600;
            box-shadow: var(--shadow-md);
        }

        .about-badge strong {
            display: block;
            font-size: 26px;
            color: var(--accent);
            font-family: Georgia, serif;
            line-height: 1.1;
        }

        .about-copy .section-desc {
            margin-bottom: 24px;
        }

        .about-copy p {
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 16px;
        }

        .about-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 26px;
        }

        .about-tag {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 100px;
            padding: 8px 18px;
            box-shadow: var(--shadow-sm);
        }

        .about-tag i {
            color: var(--accent);
            margin-right: 5px;
        }

        /* 对比表 */
        .compare-block {
            margin-top: 88px;
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-md);
            padding: 50px 16px 40px;
            border: 1px solid var(--border);
        }

        .compare-title {
            text-align: center;
            font-size: 26px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 40px;
        }

        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 0;
            max-width: 1000px;
            margin: 0 auto;
        }

        .compare-col {
            padding: 0 28px;
        }

        .compare-col.middle {
            border-left: 1px solid var(--border);
            border-right: 1px solid var(--border);
        }

        .compare-col-head {
            font-size: 17px;
            font-weight: 800;
            padding-bottom: 16px;
            margin-bottom: 24px;
            border-bottom: 2px solid var(--border);
            color: var(--primary);
            text-align: center;
        }

        .compare-col-head i {
            margin-right: 6px;
            color: var(--accent);
        }

        .compare-row {
            padding: 14px 0;
            border-bottom: 1px dashed var(--border);
            font-size: 14px;
            text-align: center;
            color: var(--text-light);
            line-height: 1.6;
        }

        .compare-row strong {
            color: var(--text);
            font-weight: 600;
        }

        .compare-row:last-child {
            border-bottom: none;
        }

        .compare-vs {
            position: relative;
            top: -14px;
            text-align: center;
            margin-bottom: -8px;
            font-size: 13px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: .1em;
        }

        @media (max-width: 900px) {
            .about-grid {
                grid-template-columns: 1fr;
                gap: 44px;
            }

            .about-media img {
                height: 340px;
            }

            .compare-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }

            .compare-col.middle {
                border-left: none;
                border-right: none;
                border-top: 1px solid var(--border);
                border-bottom: 1px solid var(--border);
                padding: 20px 0;
            }
        }

        /* ========== 资讯区 ========== */
        .news-section {
            background: var(--bg-cream);
        }

        .news-grid {
            display: grid;
            grid-template-columns: 1.4fr .6fr;
            gap: 50px;
            margin-top: 50px;
            align-items: start;
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .news-item {
            display: flex;
            align-items: center;
            gap: 30px;
            padding: 26px 8px;
            border-bottom: 1px solid var(--border);
            transition: all .3s ease;
        }

        .news-item:first-child {
            padding-top: 0;
        }

        .news-item:hover {
            padding-left: 16px;
            border-bottom-color: var(--accent);
        }

        .news-date {
            flex-shrink: 0;
            width: 76px;
            text-align: center;
            background: var(--bg-warm);
            border-radius: var(--radius-sm);
            padding: 12px 8px;
            border: 1px solid var(--border);
        }

        .news-date strong {
            display: block;
            font-size: 22px;
            font-weight: 800;
            color: var(--accent);
            font-family: Georgia, serif;
        }

        .news-date span {
            display: block;
            font-size: 12px;
            color: var(--text-light);
            margin-top: 2px;
        }

        .news-info {
            flex: 1;
        }

        .news-info h3 {
            font-size: 17px;
            font-weight: 600;
            line-height: 1.6;
            margin-bottom: 6px;
        }

        .news-info h3 a {
            color: var(--text);
        }

        .news-info h3 a:hover {
            color: var(--accent);
        }

        .news-info p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-meta {
            font-size: 13px;
            color: var(--text-light);
            display: flex;
            gap: 14px;
            margin-top: 4px;
        }

        .news-arrow {
            flex-shrink: 0;
            color: var(--text-light);
            font-size: 18px;
            transition: all .3s;
        }

        .news-item:hover .news-arrow {
            color: var(--accent);
            transform: translateX(6px);
        }

        /* 侧边推荐 */
        .news-sidebar {
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            padding: 30px;
            position: sticky;
            top: 110px;
        }

        .news-sidebar h4 {
            font-size: 18px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 24px;
            padding-bottom: 14px;
            border-bottom: 2px solid var(--accent-soft);
            display: flex;
            gap: 8px;
            align-items: center;
        }

        .sidebar-hot-item {
            display: flex;
            align-items: center;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px dashed var(--border);
            font-size: 14px;
            line-height: 1.5;
        }

        .sidebar-hot-item:last-child {
            border-bottom: none;
        }

        .sidebar-hot-item .rank {
            width: 26px;
            height: 26px;
            flex-shrink: 0;
            border-radius: 8px;
            background: var(--accent-soft);
            color: var(--accent);
            font-weight: 700;
            font-size: 13px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .sidebar-hot-item .rank.top {
            background: var(--accent);
            color: #fff;
        }

        .sidebar-hot-item a {
            color: var(--text);
            flex: 1;
        }

        .sidebar-hot-item a:hover {
            color: var(--accent);
        }

        .sidebar-tags {
            margin-top: 24px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .sidebar-tag {
            font-size: 12px;
            padding: 5px 14px;
            border-radius: 100px;
            background: var(--bg-warm);
            border: 1px solid var(--border);
            color: var(--text-light);
            transition: all .25s;
        }

        .sidebar-tag:hover {
            background: var(--accent);
            border-color: var(--accent);
            color: #fff;
        }

        @media (max-width: 900px) {
            .news-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .news-sidebar {
                position: static;
            }
        }

        @media (max-width: 600px) {
            .news-item {
                flex-wrap: wrap;
                gap: 12px;
            }

            .news-date {
                width: auto;
                display: flex;
                align-items: center;
                gap: 8px;
                padding: 6px 14px;
            }

            .news-date strong {
                font-size: 16px;
            }

            .news-arrow {
                display: none;
            }
        }

        /* ========== FAQ ========== */
        .faq-section {
            background: linear-gradient(180deg, var(--bg-warm) 0%, var(--bg-cream) 100%);
            position: relative;
        }

        .faq-grid {
            display: grid;
            grid-template-columns: .8fr 1.2fr;
            gap: 60px;
            margin-top: 56px;
            align-items: start;
        }

        .faq-intro .section-desc {
            margin-bottom: 30px;
        }

        .faq-contact-card {
            background: var(--primary);
            border-radius: var(--radius-md);
            padding: 32px;
            color: #fff;
            box-shadow: var(--shadow-lg);
            position: relative;
            overflow: hidden;
        }

        .faq-contact-card::after {
            content: '\f6dc';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            right: -10px;
            bottom: -10px;
            font-size: 100px;
            opacity: .06;
            transform: rotate(-15deg);
        }

        .faq-contact-card h4 {
            font-size: 19px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .faq-contact-card p {
            color: rgba(255, 255, 255, .7);
            font-size: 14px;
            line-height: 1.7;
            margin-bottom: 20px;
        }

        .faq-contact-card .phone-line {
            font-size: 22px;
            font-weight: 800;
            color: var(--accent-light);
            letter-spacing: .02em;
        }

        .faq-contact-card .btn {
            width: 100%;
            margin-top: 8px;
        }

        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .faq-item {
            background: #fff;
            border-radius: var(--radius-md);
            border: 1px solid var(--border);
            overflow: hidden;
            transition: all .3s ease;
            box-shadow: var(--shadow-sm);
        }

        .faq-item:hover {
            border-color: var(--accent-light);
            box-shadow: var(--shadow-md);
        }

        .faq-item summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 26px;
            cursor: pointer;
            list-style: none;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            transition: background .3s;
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '\f107';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            color: var(--accent);
            font-size: 16px;
            transition: transform .3s ease;
            flex-shrink: 0;
        }

        .faq-item[open] summary::after {
            transform: rotate(180deg);
        }

        .faq-item[open] summary {
            border-bottom: 1px solid var(--border);
            background: var(--accent-soft);
        }

        .faq-answer {
            padding: 20px 26px;
            font-size: 15px;
            line-height: 1.85;
            color: var(--text-light);
            background: #fff;
            border-top: none;
        }

        @media (max-width: 900px) {
            .faq-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }
        }

        /* ========== 转化表单 ========== */
        .contact-section {
            background: var(--bg-deep);
            color: #fff;
            position: relative;
            overflow: hidden;
        }

        .contact-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background-image: url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            opacity: .18;
            z-index: 0;
        }

        .contact-section::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, rgba(36, 26, 18, .88), rgba(36, 26, 18, .95));
            z-index: 1;
        }

        .contact-inner {
            position: relative;
            z-index: 2;
        }

        .contact-grid {
            display: grid;
            grid-template-columns: .8fr 1.2fr;
            gap: 64px;
            align-items: center;
        }

        .contact-copy .section-title {
            color: #fff;
        }

        .contact-copy .section-desc {
            color: rgba(255, 255, 255, .72);
            margin-bottom: 30px;
        }

        .contact-info-item {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 16px 0;
            border-bottom: 1px solid rgba(255, 255, 255, .1);
        }

        .contact-info-item:last-child {
            border-bottom: none;
        }

        .contact-info-item i {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: rgba(176, 141, 90, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent-light);
            font-size: 18px;
            flex-shrink: 0;
        }

        .contact-info-item span {
            display: block;
            font-size: 13px;
            color: rgba(255, 255, 255, .5);
        }

        .contact-info-item strong {
            font-size: 17px;
            font-weight: 600;
            color: #fff;
            line-height: 1.5;
        }

        .contact-form {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 42px 38px;
            box-shadow: var(--shadow-lg);
            color: var(--text);
        }

        .contact-form h3 {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 8px;
        }

        .contact-form>p {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 30px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 18px;
            margin-bottom: 18px;
        }

        .form-group {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }

        .form-group.full {
            grid-column: 1 / -1;
        }

        .form-group label {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
        }

        .form-group input,
        .form-group select,
        .form-group textarea {
            border: 1.5px solid var(--border);
            border-radius: 10px;
            padding: 12px 16px;
            font-size: 15px;
            transition: all .3s;
            background: #fcfbf9;
            width: 100%;
            color: var(--text);
        }

        .form-group input:focus,
        .form-group select:focus,
        .form-group textarea:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(176, 141, 90, .15);
            background: #fff;
            outline: none;
        }

        .form-group textarea {
            min-height: 110px;
            resize: vertical;
        }

        .form-submit {
            width: 100%;
            margin-top: 10px;
        }

        .form-note {
            margin-top: 14px;
            font-size: 12px;
            color: var(--text-light);
            text-align: center;
        }

        @media (max-width: 900px) {
            .contact-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .contact-form {
                padding: 32px 24px;
            }
        }

        @media (max-width: 560px) {
            .form-grid {
                grid-template-columns: 1fr;
            }

            .form-group.full {
                grid-column: auto;
            }
        }

        /* ========== 底部 CTA ========== */
        .cta-strip {
            background: var(--accent);
            padding: 36px 0;
            color: #fff;
            text-align: center;
        }

        .cta-strip .site-container {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
        }

        .cta-strip h3 {
            font-size: 24px;
            font-weight: 800;
            line-height: 1.4;
        }

        .cta-strip p {
            font-size: 15px;
            opacity: .85;
            margin-top: 4px;
        }

        .cta-strip .btn-white-outline {
            border-color: #fff;
            color: #fff;
        }

        @media (max-width: 760px) {
            .cta-strip .site-container {
                justify-content: center;
                text-align: center;
            }
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--bg-deep);
            color: rgba(255, 255, 255, .65);
            padding: 68px 0 30px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.3fr .8fr .9fr;
            gap: 60px;
            padding-bottom: 44px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .footer-brand .brand-logo {
            color: #fff;
            font-size: 20px;
            margin-bottom: 12px;
        }

        .footer-brand .brand-sub {
            color: rgba(255, 255, 255, .5);
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(255, 255, 255, .5);
            margin-top: 18px;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 16px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 20px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(255, 255, 255, .12);
            position: relative;
        }

        .footer-col h4::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 34px;
            height: 3px;
            background: var(--accent);
            border-radius: 3px;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul a {
            font-size: 14px;
            color: rgba(255, 255, 255, .65);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: all .25s;
        }

        .footer-col ul a i {
            font-size: 4px;
            color: var(--accent);
        }

        .footer-col ul a:hover {
            color: var(--accent-light);
            padding-left: 4px;
        }

        .footer-contact li {
            display: flex;
            gap: 12px;
            align-items: flex-start;
            margin-bottom: 14px;
            font-size: 14px;
            line-height: 1.6;
        }

        .footer-contact li i {
            color: var(--accent);
            margin-top: 4px;
            width: 16px;
            flex-shrink: 0;
        }

        .footer-bottom {
            padding-top: 26px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 16px;
            font-size: 13px;
            color: rgba(255, 255, 255, .4);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, .55);
        }

        .footer-bottom a:hover {
            color: #fff;
        }

        @media (max-width: 900px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 40px;
            }
        }

        @media (max-width: 600px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 34px;
            }
        }

        /* ========== 通用动画 ========== */
        .fade-up {
            opacity: 0;
            transform: translateY(24px);
            transition: opacity .7s ease, transform .7s ease;
        }

        .fade-up.visible {
            opacity: 1;
            transform: none;
        }

        /* ========== 工具类 ========== */
        .mt-0 {
            margin-top: 0 !important;
        }

        .mb-0 {
            margin-bottom: 0 !important;
        }

        .text-accent {
            color: var(--accent);
        }
