/* roulang page: index */
:root {
            --site-yellow: #EDB63C;
            --site-yellow-deep: #D9A12B;
            --site-green: #2F7A57;
            --site-green-deep: #226144;
            --site-bg: #FAF6EE;
            --site-bg-deep: #F2E8D8;
            --site-ink: #251D10;
            --site-ink-soft: #6E6352;
            --site-line: rgba(59, 48, 20, .1);
            --site-radius-lg: 24px;
            --site-radius-md: 18px;
            --site-radius-sm: 12px;
            --site-shadow: 0 10px 30px rgba(74, 55, 18, .08);
            --site-shadow-hover: 0 18px 40px rgba(74, 55, 18, .14);
            --site-font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--site-font);
            background: var(--site-bg);
            color: var(--site-ink);
            line-height: 1.75;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }

        body.modal-open,
        body.mobile-nav-open {
            overflow: hidden;
        }

        a {
            color: var(--site-ink);
            text-decoration: none;
            transition: all .28s ease-out;
        }

        a:hover {
            color: var(--site-yellow-deep);
        }

        img {
            max-width: 100%;
            display: block;
        }

        button,
        input,
        textarea {
            font-family: inherit;
        }

        button:focus-visible,
        a:focus-visible,
        input:focus-visible {
            outline: 2px solid var(--site-yellow);
            outline-offset: 3px;
            border-radius: 6px;
        }

        h1,
        h2,
        h3,
        h4,
        h5 {
            line-height: 1.25;
            color: var(--site-ink);
            letter-spacing: -0.01em;
        }

        p {
            color: var(--site-ink-soft);
        }

        .aw {
            width: 100%;
            max-width: 1320px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (min-width: 992px) {
            .aw {
                padding: 0 36px;
            }
        }

        .site-section {
            padding: 100px 0;
        }

        .kicker {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(237, 182, 60, .14);
            color: #8A6A14;
            border: 1px solid rgba(217, 161, 43, .16);
            border-radius: 999px;
            padding: 7px 16px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .02em;
        }

        .kicker i {
            font-size: 12px;
        }

        .section-title {
            font-size: clamp(1.9rem, 3vw, 2.6rem);
            font-weight: 800;
            margin-top: 14px;
            margin-bottom: 14px;
            letter-spacing: -0.02em;
        }

        .section-desc {
            font-size: 16px;
            max-width: 720px;
            color: var(--site-ink-soft);
            margin-bottom: 0;
        }

        .center-head {
            text-align: center;
        }

        .center-head .section-desc {
            margin-left: auto;
            margin-right: auto;
        }

        /* ===== Dock Navigation ===== */
        .dock-wrap {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            padding: 16px 16px 0;
            pointer-events: none;
        }

        .dock-nav {
            pointer-events: auto;
            max-width: 1220px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 14px;
            background: rgba(250, 246, 238, .7);
            -webkit-backdrop-filter: blur(18px) saturate(140%);
            backdrop-filter: blur(18px) saturate(140%);
            border: 1px solid rgba(59, 48, 20, .08);
            border-radius: 64px;
            padding: 12px 18px 12px 22px;
            box-shadow: 0 8px 24px rgba(58, 42, 10, .08);
            transition: background .35s ease-out, box-shadow .35s ease-out, border-color .35s ease-out;
        }

        .dock-nav.is-scrolled {
            background: rgba(250, 246, 238, .9);
            box-shadow: 0 12px 36px rgba(58, 42, 10, .13);
            border-color: rgba(59, 48, 20, .06);
        }

        .dock-logo {
            font-size: 22px;
            font-weight: 800;
            color: var(--site-ink);
            letter-spacing: -0.02em;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .dock-logo i {
            color: var(--site-yellow-deep);
            font-size: 20px;
        }

        .dock-logo:hover {
            color: var(--site-yellow-deep);
        }

        .dock-links {
            display: flex;
            align-items: center;
            gap: 4px;
            margin: 0 auto;
        }

        .dock-link {
            padding: 9px 15px;
            border-radius: 999px;
            font-size: 15px;
            font-weight: 500;
            color: var(--site-ink-soft);
            transition: all .25s ease-out;
        }

        .dock-link:hover {
            color: var(--site-ink);
            background: rgba(237, 182, 60, .16);
        }

        .dock-link.active {
            color: var(--site-ink);
            background: rgba(237, 182, 60, .22);
            font-weight: 600;
        }

        .dock-actions {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }

        .dock-search {
            background: transparent;
            border: 1px solid var(--site-line);
            border-radius: 999px;
            padding: 6px 12px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: var(--site-ink-soft);
            min-width: 0;
            transition: all .25s ease-out;
        }

        .dock-search i {
            font-size: 13px;
            color: #8A6A14;
        }

        .dock-search:hover {
            border-color: var(--site-yellow);
            background: var(--site-bg);
            color: var(--site-ink);
        }

        .btn-dock {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--site-yellow);
            color: var(--site-ink);
            font-weight: 700;
            font-size: 15px;
            border: none;
            border-radius: 999px;
            padding: 10px 20px;
            transition: all .28s ease-out;
            box-shadow: 0 4px 16px rgba(217, 161, 43, .22);
            white-space: nowrap;
        }

        .btn-dock:hover {
            background: #F3C75D;
            color: var(--site-ink);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(217, 161, 43, .3);
        }

        .btn-dock:active {
            transform: translateY(0);
        }

        .dump-toggle {
            display: none;
            background: transparent;
            border: none;
            border-radius: 50%;
            width: 40px;
            height: 40px;
            font-size: 18px;
            color: var(--site-ink);
            align-items: center;
            justify-content: center;
        }

        .dock-panel {
            display: none;
        }

        .dock-search-mobile {
            display: none;
        }

        .main-content {
            padding-top: 86px;
        }

        @media (max-width: 991.98px) {
            .dock-nav {
                justify-content: space-between;
                gap: 8px;
                padding: 10px 12px 10px 18px;
            }

            .dock-links,
            .dock-actions .dock-search,
            .dock-actions .btn-dock {
                display: none;
            }

            .dump-toggle {
                display: inline-flex;
            }

            .dock-panel {
                display: none;
                pointer-events: auto;
                background: rgba(250, 246, 238, .98);
                -webkit-backdrop-filter: blur(20px);
                backdrop-filter: blur(20px);
                border: 1px solid rgba(59, 48, 20, .08);
                border-radius: 24px;
                padding: 18px 16px;
                max-width: 1220px;
                margin: 8px auto 0;
                box-shadow: var(--site-shadow);
            }

            .dock-panel.open {
                display: block;
            }

            .dock-panel .dock-mobile-links {
                display: flex;
                flex-direction: column;
                gap: 2px;
            }

            .dock-panel .dock-link {
                padding: 13px 14px;
                border-radius: 14px;
                font-size: 16px;
            }

            .dock-search-mobile {
                display: flex;
                align-items: center;
                gap: 8px;
                border: 1px solid var(--site-line);
                background: #fff;
                border-radius: 14px;
                padding: 10px 14px;
                margin-top: 8px;
            }

            .dock-search-mobile input {
                border: none;
                background: transparent;
                outline: none;
                flex: 1;
                font-size: 15px;
            }

            .dock-search-mobile i {
                color: #8A6A14;
            }
        }

        /* ===== Buttons ===== */
        .btn-banana-primary,
        .btn-banana-sub {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            font-size: 16px;
            font-weight: 700;
            border-radius: 999px;
            padding: 14px 28px;
            border: 1px solid transparent;
            transition: all .3s ease-out;
            white-space: nowrap;
        }

        .btn-banana-primary {
            background: var(--site-yellow);
            color: var(--site-ink);
            box-shadow: 0 6px 20px rgba(217, 161, 43, .24);
        }

        .btn-banana-primary:hover {
            background: #F3C75D;
            color: var(--site-ink);
            transform: translateY(-2px);
            box-shadow: var(--site-shadow-hover);
        }

        .btn-banana-primary:active {
            transform: translateY(0);
        }

        .btn-banana-sub {
            background: transparent;
            color: var(--site-ink);
            border-color: rgba(37, 29, 16, .3);
        }

        .btn-banana-sub:hover {
            background: var(--site-yellow);
            border-color: transparent;
            color: var(--site-ink);
            transform: translateY(-2px);
        }

        .btn-banana-sub:active {
            transform: translateY(0);
        }

        .btn-lg-rounded {
            font-size: 17px;
            padding: 16px 34px;
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            padding: 170px 0 110px;
            background: linear-gradient(120deg, rgba(250, 246, 238, .98) 0%, rgba(250, 246, 238, .88) 45%, rgba(242, 232, 216, .78) 100%), url('/assets/images/backpic/back-1.jpg') center / cover no-repeat;
            overflow: hidden;
        }

        .hero::before {
            content: "";
            position: absolute;
            width: 460px;
            height: 460px;
            background: radial-gradient(circle, rgba(237, 182, 60, .2) 0%, transparent 65%);
            right: -120px;
            bottom: -90px;
            pointer-events: none;
        }

        .hero::after {
            content: "";
            position: absolute;
            width: 320px;
            height: 320px;
            border: 1px solid rgba(237, 182, 60, .12);
            border-radius: 45% 55% 50% 50%;
            left: -80px;
            top: 20%;
            transform: rotate(25deg);
            pointer-events: none;
        }

        .hero-grid {
            display: grid;
            grid-template-columns: 1fr 1.05fr;
            gap: 48px;
            align-items: center;
            position: relative;
            z-index: 2;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(47, 122, 87, .12);
            border: 1px solid rgba(47, 122, 87, .16);
            border-radius: 999px;
            padding: 7px 16px;
            font-size: 14px;
            font-weight: 600;
            color: var(--site-green);
            margin-bottom: 24px;
        }

        .hero-tag i {
            font-size: 13px;
        }

        .hero-copy h1 {
            font-size: clamp(2.6rem, 5vw, 4.2rem);
            font-weight: 900;
            line-height: 1.12;
            letter-spacing: -0.025em;
            margin-bottom: 24px;
        }

        .hero-sub {
            font-size: 17px;
            line-height: 1.8;
            color: var(--site-ink-soft);
            max-width: 620px;
            margin-bottom: 32px;
        }

        .hero-btns {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 44px;
        }

        .hero-data {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 34px;
        }

        .hero-data-item strong {
            display: block;
            font-size: 30px;
            font-weight: 800;
            color: var(--site-ink);
            line-height: 1.15;
        }

        .hero-data-item strong small {
            font-size: 18px;
            color: var(--site-yellow-deep);
        }

        .hero-data-item span {
            font-size: 14px;
            color: var(--site-ink-soft);
            display: block;
            margin-top: 4px;
        }

        .hero-data-divider {
            width: 1px;
            height: 42px;
            background: var(--site-line);
        }

        .hero-visual {
            position: relative;
            margin-left: 24px;
        }

        .hero-visual::before {
            content: "";
            position: absolute;
            width: 90%;
            height: 85%;
            top: 6%;
            right: -6%;
            background: rgba(237, 182, 60, .38);
            border-radius: 42% 58% 45% 55% / 55% 40% 60% 45%;
            z-index: 0;
            transform: rotate(-6deg);
        }

        .hero-photo {
            position: relative;
            z-index: 1;
            width: 100%;
            border-radius: 38px;
            overflow: hidden;
            box-shadow: 0 30px 60px rgba(74, 55, 18, .14);
            border: 4px solid #fff;
            aspect-ratio: 5 / 4;
        }

        .hero-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .hero-badge-float {
            position: absolute;
            z-index: 2;
            left: -28px;
            bottom: 40px;
            background: #fff;
            border: 1px solid rgba(59, 48, 20, .08);
            border-radius: 18px;
            padding: 14px 18px;
            box-shadow: var(--site-shadow-hover);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .hero-badge-float i {
            width: 38px;
            height: 38px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            background: rgba(47, 122, 87, .14);
            color: var(--site-green);
        }

        .hero-badge-float strong {
            display: block;
            font-size: 15px;
        }

        .hero-badge-float span {
            font-size: 13px;
            color: var(--site-ink-soft);
        }

        @media (max-width: 991.98px) {
            .hero {
                padding: 240px 0 70px;
            }

            .hero-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .hero-visual {
                margin-left: 0;
                max-width: 600px;
            }

            .hero-data {
                gap: 25px;
            }

            .hero-data-divider {
                display: none;
            }
        }

        @media (max-width: 575.98px) {
            .hero-data {
                gap: 20px;
            }

            .hero-data-item strong {
                font-size: 24px;
            }

            .hero-badge-float {
                left: 10px;
                bottom: 12px;
                padding: 10px 14px;
            }
        }

        /* ===== Stats band ===== */
        .stats-band {
            background: var(--site-ink);
            color: #fff;
            border-radius: 24px;
            position: relative;
            z-index: 5;
            margin-top: -60px;
            overflow: hidden;
            background-image: url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center center;
            background-blend-mode: multiply;
            background-color: rgba(37, 29, 16, .82);
        }

        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 28px;
            padding: 42px 36px;
        }

        .stats-item {
            position: relative;
            padding-left: 22px;
        }

        .stats-item::before {
            content: "";
            position: absolute;
            left: 0;
            top: 8px;
            width: 4px;
            height: 62%;
            background: var(--site-yellow);
            border-radius: 4px;
        }

        .stats-item strong {
            font-size: 34px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            display: block;
        }

        .stats-item span {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, .72);
            margin-top: 4px;
        }

        @media (max-width: 991.98px) {
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                padding: 30px 24px;
            }
        }

        @media (max-width: 575.98px) {
            .stats-item strong {
                font-size: 26px;
            }
        }

        /* ===== Feature Matrix ===== */
        .features-section {
            background: var(--site-bg);
            padding-bottom: 96px;
        }

        .feature-card {
            background: #fff;
            border: 1px solid var(--site-line);
            border-radius: 22px;
            padding: 30px;
            height: 100%;
            transition: transform .35s ease-out, box-shadow .35s ease-out, border-color .35s ease-out;
        }

        .feature-card:hover {
            transform: translateY(-5px);
            box-shadow: var(--site-shadow-hover);
            border-color: rgba(237, 182, 60, .45);
        }

        .feature-card .feat-icon {
            width: 52px;
            height: 52px;
            border-radius: 16px;
            background: rgba(237, 182, 60, .2);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #946B0A;
            margin-bottom: 20px;
        }

        .feature-card .feat-icon.green {
            background: rgba(47, 122, 87, .15);
            color: var(--site-green);
        }

        .feature-card h3 {
            font-size: 20px;
            font-weight: 700;
        }

        .feature-card p {
            font-size: 15px;
            margin: 12px 0 16px;
            color: var(--site-ink-soft);
        }

        .feature-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .feature-list li {
            font-size: 14px;
            padding: 4px 0;
            position: relative;
            padding-left: 24px;
            color: var(--site-ink);
        }

        .feature-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--site-green);
            position: absolute;
            left: 0;
            font-size: 12px;
            top: 7px;
        }

        .feature-big-card {
            background: url('/assets/images/backpic/back-3.jpg') center / cover no-repeat;
            border-radius: 26px;
            padding: 34px;
            min-height: 300px;
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            border: 1px solid rgba(255, 255, 255, .2);
            color: #fff;
        }

        .feature-big-card::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(155deg, rgba(37, 29, 16, .15) 0%, rgba(37, 29, 16, .78) 100%);
        }

        .feature-big-inner {
            position: relative;
            z-index: 1;
            max-width: 560px;
        }

        .feature-big-inner h3 {
            color: #fff;
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .feature-big-inner p {
            color: rgba(255, 255, 255, .82);
            font-size: 15px;
            margin: 0;
            line-height: 1.8;
        }

        .feature-matrix .row+.row {
            margin-top: 0;
        }

        .feature-matrix .feature-col {
            margin-bottom: 24px;
        }

        @media (max-width: 991.98px) {
            .feature-big-card {
                min-height: 260px;
            }
        }

        /* ===== Notes / News ===== */
        .notes-section {
            background: var(--site-bg-deep);
        }

        .notes-layout {
            display: grid;
            grid-template-columns: 1fr 350px;
            gap: 40px;
            margin-top: 50px;
        }

        .note-list-title {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 20px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .note-list-title i {
            color: var(--site-green);
        }

        .note-link-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .note-link-list li {
            background: #fff;
            border: 1px solid var(--site-line);
            border-radius: 16px;
            padding: 18px 20px;
            margin-bottom: 12px;
            transition: all .3s ease-out;
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .note-link-list li:hover {
            border-color: rgba(237, 182, 60, .4);
            background: #FFFDF8;
            transform: translateX(4px);
            box-shadow: var(--site-shadow);
        }

        .note-link-list .note-kind {
            flex-shrink: 0;
            font-size: 12px;
            background: rgba(237, 182, 60, .18);
            color: #7C5F11;
            border-radius: 999px;
            padding: 4px 10px;
            font-weight: 600;
        }

        .note-link-list a {
            flex: 1;
            font-size: 15px;
            color: var(--site-ink);
            font-weight: 600;
        }

        .note-link-list a:hover {
            color: var(--site-yellow-deep);
        }

        .notes-side {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .side-card {
            background: #fff;
            border-radius: 20px;
            padding: 28px;
            border: 1px solid var(--site-line);
        }

        .side-card--highlight {
            border-left: 4px solid var(--site-green);
            background: #fff;
        }

        .side-card h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .side-card p {
            font-size: 14px;
            color: var(--site-ink-soft);
            line-height: 1.75;
            margin: 0;
        }

        .check-list-side {
            list-style: none;
            margin: 14px 0 0;
            padding: 0;
        }

        .check-list-side li {
            font-size: 14px;
            color: var(--site-ink);
            line-height: 1.6;
            padding: 3px 0;
            padding-left: 24px;
            position: relative;
        }

        .check-list-side li::before {
            content: "\f058";
            font-family: "Font Awesome 6 Free";
            font-weight: 400;
            position: absolute;
            left: 0;
            color: var(--site-green);
            font-size: 14px;
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .tag-cloud span {
            background: var(--site-bg);
            border: 1px solid var(--site-line);
            border-radius: 999px;
            font-size: 13px;
            padding: 7px 13px;
            color: var(--site-ink-soft);
        }

        @media (max-width: 991.98px) {
            .notes-layout {
                grid-template-columns: 1fr;
            }
        }

        /* ===== Scenes ===== */
        .scenes-section {
            background: #fff;
        }

        .scene-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 54px;
            align-items: center;
            margin-bottom: 84px;
        }

        .scene-row:last-child {
            margin-bottom: 0;
        }

        .scene-image {
            border-radius: var(--site-radius-lg);
            overflow: hidden;
            box-shadow: var(--site-shadow);
            aspect-ratio: 4 / 3;
            position: relative;
        }

        .scene-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .6s ease-out;
        }

        .scene-row:hover .scene-image img {
            transform: scale(1.03);
        }

        .scene-copy {
            padding: 10px;
        }

        .scene-copy .scene-index {
            font-size: 13px;
            font-weight: 800;
            letter-spacing: .08em;
            color: var(--site-yellow-deep);
            margin-bottom: 8px;
            display: block;
        }

        .scene-copy h3 {
            font-size: 28px;
            font-weight: 800;
            margin-bottom: 16px;
        }

        .scene-copy p {
            color: var(--site-ink-soft);
            margin-bottom: 24px;
            font-size: 16px;
        }

        .scene-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .scene-tags span {
            display: inline-block;
            background: rgba(237, 182, 60, .1);
            border: 1px solid rgba(237, 182, 60, .13);
            color: var(--site-ink);
            border-radius: 999px;
            font-size: 13px;
            padding: 6px 13px;
        }

        @media (max-width: 991.98px) {
            .scene-row {
                grid-template-columns: 1fr;
                gap: 26px;
                margin-bottom: 60px;
            }

            .scene-row:nth-of-type(even) .scene-image {
                order: 2;
            }
        }

        /* ===== Stories ===== */
        .stories-section {
            background: linear-gradient(180deg, #fff 0%, var(--site-bg-deep) 100%);
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1.65fr 1fr;
            gap: 24px;
            margin-top: 48px;
            align-items: stretch;
        }

        .story-main {
            background: #fff;
            border-radius: 24px;
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
            box-shadow: var(--site-shadow);
            border: 1px solid var(--site-line);
            position: relative;
            overflow: hidden;
        }

        .story-main .story-bg {
            position: absolute;
            right: -12%;
            top: -10%;
            width: 55%;
            height: 130%;
            object-fit: cover;
            opacity: .14;
            border-radius: 20px;
            pointer-events: none;
        }

        .story-main-content {
            position: relative;
            z-index: 1;
        }

        .story-badges {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
            margin-bottom: 18px;
        }

        .story-badges span {
            background: rgba(47, 122, 87, .12);
            color: var(--site-green);
            font-size: 13px;
            font-weight: 600;
            border-radius: 999px;
            padding: 5px 12px;
        }

        .story-main h3 {
            font-size: 24px;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .story-main p {
            color: var(--site-ink-soft);
            max-width: 720px;
        }

        .story-meta {
            margin-top: 22px;
            border-top: 1px solid var(--site-line);
            padding-top: 18px;
            display: flex;
            gap: 28px;
            font-size: 14px;
            color: var(--site-ink-soft);
        }

        .story-meta i {
            color: var(--site-yellow-deep);
            margin-right: 6px;
        }

        .story-side {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }

        .story-mini {
            background: #fff;
            border-radius: 20px;
            padding: 24px;
            flex: 1;
            border: 1px solid var(--site-line);
            transition: all .3s ease-out;
        }

        .story-mini:hover {
            border-color: rgba(237, 182, 60, .4);
            box-shadow: var(--site-shadow);
            transform: translateY(-3px);
        }

        .story-mini .mini-icon {
            width: 44px;
            height: 44px;
            border-radius: 14px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: rgba(237, 182, 60, .2);
            color: #946B0A;
            font-size: 17px;
            margin-bottom: 14px;
        }

        .story-mini h4 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .story-mini p {
            font-size: 14px;
            color: var(--site-ink-soft);
            margin: 0;
        }

        @media (max-width: 991.98px) {
            .story-grid {
                grid-template-columns: 1fr;
            }

            .story-main .story-bg {
                opacity: .08;
            }
        }

        /* ===== Pricing ===== */
        .pricing-section {
            background: #fff;
        }

        .pricing-grid {
            display: grid;
            grid-template-columns: 1fr 1.45fr 1fr;
            gap: 26px;
            align-items: center;
            margin-top: 60px;
            position: relative;
        }

        .price-card {
            background: var(--site-bg);
            border: 1px solid var(--site-line);
            border-radius: 26px;
            padding: 34px 30px;
            transition: all .35s ease-out;
            position: relative;
            align-self: stretch;
        }

        .price-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--site-shadow-hover);
            border-color: rgba(237, 182, 60, .4);
        }

        .price-card--offset-top {
            margin-top: -36px;
        }

        .price-card--offset-bottom {
            margin-bottom: -36px;
        }

        .price-placeholder-text {
            text-align: center;
        }

        .price-card--featured {
            background: var(--site-ink);
            border-color: var(--site-ink);
            color: #fff;
            padding: 44px 36px;
            box-shadow: var(--site-shadow-hover);
        }

        .price-card--featured h3,
        .price-card--featured .price-amount {
            color: #fff;
        }

        .price-card--featured p,
        .price-card--featured li {
            color: rgba(255, 255, 255, .7);
        }

        .price-badge {
            display: inline-block;
            background: var(--site-yellow);
            color: var(--site-ink);
            font-size: 13px;
            font-weight: 700;
            padding: 5px 12px;
            border-radius: 999px;
            margin-bottom: 14px;
        }

        .price-card h3 {
            font-size: 22px;
            font-weight: 800;
        }

        .price-card--featured h3 {
            font-size: 26px;
        }

        .price-amount {
            font-size: 42px;
            font-weight: 900;
            line-height: 1;
            margin: 20px 0 10px;
            display: flex;
            align-items: baseline;
            gap: 6px;
        }

        .price-amount small {
            font-size: 15px;
            font-weight: 400;
            color: var(--site-ink-soft);
        }

        .price-card--featured .price-amount small {
            color: rgba(255, 255, 255, .55);
        }

        .price-list {
            list-style: none;
            margin: 20px 0 26px;
            padding: 0;
        }

        .price-list li {
            padding: 5px 0;
            padding-left: 26px;
            position: relative;
            font-size: 14px;
        }

        .price-list li::before {
            content: "\f00c";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            color: var(--site-green);
            position: absolute;
            left: 0;
            font-size: 12px;
            top: 9px;
        }

        .price-card--featured .price-list li::before {
            color: var(--site-yellow);
        }

        .price-btn {
            width: 100%;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--site-ink);
            color: #fff;
            border: none;
            border-radius: 999px;
            padding: 12px 22px;
            font-size: 15px;
            font-weight: 700;
            transition: all .3s ease-out;
        }

        .price-btn:hover {
            background: var(--site-green);
            color: #fff;
            transform: translateY(-2px);
        }

        .price-card--featured .price-btn {
            background: var(--site-yellow);
            color: var(--site-ink);
            box-shadow: 0 8px 22px rgba(237, 182, 60, .25);
        }

        .price-card--featured .price-btn:hover {
            background: #F3C75D;
            color: var(--site-ink);
        }

        .price-note {
            text-align: center;
            margin-top: 40px;
            color: var(--site-ink-soft);
            font-size: 13px;
        }

        .price-note a {
            font-weight: 600;
            color: var(--site-green);
        }

        @media (max-width: 991.98px) {
            .pricing-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .price-card--offset-top,
            .price-card--offset-bottom {
                margin-top: 0;
                margin-bottom: 0;
            }
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: var(--site-bg-deep);
        }

        .faq-wrap {
            max-width: 860px;
            margin: 50px auto 0;
        }

        .faq-item {
            background: #fff;
            border: 1px solid var(--site-line);
            border-radius: 20px;
            margin-bottom: 14px;
            overflow: hidden;
            transition: box-shadow .3s ease-out;
        }

        .faq-item:focus-within {
            box-shadow: 0 0 0 2px var(--site-yellow);
        }

        .faq-question {
            background: transparent;
            border: none;
            width: 100%;
            text-align: left;
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 700;
            color: var(--site-ink);
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            border-radius: 20px;
            transition: background .3s ease-out;
        }

        .faq-question:hover {
            background: rgba(237, 182, 60, .08);
        }

        .faq-question .faq-icon {
            width: 28px;
            height: 28px;
            border-radius: 50%;
            border: 1px solid rgba(237, 182, 60, .35);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
            font-size: 14px;
            color: #8A6A14;
            transition: transform .35s ease-out;
        }

        .accordion-button:not(.collapsed) .faq-icon {
            transform: rotate(45deg);
            background: var(--site-yellow);
            border-color: var(--site-yellow);
        }

        .faq-answer {
            padding: 0 24px 22px;
            color: var(--site-ink-soft);
            font-size: 15px;
            line-height: 1.8;
        }

        /* ===== CTA band ===== */
        .cta-band {
            position: relative;
            padding: 100px 0;
            background: url('/assets/images/backpic/back-4.jpg') center / cover no-repeat;
            background-color: rgba(37, 29, 16, .72);
            background-blend-mode: multiply;
            overflow: hidden;
        }

        .cta-band::after {
            content: "";
            position: absolute;
            width: 400px;
            height: 400px;
            right: -80px;
            bottom: -100px;
            border-radius: 50%;
            background: rgba(237, 182, 60, .16);
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            max-width: 700px;
        }

        .cta-inner .kicker {
            background: rgba(255, 255, 255, .1);
            border-color: rgba(255, 255, 255, .15);
            color: rgba(255, 255, 255, .8);
        }

        .cta-inner h2 {
            color: #fff;
            font-size: clamp(1.8rem, 3vw, 2.6rem);
            font-weight: 800;
            margin: 20px 0 16px;
        }

        .cta-inner p {
            color: rgba(255, 255, 255, .72);
            font-size: 16px;
            max-width: 600px;
        }

        .cta-btns {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
            margin-top: 32px;
        }

        .cta-link {
            color: rgba(255, 255, 255, .9);
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 255, 255, .4);
            padding-bottom: 2px;
        }

        .cta-link:hover {
            color: var(--site-yellow);
            border-color: var(--site-yellow);
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--site-ink);
            color: rgba(255, 255, 255, .72);
            padding: 70px 0 28px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr;
            gap: 44px;
            margin-bottom: 50px;
        }

        .footer-brand .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            color: #fff;
            font-size: 22px;
            font-weight: 800;
            margin-bottom: 14px;
        }

        .footer-brand .footer-logo i {
            color: var(--site-yellow);
        }

        .footer-brand p {
            color: rgba(255, 255, 255, .6);
            font-size: 14px;
            max-width: 360px;
            margin: 0;
        }

        .footer-title {
            font-size: 17px;
            color: #fff;
            font-weight: 700;
            margin-bottom: 18px;
            position: relative;
        }

        .footer-title::after {
            content: "";
            display: block;
            width: 30px;
            height: 3px;
            background: var(--site-yellow);
            border-radius: 3px;
            margin-top: 6px;
        }

        .footer-links {
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .62);
            font-size: 14px;
        }

        .footer-links a:hover {
            color: var(--site-yellow);
        }

        .footer-contact p {
            color: rgba(255, 255, 255, .62);
            font-size: 14px;
            margin-bottom: 10px;
        }

        .footer-contact p i {
            margin-right: 8px;
            color: var(--site-yellow);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 24px;
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: rgba(255, 255, 255, .4);
        }

        @media (max-width: 991.98px) {
            .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 575.98px) {
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
            }
        }

        /* ===== Animations ===== */
        .animate-up {
            opacity: 0;
            transform: translateY(26px);
            transition: opacity .6s ease-out, transform .6s ease-out;
        }

        .animate-up.is-active {
            opacity: 1;
            transform: none;
        }

        @media (prefers-reduced-motion: reduce) {
            html {
                scroll-behavior: auto;
            }
            *,
            *::before,
            *::after {
                animation-duration: .01ms !important;
                transition-duration: .01ms !important;
            }
            .animate-up {
                opacity: 1;
                transform: none;
            }
        }

/* roulang page: category1 */
/* ============================================================
           设计系统 设计变量 & Reset & 基础布局（分类页沿用）
           ============================================================ */
        :root {
            --site-yellow: #EDB63C;
            --site-yellow-deep: #D9A12B;
            --site-yellow-dark: #b8860b;
            --site-green: #2F7A57;
            --site-green-deep: #226144;
            --site-green-soft: #1f4d38;
            --site-bg: #FAF6EE;
            --site-bg-deep: #F2E8D8;
            --site-bg-card: #FFFBF2;
            --site-ink: #251D10;
            --site-ink-soft: #6E6352;
            --site-white: #FFFFFF;
            --site-line: rgba(59, 48, 20, .1);
            --site-line-strong: rgba(59, 48, 20, .16);
            --site-radius-lg: 28px;
            --site-radius-md: 20px;
            --site-radius-sm: 14px;
            --site-shadow: 0 10px 30px rgba(74, 55, 18, .08);
            --site-shadow-hover: 0 18px 44px rgba(74, 55, 18, .13);
            --site-font: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
            --site-font-size: 16px;
            --site-line-height: 1.75;
        }
        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--site-font);
            font-size: var(--site-font-size);
            line-height: var(--site-line-height);
            background: var(--site-bg);
            color: var(--site-ink);
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
        }
        body.mobile-nav-open {
            overflow: hidden;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: all .28s ease-out;
        }
        a:hover {
            color: var(--site-yellow-deep);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible {
            outline: 2px solid var(--site-yellow);
            outline-offset: 3px;
            border-radius: 8px;
        }
        img {
            max-width: 100%;
            display: block;
        }
        button {
            font-family: inherit;
            border: none;
            background: none;
            cursor: pointer;
        }
        input,
        textarea {
            font-family: inherit;
        }
        ul,
        ol {
            list-style: none;
        }
        .aw {
            max-width: 1320px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        .site-section {
            padding: 96px 0;
        }
        .section-head {
            margin-bottom: 48px;
            max-width: 800px;
        }
        .section-head.center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }
        .eyebrow {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 0.14em;
            color: var(--site-green);
            text-transform: uppercase;
        }
        .eyebrow::before {
            content: "";
            width: 34px;
            height: 1px;
            background: var(--site-green);
            opacity: .6;
        }
        .section-title {
            font-size: clamp(1.9rem, 3.4vw, 2.7rem);
            font-weight: 800;
            line-height: 1.2;
            margin: 12px 0 18px;
            letter-spacing: -0.02em;
            color: var(--site-ink);
        }
        .section-desc {
            color: var(--site-ink-soft);
            font-size: 16px;
            max-width: 680px;
            margin-bottom: 0;
        }
        .center-head .section-desc {
            margin-left: auto;
            margin-right: auto;
        }
        /* ===== Dock 导航 ===== */
        .dock-wrap {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1060;
            padding: 16px 20px 0;
            pointer-events: none;
        }
        .dock-nav {
            pointer-events: auto;
            max-width: 1220px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            gap: 12px;
            background: rgba(250, 246, 238, .72);
            -webkit-backdrop-filter: blur(20px) saturate(150%);
            backdrop-filter: blur(20px) saturate(150%);
            border: 1px solid rgba(59, 48, 20, .08);
            border-radius: 64px;
            padding: 10px 12px 10px 22px;
            box-shadow: 0 10px 30px rgba(58, 42, 10, .08);
            transition: all .35s ease-out;
        }
        .dock-nav.is-scrolled {
            background: rgba(250, 246, 238, .92);
            box-shadow: 0 16px 40px rgba(32, 24, 6, .13);
            border-color: rgba(59, 48, 20, .05);
        }
        .dock-logo {
            font-size: 21px;
            font-weight: 800;
            letter-spacing: -0.03em;
            color: var(--site-ink);
            display: inline-flex;
            align-items: center;
            gap: 8px;
            flex-shrink: 0;
        }
        .dock-logo i {
            color: var(--site-yellow-deep);
            font-size: 19px;
        }
        .dock-links {
            display: flex;
            align-items: center;
            gap: 4px;
            margin: 0 auto;
        }
        .dock-link {
            padding: 8px 15px;
            border-radius: 999px;
            font-weight: 600;
            font-size: 15px;
            color: var(--site-ink);
            transition: all .2s;
            white-space: nowrap;
        }
        .dock-link:hover {
            background: rgba(237, 182, 60, .16);
            color: var(--site-ink);
        }
        .dock-link.active {
            background: var(--site-yellow);
            color: var(--site-ink);
            font-weight: 700;
        }
        .dock-actions {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .dock-search-label {
            background: rgba(255, 255, 255, .5);
            border: 1px solid var(--site-line);
            border-radius: 999px;
            padding: 7px 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: var(--site-ink-soft);
            cursor: text;
            transition: border .25s, background .25s;
        }
        .dock-search-label i {
            font-size: 13px;
            color: #a8873d;
        }
        .dock-search-label:hover {
            border-color: var(--site-yellow);
            background: var(--site-bg);
        }
        .btn-dock {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--site-yellow);
            color: var(--site-ink);
            font-weight: 700;
            font-size: 15px;
            border: none;
            border-radius: 999px;
            padding: 10px 20px;
            transition: all .28s ease-out;
            box-shadow: 0 4px 18px rgba(217, 161, 43, .25);
            white-space: nowrap;
        }
        .btn-dock:hover {
            background: #f3c75d;
            color: var(--site-ink);
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(217, 161, 43, .32);
        }
        .btn-dock:active {
            transform: translateY(0);
        }
        .dock-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--site-bg);
            border: 1px solid var(--site-line);
            align-items: center;
            justify-content: center;
            color: var(--site-ink);
            font-size: 18px;
        }
        .main-content {
            padding-top: 76px;
        }
        .dock-mobile-panel {
            display: none;
            position: fixed;
            top: 84px;
            left: 16px;
            right: 16px;
            z-index: 1050;
            background: var(--site-bg-card);
            border: 1px solid var(--site-line);
            border-radius: 24px;
            box-shadow: 0 30px 80px rgba(20, 15, 5, .18);
            padding: 18px;
            transform: translateY(-14px);
            opacity: 0;
            visibility: hidden;
            transition: all .3s ease-out;
        }
        .dock-mobile-panel.show {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .dock-mobile-link {
            display: flex;
            align-items: center;
            gap: 10px;
            padding: 12px 8px;
            border-radius: 12px;
            font-size: 15px;
            font-weight: 600;
            color: var(--site-ink);
            border-bottom: 1px solid rgba(59, 48, 20, .05);
        }
        .dock-mobile-link.active {
            background: rgba(237, 182, 60, .15);
            color: var(--site-ink);
        }
        .dock-mobile-search {
            display: flex;
            align-items: center;
            gap: 8px;
            border: 1px solid var(--site-line);
            background: var(--site-bg);
            border-radius: 14px;
            padding: 11px 14px;
            margin-top: 14px;
        }
        .dock-mobile-search input {
            border: none;
            background: transparent;
            outline: none;
            flex: 1;
            font-size: 15px;
            color: var(--site-ink);
        }
        .dock-mobile-search i {
            color: #a8873d;
        }
        @media (max-width: 991.98px) {
            .dock-link,
            .dock-search-label,
            .btn-dock {
                display: none !important;
            }
            .dock-toggle {
                display: inline-flex !important;
            }
        }

        /* ===== 共享按钮、标签、卡片 ===== */
        .btn-main {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: var(--site-yellow);
            border: none;
            color: var(--site-ink);
            font-weight: 700;
            font-size: 16px;
            border-radius: 999px;
            padding: 12px 28px;
            line-height: 1.4;
            transition: all .28s ease-out;
            box-shadow: 0 4px 18px rgba(217, 161, 43, .22);
        }
        .btn-main:hover {
            background: #f3c75d;
            color: var(--site-ink);
            transform: translateY(-2px);
            box-shadow: 0 12px 28px rgba(217, 161, 43, .3);
        }
        .btn-main:active {
            transform: scale(.98);
        }
        .btn-outline-ink {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            border: 2px solid var(--site-ink);
            color: var(--site-ink);
            font-weight: 700;
            border-radius: 999px;
            padding: 10px 26px;
            transition: all .28s;
            line-height: 1.4;
        }
        .btn-outline-ink:hover {
            background: var(--site-yellow);
            border-color: var(--site-yellow);
            color: var(--site-ink);
            transform: translateY(-2px);
        }
        .btn-light-main {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: #fff;
            border: 1px solid var(--site-line);
            border-radius: 999px;
            padding: 10px 22px;
            font-weight: 600;
            font-size: 15px;
            color: var(--site-ink);
            transition: all .25s;
            box-shadow: 0 2px 8px rgba(0,0,0,.02);
        }
        .btn-light-main:hover {
            border-color: var(--site-yellow);
            background: #fffdf6;
            color: var(--site-ink);
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(74, 55, 18, .08);
        }
        .site-tag {
            display: inline-block;
            background: rgba(237, 182, 60, .16);
            color: #8a6a14;
            font-size: 13px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 999px;
            line-height: 1.5;
        }
        .site-tag.green {
            background: rgba(47, 122, 87, .12);
            color: var(--site-green);
        }
        .site-tag.outline {
            background: transparent;
            border: 1px solid var(--site-line-strong);
        }
        .site-badge {
            display: inline-block;
            background: var(--site-yellow);
            color: var(--site-ink);
            font-size: 12px;
            font-weight: 800;
            letter-spacing: .04em;
            padding: 4px 10px;
            border-radius: 8px;
            line-height: 1.4;
        }

        /* ===== 分类页 Hero（与首页差异化） ===== */
        .category-hero {
            position: relative;
            padding: 90px 0 64px;
            min-height: 340px;
            background:
                radial-gradient(ellipse at 76% 32%, rgba(237, 182, 60, .18), transparent 52%),
                linear-gradient(118deg, #F7F0E1 0%, #FCF8EE 48%, #F0E6D6 100%);
            overflow: hidden;
            border-bottom: 1px solid rgba(59, 48, 20, .06);
        }
        .category-hero::after {
            content: "";
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-4.jpg');
            background-size: cover;
            background-position: center 30%;
            opacity: .14;
            mix-blend-mode: multiply;
            pointer-events: none;
        }
        .category-hero .aw {
            position: relative;
            z-index: 2;
        }
        .breadcrumb-simple {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: var(--site-ink-soft);
            margin-bottom: 20px;
            padding: 8px 16px;
            background: rgba(255,255,255,.5);
            backdrop-filter: blur(4px);
            border: 1px solid var(--site-line);
            border-radius: 999px;
            width: fit-content;
        }
        .breadcrumb-simple a {
            color: var(--site-ink);
            font-weight: 600;
        }
        .breadcrumb-simple a:hover {
            color: var(--site-yellow-deep);
        }
        .breadcrumb-simple .sep {
            color: var(--site-line-strong);
            font-size: 12px;
            margin: 0 3px;
        }
        .category-hero .h1-cat {
            font-size: clamp(2.2rem, 4vw, 3.6rem);
            font-weight: 900;
            line-height: 1.12;
            letter-spacing: -0.02em;
            margin: 10px 0 18px;
            color: var(--site-ink);
        }
        .category-hero .h1-cat span {
            color: var(--site-yellow-dark);
        }
        .category-hero .hero-desc-cat {
            font-size: 17px;
            color: var(--site-ink-soft);
            max-width: 700px;
            line-height: 1.8;
            margin-bottom: 0;
        }

        /* ===== 频道标签区 ===== */
        .channel-tabs {
            border-bottom: 1px solid var(--site-line);
            background: rgba(255, 255, 255, .6);
            backdrop-filter: blur(8px);
            position: sticky;
            top: 68px;
            z-index: 1020;
            padding: 14px 0;
        }
        .tab-scroll-x {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            scrollbar-width: thin;
            -webkit-overflow-scrolling: touch;
        }
        .tab-scroll-x::-webkit-scrollbar {
            height: 4px;
            background: transparent;
        }
        .tab-scroll-x::-webkit-scrollbar-thumb {
            background: rgba(217, 161, 43, .35);
            border-radius: 8px;
        }
        .cat-tab {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 18px;
            border-radius: 999px;
            font-size: 14px;
            font-weight: 600;
            color: var(--site-ink-soft);
            background: var(--site-bg);
            border: 1px solid var(--site-line);
            white-space: nowrap;
            transition: all .2s ease-out;
        }
        .cat-tab:hover {
            border-color: var(--site-yellow);
            color: var(--site-ink);
            background: #fffdf6;
        }
        .cat-tab.active {
            background: var(--site-yellow);
            border-color: var(--site-yellow);
            color: var(--site-ink);
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(237, 182, 60, .3);
        }

        /* ===== 列表布局 ===== */
        .cat-layout {
            padding: 72px 0 30px;
        }
        .feature-card {
            border-radius: var(--site-radius-lg);
            background: var(--site-bg-card);
            border: 1px solid var(--site-line);
            box-shadow: var(--site-shadow);
            overflow: hidden;
            margin-bottom: 32px;
            transition: all .3s ease-out;
        }
        .feature-card:hover {
            box-shadow: var(--site-shadow-hover);
            border-color: rgba(217, 161, 43, .3);
        }
        .feature-card .fc-inner {
            display: flex;
            flex-direction: column;
            height: 100%;
        }
        .feature-card .fc-body {
            padding: 30px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .feature-card .fc-img {
            min-height: 260px;
            height: 100%;
            background-size: cover;
            background-position: center;
            position: relative;
        }
        .feature-card .fc-img .img-shade {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 45%, rgba(30, 20, 5, .22) 100%);
        }
        .fc-body .fc-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }
        .fc-body h2 {
            font-size: clamp(1.3rem, 2vw, 1.7rem);
            font-weight: 800;
            letter-spacing: -0.01em;
            margin: 10px 0 12px;
        }
        .fc-body p {
            color: var(--site-ink-soft);
            margin-bottom: 18px;
            font-size: 15px;
        }
        .link-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 700;
            font-size: 15px;
            color: var(--site-ink);
        }
        .link-more i {
            transition: transform .25s ease-out;
        }
        .link-more:hover {
            color: var(--site-yellow-deep);
        }
        .link-more:hover i {
            transform: translateX(4px);
        }

        /* 常规条目卡片 */
        .item-card-row {
            display: flex;
            align-items: center;
            gap: 0;
            background: var(--site-bg-card);
            border: 1px solid var(--site-line);
            border-radius: var(--site-radius-md);
            overflow: hidden;
            transition: all .3s ease-out;
            height: 100%;
            margin-bottom: 0;
        }
        .item-card-row:hover {
            transform: translateY(-4px);
            box-shadow: var(--site-shadow-hover);
            border-color: rgba(217, 161, 43, .32);
        }
        .item-card-row .ic-img {
            width: 38%;
            min-height: 200px;
            background-size: cover;
            background-position: center;
        }
        .item-card-row .ic-body {
            width: 62%;
            padding: 24px;
        }
        .ic-body .ic-cat {
            font-size: 13px;
            font-weight: 700;
            color: var(--site-yellow-dark);
            letter-spacing: .03em;
        }
        .ic-body h3 {
            font-size: 18px;
            font-weight: 800;
            line-height: 1.4;
            margin: 8px 0 8px;
            transition: color .2s;
        }
        .item-card-row:hover .ic-body h3 {
            color: var(--site-yellow-dark);
        }
        .ic-body .ic-text {
            font-size: 14px;
            color: var(--site-ink-soft);
            margin-bottom: 14px;
            line-height: 1.7;
        }
        .ic-body .ic-link {
            font-size: 14px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--site-ink);
        }
        .ic-body .ic-link:hover {
            color: var(--site-yellow-dark);
        }

        /* ===== 侧栏 ===== */
        .cat-sidebar {
            padding-left: 28px;
        }
        .side-widget {
            background: var(--site-bg-card);
            border: 1px solid var(--site-line);
            border-radius: var(--site-radius-md);
            padding: 24px;
            margin-bottom: 24px;
        }
        .side-widget .side-title {
            font-size: 16px;
            font-weight: 800;
            margin-bottom: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            letter-spacing: -0.01em;
        }
        .side-widget .side-title i {
            color: var(--site-yellow-deep);
            font-size: 16px;
        }
        .side-search-box {
            display: flex;
            align-items: center;
            border: 1px solid var(--site-line-strong);
            background: var(--site-bg);
            border-radius: 14px;
            padding: 8px 14px;
            transition: border .2s;
        }
        .side-search-box i {
            color: #a8873d;
            font-size: 14px;
            margin-right: 8px;
        }
        .side-search-box input {
            flex: 1;
            border: none;
            background: transparent;
            outline: none;
            font-size: 14px;
            color: var(--site-ink);
        }
        .checklist-box {
            border-left: 4px solid var(--site-yellow);
            background: #fffcf2;
            border-radius: 12px;
            padding: 18px;
        }
        .checklist-box .check-title {
            font-weight: 800;
            font-size: 16px;
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .checklist-box ul {
            display: flex;
            flex-direction: column;
            gap: 9px;
            font-size: 14px;
            color: var(--site-ink);
        }
        .checklist-box li {
            display: flex;
            gap: 8px;
            align-items: flex-start;
        }
        .checklist-box i {
            color: var(--site-green);
            font-size: 13px;
            line-height: 1.9;
        }
        .tag-cloud .tags-inner {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .cloud-tag {
            background: var(--site-bg);
            border: 1px solid var(--site-line);
            border-radius: 999px;
            padding: 5px 12px;
            font-size: 13px;
            color: var(--site-ink-soft);
            transition: all .2s;
        }
        .cloud-tag:hover {
            background: var(--site-yellow);
            border-color: var(--site-yellow);
            color: var(--site-ink);
        }

        /* ===== 分类页尾部 FAQ ===== */
        .cat-faq-section {
            background: var(--site-bg-deep);
            border-radius: 44px;
            margin: 60px 0 0;
            padding: 80px 0;
        }
        .faq-accordion {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--site-bg-card);
            border-radius: var(--site-radius-md);
            border: 1px solid var(--site-line);
            margin-bottom: 12px;
            overflow: hidden;
            transition: box-shadow .2s, border-color .2s;
        }
        .faq-item:hover {
            border-color: rgba(217, 161, 43, .4);
        }
        .faq-q {
            width: 100%;
            justify-content: space-between;
            align-items: center;
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 700;
            gap: 16px;
            color: var(--site-ink);
            text-align: left;
        }
        .faq-q span {
            flex: 1;
        }
        .faq-q i {
            font-size: 15px;
            color: var(--site-yellow-dark);
            transition: transform .3s;
        }
        .faq-item.open .faq-q i {
            transform: rotate(180deg);
        }
        .faq-a {
            padding: 0 24px 20px;
            font-size: 15px;
            color: var(--site-ink-soft);
            line-height: 1.75;
            display: none;
        }
        .faq-item.open .faq-a {
            display: block;
        }

        /* ===== CTA ===== */
        .cat-cta-band {
            margin: 0 0 60px;
        }
        .cta-inner {
            border-radius: var(--site-radius-lg);
            position: relative;
            overflow: hidden;
            background: linear-gradient(100deg, #2f3a26 0%, #23382b 60%, #1b2b22 100%);
            padding: 56px 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 30px;
        }
        .cta-inner::before {
            content: "";
            position: absolute;
            right: 0;
            top: 0;
            width: 58%;
            height: 100%;
            background-image: url('/assets/images/backpic/back-1.jpg');
            background-size: cover;
            background-position: center;
            opacity: .2;
            mix-blend-mode: overlay;
        }
        .cta-text {
            position: relative;
            z-index: 2;
            color: #fdfaf3;
            max-width: 560px;
        }
        .cta-text h2 {
            font-size: clamp(1.7rem, 3.2vw, 2.5rem);
            font-weight: 800;
            line-height: 1.18;
            color: #fff;
            margin-bottom: 14px;
        }
        .cta-actions {
            position: relative;
            z-index: 2;
            flex-shrink: 0;
            display: flex;
            gap: 12px;
            align-items: center;
            flex-wrap: wrap;
        }

        /* ===== 页脚(共享) ===== */
        .site-footer {
            background: #f2ecdf;
            border-top: 1px solid rgba(59, 48, 20, .08);
            padding: 64px 0 24px;
            margin-top: 0;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1.2fr;
            gap: 40px;
            margin-bottom: 44px;
        }
        .footer-logo {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 20px;
            font-weight: 800;
            color: var(--site-ink);
        }
        .footer-logo i {
            color: var(--site-yellow-deep);
        }
        .footer-brand p {
            font-size: 15px;
            color: var(--site-ink-soft);
            margin-top: 14px;
            max-width: 380px;
            line-height: 1.8;
        }
        .footer-title {
            font-size: 15px;
            font-weight: 800;
            margin-bottom: 14px;
            letter-spacing: .02em;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-links a {
            color: var(--site-ink-soft);
            font-size: 15px;
            transition: color .2s;
        }
        .footer-links a:hover {
            color: var(--site-yellow-deep);
            padding-left: 4px;
        }
        .footer-contact p {
            font-size: 14px;
            color: var(--site-ink-soft);
            margin-bottom: 8px;
        }
        .footer-contact i {
            width: 20px;
            color: var(--site-yellow-dark);
        }
        .footer-bottom {
            border-top: 1px solid rgba(59, 48, 20, .08);
            padding-top: 22px;
            display: flex;
            justify-content: space-between;
            gap: 12px;
            flex-wrap: wrap;
            font-size: 13px;
            color: rgba(37, 29, 16, .6);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 991.98px) {
            .site-section {
                padding: 72px 0;
            }
            .cat-sidebar {
                padding-left: 0;
                margin-top: 24px;
            }
            .footer-grid {
                grid-template-columns: 1fr;
                gap: 30px;
            }
            .dock-links,
            .dock-actions .dock-search-label,
            .dock-actions .btn-dock {
                display: none;
            }
            .dock-toggle {
                display: inline-flex;
            }
            .dock-mobile-panel {
                display: block;
            }
            .main-content {
                padding-top: 74px;
            }
            .dock-nav {
                padding-left: 18px;
                padding-right: 10px;
            }
        }
        @media (min-width: 992px) {
            .dock-toggle {
                display: none !important;
            }
            .dock-mobile-panel {
                display: none !important;
            }
        }
        @media (max-width: 767.98px) {
            .aw {
                padding-left: 16px;
                padding-right: 16px;
            }
            .site-section {
                padding: 60px 0;
            }
            .category-hero {
                padding: 64px 0 48px;
                min-height: auto;
            }
            .category-hero .h1-cat {
                font-size: 2rem;
            }
            .feature-card .fc-body,
            .item-card-row .ic-body {
                padding: 20px;
            }
            .item-card-row {
                flex-direction: column;
            }
            .item-card-row .ic-img {
                width: 100%;
                min-height: 180px;
            }
            .item-card-row .ic-body {
                width: 100%;
            }
            .cta-inner {
                flex-direction: column;
                padding: 36px 24px;
                text-align: center;
            }
            .cta-actions {
                justify-content: center;
            }
            .cta-text h2 {
                font-size: 1.6rem;
            }
            .cat-faq-section {
                margin-top: 20px;
                padding: 50px 0;
                border-radius: 28px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: center;
                text-align: center;
            }
        }
        @media (max-width: 520px) {
            .ic-body h3 {
                font-size: 16px;
            }
            .ic-body .ic-text {
                font-size: 13px;
            }
            .checklist-box {
                padding: 14px;
            }
            .side-widget {
                padding: 18px;
            }
            .breadcrumb-simple {
                font-size: 13px;
            }
            .fc-body .fc-meta {
                font-size: 13px;
            }
        }
        @media (prefers-reduced-motion: reduce) {
            *,
            *::before,
            *::after {
                animation-duration: 0.01ms !important;
                transition-duration: 0.01ms !important;
                scroll-behavior: auto !important;
            }
        }

:root {
    --site-bg-card: #FFFFFF;
    --site-yellow-dark: #B8891E;
    --site-line-strong: rgba(59, 48, 20, .16);
}
.aw {
    width: 100%;
    max-width: 1320px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 28px;
    padding-right: 28px;
}
[id] {
    scroll-margin-top: 110px;
}
.dock-toggle {
    display: none;
    align-items: center;
    justify-content: center;
    width: 42px;
    height: 42px;
    border: 1px solid var(--site-line);
    background: var(--site-bg);
    border-radius: 999px;
    color: var(--site-ink);
    font-size: 17px;
    cursor: pointer;
    transition: border-color .25s ease-out, background .25s ease-out;
}
.dock-toggle:hover {
    border-color: var(--site-yellow);
    background: #fff;
}
.dock-search-label {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 8px 14px;
    border-radius: 999px;
    border: 1px solid var(--site-line);
    font-size: 14px;
    color: var(--site-ink-soft);
    cursor: default;
    transition: border-color .25s, background .25s;
}
.dock-search-label:hover {
    border-color: var(--site-yellow);
    background: var(--site-bg);
    color: var(--site-ink);
}
.dock-mobile-link {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 13px 16px;
    border-radius: 16px;
    font-weight: 600;
    font-size: 16px;
    color: var(--site-ink);
    transition: background .22s, color .22s;
}
.dock-mobile-link:hover,
.dock-mobile-link.active {
    background: var(--site-yellow);
    color: var(--site-ink);
}
.dock-mobile-search {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-top: 12px;
    padding: 11px 15px;
    border: 1px solid var(--site-line);
    border-radius: 16px;
    background: var(--site-bg);
}
.dock-mobile-search i {
    color: var(--site-yellow-dark);
}
.dock-mobile-search input {
    flex: 1;
    border: 0;
    background: transparent;
    outline: none;
    font-size: 15px;
    color: var(--site-ink);
}
.dock-mobile-panel {
    display: none;
    position: fixed;
    top: 80px;
    left: 16px;
    right: 16px;
    z-index: 1049;
    background: rgba(250, 246, 238, .97);
    -webkit-backdrop-filter: blur(20px) saturate(140%);
    backdrop-filter: blur(20px) saturate(140%);
    border: 1px solid var(--site-line);
    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(59, 48, 20, .16);
    padding: 16px;
    max-height: 62vh;
    overflow-y: auto;
}
#dockMobilePanel.open {
    display: block;
    animation: dockDropIn .28s ease-out;
}
@keyframes dockDropIn {
    from { opacity: 0; transform: translateY(-10px); }
    to { opacity: 1; transform: translateY(0); }
}
.btn-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--site-yellow);
    color: var(--site-ink);
    font-weight: 700;
    font-size: 16px;
    padding: 14px 30px;
    border-radius: 999px;
    border: none;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .18);
    transition: background .28s ease-out, transform .28s ease-out, box-shadow .28s ease-out;
}
.btn-main:hover {
    background: #F3C75D !important;
    color: var(--site-ink);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(0, 0, 0, .24);
}
.btn-main:active {
    transform: translateY(0);
}
.btn-light-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: rgba(255, 255, 255, .12);
    color: #fff;
    font-weight: 600;
    font-size: 15px;
    padding: 13px 26px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, .35);
    transition: background .25s ease-out, border-color .25s ease-out;
}
.btn-light-main:hover {
    background: rgba(255, 255, 255, .24);
    border-color: rgba(255, 255, 255, .6);
    color: #fff;
}
.eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--site-yellow-dark);
    margin-bottom: 6px;
}
@media (max-width: 991.98px) {
    .dock-actions .dock-search-label,
    .dock-actions .btn-dock {
        display: none;
    }
    .dock-toggle {
        display: inline-flex;
    }
    #dockMobilePanel:not(.open) {
        display: none !important;
    }
    #dockMobilePanel.open {
        display: block !important;
    }
}
@media (min-width: 992px) {
    .dock-toggle {
        display: none !important;
    }
    #dockMobilePanel {
        display: none !important;
    }
}
@media (max-width: 767.98px) {
    .aw {
        padding-left: 16px;
        padding-right: 16px;
    }
    .btn-main,
    .btn-light-main {
        width: 100%;
    }
}

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
