/* roulang page: index */
:root {
            --primary: #9c3e63;
            --primary-dark: #7a2d4c;
            --accent: #d98fa8;
            --accent-soft: #fbf0f3;
            --gold: #c9a57d;
            --gold-soft: #f5e8d7;
            --bg: #faf7f4;
            --dark: #21161c;
            --body: #332c30;
            --muted: #8a7e82;
            --line: #ead9de;
            --line-soft: #ede1e1;
            --white: #ffffff;
            --radius-card: 16px;
            --radius-pill: 999px;
            --shadow-card: 0 6px 20px rgba(124, 45, 77, 0.05);
            --shadow-lift: 0 16px 40px rgba(124, 45, 77, 0.08);
            --section-space: 96px;
            --container: 1200px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            margin: 0;
            font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
            background: var(--bg);
            color: var(--body);
            font-size: 16px;
            line-height: 1.75;
            overflow-x: hidden;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            color: var(--primary);
            text-decoration: none;
            transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
        }

        a:hover {
            color: var(--primary-dark);
        }

        ul,
        ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        button {
            cursor: pointer;
        }

        .row {
            max-width: var(--container);
        }

        .columns {
            position: relative;
        }

        section {
            scroll-margin-top: 96px;
        }

        h1,
        h2,
        h3,
        h4 {
            color: var(--body);
            line-height: 1.3;
            margin-top: 0;
            font-weight: 700;
        }

        h1 {
            font-size: clamp(34px, 4.4vw, 54px);
            letter-spacing: -0.02em;
        }

        h2 {
            font-size: clamp(28px, 3vw, 38px);
            letter-spacing: -0.02em;
        }

        h3 {
            font-size: 22px;
            line-height: 1.45;
        }

        .section {
            padding-top: var(--section-space);
            padding-bottom: var(--section-space);
        }

        .section-sm {
            padding-top: 64px;
            padding-bottom: 64px;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            font-weight: 600;
            letter-spacing: .14em;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--accent-soft);
            border: 1px solid var(--line);
            padding: 6px 14px;
            border-radius: var(--radius-pill);
        }

        .section-head {
            margin-bottom: 44px;
        }

        .section-head .section-lead {
            max-width: 720px;
            color: var(--muted);
            font-size: 16px;
            margin-top: 14px;
            margin-bottom: 0;
        }

        .text-muted {
            color: var(--muted);
        }

        .text-link {
            color: var(--primary);
            font-weight: 600;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            transition: .2s ease;
        }

        .text-link:hover {
            color: var(--primary-dark);
        }

        .text-link i {
            transition: transform .2s ease;
        }

        .text-link:hover i {
            transform: translateX(4px);
        }

        .btn {
            height: 48px;
            padding: 0 26px;
            border-radius: var(--radius-pill);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 10px;
            background: transparent;
            border: 0;
            font-size: 15px;
            font-weight: 600;
            color: var(--body);
            text-decoration: none;
            cursor: pointer;
            transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
            line-height: 1;
        }

        .btn:focus-visible {
            outline: 3px solid rgba(156, 62, 99, .35);
            outline-offset: 3px;
        }

        .btn-primary {
            background: var(--primary);
            color: #fff;
        }

        .btn-primary:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 14px 30px rgba(122, 45, 76, .22);
        }

        .btn-primary:active {
            transform: translateY(0);
            box-shadow: none;
        }

        .btn-ghost {
            border: 1.5px solid rgba(255, 255, 255, .8);
            color: #fff;
            background: rgba(255, 255, 255, .06);
            backdrop-filter: blur(4px);
        }

        .btn-ghost:hover {
            border-color: var(--gold);
            color: var(--gold);
            background: rgba(201, 165, 125, .12);
        }

        .btn-gold {
            background: var(--gold);
            color: var(--dark);
        }

        .btn-gold:hover {
            background: #d9a97e;
            color: var(--dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 22px rgba(201, 165, 125, .35);
        }

        .btn-sm {
            height: 40px;
            padding: 0 20px;
            font-size: 14px;
        }

        .btn-lg {
            height: 54px;
            padding: 0 34px;
            font-size: 16px;
        }

        .btn-block {
            width: 100%;
        }

        .badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 22px;
            height: 22px;
            padding: 0 6px;
            border-radius: var(--radius-pill);
            background: var(--gold);
            color: var(--dark);
            font-size: 12px;
            font-weight: 700;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            height: 28px;
            padding: 0 12px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 600;
            background: var(--accent-soft);
            color: var(--primary);
            border: 1px solid var(--line);
            line-height: 1;
        }

        .tag-light {
            background: rgba(255, 255, 255, .16);
            border-color: rgba(255, 255, 255, .3);
            color: #fff;
        }

        .tag-gold {
            background: var(--gold-soft);
            color: #8c6843;
            border-color: rgba(201, 165, 125, .3);
        }

        /* ============ topbar ============ */
        .topbar {
            background: var(--dark);
            min-height: 38px;
            color: rgba(255, 255, 255, .85);
            font-size: 13px;
            display: flex;
            align-items: center;
        }

        .topbar .row {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            min-height: 38px;
            width: 100%;
        }

        .topbar__left {
            display: flex;
            align-items: center;
            gap: 10px;
            min-width: 0;
        }

        .topbar__dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--gold);
            flex: none;
        }

        .topbar__text {
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
            max-width: 78vw;
        }

        .topbar__left a {
            color: #fff;
            font-weight: 600;
            border-bottom: 1px solid rgba(255, 255, 255, .3);
            line-height: 1.4;
            flex: none;
        }

        .topbar__left a:hover {
            color: var(--accent);
        }

        .topbar__right {
            display: flex;
            gap: 18px;
            flex: none;
        }

        .topbar__right a {
            color: rgba(255, 255, 255, .8);
        }

        .topbar__right a:hover {
            color: var(--accent);
        }

        /* ============ header ============ */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 100;
            background: rgba(250, 247, 244, .92);
            backdrop-filter: blur(12px);
            box-shadow: 0 1px 0 rgba(122, 45, 76, .08);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 22px;
            height: 72px;
            width: 100%;
        }

        .brand {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            flex: none;
            text-decoration: none;
        }

        .brand__mark {
            width: 40px;
            height: 40px;
            border-radius: 14px;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 19px;
            box-shadow: 0 10px 18px rgba(122, 45, 76, .16);
            line-height: 1;
        }

        .brand__name {
            font-size: 23px;
            font-weight: 800;
            color: var(--primary-dark);
            letter-spacing: .02em;
            line-height: 1.1;
        }

        .brand__sub {
            display: block;
            font-size: 11px;
            color: var(--muted);
            font-weight: 500;
            letter-spacing: .1em;
        }

        .site-nav {
            display: flex;
            align-items: center;
            gap: 4px;
            margin-left: 8px;
        }

        .site-nav .nav-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 16px;
            border-radius: var(--radius-pill);
            color: var(--body);
            font-weight: 500;
            font-size: 15px;
            position: relative;
            line-height: 1;
        }

        .site-nav .nav-link:hover {
            color: var(--primary);
            background: var(--accent-soft);
        }

        .site-nav .nav-link.active {
            color: var(--primary);
            font-weight: 600;
            background: var(--accent-soft);
        }

        .site-nav .nav-link.active::after {
            content: "";
            position: absolute;
            left: 18px;
            right: 18px;
            bottom: 4px;
            height: 2px;
            border-radius: 2px;
            background: var(--primary);
        }

        .has-dropdown {
            position: relative;
        }

        .dropdown-panel {
            position: absolute;
            top: calc(100% + 8px);
            left: 10px;
            min-width: 260px;
            background: var(--white);
            border: 1px solid var(--line-soft);
            border-radius: 16px;
            box-shadow: var(--shadow-lift);
            padding: 10px;
            opacity: 0;
            pointer-events: none;
            transform: translateY(6px);
            transition: .2s ease;
            z-index: 20;
        }

        .has-dropdown:hover .dropdown-panel,
        .has-dropdown:focus-within .dropdown-panel {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .dropdown-panel .dropdown-link {
            display: flex;
            flex-direction: column;
            gap: 4px;
            padding: 12px 14px;
            border-radius: 12px;
            color: var(--body);
            text-decoration: none;
        }

        .dropdown-panel .dropdown-link:hover {
            background: var(--accent-soft);
            color: var(--primary-dark);
        }

        .dropdown-link b {
            font-size: 15px;
        }

        .dropdown-link small {
            color: var(--muted);
            font-size: 13px;
            line-height: 1.5;
        }

        .nav-tools {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
        }

        .nav-search {
            display: flex;
            align-items: center;
            background: #fff;
            border: 1px solid var(--line);
            border-radius: var(--radius-pill);
            height: 42px;
            padding: 0 6px 0 18px;
            gap: 6px;
            transition: .2s ease;
            width: 210px;
        }

        .nav-search:focus-within {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(156, 62, 99, .08);
        }

        .nav-search input {
            border: 0;
            outline: none;
            background: transparent;
            width: 100%;
            font-size: 14px;
        }

        .nav-search button {
            border: 0;
            background: var(--primary);
            color: #fff;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: background .2s ease;
            flex: none;
        }

        .nav-search button:hover {
            background: var(--primary-dark);
        }

        .nav-icon-btn {
            position: relative;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: transparent;
            border: 0;
            color: var(--body);
            font-size: 17px;
            transition: .2s ease;
            text-decoration: none;
        }

        .nav-icon-btn:hover {
            background: var(--accent-soft);
            color: var(--primary);
        }

        .nav-icon-btn .badge {
            position: absolute;
            top: -2px;
            right: -2px;
            min-width: 17px;
            height: 17px;
            font-size: 10px;
        }

        .nav-cta {
            margin-left: 4px;
        }

        .menu-toggle {
            display: none;
            width: 44px;
            height: 44px;
            border: 0;
            background: var(--accent-soft);
            border-radius: 50%;
            align-items: center;
            justify-content: center;
            color: var(--primary-dark);
            font-size: 18px;
            transition: .2s ease;
        }

        .menu-toggle:hover {
            background: var(--primary);
            color: #fff;
        }

        /* mobile drawer */
        .drawer-backdrop {
            position: fixed;
            inset: 0;
            background: rgba(33, 22, 28, .48);
            z-index: 180;
            opacity: 0;
            pointer-events: none;
            transition: .25s ease;
        }

        .drawer-backdrop.is-show {
            opacity: 1;
            pointer-events: auto;
        }

        .mobile-drawer {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: min(86vw, 360px);
            background: var(--white);
            z-index: 200;
            transform: translateX(100%);
            transition: transform .28s ease;
            box-shadow: -20px 0 50px rgba(33, 22, 28, .12);
            display: flex;
            flex-direction: column;
            overflow-y: auto;
        }

        .mobile-drawer.is-open {
            transform: translateX(0);
        }

        .mobile-drawer__head {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 18px 18px 10px;
        }

        .mobile-drawer__close {
            width: 38px;
            height: 38px;
            border-radius: 50%;
            border: 0;
            background: var(--accent-soft);
            color: var(--primary-dark);
            font-size: 15px;
            display: flex;
            align-items: center;
            justify-content: center;
            transition: .2s;
        }

        .mobile-drawer__body {
            padding: 8px 18px 32px;
        }

        .mobile-drawer__body form {
            margin: 20px 0;
            position: relative;
        }

        .mobile-drawer__body .search-input {
            width: 100%;
            height: 44px;
            border-radius: var(--radius-pill);
            border: 1px solid var(--line);
            background: var(--bg);
            padding: 0 22px 0 44px;
            outline: none;
        }

        .mobile-drawer__body .search-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(156, 62, 99, .06);
        }

        .mobile-drawer__body form i {
            position: absolute;
            left: 18px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--muted);
        }

        .m-nav-link {
            display: block;
            padding: 13px 12px;
            border-radius: 12px;
            color: var(--body);
            font-weight: 500;
            margin-bottom: 4px;
            font-size: 16px;
        }

        .m-nav-link:hover,
        .m-nav-link.active {
            background: var(--accent-soft);
            color: var(--primary-dark);
        }

        .mobile-drawer__btn {
            margin-top: 16px;
        }

        .mobile-drawer__note {
            margin-top: 18px;
            padding: 12px 14px;
            background: var(--accent-soft);
            border-radius: 14px;
            color: var(--primary-dark);
            font-size: 13px;
            line-height: 1.65;
        }

        /* ============ hero ============ */
        .hero-section {
            position: relative;
            padding: 118px 0 104px;
            color: #fff;
            background: linear-gradient(90deg, rgba(33, 22, 28, .72), rgba(122, 45, 76, .55)),
                url('/assets/images/backpic/back-1.jpg') center / cover no-repeat;
            overflow: hidden;
        }

        .hero-section::before {
            content: "";
            position: absolute;
            left: -180px;
            bottom: -220px;
            width: 500px;
            height: 500px;
            border-radius: 50%;
            border: 60px solid rgba(255, 255, 255, .04);
        }

        .hero-section::after {
            content: "";
            position: absolute;
            right: -100px;
            top: -100px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(217, 143, 168, .16), transparent 70%);
        }

        .hero-copy,
        .hero-coupon {
            position: relative;
            z-index: 2;
        }

        .hero-eyebrow {
            color: rgba(255, 255, 255, .92);
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 8px 16px;
            border: 1px solid rgba(255, 255, 255, .25);
            background: rgba(255, 255, 255, .08);
            border-radius: var(--radius-pill);
            margin-bottom: 24px;
        }

        .hero-eyebrow .dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--gold);
            animation: pulse 2s infinite;
        }

        @keyframes pulse {
            0% {
                box-shadow: 0 0 0 0 rgba(201, 165, 125, .5);
            }

            50% {
                box-shadow: 0 0 0 10px rgba(201, 165, 125, 0);
            }

            100% {
                box-shadow: 0 0 0 0 rgba(201, 165, 125, 0);
            }
        }

        .hero-copy h1 {
            color: #fff;
            margin: 0 0 22px;
            max-width: 620px;
        }

        .hero-desc {
            color: rgba(255, 255, 255, .88);
            font-size: 17px;
            margin: 0 0 30px;
            max-width: 570px;
            line-height: 1.9;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 36px;
        }

        .hero-trust {
            display: flex;
            flex-wrap: wrap;
            gap: 22px;
            color: rgba(255, 255, 255, .84);
            font-size: 14px;
        }

        .hero-trust span {
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .hero-trust i {
            color: var(--gold);
        }

        /* coupon */
        .hero-coupon {
            display: flex;
            justify-content: flex-end;
        }

        .coupon-card {
            position: relative;
            background: #fff;
            color: var(--body);
            border-radius: 24px;
            width: 100%;
            max-width: 430px;
            padding: 32px 30px 30px;
            box-shadow: 0 30px 68px rgba(33, 22, 28, .24);
            overflow: hidden;
        }

        .coupon-card::before,
        .coupon-card::after {
            content: "";
            position: absolute;
            left: -12px;
            width: 24px;
            height: 24px;
            border-radius: 50%;
            background: var(--primary-dark);
        }

        .coupon-card::before {
            top: 118px;
        }

        .coupon-card::after {
            bottom: 118px;
        }

        .coupon-card__top {
            display: flex;
            justify-content: space-between;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
        }

        .coupon-card__flag {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            background: var(--accent-soft);
            padding: 5px 14px;
            border-radius: var(--radius-pill);
        }

        .coupon-card__brand {
            font-size: 12px;
            color: var(--muted);
        }

        .coupon-card__main {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 14px;
            gap: 16px;
        }

        .coupon-card__label {
            font-size: 14px;
            color: var(--muted);
            font-weight: 500;
        }

        .coupon-card__price {
            color: var(--primary-dark);
        }

        .coupon-card__price strong {
            font-size: 54px;
            line-height: 1;
            font-weight: 800;
            color: var(--primary-dark);
        }

        .coupon-card__price span {
            margin-left: 8px;
            font-size: 15px;
            color: var(--muted);
            display: inline-block;
            vertical-align: middle;
        }

        .coupon-card__dotted {
            border-top: 2px dashed var(--line);
            position: relative;
            margin: 10px 0 18px;
        }

        .coupon-card__dotted span {
            position: absolute;
            right: 0;
            top: -12px;
            background: var(--accent-soft);
            color: var(--primary);
            font-size: 11px;
            font-weight: 700;
            padding: 3px 10px;
            border-radius: 20px;
        }

        .coupon-card__note {
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 22px;
            line-height: 1.6;
        }

        .coupon-card .btn {
            width: 100%;
        }

        .coupon-stock {
            display: flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            color: var(--muted);
            margin-top: 16px;
        }

        .coupon-stock .bar {
            height: 6px;
            border-radius: 8px;
            background: #f2e8e0;
            flex: 1;
            max-width: 110px;
            overflow: hidden;
        }

        .coupon-stock .bar i {
            display: block;
            width: 62%;
            height: 100%;
            border-radius: 8px;
            background: var(--gold);
        }

        /* ============ brand story ============ */
        .brand-section {
            position: relative;
        }

        .brand-media {
            position: relative;
        }

        .brand-media .brand-img {
            border-radius: 24px;
            overflow: hidden;
            box-shadow: var(--shadow-lift);
        }

        .brand-media .brand-img img {
            width: 100%;
            height: 440px;
            object-fit: cover;
        }

        .brand-story__card {
            position: absolute;
            right: -20px;
            bottom: 28px;
            background: var(--white);
            border-radius: 18px;
            box-shadow: var(--shadow-lift);
            padding: 18px 22px;
            display: flex;
            align-items: center;
            gap: 14px;
            border: 1px solid var(--line-soft);
            max-width: 270px;
        }

        .brand-story__card i {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
        }

        .brand-story__card b {
            color: var(--primary-dark);
            font-size: 16px;
        }

        .brand-story__card span {
            display: block;
            font-size: 12px;
            color: var(--muted);
            line-height: 1.4;
        }

        .brand-copy .section-label {
            margin-bottom: 18px;
        }

        .brand-copy h2 {
            margin-bottom: 20px;
        }

        .brand-copy p {
            color: var(--muted);
            line-height: 1.9;
            margin-bottom: 24px;
            max-width: 560px;
        }

        .brand-points {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 14px;
            margin-bottom: 30px;
            max-width: 560px;
        }

        .brand-points .point {
            display: flex;
            gap: 12px;
            background: var(--white);
            border: 1px solid var(--line-soft);
            border-radius: 14px;
            padding: 14px 16px;
            align-items: flex-start;
            transition: .2s ease;
        }

        .brand-points .point:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-card);
        }

        .brand-points .point i {
            color: var(--primary);
            font-size: 16px;
            margin-top: 4px;
        }

        .brand-points .point b {
            display: block;
            color: var(--body);
            font-size: 14px;
        }

        .brand-points .point small {
            color: var(--muted);
            font-size: 12px;
            line-height: 1.5;
            display: block;
        }

        /* ============ featured picks ============ */
        .featured-picks {
            background: #fff;
            border-top: 1px solid var(--line-soft);
            border-bottom: 1px solid var(--line-soft);
        }

        .feature-card {
            display: block;
            position: relative;
            border-radius: 22px;
            overflow: hidden;
            min-height: 380px;
            background: var(--dark);
            text-decoration: none;
            transition: .3s ease;
            box-shadow: var(--shadow-card);
        }

        .feature-card__img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .feature-card:hover .feature-card__img {
            transform: scale(1.04);
        }

        .feature-card__content {
            position: absolute;
            left: 22px;
            right: 22px;
            bottom: 22px;
            background: linear-gradient(0deg, rgba(33, 22, 28, .78) 0%, rgba(33, 22, 28, 0) 100%);
            border-radius: 0 0 20px 20px;
            padding: 40px 18px 18px;
            color: #fff;
        }

        .feature-card .tag {
            margin-bottom: 12px;
        }

        .feature-card__content h3 {
            color: #fff;
            margin: 10px 0 8px;
            font-size: 21px;
        }

        .feature-card__content p {
            color: rgba(255, 255, 255, .82);
            font-size: 14px;
            margin-bottom: 12px;
        }

        .feature-card__link {
            color: #fff;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
        }

        .feature-card__link i {
            transition: transform .2s ease;
        }

        .feature-card:hover .feature-card__link i {
            transform: translateX(5px);
        }

        .mini-feature {
            display: flex;
            background: var(--white);
            border: 1px solid var(--line-soft);
            border-radius: 18px;
            padding: 10px;
            overflow: hidden;
            gap: 14px;
            margin-bottom: 16px;
            text-decoration: none;
            transition: .2s ease;
            align-items: stretch;
            min-height: 132px;
        }

        .mini-feature:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-lift);
        }

        .mini-feature__img {
            flex: none;
            width: 112px;
            border-radius: 12px;
            overflow: hidden;
            background: var(--accent-soft);
        }

        .mini-feature__img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .mini-feature__text {
            display: flex;
            flex-direction: column;
            justify-content: center;
            min-width: 0;
            padding-right: 6px;
        }

        .mini-feature__text .tag {
            align-self: flex-start;
            margin-bottom: 6px;
            height: 22px;
            padding: 0 10px;
            font-size: 11px;
        }

        .mini-feature__text h4 {
            font-size: 15px;
            line-height: 1.45;
            margin: 0 0 6px;
            color: var(--body);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .mini-feature__text small {
            color: var(--muted);
            font-size: 12px;
        }

        .featured-actions {
            text-align: center;
            margin-top: 34px;
        }

        /* ============ voices ============ */
        .voices-section {
            background: var(--bg);
        }

        .voice-card {
            background: var(--white);
            border: 1px solid var(--line-soft);
            border-radius: 20px;
            padding: 28px;
            position: relative;
            height: 100%;
            transition: .25s ease;
        }

        .voice-card:hover {
            box-shadow: var(--shadow-lift);
            transform: translateY(-3px);
        }

        .voice-card::before {
            content: "";
            position: absolute;
            left: 26px;
            bottom: -10px;
            width: 20px;
            height: 20px;
            border-left: 1px solid var(--line-soft);
            border-bottom: 1px solid var(--line-soft);
            background: var(--white);
            transform: rotate(-45deg);
            border-radius: 0 0 0 4px;
        }

        .voice-card__head {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }

        .voice-card .stars {
            color: var(--gold);
            font-size: 13px;
            letter-spacing: 3px;
        }

        .voice-card__avatar i {
            font-size: 22px;
            color: var(--accent);
        }

        .voice-card p {
            color: var(--body);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 18px;
            min-height: 130px;
        }

        .voice-card__user {
            border-top: 1px dashed var(--line);
            padding-top: 14px;
            display: flex;
            gap: 12px;
            align-items: center;
        }

        .voice-card__user .cu {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--primary), var(--primary-dark));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
        }

        .voice-card__user b {
            display: block;
            font-size: 14px;
            color: var(--body);
        }

        .voice-card__user span {
            color: var(--muted);
            font-size: 12px;
        }

        /* ============ news ============ */
        .news-section {
            background: #fff;
            border-top: 1px solid var(--line-soft);
            border-bottom: 1px solid var(--line-soft);
        }

        .news-list {
            display: flex;
            flex-direction: column;
        }

        .news-item {
            display: block;
            padding: 22px 0;
            border-bottom: 1px solid var(--line-soft);
            transition: .2s ease;
            border-radius: 8px;
        }

        .news-item:first-child {
            padding-top: 0;
        }

        .news-item:hover h3 {
            color: var(--primary);
        }

        .news-item__meta {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 13px;
            color: var(--muted);
            margin-bottom: 6px;
            flex-wrap: wrap;
        }

        .news-item__meta .dot-divider {
            width: 4px;
            height: 4px;
            background: var(--accent);
            border-radius: 50%;
        }

        .news-item h3 {
            font-size: 19px;
            margin: 0 0 6px;
            line-height: 1.5;
            transition: color .2s;
        }

        .news-item p {
            color: var(--muted);
            margin: 0;
            font-size: 15px;
            line-height: 1.7;
            max-width: 680px;
        }

        .news-list-footer {
            margin-top: 18px;
        }

        .widget {
            background: var(--bg);
            border: 1px solid var(--line-soft);
            border-radius: 20px;
            padding: 22px;
            margin-bottom: 20px;
        }

        .widget__title {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 14px;
            padding-bottom: 12px;
            border-bottom: 1px dashed var(--line);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .widget__title i {
            color: var(--primary);
            font-size: 15px;
        }

        .hot-tags {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .hot-tags a {
            height: 34px;
            padding: 0 14px;
            border-radius: var(--radius-pill);
            background: var(--white);
            border: 1px solid var(--line);
            color: var(--body);
            font-size: 13px;
            display: inline-flex;
            align-items: center;
            transition: .2s;
        }

        .hot-tags a:hover {
            border-color: var(--primary);
            background: var(--accent-soft);
            color: var(--primary-dark);
        }

        .recent-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .recent-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: var(--body);
            line-height: 1.4;
        }

        .recent-item:hover {
            color: var(--primary);
        }

        .recent-item i {
            color: var(--accent);
            font-size: 10px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--accent-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            flex: none;
        }

        /* ============ faq ============ */
        .faq-section {
            background: var(--accent-soft);
        }

        .faq-layout {
            display: flex;
            gap: 36px;
            align-items: flex-start;
        }

        .faq-intro {
            flex: 0 0 34%;
            position: sticky;
            top: 120px;
        }

        .faq-intro h2 {
            font-size: 32px;
            margin: 16px 0;
        }

        .faq-intro p {
            color: var(--muted);
            margin-bottom: 24px;
        }

        .faq-intro .btn {
            margin-bottom: 10px;
        }

        .faq-accordion {
            flex: 1;
        }

        .accordion {
            list-style: none;
            margin: 0;
            padding: 0;
            background: transparent;
            border: 0;
        }

        .accordion .accordion-item {
            list-style: none;
            background: var(--white);
            border: 1px solid var(--line-soft) !important;
            border-radius: 16px;
            margin-bottom: 12px;
            overflow: hidden;
            transition: box-shadow .2s ease;
        }

        .accordion .accordion-item.is-active {
            border-color: rgba(156, 62, 99, .35) !important;
            box-shadow: var(--shadow-card);
        }

        .accordion .accordion-title {
            border: 0;
            background: transparent;
            color: var(--body);
            font-size: 16px;
            font-weight: 600;
            padding: 20px 58px 20px 24px;
            display: flex;
            align-items: center;
            line-height: 1.5;
            min-height: 58px;
            box-shadow: none !important;
            position: relative;
        }

        .accordion .accordion-title:hover {
            background: #fff8f8;
            color: var(--primary);
        }

        .accordion .accordion-title::after {
            content: "+";
            position: absolute;
            right: 20px;
            top: 50%;
            transform: translateY(-50%);
            width: 30px;
            height: 30px;
            border-radius: 50%;
            background: var(--accent-soft);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 500;
            line-height: 1;
            transition: transform .2s ease, background .2s ease, color .2s ease;
        }

        .accordion .accordion-item.is-active .accordion-title::after {
            transform: translateY(-50%) rotate(45deg);
            background: var(--primary);
            color: #fff;
        }

        .accordion-content {
            border: 0;
            background: var(--white);
            padding: 4px 28px 24px 24px;
            color: var(--muted);
            font-size: 15px;
            line-height: 1.85;
        }

        .accordion .accordion-content {
            border-bottom: 0;
        }

        .faq-layout .faq-more {
            margin-top: 16px;
        }

        /* ============ subscribe CTA ============ */
        .subscribe-section {
            position: relative;
            background: linear-gradient(105deg, rgba(33, 22, 28, .96), rgba(122, 45, 76, .78)),
                url('/assets/images/backpic/back-3.jpg') center / cover;
            color: #fff;
            overflow: hidden;
            padding: 96px 0;
        }

        .subscribe-section::before {
            content: "";
            position: absolute;
            right: -160px;
            top: -160px;
            width: 420px;
            height: 420px;
            border-radius: 50%;
            border: 80px solid rgba(201, 165, 125, .1);
        }

        .subscribe-section .row {
            position: relative;
            z-index: 2;
        }

        .subscribe-copy h2 {
            color: #fff;
            margin-bottom: 18px;
            max-width: 520px;
        }

        .subscribe-copy p {
            color: rgba(255, 255, 255, .82);
            max-width: 560px;
            font-size: 17px;
            line-height: 1.85;
            margin: 0;
        }

        .subscribe-form {
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .18);
            backdrop-filter: blur(8px);
            border-radius: 22px;
            padding: 28px;
        }

        .subscribe-form__title {
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .subscribe-form input {
            width: 100%;
            height: 50px;
            border-radius: var(--radius-pill);
            border: 1px solid rgba(255, 255, 255, .3);
            background: rgba(255, 255, 255, .12);
            color: #fff;
            padding: 0 22px;
            margin-bottom: 14px;
            outline: none;
            transition: .2s ease;
        }

        .subscribe-form input:focus {
            border-color: var(--gold);
            box-shadow: 0 0 0 4px rgba(201, 165, 125, .15);
            background: rgba(255, 255, 255, .16);
        }

        .subscribe-form input::placeholder {
            color: rgba(255, 255, 255, .55);
        }

        .subscribe-form .btn {
            width: 100%;
        }

        .subscribe-form .privacy {
            margin-top: 12px;
            font-size: 12px;
            color: rgba(255, 255, 255, .55);
            text-align: center;
        }

        .subscribe-perks {
            display: flex;
            gap: 22px;
            margin-top: 22px;
            flex-wrap: wrap;
            color: rgba(255, 255, 255, .75);
            font-size: 14px;
        }

        .subscribe-perks span {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .subscribe-perks i {
            color: var(--gold);
        }

        /* ============ footer ============ */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, .68);
            font-size: 14px;
            line-height: 1.7;
        }

        .footer-top {
            padding: 68px 0 34px;
        }

        .footer-brand .brand__name {
            color: #fff;
        }

        .footer-brand .brand__sub {
            color: rgba(255, 255, 255, .52);
        }

        .footer-brand p {
            margin-top: 16px;
            max-width: 400px;
            font-size: 13px;
            color: rgba(255, 255, 255, .52);
        }

        .footer-columns {
            display: flex;
            gap: 20px;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .footer-col {
            min-width: 130px;
        }

        .footer-col h4 {
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: .02em;
        }

        .footer-col a {
            display: block;
            padding: 6px 0;
            color: rgba(255, 255, 255, .62);
            font-size: 14px;
            text-decoration: none;
        }

        .footer-col a:hover {
            color: var(--accent);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding: 22px 0;
            font-size: 13px;
        }

        .footer-bottom .row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            width: 100%;
        }

        .footer-bottom .status {
            display: inline-flex;
            align-items: center;
            gap: 7px;
            color: rgba(255, 255, 255, .56);
        }

        .footer-bottom .status i {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: #66bb7a;
            box-shadow: 0 0 0 4px rgba(102, 187, 122, .15);
        }

        /* toast */
        .toast {
            position: fixed;
            left: 50%;
            bottom: 26px;
            transform: translateX(-50%) translateY(80px);
            background: var(--primary-dark);
            color: #fff;
            padding: 12px 24px;
            border-radius: var(--radius-pill);
            box-shadow: var(--shadow-lift);
            z-index: 500;
            font-size: 14px;
            font-weight: 600;
            opacity: 0;
            transition: .35s ease;
            pointer-events: none;
            white-space: nowrap;
        }

        .toast.is-visible {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
        }

        /* responsive */
        @media (max-width: 1080px) {
            .site-nav .nav-link {
                padding: 10px 10px;
                font-size: 14px;
            }

            .nav-search {
                width: 160px;
            }

            .brand__sub {
                display: none;
            }
        }

        @media (max-width: 860px) {
            :root {
                --section-space: 72px;
            }

            .site-nav {
                display: none;
            }

            .nav-search {
                display: none;
            }

            .menu-toggle {
                display: inline-flex;
            }

            .nav-cta {
                display: none;
            }

            .header-inner {
                gap: 12px;
            }

            .nav-icon-btn {
                display: none;
            }

            .menu-toggle {
                display: inline-flex;
            }

            .hero-section {
                padding: 74px 0 68px;
            }

            .hero-coupon {
                justify-content: center;
                margin-top: 44px;
            }

            .faq-layout {
                flex-direction: column;
                gap: 24px;
            }

            .faq-intro {
                position: static;
            }

            .footer-columns {
                padding-top: 20px;
            }

            .brand-story__card {
                right: 12px;
                bottom: -18px;
            }
        }

        @media (max-width: 640px) {
            :root {
                --section-space: 56px;
            }

            .header-inner {
                height: 64px;
            }

            .brand__name {
                font-size: 20px;
            }

            .topbar__right {
                display: none;
            }

            .topbar__left {
                width: 100%;
            }

            .hero-copy h1 {
                font-size: 32px;
            }

            .brand-points {
                grid-template-columns: 1fr;
            }

            .brand-media .brand-img img {
                height: 320px;
            }

            .feature-card {
                min-height: 320px;
            }

            .mini-feature {
                min-height: 128px;
            }

            .footer-bottom .row {
                justify-content: center;
                text-align: center;
            }

            .toast {
                white-space: normal;
                width: calc(100% - 36px);
                text-align: center;
            }
        }

        @media (max-width: 480px) {
            .brand__sub {
                display: none;
            }

            .hero-desc {
                font-size: 15px;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .voice-card p {
                min-height: 0;
            }
        }

/* roulang page: category1 */
:root {
  --primary: #9c3e63;
  --primary-dark: #7a2d4c;
  --accent: #d98fa8;
  --accent-soft: #fbf0f3;
  --gold: #c9a57d;
  --gold-soft: #f5e8d7;
  --bg: #faf7f4;
  --dark: #21161c;
  --body: #332c30;
  --muted: #8a7e82;
  --line: #ead9de;
  --line-soft: #ede1e1;
  --white: #ffffff;
  --radius-card: 16px;
  --radius-pill: 999px;
  --shadow-card: 0 6px 20px rgba(124, 45, 77, 0.05);
  --shadow-lift: 0 16px 40px rgba(124, 45, 77, 0.08);
  --section-space: 96px;
  --container: 1200px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  font-family: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", sans-serif;
  background: var(--bg);
  color: var(--body);
  font-size: 16px;
  line-height: 1.75;
  overflow-x: hidden;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: color .2s ease, background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease; }
a:hover { color: var(--primary-dark); }
button, input, select, textarea { font-family: inherit; font-size: inherit; line-height: inherit; }
button { cursor: pointer; }
h1, h2, h3, h4 { line-height: 1.3; margin: 0 0 0.5rem; color: var(--dark); }
.row { max-width: var(--container); }
.columns { position: relative; }
section { scroll-margin-top: 92px; }
.section { padding-top: var(--section-space); padding-bottom: var(--section-space); }
.section-sm { padding-top: 64px; padding-bottom: 64px; }
.text-muted { color: var(--muted); }
.section-label {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  font-weight: 600;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--primary);
  background: var(--accent-soft);
  border: 1px solid var(--line);
  padding: 6px 14px;
  border-radius: var(--radius-pill);
}
.text-link { color: var(--primary); font-weight: 600; display: inline-flex; align-items: center; gap: 8px; transition: .2s ease; }
.text-link:hover { color: var(--primary-dark); }
.text-link i { transition: transform .2s ease; }
.text-link:hover i { transform: translateX(4px); }
.btn {
  height: 48px; padding: 0 26px; border-radius: var(--radius-pill);
  display: inline-flex; align-items: center; justify-content: center; gap: 10px;
  background: transparent; border: 0; font-size: 15px; font-weight: 600;
  color: var(--body); text-decoration: none; cursor: pointer; line-height: 1;
  transition: background .2s ease, color .2s ease, border-color .2s ease, transform .15s ease, box-shadow .2s ease;
}
.btn:focus-visible { outline: 3px solid rgba(156,62,99,.35); outline-offset: 3px; }
.btn-primary { background: var(--primary); color: #fff; }
.btn-primary:hover { background: var(--primary-dark); color: #fff; transform: translateY(-2px); box-shadow: 0 14px 30px rgba(122,45,76,.22); }
.btn-primary:active { transform: translateY(0); box-shadow: none; }
.btn-ghost { border: 1.5px solid rgba(255,255,255,.8); color: #fff; background: rgba(255,255,255,.06); backdrop-filter: blur(4px); }
.btn-ghost:hover { border-color: var(--gold); color: var(--gold); background: rgba(201,165,125,.12); }
.btn-gold { background: var(--gold); color: var(--dark); }
.btn-gold:hover { background: #d9a97e; color: var(--dark); transform: translateY(-2px); box-shadow: 0 10px 22px rgba(201,165,125,.35); }
.btn-block { width: 100%; }
.badge { display: inline-flex; align-items: center; justify-content: center; min-width: 20px; height: 20px; padding: 0 6px; border-radius: var(--radius-pill); background: var(--gold); color: var(--dark); font-size: 12px; font-weight: 700; }
.tag {
  display: inline-flex; align-items: center; height: 28px; padding: 0 12px;
  border-radius: var(--radius-pill); font-size: 12px; font-weight: 600;
  background: var(--accent-soft); color: var(--primary); border: 1px solid var(--line); line-height: 1;
}
.tag-light { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.3); color: #fff; }
@media (min-width: 64em) { :root { --section-space: 96px; } }
@media (max-width: 63.9375em) { :root { --section-space: 72px; } }
@media (max-width: 520px) { :root { --section-space: 56px; } }

/* ---- 促销条 ---- */
.top-strip { background: var(--dark); color: rgba(255,255,255,.86); font-size: 13px; border-bottom: 1px solid rgba(255,255,255,.06); }
.top-strip__inner { min-height: 38px; display: flex; align-items: center; justify-content: space-between; gap: 12px; padding-top: 6px; padding-bottom: 6px; flex-wrap: nowrap; }
.strip-msg { margin: 0; display: inline-flex; align-items: center; gap: 10px; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.msg-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold); flex: 0 0 auto; box-shadow: 0 0 0 3px rgba(201,165,125,.2); }
.strip-links { display: flex; align-items: center; gap: 16px; flex: 0 0 auto; }
.strip-links a, .strip-links span { color: rgba(255,255,255,.82); display: inline-flex; align-items: center; gap: 6px; }
.strip-links a:hover { color: var(--gold); }
.strip-links a i, .strip-links span i { font-size: 12px; opacity: .75; }
@media (max-width: 640px) {
  .strip-links a:not(.strip-cta), .strip-links span { display: none; }
  .strip-links a.strip-cta { color: var(--gold); }
}

/* ---- 主头部 ---- */
.site-header {
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--line-soft);
  position: sticky; top: 0; z-index: 60;
}
.header-main { min-height: 72px; display: flex; align-items: center; gap: 18px; }
.brand { display: inline-flex; align-items: center; gap: 10px; flex-shrink: 0; }
.brand__mark {
  width: 42px; height: 42px; border-radius: 13px;
  background: linear-gradient(135deg, var(--primary), var(--primary-dark));
  color: #fff; display: inline-flex; align-items: center; justify-content: center;
  font-size: 18px; box-shadow: 0 8px 18px rgba(124,45,77,.25);
}
.brand__text { display: flex; flex-direction: column; line-height: 1.2; }
.brand__name { font-size: 22px; font-weight: 800; color: var(--primary-dark); letter-spacing: .02em; }
.brand__sub { font-size: 11px; color: var(--muted); margin-top: 3px; letter-spacing: .16em; }
.site-nav { margin-left: auto; display: flex; align-items: center; gap: 2px; }
.nav-link {
  position: relative; display: inline-flex; align-items: center; gap: 6px;
  height: 72px; padding: 0 14px; color: var(--body); font-size: 15px; font-weight: 500;
}
.nav-link:hover { color: var(--primary); background: rgba(156,62,99,.04); }
.nav-link.active { color: var(--primary); font-weight: 600; }
.nav-link.active::after {
  content: ""; position: absolute; left: 14px; right: 14px; bottom: -1px;
  height: 3px; border-radius: 999px; background: var(--primary);
}
.has-drop { position: relative; }
.dropdown-panel {
  position: absolute; top: 100%; left: 0; width: 420px; background: #fff;
  border-radius: 18px; padding: 20px; box-shadow: var(--shadow-lift);
  border: 1px solid var(--line-soft); opacity: 0; visibility: hidden; transform: translateY(10px);
  transition: .22s ease; z-index: 70;
}
.dropdown-panel::before { content: ""; position: absolute; top: -8px; left: 28px; width: 16px; height: 16px; background: #fff; border-left: 1px solid var(--line-soft); border-top: 1px solid var(--line-soft); transform: rotate(45deg); }
.has-drop:hover .dropdown-panel, .has-drop:focus-within .dropdown-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.drop-panel__inner { display: flex; flex-direction: column; gap: 12px; }
.drop-head { font-weight: 700; color: var(--primary-dark); font-size: 17px; display: inline-flex; align-items: center; gap: 8px; }
.drop-panel p { font-size: 13px; color: var(--muted); margin: 0; line-height: 1.7; }
.drop-media-card {
  display: flex; align-items: center; gap: 12px; background: var(--accent-soft);
  border-radius: 12px; padding: 8px; border: 1px solid var(--line); transition: .2s ease;
}
.drop-media-card:hover { border-color: var(--primary); background: #fff; }
.drop-media-card img { width: 62px; height: 51px; border-radius: 8px; object-fit: cover; flex: 0 0 auto; }
.drop-media-card strong { display: block; font-size: 14px; color: var(--primary-dark); }
.drop-media-card small { font-size: 12px; color: var(--muted); display: block; }
.drop-media-card i { margin-left: auto; color: var(--primary); padding-right: 8px; }

.header-actions { display: flex; align-items: center; gap: 12px; }
.search-box {
  width: 190px; height: 40px; background: var(--bg); border: 1px solid var(--line-soft);
  border-radius: 999px; display: flex; align-items: center; padding: 3px 3px 3px 14px;
  transition: border-color .2s ease, box-shadow .2s ease;
}
.search-box:focus-within { border-color: var(--primary); box-shadow: 0 0 0 3px rgba(156,62,99,.14); }
.search-box input { flex: 1; min-width: 0; border: 0; background: transparent; font-size: 13px; outline: none; color: var(--body); }
.search-box button {
  width: 32px; height: 32px; border: 0; border-radius: 50%; background: var(--primary);
  color: #fff; display: inline-flex; align-items: center; justify-content: center; font-size: 12px;
}
.search-box button:hover { background: var(--primary-dark); }
.icon-btn {
  width: 42px; height: 42px; border-radius: 50%; display: inline-flex; align-items: center; justify-content: center;
  color: var(--body); border: 1px solid var(--line-soft); background: #fff; font-size: 16px; position: relative; transition: .2s ease;
}
.icon-btn:hover { border-color: var(--accent); color: var(--primary); }
.icon-btn .badge { position: absolute; top: -4px; right: -3px; min-width: 18px; height: 18px; font-size: 10px; }
.header-cta { height: 42px; padding: 0 22px; font-size: 14px; }
.menu-toggle {
  display: none; width: 42px; height: 42px; border: 1px solid var(--line-soft); border-radius: 12px;
  background: #fff; color: var(--primary-dark); font-size: 18px; align-items: center; justify-content: center;
}
.menu-toggle:hover { border-color: var(--primary); color: var(--primary); }

@media (max-width: 1100px) {
  .site-nav, .search-box { display: none; }
  .header-cta { display: none; }
  .menu-toggle { display: inline-flex; }
  .header-main { gap: 10px; }
}
@media (max-width: 480px) {
  .header-main { min-height: 62px; }
  .brand__name { font-size: 19px; }
  .brand__sub { font-size: 10px; }
  .brand__mark { width: 38px; height: 38px; font-size: 16px; border-radius: 11px; }
  .icon-btn { width: 38px; height: 38px; }
}

/* ---- 移动抽屉 ---- */
.drawer-overlay { position: fixed; inset: 0; background: rgba(33,22,28,.52); z-index: 95; opacity: 0; visibility: hidden; transition: .25s ease; }
.drawer-overlay.open { opacity: 1; visibility: visible; }
.mobile-drawer {
  position: fixed; top: 0; right: 0; bottom: 0; width: min(340px, 86vw); z-index: 120;
  background: var(--bg); transform: translateX(105%); transition: transform .3s ease;
  display: flex; flex-direction: column; overflow-y: auto; padding: 18px;
}
.mobile-drawer.open { transform: translateX(0); box-shadow: -24px 0 50px rgba(33,22,28,.2); }
.drawer-top { display: flex; align-items: center; justify-content: space-between; padding-bottom: 14px; border-bottom: 1px solid var(--line-soft); }
.drawer-title { font-size: 16px; font-weight: 700; color: var(--primary-dark); }
.drawer-close { width: 36px; height: 36px; border-radius: 10px; background: #fff; border: 1px solid var(--line-soft); color: var(--dark); }
.drawer-search {
  height: 44px; display: flex; align-items: center; gap: 10px; background: #fff;
  border: 1px solid var(--line); border-radius: 999px; padding: 0 16px; margin: 16px 0;
}
.drawer-search i { color: var(--muted); font-size: 14px; }
.drawer-search input { border: 0; flex: 1; min-width: 0; font-size: 14px; outline: none; background: transparent; }
.drawer-nav { display: flex; flex-direction: column; }
.drawer-nav a {
  padding: 12px 10px; font-size: 15px; font-weight: 500; color: var(--body);
  border-bottom: 1px dashed var(--line-soft); display: flex; align-items: center; justify-content: space-between;
}
.drawer-nav a:hover { color: var(--primary); padding-left: 14px; }
.drawer-nav a::after { content: "\f054"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 12px; color: var(--muted); }
.drawer-navnote { padding: 8px 10px 16px; font-size: 12px; color: var(--muted); }
.drawer-bottom { margin-top: 18px; padding-top: 16px; border-top: 1px solid var(--line-soft); text-align: center; }
.drawer-bottom p { font-size: 12px; color: var(--muted); margin-top: 10px; }

/* ---- 分类页头图 ---- */
.cat-hero {
  position: relative; background: url('/assets/images/backpic/back-3.jpg') center/cover no-repeat;
  padding: 78px 0 70px; color: #fff; overflow: hidden;
}
.cat-hero::before { content: ""; position: absolute; inset: 0; background: linear-gradient(90deg, rgba(33,22,28,.9) 0%, rgba(122,45,76,.78) 48%, rgba(122,45,76,.35) 100%); }
.cat-hero::after { content: ""; position: absolute; right: -120px; bottom: -160px; width: 360px; height: 360px; border: 1px solid rgba(255,255,255,.14); border-radius: 50%; box-shadow: 0 0 0 40px rgba(255,255,255,.04), 0 0 0 80px rgba(255,255,255,.03); }
.cat-hero-content { position: relative; z-index: 2; max-width: 820px; }
.cat-crumb { font-size: 13px; color: rgba(255,255,255,.72); margin-bottom: 18px; letter-spacing: .02em; }
.cat-crumb a { color: rgba(255,255,255,.8); }
.cat-crumb a:hover { color: var(--gold); }
.cat-crumb i { margin: 0 8px; font-size: 10px; opacity: .6; }
.cat-hero h1 { color: #fff; font-size: clamp(30px, 4vw, 44px); font-weight: 800; margin-bottom: 14px; }
.cat-hero .hero-desc { font-size: 16px; line-height: 1.85; color: rgba(255,255,255,.84); max-width: 640px; margin-bottom: 22px; }
.cat-hero .hero-lead { display: inline-flex; align-items: center; gap: 8px; font-size: 13px; font-weight: 500; color: rgba(255,255,255,.9); background: rgba(255,255,255,.12); border: 1px solid rgba(255,255,255,.24); border-radius: 999px; padding: 4px 14px; margin-bottom: 16px; }
.cat-hero .hero-lead i { color: var(--gold); }
.cat-hero-stats { display: flex; flex-wrap: wrap; gap: 16px; margin-top: 24px; }
.hero-stat {
  display: inline-flex; align-items: center; gap: 10px; color: rgba(255,255,255,.9);
  background: rgba(255,255,255,.08); border: 1px solid rgba(255,255,255,.16);
  border-radius: 999px; padding: 8px 16px; font-size: 13px; backdrop-filter: blur(6px);
}
.hero-stat i { color: var(--gold); }
@media (max-width: 768px) {
  .cat-hero { padding: 58px 0 52px; }
  .cat-hero h1 { font-size: 28px; }
}

/* ---- 分类工具条 ---- */
.cat-toolbar { background: rgba(255,255,255,.95); border-bottom: 1px solid var(--line-soft); }
.toolbar-inner { display: flex; align-items: center; gap: 16px; flex-wrap: wrap; padding: 16px 0; }
.result-count { margin: 2px 24px 2px 0; font-size: 13px; color: var(--muted); }
.result-count b { color: var(--primary); font-size: 15px; }
.chip-group { display: flex; flex-wrap: wrap; gap: 8px; }
.chip {
  height: 34px; padding: 0 16px; border-radius: 999px; border: 1px solid var(--line);
  background: #fff; color: var(--muted); font-size: 13px; font-weight: 500; line-height: 1;
  transition: .2s ease;
}
.chip:hover { border-color: var(--primary); color: var(--primary); }
.chip.active { background: var(--primary); border-color: var(--primary); color: #fff; font-weight: 600; box-shadow: 0 6px 16px rgba(156,62,99,.2); }
.sort-wrap { margin-left: auto; }
.sort-box {
  display: inline-flex; align-items: center; gap: 8px; position: relative;
  height: 36px; border: 1px solid var(--line); background: #fff; border-radius: 999px; padding: 0 10px 0 14px;
}
.sort-box:hover { border-color: var(--accent); }
.sort-box i { font-size: 13px; color: var(--muted); }
.sort-box select {
  border: 0; background: transparent; font-size: 13px; font-weight: 600; color: var(--body);
  outline: 0; appearance: none; -webkit-appearance: none; -moz-appearance: none; padding-right: 14px;
}
.sort-box::after { content: "\f078"; font-family: "Font Awesome 6 Free"; font-weight: 900; font-size: 10px; color: var(--muted); pointer-events: none; }
@media (max-width: 900px) {
  .toolbar-inner { gap: 10px; }
  .sort-wrap { margin-left: 0; }
  .result-count { margin-right: 8px; }
}

/* ---- 分类主体 ---- */
.cat-main { padding-top: 28px; padding-bottom: 40px; }
.cat-content { margin-bottom: 40px; }
.l-card {
  display: flex; background: #fff; border: 1px solid var(--line); border-radius: 18px;
  overflow: hidden; margin-bottom: 24px; transition: .25s ease;
}
.l-card:hover { box-shadow: var(--shadow-lift); border-color: rgba(156,62,99,.36); transform: translateY(-2px); }
.l-card__media { position: relative; width: 280px; flex: 0 0 280px; min-height: 200px; overflow: hidden; }
.l-card__media img { width: 100%; height: 100%; object-fit: cover; transition: .6s ease; }
.l-card:hover .l-card__media img { transform: scale(1.05); }
.l-card__media::after { content: ""; position: absolute; inset: 0; background: linear-gradient(180deg, rgba(33,22,28,0) 62%, rgba(33,22,28,.38) 100%); }
.l-card__index {
  position: absolute; left: 14px; top: 14px; width: 38px; height: 38px; z-index: 3;
  background: rgba(255,255,255,.92); color: var(--primary-dark); border-radius: 12px;
  font-size: 13px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
  backdrop-filter: blur(6px); box-shadow: 0 6px 14px rgba(0,0,0,.12);
}
.l-card__cat { position: absolute; right: 12px; top: 14px; z-index: 3; }
.l-card__body { flex: 1; min-width: 0; padding: 22px 24px 18px; display: flex; flex-direction: column; }
.l-card__meta { display: flex; flex-wrap: wrap; gap: 6px 14px; font-size: 12px; color: var(--muted); }
.l-card__meta i { color: var(--accent); margin-right: 4px; }
.l-card__body h3 { font-size: 20px; font-weight: 700; line-height: 1.45; margin: 8px 0 10px; color: var(--dark); }
.l-card__body h3 a { color: inherit; }
.l-card__body h3 a:hover { color: var(--primary); }
.l-card__desc { font-size: 14px; line-height: 1.75; color: #5b4f53; margin-bottom: 10px; letter-spacing: .01em; }
.l-card__foot { margin-top: auto; padding-top: 12px; display: flex; align-items: center; justify-content: space-between; border-top: 1px dashed var(--line-soft); gap: 12px; }
.l-card__chip { font-size: 12px; color: var(--primary); background: var(--accent-soft); border-radius: 999px; padding: 4px 12px; font-weight: 600; }
@media (max-width: 920px) {
  .l-card__media { width: 230px; flex-basis: 230px; }
  .l-card__body h3 { font-size: 18px; }
}
@media (max-width: 640px) {
  .l-card { flex-direction: column; }
  .l-card__media { width: 100%; flex: none; height: 190px; }
}

/* ---- 分页 ---- */
.cat-pagination { margin: 34px 0 10px; }
.cat-pagination li { display: inline-block; margin: 0 3px; border-radius: 12px; vertical-align: top; }
.cat-pagination li a, .cat-pagination li.current, .cat-pagination li.disabled {
  display: inline-block; min-width: 42px; height: 42px; line-height: 40px; text-align: center;
  border: 1px solid var(--line-soft); background: #fff; color: var(--body);
  font-size: 14px; font-weight: 600; border-radius: 12px; padding: 0 6px;
}
.cat-pagination li a:hover { border-color: var(--primary); color: var(--primary); }
.cat-pagination li.current { background: var(--primary); border-color: var(--primary); box-shadow: 0 8px 16px rgba(156,62,99,.2); }
.cat-pagination li.current span { color: #fff; }
.cat-pagination li.disabled { opacity: .45; cursor: not-allowed; }
.cat-pagination li.disabled * { pointer-events: none; }

/* ---- 右栏 ---- */
.cat-sidebar .side-card { background: #fff; border: 1px solid var(--line-soft); border-radius: 18px; padding: 22px; margin-bottom: 22px; }
.side-card h3 {
  font-size: 16px; font-weight: 700; color: var(--primary-dark); margin-bottom: 10px;
  display: flex; align-items: center; gap: 8px;
}
.side-card h3 i { color: var(--primary); font-size: 14px; }
.side-about p { font-size: 13px; color: var(--muted); line-height: 1.8; margin-bottom: 0; }
.side-about p b { color: var(--primary); }
.tag-cloud { display: flex; flex-wrap: wrap; gap: 8px; padding-top: 4px; }
.tag-cloud .tag { font-size: 12px; height: 30px; padding: 0 14px; transition: .2s ease; }
.tag-cloud .tag:hover { background: var(--primary); color: #fff; border-color: var(--primary); }
.side-mini { display: flex; gap: 13px; align-items: center; margin-top: 14px; padding-top: 14px; border-top: 1px dashed var(--line-soft); }
.side-mini:first-of-type { margin-top: 6px; border-top: 0; padding-top: 6px; }
.side-mini img { width: 66px; height: 66px; border-radius: 12px; object-fit: cover; flex: 0 0 auto; }
.side-mini a { font-size: 13px; line-height: 1.5; font-weight: 500; color: var(--body); display: -webkit-box; -webkit-line-clamp: 2; -webkit-box-orient: vertical; overflow: hidden; }
.side-mini a:hover { color: var(--primary); }
.side-mini span { display: block; font-size: 11px; color: var(--muted); margin-top: 5px; }
.side-cta { background: var(--dark); border-color: var(--dark) !important; color: #fff; text-align: center; position: relative; overflow: hidden; }
.side-cta::before { content: ""; position: absolute; width: 150px; height: 150px; border-radius: 50%; border: 1px solid rgba(201,165,125,.26); right: -70px; top: -70px; }
.side-cta h3 { color: #fff; font-size: 20px; margin-bottom: 6px; }
.side-cta p { color: rgba(255,255,255,.72); font-size: 13px; margin-bottom: 16px; }
.side-cta .btn-gold { position: relative; z-index: 2; }
.side-cta .side-secure { font-size: 11px; color: rgba(255,255,255,.5); margin-top: 12px; display: block; }
@media (max-width: 1100px) {
  .cat-sidebar { margin-top: 40px; }
}

/* ---- 分类页 FAQ ---- */
.cat-faq { background: var(--accent-soft); border-top: 1px solid var(--line); }
.faq-wrap { max-width: 880px; margin: 0 auto; padding-top: 12px; }
.faq-item { background: #fff; border: 1px solid var(--line); border-radius: 16px; margin-bottom: 12px; overflow: hidden; box-shadow: none; }
.faq-q {
  width: 100%; display: flex; align-items: center; text-align: left; background: transparent; gap: 12px;
  padding: 16px 20px; border: 0; color: var(--dark); font-weight: 600; font-size: 15px; line-height: 1.5;
  transition: background .2s ease;
}
.faq-q:hover { background: rgba(156,62,99,.04); }
.faq-q__icon {
  width: 28px; height: 28px; flex: 0 0 auto; border-radius: 9px; background: var(--accent-soft); color: var(--primary);
  font-size: 13px; font-weight: 800; display: inline-flex; align-items: center; justify-content: center;
}
.faq-q i { margin-left: auto; flex: 0 0 auto; color: var(--muted); transition: transform .25s ease; font-size: 14px; }
.faq-item.open .faq-q i { transform: rotate(45deg); color: var(--primary); }
.faq-item.open .faq-q { color: var(--primary-dark); }
.faq-a { display: none; padding: 0 22px 20px 60px; font-size: 14px; line-height: 1.85; color: #5b4f53; }
.faq-item.open .faq-a { display: block; }
.faq-a p { margin: 0; }

/* ---- 分类尾 CTA ---- */
.cat-cta { background: linear-gradient(135deg, var(--dark) 0%, #352028 100%); text-align: center; position: relative; overflow: hidden; }
.cat-cta::before { content: ""; position: absolute; width: 300px; height: 300px; border-radius: 50%; border: 1px solid rgba(201,165,125,.3); left: 50%; top: 50%; transform: translate(-50%, -50%); box-shadow: 0 0 0 55px rgba(201,165,125,.06), 0 0 0 110px rgba(201,165,125,.03); }
.cat-cta h2 { color: #fff; font-size: clamp(24px, 3vw, 34px); font-weight: 800; margin-bottom: 12px; }
.cat-cta p { color: rgba(255,255,255,.75); font-size: 15px; max-width: 600px; margin: 0 auto 24px; }
.cat-cta i { color: var(--gold); }

/* ---- 页脚 ---- */
.site-footer { background: var(--dark); color: rgba(255,255,255,.68); font-size: 14px; }
.footer-top { padding: 68px 0 40px; border-bottom: 1px solid rgba(255,255,255,.08); }
.footer-brand p { max-width: 440px; font-size: 13px; line-height: 1.9; margin: 18px 0 0; color: rgba(255,255,255,.58); }
.footer-brand .brand__name { color: #fff; }
.footer-brand .brand__mark { box-shadow: none; }
.footer-columns { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.footer-col { text-align: left; }
.footer-col h4 { font-size: 15px; font-weight: 600; color: #fff; margin-bottom: 16px; padding-bottom: 10px; position: relative; }
.footer-col h4::before { content: ""; width: 22px; height: 2px; background: var(--gold); position: absolute; left: 0; bottom: 0; border-radius: 999px; }
.footer-col a { display: block; padding: 5px 0; color: rgba(255,255,255,.58); font-size: 13px; transition: .2s ease; }
.footer-col a:hover { color: var(--accent); padding-left: 4px; }
.footer-bottom { padding: 22px 0; }
.footer-bottom .row { display: flex; align-items: center; justify-content: space-between; gap: 12px; flex-wrap: wrap; }
.footer-bottom p { font-size: 13px; color: rgba(255,255,255,.48); }
.status { display: inline-flex; align-items: center; gap: 8px; font-size: 12px; color: rgba(255,255,255,.58); }
.status i { font-style: normal; width: 8px; height: 8px; background: #4da878; border-radius: 50%; box-shadow: 0 0 0 3px rgba(77,168,120,.18); }
@media (max-width: 900px) {
  .footer-columns { grid-template-columns: repeat(2, 1fr); gap: 24px; }
}
@media (max-width: 520px) {
  .footer-columns { grid-template-columns: 1fr; gap: 8px; }
  .footer-top { padding-top: 48px; }
}
