/* roulang page: index */
:root {
            --gold: #D09A4E;
            --gold-light: #E8C37D;
            --gold-dark: #B57F3E;
            --teal: #2E9E93;
            --teal-light: #4FC3B7;
            --coral: #FF6B57;
            --bg-dark: #101820;
            --bg-secondary: #1B2632;
            --card-bg: rgba(255, 255, 255, 0.04);
            --card-border: rgba(255, 255, 255, 0.08);
            --text-primary: #F2F4F7;
            --text-secondary: #A8B0B8;
            --text-muted: #6C757D;
            --radius-lg: 20px;
            --radius-sm: 8px;
            --shadow: 0 12px 40px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 16px 50px rgba(0, 0, 0, 0.45);
            --font-sans: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            background-color: var(--bg-dark);
            color: var(--text-primary);
            line-height: 1.75;
            overflow-x: hidden;
            min-height: 100vh;
            position: relative;
            margin: 0;
            padding: 0;
        }

        body::before {
            content: "";
            position: fixed;
            top: 0;
            left: 0;
            width: 100vw;
            height: 100vh;
            background:
                radial-gradient(600px 400px at 15% 20%, rgba(208, 154, 78, 0.12), transparent 60%),
                radial-gradient(700px 450px at 85% 75%, rgba(46, 158, 147, 0.08), transparent 60%);
            pointer-events: none;
            z-index: 0;
        }

        body::after {
            content: "";
            position: fixed;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.8' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/%23n)' opacity='0.035'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 0;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.25s ease;
        }

        img {
            max-width: 100%;
            display: block;
        }

        .container {
            max-width: 1320px;
            padding-left: 24px;
            padding-right: 24px;
        }

        main {
            position: relative;
            z-index: 1;
        }

        .btn {
            border-radius: 999px;
            border: 1px solid transparent;
            font-weight: 600;
            font-size: 1rem;
            padding: 12px 28px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            line-height: 1.4;
        }

        .btn-gold {
            background: linear-gradient(120deg, #D09A4E 0%, #E8C37D 100%);
            color: #101820;
            border-color: rgba(208, 154, 78, 0.5);
        }

        .btn-gold:hover,
        .btn-gold:focus {
            background: linear-gradient(120deg, #E8C37D 0%, #F1D5A0 100%);
            color: #101820;
            box-shadow: 0 6px 24px rgba(208, 154, 78, 0.35);
            transform: translateY(-2px);
        }

        .btn-outline-gold {
            background: transparent;
            color: var(--gold-light);
            border-color: rgba(208, 154, 78, 0.5);
        }

        .btn-outline-gold:hover,
        .btn-outline-gold:focus {
            background: rgba(208, 154, 78, 0.1);
            color: #F1D5A0;
            border-color: rgba(208, 154, 78, 0.8);
            transform: translateY(-2px);
        }

        .btn-lg {
            font-size: 1.1rem;
            padding: 14px 36px;
        }

        .site-header {
            position: fixed;
            top: 16px;
            left: 0;
            right: 0;
            z-index: 1030;
            display: flex;
            justify-content: center;
            padding: 0 16px;
            pointer-events: none;
        }

        .nav-capsule {
            width: 100%;
            max-width: 1100px;
            background: rgba(16, 24, 32, 0.78);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 999px;
            height: 64px;
            padding: 0 20px;
            pointer-events: auto;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
        }

        .brand-logo {
            font-size: 1.3rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            background: linear-gradient(120deg, #F1D5A0 0%, #D09A4E 40%, #E8C37D 70%, #B57F3E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            white-space: nowrap;
        }

        .navbar-nav .nav-link {
            color: var(--text-secondary);
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 18px;
            border-radius: 999px;
            transition: all 0.25s ease;
        }

        .navbar-nav .nav-link:hover {
            color: var(--gold-light);
            background: rgba(208, 154, 78, 0.08);
        }

        .navbar-nav .nav-link.active {
            color: #101820 !important;
            background: linear-gradient(135deg, #D09A4E 0%, #E8C37D 100%);
            font-weight: 700;
        }

        .navbar-toggler {
            border-radius: 50%;
            width: 44px;
            height: 44px;
            border: 1px solid rgba(208, 154, 78, 0.5);
            background: rgba(208, 154, 78, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(208, 154, 78, 0.25);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg viewBox='0 0 30 30' xmlns='http://www.w3.org/2000/svg'%3e%3cpath stroke='%23D09A4E' stroke-width='2' stroke-linecap='round' stroke-miterlimit='10' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        @media (max-width: 991.98px) {
            .nav-capsule {
                border-radius: 24px;
                height: auto;
                padding: 12px 20px;
            }
            .navbar-collapse {
                background: rgba(16, 24, 32, 0.92);
                border-radius: 20px;
                border: 1px solid rgba(255, 255, 255, 0.08);
                padding: 16px 12px;
                margin-top: 12px;
                backdrop-filter: blur(16px);
            }
            .navbar-nav .nav-link {
                padding: 12px 16px;
                border-radius: 12px;
            }
        }

        section {
            padding: 88px 0;
            position: relative;
            z-index: 1;
        }

        .section-head {
            margin-bottom: 48px;
        }

        .section-head.center-head {
            text-align: center;
        }

        .section-kicker {
            display: inline-block;
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.2em;
            color: var(--gold);
            background: rgba(208, 154, 78, 0.12);
            border-radius: 999px;
            padding: 6px 16px;
            margin-bottom: 16px;
        }

        .section-head h2 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.3;
        }

        .section-head p {
            color: var(--text-secondary);
            font-size: 1rem;
            max-width: 600px;
        }

        @media (max-width: 768px) {
            section {
                padding: 56px 0;
            }
            .section-head h2 {
                font-size: 1.75rem;
            }
        }

        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 140px 0 80px;
            position: relative;
            background-image: linear-gradient(rgba(16, 24, 32, 0.82), rgba(16, 24, 32, 0.9)), url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-attachment: fixed;
        }

        @media (max-width: 767px) {
            .hero {
                background-attachment: scroll;
                padding: 120px 0 100px;
            }
        }

        .hero-kicker {
            display: inline-block;
            font-size: 0.875rem;
            font-weight: 600;
            color: var(--teal-light);
            background: rgba(46, 158, 147, 0.12);
            border-radius: 999px;
            padding: 8px 18px;
            letter-spacing: 0.08em;
            margin-bottom: 24px;
        }

        .hero-title {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 24px;
            background: linear-gradient(120deg, #F1D5A0 0%, #D09A4E 35%, #E8C37D 65%, #B57F3E 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            max-width: 640px;
        }

        .hero-sub {
            font-size: 1.2rem;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 36px;
            max-width: 540px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }

        @media (max-width: 767px) {
            .hero-title {
                font-size: 2.5rem;
            }
            .hero-sub {
                font-size: 1rem;
            }
        }

        .phone-stage {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .phone-stage::before {
            content: "";
            position: absolute;
            width: 380px;
            height: 380px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(208, 154, 78, 0.18), transparent 70%);
            filter: blur(20px);
        }

        .phone-card {
            width: 250px;
            background: rgba(16, 24, 32, 0.85);
            border: 1px solid rgba(255, 255, 255, 0.12);
            border-radius: 32px;
            padding: 12px;
            box-shadow: var(--shadow-hover);
            transform: rotate(6deg);
            transition: transform 0.4s ease;
        }

        .phone-card:hover {
            transform: rotate(0deg) translateY(-8px);
        }

        .phone-media {
            position: relative;
            border-radius: 22px;
            overflow: hidden;
            aspect-ratio: 9/16;
        }

        .phone-media img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .phone-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(16, 24, 32, 0.8);
            color: var(--gold-light);
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 999px;
            border: 1px solid rgba(208, 154, 78, 0.4);
        }

        .play-btn {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 56px;
            height: 56px;
            background: rgba(208, 154, 78, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #101820;
            font-size: 1.2rem;
            box-shadow: 0 0 0 6px rgba(208, 154, 78, 0.2);
            transition: all 0.3s ease;
        }

        .phone-card:hover .play-btn {
            transform: translate(-50%, -50%) scale(1.1);
            background: #E8C37D;
        }

        .phone-body {
            padding: 16px 12px 12px;
        }

        .phone-body h3 {
            font-size: 1rem;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .phone-body p {
            font-size: 0.8rem;
            color: var(--text-secondary);
            margin-bottom: 10px;
        }

        .phone-progress {
            height: 4px;
            background: rgba(255, 255, 255, 0.1);
            border-radius: 4px;
            overflow: hidden;
        }

        .phone-progress span {
            display: block;
            height: 100%;
            background: linear-gradient(90deg, var(--gold), var(--teal));
            border-radius: 4px;
        }

        .hero-ticker {
            position: absolute;
            bottom: 36px;
            left: 0;
            right: 0;
            overflow: hidden;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 16px 0;
        }

        .hero-ticker-track {
            display: flex;
            width: max-content;
            animation: tickerMove 22s linear infinite;
        }

        .hero-ticker-group {
            display: flex;
            align-items: center;
            gap: 28px;
            padding-right: 28px;
        }

        .hero-ticker-group span {
            font-size: 0.95rem;
            color: var(--text-secondary);
            font-weight: 500;
            white-space: nowrap;
        }

        .hero-ticker-group span::before {
            content: "◆";
            color: var(--gold);
            margin-right: 12px;
            font-size: 0.6rem;
        }

        @keyframes tickerMove {
            0% {
                transform: translateX(0);
            }
            100% {
                transform: translateX(-50%);
            }
        }

        .badge-teal {
            display: inline-block;
            background: rgba(46, 158, 147, 0.15);
            color: var(--teal-light);
            font-size: 0.7rem;
            padding: 4px 10px;
            border-radius: 999px;
            font-weight: 600;
        }

        .badge-gold {
            display: inline-block;
            background: rgba(208, 154, 78, 0.15);
            color: var(--gold-light);
            font-size: 0.75rem;
            padding: 4px 12px;
            border-radius: 999px;
            font-weight: 600;
        }

        .hot-scroll {
            overflow-x: auto;
            padding: 8px 4px 24px;
            display: flex;
            gap: 24px;
            scroll-snap-type: x mandatory;
        }

        .hot-card {
            flex: 0 0 240px;
            scroll-snap-align: start;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            overflow: hidden;
            transition: all 0.35s ease;
        }

        .hot-card:hover {
            border-color: rgba(208, 154, 78, 0.4);
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .hot-cover {
            position: relative;
            aspect-ratio: 9/16;
            overflow: hidden;
        }

        .hot-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .hot-card:hover .hot-cover img {
            transform: scale(1.05);
        }

        .hot-duration {
            position: absolute;
            right: 10px;
            bottom: 10px;
            background: rgba(16, 24, 32, 0.75);
            color: #fff;
            font-size: 0.7rem;
            padding: 4px 8px;
            border-radius: 6px;
        }

        .hot-hover-play {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%) scale(0.8);
            width: 44px;
            height: 44px;
            background: rgba(208, 154, 78, 0.9);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #101820;
            opacity: 0;
            transition: all 0.3s ease;
        }

        .hot-card:hover .hot-hover-play {
            opacity: 1;
            transform: translate(-50%, -50%) scale(1);
        }

        .hot-info {
            padding: 16px;
        }

        .hot-info h3 {
            font-size: 0.95rem;
            font-weight: 600;
            margin-bottom: 12px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .hot-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .hot-views {
            color: var(--coral);
            font-size: 0.85rem;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .hot-scroll::-webkit-scrollbar {
            height: 6px;
        }

        .hot-scroll::-webkit-scrollbar-track {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 6px;
        }

        .hot-scroll::-webkit-scrollbar-thumb {
            background: rgba(208, 154, 78, 0.35);
            border-radius: 6px;
        }

        .section-list {
            background-color: var(--bg-secondary);
            background-image: radial-gradient(500px 300px at 10% 30%, rgba(208, 154, 78, 0.08), transparent 60%), radial-gradient(600px 350px at 90% 80%, rgba(46, 158, 147, 0.06), transparent 60%);
        }

        .guide-item {
            display: flex;
            gap: 32px;
            padding: 40px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .guide-item:last-child {
            border-bottom: 0;
        }

        .guide-num {
            font-size: 3.5rem;
            font-weight: 800;
            color: transparent;
            -webkit-text-stroke: 2px var(--gold);
            line-height: 1;
            min-width: 90px;
        }

        .guide-content h3 {
            font-size: 1.5rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .guide-content p {
            color: var(--text-secondary);
            max-width: 700px;
            margin-bottom: 14px;
        }

        .guide-content a {
            color: var(--gold-light);
            font-weight: 600;
            font-size: 0.95rem;
        }

        .guide-content a:hover {
            color: var(--gold);
        }

        @media (max-width: 767px) {
            .guide-item {
                flex-direction: column;
                gap: 16px;
                padding: 32px 0;
            }
            .guide-num {
                font-size: 2.5rem;
                min-width: 0;
            }
        }

        .review-card {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: var(--radius-lg);
            padding: 28px;
            transition: all 0.3s ease;
            height: 100%;
        }

        .review-card:hover {
            border-color: rgba(208, 154, 78, 0.35);
            box-shadow: var(--shadow);
            transform: translateY(-4px);
        }

        .review-offset {
            transform: translateY(24px);
        }

        @media (max-width: 767px) {
            .review-offset {
                transform: none;
            }
        }

        .stars {
            color: var(--gold);
            font-size: 1rem;
            letter-spacing: 4px;
            margin-bottom: 16px;
        }

        .review-card > p {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 20px;
            font-style: italic;
        }

        .review-meta {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .review-avatar {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: rgba(46, 158, 147, 0.15);
            color: var(--teal-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1.1rem;
        }

        .review-meta strong {
            display: block;
            font-weight: 600;
            font-size: 0.95rem;
        }

        .review-meta span {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .cta-banner {
            background: linear-gradient(120deg, rgba(208, 154, 78, 0.18), rgba(16, 24, 32, 0.6) 60%), var(--bg-secondary);
            border: 1px solid rgba(208, 154, 78, 0.22);
            border-radius: 28px;
            padding: 64px 48px;
            text-align: center;
        }

        .cta-banner h2 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .cta-banner p {
            color: var(--text-secondary);
            max-width: 560px;
            margin: 0 auto 28px;
        }

        @media (max-width: 767px) {
            .cta-banner {
                padding: 48px 24px;
            }
            .cta-banner h2 {
                font-size: 1.75rem;
            }
        }

        .section-news {
            background-color: var(--bg-secondary);
            background-image: radial-gradient(500px 260px at 85% 20%, rgba(208, 154, 78, 0.06), transparent 60%);
        }

        .news-item {
            display: flex;
            gap: 20px;
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px;
            padding: 16px;
            margin-bottom: 16px;
            transition: all 0.3s ease;
            align-items: center;
        }

        .news-item:hover {
            border-color: rgba(208, 154, 78, 0.35);
            background: rgba(208, 154, 78, 0.04);
            transform: translateX(4px);
        }

        .news-thumb {
            flex: 0 0 120px;
            width: 120px;
            height: 84px;
            overflow: hidden;
            border-radius: 12px;
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-body {
            flex: 1;
            min-width: 0;
        }

        .news-body h3 {
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 6px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .news-body p {
            font-size: 0.9rem;
            color: var(--text-secondary);
            margin-bottom: 10px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-meta {
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 10px;
        }

        .news-time {
            font-size: 0.8rem;
            color: var(--text-muted);
        }

        .news-more {
            font-size: 0.85rem;
            color: var(--gold-light);
            font-weight: 600;
            margin-left: auto;
        }

        .news-empty {
            text-align: center;
            padding: 48px 24px;
            color: var(--text-secondary);
            border: 1px dashed rgba(255, 255, 255, 0.12);
            border-radius: 16px;
            font-size: 1rem;
        }

        @media (max-width: 576px) {
            .news-item {
                flex-direction: column;
                align-items: flex-start;
            }
            .news-thumb {
                width: 100%;
                height: 160px;
                flex: none;
            }
            .news-body h3 {
                white-space: normal;
            }
        }

        .faq-wrap {
            max-width: 860px;
            margin: 0 auto;
        }

        .accordion-item {
            background: var(--card-bg);
            border: 1px solid var(--card-border);
            border-radius: 16px !important;
            margin-bottom: 14px;
            overflow: hidden;
            transition: border-color 0.3s ease;
        }

        .accordion-item:has(.accordion-button:not(.collapsed)) {
            border-color: rgba(208, 154, 78, 0.3);
        }

        .accordion-button {
            background: transparent;
            color: var(--text-primary);
            font-weight: 700;
            font-size: 1.05rem;
            padding: 22px 24px;
            box-shadow: none;
        }

        .accordion-button:not(.collapsed) {
            background: rgba(208, 154, 78, 0.06);
            color: var(--gold-light);
        }

        .accordion-button:focus {
            box-shadow: none;
            border: none;
            outline: 2px solid rgba(208, 154, 78, 0.25);
            outline-offset: -2px;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D09A4E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }

        .accordion-body {
            color: var(--text-secondary);
            font-size: 1rem;
            line-height: 1.8;
            padding: 0 24px 24px;
        }

        .section-final-cta {
            text-align: center;
            background: radial-gradient(600px 300px at 50% 80%, rgba(208, 154, 78, 0.12), transparent 70%);
        }

        .section-final-cta h2 {
            font-size: 2.5rem;
            font-weight: 800;
            margin-bottom: 28px;
            line-height: 1.3;
        }

        @media (max-width: 767px) {
            .section-final-cta h2 {
                font-size: 1.85rem;
            }
        }

        .site-footer {
            background: #0C141C;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 64px 0 32px;
            position: relative;
            z-index: 1;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(120deg, #F1D5A0, #D09A4E);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 16px;
        }

        .site-footer p {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .site-footer h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 20px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-secondary);
            font-size: 0.95rem;
        }

        .footer-links a:hover {
            color: var(--gold-light);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 48px;
            padding-top: 24px;
            text-align: center;
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .mobile-sticky-cta {
            display: none;
        }

        @media (max-width: 767px) {
            .mobile-sticky-cta {
                display: block;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 1050;
                padding: 10px 16px;
                background: rgba(16, 24, 32, 0.88);
                backdrop-filter: blur(12px);
                border-top: 1px solid rgba(255, 255, 255, 0.08);
            }
            body {
                padding-bottom: 76px;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #D09A4E;
            --primary-light: #E0AE60;
            --primary-dark: #B8863B;
            --secondary: #2E9E93;
            --secondary-light: #3DC4B8;
            --accent: #FF6B57;
            --bg-dark: #101820;
            --bg-secondary: #1B2632;
            --bg-card: rgba(255, 255, 255, 0.04);
            --border-card: rgba(255, 255, 255, 0.08);
            --text-light: #F5F1E8;
            --text-body: #C8D0D8;
            --text-muted: #A8B0B8;
            --nav-bg: rgba(16, 24, 32, 0.78);
            --radius-card: 20px;
            --radius-pill: 999px;
            --radius-small: 8px;
            --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 16px 50px rgba(0, 0, 0, 0.45);
            --font-heading: 'Noto Sans SC', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            --font-body: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: var(--font-body);
            font-size: 1.125rem;
            line-height: 1.9;
            color: var(--text-body);
            background-color: var(--bg-dark);
            -webkit-font-smoothing: antialiased;
        }

        img {
            max-width: 100%;
            display: block;
        }

        a {
            text-decoration: none;
            transition: all 0.3s ease;
        }

        h1, h2, h3, h4, h5 {
            font-family: var(--font-heading);
            color: var(--text-light);
            font-weight: 700;
            line-height: 1.35;
        }

        .container {
            max-width: 1320px;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* ============ 导航 ============ */
        .site-header {
            position: fixed;
            top: 16px;
            left: 0;
            right: 0;
            z-index: 1080;
            pointer-events: none;
        }

        .nav-capsule {
            max-width: 1100px;
            margin: 0 auto;
            background: var(--nav-bg);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-pill);
            min-height: 64px;
            padding: 0 12px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
            pointer-events: auto;
        }

        .brand-logo {
            font-family: var(--font-heading);
            font-size: 1.35rem;
            font-weight: 900;
            background: linear-gradient(135deg, #D09A4E, #F0CD8A, #D09A4E);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            white-space: nowrap;
            letter-spacing: 0.02em;
        }

        .brand-logo:hover {
            filter: brightness(1.15);
        }

        .nav-capsule .navbar-nav .nav-link {
            color: rgba(255, 255, 255, 0.75);
            font-weight: 500;
            padding: 8px 20px;
            border-radius: var(--radius-pill);
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }

        .nav-capsule .navbar-nav .nav-link:hover {
            color: var(--primary-light);
            background: rgba(255, 255, 255, 0.06);
        }

        .nav-capsule .navbar-nav .nav-link.active {
            background: var(--primary);
            color: #101820;
            font-weight: 600;
        }

        .navbar-toggler {
            border: 1px solid var(--primary);
            background: var(--primary);
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 0;
        }

        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(208, 154, 78, 0.35);
        }

        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23101820' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 22px;
            height: 22px;
        }

        @media (max-width: 991.98px) {
            .nav-capsule {
                border-radius: 24px;
                padding: 8px 12px;
            }
            .navbar-collapse {
                background: rgba(16, 24, 32, 0.96);
                border-radius: 20px;
                padding: 16px;
                margin-top: 10px;
                border: 1px solid var(--border-card);
                box-shadow: var(--shadow-card);
            }
            .nav-capsule .navbar-nav .nav-link {
                padding: 10px 18px;
            }
        }

        @media (max-width: 575.98px) {
            .brand-logo {
                font-size: 1.05rem;
            }
            .site-header {
                top: 10px;
            }
        }

        /* ============ Hero ============ */
        .category-hero {
            position: relative;
            min-height: 58vh;
            display: flex;
            align-items: center;
            background: linear-gradient(rgba(16, 24, 32, 0.65), rgba(16, 24, 32, 0.88)), url('/assets/images/backpic/back-1.webp') center/cover no-repeat;
            padding: 140px 0 80px;
            overflow: hidden;
        }

        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px);
            background-size: 4px 4px;
            pointer-events: none;
            z-index: 1;
        }

        .hero-glow {
            position: absolute;
            border-radius: 50%;
            pointer-events: none;
            z-index: 0;
            filter: blur(50px);
        }

        .hero-glow-gold {
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(208, 154, 78, 0.22), transparent 70%);
            top: -120px;
            right: -80px;
        }

        .hero-glow-green {
            width: 400px;
            height: 400px;
            background: radial-gradient(circle, rgba(46, 158, 147, 0.16), transparent 70%);
            bottom: -120px;
            left: -80px;
        }

        .category-hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-kicker {
            display: inline-block;
            color: var(--secondary-light) !important;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            font-size: 0.8rem;
            padding: 6px 18px;
            border: 1px solid rgba(46, 158, 147, 0.4);
            border-radius: var(--radius-pill);
            margin-bottom: 20px;
            background: rgba(46, 158, 147, 0.08);
        }

        .category-hero h1 {
            font-size: 3.5rem;
            font-weight: 900;
            margin-bottom: 18px;
            background: linear-gradient(135deg, #F0CD8A, #D09A4E 40%, #E8B66D);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 0.01em;
        }

        .hero-subtitle {
            font-size: 1.2rem;
            color: var(--text-muted);
            max-width: 640px;
            margin-bottom: 0;
            line-height: 1.9;
        }

        @media (max-width: 767.98px) {
            .category-hero {
                min-height: auto;
                padding: 130px 0 60px;
            }
            .category-hero h1 {
                font-size: 2.4rem;
            }
            .hero-subtitle {
                font-size: 1.05rem;
            }
        }

        /* ============ 锚点目录 ============ */
        .anchor-nav-section {
            background: var(--bg-secondary);
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
            padding: 18px 0;
            position: sticky;
            top: 90px;
            z-index: 1020;
            backdrop-filter: blur(10px);
        }

        .anchor-nav {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            justify-content: center;
        }

        .anchor-link {
            display: inline-block;
            padding: 8px 24px;
            border-radius: var(--radius-pill);
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid var(--border-card);
            color: var(--text-body);
            font-size: 0.95rem;
            font-weight: 500;
            transition: all 0.3s ease;
        }

        .anchor-link:hover {
            background: rgba(208, 154, 78, 0.12);
            border-color: rgba(208, 154, 78, 0.4);
            color: var(--primary-light);
            transform: translateY(-2px);
        }

        @media (max-width: 767.98px) {
            .anchor-nav-section {
                position: static;
                top: auto;
            }
            .anchor-nav {
                overflow-x: auto;
                flex-wrap: nowrap;
                justify-content: flex-start;
                padding: 4px 0;
                -webkit-overflow-scrolling: touch;
            }
            .anchor-link {
                flex: 0 0 auto;
                white-space: nowrap;
            }
        }

        /* ============ 分类页通用 Section ============ */
        .category-section {
            padding: 88px 0;
            scroll-margin-top: 110px;
            position: relative;
        }

        .category-section-alt {
            background: var(--bg-secondary);
        }

        .section-badge {
            display: inline-block;
            background: rgba(208, 154, 78, 0.12);
            border: 1px solid rgba(208, 154, 78, 0.3);
            color: var(--primary-light);
            font-size: 0.8rem;
            font-weight: 700;
            letter-spacing: 0.08em;
            padding: 5px 16px;
            border-radius: var(--radius-pill);
            margin-bottom: 16px;
        }

        .category-section h2 {
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .category-section p {
            font-size: 1.125rem;
            line-height: 1.9;
            color: var(--text-body);
            margin-bottom: 20px;
        }

        .feature-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-list li {
            position: relative;
            padding-left: 30px;
            margin-bottom: 12px;
            color: var(--text-body);
            font-size: 1.02rem;
            line-height: 1.75;
        }

        .feature-list li::before {
            content: '\f00c';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            position: absolute;
            left: 0;
            top: 2px;
            color: var(--secondary);
            font-size: 1rem;
        }

        .feature-image {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            border: 1px solid var(--border-card);
            transition: all 0.4s ease;
        }

        .feature-image:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .feature-image img {
            width: 100%;
            height: 420px;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .feature-image:hover img {
            transform: scale(1.04);
        }

        .feature-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, transparent 60%, rgba(16, 24, 32, 0.25));
            pointer-events: none;
        }

        @media (max-width: 991.98px) {
            .category-section {
                padding: 64px 0;
            }
            .category-section h2 {
                font-size: 1.8rem;
            }
            .feature-image img {
                height: 320px;
            }
        }

        @media (max-width: 575.98px) {
            .category-section {
                padding: 52px 0;
            }
            .feature-image img {
                height: 260px;
            }
        }

        /* ============ 资讯列表区 ============ */
        .news-section {
            padding: 88px 0;
            background: var(--bg-dark);
            scroll-margin-top: 110px;
            position: relative;
        }

        .news-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: radial-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px);
            background-size: 5px 5px;
            pointer-events: none;
        }

        .section-heading {
            display: flex;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 40px;
            position: relative;
            z-index: 2;
        }

        .section-heading h2 {
            font-size: 2.25rem;
            font-weight: 700;
            margin: 0;
        }

        .view-all {
            color: var(--primary-light);
            font-weight: 600;
            font-size: 0.95rem;
            padding: 8px 20px;
            border: 1px solid rgba(208, 154, 78, 0.3);
            border-radius: var(--radius-pill);
            background: rgba(208, 154, 78, 0.06);
            transition: all 0.3s ease;
        }

        .view-all:hover {
            background: var(--primary);
            color: #101820;
            border-color: var(--primary);
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            position: relative;
            z-index: 2;
        }

        .news-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--bg-card);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-card);
            padding: 18px 20px;
            transition: all 0.35s ease;
        }

        .news-item:hover {
            background: rgba(255, 255, 255, 0.07);
            border-color: rgba(208, 154, 78, 0.35);
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .news-thumb {
            width: 140px;
            height: 100px;
            border-radius: 14px;
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-secondary);
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-item:hover .news-thumb img {
            transform: scale(1.06);
        }

        .news-body {
            flex: 1;
            min-width: 0;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 6px;
        }

        .news-cat {
            background: var(--primary);
            color: #101820;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 3px 12px;
            border-radius: var(--radius-pill);
            display: inline-block;
            letter-spacing: 0.03em;
        }

        .news-date {
            color: var(--text-muted);
            font-size: 0.85rem;
        }

        .news-body h3 {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 6px;
            color: var(--text-light);
            line-height: 1.4;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-body p {
            color: var(--text-muted);
            font-size: 0.92rem;
            line-height: 1.7;
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        @media (max-width: 767.98px) {
            .news-section {
                padding: 64px 0;
            }
            .section-heading h2 {
                font-size: 1.8rem;
            }
            .news-item {
                flex-direction: column;
                align-items: flex-start;
                padding: 16px;
            }
            .news-thumb {
                width: 100%;
                height: 200px;
            }
        }

        /* ============ FAQ ============ */
        .faq-section {
            padding: 88px 0;
            background: var(--bg-secondary);
            scroll-margin-top: 110px;
        }

        .faq-section .container {
            max-width: 900px;
        }

        .faq-section h2 {
            text-align: center;
            font-size: 2.25rem;
            font-weight: 700;
            margin-bottom: 48px;
        }

        .accordion {
            display: flex;
            flex-direction: column;
            gap: 14px;
        }

        .accordion-item {
            background: var(--bg-card);
            border: 1px solid transparent;
            border-radius: 18px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .accordion-item:has(.accordion-button:not(.collapsed)) {
            border-color: rgba(208, 154, 78, 0.3);
            background: rgba(255, 255, 255, 0.05);
        }

        .accordion-button {
            background: transparent;
            color: var(--text-light);
            font-family: var(--font-heading);
            font-weight: 700;
            font-size: 1.08rem;
            padding: 22px 26px;
            box-shadow: none;
            border: none;
        }

        .accordion-button:not(.collapsed) {
            background: rgba(208, 154, 78, 0.06);
            color: var(--primary-light);
        }

        .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(208, 154, 78, 0.15);
            outline: none;
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D09A4E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
            background-size: 1rem;
        }

        .accordion-body {
            padding: 0 26px 22px;
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.85;
        }

        @media (max-width: 575.98px) {
            .faq-section {
                padding: 56px 0;
            }
            .accordion-button {
                font-size: 0.98rem;
                padding: 18px 20px;
            }
            .accordion-body {
                padding: 0 20px 18px;
            }
        }

        /* ============ CTA ============ */
        .cta-section {
            padding: 88px 0;
            background: linear-gradient(135deg, #101820 0%, #1B2632 50%, #101820 100%);
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(208, 154, 78, 0.15), transparent 70%);
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            pointer-events: none;
        }

        .cta-section .container {
            position: relative;
            z-index: 2;
            text-align: center;
            max-width: 800px;
        }

        .cta-section h2 {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .cta-section .cta-desc {
            color: var(--text-muted);
            font-size: 1.1rem;
            margin-bottom: 32px;
        }

        .btn-gold,
        .btn-outline-gold {
            border-radius: var(--radius-pill);
            padding: 13px 38px;
            font-weight: 700;
            font-size: 1.05rem;
            transition: all 0.3s ease;
            display: inline-block;
        }

        .btn-gold {
            background: var(--primary);
            color: #101820;
            border: 2px solid var(--primary);
        }

        .btn-gold:hover {
            background: var(--primary-light);
            border-color: var(--primary-light);
            color: #101820;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(208, 154, 78, 0.35);
        }

        .btn-gold:focus {
            box-shadow: 0 0 0 4px rgba(208, 154, 78, 0.25);
            outline: none;
        }

        .btn-outline-gold {
            background: transparent;
            color: var(--primary-light);
            border: 2px solid var(--primary);
        }

        .btn-outline-gold:hover {
            background: rgba(208, 154, 78, 0.12);
            color: var(--primary-light);
            border-color: var(--primary-light);
            transform: translateY(-3px);
        }

        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }

        @media (max-width: 575.98px) {
            .cta-section {
                padding: 56px 0;
            }
            .cta-section h2 {
                font-size: 1.6rem;
            }
            .navbar-custom .btn-gold,
            .navbar-custom .btn-outline-gold {
                padding: 11px 26px;
            }
        }

        /* ============ 页脚 ============ */
        .site-footer {
            background: #0C131A;
            padding: 64px 0 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
        }

        .site-footer .footer-brand {
            font-family: var(--font-heading);
            font-size: 1.4rem;
            font-weight: 800;
            background: linear-gradient(135deg, #F0CD8A, #D09A4E);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 12px;
        }

        .site-footer p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 8px;
        }

        .site-footer h4 {
            font-size: 1.1rem;
            color: var(--text-light);
            margin-bottom: 16px;
            font-weight: 700;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 8px;
        }

        .footer-links a {
            color: var(--text-muted);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .footer-links a:hover {
            color: var(--primary-light);
            padding-left: 6px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            margin-top: 48px;
            padding-top: 24px;
            text-align: center;
            color: rgba(255, 255, 255, 0.35);
            font-size: 0.85rem;
        }

        @media (max-width: 767.98px) {
            .site-footer {
                padding: 48px 0 24px;
            }
            .footer-bottom {
                margin-top: 32px;
            }
        }

/* roulang page: article */
:root{
            --primary:#D09A4E;
            --primary-dark:#B9833A;
            --primary-light:#E6C080;
            --secondary:#2E9E93;
            --secondary-dark:#21857B;
            --accent:#FF6B57;
            --bg-dark:#101820;
            --bg-secondary:#1B2632;
            --bg-card:rgba(255,255,255,0.04);
            --bg-card-hover:rgba(255,255,255,0.07);
            --border-card:rgba(255,255,255,0.08);
            --border-card-hover:rgba(208,154,78,0.4);
            --text-light:#F5F1E8;
            --text-muted:#A8B0B8;
            --text-dark:#2A2E33;
            --bg-warm:#F5F1E8;
            --radius-pill:999px;
            --radius-card:20px;
            --radius-small:8px;
            --radius-image:14px;
            --shadow-card:0 12px 40px rgba(0,0,0,0.3);
            --shadow-card-hover:0 16px 50px rgba(0,0,0,0.45);
            --shadow-warm:0 20px 60px rgba(0,0,0,0.15);
            --spacing-section:88px;
            --spacing-mobile:56px;
            --font-header:"PingFang SC","Microsoft YaHei","Noto Sans SC",-apple-system,sans-serif;
            --font-body:-apple-system,BlinkMacSystemFont,"PingFang SC","Microsoft YaHei",sans-serif;
        }
        *,*::before,*::after{box-sizing:border-box;margin:0;padding:0}
        html{scroll-behavior:smooth}
        body{
            font-family:var(--font-body);
            background:var(--bg-dark);
            color:var(--text-light);
            line-height:1.7;
            overflow-x:hidden;
            background-image:radial-gradient(rgba(255,255,255,0.025) 1px,transparent 1px);
            background-size:4px 4px;
        }
        body::before{
            content:"";
            position:fixed;
            top:-220px;
            right:-140px;
            width:640px;
            height:640px;
            background:radial-gradient(circle,rgba(208,154,78,0.14) 0%,transparent 70%);
            z-index:0;
            pointer-events:none;
        }
        body::after{
            content:"";
            position:fixed;
            bottom:-160px;
            left:-120px;
            width:520px;
            height:520px;
            background:radial-gradient(circle,rgba(46,158,147,0.1) 0%,transparent 70%);
            z-index:0;
            pointer-events:none;
        }
        a{color:inherit;text-decoration:none}
        img{max-width:100%;height:auto}
        .container{max-width:1320px;padding-left:20px;padding-right:20px}

        /* ===== 按钮 ===== */
        .btn{
            border-radius:var(--radius-pill);
            font-weight:600;
            padding:12px 32px;
            transition:all .3s ease;
            border:1px solid transparent;
            font-size:1rem;
        }
        .btn-primary{
            background:linear-gradient(135deg,var(--primary-light),var(--primary) 60%,var(--primary-dark));
            color:#101820;
            border:none;
            box-shadow:0 4px 20px rgba(208,154,78,0.3);
        }
        .btn-primary:hover,.btn-primary:focus{
            background:linear-gradient(135deg,var(--primary),var(--primary-dark));
            color:#101820;
            transform:translateY(-2px);
            box-shadow:0 8px 30px rgba(208,154,78,0.4);
        }
        .btn-outline{
            background:transparent;
            border:1px solid rgba(208,154,78,0.6);
            color:var(--primary-light);
        }
        .btn-outline:hover,.btn-outline:focus{
            background:rgba(208,154,78,0.12);
            border-color:var(--primary);
            color:var(--primary-light);
            transform:translateY(-2px);
        }

        /* ===== 导航 ===== */
        .site-header{
            position:fixed;
            top:16px;
            left:50%;
            transform:translateX(-50%);
            z-index:1000;
            width:calc(100% - 32px);
            max-width:1100px;
        }
        .nav-capsule{
            background:rgba(16,24,32,0.78) !important;
            backdrop-filter:blur(16px);
            -webkit-backdrop-filter:blur(16px);
            border:1px solid rgba(255,255,255,0.08) !important;
            border-radius:var(--radius-pill) !important;
            padding:10px 20px !important;
            box-shadow:0 10px 40px rgba(0,0,0,0.3);
        }
        .brand-logo{
            font-family:var(--font-header);
            font-size:1.3rem;
            font-weight:800;
            background:linear-gradient(135deg,var(--primary-light) 0%,var(--primary) 45%,var(--primary-dark) 100%);
            -webkit-background-clip:text;
            -webkit-text-fill-color:transparent;
            background-clip:text;
            white-space:nowrap;
            letter-spacing:0.5px;
        }
        .nav-capsule .nav-link{
            color:rgba(245,241,232,0.85);
            font-weight:500;
            padding:9px 20px !important;
            border-radius:var(--radius-pill);
            transition:all .3s ease;
            font-size:0.95rem;
        }
        .nav-capsule .nav-link:hover,
        .nav-capsule .nav-link:focus{
            color:var(--primary-light);
            background:rgba(255,255,255,0.06);
        }
        .nav-capsule .nav-link.active{
            background:linear-gradient(135deg,var(--primary-light),var(--primary));
            color:#101820 !important;
            font-weight:700;
            box-shadow:0 4px 16px rgba(208,154,78,0.35);
        }
        .navbar-toggler{
            border:1px solid rgba(208,154,78,0.5);
            background:rgba(208,154,78,0.12);
            border-radius:50%;
            width:46px;
            height:46px;
            display:flex;
            align-items:center;
            justify-content:center;
            padding:0;
        }
        .navbar-toggler:focus{
            box-shadow:0 0 0 3px rgba(208,154,78,0.2);
        }
        .navbar-toggler-icon{
            background-image:url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D09A4E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e") !important;
        }
        @media(max-width:991.98px){
            .navbar-collapse{
                background:rgba(16,24,32,0.95);
                border-radius:20px;
                padding:16px;
                margin-top:12px;
                backdrop-filter:blur(16px);
                border:1px solid rgba(255,255,255,0.08);
            }
            .nav-capsule{max-height:calc(100vh - 40px);overflow-y:auto;}
            .nav-capsule .nav-link{
                padding:12px 16px !important;
                text-align:center;
            }
        }

        /* ===== 面包屑 ===== */
        .breadcrumb-section{
            padding-top:140px;
            padding-bottom:20px;
            position:relative;
            z-index:1;
        }
        .breadcrumb-nav .breadcrumb{
            background:transparent;
            padding:0;
            margin:0;
            justify-content:flex-start;
        }
        .breadcrumb-nav .breadcrumb-item{
            color:var(--text-muted);
            font-size:0.875rem;
        }
        .breadcrumb-nav .breadcrumb-item a{
            color:var(--text-muted);
            transition:color .3s;
        }
        .breadcrumb-nav .breadcrumb-item a:hover{
            color:var(--primary);
        }
        .breadcrumb-nav .breadcrumb-item.active{
            color:var(--primary-light);
            max-width:360px;
            white-space:nowrap;
            overflow:hidden;
            text-overflow:ellipsis;
        }
        .breadcrumb-nav .breadcrumb-item+.breadcrumb-item::before{
            color:rgba(255,255,255,0.3);
        }

        /* ===== 文章头部 ===== */
        .article-hero{
            padding:20px 0 48px;
            position:relative;
            z-index:1;
        }
        .article-h1{
            font-family:var(--font-header);
            font-size:2.8rem;
            font-weight:800;
            line-height:1.3;
            color:var(--text-light);
            max-width:860px;
            margin:20px 0 16px;
            letter-spacing:0.5px;
        }
        .article-meta{
            display:flex;
            flex-wrap:wrap;
            gap:20px;
            color:var(--text-muted);
            font-size:0.9rem;
            margin-top:8px;
        }
        .article-meta span{
            display:inline-flex;
            align-items:center;
            gap:8px;
        }
        .article-meta i{
            color:var(--primary);
        }

        /* ===== 正文区 ===== */
        .article-body-section{
            position:relative;
            z-index:1;
            padding-bottom:0;
        }
        .article-content-card{
            max-width:720px;
            margin:0 auto;
            background:var(--bg-warm);
            color:var(--text-dark);
            border-radius:24px;
            padding:52px 56px;
            box-shadow:var(--shadow-warm);
            line-height:1.9;
        }
        .article-content-card p{
            margin-bottom:1.5em;
            color:var(--text-dark);
            font-size:1.05rem;
            line-height:1.9;
        }
        .article-content-card h1,
        .article-content-card h2,
        .article-content-card h3,
        .article-content-card h4,
        .article-content-card h5{
            font-family:var(--font-header);
            color:#1B2632;
            font-weight:700;
            margin:1.8em 0 0.7em;
            line-height:1.4;
        }
        .article-content-card h2{
            font-size:1.7rem;
            padding-bottom:0.4em;
            border-bottom:2px solid rgba(208,154,78,0.3);
        }
        .article-content-card h3{
            font-size:1.35rem;
        }
        .article-content-card img{
            width:100%;
            border-radius:var(--radius-image);
            margin:1.5em 0;
        }
        .article-content-card a{
            color:var(--secondary);
            text-decoration:underline;
            text-underline-offset:3px;
            transition:color .3s;
        }
        .article-content-card a:hover{
            color:var(--secondary-dark);
        }
        .article-content-card blockquote{
            border-left:4px solid var(--primary);
            padding:0.8em 1.5em;
            background:rgba(208,154,78,0.08);
            border-radius:0 12px 12px 0;
            margin:1.8em 0;
            color:#3E4750;
            font-style:italic;
        }
        .article-content-card ul,
        .article-content-card ol{
            margin:1em 0 1.5em;
            padding-left:1.5em;
        }
        .article-content-card ul li,
        .article-content-card ol li{
            margin-bottom:0.5em;
            color:var(--text-dark);
        }
        .article-content-card pre{
            background:#1B2632;
            color:#E8EDF0;
            padding:20px;
            border-radius:12px;
            overflow-x:auto;
            margin:1.5em 0;
        }
        .article-content-card code{
            background:rgba(0,0,0,0.06);
            padding:2px 8px;
            border-radius:6px;
            font-size:0.9em;
        }
        .article-content-card pre code{
            background:transparent;
            padding:0;
        }
        .article-content-card table{
            width:100%;
            border-collapse:collapse;
            margin:1.5em 0;
        }
        .article-content-card table th,
        .article-content-card table td{
            border:1px solid #D8D2C6;
            padding:12px 16px;
        }
        .article-content-card table th{
            background:rgba(208,154,78,0.1);
            font-weight:700;
        }
        .article-content-card hr{
            border:none;
            border-top:1px solid #E0DCD2;
            margin:2.5em 0;
        }

        /* ===== 空状态 ===== */
        .article-empty{
            text-align:center;
            padding:80px 20px;
        }
        .article-empty i{
            font-size:4rem;
            color:rgba(208,154,78,0.4);
            margin-bottom:20px;
            display:block;
        }
        .article-empty p{
            font-size:1.2rem;
            color:#3E4750;
            margin-bottom:28px;
        }
        .article-empty .btn{
            display:inline-block;
        }

        /* ===== 标签区 ===== */
        .article-tags{
            display:flex;
            flex-wrap:wrap;
            gap:12px;
            justify-content:center;
            max-width:720px;
            margin:36px auto 0;
            position:relative;
            z-index:1;
        }
        .article-tags .tag{
            background:var(--bg-secondary);
            border:1px solid rgba(208,154,78,0.35);
            color:var(--primary);
            padding:8px 22px;
            border-radius:var(--radius-pill);
            font-size:0.875rem;
            font-weight:500;
            transition:all .3s ease;
        }
        .article-tags .tag:hover{
            background:var(--primary);
            color:#101820;
            border-color:var(--primary);
            transform:translateY(-2px);
        }

        /* ===== 相关推荐 ===== */
        .related-section{
            padding:80px 0 20px;
            position:relative;
            z-index:1;
        }
        .related-section .related-title{
            font-family:var(--font-header);
            font-size:2rem;
            font-weight:700;
            color:var(--text-light);
            margin-bottom:36px;
            text-align:center;
            position:relative;
        }
        .related-section .related-title::after{
            content:"";
            display:block;
            width:64px;
            height:4px;
            background:linear-gradient(90deg,var(--primary),transparent);
            border-radius:4px;
            margin:12px auto 0;
        }
        .related-card{
            display:flex;
            gap:18px;
            background:var(--bg-card);
            border:1px solid var(--border-card);
            border-radius:var(--radius-card);
            padding:16px;
            text-decoration:none;
            transition:all .3s ease;
            height:100%;
            backdrop-filter:blur(8px);
        }
        .related-card:hover,.related-card:focus{
            border-color:var(--border-card-hover);
            background:var(--bg-card-hover);
            transform:translateY(-5px);
            box-shadow:var(--shadow-card);
        }
        .related-card .related-img{
            width:112px;
            min-width:112px;
            height:112px;
            border-radius:var(--radius-image);
            overflow:hidden;
            background:var(--bg-secondary);
        }
        .related-card .related-img img{
            width:100%;
            height:100%;
            object-fit:cover;
            transition:transform .5s ease;
        }
        .related-card:hover .related-img img{
            transform:scale(1.06);
        }
        .related-card .related-body{
            display:flex;
            flex-direction:column;
            justify-content:center;
            gap:6px;
        }
        .related-card .related-tag{
            display:inline-block;
            background:rgba(208,154,78,0.18);
            color:var(--primary);
            font-size:0.75rem;
            font-weight:600;
            padding:3px 14px;
            border-radius:var(--radius-pill);
            align-self:flex-start;
        }
        .related-card .related-body h3{
            font-size:1rem;
            font-weight:700;
            color:var(--text-light);
            line-height:1.5;
            margin:0;
            display:-webkit-box;
            -webkit-line-clamp:2;
            -webkit-box-orient:vertical;
            overflow:hidden;
        }
        .related-card .related-body p{
            font-size:0.85rem;
            color:var(--text-muted);
            margin:0;
            line-height:1.6;
            display:-webkit-box;
            -webkit-line-clamp:2;
            -webkit-box-orient:vertical;
            overflow:hidden;
        }
        .related-card .related-date{
            font-size:0.8rem;
            color:rgba(245,241,232,0.5);
        }

        /* ===== 返回栏目 ===== */
        .article-back{
            text-align:center;
            padding:16px 0 8px;
            position:relative;
            z-index:1;
        }
        .article-back a{
            display:inline-flex;
            align-items:center;
            gap:8px;
            color:var(--text-muted);
            font-size:0.95rem;
            font-weight:500;
            padding:10px 24px;
            border:1px solid transparent;
            border-radius:var(--radius-pill);
            transition:all .3s ease;
        }
        .article-back a:hover{
            color:var(--primary);
            border-color:rgba(208,154,78,0.3);
            background:rgba(208,154,78,0.06);
        }

        /* ===== CTA ===== */
        .cta-section{
            margin-top:48px;
            padding:72px 0;
            position:relative;
            z-index:1;
            background:radial-gradient(circle at center,rgba(208,154,78,0.1) 0%,transparent 65%);
            text-align:center;
        }
        .cta-section h2{
            font-family:var(--font-header);
            font-size:2.2rem;
            font-weight:800;
            color:var(--text-light);
            margin-bottom:12px;
        }
        .cta-section p{
            color:var(--text-muted);
            font-size:1.05rem;
            margin-bottom:32px;
        }
        .cta-actions{
            display:flex;
            gap:16px;
            justify-content:center;
            flex-wrap:wrap;
        }

        /* ===== 页脚 ===== */
        .site-footer{
            background:#0C131A;
            border-top:1px solid rgba(255,255,255,0.06);
            padding:64px 0 28px;
            position:relative;
            z-index:1;
        }
        .footer-brand{
            font-family:var(--font-header);
            font-size:1.5rem;
            font-weight:800;
            background:linear-gradient(135deg,var(--primary-light),var(--primary));
            -webkit-background-clip:text;
            -webkit-text-fill-color:transparent;
            background-clip:text;
            margin-bottom:12px;
        }
        .site-footer p{
            color:#7A828A;
            font-size:0.9rem;
            line-height:1.8;
            margin-bottom:10px;
        }
        .site-footer h4{
            color:var(--text-light);
            font-size:1rem;
            font-weight:700;
            margin-bottom:16px;
            font-family:var(--font-header);
        }
        .footer-links{
            list-style:none;
            padding:0;
            margin:0;
        }
        .footer-links li{
            margin-bottom:8px;
        }
        .footer-links a{
            color:#7A828A;
            transition:color .3s;
            font-size:0.92rem;
        }
        .footer-links a:hover{
            color:var(--primary);
        }
        .footer-bottom{
            border-top:1px solid rgba(255,255,255,0.06);
            padding-top:24px;
            margin-top:48px;
            text-align:center;
            color:#5A626A;
            font-size:0.85rem;
        }

        /* ===== 响应式 ===== */
        @media(max-width:991.98px){
            :root{--spacing-section:64px}
            .article-h1{font-size:2.2rem}
            .article-content-card{padding:36px 30px;border-radius:20px}
            .related-card .related-img{width:96px;min-width:96px;height:96px}
        }
        @media(max-width:767.98px){
            :root{--spacing-section:48px}
            .article-h1{font-size:1.8rem}
            .article-meta{gap:12px;font-size:0.82rem}
            .article-content-card{padding:28px 22px}
            .article-content-card p{font-size:1rem}
            .related-section{padding-top:56px}
            .cta-section h2{font-size:1.6rem}
            .site-footer{padding:48px 0 20px}
        }
        @media(max-width:575.98px){
            .breadcrumb-section{padding-top:130px}
            .article-content-card{padding:24px 18px;border-radius:18px}
            .related-card{
                flex-direction:column;
                gap:12px;
            }
            .related-card .related-img{
                width:100%;
                min-width:100%;
                height:180px;
            }
            .related-card .related-body h3{
                -webkit-line-clamp:3;
            }
            .cta-actions .btn{
                width:100%;
            }
        }
        @media(min-width:1200px){
            .article-h1{font-size:3.2rem}
        }

/* roulang page: category2 */
:root {
            --gold: #D09A4E;
            --gold-light: #E8C37E;
            --teal: #2E9E93;
            --coral: #FF6B57;
            --bg-dark: #101820;
            --bg-secondary: #1B2632;
            --bg-card: rgba(255, 255, 255, 0.04);
            --border-card: rgba(255, 255, 255, 0.08);
            --text-main: #F2F4F6;
            --text-muted: #A8B0B8;
            --radius-lg: 20px;
            --radius-sm: 8px;
            --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 16px 50px rgba(0, 0, 0, 0.45);
            --font-main: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, BlinkMacSystemFont, sans-serif;
        }

        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-main);
            background-color: var(--bg-dark);
            color: var(--text-main);
            line-height: 1.75;
            background-image: 
                radial-gradient(ellipse at 20% 10%, rgba(208, 154, 78, 0.08) 0%, transparent 50%),
                radial-gradient(ellipse at 85% 85%, rgba(46, 158, 147, 0.06) 0%, transparent 45%),
                url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noise'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(/%23noise)' opacity='0.03'/%3E%3C/svg%3E");
            background-attachment: fixed;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s ease;
        }

        img {
            max-width: 100%;
            height: auto;
            border-radius: 14px;
        }

        .container {
            max-width: 1320px;
        }

        .section-padding {
            padding: 88px 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 56px 0;
            }
        }

        /* ---------- 导航 ---------- */
        .site-header {
            position: fixed;
            top: 16px;
            left: 0;
            right: 0;
            z-index: 1050;
            pointer-events: none;
        }

        .nav-capsule {
            pointer-events: auto;
            max-width: 1100px;
            margin: 0 auto;
            background: rgba(16, 24, 32, 0.78);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid var(--border-card);
            border-radius: 999px;
            height: 64px;
            padding: 0 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.35);
            transition: box-shadow 0.4s ease, border-color 0.4s ease;
        }

        .nav-capsule:hover {
            border-color: rgba(208, 154, 78, 0.3);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.45);
        }

        .brand-logo {
            font-size: 1.35rem;
            font-weight: 800;
            letter-spacing: 0.02em;
            background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #A9782E 100%);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            white-space: nowrap;
        }

        .nav-capsule .navbar-nav {
            gap: 4px;
        }

        .nav-capsule .nav-link {
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 20px;
            border-radius: 999px;
            transition: all 0.3s ease;
        }

        .nav-capsule .nav-link:hover {
            color: var(--gold-light);
            background: rgba(208, 154, 78, 0.08);
        }

        .nav-capsule .nav-link.active {
            color: #1A1206;
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            font-weight: 700;
        }

        .navbar-toggler {
            border: 2px solid var(--gold) !important;
            border-radius: 50% !important;
            width: 42px;
            height: 42px;
            padding: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(208, 154, 78, 0.15);
        }

        .navbar-toggler-icon {
            color: var(--gold);
            font-size: 1.4rem;
            line-height: 1;
        }

        @media (max-width: 991px) {
            .site-header {
                top: 12px;
                padding: 0 12px;
            }

            .nav-capsule {
                height: auto;
                min-height: 64px;
                border-radius: 24px;
                padding: 12px 16px;
            }

            .navbar-collapse {
                background: rgba(16, 24, 32, 0.95);
                border-radius: 20px;
                padding: 16px;
                margin-top: 12px;
                border: 1px solid var(--border-card);
            }

            .nav-capsule .nav-link {
                padding: 10px 16px;
                border-radius: 12px;
            }
        }

        /* ---------- 页脚 ---------- */
        .site-footer {
            background: var(--bg-secondary);
            padding: 64px 0 32px;
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: auto;
        }

        .footer-brand {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, var(--gold-light), var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
        }

        .site-footer p {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
        }

        .site-footer h4 {
            color: var(--text-main);
            font-size: 1.05rem;
            font-weight: 700;
            margin-bottom: 16px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: var(--text-muted);
            font-size: 0.95rem;
            transition: color 0.3s, padding-left 0.3s;
        }

        .footer-links a:hover {
            color: var(--gold-light);
            padding-left: 6px;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            margin-top: 40px;
            padding-top: 24px;
            text-align: center;
            color: rgba(255, 255, 255, 0.4);
            font-size: 0.85rem;
        }

        /* ---------- Hero ---------- */
        .category-hero {
            position: relative;
            min-height: 50vh;
            display: flex;
            align-items: center;
            justify-content: center;
            text-align: center;
            background-image: linear-gradient(rgba(16, 24, 32, 0.75), rgba(16, 24, 32, 0.85)), url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            padding: 140px 0 60px;
            overflow: hidden;
        }

        .category-hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(ellipse at 50% 80%, rgba(208, 154, 78, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .category-hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-badge {
            display: inline-block;
            background: rgba(46, 158, 147, 0.2);
            border: 1px solid rgba(46, 158, 147, 0.4);
            color: #5AC6BC;
            font-size: 0.85rem;
            font-weight: 600;
            padding: 6px 18px;
            border-radius: 999px;
            margin-bottom: 20px;
            letter-spacing: 0.04em;
        }

        .category-hero h1 {
            font-size: 3.5rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 20px;
        }

        .category-hero h1 .gold-text {
            background: linear-gradient(135deg, var(--gold-light), var(--gold) 60%, #A9782E);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
        }

        .category-hero .divider {
            display: inline-block;
            margin: 0 8px;
            color: rgba(255, 255, 255, 0.3);
            font-weight: 300;
        }

        .category-hero .lead {
            color: var(--text-muted);
            max-width: 700px;
            margin: 0 auto;
            font-size: 1.2rem;
            line-height: 1.9;
        }

        @media (max-width: 768px) {
            .category-hero {
                min-height: 40vh;
                padding: 120px 0 48px;
            }

            .category-hero h1 {
                font-size: 2.2rem;
            }
        }

        /* ---------- 锚点目录 ---------- */
        .anchor-nav {
            background: var(--bg-secondary);
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .anchor-nav .anchor-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            list-style: none;
            margin: 0;
            padding: 0;
        }

        .anchor-nav .anchor-list a {
            display: inline-flex;
            align-items: center;
            padding: 10px 28px;
            border: 1px solid var(--border-card);
            border-radius: 999px;
            background: rgba(255, 255, 255, 0.04);
            color: rgba(255, 255, 255, 0.8);
            font-size: 0.95rem;
            transition: all 0.3s ease;
        }

        .anchor-nav .anchor-list a:hover {
            border-color: var(--gold);
            color: var(--gold-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(208, 154, 78, 0.15);
        }

        /* ---------- 通用标题 ---------- */
        .section-title {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 16px;
        }

        .section-subtitle {
            color: var(--text-muted);
            font-size: 1.05rem;
            max-width: 640px;
            line-height: 1.8;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 1.75rem;
            }
        }

        /* ---------- 口碑亮点：编号列表 + 插图区 ---------- */
        .timeline-section {
            background: var(--bg-dark);
        }

        .timeline-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        @media (max-width: 991px) {
            .timeline-wrapper {
                grid-template-columns: 1fr;
                gap: 48px;
            }
        }

        .timeline-list {
            position: relative;
            padding-left: 0;
            list-style: none;
            margin: 0;
        }

        .timeline-list::before {
            content: '';
            position: absolute;
            left: 28px;
            top: 24px;
            bottom: 24px;
            width: 2px;
            background: linear-gradient(180deg, var(--gold) 0%, rgba(208, 154, 78, 0.2) 100%);
        }

        .timeline-item {
            position: relative;
            padding-left: 76px;
            padding-bottom: 36px;
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-num {
            position: absolute;
            left: 0;
            top: 0;
            width: 58px;
            height: 58px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.4rem;
            font-weight: 800;
            color: var(--gold);
            background: rgba(208, 154, 78, 0.08);
            border: 1px solid rgba(208, 154, 78, 0.35);
            border-radius: 16px;
            z-index: 1;
            backdrop-filter: blur(4px);
        }

        .timeline-item h3 {
            font-size: 1.35rem;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .timeline-item p {
            color: var(--text-muted);
            font-size: 1rem;
            line-height: 1.8;
            margin-bottom: 0;
        }

        .timeline-item .tag-list {
            margin-top: 12px;
        }

        .tag-list .badge {
            background: rgba(46, 158, 147, 0.15);
            color: #5AC6BC;
            border: 1px solid rgba(46, 158, 147, 0.3);
            border-radius: 999px;
            font-weight: 500;
            font-size: 0.82rem;
            padding: 6px 14px;
            margin-right: 8px;
        }

        .timeline-media {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            transition: transform 0.5s ease, box-shadow 0.5s ease;
        }

        .timeline-media:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-hover);
        }

        .timeline-media img {
            width: 100%;
            height: 520px;
            object-fit: cover;
            border-radius: var(--radius-lg);
        }

        .timeline-media .media-overlay {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            padding: 40px 24px 24px;
            background: linear-gradient(180deg, transparent, rgba(16, 24, 32, 0.9));
        }

        .timeline-media .media-overlay .overlay-label {
            display: inline-block;
            background: var(--gold);
            color: #1A1206;
            font-size: 0.8rem;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 999px;
            margin-bottom: 10px;
        }

        .timeline-media .media-overlay p {
            margin: 0;
            font-size: 1.1rem;
            font-weight: 600;
        }

        @media (max-width: 768px) {
            .timeline-media img {
                height: 360px;
            }
        }

        /* ---------- 相关资源 ---------- */
        .resource-section {
            background: var(--bg-secondary);
        }

        .resource-list .list-item {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 24px;
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid var(--border-card);
            border-radius: var(--radius-lg);
            margin-bottom: 16px;
            transition: border-color 0.3s, transform 0.3s, box-shadow 0.3s;
        }

        .resource-list .list-item:hover {
            border-color: rgba(208, 154, 78, 0.35);
            transform: translateY(-4px);
            box-shadow: var(--shadow-card);
        }

        .resource-list .item-thumb {
            flex-shrink: 0;
            width: 120px;
            height: 90px;
            border-radius: 12px;
            overflow: hidden;
        }

        .resource-list .item-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .resource-list .item-body {
            flex: 1;
        }

        .resource-list .item-cat {
            display: inline-block;
            font-size: 0.75rem;
            font-weight: 600;
            color: var(--gold);
            background: rgba(208, 154, 78, 0.12);
            border-radius: 999px;
            padding: 3px 12px;
            margin-bottom: 8px;
        }

        .resource-list .item-body h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 6px;
            line-height: 1.4;
        }

        .resource-list .item-body p {
            color: var(--text-muted);
            font-size: 0.92rem;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .resource-list .item-meta {
            font-size: 0.82rem;
            color: rgba(255, 255, 255, 0.45);
        }

        @media (max-width: 576px) {
            .resource-list .list-item {
                flex-direction: column;
                gap: 16px;
                align-items: flex-start;
            }

            .resource-list .item-thumb {
                width: 100%;
                height: 180px;
            }
        }

        /* ---------- 按钮 ---------- */
        .btn-gold {
            background: linear-gradient(135deg, var(--gold), var(--gold-light));
            border-color: transparent;
            color: #1A1206 !important;
            font-weight: 600;
            padding: 12px 40px;
            border-radius: 999px;
            transition: all 0.3s ease;
            box-shadow: 0 8px 24px rgba(208, 154, 78, 0.25);
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 12px 32px rgba(208, 154, 78, 0.35);
            color: #1A1206 !important;
        }

        .btn-outline-gold {
            background: transparent;
            border: 2px solid var(--gold);
            color: var(--gold-light) !important;
            font-weight: 600;
            padding: 12px 40px;
            border-radius: 999px;
            transition: all 0.3s ease;
        }

        .btn-outline-gold:hover {
            background: rgba(208, 154, 78, 0.1);
            transform: translateY(-2px);
        }

        /* ---------- CTA ---------- */
        .cta-section {
            position: relative;
            padding: 88px 0;
            background: linear-gradient(135deg, rgba(208, 154, 78, 0.12) 0%, transparent 40%),
                        radial-gradient(ellipse at 80% 50%, rgba(46, 158, 147, 0.1) 0%, transparent 55%);
        }

        .cta-section .section-title {
            font-size: 2rem;
        }

        /* ---------- FAQ ---------- */
        .faq-section {
            background: var(--bg-dark);
        }

        .accordion-item {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid transparent;
            border-radius: var(--radius-lg) !important;
            margin-bottom: 16px;
            overflow: hidden;
            transition: border-color 0.3s;
        }

        .accordion-item[aria-expanded="true"] {
            border-color: rgba(208, 154, 78, 0.3);
        }

        .accordion-button {
            background: transparent;
            color: var(--text-main);
            font-size: 1.05rem;
            font-weight: 600;
            padding: 20px 24px;
            box-shadow: none;
        }

        .accordion-button:not(.collapsed) {
            color: var(--gold-light);
            background: rgba(208, 154, 78, 0.05);
        }

        .accordion-button:focus {
            box-shadow: none;
            border-color: rgba(208, 154, 78, 0.4);
        }

        .accordion-button::after {
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' fill='%23D09A4E' viewBox='0 0 16 16'%3E%3Cpath d='M8 4a.5.5 0 0 1 .5.5v3h3a.5.5 0 0 1 0 1h-3v3a.5.5 0 0 1-1 0v-3h-3a.5.5 0 0 1 0-1h3v-3A.5.5 0 0 1 8 4z'/%3E%3C/svg%3E");
        }

        .accordion-body {
            color: var(--text-muted);
            font-size: 0.95rem;
            line-height: 1.8;
            padding: 0 24px 24px;
        }

        /* ---------- 吸底条 ---------- */
        .mobile-cta-bar {
            display: none;
        }

        @media (max-width: 768px) {
            .mobile-cta-bar {
                display: block;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                z-index: 1080;
                background: rgba(16, 24, 32, 0.92);
                backdrop-filter: blur(12px);
                padding: 10px 16px;
                border-top: 1px solid rgba(255, 255, 255, 0.08);
            }

            .mobile-cta-bar .btn {
                width: 100%;
                padding-top: 14px;
                padding-bottom: 14px;
            }
        }

        /* ---------- 通用响应式 ---------- */
        @media (max-width: 768px) {
            .section-title {
                font-size: 1.75rem;
            }

            .timeline-list::before {
                left: 22px;
            }

            .timeline-num {
                width: 46px;
                height: 46px;
                font-size: 1.1rem;
                border-radius: 12px;
            }

            .timeline-item {
                padding-left: 60px;
                padding-bottom: 28px;
            }

            .timeline-item h3 {
                font-size: 1.15rem;
            }

            .cta-section {
                padding: 56px 0;
            }
        }

        @media (max-width: 576px) {
            .category-hero h1 {
                font-size: 1.85rem;
            }

            .anchor-nav .anchor-list a {
                padding: 8px 18px;
                font-size: 0.88rem;
            }

            .btn-gold,
            .btn-outline-gold {
                padding: 10px 28px;
                font-size: 0.95rem;
            }
        }

/* roulang page: category3 */
:root {
            --bg-primary: #101820;
            --bg-secondary: #1B2632;
            --bg-card: rgba(255, 255, 255, 0.04);
            --border-card: rgba(255, 255, 255, 0.08);
            --gold: #D09A4E;
            --gold-deep: #A97B32;
            --teal: #2E9E93;
            --coral: #FF6B57;
            --text-light: #F7F3EC;
            --text-body: #E4E8EC;
            --text-muted: #A8B0B8;
            --radius-card: 20px;
            --radius-small: 8px;
            --radius-round: 999px;
            --shadow-card: 0 12px 40px rgba(0, 0, 0, 0.3);
            --shadow-hover: 0 16px 50px rgba(0, 0, 0, 0.45);
            --font-scale: 1.125rem;
        }
        * {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 110px;
        }
        body {
            background: var(--bg-primary);
            color: var(--text-body);
            font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "Noto Sans SC", sans-serif;
            font-size: var(--font-scale);
            line-height: 1.9;
            margin: 0;
            overflow-x: hidden;
        }
        a {
            color: var(--gold);
            text-decoration: none;
            transition: all .25s ease;
        }
        a:hover {
            color: #E4B875;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 14px;
        }
        .container {
            max-width: 1320px;
            padding-left: 24px;
            padding-right: 24px;
        }
        .section-pad {
            padding-top: 88px;
            padding-bottom: 88px;
        }
        .text-gold {
            color: var(--gold) !important;
        }
        .text-muted {
            color: var(--text-muted) !important;
        }

        /* ========== 按钮 ========== */
        .btn {
            border-radius: var(--radius-round);
            font-weight: 600;
            font-size: 1rem;
            padding: 0.65rem 1.6rem;
            transition: all .3s ease;
            border: 1px solid transparent;
        }
        .btn-gold {
            background: linear-gradient(135deg, #E4B875 0%, var(--gold) 50%, var(--gold-deep) 100%);
            color: #101820;
            border: none;
            box-shadow: 0 8px 24px rgba(208, 154, 78, 0.25);
        }
        .btn-gold:hover {
            color: #101820;
            box-shadow: 0 10px 30px rgba(208, 154, 78, 0.35);
            transform: translateY(-2px);
        }
        .btn-outline-gold {
            background: transparent;
            border: 1px solid rgba(208, 154, 78, 0.7);
            color: var(--gold);
        }
        .btn-outline-gold:hover {
            background: rgba(208, 154, 78, 0.1);
            color: #E4B875;
            border-color: #E4B875;
            transform: translateY(-2px);
        }
        .btn-teal {
            background: var(--teal);
            color: #0A1218;
            border: none;
        }
        .btn-teal:hover {
            background: #3CB5AB;
            color: #0A1218;
        }
        .btn:focus,
        .btn-ghost:focus {
            box-shadow: 0 0 0 4px rgba(208, 154, 78, 0.2);
            outline: none;
        }

        /* ========== 导航 ========== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            padding: 16px 20px 0;
            pointer-events: none;
        }
        .nav-capsule {
            max-width: 1180px;
            margin: 0 auto;
            min-height: 64px;
            border-radius: var(--radius-round);
            background: rgba(16, 24, 32, 0.8);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border: 1px solid rgba(255, 255, 255, 0.08);
            padding: 0 12px;
            box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
            pointer-events: auto;
        }
        .navbar-brand.brand-logo {
            font-size: 1.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #E4B875, var(--gold) 50%, var(--gold-deep));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .navbar-brand.brand-logo:hover {
            opacity: 0.85;
        }
        .nav-capsule .nav-link {
            color: #C6CDD3;
            border-radius: var(--radius-round);
            font-weight: 500;
            padding: 8px 18px;
            margin: 0 2px;
            font-size: 0.95rem;
            transition: all .3s ease;
        }
        .nav-capsule .nav-link:hover {
            color: var(--text-light);
            background: rgba(255, 255, 255, 0.06);
        }
        .nav-capsule .nav-link.active {
            background: linear-gradient(135deg, #E4B875, var(--gold));
            color: #101820;
            font-weight: 700;
            box-shadow: 0 4px 20px rgba(208, 154, 78, 0.3);
        }
        .navbar-toggler {
            border: 1px solid rgba(208, 154, 78, 0.6);
            border-radius: 50%;
            width: 44px;
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: transparent;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%23D09A4E' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
            width: 1.2em;
            height: 1.2em;
        }
        .navbar-collapse {
            background: rgba(16, 24, 32, 0.95);
            border-radius: 20px;
            padding: 12px;
            margin-top: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }
        .navbar-collapse .nav-link {
            padding: 10px 16px;
        }

        /* ========== 分类 Hero ========== */
        .category-hero {
            position: relative;
            min-height: 52vh;
            display: flex;
            align-items: center;
            padding: 140px 0 80px;
            background: linear-gradient(135deg, rgba(16, 24, 32, 0.94) 20%, rgba(16, 24, 32, 0.6) 55%, rgba(27, 38, 50, 0.85) 100%),
                url('/assets/images/backpic/back-3.webp') center center / cover no-repeat;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(180deg, transparent, var(--bg-primary));
        }
        .category-hero .container {
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(46, 158, 147, 0.15);
            border: 1px solid rgba(46, 158, 147, 0.4);
            color: #79D5CC;
            border-radius: var(--radius-round);
            padding: 4px 16px;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 20px;
        }
        .category-hero h1 {
            font-size: 3.4rem;
            font-weight: 800;
            color: var(--text-light);
            line-height: 1.2;
            margin-bottom: 20px;
        }
        .category-hero h1 .gold-text {
            background: linear-gradient(135deg, #E4B875, var(--gold) 55%, #B78A45);
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
        }
        .category-hero .hero-subtitle {
            font-size: 1.15rem;
            color: var(--text-muted);
            max-width: 650px;
            margin-bottom: 28px;
            line-height: 1.9;
        }
        .hero-actions .btn {
            margin-right: 12px;
            margin-bottom: 8px;
        }

        /* ========== 锚点目录 ========== */
        .anchor-nav {
            padding: 28px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            background: rgba(16, 24, 32, 0.7);
        }
        .anchor-nav .anchor-list {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .anchor-nav .anchor-list a {
            display: inline-block;
            padding: 8px 24px;
            border-radius: var(--radius-round);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: var(--text-body);
            font-weight: 500;
            font-size: 0.95rem;
            transition: all .3s ease;
        }
        .anchor-nav .anchor-list a:hover {
            border-color: rgba(208, 154, 78, 0.6);
            background: rgba(208, 154, 78, 0.1);
            color: var(--gold);
        }

        /* ========== 两列清单 ========== */
        .dual-list-section {
            padding: 80px 0;
            background: var(--bg-secondary);
            position: relative;
        }
        .section-title-wrap {
            margin-bottom: 44px;
        }
        .section-title-wrap .tagline {
            color: var(--teal);
            font-size: 0.9rem;
            font-weight: 600;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            display: inline-block;
            margin-bottom: 10px;
        }
        .section-title-wrap h2 {
            font-size: 2.25rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 12px;
        }
        .section-title-wrap p {
            color: var(--text-muted);
            max-width: 640px;
            font-size: 1.05rem;
        }
        .dual-list-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
        }
        .list-card-block {
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 24px;
            padding: 36px 36px 28px;
            transition: all .3s ease;
        }
        .list-card-block:hover {
            border-color: rgba(208, 154, 78, 0.35);
            box-shadow: var(--shadow-card);
        }
        .list-card-block .list-card-title {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 1.35rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 24px;
        }
        .list-card-block .list-card-title i {
            color: var(--gold);
            font-size: 1.4rem;
        }
        .list-card-block .list-card-title.teal i {
            color: var(--teal);
        }
        .list-group-line {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .list-group-line>li {
            padding: 14px 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
            display: flex;
            gap: 14px;
        }
        .list-group-line>li:last-child {
            border-bottom: none;
        }
        .list-group-line .item-index {
            flex-shrink: 0;
            width: 34px;
            height: 34px;
            border-radius: 50%;
            background: rgba(208, 154, 78, 0.15);
            border: 1px solid rgba(208, 154, 78, 0.3);
            color: var(--gold);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 0.85rem;
            margin-top: 2px;
        }
        .list-group-line .item-content h4 {
            font-size: 1.02rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 4px;
        }
        .list-group-line .item-content p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
            line-height: 1.7;
        }

        /* ========== 底部卡片条 ========== */
        .info-strip-section {
            padding: 80px 0;
            background: var(--bg-primary);
            position: relative;
        }
        .info-strip-section::before {
            content: '';
            position: absolute;
            top: -40px;
            right: -80px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(208, 154, 78, 0.12) 0%, transparent 70%);
            pointer-events: none;
        }
        .info-strip-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            margin-top: 16px;
        }
        .strip-card {
            background: var(--bg-card);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 20px;
            padding: 28px;
            transition: all .3s ease;
            position: relative;
            overflow: hidden;
        }
        .strip-card::after {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--teal));
            opacity: 0;
            transition: opacity .3s ease;
        }
        .strip-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(208, 154, 78, 0.3);
        }
        .strip-card:hover::after {
            opacity: 1;
        }
        .strip-card img {
            width: 60px;
            height: 60px;
            object-fit: cover;
            border-radius: 14px;
            margin-bottom: 18px;
        }
        .strip-card .strip-icon {
            width: 56px;
            height: 56px;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
            margin-bottom: 18px;
            background: rgba(208, 154, 78, 0.15);
            color: var(--gold);
        }
        .strip-card:nth-child(2) .strip-icon {
            background: rgba(46, 158, 147, 0.15);
            color: var(--teal);
        }
        .strip-card:nth-child(3) .strip-icon {
            background: rgba(255, 107, 87, 0.15);
            color: var(--coral);
        }
        .strip-card h3 {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 10px;
        }
        .strip-card p {
            font-size: 0.92rem;
            color: var(--text-muted);
            line-height: 1.75;
            margin: 0;
        }

        /* ========== 相关资讯列表 ========== */
        .resources-section {
            padding: 80px 0;
            background: var(--bg-secondary);
        }
        .news-list-card {
            background: rgba(255, 255, 255, 0.035);
            border: 1px solid rgba(255, 255, 255, 0.07);
            border-radius: 18px;
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 20px;
            margin-bottom: 16px;
            transition: all .3s ease;
        }
        .news-list-card:hover {
            border-color: rgba(208, 154, 78, 0.35);
            background: rgba(255, 255, 255, 0.05);
            transform: translateX(4px);
        }
        .news-list-card .news-thumb {
            width: 120px;
            height: 80px;
            flex-shrink: 0;
            object-fit: cover;
            border-radius: 12px;
        }
        .news-list-card .news-body {
            flex: 1;
            min-width: 0;
        }
        .news-list-card .news-body h4 {
            font-size: 1.08rem;
            font-weight: 600;
            color: var(--text-light);
            margin-bottom: 4px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .news-list-card .news-body p {
            font-size: 0.9rem;
            color: var(--text-muted);
            margin: 0;
            overflow: hidden;
            text-overflow: ellipsis;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
        }
        .news-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-top: 6px;
            flex-wrap: wrap;
        }
        .news-meta .badge-cat {
            background: rgba(208, 154, 78, 0.15);
            color: var(--gold);
            border-radius: 6px;
            font-size: 0.75rem;
            font-weight: 600;
            padding: 2px 10px;
            display: inline-block;
        }
        .news-meta .badge-date {
            color: var(--text-muted);
            font-size: 0.82rem;
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: 80px 0;
            background: var(--bg-primary);
        }
        .custom-accordion .accordion-item {
            background: rgba(255, 255, 255, 0.03);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 16px;
            margin-bottom: 14px;
            overflow: hidden;
            transition: border-color .3s ease;
        }
        .custom-accordion .accordion-item:has(.accordion-button:not(.collapsed)) {
            border-color: rgba(208, 154, 78, 0.35);
        }
        .custom-accordion .accordion-button {
            background: transparent;
            color: var(--text-light);
            font-weight: 600;
            font-size: 1.05rem;
            padding: 20px 24px;
            box-shadow: none;
        }
        .custom-accordion .accordion-button:focus {
            box-shadow: none;
            border-color: transparent;
        }
        .custom-accordion .accordion-button:not(.collapsed) {
            background: rgba(208, 154, 78, 0.06);
            color: var(--gold);
        }
        .custom-accordion .accordion-button::after {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 16 16' fill='%23D09A4E'%3e%3cpath fill-rule='evenodd' d='M1.646 4.646a.5.5 0 0 1 .708 0L8 10.293l5.646-5.647a.5.5 0 0 1 .708.708l-6 6a.5.5 0 0 1-.708 0l-6-6a.5.5 0 0 1 0-.708z'/%3e%3c/svg%3e");
        }
        .custom-accordion .accordion-body {
            color: var(--text-muted);
            font-size: 0.98rem;
            line-height: 1.85;
            padding: 0 24px 20px;
        }

        /* ========== CTA ========== */
        .cta-section {
            padding: 80px 0;
            background: var(--bg-primary);
            text-align: center;
            position: relative;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 700px;
            height: 300px;
            background: radial-gradient(ellipse, rgba(208, 154, 78, 0.15), transparent 70%);
            pointer-events: none;
        }
        .cta-box {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            border-radius: 32px;
            padding: 48px 32px;
            position: relative;
            z-index: 2;
            max-width: 900px;
            margin: 0 auto;
        }
        .cta-box h2 {
            font-size: 2rem;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 16px;
        }
        .cta-box p {
            color: var(--text-muted);
            font-size: 1.05rem;
            margin-bottom: 28px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-box .btn {
            margin: 0 8px 8px;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: #0B1116;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 64px 0 0;
            color: var(--text-muted);
        }
        .footer-brand {
            font-size: 1.5rem;
            font-weight: 800;
            background: linear-gradient(135deg, #E4B875, var(--gold));
            -webkit-background-clip: text;
            background-clip: text;
            -webkit-text-fill-color: transparent;
            color: transparent;
            margin-bottom: 12px;
        }
        .site-footer p {
            font-size: 0.95rem;
            line-height: 1.8;
            margin-bottom: 10px;
        }
        .site-footer h4 {
            font-size: 1.05rem;
            color: var(--text-light);
            font-weight: 600;
            margin-bottom: 18px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: var(--text-muted);
            font-size: 0.95rem;
        }
        .footer-links a:hover {
            color: var(--gold);
            padding-left: 4px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            padding: 20px 0;
            margin-top: 40px;
            text-align: center;
            font-size: 0.85rem;
            color: rgba(168, 176, 184, 0.6);
        }

        /* ========== 移动端适配 ========== */
        @media (max-width: 991.98px) {
            .section-pad {
                padding-top: 56px;
                padding-bottom: 56px;
            }
            .category-hero {
                min-height: auto;
                padding: 110px 0 60px;
            }
            .category-hero h1 {
                font-size: 2.5rem;
            }
            .category-hero .hero-subtitle {
                font-size: 1rem;
            }
            .dual-list-wrapper {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .info-strip-grid {
                grid-template-columns: 1fr;
            }
            .news-list-card {
                flex-direction: column;
                align-items: flex-start;
                gap: 12px;
            }
            .news-list-card .news-thumb {
                width: 100%;
                height: 160px;
            }
            .news-list-card .news-body h4 {
                white-space: normal;
            }
            .site-header {
                padding: 10px 10px 0;
            }
            .nav-capsule {
                padding: 0 10px;
            }
        }
        @media (max-width: 767.98px) {
            body {
                font-size: 1rem;
            }
            .category-hero h1 {
                font-size: 2rem;
            }
            .hero-actions .btn {
                display: block;
                width: 100%;
                margin: 0 0 12px;
            }
            .section-title-wrap h2 {
                font-size: 1.65rem;
            }
            .list-card-block {
                padding: 24px 20px;
            }
            .cta-box {
                padding: 32px 20px;
            }
            .cta-box h2 {
                font-size: 1.5rem;
            }
        }
        @media (max-width: 575.98px) {
            .container {
                padding-left: 18px;
                padding-right: 18px;
            }
            .anchor-nav .anchor-list a {
                padding: 6px 16px;
                font-size: 0.85rem;
            }
            .list-group-line .item-index {
                width: 30px;
                height: 30px;
                font-size: 0.8rem;
            }
        }
