/* roulang page: index */
:root {
            --primary: #0B3D2E;
            --primary-light: rgba(11, 61, 46, 0.05);
            --primary-light-2: rgba(11, 61, 46, 0.1);
            --primary-dark: #0A2F23;
            --accent: #C8A24B;
            --accent-hover: #B08D35;
            --danger: #8B1E2D;
            --bg: #F7F3EB;
            --card-bg: #FFFFFF;
            --text-main: #1A1A1A;
            --text-sub: #595959;
            --text-light: #F7F3EB;
            --border-color: #E5DFD3;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --radius-xl: 12px;
            --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
            --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
            --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.12);
            --font-stack: 'Noto Sans SC', '思源黑体', '微软雅黑', sans-serif;
            --nav-height: 76px;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }

        body {
            font-family: var(--font-stack);
            background-color: var(--bg);
            color: var(--text-main);
            line-height: 1.8;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            outline: none;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        ::selection {
            background-color: var(--accent);
            color: var(--text-main);
        }

        /* Container */
        .container-qmh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .container-qmh {
                padding: 0 16px;
            }
        }

        @media (max-width: 480px) {
            .container-qmh {
                padding: 0 12px;
            }
        }

        /* Magazine Header/Nav */
        .magazine-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--bg);
            border-bottom: 2px solid rgba(200, 162, 75, 0.4);
            height: var(--nav-height);
            transition: box-shadow 0.3s ease, background 0.3s ease;
        }
        .magazine-header.scrolled {
            box-shadow: 0 2px 16px rgba(26, 26, 26, 0.08);
            background: rgba(247, 243, 235, 0.97);
        }
        .magazine-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 16px;
        }
        .magazine-logo {
            font-size: 30px;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: 0.05em;
            white-space: nowrap;
            transition: color 0.25s ease;
            line-height: 1.2;
        }
        .magazine-logo:hover {
            color: var(--accent-hover);
        }
        .magazine-logo .logo-accent {
            color: var(--accent);
        }
        @media (max-width: 480px) {
            .magazine-logo {
                font-size: 24px;
            }
        }

        .magazine-nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .magazine-nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-sub);
            padding: 4px 0;
            position: relative;
            transition: color 0.25s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .magazine-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
            border-radius: 1px;
        }
        .magazine-nav-links a:hover {
            color: var(--primary);
        }
        .magazine-nav-links a:hover::after {
            width: 100%;
        }
        .magazine-nav-links a.active {
            color: var(--primary);
            font-weight: 700;
        }
        .magazine-nav-links a.active::after {
            width: 100%;
        }
        .magazine-nav-divider {
            width: 1px;
            height: 20px;
            background: rgba(200, 162, 75, 0.5);
            flex-shrink: 0;
        }

        /* Hamburger */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            transition: all 0.25s ease;
        }
        .hamburger-menu:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }
        .hamburger-menu span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
            transition: all 0.3s ease;
        }
        .hamburger-menu.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger-menu.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger-menu.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: var(--card-bg);
            border-bottom: 2px solid var(--border-color);
            box-shadow: var(--shadow-md);
            padding: 16px 24px;
            z-index: 999;
            flex-direction: column;
            gap: 12px;
            max-height: calc(100vh - var(--nav-height));
            overflow-y: auto;
        }
        .mobile-nav-panel.open {
            display: flex;
        }
        .mobile-nav-panel a {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            padding: 10px 12px;
            border-radius: var(--radius-sm);
            transition: all 0.25s ease;
            border: 1px solid transparent;
        }
        .mobile-nav-panel a:hover {
            background: var(--primary-light);
            border-color: var(--primary-light-2);
            color: var(--primary);
        }
        .mobile-nav-panel a.active {
            background: var(--primary);
            color: var(--text-light);
        }

        @media (max-width: 768px) {
            .magazine-nav-links {
                display: none;
            }
            .magazine-nav-divider {
                display: none;
            }
            .hamburger-menu {
                display: flex;
            }
        }

        /* Hero Section */
        .hero-qmh {
            position: relative;
            min-height: 75vh;
            display: flex;
            align-items: center;
            background: var(--primary);
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            padding: calc(var(--nav-height) + 48px) 0 48px 0;
            margin-top: var(--nav-height);
        }
        .hero-qmh::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(to bottom, rgba(11, 61, 46, 0.88) 0%, rgba(11, 61, 46, 0.72) 50%, rgba(11, 61, 46, 0.9) 100%);
            z-index: 1;
        }
        .hero-qmh::after {
            content: '';
            position: absolute;
            inset: 0;
            background-image: repeating-linear-gradient(45deg, rgba(255, 255, 255, 0.02) 0px, rgba(255, 255, 255, 0.02) 2px, transparent 2px, transparent 8px);
            pointer-events: none;
            z-index: 1;
        }
        .hero-qmh .container-qmh {
            position: relative;
            z-index: 2;
            width: 100%;
        }
        .hero-content {
            max-width: 680px;
        }
        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(200, 162, 75, 0.18);
            border: 1px solid rgba(200, 162, 75, 0.5);
            color: var(--accent);
            font-size: 13px;
            font-weight: 700;
            padding: 6px 16px;
            border-radius: 999px;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            margin-bottom: 20px;
            backdrop-filter: blur(4px);
        }
        .hero-title {
            font-size: 42px;
            font-weight: 900;
            color: var(--text-light);
            line-height: 1.25;
            margin-bottom: 20px;
            letter-spacing: -0.01em;
        }
        @media (max-width: 768px) {
            .hero-title {
                font-size: 30px;
            }
        }
        @media (max-width: 480px) {
            .hero-title {
                font-size: 24px;
            }
        }
        .hero-subtitle {
            font-size: 17px;
            font-weight: 400;
            color: rgba(247, 243, 235, 0.85);
            line-height: 1.8;
            margin-bottom: 32px;
            max-width: 560px;
        }
        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-bottom: 40px;
        }
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--accent);
            color: var(--text-main);
            font-weight: 700;
            font-size: 15px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            min-height: 48px;
            letter-spacing: 0.02em;
            border: 2px solid transparent;
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(200, 162, 75, 0.35);
        }
        .btn-primary:focus-visible {
            outline: 3px solid rgba(200, 162, 75, 0.5);
            outline-offset: 3px;
        }
        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--text-light);
            font-weight: 600;
            font-size: 15px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            min-height: 48px;
            letter-spacing: 0.02em;
            border: 2px solid rgba(247, 243, 235, 0.5);
        }
        .btn-outline-light:hover {
            background: rgba(247, 243, 235, 0.1);
            border-color: var(--text-light);
            transform: translateY(-2px);
        }
        .btn-outline-light:focus-visible {
            outline: 3px solid rgba(247, 243, 235, 0.3);
            outline-offset: 3px;
        }
        .hero-stats {
            display: flex;
            gap: 32px;
            flex-wrap: wrap;
            border-top: 1px solid rgba(247, 243, 235, 0.2);
            padding-top: 24px;
        }
        .hero-stat-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .hero-stat-number {
            font-size: 36px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
        }
        .hero-stat-label {
            font-size: 13px;
            color: rgba(247, 243, 235, 0.7);
            font-weight: 500;
        }
        .hero-countdown {
            display: flex;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            background: rgba(0, 0, 0, 0.3);
            border-radius: var(--radius-lg);
            padding: 16px 24px;
            backdrop-filter: blur(6px);
            border: 1px solid rgba(200, 162, 75, 0.3);
        }
        .hero-countdown-label {
            font-size: 13px;
            color: var(--accent);
            font-weight: 700;
            letter-spacing: 0.06em;
            text-transform: uppercase;
        }
        .hero-countdown-time {
            display: flex;
            gap: 8px;
            align-items: center;
        }
        .hero-countdown-time span {
            font-size: 20px;
            font-weight: 800;
            color: var(--text-light);
            background: rgba(247, 243, 235, 0.1);
            padding: 6px 10px;
            border-radius: var(--radius-sm);
            min-width: 40px;
            text-align: center;
            letter-spacing: 0.04em;
        }
        .hero-countdown-time .colon {
            font-size: 18px;
            color: var(--accent);
            font-weight: 700;
            background: none;
            padding: 0;
            min-width: auto;
        }
        @media (max-width: 480px) {
            .hero-countdown {
                padding: 12px 16px;
                gap: 8px;
            }
            .hero-countdown-time span {
                font-size: 16px;
                min-width: 32px;
                padding: 4px 6px;
            }
        }

        /* Section Base */
        .section-qmh {
            padding: 72px 0;
            position: relative;
        }
        @media (max-width: 768px) {
            .section-qmh {
                padding: 48px 0;
            }
        }
        @media (max-width: 480px) {
            .section-qmh {
                padding: 40px 0;
            }
        }
        .section-qmh-alt {
            background: var(--card-bg);
        }
        .section-qmh-dark {
            background: var(--primary);
            color: var(--text-light);
        }
        .section-qmh-dark h2,
        .section-qmh-dark h3 {
            color: var(--text-light);
        }
        .section-qmh-dark p {
            color: rgba(247, 243, 235, 0.85);
        }

        .section-heading {
            margin-bottom: 40px;
        }
        .section-heading h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.4;
            margin-bottom: 12px;
        }
        .section-heading p {
            font-size: 15px;
            color: var(--text-sub);
            line-height: 1.9;
            max-width: 720px;
        }
        .section-qmh-dark .section-heading h2 {
            color: var(--text-light);
        }
        .section-qmh-dark .section-heading p {
            color: rgba(247, 243, 235, 0.75);
        }
        .section-heading .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 0.06em;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        /* Category Entry Grid */
        .category-entry-grid {
            display: grid;
            grid-template-columns: repeat(7, 1fr);
            gap: 16px;
        }
        @media (max-width: 1024px) {
            .category-entry-grid {
                grid-template-columns: repeat(4, 1fr);
            }
        }
        @media (max-width: 768px) {
            .category-entry-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
            }
        }
        @media (max-width: 480px) {
            .category-entry-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
            }
        }
        .category-entry-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            padding: 20px 16px;
            text-align: center;
            transition: all 0.3s ease;
            cursor: pointer;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 8px;
            box-shadow: var(--shadow-sm);
        }
        .category-entry-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .category-entry-card .cat-icon {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--primary);
            transition: all 0.3s ease;
            font-weight: 700;
        }
        .category-entry-card:hover .cat-icon {
            background: var(--primary);
            color: var(--accent);
        }
        .category-entry-card .cat-name {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.3;
        }
        .category-entry-card .cat-count {
            font-size: 11px;
            color: var(--text-sub);
            font-weight: 500;
        }

        /* Resource List */
        .resource-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
        }
        @media (max-width: 768px) {
            .resource-list {
                grid-template-columns: 1fr;
            }
        }
        .resource-item {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 20px;
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }
        .resource-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-2px);
        }
        .resource-item .res-icon {
            width: 48px;
            height: 48px;
            flex-shrink: 0;
            border-radius: var(--radius-md);
            background: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-weight: 800;
            font-size: 18px;
        }
        .resource-item .res-info h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
        }
        .resource-item .res-info p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.8;
        }

        /* News Section */
        .news-layout {
            display: grid;
            grid-template-columns: 1.6fr 1fr;
            gap: 32px;
        }
        @media (max-width: 900px) {
            .news-layout {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
        }
        .news-item {
            display: flex;
            flex-direction: column;
            gap: 8px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        .news-item:hover .news-title {
            color: var(--primary);
        }
        .news-item:first-child {
            border-top: 2px solid var(--accent);
        }
        .news-date {
            font-size: 12px;
            color: var(--text-sub);
            font-weight: 500;
            letter-spacing: 0.03em;
        }
        .news-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.5;
            transition: color 0.25s ease;
        }
        .news-summary {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.8;
        }
        .news-read-more {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            transition: all 0.3s ease;
            align-self: flex-start;
        }
        .news-read-more .arrow {
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .news-read-more:hover {
            color: var(--accent-hover);
        }
        .news-read-more:hover .arrow {
            transform: translateX(4px);
        }
        .news-sidebar {
            background: var(--primary-light);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            border: 1px solid var(--primary-light-2);
            align-self: flex-start;
        }
        .news-sidebar h3 {
            font-size: 17px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
        }
        .news-sidebar ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .news-sidebar ul li {
            font-size: 14px;
            color: var(--text-sub);
            transition: color 0.25s ease;
            cursor: pointer;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .news-sidebar ul li::before {
            content: '';
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            flex-shrink: 0;
        }
        .news-sidebar ul li:hover {
            color: var(--primary);
            font-weight: 600;
        }

        /* Brand Intro */
        .brand-intro {
            background: var(--card-bg);
            border-top: 2px solid rgba(200, 162, 75, 0.4);
            border-bottom: 2px solid rgba(200, 162, 75, 0.4);
            padding: 56px 0;
        }
        .brand-intro-content {
            max-width: 840px;
            margin: 0 auto;
            text-align: center;
        }
        .brand-intro-content h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
        }
        .brand-intro-content p {
            font-size: 15px;
            line-height: 2.0;
            color: var(--text-main);
            text-align: justify;
            text-align-last: center;
        }
        .brand-intro-content .divider-line {
            width: 80px;
            height: 2px;
            background: var(--accent);
            margin: 20px auto 0;
            opacity: 0.7;
        }

        /* Deep Content Sections */
        .deep-content-full {
            background: var(--bg);
            padding: 64px 0;
        }
        .deep-content-full .deep-body {
            max-width: 900px;
            margin: 0 auto;
        }
        .deep-content-full h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--primary);
            text-align: center;
            margin-bottom: 32px;
            line-height: 1.4;
        }
        .deep-content-full .deep-paragraph {
            font-size: 15px;
            line-height: 2.0;
            color: var(--text-main);
            margin-bottom: 20px;
            text-align: justify;
        }
        .deep-content-full .deep-paragraph:first-of-type::first-letter {
            font-size: 48px;
            font-weight: 900;
            color: var(--primary);
            float: left;
            line-height: 1;
            margin-right: 10px;
            margin-top: 6px;
        }
        .deep-content-full img {
            border-radius: var(--radius-lg);
            margin: 28px auto;
            box-shadow: var(--shadow-sm);
        }
        .deep-content-full .img-caption {
            font-size: 12px;
            color: var(--text-sub);
            text-align: center;
            margin-top: -18px;
            margin-bottom: 24px;
        }

        .deep-content-dual {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: stretch;
        }
        @media (max-width: 900px) {
            .deep-content-dual {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .deep-content-dual .deep-text h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
            line-height: 1.4;
        }
        .deep-content-dual .deep-text p {
            font-size: 15px;
            line-height: 2.0;
            color: var(--text-main);
            margin-bottom: 16px;
            text-align: justify;
        }
        .deep-content-dual img {
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            object-fit: cover;
            width: 100%;
            height: 100%;
            min-height: 300px;
        }

        .deep-content-grid {
            display: grid;
            grid-template-columns: 2fr 1.75fr 1.25fr;
            gap: 24px;
            background: var(--primary-light);
            border-radius: var(--radius-xl);
            padding: 36px 32px;
            border: 1px solid var(--primary-light-2);
        }
        @media (max-width: 1024px) {
            .deep-content-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 24px 20px;
            }
        }
        .deep-grid-col-text h3,
        .deep-grid-col-list h3,
        .deep-grid-col-data h3 {
            font-size: 17px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 14px;
        }
        .deep-grid-col-text p {
            font-size: 14px;
            line-height: 1.9;
            color: var(--text-main);
            text-align: justify;
        }
        .deep-grid-col-list ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .deep-grid-col-list ul li {
            font-size: 14px;
            color: var(--text-main);
            padding-left: 16px;
            border-left: 3px solid var(--accent);
            line-height: 1.6;
        }
        .deep-grid-col-list ul li strong {
            font-weight: 700;
            color: var(--primary);
        }
        .deep-grid-col-data .data-point {
            display: flex;
            flex-direction: column;
            gap: 2px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .deep-grid-col-data .data-point:last-child {
            border-bottom: none;
        }
        .deep-grid-col-data .data-number {
            font-size: 28px;
            font-weight: 900;
            color: var(--accent);
            line-height: 1.2;
        }
        .deep-grid-col-data .data-label {
            font-size: 13px;
            color: var(--text-sub);
        }

        /* Scene Demo */
        .scene-demo {
            background: var(--primary);
            padding: 72px 0;
        }
        .scene-demo .scene-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        @media (max-width: 900px) {
            .scene-demo .scene-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }
        .scene-demo .scene-text h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .scene-demo .scene-text .scene-label {
            font-size: 14px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 8px;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .scene-demo .scene-text p {
            font-size: 15px;
            line-height: 2.0;
            color: rgba(247, 243, 235, 0.85);
            margin-bottom: 18px;
        }
        .scene-demo .scene-text ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .scene-demo .scene-text ul li {
            font-size: 14px;
            color: rgba(247, 243, 235, 0.8);
            padding-left: 18px;
            position: relative;
            line-height: 1.7;
        }
        .scene-demo .scene-text ul li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 10px;
            width: 10px;
            height: 2px;
            background: var(--accent);
        }
        .scene-demo .scene-image {
            position: relative;
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
        }
        .scene-demo .scene-image img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            display: block;
        }
        .scene-demo .scene-image .scene-overlay {
            position: absolute;
            inset: 0;
            background: rgba(11, 61, 46, 0.55);
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .scene-demo .scene-image .scene-overlay span {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-light);
            background: rgba(0, 0, 0, 0.4);
            padding: 8px 16px;
            border-radius: 999px;
            border: 1px solid rgba(200, 162, 75, 0.5);
            letter-spacing: 0.03em;
        }

        /* Feature Trio */
        .feature-trio {
            display: grid;
            grid-template-columns: 0.9fr 1.4fr 0.9fr;
            gap: 20px;
            align-items: start;
        }
        @media (max-width: 900px) {
            .feature-trio {
                grid-template-columns: 1fr;
                gap: 16px;
            }
        }
        .feature-card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            padding: 28px 22px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .feature-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .feature-card.middle {
            padding: 36px 28px;
            border-color: var(--accent);
            box-shadow: 0 4px 16px rgba(200, 162, 75, 0.15);
        }
        .feature-card.middle:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }
        .feature-icon {
            width: 40px;
            height: 40px;
            border-radius: var(--radius-sm);
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--primary);
            font-weight: 700;
        }
        .feature-card h3 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.4;
        }
        .feature-card p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.8;
        }

        /* Social Proof */
        .social-proof-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        @media (max-width: 900px) {
            .social-proof-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .social-proof-grid {
                grid-template-columns: 1fr;
            }
        }
        .proof-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            padding: 24px 22px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .proof-card:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--primary);
        }
        .proof-quote {
            font-size: 36px;
            color: var(--accent);
            font-weight: 900;
            line-height: 1;
            font-family: Georgia, serif;
        }
        .proof-card p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-main);
        }
        .proof-source {
            font-size: 13px;
            color: var(--text-sub);
            font-weight: 600;
        }

        /* Discount Ladder */
        .discount-ladder {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
        }
        @media (max-width: 900px) {
            .discount-ladder {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 480px) {
            .discount-ladder {
                grid-template-columns: 1fr;
            }
        }
        .ladder-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            padding: 24px 18px;
            text-align: center;
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .ladder-card:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .ladder-card .ladder-level {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-sub);
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }
        .ladder-card .ladder-value {
            font-size: 28px;
            font-weight: 900;
            color: var(--accent);
            line-height: 1.2;
        }
        .ladder-card .ladder-desc {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.6;
        }
        .ladder-card .ladder-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 10px 20px;
            font-size: 13px;
            font-weight: 700;
            color: var(--text-main);
            background: var(--accent);
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            margin-top: 8px;
        }
        .ladder-card .ladder-btn:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }

        /* Timeline */
        .timeline-qmh {
            position: relative;
            padding-left: 32px;
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .timeline-qmh::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: var(--primary);
            opacity: 0.3;
        }
        .timeline-item {
            position: relative;
            display: flex;
            gap: 16px;
            padding: 16px 20px;
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            transition: all 0.3s ease;
            box-shadow: var(--shadow-sm);
        }
        .timeline-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }
        .timeline-item .timeline-dot {
            position: absolute;
            left: -28px;
            top: 24px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid var(--card-bg);
            box-shadow: 0 0 0 2px var(--accent);
        }
        .timeline-item .timeline-time {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            white-space: nowrap;
            flex-shrink: 0;
            min-width: 80px;
        }
        .timeline-item .timeline-info h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
        }
        .timeline-item .timeline-info p {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.7;
        }

        /* Changelog */
        .changelog-list {
            display: flex;
            flex-direction: column;
            gap: 16px;
            max-width: 800px;
        }
        .changelog-item {
            display: flex;
            gap: 16px;
            padding: 20px 24px;
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }
        .changelog-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
        }
        .changelog-version {
            font-size: 14px;
            font-weight: 800;
            color: var(--accent);
            white-space: nowrap;
            flex-shrink: 0;
            min-width: 70px;
        }
        .changelog-desc h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
        }
        .changelog-desc p {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.7;
        }

        /* Opinion Cards */
        .opinion-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }
        @media (max-width: 900px) {
            .opinion-grid {
                grid-template-columns: 1fr;
            }
        }
        .opinion-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            padding: 28px 22px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .opinion-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .opinion-card .opinion-quote {
            font-size: 28px;
            color: var(--accent);
            font-weight: 900;
            line-height: 1;
            font-family: Georgia, serif;
        }
        .opinion-card p {
            font-size: 14px;
            line-height: 1.9;
            color: var(--text-main);
            flex-grow: 1;
        }
        .opinion-card .opinion-author {
            font-size: 13px;
            color: var(--text-sub);
            font-weight: 600;
            border-top: 1px solid var(--border-color);
            padding-top: 10px;
        }

        /* FAQ */
        .faq-list {
            display: flex;
            flex-direction: column;
            gap: 10px;
            max-width: 840px;
            margin: 0 auto;
        }
        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-item:hover {
            border-color: var(--primary-light-2);
        }
        .faq-item.open {
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 18px 20px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            transition: all 0.3s ease;
            user-select: none;
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-question .faq-icon {
            width: 26px;
            height: 26px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            transition: transform 0.3s ease;
        }
        .faq-item.open .faq-question .faq-icon {
            transform: rotate(45deg);
            color: var(--accent);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 20px;
            background: var(--primary-light);
            border-top: none;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 16px 20px;
            border-top: 1px solid var(--primary-light-2);
        }
        .faq-answer p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-main);
        }

        /* CTA */
        .cta-section {
            background: var(--primary);
            padding: 64px 0;
            text-align: center;
        }
        .cta-section h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 12px;
            line-height: 1.4;
        }
        .cta-section p {
            font-size: 15px;
            color: rgba(247, 243, 235, 0.8);
            margin-bottom: 28px;
            line-height: 1.8;
            max-width: 560px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-actions {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-outline-dark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--text-light);
            font-weight: 600;
            font-size: 15px;
            padding: 14px 28px;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            min-height: 48px;
            border: 2px solid rgba(247, 243, 235, 0.4);
        }
        .btn-outline-dark:hover {
            background: rgba(247, 243, 235, 0.1);
            border-color: var(--text-light);
            transform: translateY(-2px);
        }

        /* Bottom Fixed CTA */
        .bottom-fixed-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60px;
            background: rgba(10, 47, 35, 0.97);
            backdrop-filter: blur(8px);
            z-index: 998;
            display: flex;
            align-items: center;
            border-top: 1px solid rgba(200, 162, 75, 0.3);
            transition: transform 0.4s ease, opacity 0.4s ease;
        }
        .bottom-fixed-bar.hidden {
            transform: translateY(100%);
            opacity: 0;
            pointer-events: none;
        }
        .bottom-fixed-bar .container-qmh {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
        }
        .bottom-fixed-bar .bar-text {
            font-size: 14px;
            color: rgba(247, 243, 235, 0.9);
            font-weight: 500;
            line-height: 1.4;
        }
        .bottom-fixed-bar .bar-actions {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-shrink: 0;
        }
        .bottom-fixed-bar .bar-btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 18px;
            font-size: 13px;
            font-weight: 700;
            color: var(--text-main);
            background: var(--accent);
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            min-height: 38px;
            white-space: nowrap;
        }
        .bottom-fixed-bar .bar-btn:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
        }
        .bottom-fixed-bar .bar-btn-outline {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 16px;
            font-size: 13px;
            font-weight: 600;
            color: var(--text-light);
            background: transparent;
            border: 1px solid rgba(247, 243, 235, 0.4);
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            min-height: 38px;
            white-space: nowrap;
        }
        .bottom-fixed-bar .bar-btn-outline:hover {
            background: rgba(247, 243, 235, 0.1);
            border-color: var(--text-light);
        }
        .bottom-fixed-bar .bar-close {
            width: 32px;
            height: 32px;
            flex-shrink: 0;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: rgba(247, 243, 235, 0.6);
            border-radius: 50%;
            transition: all 0.3s ease;
            cursor: pointer;
            border: 1px solid rgba(247, 243, 235, 0.2);
        }
        .bottom-fixed-bar .bar-close:hover {
            color: var(--text-light);
            border-color: rgba(247, 243, 235, 0.5);
            background: rgba(247, 243, 235, 0.1);
        }
        @media (max-width: 480px) {
            .bottom-fixed-bar {
                height: 52px;
            }
            .bottom-fixed-bar .bar-text {
                font-size: 12px;
                max-width: 120px;
                overflow: hidden;
                text-overflow: ellipsis;
                white-space: nowrap;
            }
            .bottom-fixed-bar .bar-btn {
                padding: 6px 12px;
                font-size: 12px;
                min-height: 32px;
            }
            .bottom-fixed-bar .bar-btn-outline {
                padding: 6px 10px;
                font-size: 12px;
                min-height: 32px;
            }
        }

        /* Footer */
        .footer-qmh {
            background: #0A2F23;
            color: rgba(247, 243, 235, 0.75);
            padding: 56px 0 32px;
            border-top: 2px solid rgba(200, 162, 75, 0.3);
            margin-bottom: 60px;
        }
        .footer-qmh-grid {
            display: grid;
            grid-template-columns: 1.4fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        @media (max-width: 900px) {
            .footer-qmh-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .footer-qmh-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .footer-qmh .footer-brand .footer-logo {
            font-size: 28px;
            font-weight: 900;
            color: var(--text-light);
            margin-bottom: 8px;
            letter-spacing: 0.04em;
        }
        .footer-qmh .footer-brand .footer-logo .logo-accent {
            color: var(--accent);
        }
        .footer-qmh .footer-brand p {
            font-size: 13px;
            line-height: 1.8;
            color: rgba(247, 243, 235, 0.6);
        }
        .footer-qmh h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 14px;
            letter-spacing: 0.03em;
        }
        .footer-qmh ul {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-qmh ul li a {
            font-size: 13px;
            color: rgba(247, 243, 235, 0.6);
            transition: color 0.25s ease;
        }
        .footer-qmh ul li a:hover {
            color: var(--accent);
        }
        .footer-qmh-bottom {
            border-top: 1px solid rgba(247, 243, 235, 0.1);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            align-items: center;
            justify-content: space-between;
        }
        .footer-qmh-bottom .copyright {
            font-size: 12px;
            color: rgba(247, 243, 235, 0.45);
        }
        .footer-qmh-bottom .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 4px 16px;
            align-items: center;
            font-size: 12px;
            color: rgba(247, 243, 235, 0.45);
        }
        .footer-qmh-bottom .footer-links a {
            font-size: 12px;
            color: rgba(247, 243, 235, 0.5);
            transition: color 0.25s ease;
        }
        .footer-qmh-bottom .footer-links a:hover {
            color: var(--accent);
        }
        .footer-qmh-bottom .beian {
            font-size: 12px;
            color: rgba(247, 243, 235, 0.4);
            line-height: 1.6;
        }
        @media (max-width: 480px) {
            .footer-qmh {
                margin-bottom: 52px;
                padding: 40px 0 24px;
            }
            .footer-qmh-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }

        /* Buttons */
        .btn-text-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            transition: all 0.3s ease;
            padding: 0;
            background: none;
            border: none;
        }
        .btn-text-link .arrow {
            transition: transform 0.3s ease;
            display: inline-block;
        }
        .btn-text-link:hover {
            color: var(--accent-hover);
        }
        .btn-text-link:hover .arrow {
            transform: translateX(4px);
        }

        /* Filter Tags */
        .filter-bar {
            display: flex;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .filter-tag {
            font-size: 13px;
            font-weight: 600;
            padding: 8px 18px;
            border-radius: 999px;
            border: 1px solid var(--border-color);
            color: var(--text-sub);
            background: var(--card-bg);
            transition: all 0.3s ease;
            cursor: pointer;
            letter-spacing: 0.02em;
        }
        .filter-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .filter-tag.active {
            background: var(--primary);
            color: var(--text-light);
            border-color: var(--primary);
            font-weight: 700;
        }

        /* Focus visible global */
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        select:focus-visible,
        textarea:focus-visible {
            outline: 3px solid rgba(200, 162, 75, 0.55);
            outline-offset: 2px;
            border-radius: var(--radius-sm);
        }

        /* Smooth transitions */
        .transition-smooth {
            transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
        }

/* roulang page: category2 */
:root {
            --primary: #0B3D2E;
            --primary-light: rgba(11, 61, 46, 0.05);
            --primary-light-2: rgba(11, 61, 46, 0.1);
            --primary-dark: #0A2F23;
            --accent: #C8A24B;
            --accent-hover: #B08D35;
            --danger: #8B1E2D;
            --bg: #F7F3EB;
            --card-bg: #FFFFFF;
            --text-main: #1A1A1A;
            --text-sub: #595959;
            --text-light: #F7F3EB;
            --border-color: #E5DFD3;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --radius-xl: 12px;
            --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
            --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
            --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.12);
            --font-stack: 'Noto Sans SC', '思源黑体', '微软雅黑', sans-serif;
            --nav-height: 76px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }
        body {
            font-family: var(--font-stack);
            background-color: var(--bg);
            color: var(--text-main);
            line-height: 1.8;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: var(--nav-height);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            outline: none;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        .container-qmh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container-qmh {
                padding: 0 16px;
            }
        }
        @media (max-width: 480px) {
            .container-qmh {
                padding: 0 12px;
            }
        }

        /* Magazine Header/Nav */
        .magazine-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--bg);
            border-bottom: 2px solid rgba(200, 162, 75, 0.4);
            height: var(--nav-height);
            transition: box-shadow 0.3s ease, background 0.3s ease;
        }
        .magazine-header.scrolled {
            box-shadow: 0 2px 16px rgba(26, 26, 26, 0.08);
            background: rgba(247, 243, 235, 0.97);
        }
        .magazine-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 16px;
        }
        .magazine-logo {
            font-size: 30px;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: 0.05em;
            white-space: nowrap;
            transition: color 0.25s ease;
            line-height: 1.2;
        }
        .magazine-logo:hover {
            color: var(--accent-hover);
        }
        .magazine-logo .logo-accent {
            color: var(--accent);
        }
        @media (max-width: 768px) {
            .magazine-logo {
                font-size: 24px;
            }
        }
        .magazine-nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .magazine-nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-sub);
            padding: 4px 0;
            position: relative;
            transition: color 0.25s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .magazine-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
            border-radius: 1px;
        }
        .magazine-nav-links a:hover {
            color: var(--primary);
        }
        .magazine-nav-links a:hover::after {
            width: 100%;
        }
        .magazine-nav-links a.active {
            color: var(--primary);
            font-weight: 700;
        }
        .magazine-nav-links a.active::after {
            width: 100%;
        }
        .magazine-nav-divider {
            width: 1px;
            height: 20px;
            background: rgba(200, 162, 75, 0.5);
            flex-shrink: 0;
        }
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            transition: all 0.25s ease;
        }
        .hamburger-menu:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }
        .hamburger-menu span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
            transition: all 0.3s ease;
        }
        .hamburger-menu.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger-menu.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger-menu.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: var(--card-bg);
            border-bottom: 2px solid var(--border-color);
            box-shadow: var(--shadow-md);
            padding: 16px 24px;
            z-index: 999;
            flex-direction: column;
            gap: 12px;
        }
        .mobile-nav-panel.open {
            display: flex;
        }
        .mobile-nav-panel a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-main);
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
            transition: color 0.25s ease;
        }
        .mobile-nav-panel a:hover {
            color: var(--primary);
        }
        .mobile-nav-panel a.active {
            color: var(--primary);
            font-weight: 700;
        }
        @media (max-width: 768px) {
            .hamburger-menu {
                display: flex;
            }
            .magazine-nav-links {
                display: none;
            }
        }

        /* Breadcrumb */
        .breadcrumb {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-sub);
            margin-bottom: 16px;
            flex-wrap: wrap;
        }
        .breadcrumb a {
            color: var(--text-sub);
            transition: color 0.25s ease;
        }
        .breadcrumb a:hover {
            color: var(--primary);
        }
        .breadcrumb .separator {
            color: var(--accent);
            font-size: 12px;
        }
        .breadcrumb .current {
            color: var(--primary);
            font-weight: 600;
        }

        /* Category header */
        .category-header {
            margin-bottom: 32px;
        }
        .category-header h1 {
            font-size: 32px;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: 0.02em;
            line-height: 1.3;
            margin-bottom: 8px;
        }
        .category-header .subtitle {
            font-size: 15px;
            color: var(--text-sub);
            line-height: 1.8;
            max-width: 720px;
        }
        @media (max-width: 768px) {
            .category-header h1 {
                font-size: 24px;
            }
        }

        /* Cards grid - unequal heights */
        .schedule-cards-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            align-items: start;
            margin-bottom: 48px;
        }
        .schedule-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .schedule-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .schedule-card .card-image {
            width: 100%;
            overflow: hidden;
            position: relative;
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            flex-shrink: 0;
        }
        .schedule-card .card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .schedule-card:hover .card-image img {
            transform: scale(1.05);
        }
        .schedule-card .image-tall {
            height: 260px;
        }
        .schedule-card .image-medium {
            height: 200px;
        }
        .schedule-card .image-short {
            height: 150px;
        }
        .schedule-card .card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .schedule-card .card-tag {
            display: inline-block;
            font-size: 12px;
            font-weight: 600;
            padding: 2px 10px;
            border-radius: 20px;
            background: var(--primary-light);
            color: var(--primary);
            align-self: flex-start;
            letter-spacing: 0.03em;
        }
        .schedule-card .card-tag.hot {
            background: rgba(139, 30, 45, 0.08);
            color: var(--danger);
        }
        .schedule-card .card-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.5;
            transition: color 0.25s ease;
        }
        .schedule-card:hover .card-title {
            color: var(--primary);
        }
        .schedule-card .card-excerpt {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.8;
            flex: 1;
        }
        .schedule-card .card-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: #8a8a8a;
            padding-top: 12px;
            border-top: 1px solid var(--border-color);
            gap: 8px;
        }
        .schedule-card .card-meta .views {
            color: var(--accent-hover);
            font-weight: 600;
        }
        @media (max-width: 1024px) {
            .schedule-cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 768px) {
            .schedule-cards-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .schedule-card .image-tall {
                height: 200px;
            }
            .schedule-card .image-medium {
                height: 180px;
            }
            .schedule-card .image-short {
                height: 140px;
            }
        }

        /* Filter bar */
        .filter-bar {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-wrap: wrap;
            margin-bottom: 24px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .filter-label {
            font-size: 13px;
            color: var(--text-sub);
            font-weight: 600;
            margin-right: 4px;
        }
        .filter-bar .filter-tag {
            font-size: 13px;
            font-weight: 500;
            padding: 6px 16px;
            border-radius: 20px;
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            color: var(--text-sub);
            transition: all 0.25s ease;
            white-space: nowrap;
            cursor: pointer;
        }
        .filter-bar .filter-tag:hover {
            border-color: var(--primary);
            color: var(--primary);
        }
        .filter-bar .filter-tag.active {
            background: var(--primary);
            color: var(--text-light);
            border-color: var(--primary);
            font-weight: 600;
        }

        /* Data overview strip */
        .data-overview {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 16px;
            margin-bottom: 40px;
            background: var(--primary);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-md);
        }
        .data-overview .overview-item {
            text-align: center;
        }
        .data-overview .overview-item .number {
            font-size: 36px;
            font-weight: 900;
            color: var(--accent);
            line-height: 1.2;
        }
        .data-overview .overview-item .label {
            font-size: 13px;
            color: rgba(247, 243, 235, 0.8);
            letter-spacing: 0.03em;
            margin-top: 4px;
        }
        @media (max-width: 768px) {
            .data-overview {
                grid-template-columns: repeat(2, 1fr);
                gap: 12px;
                padding: 16px;
            }
            .data-overview .overview-item .number {
                font-size: 28px;
            }
        }
        @media (max-width: 480px) {
            .data-overview {
                grid-template-columns: repeat(2, 1fr);
                gap: 8px;
                padding: 12px;
            }
            .data-overview .overview-item .number {
                font-size: 24px;
            }
        }

        /* Section titles */
        .section-title {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.4;
            margin-bottom: 8px;
            letter-spacing: 0.02em;
        }
        .section-sub {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.8;
            margin-bottom: 24px;
            max-width: 680px;
        }

        /* Deep content blocks */
        .deep-content {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 32px;
            margin-bottom: 32px;
            box-shadow: var(--shadow-sm);
        }
        .deep-content h2 {
            font-size: 20px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 16px;
            line-height: 1.4;
        }
        .deep-content p {
            font-size: 15px;
            color: var(--text-main);
            line-height: 2.0;
            margin-bottom: 16px;
        }
        .deep-content p:last-child {
            margin-bottom: 0;
        }
        .deep-content .highlight {
            border-left: 4px solid var(--accent);
            padding: 12px 16px;
            background: var(--primary-light);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            margin: 16px 0;
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.9;
        }
        @media (max-width: 768px) {
            .deep-content {
                padding: 20px;
            }
        }

        /* FAQ section */
        .faq-section {
            margin-bottom: 40px;
        }
        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 8px;
            overflow: hidden;
            transition: all 0.25s ease;
        }
        .faq-item:hover {
            border-color: var(--primary-light-2);
        }
        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            cursor: pointer;
            transition: color 0.25s ease;
            gap: 12px;
            width: 100%;
            text-align: left;
            background: none;
            border: none;
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-question .faq-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            position: relative;
            transition: transform 0.3s ease;
        }
        .faq-question .faq-icon::before,
        .faq-question .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--primary);
            border-radius: 1px;
            transition: all 0.3s ease;
        }
        .faq-question .faq-icon::before {
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            transform: translateY(-50%);
        }
        .faq-question .faq-icon::after {
            left: 50%;
            top: 0;
            width: 2px;
            height: 100%;
            transform: translateX(-50%);
        }
        .faq-item.open .faq-question .faq-icon::after {
            transform: translateX(-50%) rotate(90deg);
            opacity: 0;
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
            padding: 0 20px;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 20px 16px;
            background: var(--primary-light);
            border-top: 1px solid rgba(11, 61, 46, 0.2);
        }
        .faq-answer p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.9;
            padding-top: 12px;
        }

        /* CTA section */
        .cta-section {
            background: var(--primary);
            border-radius: var(--radius-lg);
            padding: 40px 32px;
            text-align: center;
            margin-bottom: 40px;
            box-shadow: var(--shadow-md);
        }
        .cta-section h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 8px;
            line-height: 1.4;
        }
        .cta-section p {
            font-size: 15px;
            color: rgba(247, 243, 235, 0.8);
            line-height: 1.8;
            margin-bottom: 20px;
            max-width: 520px;
            margin-left: auto;
            margin-right: auto;
        }
        .btn-accent {
            display: inline-block;
            background: var(--accent);
            color: var(--text-main);
            font-weight: 700;
            font-size: 15px;
            padding: 12px 32px;
            border-radius: var(--radius-sm);
            transition: all 0.25s ease;
            letter-spacing: 0.03em;
        }
        .btn-accent:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(200, 162, 75, 0.3);
        }
        .btn-outline-light {
            display: inline-block;
            background: transparent;
            color: var(--text-light);
            font-weight: 600;
            font-size: 15px;
            padding: 11px 28px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(247, 243, 235, 0.5);
            transition: all 0.25s ease;
            letter-spacing: 0.03em;
        }
        .btn-outline-light:hover {
            background: rgba(247, 243, 235, 0.1);
            border-color: rgba(247, 243, 235, 0.8);
        }
        .btn-outline-dark {
            display: inline-block;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            padding: 10px 24px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--primary);
            transition: all 0.25s ease;
            letter-spacing: 0.03em;
        }
        .btn-outline-dark:hover {
            background: var(--primary-light);
            border-color: var(--primary);
        }
        .btn-text {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            transition: all 0.25s ease;
        }
        .btn-text:hover {
            color: var(--accent-hover);
            transform: translateX(2px);
        }
        .btn-text .arrow {
            font-size: 16px;
            line-height: 1;
        }
        @media (max-width: 768px) {
            .cta-section {
                padding: 28px 20px;
            }
            .cta-section h2 {
                font-size: 22px;
            }
        }

        /* Info list */
        .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .info-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 10px 0;
            font-size: 14px;
            color: var(--text-main);
            line-height: 1.8;
            border-bottom: 1px solid var(--border-color);
        }
        .info-list li:last-child {
            border-bottom: none;
        }
        .info-list li::before {
            content: '';
            flex-shrink: 0;
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--accent);
            margin-top: 10px;
        }

        /* Footer */
        .footer-qmh {
            background: #111;
            padding: 48px 0 24px;
            margin-top: 48px;
        }
        .footer-qmh-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 24px;
        }
        .footer-brand .footer-logo {
            font-size: 24px;
            font-weight: 900;
            color: var(--text-light);
            letter-spacing: 0.05em;
            margin-bottom: 12px;
        }
        .footer-brand .footer-logo .logo-accent {
            color: var(--accent);
        }
        .footer-brand p {
            font-size: 13px;
            color: rgba(247, 243, 235, 0.6);
            line-height: 1.8;
            max-width: 260px;
        }
        .footer-qmh h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 12px;
            letter-spacing: 0.04em;
        }
        .footer-qmh ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-qmh ul li {
            margin-bottom: 8px;
        }
        .footer-qmh ul a {
            font-size: 13px;
            color: rgba(247, 243, 235, 0.6);
            transition: color 0.25s ease;
        }
        .footer-qmh ul a:hover {
            color: var(--accent);
        }
        .footer-qmh-bottom {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding-top: 16px;
            border-top: 1px solid rgba(247, 243, 235, 0.15);
            font-size: 12px;
            color: rgba(247, 243, 235, 0.5);
        }
        .footer-qmh-bottom .beian {
            color: rgba(247, 243, 235, 0.5);
        }
        .footer-qmh-bottom .footer-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-qmh-bottom .footer-links a {
            color: rgba(247, 243, 235, 0.6);
            transition: color 0.25s ease;
        }
        .footer-qmh-bottom .footer-links a:hover {
            color: var(--accent);
        }
        @media (max-width: 768px) {
            .footer-qmh-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .footer-qmh-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-qmh-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #0B3D2E;
            --primary-light: rgba(11, 61, 46, 0.05);
            --primary-light-2: rgba(11, 61, 46, 0.1);
            --primary-dark: #0A2F23;
            --accent: #C8A24B;
            --accent-hover: #B08D35;
            --danger: #8B1E2D;
            --bg: #F7F3EB;
            --card-bg: #FFFFFF;
            --text-main: #1A1A1A;
            --text-sub: #595959;
            --text-light: #F7F3EB;
            --border-color: #E5DFD3;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --radius-xl: 12px;
            --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
            --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
            --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.12);
            --font-stack: 'Noto Sans SC', '思源黑体', '微软雅黑', sans-serif;
            --nav-height: 76px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }
        body {
            font-family: var(--font-stack);
            background-color: var(--bg);
            color: var(--text-main);
            line-height: 1.8;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: var(--nav-height);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            outline: none;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        /* Container */
        .container-qmh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container-qmh {
                padding: 0 16px;
            }
        }
        @media (max-width: 480px) {
            .container-qmh {
                padding: 0 12px;
            }
        }

        /* Magazine Header/Nav */
        .magazine-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--bg);
            border-bottom: 2px solid rgba(200, 162, 75, 0.4);
            height: var(--nav-height);
            transition: box-shadow 0.3s ease, background 0.3s ease;
        }
        .magazine-header.scrolled {
            box-shadow: 0 2px 16px rgba(26, 26, 26, 0.08);
            background: rgba(247, 243, 235, 0.97);
        }
        .magazine-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 16px;
        }
        .magazine-logo {
            font-size: 30px;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: 0.05em;
            white-space: nowrap;
            transition: color 0.25s ease;
            line-height: 1.2;
        }
        .magazine-logo:hover {
            color: var(--accent-hover);
        }
        .magazine-logo .logo-accent {
            color: var(--accent);
        }
        @media (max-width: 768px) {
            .magazine-logo {
                font-size: 24px;
            }
        }
        .magazine-nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .magazine-nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-sub);
            padding: 4px 0;
            position: relative;
            transition: color 0.25s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .magazine-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
            border-radius: 1px;
        }
        .magazine-nav-links a:hover {
            color: var(--primary);
        }
        .magazine-nav-links a:hover::after {
            width: 100%;
        }
        .magazine-nav-links a.active {
            color: var(--primary);
            font-weight: 700;
        }
        .magazine-nav-links a.active::after {
            width: 100%;
        }
        .magazine-nav-divider {
            width: 1px;
            height: 20px;
            background: rgba(200, 162, 75, 0.5);
            flex-shrink: 0;
        }

        /* Hamburger */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            transition: all 0.25s ease;
        }
        .hamburger-menu:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }
        .hamburger-menu span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
            transition: all 0.3s ease;
        }
        .hamburger-menu.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger-menu.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger-menu.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: var(--card-bg);
            border-bottom: 2px solid var(--border-color);
            box-shadow: var(--shadow-md);
            padding: 16px 24px;
            z-index: 999;
            flex-direction: column;
            gap: 12px;
        }
        .mobile-nav-panel a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-main);
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .mobile-nav-panel a.active {
            color: var(--primary);
            font-weight: 700;
        }
        .mobile-nav-panel a:last-child {
            border-bottom: none;
        }
        @media (max-width: 1024px) {
            .magazine-nav-links {
                gap: 12px;
                font-size: 13px;
            }
        }
        @media (max-width: 860px) {
            .magazine-nav-links {
                display: none;
            }
            .hamburger-menu {
                display: flex;
            }
            .mobile-nav-panel.open {
                display: flex;
            }
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: var(--accent);
            color: #1A1A1A;
            font-weight: 700;
            font-size: 15px;
            border-radius: var(--radius-sm);
            padding: 12px 28px;
            height: 44px;
            letter-spacing: 0.02em;
            transition: all 0.25s ease;
            border: 1px solid var(--accent);
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            border-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .btn-primary:focus-visible {
            outline: 3px solid var(--primary-light-2);
            outline-offset: 2px;
        }
        .btn-outline-dark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--primary);
            font-weight: 700;
            font-size: 15px;
            border-radius: var(--radius-sm);
            padding: 12px 28px;
            height: 44px;
            letter-spacing: 0.02em;
            transition: all 0.25s ease;
            border: 1px solid var(--primary);
        }
        .btn-outline-dark:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            background: transparent;
            color: var(--text-light);
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius-sm);
            padding: 12px 24px;
            height: 44px;
            letter-spacing: 0.02em;
            transition: all 0.25s ease;
            border: 1px solid rgba(247, 243, 235, 0.5);
        }
        .btn-outline-light:hover {
            background: rgba(247, 243, 235, 0.1);
            border-color: var(--text-light);
        }
        .btn-sm {
            height: 36px;
            padding: 8px 18px;
            font-size: 13px;
        }
        .btn-text {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            padding: 0;
        }
        .btn-text .arrow {
            transition: transform 0.3s ease;
        }
        .btn-text:hover {
            color: var(--accent-hover);
        }
        .btn-text:hover .arrow {
            transform: translateX(4px);
        }

        /* Cards */
        .card-qmh {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }
        .card-qmh:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .card-image {
            border-radius: var(--radius-lg) var(--radius-lg) 0 0;
            overflow: hidden;
        }
        .card-image img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .card-qmh:hover .card-image img {
            transform: scale(1.04);
        }

        /* Tags/Badges */
        .tag-badge {
            display: inline-flex;
            align-items: center;
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.02em;
            transition: all 0.25s ease;
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            color: var(--text-sub);
            cursor: pointer;
            white-space: nowrap;
        }
        .tag-badge:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }
        .tag-badge.active {
            background: var(--primary);
            color: var(--text-light);
            border-color: var(--primary);
        }
        .news-tag {
            display: inline-block;
            padding: 2px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.05em;
            background: var(--primary-light);
            color: var(--primary);
        }
        .news-tag.accent {
            background: rgba(200, 162, 75, 0.15);
            color: var(--accent-hover);
        }
        .news-tag.danger {
            background: rgba(139, 30, 45, 0.1);
            color: var(--danger);
        }

        /* Breadcrumb */
        .breadcrumb-qmh {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-sub);
            flex-wrap: wrap;
        }
        .breadcrumb-qmh a:hover {
            color: var(--primary);
        }
        .breadcrumb-qmh .sep {
            color: var(--accent);
            font-size: 12px;
        }
        .breadcrumb-qmh .current {
            color: var(--primary);
            font-weight: 600;
        }

        /* Section */
        .section-pad {
            padding: 64px 0;
        }
        @media (max-width: 768px) {
            .section-pad {
                padding: 48px 0;
            }
        }
        @media (max-width: 480px) {
            .section-pad {
                padding: 40px 0;
            }
        }
        .section-title {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.4;
            letter-spacing: 0.01em;
        }
        @media (max-width: 768px) {
            .section-title {
                font-size: 22px;
            }
        }
        .section-subtitle {
            font-size: 15px;
            color: var(--text-sub);
            line-height: 1.8;
        }

        /* News list */
        .news-item {
            padding: 20px 24px;
            border-bottom: 1px solid var(--border-color);
            transition: background 0.25s ease, padding-left 0.3s ease;
            cursor: pointer;
            border-radius: 4px;
        }
        .news-item:hover {
            background: var(--card-bg);
            padding-left: 28px;
        }
        .news-item:last-child {
            border-bottom: none;
        }
        .news-date {
            font-size: 12px;
            color: var(--text-sub);
            letter-spacing: 0.03em;
            font-weight: 500;
        }
        .news-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.5;
            margin: 6px 0 8px;
        }
        .news-item:hover .news-title {
            color: var(--primary);
        }
        .news-summary {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-sub);
        }

        /* Pagination */
        .pagination-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 20px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--primary);
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            transition: all 0.25s ease;
            height: 40px;
        }
        .pagination-btn:hover {
            background: var(--primary);
            color: var(--text-light);
        }
        .pagination-btn.disabled {
            opacity: 0.4;
            pointer-events: none;
            cursor: default;
        }

        /* Sidebar */
        .sidebar-box {
            background: var(--primary-light);
            border-radius: var(--radius-lg);
            padding: 24px;
            border: 1px solid var(--border-color);
        }
        .sidebar-box h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 16px;
            letter-spacing: 0.03em;
        }
        .sidebar-link {
            display: block;
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-sub);
            border-bottom: 1px solid rgba(229, 223, 211, 0.6);
            transition: all 0.25s ease;
        }
        .sidebar-link:last-child {
            border-bottom: none;
        }
        .sidebar-link:hover {
            color: var(--primary);
            padding-left: 6px;
        }

        /* FAQ */
        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-item:hover {
            border-color: var(--primary-light-2);
        }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            text-align: left;
            transition: all 0.25s ease;
        }
        .faq-question:hover {
            color: var(--primary);
        }
        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            background: var(--primary-light);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--primary);
            transition: transform 0.35s ease;
            font-weight: 400;
        }
        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 20px;
        }
        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 20px 16px;
        }
        .faq-answer p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.8;
            margin: 0;
            padding-top: 12px;
            border-top: 1px solid var(--primary-light-2);
        }

        /* CTA Section */
        .cta-section {
            background: var(--primary);
            padding: 56px 0;
            border-radius: var(--radius-xl);
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 300px;
            height: 300px;
            background: radial-gradient(circle, rgba(200, 162, 75, 0.15), transparent 70%);
            border-radius: 50%;
        }

        /* Fixed bottom bar */
        .fixed-bottom-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 900;
            background: rgba(10, 47, 35, 0.96);
            backdrop-filter: blur(8px);
            padding: 10px 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            min-height: 56px;
            box-shadow: 0 -4px 20px rgba(0, 0, 0, 0.15);
            transform: translateY(0);
            transition: transform 0.4s ease;
        }
        .fixed-bottom-bar.hidden {
            transform: translateY(100%);
        }
        .fixed-bottom-close {
            color: var(--text-light);
            font-size: 20px;
            padding: 4px 8px;
            flex-shrink: 0;
            opacity: 0.7;
            transition: opacity 0.25s ease;
            line-height: 1;
        }
        .fixed-bottom-close:hover {
            opacity: 1;
        }

        /* Footer */
        .footer-qmh {
            background: #0A2F23;
            color: var(--text-light);
            padding: 48px 0 24px;
            border-top: 2px solid rgba(200, 162, 75, 0.3);
        }
        .footer-qmh-grid {
            display: grid;
            grid-template-columns: 1.2fr 1fr 1fr 1fr;
            gap: 40px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .footer-qmh-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }
        @media (max-width: 480px) {
            .footer-qmh-grid {
                grid-template-columns: 1fr;
            }
        }
        .footer-logo {
            font-size: 24px;
            font-weight: 900;
            letter-spacing: 0.05em;
            margin-bottom: 12px;
        }
        .footer-logo .logo-accent {
            color: var(--accent);
        }
        .footer-qmh .footer-brand p {
            font-size: 14px;
            color: rgba(247, 243, 235, 0.7);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .footer-qmh h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 16px;
            letter-spacing: 0.03em;
        }
        .footer-qmh ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-qmh ul li {
            margin-bottom: 10px;
        }
        .footer-qmh ul a {
            font-size: 14px;
            color: rgba(247, 243, 235, 0.75);
            transition: color 0.25s ease, padding-left 0.25s ease;
        }
        .footer-qmh ul a:hover {
            color: var(--accent);
            padding-left: 4px;
        }
        .footer-qmh-bottom {
            border-top: 1px solid rgba(200, 162, 75, 0.25);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            align-items: center;
            font-size: 12px;
            color: rgba(247, 243, 235, 0.55);
        }
        .footer-qmh-bottom .copyright {
            color: rgba(247, 243, 235, 0.75);
            font-weight: 500;
        }
        .footer-qmh-bottom .beian {
            color: rgba(247, 243, 235, 0.5);
            letter-spacing: 0.02em;
        }
        .footer-qmh-bottom .footer-links {
            margin-left: auto;
            display: flex;
            gap: 8px;
        }
        .footer-qmh-bottom .footer-links a {
            color: rgba(247, 243, 235, 0.6);
            transition: color 0.25s ease;
        }
        .footer-qmh-bottom .footer-links a:hover {
            color: var(--accent);
        }

        /* Depth article */
        .depth-article {
            background: var(--card-bg);
            border-radius: var(--radius-xl);
            padding: 48px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
        }
        @media (max-width: 768px) {
            .depth-article {
                padding: 24px 20px;
            }
        }
        .depth-article p {
            font-size: 15px;
            line-height: 2.0;
            color: var(--text-main);
            margin-bottom: 20px;
        }
        .depth-article .drop-cap::first-letter {
            font-size: 52px;
            font-weight: 900;
            color: var(--primary);
            float: left;
            line-height: 1;
            margin-right: 12px;
            margin-top: 4px;
            font-family: var(--font-stack);
        }

        /* Data cards */
        .data-card {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            padding: 28px 24px;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            text-align: center;
            transition: all 0.3s ease;
        }
        .data-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }
        .data-card .data-number {
            font-size: 40px;
            font-weight: 800;
            color: var(--accent);
            line-height: 1.2;
            letter-spacing: 0.02em;
        }
        .data-card .data-label {
            font-size: 14px;
            color: var(--text-sub);
            margin-top: 8px;
            font-weight: 500;
        }

        /* Featured cards */
        .featured-card {
            background: var(--card-bg);
            border-radius: var(--radius-xl);
            overflow: hidden;
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .featured-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }
        .featured-card .fc-img {
            height: 180px;
            overflow: hidden;
        }
        .featured-card .fc-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .featured-card:hover .fc-img img {
            transform: scale(1.05);
        }
        .featured-card .fc-body {
            padding: 20px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .featured-card .fc-body h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.5;
            margin-bottom: 8px;
        }
        .featured-card .fc-body p {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.7;
            flex: 1;
        }

        /* Filter bar active */
        .filter-bar {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        /* Responsive table for stats */
        .stats-table-wrapper {
            overflow-x: auto;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
        }
        .stats-table {
            width: 100%;
            border-collapse: collapse;
            min-width: 700px;
        }
        .stats-table thead th {
            background: var(--primary);
            color: var(--text-light);
            font-size: 13px;
            font-weight: 600;
            padding: 14px 16px;
            text-align: left;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .stats-table tbody td {
            padding: 14px 16px;
            font-size: 14px;
            color: var(--text-main);
            border-bottom: 1px solid var(--border-color);
            white-space: nowrap;
        }
        .stats-table tbody tr:nth-child(even) {
            background: rgba(11, 61, 46, 0.03);
        }
        .stats-table tbody tr:hover {
            background: var(--primary-light);
        }
        .stats-table .highlight-num {
            color: var(--accent);
            font-weight: 700;
        }

/* roulang page: category3 */
:root {
            --primary: #0B3D2E;
            --primary-light: rgba(11, 61, 46, 0.05);
            --primary-light-2: rgba(11, 61, 46, 0.1);
            --primary-dark: #0A2F23;
            --accent: #C8A24B;
            --accent-hover: #B08D35;
            --danger: #8B1E2D;
            --bg: #F7F3EB;
            --card-bg: #FFFFFF;
            --text-main: #1A1A1A;
            --text-sub: #595959;
            --text-light: #F7F3EB;
            --border-color: #E5DFD3;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --radius-xl: 12px;
            --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
            --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
            --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.12);
            --font-stack: 'Noto Sans SC', '思源黑体', '微软雅黑', sans-serif;
            --nav-height: 76px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }

        body {
            font-family: var(--font-stack);
            background-color: var(--bg);
            color: var(--text-main);
            line-height: 1.8;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            outline: none;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container-qmh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        @media (max-width: 768px) {
            .container-qmh {
                padding: 0 16px;
            }
        }

        @media (max-width: 480px) {
            .container-qmh {
                padding: 0 12px;
            }
        }

        /* Magazine Header */
        .magazine-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--bg);
            border-bottom: 2px solid rgba(200, 162, 75, 0.4);
            height: var(--nav-height);
            transition: box-shadow 0.3s ease, background 0.3s ease;
        }

        .magazine-header.scrolled {
            box-shadow: 0 2px 16px rgba(26, 26, 26, 0.08);
            background: rgba(247, 243, 235, 0.97);
        }

        .magazine-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 16px;
        }

        .magazine-logo {
            font-size: 30px;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: 0.05em;
            white-space: nowrap;
            transition: color 0.25s ease;
            line-height: 1.2;
        }

        .magazine-logo:hover {
            color: var(--accent-hover);
        }

        .magazine-logo .logo-accent {
            color: var(--accent);
        }

        .magazine-nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .magazine-nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-sub);
            padding: 4px 0;
            position: relative;
            transition: color 0.25s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .magazine-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
            border-radius: 1px;
        }

        .magazine-nav-links a:hover {
            color: var(--primary);
        }

        .magazine-nav-links a:hover::after {
            width: 100%;
        }

        .magazine-nav-links a.active {
            color: var(--primary);
            font-weight: 700;
        }

        .magazine-nav-links a.active::after {
            width: 100%;
        }

        .magazine-nav-divider {
            width: 1px;
            height: 20px;
            background: rgba(200, 162, 75, 0.5);
            flex-shrink: 0;
        }

        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            transition: all 0.25s ease;
        }

        .hamburger-menu:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }

        .hamburger-menu span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
            transition: all 0.3s ease;
        }

        .hamburger-menu.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger-menu.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger-menu.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: var(--card-bg);
            border-bottom: 2px solid var(--border-color);
            box-shadow: var(--shadow-md);
            padding: 16px 24px;
            z-index: 999;
            flex-direction: column;
            gap: 8px;
            max-height: calc(100vh - var(--nav-height));
            overflow-y: auto;
        }

        .mobile-nav-panel.open {
            display: flex;
        }

        .mobile-nav-panel a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-main);
            padding: 10px 12px;
            border-radius: var(--radius-sm);
            transition: all 0.25s ease;
        }

        .mobile-nav-panel a:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        .mobile-nav-panel a.active {
            background: var(--primary);
            color: var(--text-light);
            font-weight: 700;
        }

        @media (max-width: 1024px) {
            .magazine-nav-links {
                gap: 12px;
            }
            .magazine-nav-links a {
                font-size: 13px;
            }
        }

        @media (max-width: 768px) {
            .magazine-nav-links {
                display: none;
            }
            .hamburger-menu {
                display: flex;
            }
            .magazine-logo {
                font-size: 24px;
            }
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: var(--text-main);
            font-weight: 700;
            border-radius: var(--radius-sm);
            padding: 12px 28px;
            font-size: 15px;
            transition: all 0.3s ease;
            line-height: 1.4;
            letter-spacing: 0.02em;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }

        .btn-primary:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 1px solid rgba(247, 243, 235, 0.5);
            color: var(--text-light);
            font-weight: 600;
            border-radius: var(--radius-sm);
            padding: 12px 28px;
            font-size: 15px;
            transition: all 0.3s ease;
            line-height: 1.4;
            letter-spacing: 0.02em;
        }

        .btn-outline-light:hover {
            background: rgba(247, 243, 235, 0.1);
            border-color: var(--text-light);
        }

        .btn-outline-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            font-weight: 600;
            border-radius: var(--radius-sm);
            padding: 10px 24px;
            font-size: 14px;
            transition: all 0.3s ease;
            line-height: 1.4;
        }

        .btn-outline-primary:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            transform: translateY(-1px);
        }

        .btn-text-link {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
        }

        .btn-text-link .arrow {
            transition: transform 0.3s ease;
        }

        .btn-text-link:hover {
            color: var(--accent-hover);
        }

        .btn-text-link:hover .arrow {
            transform: translateX(2px);
        }

        /* Data badge */
        .data-badge {
            display: inline-block;
            background: var(--primary-light-2);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 20px;
            letter-spacing: 0.03em;
        }

        .rank-badge {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 50%;
            font-weight: 800;
            font-size: 14px;
        }

        .rank-badge.top1 {
            background: var(--accent);
            color: var(--text-main);
        }

        .rank-badge.top2 {
            background: #C0C0C0;
            color: #1A1A1A;
        }

        .rank-badge.top3 {
            background: #CD7F32;
            color: #fff;
        }

        .rank-badge.normal {
            background: var(--primary-light-2);
            color: var(--primary);
        }

        /* Trending arrow */
        .trend-up {
            color: #0B7A3B;
            font-weight: 700;
        }

        .trend-down {
            color: var(--danger);
            font-weight: 700;
        }

        .trend-flat {
            color: var(--text-sub);
            font-weight: 600;
        }

        /* Cards */
        .data-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            transition: all 0.35s ease;
            overflow: hidden;
        }

        .data-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        /* FAQ */
        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-item:hover {
            border-color: rgba(11, 61, 46, 0.3);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            cursor: pointer;
            font-weight: 600;
            font-size: 15px;
            color: var(--text-main);
            gap: 12px;
            transition: all 0.25s ease;
            user-select: none;
        }

        .faq-question:hover {
            background: var(--primary-light);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 20px;
            height: 20px;
            position: relative;
            transition: transform 0.35s ease;
        }

        .faq-icon::before,
        .faq-icon::after {
            content: '';
            position: absolute;
            background: var(--primary);
            border-radius: 1px;
            transition: all 0.35s ease;
        }

        .faq-icon::before {
            top: 50%;
            left: 0;
            width: 100%;
            height: 2px;
            transform: translateY(-50%);
        }

        .faq-icon::after {
            left: 50%;
            top: 0;
            width: 2px;
            height: 100%;
            transform: translateX(-50%);
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 20px;
        }

        .faq-item.open .faq-answer {
            max-height: 400px;
            padding: 0 20px 16px;
        }

        .faq-answer p {
            font-size: 14px;
            line-height: 1.8;
            color: var(--text-sub);
            margin: 0;
        }

        /* Breadcrumb */
        .breadcrumb-nav {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-sub);
            flex-wrap: wrap;
        }

        .breadcrumb-nav a {
            color: var(--text-sub);
            transition: color 0.25s ease;
        }

        .breadcrumb-nav a:hover {
            color: var(--primary);
        }

        .breadcrumb-nav .separator {
            color: var(--border-color);
        }

        .breadcrumb-nav .current {
            color: var(--primary);
            font-weight: 600;
        }

        /* Section spacing */
        .section-padding {
            padding: 72px 0;
        }

        @media (max-width: 768px) {
            .section-padding {
                padding: 48px 0;
            }
        }

        @media (max-width: 480px) {
            .section-padding {
                padding: 40px 0;
            }
        }

        /* Data table */
        .data-table-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            background: var(--card-bg);
        }

        .data-table {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 700px;
        }

        .data-table thead th {
            background: var(--primary);
            color: var(--text-light);
            font-weight: 700;
            padding: 14px 16px;
            text-align: left;
            white-space: nowrap;
            font-size: 13px;
            letter-spacing: 0.03em;
        }

        .data-table tbody td {
            padding: 13px 16px;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-main);
            vertical-align: middle;
        }

        .data-table tbody tr:nth-child(even) {
            background: rgba(11, 61, 46, 0.02);
        }

        .data-table tbody tr:hover {
            background: var(--primary-light);
        }

        .data-table .highlight-cell {
            color: var(--primary);
            font-weight: 700;
        }

        .data-table .accent-cell {
            color: var(--accent-hover);
            font-weight: 800;
        }

        /* Footer */
        .footer-qmh {
            background: var(--primary-dark);
            color: rgba(247, 243, 235, 0.8);
            padding: 48px 0 24px;
            border-top: 4px solid var(--accent);
        }

        .footer-qmh-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-logo {
            font-size: 26px;
            font-weight: 900;
            color: var(--text-light);
            letter-spacing: 0.05em;
            margin-bottom: 12px;
        }

        .footer-logo .logo-accent {
            color: var(--accent);
        }

        .footer-brand p {
            font-size: 13px;
            line-height: 1.7;
            color: rgba(247, 243, 235, 0.65);
            margin: 0;
        }

        .footer-qmh h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 14px;
            letter-spacing: 0.05em;
        }

        .footer-qmh ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-qmh ul li {
            margin-bottom: 8px;
        }

        .footer-qmh ul li a {
            font-size: 13px;
            color: rgba(247, 243, 235, 0.65);
            transition: color 0.25s ease;
        }

        .footer-qmh ul li a:hover {
            color: var(--accent);
        }

        .footer-qmh-bottom {
            border-top: 1px solid rgba(247, 243, 235, 0.15);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 12px;
            color: rgba(247, 243, 235, 0.5);
        }

        .footer-qmh-bottom .beian {
            color: rgba(247, 243, 235, 0.5);
        }

        .footer-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .footer-links a {
            color: rgba(247, 243, 235, 0.5);
            transition: color 0.25s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        @media (max-width: 1024px) {
            .footer-qmh-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 480px) {
            .footer-qmh-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-qmh-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* Mobile bottom bar */
        .mobile-cta-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 900;
            background: rgba(10, 47, 35, 0.97);
            padding: 10px 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            border-top: 2px solid var(--accent);
        }

        .mobile-cta-bar p {
            color: var(--text-light);
            font-size: 13px;
            margin: 0;
            font-weight: 500;
        }

        .mobile-cta-bar .btn-close-bar {
            color: rgba(247, 243, 235, 0.6);
            font-size: 20px;
            width: 32px;
            height: 32px;
            display: flex;
            align-items: center;
            justify-content: center;
            border-radius: 50%;
            transition: all 0.25s ease;
            flex-shrink: 0;
        }

        .mobile-cta-bar .btn-close-bar:hover {
            background: rgba(247, 243, 235, 0.1);
            color: var(--text-light);
        }

        @media (max-width: 768px) {
            .mobile-cta-bar {
                display: flex;
            }
        }

        @media (min-width: 769px) {
            .mobile-cta-bar {
                display: none;
            }
        }

        /* Alternating feature layout */
        .feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
            padding: 40px 0;
        }

        .feature-row.reverse {
            direction: rtl;
        }

        .feature-row.reverse > * {
            direction: ltr;
        }

        .feature-image-wrapper {
            border-radius: var(--radius-xl);
            overflow: hidden;
            box-shadow: var(--shadow-md);
            aspect-ratio: 16 / 10;
        }

        .feature-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .feature-row:hover .feature-image-wrapper img {
            transform: scale(1.03);
        }

        .feature-content .feature-label {
            font-size: 13px;
            font-weight: 700;
            color: var(--accent-hover);
            text-transform: uppercase;
            letter-spacing: 0.08em;
            margin-bottom: 8px;
        }

        .feature-content h3 {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main);
            margin-bottom: 14px;
            line-height: 1.4;
        }

        .feature-content p {
            font-size: 15px;
            line-height: 1.9;
            color: var(--text-sub);
            margin-bottom: 16px;
        }

        .feature-content .data-summary-list {
            list-style: none;
            padding: 0;
            margin: 0 0 18px;
        }

        .feature-content .data-summary-list li {
            font-size: 14px;
            color: var(--text-main);
            padding: 6px 0 6px 18px;
            position: relative;
            line-height: 1.7;
        }

        .feature-content .data-summary-list li::before {
            content: '';
            position: absolute;
            left: 0;
            top: 14px;
            width: 8px;
            height: 2px;
            background: var(--accent);
            border-radius: 1px;
        }

        @media (max-width: 768px) {
            .feature-row {
                grid-template-columns: 1fr;
                gap: 24px;
                padding: 28px 0;
            }
            .feature-row.reverse {
                direction: ltr;
            }
            .feature-content h3 {
                font-size: 19px;
            }
        }

        /* Decorative divider */
        .decorative-line {
            width: 100%;
            height: 1px;
            background: linear-gradient(90deg, transparent, var(--border-color), transparent);
            margin: 0;
        }

        .accent-line {
            width: 60px;
            height: 3px;
            background: var(--accent);
            border-radius: 2px;
            margin-bottom: 16px;
        }

        /* Section title */
        .section-title {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.4;
            margin-bottom: 8px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-sub);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        @media (max-width: 768px) {
            .section-title {
                font-size: 24px;
            }
            .section-subtitle {
                font-size: 15px;
            }
        }

        @media (max-width: 480px) {
            .section-title {
                font-size: 22px;
            }
        }

        /* Data highlight chips */
        .data-chip {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: 20px;
            padding: 6px 14px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-main);
        }

        /* Background section */
        .bg-primary-section {
            background: var(--primary);
            color: var(--text-light);
        }

        .bg-primary-section .section-title {
            color: var(--text-light);
        }

        .bg-primary-section .section-subtitle {
            color: rgba(247, 243, 235, 0.7);
        }

/* roulang page: category6 */
:root {
            --primary: #0B3D2E;
            --primary-light: rgba(11, 61, 46, 0.05);
            --primary-light-2: rgba(11, 61, 46, 0.1);
            --primary-dark: #0A2F23;
            --accent: #C8A24B;
            --accent-hover: #B08D35;
            --danger: #8B1E2D;
            --bg: #F7F3EB;
            --card-bg: #FFFFFF;
            --text-main: #1A1A1A;
            --text-sub: #595959;
            --text-light: #F7F3EB;
            --border-color: #E5DFD3;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --radius-xl: 12px;
            --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
            --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
            --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.12);
            --font-stack: 'Noto Sans SC', '思源黑体', '微软雅黑', sans-serif;
            --nav-height: 76px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }

        body {
            font-family: var(--font-stack);
            background-color: var(--bg);
            color: var(--text-main);
            line-height: 1.8;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: var(--nav-height);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, border-color 0.25s ease;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            outline: none;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container-qmh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Magazine Header/Nav */
        .magazine-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--bg);
            border-bottom: 2px solid rgba(200, 162, 75, 0.4);
            height: var(--nav-height);
            transition: box-shadow 0.3s ease, background 0.3s ease;
        }

        .magazine-header.scrolled {
            box-shadow: 0 2px 16px rgba(26, 26, 26, 0.08);
            background: rgba(247, 243, 235, 0.97);
        }

        .magazine-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 16px;
        }

        .magazine-logo {
            font-size: 30px;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: 0.05em;
            white-space: nowrap;
            transition: color 0.25s ease;
            line-height: 1.2;
        }

        .magazine-logo:hover {
            color: var(--accent-hover);
        }

        .magazine-logo .logo-accent {
            color: var(--accent);
        }

        .magazine-nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }

        .magazine-nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-sub);
            padding: 4px 0;
            position: relative;
            transition: color 0.25s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .magazine-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
            border-radius: 1px;
        }

        .magazine-nav-links a:hover {
            color: var(--primary);
        }

        .magazine-nav-links a:hover::after {
            width: 100%;
        }

        .magazine-nav-links a.active {
            color: var(--primary);
            font-weight: 700;
        }

        .magazine-nav-links a.active::after {
            width: 100%;
        }

        .magazine-nav-divider {
            width: 1px;
            height: 20px;
            background: rgba(200, 162, 75, 0.5);
            flex-shrink: 0;
        }

        /* Hamburger */
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            transition: all 0.25s ease;
        }

        .hamburger-menu:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }

        .hamburger-menu span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
            transition: all 0.3s ease;
        }

        .hamburger-menu.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger-menu.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger-menu.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: var(--card-bg);
            border-bottom: 2px solid var(--border-color);
            box-shadow: var(--shadow-md);
            padding: 16px 24px;
            z-index: 999;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-nav-panel.open {
            display: flex;
        }

        .mobile-nav-panel a {
            font-size: 16px;
            font-weight: 500;
            color: var(--text-main);
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
            transition: color 0.25s ease;
        }

        .mobile-nav-panel a:hover {
            color: var(--primary);
        }

        .mobile-nav-panel a.active {
            color: var(--primary);
            font-weight: 700;
        }

        /* Breadcrumb */
        .breadcrumb-qmh {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-sub);
            padding: 20px 0 0;
            flex-wrap: wrap;
        }

        .breadcrumb-qmh a:hover {
            color: var(--primary);
        }

        .breadcrumb-sep {
            color: var(--accent);
            font-weight: 600;
        }

        /* Category header */
        .category-header-qmh {
            padding: 32px 0 24px;
        }

        .category-header-qmh h1 {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            letter-spacing: 0.02em;
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .category-header-qmh .cat-desc {
            font-size: 16px;
            color: var(--text-sub);
            line-height: 1.9;
            max-width: 780px;
        }

        /* Encyclopedia layout */
        .encyclopedia-grid {
            display: grid;
            grid-template-columns: 260px 1fr;
            gap: 40px;
            padding: 24px 0 48px;
            align-items: start;
        }

        .toc-sidebar {
            position: sticky;
            top: calc(var(--nav-height) + 24px);
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            padding: 20px;
            box-shadow: var(--shadow-sm);
            max-height: calc(100vh - var(--nav-height) - 48px);
            overflow-y: auto;
        }

        .toc-sidebar h3 {
            font-size: 16px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 12px;
            padding-bottom: 8px;
            border-bottom: 2px solid rgba(200, 162, 75, 0.4);
        }

        .toc-sidebar a {
            display: block;
            font-size: 14px;
            color: var(--text-sub);
            padding: 8px 10px;
            border-radius: var(--radius-sm);
            transition: all 0.25s ease;
            margin-bottom: 2px;
            font-weight: 500;
        }

        .toc-sidebar a:hover {
            color: var(--primary);
            background: var(--primary-light);
        }

        .toc-sidebar a.active-toc {
            color: var(--primary);
            background: var(--primary-light-2);
            font-weight: 700;
        }

        /* Chapter styles */
        .chapter-qmh {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            padding: 32px 36px;
            margin-bottom: 28px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease;
        }

        .chapter-qmh:hover {
            box-shadow: var(--shadow-md);
        }

        .chapter-header {
            display: flex;
            align-items: baseline;
            gap: 14px;
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid rgba(200, 162, 75, 0.3);
        }

        .chapter-number {
            font-size: 14px;
            font-weight: 900;
            color: var(--accent);
            letter-spacing: 0.05em;
            flex-shrink: 0;
            padding: 4px 10px;
            background: rgba(200, 162, 75, 0.12);
            border-radius: var(--radius-sm);
        }

        .chapter-title {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.5;
        }

        .chapter-body {
            font-size: 15px;
            line-height: 2.0;
            color: var(--text-main);
        }

        .chapter-body p {
            margin-bottom: 16px;
        }

        .chapter-body p:last-child {
            margin-bottom: 0;
        }

        .chapter-body ul,
        .chapter-body ol {
            margin: 0 0 16px 20px;
            padding: 0;
        }

        .chapter-body ul li,
        .chapter-body ol li {
            margin-bottom: 8px;
            line-height: 1.9;
        }

        .chapter-body ul li::marker {
            color: var(--accent);
        }

        /* Blockquote */
        .blockquote-qmh {
            margin: 20px 0;
            padding: 16px 20px;
            background: var(--primary-light);
            border-left: 4px solid var(--primary);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            font-size: 15px;
            line-height: 1.9;
            color: var(--text-main);
        }

        .blockquote-qmh strong {
            color: var(--primary);
        }

        /* Chapter image */
        .chapter-img-wrap {
            margin: 24px 0;
            border-radius: var(--radius-lg);
            overflow: hidden;
            border: 1px solid var(--border-color);
        }

        .chapter-img-wrap img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .chapter-img-caption {
            font-size: 12px;
            color: var(--text-sub);
            padding: 8px 12px;
            background: var(--primary-light);
            border-top: 1px solid var(--border-color);
        }

        /* FAQ */
        .faq-section {
            padding: 40px 0 48px;
        }

        .faq-section h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 24px;
            text-align: center;
        }

        .faq-item {
            margin-bottom: 10px;
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            background: var(--card-bg);
            overflow: hidden;
            transition: border-color 0.25s ease;
        }

        .faq-item:hover {
            border-color: var(--primary);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            transition: color 0.25s ease;
            gap: 12px;
            user-select: none;
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 28px;
            height: 28px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            color: var(--accent);
            transition: transform 0.3s ease;
            font-weight: 700;
        }

        .faq-item.open .faq-icon {
            transform: rotate(45deg);
            color: var(--primary);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .faq-item.open .faq-answer {
            max-height: 600px;
        }

        .faq-answer-inner {
            padding: 0 20px 18px;
            font-size: 14px;
            line-height: 1.9;
            color: var(--text-sub);
            border-top: 1px solid rgba(200, 162, 75, 0.3);
            padding-top: 14px;
        }

        /* CTA */
        .cta-section-qmh {
            padding: 48px 0;
        }

        .cta-box-qmh {
            background: var(--primary);
            border-radius: var(--radius-xl);
            padding: 40px 36px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-box-qmh::before {
            content: '';
            position: absolute;
            top: -50%;
            left: -50%;
            width: 200%;
            height: 200%;
            background: radial-gradient(circle at 30% 30%, rgba(200, 162, 75, 0.08) 0%, transparent 60%);
            pointer-events: none;
        }

        .cta-box-qmh h2 {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .cta-box-qmh p {
            font-size: 15px;
            color: rgba(247, 243, 235, 0.8);
            line-height: 1.8;
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .cta-btn-row {
            display: flex;
            gap: 14px;
            justify-content: center;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        .btn-accent {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: var(--accent);
            color: var(--text-main);
            font-weight: 700;
            font-size: 15px;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            border: none;
            cursor: pointer;
        }

        .btn-accent:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(200, 162, 75, 0.25);
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            background: transparent;
            color: var(--text-light);
            font-weight: 600;
            font-size: 15px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(247, 243, 235, 0.5);
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .btn-outline-light:hover {
            background: rgba(247, 243, 235, 0.1);
            border-color: var(--text-light);
        }

        /* Related entries */
        .related-section {
            padding: 24px 0 48px;
        }

        .related-section h2 {
            font-size: 22px;
            font-weight: 800;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .related-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
            gap: 16px;
        }

        .related-card {
            background: var(--card-bg);
            border-radius: var(--radius-md);
            border: 1px solid var(--border-color);
            padding: 16px 18px;
            transition: all 0.3s ease;
            cursor: pointer;
        }

        .related-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
            transform: translateY(-2px);
        }

        .related-card .rc-tag {
            font-size: 12px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 6px;
            display: block;
        }

        .related-card .rc-title {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
            line-height: 1.6;
        }

        .related-card .rc-desc {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.7;
        }

        /* Footer */
        .footer-qmh {
            background: var(--primary-dark);
            color: var(--text-light);
            padding: 40px 0 24px;
            margin-top: 0;
        }

        .footer-qmh-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 28px;
        }

        .footer-brand .footer-logo {
            font-size: 24px;
            font-weight: 900;
            color: var(--text-light);
            margin-bottom: 12px;
            letter-spacing: 0.05em;
        }

        .footer-brand .footer-logo .logo-accent {
            color: var(--accent);
        }

        .footer-brand p {
            font-size: 13px;
            color: rgba(247, 243, 235, 0.65);
            line-height: 1.8;
            max-width: 300px;
        }

        .footer-qmh-grid h4 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 12px;
        }

        .footer-qmh-grid ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-qmh-grid ul li {
            margin-bottom: 8px;
        }

        .footer-qmh-grid ul li a {
            font-size: 13px;
            color: rgba(247, 243, 235, 0.7);
            transition: color 0.25s ease;
        }

        .footer-qmh-grid ul li a:hover {
            color: var(--accent);
        }

        .footer-qmh-bottom {
            border-top: 1px solid rgba(247, 243, 235, 0.15);
            padding-top: 18px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            font-size: 12px;
            color: rgba(247, 243, 235, 0.55);
        }

        .footer-qmh-bottom .copyright {
            font-weight: 500;
        }

        .footer-qmh-bottom .beian {
            color: rgba(247, 243, 235, 0.5);
        }

        .footer-links {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
        }

        .footer-links a {
            color: rgba(247, 243, 235, 0.7);
            transition: color 0.25s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-links span {
            color: rgba(247, 243, 235, 0.4);
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .magazine-nav-links {
                gap: 14px;
            }
            .magazine-nav-links a {
                font-size: 13px;
            }
            .encyclopedia-grid {
                grid-template-columns: 220px 1fr;
                gap: 28px;
            }
            .chapter-qmh {
                padding: 24px 24px;
            }
        }

        @media (max-width: 768px) {
            body {
                padding-top: 64px;
            }
            :root {
                --nav-height: 64px;
            }
            .magazine-header {
                height: 64px;
            }
            .magazine-nav-links {
                display: none;
            }
            .hamburger-menu {
                display: flex;
            }
            .mobile-nav-panel {
                top: 64px;
            }
            .magazine-logo {
                font-size: 22px;
            }
            .encyclopedia-grid {
                grid-template-columns: 1fr;
                gap: 20px;
                padding: 16px 0 32px;
            }
            .toc-sidebar {
                position: static;
                max-height: none;
                border-radius: var(--radius-md);
                padding: 14px 16px;
                order: -1;
            }
            .toc-sidebar h3 {
                font-size: 14px;
                margin-bottom: 8px;
                cursor: pointer;
                display: flex;
                justify-content: space-between;
                align-items: center;
            }
            .toc-sidebar h3::after {
                content: '▾ 展开目录';
                font-size: 12px;
                font-weight: 600;
                color: var(--text-sub);
                transition: transform 0.3s ease;
            }
            .toc-sidebar h3.toc-collapsed::after {
                content: '▸ 展开目录';
            }
            .toc-sidebar a {
                font-size: 13px;
                padding: 6px 8px;
            }
            .toc-links-wrap.toc-hidden {
                display: none;
            }
            .chapter-qmh {
                padding: 20px 18px;
                margin-bottom: 18px;
            }
            .chapter-title {
                font-size: 18px;
            }
            .chapter-body {
                font-size: 14px;
                line-height: 1.9;
            }
            .category-header-qmh h1 {
                font-size: 24px;
            }
            .category-header-qmh .cat-desc {
                font-size: 14px;
            }
            .faq-section h2 {
                font-size: 22px;
            }
            .cta-box-qmh {
                padding: 28px 20px;
            }
            .cta-box-qmh h2 {
                font-size: 22px;
            }
            .cta-box-qmh p {
                font-size: 14px;
            }
            .btn-accent,
            .btn-outline-light {
                font-size: 14px;
                padding: 10px 20px;
            }
            .footer-qmh-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .footer-qmh-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 6px;
            }
            .footer-links {
                margin-left: 0;
            }
        }

        @media (max-width: 480px) {
            .container-qmh {
                padding: 0 12px;
            }
            .magazine-logo {
                font-size: 20px;
            }
            .category-header-qmh h1 {
                font-size: 20px;
            }
            .chapter-title {
                font-size: 16px;
            }
            .chapter-number {
                font-size: 12px;
                padding: 3px 8px;
            }
            .chapter-body {
                font-size: 13px;
            }
            .blockquote-qmh {
                font-size: 13px;
                padding: 12px 14px;
            }
            .faq-question {
                font-size: 13px;
                padding: 12px 14px;
            }
            .faq-answer-inner {
                font-size: 13px;
                padding: 0 14px 14px;
                padding-top: 10px;
            }
            .footer-qmh-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .related-grid {
                grid-template-columns: 1fr;
            }
        }

/* roulang page: category5 */
:root {
            --primary: #0B3D2E;
            --primary-light: rgba(11, 61, 46, 0.05);
            --primary-light-2: rgba(11, 61, 46, 0.1);
            --primary-dark: #0A2F23;
            --accent: #C8A24B;
            --accent-hover: #B08D35;
            --danger: #8B1E2D;
            --bg: #F7F3EB;
            --card-bg: #FFFFFF;
            --text-main: #1A1A1A;
            --text-sub: #595959;
            --text-light: #F7F3EB;
            --border-color: #E5DFD3;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --radius-xl: 12px;
            --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
            --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
            --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.12);
            --font-stack: 'Noto Sans SC', '思源黑体', '微软雅黑', sans-serif;
            --nav-height: 76px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }
        body {
            font-family: var(--font-stack);
            background-color: var(--bg);
            color: var(--text-main);
            line-height: 1.8;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: var(--nav-height);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease;
        }
        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            outline: none;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        .container-qmh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        @media (max-width: 768px) {
            .container-qmh {
                padding: 0 16px;
            }
        }
        @media (max-width: 480px) {
            .container-qmh {
                padding: 0 12px;
            }
        }
        .magazine-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--bg);
            border-bottom: 2px solid rgba(200, 162, 75, 0.4);
            height: var(--nav-height);
            transition: box-shadow 0.3s ease, background 0.3s ease;
        }
        .magazine-header.scrolled {
            box-shadow: 0 2px 16px rgba(26, 26, 26, 0.08);
            background: rgba(247, 243, 235, 0.97);
        }
        .magazine-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 16px;
        }
        .magazine-logo {
            font-size: 30px;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: 0.05em;
            white-space: nowrap;
            transition: color 0.25s ease;
            line-height: 1.2;
        }
        .magazine-logo:hover {
            color: var(--accent-hover);
        }
        .magazine-logo .logo-accent {
            color: var(--accent);
        }
        @media (max-width: 480px) {
            .magazine-logo {
                font-size: 24px;
            }
        }
        .magazine-nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .magazine-nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-sub);
            padding: 4px 0;
            position: relative;
            transition: color 0.25s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .magazine-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
            border-radius: 1px;
        }
        .magazine-nav-links a:hover {
            color: var(--primary);
        }
        .magazine-nav-links a:hover::after {
            width: 100%;
        }
        .magazine-nav-links a.active {
            color: var(--primary);
            font-weight: 700;
        }
        .magazine-nav-links a.active::after {
            width: 100%;
        }
        .magazine-nav-divider {
            width: 1px;
            height: 20px;
            background: rgba(200, 162, 75, 0.5);
            flex-shrink: 0;
        }
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            transition: all 0.25s ease;
        }
        .hamburger-menu:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }
        .hamburger-menu span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
            transition: all 0.3s ease;
        }
        .hamburger-menu.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger-menu.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger-menu.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: var(--card-bg);
            border-bottom: 2px solid var(--border-color);
            box-shadow: var(--shadow-md);
            padding: 16px 24px;
            z-index: 999;
            flex-direction: column;
            gap: 12px;
        }
        .mobile-nav-panel.open {
            display: flex;
        }
        .mobile-nav-panel a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-main);
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
            transition: color 0.25s ease;
        }
        .mobile-nav-panel a:hover,
        .mobile-nav-panel a.active {
            color: var(--primary);
        }
        @media (max-width: 1024px) {
            .magazine-nav-links {
                gap: 12px;
            }
            .magazine-nav-links a {
                font-size: 13px;
            }
        }
        @media (max-width: 768px) {
            .hamburger-menu {
                display: flex;
            }
            .magazine-nav-links {
                display: none;
            }
        }
        .breadcrumb-qmh {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-sub);
            padding: 24px 0 12px;
        }
        .breadcrumb-qmh a {
            color: var(--text-sub);
            transition: color 0.25s ease;
        }
        .breadcrumb-qmh a:hover {
            color: var(--primary);
        }
        .breadcrumb-qmh .sep {
            color: var(--border-color);
        }
        .breadcrumb-qmh .current {
            color: var(--primary);
            font-weight: 600;
        }
        .page-title-qmh {
            font-size: 28px;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.4;
            margin-bottom: 8px;
        }
        @media (max-width: 480px) {
            .page-title-qmh {
                font-size: 22px;
            }
        }
        .page-subtitle-qmh {
            font-size: 15px;
            color: var(--text-sub);
            line-height: 1.8;
            max-width: 720px;
        }
        .section-qmh {
            padding: 48px 0;
        }
        @media (max-width: 768px) {
            .section-qmh {
                padding: 32px 0;
            }
        }
        .section-header-qmh {
            margin-bottom: 28px;
        }
        .section-title-qmh {
            font-size: 22px;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.4;
            margin-bottom: 8px;
        }
        .section-desc-qmh {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.8;
        }
        .btn-primary-qmh {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: var(--text-main);
            font-weight: 700;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            min-height: 44px;
            gap: 8px;
            box-shadow: var(--shadow-sm);
        }
        .btn-primary-qmh:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: var(--shadow-md);
        }
        .btn-primary-qmh:focus-visible {
            outline: 3px solid rgba(11, 61, 46, 0.3);
            outline-offset: 2px;
        }
        .btn-outline-qmh {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: var(--primary);
            font-weight: 700;
            font-size: 15px;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            min-height: 44px;
            gap: 8px;
            border: 1px solid var(--primary);
        }
        .btn-outline-qmh:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            transform: translateY(-2px);
        }
        .btn-outline-qmh:focus-visible {
            outline: 3px solid rgba(11, 61, 46, 0.3);
            outline-offset: 2px;
        }
        .btn-text-qmh {
            display: inline-flex;
            align-items: center;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            gap: 6px;
        }
        .btn-text-qmh:hover {
            color: var(--accent-hover);
            gap: 10px;
        }
        .btn-text-qmh .arrow {
            transition: transform 0.3s ease;
        }
        .btn-text-qmh:hover .arrow {
            transform: translateX(2px);
        }
        .stat-card-qmh {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
        }
        .stat-card-qmh:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--primary-light-2);
        }
        .stat-value-qmh {
            font-size: 32px;
            font-weight: 800;
            color: var(--primary);
            line-height: 1.3;
        }
        .stat-label-qmh {
            font-size: 13px;
            color: var(--text-sub);
            margin-top: 4px;
        }
        .data-table-wrapper {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            overflow-x: auto;
        }
        .data-table-qmh {
            width: 100%;
            border-collapse: collapse;
            font-size: 14px;
            min-width: 720px;
        }
        .data-table-qmh thead {
            background: var(--primary);
            color: var(--text-light);
        }
        .data-table-qmh th {
            padding: 14px 16px;
            text-align: left;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .data-table-qmh td {
            padding: 13px 16px;
            border-bottom: 1px solid var(--border-color);
            color: var(--text-main);
            vertical-align: middle;
        }
        .data-table-qmh tbody tr:nth-child(even) {
            background: rgba(11, 61, 46, 0.03);
        }
        .data-table-qmh tbody tr:hover {
            background: var(--primary-light);
        }
        .data-table-qmh .highlight-cell {
            color: var(--accent-hover);
            font-weight: 700;
        }
        .status-badge-qmh {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.02em;
        }
        .status-badge-qmh.hot {
            background: rgba(139, 30, 45, 0.08);
            color: var(--danger);
        }
        .status-badge-qmh.active {
            background: rgba(11, 61, 46, 0.08);
            color: var(--primary);
        }
        .status-badge-qmh.upcoming {
            background: rgba(200, 162, 75, 0.12);
            color: var(--accent-hover);
        }
        .chart-container-qmh {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-sm);
        }
        .chart-title-qmh {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 4px;
        }
        .chart-desc-qmh {
            font-size: 13px;
            color: var(--text-sub);
            margin-bottom: 20px;
        }
        .bar-chart-qmh {
            display: flex;
            align-items: flex-end;
            gap: 12px;
            height: 200px;
            padding-top: 20px;
            border-bottom: 1px solid var(--border-color);
            position: relative;
        }
        .bar-chart-qmh .bar-group {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            gap: 6px;
            height: 100%;
            justify-content: flex-end;
        }
        .bar-chart-qmh .bar {
            width: 100%;
            max-width: 48px;
            background: var(--primary);
            border-radius: 4px 4px 0 0;
            transition: all 0.3s ease;
            position: relative;
            min-height: 6px;
        }
        .bar-chart-qmh .bar.accent-bar {
            background: var(--accent);
        }
        .bar-chart-qmh .bar:hover {
            opacity: 0.85;
            transform: scaleY(1.02);
            transform-origin: bottom;
        }
        .bar-chart-qmh .bar-label {
            font-size: 12px;
            color: var(--text-sub);
            white-space: nowrap;
        }
        .bar-chart-qmh .bar-value {
            font-size: 12px;
            font-weight: 700;
            color: var(--text-main);
        }
        .line-chart-qmh {
            position: relative;
            height: 160px;
            background: linear-gradient(180deg, rgba(11, 61, 46, 0.03) 0%, transparent 100%);
            border-radius: var(--radius-md);
            margin-top: 8px;
        }
        .line-chart-qmh .line-svg {
            width: 100%;
            height: 100%;
        }
        .chart-grid-bg {
            stroke: var(--border-color);
            stroke-width: 1;
        }
        .line-path-qmh {
            fill: none;
            stroke: var(--primary);
            stroke-width: 3;
            stroke-linecap: round;
            stroke-linejoin: round;
        }
        .line-path-qmh.accent-line {
            stroke: var(--accent);
        }
        .chart-legend-qmh {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
            margin-top: 12px;
            font-size: 12px;
            color: var(--text-sub);
        }
        .chart-legend-qmh .legend-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .chart-legend-qmh .legend-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            display: inline-block;
        }
        .ranking-list-qmh {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .ranking-list-qmh li {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 0;
            border-bottom: 1px solid var(--border-color);
            transition: all 0.3s ease;
        }
        .ranking-list-qmh li:hover {
            background: var(--primary-light);
            padding-left: 8px;
        }
        .ranking-number-qmh {
            font-size: 20px;
            font-weight: 800;
            color: var(--accent-hover);
            min-width: 32px;
            text-align: center;
        }
        .ranking-info-qmh {
            flex: 1;
        }
        .ranking-name-qmh {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
        }
        .ranking-meta-qmh {
            font-size: 13px;
            color: var(--text-sub);
        }
        .ranking-score-qmh {
            font-size: 14px;
            font-weight: 700;
            color: var(--primary);
            white-space: nowrap;
        }
        .info-card-qmh {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow-sm);
        }
        .info-card-qmh h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
        }
        .info-card-qmh p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.9;
        }
        .faq-container-qmh {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }
        .faq-item-qmh {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            overflow: hidden;
            transition: all 0.3s ease;
        }
        .faq-item-qmh:hover {
            border-color: var(--primary-light-2);
        }
        .faq-question-qmh {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            cursor: pointer;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            transition: all 0.3s ease;
            gap: 12px;
        }
        .faq-question-qmh:hover {
            color: var(--primary);
        }
        .faq-toggle-icon {
            width: 20px;
            height: 20px;
            position: relative;
            flex-shrink: 0;
            transition: transform 0.3s ease;
        }
        .faq-toggle-icon::before,
        .faq-toggle-icon::after {
            content: '';
            position: absolute;
            background: var(--primary);
            border-radius: 2px;
            transition: all 0.3s ease;
        }
        .faq-toggle-icon::before {
            width: 12px;
            height: 2px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .faq-toggle-icon::after {
            width: 2px;
            height: 12px;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
        }
        .faq-item-qmh.open .faq-toggle-icon::after {
            transform: translate(-50%, -50%) rotate(90deg);
            opacity: 0;
        }
        .faq-answer-qmh {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.4s ease, padding 0.3s ease;
            padding: 0 20px;
        }
        .faq-item-qmh.open .faq-answer-qmh {
            max-height: 300px;
            padding: 0 20px 16px;
        }
        .faq-answer-qmh p {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.9;
            background: var(--primary-light);
            border-top: 1px solid var(--primary-light-2);
            padding: 12px 16px;
            border-radius: var(--radius-sm);
        }
        .cta-section-qmh {
            background: var(--primary);
            border-radius: var(--radius-xl);
            padding: 48px 40px;
            text-align: center;
            color: var(--text-light);
            box-shadow: var(--shadow-lg);
        }
        .cta-section-qmh h2 {
            font-size: 24px;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 8px;
        }
        .cta-section-qmh p {
            font-size: 15px;
            color: rgba(247, 243, 235, 0.85);
            max-width: 560px;
            margin: 0 auto 24px;
            line-height: 1.8;
        }
        .footer-qmh {
            background: #111;
            color: rgba(247, 243, 235, 0.85);
            padding: 48px 0 24px;
            margin-top: 48px;
        }
        .footer-qmh-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        @media (max-width: 768px) {
            .footer-qmh-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
        }
        .footer-brand .footer-logo {
            font-size: 24px;
            font-weight: 900;
            color: var(--text-light);
            margin-bottom: 8px;
        }
        .footer-brand .footer-logo .logo-accent {
            color: var(--accent);
        }
        .footer-brand p {
            font-size: 13px;
            color: rgba(247, 243, 235, 0.7);
            line-height: 1.8;
        }
        .footer-qmh h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 12px;
        }
        .footer-qmh ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-qmh ul li {
            margin-bottom: 8px;
        }
        .footer-qmh ul a {
            font-size: 13px;
            color: rgba(247, 243, 235, 0.7);
            transition: color 0.25s ease;
        }
        .footer-qmh ul a:hover {
            color: var(--accent);
        }
        .footer-qmh-bottom {
            border-top: 1px solid rgba(247, 243, 235, 0.15);
            padding-top: 16px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: rgba(247, 243, 235, 0.6);
        }
        .footer-qmh-bottom .beian {
            color: rgba(247, 243, 235, 0.6);
        }
        .footer-links {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-links a {
            color: rgba(247, 243, 235, 0.7);
            transition: color 0.25s ease;
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .tag-qmh {
            display: inline-flex;
            align-items: center;
            padding: 4px 10px;
            border-radius: 4px;
            font-size: 12px;
            font-weight: 600;
            background: var(--primary-light);
            color: var(--primary);
            letter-spacing: 0.02em;
        }
        .update-time-qmh {
            font-size: 12px;
            color: var(--text-sub);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .update-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #4CAF50;
            animation: pulse-dot 2s ease-in-out infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.5; transform: scale(1.5); }
        }
        .img-cover-qmh {
            width: 100%;
            height: 100%;
            object-fit: cover;
            border-radius: var(--radius-md);
        }
        .img-fixed-height {
            height: 200px;
            width: 100%;
            object-fit: cover;
            border-radius: var(--radius-md);
        }

/* roulang page: category7 */
:root {
            --primary: #0B3D2E;
            --primary-light: rgba(11, 61, 46, 0.05);
            --primary-light-2: rgba(11, 61, 46, 0.1);
            --primary-dark: #0A2F23;
            --accent: #C8A24B;
            --accent-hover: #B08D35;
            --danger: #8B1E2D;
            --bg: #F7F3EB;
            --card-bg: #FFFFFF;
            --text-main: #1A1A1A;
            --text-sub: #595959;
            --text-light: #F7F3EB;
            --border-color: #E5DFD3;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --radius-xl: 12px;
            --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
            --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
            --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.12);
            --font-stack: 'Noto Sans SC', '思源黑体', '微软雅黑', sans-serif;
            --nav-height: 76px;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }

        body {
            font-family: var(--font-stack);
            background-color: var(--bg);
            color: var(--text-main);
            line-height: 1.8;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: var(--nav-height);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            outline: none;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container-qmh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* Magazine Header/Nav */
        .magazine-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--bg);
            border-bottom: 2px solid rgba(200, 162, 75, 0.4);
            height: var(--nav-height);
            transition: box-shadow 0.3s ease, background 0.3s ease;
        }

        .magazine-header.scrolled {
            box-shadow: 0 2px 16px rgba(26, 26, 26, 0.08);
            background: rgba(247, 243, 235, 0.97);
        }

        .magazine-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 16px;
        }

        .magazine-logo {
            font-size: 28px;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: 0.05em;
            white-space: nowrap;
            transition: color 0.25s ease;
            line-height: 1.2;
        }

        .magazine-logo:hover {
            color: var(--accent-hover);
        }

        .magazine-logo .logo-accent {
            color: var(--accent);
        }

        .magazine-nav-links {
            display: flex;
            align-items: center;
            gap: 18px;
            flex-wrap: wrap;
        }

        .magazine-nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-sub);
            padding: 4px 0;
            position: relative;
            transition: color 0.25s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }

        .magazine-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
            border-radius: 1px;
        }

        .magazine-nav-links a:hover {
            color: var(--primary);
        }

        .magazine-nav-links a:hover::after {
            width: 100%;
        }

        .magazine-nav-links a.active {
            color: var(--primary);
            font-weight: 700;
        }

        .magazine-nav-links a.active::after {
            width: 100%;
        }

        .magazine-nav-divider {
            width: 1px;
            height: 20px;
            background: rgba(200, 162, 75, 0.5);
            flex-shrink: 0;
        }

        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            transition: all 0.25s ease;
        }

        .hamburger-menu:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }

        .hamburger-menu span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
            transition: all 0.3s ease;
        }

        .hamburger-menu.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }

        .hamburger-menu.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }

        .hamburger-menu.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }

        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: var(--card-bg);
            border-bottom: 2px solid var(--border-color);
            box-shadow: var(--shadow-md);
            padding: 16px 24px;
            z-index: 999;
            flex-direction: column;
            gap: 12px;
        }

        .mobile-nav-panel a {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-main);
            padding: 8px 0;
            border-bottom: 1px solid var(--border-color);
            display: block;
            transition: color 0.2s ease;
        }

        .mobile-nav-panel a:hover {
            color: var(--primary);
        }

        .mobile-nav-panel a.active {
            color: var(--primary);
            font-weight: 700;
        }

        /* Buttons */
        .btn-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: var(--accent);
            color: var(--text-main);
            font-weight: 700;
            font-size: 14px;
            padding: 10px 24px;
            border-radius: var(--radius-sm);
            transition: all 0.3s ease;
            letter-spacing: 0.02em;
            line-height: 1.4;
            min-height: 40px;
        }

        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(200, 162, 75, 0.3);
        }

        .btn-primary:focus-visible {
            outline: 3px solid rgba(11, 61, 46, 0.5);
            outline-offset: 2px;
        }

        .btn-outline-light {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: var(--text-light);
            font-weight: 600;
            font-size: 14px;
            padding: 9px 22px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(247, 243, 235, 0.5);
            transition: all 0.3s ease;
            letter-spacing: 0.02em;
            line-height: 1.4;
            min-height: 40px;
        }

        .btn-outline-light:hover {
            background: rgba(247, 243, 235, 0.1);
            border-color: var(--text-light);
            transform: translateY(-1px);
        }

        .btn-outline-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            background: transparent;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            padding: 9px 22px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--primary);
            transition: all 0.3s ease;
            letter-spacing: 0.02em;
            line-height: 1.4;
            min-height: 40px;
        }

        .btn-outline-primary:hover {
            background: var(--primary-light-2);
            border-color: var(--primary);
            transform: translateY(-1px);
        }

        .btn-text {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            transition: all 0.25s ease;
        }

        .btn-text::after {
            content: '→';
            display: inline-block;
            transition: transform 0.25s ease;
        }

        .btn-text:hover {
            color: var(--accent-hover);
        }

        .btn-text:hover::after {
            transform: translateX(4px);
        }

        /* Section base */
        .section-qmh {
            padding: 64px 0;
        }

        .section-title {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-main);
            line-height: 1.4;
            margin-bottom: 12px;
            letter-spacing: 0.01em;
        }

        .section-subtitle {
            font-size: 15px;
            font-weight: 400;
            color: var(--text-sub);
            line-height: 1.8;
            margin-bottom: 32px;
        }

        /* Cards */
        .card-qmh {
            background: var(--card-bg);
            border-radius: var(--radius-lg);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            overflow: hidden;
        }

        .card-qmh:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
        }

        .card-img-wrap {
            position: relative;
            width: 100%;
            height: 200px;
            overflow: hidden;
        }

        .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .card-qmh:hover .card-img-wrap img {
            transform: scale(1.05);
        }

        .card-qmh-body {
            padding: 20px 22px;
        }

        .card-qmh-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 8px;
            line-height: 1.5;
            transition: color 0.25s ease;
        }

        .card-qmh:hover .card-qmh-title {
            color: var(--primary);
        }

        .card-qmh-excerpt {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.7;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-sub);
            padding-top: 12px;
            border-top: 1px solid var(--border-color);
        }

        .badge-qmh {
            display: inline-flex;
            align-items: center;
            padding: 4px 12px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.02em;
            line-height: 1.4;
        }

        .badge-accent {
            background: rgba(200, 162, 75, 0.15);
            color: #8A6D25;
        }

        .badge-primary {
            background: var(--primary-light-2);
            color: var(--primary);
        }

        .badge-danger {
            background: rgba(139, 30, 45, 0.1);
            color: var(--danger);
        }

        /* Hero Banner */
        .hero-banner {
            position: relative;
            width: 100%;
            min-height: 340px;
            background: linear-gradient(135deg, #0B3D2E 0%, #0A2F23 50%, #062019 100%);
            display: flex;
            align-items: center;
            overflow: hidden;
        }

        .hero-banner::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.18;
            pointer-events: none;
        }

        .hero-banner::after {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(11, 61, 46, 0.55);
            pointer-events: none;
        }

        .hero-banner-content {
            position: relative;
            z-index: 2;
            max-width: 1200px;
            margin: 0 auto;
            padding: 48px 24px;
            width: 100%;
        }

        .hero-banner-title {
            font-size: 30px;
            font-weight: 900;
            color: var(--text-light);
            line-height: 1.35;
            margin-bottom: 16px;
            letter-spacing: 0.02em;
        }

        .hero-banner-subtitle {
            font-size: 16px;
            color: rgba(247, 243, 235, 0.85);
            line-height: 1.8;
            margin-bottom: 24px;
            max-width: 620px;
        }

        .hero-banner-date {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(247, 243, 235, 0.7);
            margin-bottom: 28px;
            letter-spacing: 0.04em;
        }

        .hero-banner-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* Activity cards */
        .activity-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .activity-card {
            background: var(--card-bg);
            border-radius: var(--radius-xl);
            border: 1px solid var(--border-color);
            box-shadow: var(--shadow-sm);
            transition: all 0.3s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .activity-card:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-md);
            transform: translateY(-4px);
        }

        .activity-card-img {
            position: relative;
            width: 100%;
            height: 180px;
            overflow: hidden;
            border-radius: var(--radius-xl) var(--radius-xl) 0 0;
        }

        .activity-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .activity-card:hover .activity-card-img img {
            transform: scale(1.05);
        }

        .activity-card-body {
            padding: 20px 22px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .activity-card-title {
            font-size: 17px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 6px;
            line-height: 1.5;
            transition: color 0.25s ease;
        }

        .activity-card:hover .activity-card-title {
            color: var(--primary);
        }

        .activity-card-desc {
            font-size: 13px;
            color: var(--text-sub);
            line-height: 1.7;
            margin-bottom: 12px;
            flex: 1;
        }

        .activity-card-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding-top: 12px;
            border-top: 1px solid var(--border-color);
            font-size: 12px;
            color: var(--text-sub);
        }

        /* Countdown */
        .countdown-bar {
            background: var(--primary);
            padding: 36px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .countdown-bar::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: radial-gradient(circle at 30% 50%, rgba(200, 162, 75, 0.15) 0%, transparent 60%);
            pointer-events: none;
        }

        .countdown-label {
            font-size: 13px;
            color: rgba(247, 243, 235, 0.7);
            letter-spacing: 0.1em;
            margin-bottom: 8px;
            position: relative;
            z-index: 1;
        }

        .countdown-display {
            display: flex;
            justify-content: center;
            gap: 20px;
            position: relative;
            z-index: 1;
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 70px;
        }

        .countdown-number {
            font-size: 36px;
            font-weight: 900;
            color: var(--accent);
            line-height: 1.2;
            letter-spacing: 0.02em;
        }

        .countdown-unit {
            font-size: 12px;
            color: rgba(247, 243, 235, 0.7);
            letter-spacing: 0.06em;
        }

        .countdown-text {
            font-size: 15px;
            color: rgba(247, 243, 235, 0.9);
            margin-top: 10px;
            position: relative;
            z-index: 1;
        }

        /* Info list */
        .info-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .info-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border-color);
            font-size: 14px;
            color: var(--text-main);
            line-height: 1.6;
        }

        .info-list li::before {
            content: '—';
            color: var(--accent);
            font-weight: 700;
            flex-shrink: 0;
        }

        /* FAQ */
        .faq-item {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-md);
            margin-bottom: 8px;
            overflow: hidden;
            transition: all 0.3s ease;
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 16px 20px;
            font-size: 15px;
            font-weight: 600;
            color: var(--text-main);
            cursor: pointer;
            transition: all 0.25s ease;
            gap: 12px;
            width: 100%;
            text-align: left;
            background: none;
            border: none;
        }

        .faq-question:hover {
            background: var(--primary-light);
        }

        .faq-icon {
            flex-shrink: 0;
            width: 24px;
            height: 24px;
            position: relative;
            transition: transform 0.3s ease;
            color: var(--primary);
            font-size: 20px;
            line-height: 24px;
            text-align: center;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            display: none;
            padding: 0 20px 18px;
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.8;
            background: var(--primary-light);
            border-top: 1px solid rgba(11, 61, 46, 0.15);
        }

        .faq-item.active .faq-answer {
            display: block;
        }

        /* Feature list */
        .feature-check-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .feature-check-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-main);
            line-height: 1.6;
        }

        .feature-check-list li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 700;
            flex-shrink: 0;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 20px;
            height: 20px;
            border-radius: 50%;
            background: rgba(200, 162, 75, 0.15);
            font-size: 12px;
            margin-top: 2px;
        }

        /* CTA section */
        .cta-section {
            background: var(--primary-dark);
            padding: 56px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(circle at 70% 30%, rgba(200, 162, 75, 0.2) 0%, transparent 50%);
            pointer-events: none;
        }

        .cta-title {
            font-size: 26px;
            font-weight: 800;
            color: var(--text-light);
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }

        .cta-subtitle {
            font-size: 15px;
            color: rgba(247, 243, 235, 0.8);
            margin-bottom: 24px;
            position: relative;
            z-index: 1;
        }

        .cta-actions {
            display: flex;
            justify-content: center;
            gap: 16px;
            flex-wrap: wrap;
            position: relative;
            z-index: 1;
        }

        /* Footer */
        .footer-qmh {
            background: #0A2F23;
            padding: 48px 0 24px;
            color: rgba(247, 243, 235, 0.8);
        }

        .footer-qmh-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 32px;
        }

        .footer-logo {
            font-size: 22px;
            font-weight: 900;
            color: var(--text-light);
            letter-spacing: 0.04em;
            margin-bottom: 12px;
        }

        .footer-logo .logo-accent {
            color: var(--accent);
        }

        .footer-qmh h4 {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-light);
            margin-bottom: 12px;
            letter-spacing: 0.04em;
        }

        .footer-qmh ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-qmh ul li {
            margin-bottom: 6px;
        }

        .footer-qmh ul a {
            font-size: 13px;
            color: rgba(247, 243, 235, 0.7);
            transition: color 0.25s ease;
        }

        .footer-qmh ul a:hover {
            color: var(--accent);
        }

        .footer-brand p {
            font-size: 13px;
            color: rgba(247, 243, 235, 0.7);
            line-height: 1.7;
            margin-top: 8px;
        }

        .footer-qmh-bottom {
            border-top: 1px solid rgba(247, 243, 235, 0.15);
            padding-top: 16px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 12px;
            color: rgba(247, 243, 235, 0.55);
        }

        .footer-links a {
            color: rgba(247, 243, 235, 0.7);
            transition: color 0.25s ease;
        }

        .footer-links a:hover {
            color: var(--accent);
        }

        .footer-links span {
            color: rgba(247, 243, 235, 0.3);
            margin: 0 8px;
        }

        .beian {
            font-size: 12px;
            color: rgba(247, 243, 235, 0.55);
            letter-spacing: 0.02em;
        }

        /* Responsive */
        @media (max-width: 1024px) {
            .magazine-nav-links {
                gap: 12px;
            }
            .magazine-nav-links a {
                font-size: 13px;
            }
            .activity-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 18px;
            }
            .footer-qmh-grid {
                grid-template-columns: 1.5fr 1fr 1fr;
            }
            .footer-qmh-grid > div:last-child {
                grid-column: span 3;
            }
        }

        @media (max-width: 768px) {
            .magazine-nav-links {
                display: none;
            }
            .hamburger-menu {
                display: flex;
            }
            .mobile-nav-panel.show {
                display: flex;
            }
            .magazine-logo {
                font-size: 22px;
            }
            .hero-banner {
                min-height: 300px;
            }
            .hero-banner-title {
                font-size: 24px;
            }
            .section-qmh {
                padding: 48px 0;
            }
            .section-title {
                font-size: 22px;
            }
            .activity-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .countdown-number {
                font-size: 28px;
            }
            .countdown-item {
                min-width: 56px;
            }
            .countdown-display {
                gap: 12px;
            }
            .footer-qmh-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .footer-qmh-grid > div:last-child {
                grid-column: span 2;
            }
            .footer-qmh-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .container-qmh {
                padding: 0 16px;
            }
        }

        @media (max-width: 480px) {
            .hero-banner-title {
                font-size: 20px;
            }
            .hero-banner-subtitle {
                font-size: 14px;
            }
            .section-title {
                font-size: 19px;
            }
            .footer-qmh-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-qmh-grid > div:last-child {
                grid-column: span 1;
            }
            .container-qmh {
                padding: 0 12px;
            }
            .card-img-wrap {
                height: 160px;
            }
            .activity-card-img {
                height: 160px;
            }
            .btn-primary,
            .btn-outline-light,
            .btn-outline-primary {
                font-size: 13px;
                padding: 8px 18px;
                min-height: 36px;
            }
            .countdown-number {
                font-size: 22px;
            }
            .countdown-item {
                min-width: 48px;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #0B3D2E;
            --primary-light: rgba(11, 61, 46, 0.05);
            --primary-light-2: rgba(11, 61, 46, 0.1);
            --primary-dark: #0A2F23;
            --accent: #C8A24B;
            --accent-hover: #B08D35;
            --danger: #8B1E2D;
            --bg: #F7F3EB;
            --card-bg: #FFFFFF;
            --text-main: #1A1A1A;
            --text-sub: #595959;
            --text-light: #F7F3EB;
            --border-color: #E5DFD3;
            --radius-sm: 6px;
            --radius-md: 8px;
            --radius-lg: 10px;
            --radius-xl: 12px;
            --shadow-sm: 0 2px 8px rgba(26, 26, 26, 0.04);
            --shadow-md: 0 8px 24px rgba(26, 26, 26, 0.08);
            --shadow-lg: 0 16px 48px rgba(26, 26, 26, 0.12);
            --font-stack: 'Noto Sans SC', '思源黑体', '微软雅黑', sans-serif;
            --nav-height: 76px;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
            font-size: 16px;
        }
        body {
            font-family: var(--font-stack);
            background-color: var(--bg);
            color: var(--text-main);
            line-height: 1.8;
            min-height: 100vh;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            padding-top: var(--nav-height);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        a {
            color: inherit;
            text-decoration: none;
            transition: color 0.25s ease, opacity 0.25s ease, background-color 0.25s ease, transform 0.25s ease;
        }
        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
            outline: none;
        }
        button {
            cursor: pointer;
            border: none;
            background: none;
        }
        .container-qmh {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* Header */
        .magazine-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: var(--bg);
            border-bottom: 2px solid rgba(200, 162, 75, 0.4);
            height: var(--nav-height);
            transition: box-shadow 0.3s ease, background 0.3s ease;
        }
        .magazine-header.scrolled {
            box-shadow: 0 2px 16px rgba(26, 26, 26, 0.08);
            background: rgba(247, 243, 235, 0.97);
        }
        .magazine-header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 100%;
            gap: 16px;
        }
        .magazine-logo {
            font-size: 30px;
            font-weight: 900;
            color: var(--primary);
            letter-spacing: 0.05em;
            white-space: nowrap;
            transition: color 0.25s ease;
            line-height: 1.2;
        }
        .magazine-logo:hover {
            color: var(--accent-hover);
        }
        .magazine-logo .logo-accent {
            color: var(--accent);
        }
        .magazine-nav-links {
            display: flex;
            align-items: center;
            gap: 20px;
            flex-wrap: wrap;
        }
        .magazine-nav-links a {
            font-size: 14px;
            font-weight: 500;
            color: var(--text-sub);
            padding: 4px 0;
            position: relative;
            transition: color 0.25s ease;
            letter-spacing: 0.02em;
            white-space: nowrap;
        }
        .magazine-nav-links a::after {
            content: '';
            position: absolute;
            bottom: -2px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--primary);
            transition: width 0.3s ease;
            border-radius: 1px;
        }
        .magazine-nav-links a:hover {
            color: var(--primary);
        }
        .magazine-nav-links a:hover::after {
            width: 100%;
        }
        .magazine-nav-links a.active {
            color: var(--primary);
            font-weight: 700;
        }
        .magazine-nav-links a.active::after {
            width: 100%;
        }
        .magazine-nav-divider {
            width: 1px;
            height: 20px;
            background: rgba(200, 162, 75, 0.5);
            flex-shrink: 0;
        }
        .hamburger-menu {
            display: none;
            flex-direction: column;
            justify-content: center;
            gap: 5px;
            width: 40px;
            height: 40px;
            padding: 8px;
            border-radius: var(--radius-sm);
            border: 1px solid var(--border-color);
            background: var(--card-bg);
            transition: all 0.25s ease;
        }
        .hamburger-menu:hover {
            border-color: var(--primary);
            background: var(--primary-light);
        }
        .hamburger-menu span {
            display: block;
            width: 100%;
            height: 2px;
            background: var(--primary);
            border-radius: 1px;
            transition: all 0.3s ease;
        }
        .hamburger-menu.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg);
        }
        .hamburger-menu.open span:nth-child(2) {
            opacity: 0;
            transform: scaleX(0);
        }
        .hamburger-menu.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg);
        }
        .mobile-nav-panel {
            display: none;
            position: fixed;
            top: var(--nav-height);
            left: 0;
            right: 0;
            background: var(--card-bg);
            border-bottom: 2px solid var(--border-color);
            box-shadow: var(--shadow-md);
            padding: 16px 24px;
            z-index: 999;
            flex-direction: column;
            gap: 12px;
        }
        .mobile-nav-panel.open {
            display: flex;
        }
        .mobile-nav-panel a {
            font-size: 16px;
            color: var(--text-main);
            padding: 10px 0;
            border-bottom: 1px solid var(--border-color);
        }
        .mobile-nav-panel a:last-child {
            border-bottom: none;
        }
        /* Typography */
        h1, h2, h3, h4 {
            font-weight: 800;
            line-height: 1.5;
            color: var(--text-main);
        }
        h1 {
            font-size: 32px;
            font-weight: 900;
            color: var(--primary);
        }
        h2 {
            font-size: 26px;
            font-weight: 800;
        }
        h3 {
            font-size: 18px;
            font-weight: 700;
        }
        .text-sub {
            color: var(--text-sub);
        }
        .section-pad {
            padding: 64px 0;
        }
        .section-pad-sm {
            padding: 40px 0;
        }
        /* Buttons */
        .btn-primary {
            display: inline-block;
            background: var(--accent);
            color: var(--text-main);
            font-weight: 700;
            padding: 12px 28px;
            border-radius: var(--radius-sm);
            transition: background-color 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease;
            box-shadow: 0 2px 6px rgba(26, 26, 26, 0.1);
            font-size: 15px;
            letter-spacing: 0.02em;
        }
        .btn-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(26, 26, 26, 0.15);
        }
        .btn-primary:focus-visible {
            outline: 3px solid var(--primary);
            outline-offset: 2px;
        }
        .btn-secondary {
            display: inline-block;
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
            font-weight: 600;
            padding: 11px 26px;
            border-radius: var(--radius-sm);
            transition: background-color 0.25s ease, color 0.25s ease, transform 0.25s ease;
            font-size: 15px;
        }
        .btn-secondary:hover {
            background: var(--primary-light);
            border-color: var(--primary);
            color: var(--primary);
            transform: translateY(-2px);
        }
        .btn-secondary:focus-visible {
            outline: 3px solid var(--accent);
            outline-offset: 2px;
        }
        .btn-text {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--primary);
            font-weight: 600;
            font-size: 14px;
            transition: color 0.25s ease, transform 0.25s ease;
        }
        .btn-text:hover {
            color: var(--accent-hover);
            transform: translateX(4px);
        }
        .btn-text .arrow {
            display: inline-block;
            transition: transform 0.25s ease;
        }
        .btn-text:hover .arrow {
            transform: translateX(3px);
        }
        /* Cards */
        .card-qmh {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-sm);
            padding: 20px;
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }
        .card-qmh:hover {
            box-shadow: var(--shadow-md);
            transform: translateY(-3px);
            border-color: var(--primary);
        }
        /* Time line specific */
        .timeline-wrapper {
            position: relative;
            padding-left: 40px;
        }
        .timeline-wrapper::before {
            content: '';
            position: absolute;
            left: 16px;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary);
            opacity: 0.2;
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            padding-bottom: 48px;
        }
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -33px;
            top: 8px;
            width: 13px;
            height: 13px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid var(--bg);
            box-shadow: 0 0 0 2px var(--accent);
            z-index: 1;
        }
        .timeline-item.active-item::before {
            background: var(--danger);
            box-shadow: 0 0 0 2px var(--danger);
        }
        .timeline-time {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.03em;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .timeline-card {
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            border-radius: var(--radius-lg);
            padding: 20px 24px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
        }
        .timeline-card:hover {
            box-shadow: var(--shadow-md);
            border-color: var(--primary-light-2);
        }
        .timeline-status {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 20px;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 0.03em;
            margin-left: 10px;
            vertical-align: middle;
        }
        .status-live {
            background: var(--danger);
            color: #fff;
        }
        .status-upcoming {
            background: var(--accent);
            color: var(--text-main);
        }
        .status-ended {
            background: var(--border-color);
            color: var(--text-sub);
        }
        /* Date picker */
        .date-scroll {
            display: flex;
            gap: 10px;
            overflow-x: auto;
            padding: 8px 0 16px;
            scrollbar-width: thin;
            scrollbar-color: var(--accent) var(--border-color);
        }
        .date-scroll::-webkit-scrollbar {
            height: 5px;
        }
        .date-scroll::-webkit-scrollbar-thumb {
            background: var(--accent);
            border-radius: 4px;
        }
        .date-chip {
            flex-shrink: 0;
            padding: 10px 18px;
            border-radius: var(--radius-md);
            background: var(--card-bg);
            border: 1px solid var(--border-color);
            font-size: 13px;
            font-weight: 600;
            color: var(--text-sub);
            cursor: pointer;
            transition: all 0.25s ease;
            text-align: center;
            min-width: 80px;
        }
        .date-chip:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--primary-light);
        }
        .date-chip.selected {
            background: var(--primary);
            border-color: var(--primary);
            color: var(--text-light);
            box-shadow: 0 4px 12px rgba(11, 61, 46, 0.25);
        }
        .date-chip .day {
            display: block;
            font-size: 12px;
            font-weight: 500;
            opacity: 0.7;
        }
        .date-chip .date {
            display: block;
            font-size: 16px;
            font-weight: 800;
        }
        /* Section backgrounds */
        .bg-primary-qmh {
            background: var(--primary);
            color: var(--text-light);
        }
        .bg-light-qmh {
            background: var(--primary-light);
        }
        .bg-white-qmh {
            background: #fff;
        }
        .bg-dark-qmh {
            background: var(--primary-dark);
            color: var(--text-light);
        }
        /* Breadcrumb */
        .breadcrumb-qmh {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text-sub);
            padding: 16px 0 8px;
            flex-wrap: wrap;
        }
        .breadcrumb-qmh a {
            color: var(--primary);
            font-weight: 500;
        }
        .breadcrumb-qmh a:hover {
            color: var(--accent-hover);
        }
        .breadcrumb-sep {
            color: var(--accent);
        }
        /* Footer */
        .footer-qmh {
            background: var(--primary-dark);
            color: var(--text-light);
            padding: 48px 0 24px;
            font-size: 14px;
        }
        .footer-qmh a {
            color: rgba(247, 243, 235, 0.8);
            transition: color 0.25s ease;
        }
        .footer-qmh a:hover {
            color: var(--accent);
        }
        .footer-logo {
            font-size: 26px;
            font-weight: 900;
            color: var(--text-light);
            margin-bottom: 12px;
        }
        .footer-logo .logo-accent {
            color: var(--accent);
        }
        .footer-qmh-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 32px;
            margin-bottom: 32px;
        }
        .footer-qmh h4 {
            color: var(--accent);
            font-size: 16px;
            margin-bottom: 12px;
            font-weight: 700;
        }
        .footer-qmh ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-qmh ul li {
            margin-bottom: 8px;
        }
        .footer-qmh-bottom {
            border-top: 1px solid rgba(247, 243, 235, 0.15);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            align-items: center;
            font-size: 12px;
            color: rgba(247, 243, 235, 0.6);
        }
        .footer-qmh-bottom .beian {
            color: rgba(247, 243, 235, 0.6);
        }
        .footer-links {
            display: flex;
            align-items: center;
            gap: 8px;
            margin-left: auto;
        }
        .footer-links a {
            color: rgba(247, 243, 235, 0.7);
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        /* Responsive */
        @media (max-width: 1024px) {
            .footer-qmh-grid {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .timeline-wrapper {
                padding-left: 24px;
            }
            .timeline-wrapper::before {
                left: 8px;
            }
            .timeline-item::before {
                left: -19px;
            }
        }
        @media (max-width: 768px) {
            .magazine-nav-links {
                display: none;
            }
            .hamburger-menu {
                display: flex;
            }
            .container-qmh {
                padding: 0 16px;
            }
            h1 {
                font-size: 26px;
            }
            h2 {
                font-size: 22px;
            }
            .section-pad {
                padding: 48px 0;
            }
            .footer-qmh-grid {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-qmh-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .footer-links {
                margin-left: 0;
            }
            .timeline-wrapper {
                padding-left: 20px;
            }
            .timeline-wrapper::before {
                left: 6px;
                width: 2px;
            }
            .timeline-item::before {
                left: -15px;
                width: 10px;
                height: 10px;
                top: 10px;
            }
            .timeline-card {
                padding: 16px;
            }
        }
        @media (max-width: 480px) {
            .magazine-logo {
                font-size: 22px;
            }
            h1 {
                font-size: 22px;
            }
            h2 {
                font-size: 20px;
            }
        }
