/* roulang page: index */
:root {
            --primary: #2B2620;
            --accent: #B8935A;
            --accent-hover: #A07F48;
            --accent-soft: rgba(184, 147, 90, 0.12);
            --bg: #FAF7F2;
            --card-bg: #FFFFFF;
            --card-bg-alt: #F5F1EA;
            --text-primary: #1F1D19;
            --text-secondary: #6E675E;
            --border: #E5DFD5;
            --highlight: #8C6D3F;
            --testimonial-bg: #F2EDE5;
            --footer-text: #D5CFC5;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-tag: 4px;
            --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
            --shadow-hover: 0 4px 20px rgba(0,0,0,0.08);
            --focus-ring: 0 0 0 4px rgba(184, 147, 90, 0.3);
            --font-stack: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-primary);
            background-color: var(--bg);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        a:hover {
            color: var(--accent-hover);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        .btn:focus-visible {
            outline: none;
            box-shadow: var(--focus-ring);
            border-radius: var(--radius-btn);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1140px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 16px;
            padding-right: 16px;
        }

        @media (min-width: 576px) {
            .container {
                padding-left: 24px;
                padding-right: 24px;
            }
        }

        @media (min-width: 992px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }

        /* ========== 顶部导航 ========== */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1030;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease;
        }

        .site-header.scrolled {
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }

        .site-header .navbar {
            padding-top: 12px;
            padding-bottom: 12px;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: -0.2px;
        }

        .navbar-brand:hover {
            color: var(--accent);
        }

        .navbar-brand .brand-icon {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .navbar .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 15px;
            padding-left: 14px;
            padding-right: 14px;
            position: relative;
            transition: color 0.25s ease;
        }

        .navbar .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 14px;
            right: 100%;
            height: 2px;
            background-color: var(--accent);
            transition: right 0.3s ease;
        }

        .navbar .nav-link:hover {
            color: var(--accent);
        }

        .navbar .nav-link:hover::after,
        .navbar .nav-link.active::after {
            right: 14px;
        }

        .navbar .nav-link.active {
            color: var(--accent);
            font-weight: 600;
        }

        .nav-search-form {
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 5px 6px 5px 14px;
            background: #fff;
            transition: border-color 0.25s ease;
        }

        .nav-search-form:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(184,147,90,0.12);
        }

        .nav-search-form input {
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            color: var(--text-primary);
            width: 130px;
        }

        .nav-search-form input::placeholder {
            color: var(--text-secondary);
            font-size: 13px;
        }

        .nav-search-form .search-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease;
            font-size: 15px;
        }

        .nav-search-form .search-btn:hover {
            background: var(--accent);
            color: #fff;
        }

        .btn-primary-custom {
            background-color: var(--accent);
            color: #FFFFFF;
            border: none;
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(184,147,90,0.35);
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-outline-custom:hover {
            background: var(--accent);
            color: #FFFFFF;
            transform: translateY(-2px);
        }

        .btn-outline-light-custom {
            background: transparent;
            color: #FFFFFF;
            border: 1px solid rgba(255,255,255,0.6);
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.25s ease, border-color 0.25s ease, transform 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-outline-light-custom:hover {
            background: rgba(255,255,255,0.12);
            border-color: #FFFFFF;
            color: #FFFFFF;
            transform: translateY(-2px);
        }

        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: 6px;
            padding: 6px 10px;
            color: var(--text-primary);
        }

        .navbar-toggler:focus {
            box-shadow: var(--focus-ring);
        }

        @media (max-width: 991px) {
            .navbar-collapse {
                background: #FFFFFF;
                border-radius: 0 0 8px 8px;
                padding: 16px;
                box-shadow: 0 8px 24px rgba(0,0,0,0.08);
                margin-top: 8px;
            }
            .navbar .nav-link {
                padding: 10px 4px;
                font-size: 15px;
            }
            .navbar .nav-link::after {
                display: none;
            }
            .nav-search-form {
                margin-top: 10px;
                width: 100%;
            }
            .nav-search-form input {
                width: 100%;
            }
        }

        @media (min-width: 992px) {
            .navbar .nav-link {
                padding-left: 12px;
                padding-right: 12px;
            }
            .nav-search-form input {
                width: 100px;
            }
        }

        @media (min-width: 1200px) {
            .navbar .nav-link {
                padding-left: 16px;
                padding-right: 16px;
            }
            .nav-search-form input {
                width: 130px;
            }
        }

        /* ========== Hero ========== */
        .hero-section {
            position: relative;
            min-height: 88vh;
            display: flex;
            align-items: center;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            overflow: hidden;
        }

        .hero-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(43, 38, 32, 0.58);
            z-index: 1;
        }

        .hero-section .container {
            position: relative;
            z-index: 2;
            padding-top: 60px;
            padding-bottom: 60px;
        }

        .hero-content {
            max-width: 680px;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(184,147,90,0.2);
            border: 1px solid rgba(184,147,90,0.45);
            color: #F5EADD;
            border-radius: 50px;
            padding: 6px 16px;
            font-size: 13px;
            font-weight: 500;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }

        .hero-section h1 {
            color: #FFFFFF;
            font-size: 48px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.5px;
            margin-bottom: 20px;
        }

        .hero-desc {
            color: rgba(250, 247, 242, 0.85);
            font-size: 17px;
            line-height: 1.9;
            margin-bottom: 32px;
            letter-spacing: 0.2px;
        }

        .hero-cta-group {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            margin-bottom: 40px;
        }

        .hero-quick-links {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            border-top: 1px solid rgba(255,255,255,0.18);
            padding-top: 24px;
        }

        .hero-quick-links .quick-link {
            color: #F5EADD;
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.2);
            border-radius: 50px;
            padding: 7px 16px;
            font-size: 13px;
            font-weight: 500;
            transition: background 0.25s ease, border-color 0.25s ease, color 0.25s ease;
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .hero-quick-links .quick-link:hover {
            background: rgba(184,147,90,0.35);
            border-color: var(--accent);
            color: #FFFFFF;
        }

        .hero-scroll-hint {
            display: flex;
            gap: 12px;
            margin-top: 32px;
            align-items: center;
        }

        .hero-scroll-hint .hint-dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: rgba(255,255,255,0.5);
            transition: background 0.3s ease;
        }

        .hero-scroll-hint .hint-dot.active {
            background: var(--accent);
        }

        .hero-scroll-hint .hint-text {
            color: rgba(255,255,255,0.65);
            font-size: 13px;
            letter-spacing: 0.5px;
        }

        @media (max-width: 767px) {
            .hero-section {
                min-height: 72vh;
                align-items: flex-end;
                padding-bottom: 40px;
            }
            .hero-section h1 {
                font-size: 30px;
                line-height: 1.35;
            }
            .hero-desc {
                font-size: 15px;
                line-height: 1.75;
            }
            .hero-cta-group .btn {
                width: 100%;
            }
            .hero-quick-links .quick-link {
                font-size: 12px;
                padding: 6px 12px;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .hero-section h1 {
                font-size: 38px;
            }
            .hero-desc {
                font-size: 16px;
            }
        }

        /* ========== 通用 Section ========== */
        .page-section {
            padding-top: 88px;
            padding-bottom: 88px;
        }

        .page-section-alt {
            background: var(--card-bg-alt);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .page-section-dark {
            background: var(--primary);
            color: #FFFFFF;
        }

        .section-label {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 14px;
        }

        .section-label::before {
            content: '';
            width: 28px;
            height: 2px;
            background: var(--accent);
        }

        .section-title {
            font-size: 33px;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.3px;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .section-desc {
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-secondary);
            margin-bottom: 32px;
        }

        @media (max-width: 767px) {
            .page-section {
                padding-top: 48px;
                padding-bottom: 48px;
            }
            .section-title {
                font-size: 23px;
            }
            .section-desc {
                font-size: 15px;
            }
        }

        @media (min-width: 768px) and (max-width: 991px) {
            .page-section {
                padding-top: 60px;
                padding-bottom: 60px;
            }
            .section-title {
                font-size: 28px;
            }
        }

        /* ========== 痛点区 ========== */
        .pain-grid {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            align-items: start;
        }

        .pain-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
            height: auto;
        }

        .pain-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: var(--accent);
        }

        .pain-card .pain-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 16px;
        }

        .pain-card h3 {
            font-size: 19px;
            font-weight: 600;
            line-height: 1.5;
            margin-bottom: 10px;
            color: var(--text-primary);
        }

        .pain-card p {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 0;
        }

        .pain-card.tall {
            padding-top: 40px;
            padding-bottom: 40px;
        }

        .pain-card.short {
            padding-top: 20px;
            padding-bottom: 20px;
        }

        @media (max-width: 991px) {
            .pain-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
        }

        @media (max-width: 575px) {
            .pain-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== 品牌介绍 ========== */
        .brand-intro {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .brand-intro .row {
            margin: 0;
        }

        .brand-intro .brand-img-col {
            padding: 0;
            min-height: 320px;
            background-image: url('/assets/images/coverpic/cover-1.webp');
            background-size: cover;
            background-position: center;
        }

        .brand-intro .brand-text-col {
            padding: 40px 36px;
        }

        .brand-intro .brand-text-col h2 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-primary);
        }

        .brand-intro .brand-text-col p {
            font-size: 16px;
            line-height: 1.9;
            color: var(--text-secondary);
            margin-bottom: 14px;
        }

        .brand-intro .brand-stats {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-top: 20px;
            padding-top: 20px;
            border-top: 1px solid var(--border);
        }

        .brand-intro .brand-stats .stat-item {
            display: flex;
            flex-direction: column;
        }

        .brand-intro .brand-stats .stat-number {
            font-size: 32px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: -0.5px;
        }

        .brand-intro .brand-stats .stat-label {
            font-size: 13px;
            color: var(--text-secondary);
            margin-top: 2px;
        }

        @media (max-width: 767px) {
            .brand-intro .brand-img-col {
                min-height: 200px;
            }
            .brand-intro .brand-text-col {
                padding: 28px 20px;
            }
            .brand-intro .brand-text-col h2 {
                font-size: 22px;
            }
        }

        /* ========== 内容日历 ========== */
        .calendar-timeline {
            display: flex;
            flex-direction: column;
            gap: 0;
        }

        .calendar-item {
            display: flex;
            gap: 24px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
            transition: background 0.25s ease;
        }

        .calendar-item:last-child {
            border-bottom: none;
        }

        .calendar-item:hover {
            background: rgba(184,147,90,0.05);
            padding-left: 12px;
        }

        .calendar-date {
            flex-shrink: 0;
            width: 80px;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            background: var(--card-bg-alt);
            border-radius: var(--radius-tag);
            padding: 10px 8px;
        }

        .calendar-date .date-month {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
        }

        .calendar-date .date-day {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.2;
        }

        .calendar-body h4 {
            font-size: 17px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-primary);
        }

        .calendar-body p {
            font-size: 14px;
            color: var(--text-secondary);
            margin-bottom: 0;
            line-height: 1.7;
        }

        @media (max-width: 575px) {
            .calendar-item {
                flex-direction: column;
                gap: 12px;
            }
            .calendar-date {
                width: 100%;
                flex-direction: row;
                gap: 8px;
            }
        }

        /* ========== 解决方案/深度内容 ========== */
        .solution-content {
            font-size: 16px;
            line-height: 1.95;
            color: var(--text-secondary);
        }

        .solution-content p {
            margin-bottom: 20px;
        }

        .solution-content .highlight-box {
            background: var(--accent-soft);
            border-left: 3px solid var(--accent);
            padding: 18px 22px;
            border-radius: 0 var(--radius-card) var(--radius-card) 0;
            margin: 24px 0;
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-primary);
        }

        .solution-img-wrap {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            min-height: 280px;
        }

        .solution-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            position: absolute;
            inset: 0;
        }

        /* ========== 成果区/数据看板 ========== */
        .stats-board {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .stat-card {
            text-align: center;
            padding: 28px 16px;
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.12);
            border-radius: var(--radius-card);
            transition: background 0.3s ease, transform 0.3s ease;
        }

        .stat-card:hover {
            background: rgba(255,255,255,0.1);
            transform: translateY(-4px);
        }

        .stat-card .stat-number {
            font-size: 44px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: -1px;
            line-height: 1.2;
        }

        .stat-card .stat-label {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-top: 8px;
        }

        @media (max-width: 767px) {
            .stats-board {
                grid-template-columns: 1fr 1fr;
                gap: 12px;
            }
            .stat-card .stat-number {
                font-size: 30px;
            }
        }

        /* ========== 热门专题 ========== */
        .topic-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .topic-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
            display: flex;
            flex-direction: column;
        }

        .topic-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: var(--accent);
        }

        .topic-card .topic-badge {
            display: inline-flex;
            align-self: flex-start;
            background: var(--accent-soft);
            color: var(--accent);
            border-radius: var(--radius-tag);
            padding: 4px 10px;
            font-size: 12px;
            font-weight: 600;
            margin-bottom: 12px;
        }

        .topic-card h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--text-primary);
        }

        .topic-card p {
            font-size: 14px;
            line-height: 1.75;
            color: var(--text-secondary);
            margin-bottom: 0;
        }

        @media (max-width: 991px) {
            .topic-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 575px) {
            .topic-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== 深度内容区 ========== */
        .deep-layout-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }

        .deep-layout-text {
            font-size: 16px;
            line-height: 1.95;
            color: var(--text-secondary);
        }

        .deep-layout-text h3 {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
        }

        .deep-layout-text p {
            margin-bottom: 16px;
        }

        .deep-image-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 16px;
            box-shadow: var(--shadow-sm);
        }

        .deep-image-card img {
            border-radius: var(--radius-tag);
            width: 100%;
            object-fit: cover;
            aspect-ratio: 4/3;
        }

        .deep-image-card .img-caption {
            font-size: 13px;
            color: var(--text-secondary);
            padding: 12px 6px 4px;
            text-align: center;
        }

        .deep-inline-cards {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 16px;
            margin-top: 24px;
        }

        .deep-inline-card {
            background: var(--card-bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 18px 16px;
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        .deep-inline-card strong {
            color: var(--text-primary);
            display: block;
            margin-bottom: 6px;
            font-size: 15px;
        }

        @media (max-width: 991px) {
            .deep-layout-2col {
                grid-template-columns: 1fr;
                gap: 24px;
            }
        }

        @media (max-width: 575px) {
            .deep-inline-cards {
                grid-template-columns: 1fr;
            }
        }

        /* ========== 客户证言 ========== */
        .testimonial-section {
            background: var(--testimonial-bg);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }

        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .testimonial-card {
            background: #FFFFFF;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-sm);
            position: relative;
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .testimonial-card .quote-mark {
            font-size: 48px;
            color: var(--accent);
            opacity: 0.3;
            line-height: 1;
            margin-bottom: 12px;
            font-family: Georgia, serif;
        }

        .testimonial-card blockquote {
            font-size: 15px;
            line-height: 1.8;
            color: var(--text-secondary);
            margin-bottom: 20px;
            border-left: none;
            padding: 0;
        }

        .testimonial-card .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid var(--border);
            padding-top: 16px;
        }

        .testimonial-card .author-avatar {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }

        .testimonial-card .author-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .testimonial-card .author-role {
            font-size: 13px;
            color: var(--text-secondary);
        }

        @media (max-width: 991px) {
            .testimonial-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 575px) {
            .testimonial-grid {
                grid-template-columns: 1fr;
            }
        }

        /* ========== 新闻中心 ========== */
        .news-layout {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 32px;
        }

        .news-list {
            display: flex;
            flex-direction: column;
        }

        .news-item {
            display: flex;
            gap: 20px;
            padding: 20px 0;
            border-bottom: 1px solid var(--border);
            transition: background 0.25s ease;
        }

        .news-item:hover {
            background: rgba(184,147,90,0.04);
            padding-left: 8px;
        }

        .news-item:first-child {
            padding-top: 0;
        }

        .news-item .news-date {
            flex-shrink: 0;
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
            min-width: 70px;
            padding-top: 2px;
        }

        .news-item .news-content h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-primary);
            line-height: 1.5;
        }

        .news-item .news-content h4 a {
            color: var(--text-primary);
        }

        .news-item .news-content h4 a:hover {
            color: var(--accent);
        }

        .news-item .news-content p {
            font-size: 14px;
            line-height: 1.7;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }

        .news-item .news-content .read-more {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: gap 0.25s ease;
        }

        .news-item .news-content .read-more:hover {
            gap: 8px;
            color: var(--accent-hover);
        }

        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .sidebar-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 22px 20px;
            box-shadow: var(--shadow-sm);
        }

        .sidebar-card h5 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 14px;
            color: var(--text-primary);
        }

        .sidebar-card ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-card ul li {
            padding: 8px 0;
            border-bottom: 1px dashed var(--border);
            font-size: 14px;
            color: var(--text-secondary);
        }

        .sidebar-card ul li:last-child {
            border-bottom: none;
        }

        .sidebar-card ul li a {
            color: var(--text-secondary);
        }

        .sidebar-card ul li a:hover {
            color: var(--accent);
        }

        .sidebar-card .tag-list {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .sidebar-card .tag-list .tag {
            background: var(--card-bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius-tag);
            padding: 4px 10px;
            font-size: 12px;
            color: var(--text-secondary);
            transition: all 0.2s ease;
        }

        .sidebar-card .tag-list .tag:hover {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }

        @media (max-width: 991px) {
            .news-layout {
                grid-template-columns: 1fr;
            }
        }

        /* ========== 热播推荐 ========== */
        .hot-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr;
            gap: 20px;
        }

        .hot-card {
            border-radius: var(--radius-card);
            overflow: hidden;
            background: var(--card-bg);
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            position: relative;
        }

        .hot-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .hot-card .hot-img {
            aspect-ratio: 16/10;
            background-size: cover;
            background-position: center;
            position: relative;
        }

        .hot-card .hot-img .hot-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: var(--accent);
            color: #fff;
            border-radius: var(--radius-tag);
            padding: 4px 10px;
            font-size: 12px;
            font-weight: 600;
        }

        .hot-card .hot-body {
            padding: 16px 18px;
        }

        .hot-card .hot-body h4 {
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 6px;
            color: var(--text-primary);
        }

        .hot-card .hot-body p {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 0;
            line-height: 1.65;
        }

        .hot-card.small .hot-img {
            aspect-ratio: 16/9;
        }

        @media (max-width: 991px) {
            .hot-grid {
                grid-template-columns: 1fr 1fr;
            }
            .hot-card.large {
                grid-column: span 2;
            }
        }

        @media (max-width: 575px) {
            .hot-grid {
                grid-template-columns: 1fr;
            }
            .hot-card.large {
                grid-column: span 1;
            }
        }

        /* ========== 票种对比 ========== */
        .ticket-table-wrap {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
        }

        .ticket-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
            position: relative;
        }

        .ticket-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .ticket-card.featured {
            border-color: var(--accent);
            box-shadow: 0 6px 24px rgba(184,147,90,0.2);
        }

        .ticket-card.featured::before {
            content: '推荐';
            position: absolute;
            top: -12px;
            left: 50%;
            transform: translateX(-50%);
            background: var(--accent);
            color: #fff;
            border-radius: 50px;
            padding: 3px 14px;
            font-size: 12px;
            font-weight: 600;
        }

        .ticket-card .ticket-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
        }

        .ticket-card .ticket-price {
            font-size: 36px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: -1px;
            margin-bottom: 6px;
        }

        .ticket-card .ticket-price .unit {
            font-size: 14px;
            font-weight: 400;
            color: var(--text-secondary);
        }

        .ticket-card .ticket-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .ticket-card ul {
            list-style: none;
            padding: 0;
            margin: 0 0 20px 0;
            text-align: left;
        }

        .ticket-card ul li {
            padding: 6px 0;
            font-size: 14px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 8px;
            border-bottom: 1px dashed var(--border);
        }

        .ticket-card ul li:last-child {
            border-bottom: none;
        }

        .ticket-card ul li i {
            color: var(--accent);
            font-size: 14px;
        }

        @media (max-width: 991px) {
            .ticket-table-wrap {
                grid-template-columns: 1fr;
                max-width: 400px;
                margin: 0 auto;
            }
        }

        /* ========== 内容预告/时间轴 ========== */
        .timeline-vertical {
            position: relative;
            padding-left: 32px;
        }

        .timeline-vertical::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 4px;
            bottom: 4px;
            width: 2px;
            background: var(--border);
        }

        .timeline-item {
            position: relative;
            margin-bottom: 24px;
            padding-left: 16px;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -29px;
            top: 6px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--accent);
            border: 2px solid #fff;
            box-shadow: 0 0 0 2px var(--accent-soft);
        }

        .timeline-item .time-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 4px;
        }

        .timeline-item h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }

        .timeline-item p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ========== 排行列表 ========== */
        .ranking-list {
            display: flex;
            flex-direction: column;
        }

        .ranking-row {
            display: flex;
            align-items: center;
            gap: 16px;
            padding: 14px 16px;
            border-bottom: 1px solid var(--border);
            background: var(--card-bg);
            transition: background 0.25s ease;
            border-radius: 0;
        }

        .ranking-row:first-child {
            border-radius: var(--radius-card) var(--radius-card) 0 0;
        }

        .ranking-row:last-child {
            border-bottom: none;
            border-radius: 0 0 var(--radius-card) var(--radius-card) 0;
        }

        .ranking-row:hover {
            background: rgba(184,147,90,0.05);
        }

        .ranking-row .rank-number {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--card-bg-alt);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .ranking-row .rank-number.top {
            background: var(--accent);
            color: #fff;
        }

        .ranking-row .rank-content {
            flex: 1;
            min-width: 0;
        }

        .ranking-row .rank-content .rank-title {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-primary);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .ranking-row .rank-content .rank-sub {
            font-size: 13px;
            color: var(--text-secondary);
        }

        .ranking-row .rank-metric {
            flex-shrink: 0;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            text-align: right;
        }

        @media (max-width: 575px) {
            .ranking-row {
                flex-wrap: wrap;
                gap: 8px;
            }
        }

        /* ========== FAQ ========== */
        .accordion-custom .accordion-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            margin-bottom: 12px;
            background: var(--card-bg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }

        .accordion-custom .accordion-button {
            background: var(--card-bg);
            color: var(--text-primary);
            font-weight: 600;
            font-size: 16px;
            padding: 18px 22px;
            border: none;
            box-shadow: none;
            transition: background 0.25s ease, color 0.25s ease;
        }

        .accordion-custom .accordion-button:not(.collapsed) {
            background: var(--card-bg-alt);
            color: var(--accent);
            box-shadow: none;
        }

        .accordion-custom .accordion-button:focus {
            box-shadow: var(--focus-ring);
            border-radius: var(--radius-card);
        }

        .accordion-custom .accordion-button::after {
            color: var(--accent);
        }

        .accordion-custom .accordion-body {
            padding: 16px 22px 22px;
            font-size: 15px;
            line-height: 1.85;
            color: var(--text-secondary);
        }

        /* ========== CTA转化区 ========== */
        .cta-section {
            background: var(--primary);
            color: #FFFFFF;
            text-align: center;
            padding-top: 72px;
            padding-bottom: 72px;
        }

        .cta-section h2 {
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 14px;
            color: #FFFFFF;
        }

        .cta-section p {
            color: rgba(255,255,255,0.75);
            font-size: 16px;
            line-height: 1.8;
            margin-bottom: 28px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }

        @media (max-width: 767px) {
            .cta-section h2 {
                font-size: 24px;
            }
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: #211D18;
            color: var(--footer-text);
            padding-top: 56px;
            padding-bottom: 24px;
            border-top: 1px solid rgba(255,255,255,0.08);
        }

        .site-footer .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 32px;
            margin-bottom: 40px;
        }

        .site-footer .footer-brand .brand-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 14px;
        }

        .site-footer .footer-brand .brand-logo .brand-icon {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .site-footer .footer-brand p {
            font-size: 14px;
            line-height: 1.75;
            color: var(--footer-text);
            margin-bottom: 0;
        }

        .site-footer .footer-col h5 {
            font-size: 15px;
            font-weight: 600;
            color: #FFFFFF;
            margin-bottom: 16px;
        }

        .site-footer .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer .footer-col ul li {
            margin-bottom: 8px;
        }

        .site-footer .footer-col ul li a {
            color: var(--footer-text);
            font-size: 14px;
            transition: color 0.25s ease;
        }

        .site-footer .footer-col ul li a:hover {
            color: var(--accent);
        }

        .site-footer .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            font-size: 12px;
            color: rgba(255,255,255,0.5);
        }

        .site-footer .footer-bottom a {
            color: rgba(255,255,255,0.5);
            font-size: 12px;
        }

        .site-footer .footer-bottom a:hover {
            color: var(--accent);
        }

        @media (max-width: 991px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr 1fr;
            }
        }

        @media (max-width: 575px) {
            .site-footer .footer-grid {
                grid-template-columns: 1fr;
            }
            .site-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
        }

        /* ========== Floating CTA ========== */
        .floating-cta {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 1040;
            opacity: 0;
            pointer-events: none;
            transform: translateY(20px);
            transition: opacity 0.35s ease, transform 0.35s ease;
        }

        .floating-cta.visible {
            opacity: 1;
            pointer-events: auto;
            transform: translateY(0);
        }

        .floating-cta .btn {
            box-shadow: 0 8px 24px rgba(184,147,90,0.4);
            border-radius: 50px;
            padding: 13px 24px;
        }

        @media (max-width: 575px) {
            .floating-cta {
                bottom: 16px;
                right: 16px;
            }
        }

        /* ========== 响应式微调 ========== */
        @media (min-width: 992px) {
            .gutter-lg {
                gap: 32px;
            }
        }

        @media (max-width: 767px) {
            .btn-primary-custom,
            .btn-outline-custom,
            .btn-outline-light-custom {
                width: 100%;
                justify-content: center;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #2B2620;
            --accent: #B8935A;
            --accent-hover: #A07F48;
            --accent-soft: rgba(184, 147, 90, 0.12);
            --bg: #FAF7F2;
            --card-bg: #FFFFFF;
            --card-bg-alt: #F5F1EA;
            --text-primary: #1F1D19;
            --text-secondary: #6E675E;
            --border: #E5DFD5;
            --highlight: #8C6D3F;
            --testimonial-bg: #F2EDE5;
            --footer-text: #D5CFC5;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-tag: 4px;
            --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.08);
            --focus-ring: 0 0 0 4px rgba(184, 147, 90, 0.3);
            --font-stack: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-primary);
            background-color: var(--bg);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        a:hover {
            color: var(--accent-hover);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        .btn:focus-visible {
            outline: none;
            box-shadow: var(--focus-ring);
            border-radius: var(--radius-btn);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1140px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 32px;
            padding-right: 32px;
        }

        @media (max-width: 768px) {
            .container {
                padding-left: 20px;
                padding-right: 20px;
            }
        }

        /* ========== 顶部导航 ========== */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1030;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease;
        }

        .site-header.scrolled {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .site-header .navbar {
            padding-top: 12px;
            padding-bottom: 12px;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: -0.2px;
            white-space: nowrap;
        }

        .navbar-brand:hover {
            color: var(--accent);
        }

        .navbar-brand .brand-icon {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .navbar .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 15px;
            padding-left: 14px;
            padding-right: 14px;
            position: relative;
            transition: color 0.25s ease;
            white-space: nowrap;
        }

        .navbar .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 14px;
            right: 100%;
            height: 2px;
            background-color: var(--accent);
            transition: right 0.3s ease;
        }

        .navbar .nav-link:hover {
            color: var(--accent);
        }

        .navbar .nav-link:hover::after,
        .navbar .nav-link.active::after {
            right: 14px;
        }

        .navbar .nav-link.active {
            color: var(--accent);
            font-weight: 600;
        }

        .nav-search-form {
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 5px 6px 5px 14px;
            background: #fff;
            transition: border-color 0.25s ease;
        }

        .nav-search-form:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(184, 147, 90, 0.12);
        }

        .nav-search-form input {
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            color: var(--text-primary);
            width: 130px;
        }

        .nav-search-form input::placeholder {
            color: var(--text-secondary);
            font-size: 13px;
        }

        .nav-search-form .search-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease;
            font-size: 15px;
            flex-shrink: 0;
        }

        .nav-search-form .search-btn:hover {
            background: var(--accent);
            color: #fff;
        }

        .btn-primary-custom {
            background-color: var(--accent);
            color: #FFFFFF;
            border: none;
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-outline-custom:hover {
            background-color: var(--accent);
            color: #fff;
            transform: translateY(-2px);
        }

        @media (max-width: 991.98px) {
            .navbar .nav-link {
                padding-left: 10px;
                padding-right: 10px;
                font-size: 14px;
            }

            .nav-search-form input {
                width: 90px;
            }

            .btn-primary-custom {
                padding: 9px 16px;
                font-size: 14px;
                min-height: 38px;
            }

            .navbar-collapse {
                padding-top: 16px;
                padding-bottom: 8px;
            }

            .navbar .nav-link::after {
                left: 10px;
                bottom: 2px;
            }

            .navbar .nav-link:hover::after,
            .navbar .nav-link.active::after {
                right: 10px;
            }

            .navbar-collapse .d-flex {
                margin-top: 12px;
                justify-content: flex-start;
            }
        }

        @media (max-width: 575.98px) {
            .nav-search-form {
                display: none;
            }

            .navbar-brand .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 15px;
            }

            .navbar-brand {
                font-size: 18px;
                gap: 8px;
            }

            .btn-primary-custom {
                padding: 8px 14px;
                font-size: 13px;
                min-height: 36px;
            }
        }

        /* ========== 分类页 Hero ========== */
        .category-hero {
            position: relative;
            min-height: 45vh;
            display: flex;
            align-items: center;
            background-image: linear-gradient(rgba(43, 38, 32, 0.72), rgba(43, 38, 32, 0.72)), url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            padding: 60px 0;
            color: #fff;
        }

        .category-hero .breadcrumb {
            margin-bottom: 18px;
            background: transparent;
            padding: 0;
        }

        .category-hero .breadcrumb-item {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
        }

        .category-hero .breadcrumb-item a {
            color: rgba(255, 255, 255, 0.85);
            transition: color 0.25s ease;
        }

        .category-hero .breadcrumb-item a:hover {
            color: var(--accent);
        }

        .category-hero .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(255, 255, 255, 0.5);
        }

        .category-hero .breadcrumb-item.active {
            color: var(--accent);
        }

        .category-hero h1 {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.25;
            color: #fff;
            margin-bottom: 12px;
        }

        .category-hero .hero-desc {
            font-size: 16px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.82);
            max-width: 620px;
        }

        @media (max-width: 768px) {
            .category-hero {
                min-height: 38vh;
                padding: 40px 0;
            }

            .category-hero h1 {
                font-size: 28px;
                letter-spacing: -0.2px;
            }

            .category-hero .hero-desc {
                font-size: 14px;
            }
        }

        /* ========== 主体分类布局 ========== */
        .category-main {
            padding: 64px 0 72px;
        }

        .category-main .content-list-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px 30px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, border-color 0.3s ease, transform 0.3s ease;
        }

        .category-main .content-list-item:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }

        .category-main .content-list-item .item-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 12px;
            flex-wrap: wrap;
        }

        .category-main .content-list-item .item-meta .badge-tag {
            display: inline-block;
            background: var(--accent-soft);
            color: var(--accent);
            font-size: 12px;
            padding: 4px 12px;
            border-radius: var(--radius-tag);
            font-weight: 500;
        }

        .category-main .content-list-item h2 {
            font-size: 22px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 12px;
            line-height: 1.4;
        }

        .category-main .content-list-item h2 a {
            color: var(--text-primary);
            transition: color 0.25s ease;
        }

        .category-main .content-list-item h2 a:hover {
            color: var(--accent);
        }

        .category-main .content-list-item p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 16px;
        }

        .category-main .content-list-item .read-more-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-weight: 600;
            font-size: 14px;
            color: var(--accent);
            transition: gap 0.3s ease, color 0.25s ease;
        }

        .category-main .content-list-item .read-more-link i {
            transition: transform 0.3s ease;
        }

        .category-main .content-list-item .read-more-link:hover {
            color: var(--accent-hover);
            gap: 10px;
        }

        .category-main .content-list-item .read-more-link:hover i {
            transform: translateX(3px);
        }

        /* 侧栏 */
        .sidebar-widget {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 24px 22px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-sm);
        }

        .sidebar-widget h5 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }

        .sidebar-widget .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }

        .sidebar-widget .tag-cloud .tag-link {
            display: inline-block;
            background: var(--card-bg-alt);
            color: var(--text-secondary);
            font-size: 13px;
            padding: 5px 14px;
            border-radius: 50px;
            transition: background 0.25s ease, color 0.25s ease;
            border: 1px solid transparent;
        }

        .sidebar-widget .tag-cloud .tag-link:hover {
            background: var(--accent-soft);
            color: var(--accent);
            border-color: var(--accent);
        }

        .sidebar-widget .side-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-widget .side-link-list li {
            margin-bottom: 10px;
        }

        .sidebar-widget .side-link-list li:last-child {
            margin-bottom: 0;
        }

        .sidebar-widget .side-link-list a {
            display: flex;
            align-items: center;
            gap: 8px;
            color: var(--text-secondary);
            font-size: 14px;
            transition: color 0.25s ease;
        }

        .sidebar-widget .side-link-list a i {
            color: var(--accent);
            font-size: 12px;
        }

        .sidebar-widget .side-link-list a:hover {
            color: var(--accent);
        }

        .sidebar-widget .archive-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .sidebar-widget .archive-list li {
            display: flex;
            justify-content: space-between;
            padding: 8px 0;
            border-bottom: 1px dashed var(--border);
            font-size: 14px;
            color: var(--text-secondary);
        }

        .sidebar-widget .archive-list li:last-child {
            border-bottom: none;
            padding-bottom: 0;
        }

        .sidebar-widget .archive-list li span:last-child {
            color: var(--text-secondary);
            font-size: 13px;
        }

        .sidebar-sticky {
            position: sticky;
            top: 100px;
        }

        @media (max-width: 991.98px) {
            .sidebar-sticky {
                position: static;
                margin-top: 32px;
            }

            .category-main {
                padding: 40px 0 48px;
            }

            .category-main .content-list-item {
                padding: 20px 18px;
            }

            .category-main .content-list-item h2 {
                font-size: 19px;
            }
        }

        /* ========== CTA 区 ========== */
        .cta-section {
            background: var(--primary);
            padding: 72px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: -80px;
            right: -40px;
            width: 300px;
            height: 300px;
            border-radius: 50%;
            background: rgba(184, 147, 90, 0.12);
            pointer-events: none;
        }

        .cta-section::after {
            content: '';
            position: absolute;
            bottom: -60px;
            left: -30px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(184, 147, 90, 0.08);
            pointer-events: none;
        }

        .cta-section .cta-content {
            position: relative;
            z-index: 1;
            text-align: center;
            max-width: 720px;
            margin: 0 auto;
        }

        .cta-section .cta-content h2 {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: -0.3px;
        }

        .cta-section .cta-content p {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 28px;
        }

        .cta-section .cta-content .btn-primary-custom {
            font-size: 16px;
            padding: 14px 36px;
        }

        @media (max-width: 768px) {
            .cta-section {
                padding: 48px 0;
            }

            .cta-section .cta-content h2 {
                font-size: 24px;
            }

            .cta-section .cta-content p {
                font-size: 14px;
            }
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--primary);
            color: var(--footer-text);
            padding-top: 56px;
            font-size: 14px;
        }

        .site-footer .footer-top {
            padding-bottom: 32px;
            border-bottom: 1px solid rgba(229, 223, 213, 0.15);
        }

        .site-footer .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: #fff;
            margin-bottom: 14px;
            text-decoration: none;
        }

        .site-footer .footer-logo:hover {
            color: var(--accent);
        }

        .site-footer .footer-logo .footer-logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
            flex-shrink: 0;
        }

        .site-footer .footer-about {
            font-size: 14px;
            line-height: 1.75;
            color: var(--footer-text);
            max-width: 300px;
        }

        .site-footer h5 {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
        }

        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer .footer-links li {
            margin-bottom: 10px;
        }

        .site-footer .footer-links a {
            color: var(--footer-text);
            font-size: 14px;
            transition: color 0.25s ease;
            text-decoration: none;
        }

        .site-footer .footer-links a:hover {
            color: var(--accent);
        }

        .site-footer .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer .footer-contact li {
            margin-bottom: 10px;
            color: var(--footer-text);
            font-size: 14px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }

        .site-footer .footer-contact li i {
            color: var(--accent);
            font-size: 14px;
            margin-top: 4px;
            flex-shrink: 0;
        }

        .site-footer .footer-bottom {
            padding: 20px 0;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: rgba(213, 207, 197, 0.7);
        }

        .site-footer .footer-bottom .copyright {
            font-size: 12px;
        }

        .site-footer .footer-bottom .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
            font-size: 12px;
        }

        .site-footer .footer-bottom .footer-bottom-links a {
            color: rgba(213, 207, 197, 0.7);
            font-size: 12px;
            transition: color 0.25s ease;
            text-decoration: none;
        }

        .site-footer .footer-bottom .footer-bottom-links a:hover {
            color: var(--accent);
        }

        @media (max-width: 768px) {
            .site-footer {
                padding-top: 40px;
            }

            .site-footer .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }

            .site-footer .footer-bottom .footer-bottom-links {
                justify-content: center;
            }
        }

/* roulang page: category3 */
:root {
            --primary: #2B2620;
            --accent: #B8935A;
            --accent-hover: #A07F48;
            --accent-soft: rgba(184, 147, 90, 0.12);
            --bg: #FAF7F2;
            --card-bg: #FFFFFF;
            --card-bg-alt: #F5F1EA;
            --text-primary: #1F1D19;
            --text-secondary: #6E675E;
            --border: #E5DFD5;
            --highlight: #8C6D3F;
            --testimonial-bg: #F2EDE5;
            --footer-text: #D5CFC5;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-tag: 4px;
            --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
            --shadow-hover: 0 4px 20px rgba(0,0,0,0.08);
            --focus-ring: 0 0 0 4px rgba(184, 147, 90, 0.3);
            --font-stack: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-primary);
            background-color: var(--bg);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: var(--accent-hover);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        .btn:focus-visible {
            outline: none;
            box-shadow: var(--focus-ring);
            border-radius: var(--radius-btn);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1140px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        @media (min-width: 992px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }
        /* ========== 顶部导航 ========== */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1030;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease;
        }
        .site-header.scrolled {
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        .site-header .navbar {
            padding-top: 12px;
            padding-bottom: 12px;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: -0.2px;
        }
        .navbar-brand:hover {
            color: var(--accent);
        }
        .navbar-brand .brand-icon {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .navbar .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 15px;
            padding-left: 14px;
            padding-right: 14px;
            position: relative;
            transition: color 0.25s ease;
        }
        .navbar .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 14px;
            right: 100%;
            height: 2px;
            background-color: var(--accent);
            transition: right 0.3s ease;
        }
        .navbar .nav-link:hover {
            color: var(--accent);
        }
        .navbar .nav-link:hover::after,
        .navbar .nav-link.active::after {
            right: 14px;
        }
        .navbar .nav-link.active {
            color: var(--accent);
            font-weight: 600;
        }
        .nav-search-form {
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 5px 6px 5px 14px;
            background: #fff;
            transition: border-color 0.25s ease;
        }
        .nav-search-form:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(184,147,90,0.12);
        }
        .nav-search-form input {
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            color: var(--text-primary);
            width: 130px;
        }
        .nav-search-form input::placeholder {
            color: var(--text-secondary);
            font-size: 13px;
        }
        .nav-search-form .search-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease;
            font-size: 15px;
        }
        .nav-search-form .search-btn:hover {
            background: var(--accent);
            color: #fff;
        }
        .btn-primary-custom {
            background-color: var(--accent);
            color: #FFFFFF;
            border: none;
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-outline-custom:hover {
            background: var(--accent);
            color: #FFFFFF;
            transform: translateY(-2px);
        }
        /* ========== 分类页 Hero ========== */
        .category-hero {
            background: var(--primary);
            min-height: 45vh;
            display: flex;
            align-items: center;
            padding: 56px 0 48px;
            position: relative;
            overflow: hidden;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.22;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(43,38,32,0.92) 0%, rgba(43,38,32,0.65) 100%);
        }
        .category-hero .container {
            position: relative;
            z-index: 2;
        }
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(245,241,234,0.7);
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .breadcrumb-custom a {
            color: rgba(245,241,234,0.7);
            transition: color 0.25s ease;
        }
        .breadcrumb-custom a:hover {
            color: var(--accent);
        }
        .breadcrumb-custom .separator {
            color: rgba(245,241,234,0.4);
        }
        .breadcrumb-custom .current {
            color: var(--accent);
            font-weight: 500;
        }
        .category-hero h1 {
            color: #FFFFFF;
            font-size: 42px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        .category-hero .hero-desc {
            color: rgba(245,241,234,0.8);
            font-size: 16px;
            line-height: 1.8;
            max-width: 560px;
        }
        @media (max-width: 768px) {
            .category-hero {
                min-height: auto;
                padding: 40px 0 36px;
            }
            .category-hero h1 {
                font-size: 28px;
            }
        }
        /* ========== 内容主体 ========== */
        .section-block {
            padding: 72px 0;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 36px 0;
            }
        }
        .section-tag {
            display: inline-block;
            background: var(--accent-soft);
            color: var(--accent);
            font-size: 13px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 50px;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }
        .section-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }
        .section-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 32px;
        }
        /* Feature 宽卡 */
        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            margin-bottom: 32px;
        }
        .feature-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .feature-card .feature-img {
            height: 100%;
            min-height: 280px;
            object-fit: cover;
            width: 100%;
        }
        .feature-card .feature-body {
            padding: 32px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            height: 100%;
        }
        .feature-card .feature-badge {
            display: inline-block;
            background: var(--accent);
            color: #FFFFFF;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: var(--radius-tag);
            margin-bottom: 12px;
            align-self: flex-start;
        }
        .feature-card .feature-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 12px;
        }
        .feature-card .feature-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .feature-card .feature-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-secondary);
        }
        .feature-card .feature-meta i {
            color: var(--accent);
            margin-right: 4px;
        }
        /* 嘉宾列表条目 */
        .guest-list-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px 32px;
            margin-bottom: 24px;
            display: flex;
            gap: 24px;
            align-items: flex-start;
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
            box-shadow: var(--shadow-sm);
        }
        .guest-list-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
            border-color: var(--accent);
        }
        .guest-list-item .guest-thumb {
            width: 96px;
            height: 96px;
            border-radius: var(--radius-card);
            object-fit: cover;
            flex-shrink: 0;
        }
        .guest-list-item .guest-info {
            flex: 1;
        }
        .guest-list-item .guest-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 4px;
        }
        .guest-list-item .guest-role {
            font-size: 13px;
            color: var(--accent);
            font-weight: 600;
            margin-bottom: 8px;
        }
        .guest-list-item .guest-summary {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
        }
        .guest-list-item .guest-tags {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .guest-tags .tag-item {
            display: inline-block;
            background: var(--card-bg-alt);
            color: var(--text-secondary);
            font-size: 12px;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: var(--radius-tag);
            border: 1px solid var(--border);
        }
        @media (max-width: 768px) {
            .guest-list-item {
                flex-direction: column;
                padding: 20px;
            }
            .guest-list-item .guest-thumb {
                width: 72px;
                height: 72px;
            }
            .feature-card .feature-body {
                padding: 20px;
            }
        }
        /* 领域标签 */
        .topic-tags-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 16px;
        }
        .topic-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 10px 20px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text-primary);
            transition: all 0.25s ease;
            cursor: default;
        }
        .topic-tag:hover {
            border-color: var(--accent);
            color: var(--accent);
            background: var(--accent-soft);
        }
        .topic-tag i {
            color: var(--accent);
            font-size: 16px;
        }
        /* 流程 */
        .process-step {
            display: flex;
            gap: 20px;
            margin-bottom: 28px;
        }
        .process-step .step-number {
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            font-weight: 700;
            font-size: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .process-step .step-content {
            flex: 1;
        }
        .process-step .step-title {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .process-step .step-desc {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }
        /* 数据条 */
        .stats-bar {
            background: var(--primary);
            border-radius: var(--radius-card);
            padding: 40px 32px;
            display: flex;
            justify-content: space-around;
            flex-wrap: wrap;
            gap: 24px;
            position: relative;
            overflow: hidden;
        }
        .stats-bar::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.1;
        }
        .stat-item {
            position: relative;
            z-index: 2;
            text-align: center;
            min-width: 140px;
        }
        .stat-item .stat-number {
            font-size: 44px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            margin-bottom: 6px;
        }
        .stat-item .stat-label {
            font-size: 14px;
            color: rgba(245,241,234,0.75);
        }
        /* FAQ */
        .accordion-custom .accordion-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-card) !important;
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--card-bg);
        }
        .accordion-custom .accordion-button {
            background: var(--card-bg);
            color: var(--text-primary);
            font-weight: 600;
            font-size: 16px;
            padding: 18px 24px;
            border: none;
            box-shadow: none;
        }
        .accordion-custom .accordion-button:not(.collapsed) {
            background: var(--card-bg-alt);
            color: var(--accent);
            box-shadow: none;
        }
        .accordion-custom .accordion-button:focus {
            box-shadow: var(--focus-ring);
            border-color: var(--accent);
        }
        .accordion-custom .accordion-button::after {
            filter: invert(60%) sepia(20%) saturate(800%) hue-rotate(5deg);
        }
        .accordion-custom .accordion-body {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            padding: 16px 24px 20px;
            background: var(--card-bg);
        }
        /* CTA */
        .cta-section {
            background: var(--primary);
            padding: 72px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.webp');
            background-size: cover;
            background-position: center;
            opacity: 0.12;
        }
        .cta-section .container {
            position: relative;
            z-index: 2;
            text-align: center;
        }
        .cta-section h2 {
            color: #FFFFFF;
            font-size: 36px;
            font-weight: 700;
            margin-bottom: 16px;
        }
        .cta-section p {
            color: rgba(245,241,234,0.8);
            font-size: 16px;
            max-width: 560px;
            margin: 0 auto 28px;
            line-height: 1.8;
        }
        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--primary);
            color: var(--footer-text);
            padding-top: 56px;
            padding-bottom: 24px;
        }
        .site-footer .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 14px;
        }
        .site-footer .footer-logo:hover {
            color: var(--accent);
        }
        .site-footer .footer-logo-icon {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        .site-footer .footer-about {
            font-size: 14px;
            line-height: 1.8;
            color: var(--footer-text);
            margin-bottom: 20px;
        }
        .site-footer h5 {
            font-size: 15px;
            font-weight: 700;
            color: #FFFFFF;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
        }
        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-links li {
            margin-bottom: 10px;
        }
        .site-footer .footer-links a {
            color: var(--footer-text);
            font-size: 14px;
            transition: color 0.25s ease;
        }
        .site-footer .footer-links a:hover {
            color: var(--accent);
        }
        .site-footer .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-contact li {
            margin-bottom: 10px;
            font-size: 14px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .site-footer .footer-contact i {
            color: var(--accent);
            margin-top: 4px;
            flex-shrink: 0;
        }
        .footer-bottom {
            border-top: 1px solid rgba(229,223,213,0.15);
            margin-top: 40px;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .footer-bottom .copyright {
            font-size: 12px;
            color: rgba(213,207,197,0.7);
        }
        .footer-bottom-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .footer-bottom-links a {
            font-size: 12px;
            color: rgba(213,207,197,0.7);
            transition: color 0.25s ease;
        }
        .footer-bottom-links a:hover {
            color: var(--accent);
        }
        /* 移动端导航 */
        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            padding: 6px 10px;
            box-shadow: none;
        }
        .navbar-toggler:focus {
            box-shadow: var(--focus-ring);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='%232B2620' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        @media (max-width: 991px) {
            .navbar-collapse {
                background: #fff;
                border-radius: var(--radius-card);
                box-shadow: var(--shadow-hover);
                padding: 16px;
                margin-top: 10px;
            }
            .navbar .nav-link {
                padding: 10px 14px;
            }
            .nav-search-form {
                margin-top: 10px;
                width: 100%;
            }
            .nav-search-form input {
                width: 100%;
            }
        }
        /* 图片占位与装饰 */
        .img-cover {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }
        @media (max-width: 576px) {
            .section-title {
                font-size: 24px;
            }
            .cta-section h2 {
                font-size: 26px;
            }
            .stat-item .stat-number {
                font-size: 32px;
            }
        }

/* roulang page: category2 */
:root {
            --primary: #2B2620;
            --accent: #B8935A;
            --accent-hover: #A07F48;
            --accent-soft: rgba(184, 147, 90, 0.12);
            --accent-soft-strong: rgba(184, 147, 90, 0.2);
            --bg: #FAF7F2;
            --card-bg: #FFFFFF;
            --card-bg-alt: #F5F1EA;
            --text-primary: #1F1D19;
            --text-secondary: #6E675E;
            --border: #E5DFD5;
            --highlight: #8C6D3F;
            --testimonial-bg: #F2EDE5;
            --footer-text: #D5CFC5;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-tag: 4px;
            --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
            --shadow-hover: 0 4px 20px rgba(0,0,0,0.08);
            --focus-ring: 0 0 0 4px rgba(184, 147, 90, 0.3);
            --font-stack: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
            --transition-base: 0.25s ease;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-primary);
            background-color: var(--bg);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color var(--transition-base);
        }
        a:hover {
            color: var(--accent-hover);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        .btn:focus-visible {
            outline: none;
            box-shadow: var(--focus-ring);
            border-radius: var(--radius-btn);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1140px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        @media (min-width: 1200px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }
        @media (max-width: 575.98px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* ========== 顶部导航 ========== */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1030;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease;
        }
        .site-header.scrolled {
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        .site-header .navbar {
            padding-top: 12px;
            padding-bottom: 12px;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: -0.2px;
        }
        .navbar-brand:hover {
            color: var(--accent);
        }
        .navbar-brand .brand-icon {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .navbar .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 15px;
            padding-left: 14px;
            padding-right: 14px;
            position: relative;
            transition: color var(--transition-base);
        }
        .navbar .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 14px;
            right: 100%;
            height: 2px;
            background-color: var(--accent);
            transition: right 0.3s ease;
        }
        .navbar .nav-link:hover {
            color: var(--accent);
        }
        .navbar .nav-link:hover::after,
        .navbar .nav-link.active::after {
            right: 14px;
        }
        .navbar .nav-link.active {
            color: var(--accent);
            font-weight: 600;
        }
        .nav-search-form {
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 5px 6px 5px 14px;
            background: #fff;
            transition: border-color var(--transition-base);
        }
        .nav-search-form:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(184,147,90,0.12);
        }
        .nav-search-form input {
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            color: var(--text-primary);
            width: 130px;
        }
        .nav-search-form input::placeholder {
            color: var(--text-secondary);
            font-size: 13px;
        }
        .nav-search-form .search-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background var(--transition-base), color var(--transition-base);
            font-size: 15px;
        }
        .nav-search-form .search-btn:hover {
            background: var(--accent);
            color: #fff;
        }
        .btn-primary-custom {
            background-color: var(--accent);
            color: #FFFFFF;
            border: none;
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color var(--transition-base), transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 4px 14px rgba(184,147,90,0.35);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color var(--transition-base), color var(--transition-base), transform 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-outline-custom:hover {
            background-color: var(--accent);
            color: #fff;
            transform: translateY(-2px);
        }
        .btn-link-custom {
            color: var(--accent);
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            text-decoration: none;
            transition: color var(--transition-base), gap var(--transition-base);
        }
        .btn-link-custom i {
            transition: transform 0.25s ease;
        }
        .btn-link-custom:hover {
            color: var(--accent-hover);
            gap: 10px;
        }
        .btn-link-custom:hover i {
            transform: translateX(4px);
        }

        /* ========== 面包屑 ========== */
        .breadcrumb-section {
            padding: 28px 0 0;
            background: transparent;
        }
        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text-secondary);
            list-style: none;
            padding: 0;
            margin: 0;
            flex-wrap: wrap;
        }
        .breadcrumb-custom li {
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .breadcrumb-custom li::after {
            content: '/';
            color: var(--border);
            font-size: 13px;
        }
        .breadcrumb-custom li:last-child::after {
            content: '';
        }
        .breadcrumb-custom a {
            color: var(--accent);
        }
        .breadcrumb-custom a:hover {
            color: var(--accent-hover);
        }

        /* ========== 分类页 Hero（半高） ========== */
        .category-hero {
            position: relative;
            min-height: 46vh;
            display: flex;
            align-items: center;
            padding: 40px 0;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            overflow: hidden;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(43, 38, 32, 0.72);
            z-index: 1;
        }
        .category-hero .container {
            position: relative;
            z-index: 2;
        }
        .category-hero-content {
            display: grid;
            grid-template-columns: 1.2fr 0.8fr;
            gap: 48px;
            align-items: center;
        }
        .category-hero-left .breadcrumb-custom {
            color: rgba(255,255,255,0.7);
            margin-bottom: 16px;
        }
        .category-hero-left .breadcrumb-custom a {
            color: rgba(255,255,255,0.85);
        }
        .category-hero-left .breadcrumb-custom a:hover {
            color: var(--accent);
        }
        .category-hero-left h1 {
            color: #fff;
            font-size: 40px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        .category-hero-left .hero-cta-row {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .category-hero-right {
            background: rgba(255,255,255,0.06);
            border: 1px solid rgba(255,255,255,0.18);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            backdrop-filter: blur(4px);
        }
        .category-hero-right p {
            color: rgba(255,255,255,0.85);
            font-size: 15px;
            line-height: 1.85;
            margin-bottom: 20px;
        }
        .category-hero-right .mini-form-row {
            display: flex;
            gap: 8px;
        }
        .category-hero-right .mini-form-row input {
            flex: 1;
            border: 1px solid rgba(255,255,255,0.3);
            background: rgba(255,255,255,0.1);
            border-radius: var(--radius-btn);
            color: #fff;
            padding: 10px 14px;
            font-size: 14px;
            outline: none;
            min-height: 42px;
        }
        .category-hero-right .mini-form-row input::placeholder {
            color: rgba(255,255,255,0.6);
        }
        .category-hero-right .mini-form-row input:focus {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(184,147,90,0.25);
        }

        /* ========== 板块通用 ========== */
        .section-block {
            padding: 72px 0;
        }
        @media (max-width: 991.98px) {
            .section-block {
                padding: 56px 0;
            }
        }
        @media (max-width: 767.98px) {
            .section-block {
                padding: 40px 0;
            }
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            text-transform: uppercase;
            letter-spacing: 0.5px;
            margin-bottom: 12px;
            padding: 4px 12px;
            background: var(--accent-soft);
            border-radius: 50px;
        }
        .section-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.3;
            letter-spacing: -0.3px;
            color: var(--text-primary);
            margin-bottom: 16px;
        }
        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.85;
            max-width: 720px;
        }

        /* ========== 议程特色卡片（非对称） ========== */
        .feature-row {
            display: grid;
            grid-template-columns: 1fr 1fr 1fr;
            gap: 24px;
            margin-top: 40px;
        }
        .feature-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
            position: relative;
        }
        .feature-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: var(--accent);
        }
        .feature-card .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 16px;
        }
        .feature-card h3 {
            font-size: 19px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
        }
        .feature-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 0;
        }
        .feature-card:nth-child(2) {
            background: var(--card-bg-alt);
        }

        /* ========== 议程卡片网格（2列，首卡跨行） ========== */
        .agenda-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
            margin-top: 40px;
        }
        .agenda-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .agenda-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
            border-color: var(--accent);
        }
        .agenda-card .agenda-img {
            height: 200px;
            object-fit: cover;
            width: 100%;
        }
        .agenda-card .agenda-body {
            padding: 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .agenda-card .agenda-time {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            margin-bottom: 10px;
        }
        .agenda-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .agenda-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin-bottom: 16px;
            flex: 1;
        }
        .agenda-card .tag-row {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 16px;
        }
        .tag-chip {
            display: inline-block;
            padding: 3px 10px;
            font-size: 12px;
            font-weight: 500;
            border-radius: 50px;
            background: var(--accent-soft);
            color: var(--accent);
        }
        .agenda-card .agenda-card-footer {
            border-top: 1px solid var(--border);
            padding-top: 14px;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .agenda-card .agenda-card-footer .location {
            font-size: 13px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 4px;
        }
        .agenda-card-featured {
            grid-row: span 2;
        }
        .agenda-card-featured .agenda-img {
            height: 300px;
        }
        .agenda-card-featured h3 {
            font-size: 24px;
        }

        /* ========== 流程时间线 ========== */
        .timeline-section {
            background: var(--card-bg-alt);
        }
        .timeline-list {
            margin-top: 36px;
            position: relative;
            padding-left: 32px;
        }
        .timeline-list::before {
            content: '';
            position: absolute;
            left: 10px;
            top: 6px;
            bottom: 6px;
            width: 2px;
            background: var(--accent);
            opacity: 0.35;
            border-radius: 2px;
        }
        .timeline-item {
            position: relative;
            padding-bottom: 28px;
            padding-left: 20px;
        }
        .timeline-item:last-child {
            padding-bottom: 0;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -28px;
            top: 6px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid var(--bg);
            box-shadow: 0 0 0 2px var(--accent-soft-strong);
        }
        .timeline-item .tl-time {
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            display: block;
            margin-bottom: 4px;
        }
        .timeline-item h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 6px;
        }
        .timeline-item p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
            max-width: 650px;
        }

        /* ========== 数据带 ========== */
        .stats-band {
            background: var(--primary);
            padding: 56px 0;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            text-align: center;
        }
        .stat-item .stat-number {
            font-size: 44px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            letter-spacing: -1px;
        }
        .stat-item .stat-label {
            font-size: 14px;
            color: rgba(255,255,255,0.7);
            margin-top: 6px;
        }

        /* ========== FAQ ========== */
        .accordion-custom .accordion-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-card) !important;
            margin-bottom: 12px;
            background: var(--card-bg);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
        }
        .accordion-custom .accordion-button {
            background: var(--card-bg);
            color: var(--text-primary);
            font-weight: 600;
            font-size: 16px;
            padding: 18px 20px;
            box-shadow: none;
        }
        .accordion-custom .accordion-button:not(.collapsed) {
            background: var(--bg);
            color: var(--accent);
            border-bottom: 1px solid var(--border);
        }
        .accordion-custom .accordion-button:focus {
            box-shadow: var(--focus-ring);
        }
        .accordion-custom .accordion-body {
            padding: 18px 20px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: var(--primary);
            padding: 68px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%;
            left: 50%;
            transform: translateX(-50%);
            width: 600px;
            height: 600px;
            background: radial-gradient(circle, rgba(184,147,90,0.15) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }
        .cta-section .container {
            position: relative;
            z-index: 2;
        }
        .cta-section h2 {
            color: #fff;
            font-size: 32px;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }
        .cta-section p {
            color: rgba(255,255,255,0.75);
            font-size: 16px;
            max-width: 560px;
            margin: 0 auto 28px;
            line-height: 1.8;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--primary);
            color: var(--footer-text);
            padding-top: 56px;
            padding-bottom: 28px;
        }
        .footer-top {
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255,255,255,0.1);
            margin-bottom: 24px;
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: #fff;
            margin-bottom: 16px;
        }
        .footer-logo:hover {
            color: var(--accent);
        }
        .footer-logo .footer-logo-icon {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 17px;
        }
        .footer-about {
            font-size: 14px;
            color: var(--footer-text);
            line-height: 1.75;
            max-width: 320px;
            margin-bottom: 0;
        }
        .site-footer h5 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 18px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            color: var(--footer-text);
            font-size: 14px;
            transition: color var(--transition-base);
        }
        .footer-links a:hover {
            color: var(--accent);
        }
        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-contact li {
            font-size: 14px;
            color: var(--footer-text);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-contact i {
            color: var(--accent);
            font-size: 15px;
            flex-shrink: 0;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            padding-top: 20px;
        }
        .copyright {
            font-size: 13px;
            color: var(--footer-text);
        }
        .footer-bottom-links {
            display: flex;
            gap: 18px;
            flex-wrap: wrap;
        }
        .footer-bottom-links a {
            font-size: 13px;
            color: var(--footer-text);
        }
        .footer-bottom-links a:hover {
            color: var(--accent);
        }

        /* ========== 响应式 ========== */
        @media (max-width: 991.98px) {
            .category-hero-content {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .category-hero-left h1 {
                font-size: 32px;
            }
            .feature-row {
                grid-template-columns: 1fr 1fr;
            }
            .agenda-grid {
                grid-template-columns: 1fr;
            }
            .agenda-card-featured {
                grid-row: auto;
            }
            .agenda-card-featured .agenda-img {
                height: 200px;
            }
            .stats-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 28px;
            }
            .stat-item .stat-number {
                font-size: 36px;
            }
        }
        @media (max-width: 767.98px) {
            .navbar .nav-link {
                padding-left: 10px;
                padding-right: 10px;
                font-size: 14px;
            }
            .nav-search-form input {
                width: 90px;
            }
            .btn-primary-custom {
                padding: 9px 16px;
                font-size: 14px;
                min-height: 38px;
            }
            .btn-outline-custom {
                padding: 9px 16px;
                font-size: 14px;
                min-height: 38px;
            }
            .category-hero {
                min-height: 52vh;
                padding: 28px 0;
            }
            .category-hero-left h1 {
                font-size: 28px;
            }
            .section-title {
                font-size: 24px;
            }
            .feature-row {
                grid-template-columns: 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
            .agenda-card .agenda-body {
                padding: 18px;
            }
            .agenda-card h3 {
                font-size: 18px;
            }
            .timeline-list {
                padding-left: 24px;
            }
            .timeline-item {
                padding-left: 14px;
            }
            .timeline-item::before {
                left: -21px;
                width: 12px;
                height: 12px;
            }
        }
        @media (max-width: 575.98px) {
            .category-hero-right .mini-form-row {
                flex-direction: column;
            }
            .stats-grid {
                grid-template-columns: 1fr 1fr;
                gap: 20px;
            }
            .stat-item .stat-number {
                font-size: 30px;
            }
            .section-desc {
                font-size: 15px;
            }
            .navbar-brand {
                font-size: 18px;
            }
            .navbar-brand .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }
        }

/* roulang page: category6 */
:root {
            --primary: #2B2620;
            --accent: #B8935A;
            --accent-hover: #A07F48;
            --accent-soft: rgba(184, 147, 90, 0.12);
            --bg: #FAF7F2;
            --card-bg: #FFFFFF;
            --card-bg-alt: #F5F1EA;
            --text-primary: #1F1D19;
            --text-secondary: #6E675E;
            --border: #E5DFD5;
            --highlight: #8C6D3F;
            --testimonial-bg: #F2EDE5;
            --footer-text: #D5CFC5;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-tag: 4px;
            --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
            --shadow-hover: 0 4px 20px rgba(0,0,0,0.08);
            --focus-ring: 0 0 0 4px rgba(184, 147, 90, 0.3);
            --font-stack: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
        }

        * {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-primary);
            background-color: var(--bg);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: var(--accent-hover);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        .btn:focus-visible {
            outline: none;
            box-shadow: var(--focus-ring);
            border-radius: var(--radius-btn);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1140px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 32px;
            padding-right: 32px;
        }

        /* ========== 顶部导航 ========== */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1030;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease;
        }
        .site-header.scrolled {
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        .site-header .navbar {
            padding-top: 12px;
            padding-bottom: 12px;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: -0.2px;
        }
        .navbar-brand:hover {
            color: var(--accent);
        }
        .navbar-brand .brand-icon {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .navbar .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 15px;
            padding-left: 14px;
            padding-right: 14px;
            position: relative;
            transition: color 0.25s ease;
        }
        .navbar .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 14px;
            right: 100%;
            height: 2px;
            background-color: var(--accent);
            transition: right 0.3s ease;
        }
        .navbar .nav-link:hover {
            color: var(--accent);
        }
        .navbar .nav-link:hover::after,
        .navbar .nav-link.active::after {
            right: 14px;
        }
        .navbar .nav-link.active {
            color: var(--accent);
            font-weight: 600;
        }
        .nav-search-form {
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 5px 6px 5px 14px;
            background: #fff;
            transition: border-color 0.25s ease;
        }
        .nav-search-form:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(184,147,90,0.12);
        }
        .nav-search-form input {
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            color: var(--text-primary);
            width: 130px;
        }
        .nav-search-form input::placeholder {
            color: var(--text-secondary);
            font-size: 13px;
        }
        .nav-search-form .search-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease;
            font-size: 15px;
        }
        .nav-search-form .search-btn:hover {
            background: var(--accent);
            color: #fff;
        }
        .btn-primary-custom {
            background-color: var(--accent);
            color: #FFFFFF;
            border: none;
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .btn-primary-custom:active {
            transform: translateY(0);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background 0.25s ease, color 0.25s ease, transform 0.2s ease;
            cursor: pointer;
        }
        .btn-outline-custom:hover {
            background: var(--accent);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .btn-outline-custom:active {
            transform: translateY(0);
        }

        /* ========== 分类页 Hero ========== */
        .category-hero {
            background-image: url('/assets/images/backpic/back-3.webp');
            background-size: cover;
            background-position: center;
            position: relative;
            min-height: 46vh;
            display: flex;
            align-items: center;
            padding: 56px 0;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: rgba(43, 38, 32, 0.72);
        }
        .category-hero .container {
            position: relative;
            z-index: 1;
        }
        .category-hero .breadcrumb {
            margin-bottom: 16px;
            font-size: 14px;
        }
        .category-hero .breadcrumb a {
            color: rgba(250, 247, 242, 0.7);
            transition: color 0.25s ease;
        }
        .category-hero .breadcrumb a:hover {
            color: var(--accent);
        }
        .category-hero .breadcrumb .breadcrumb-item.active {
            color: rgba(250, 247, 242, 0.9);
        }
        .category-hero .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(250, 247, 242, 0.5);
        }
        .category-hero h1 {
            color: #fff;
            font-size: 40px;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 12px;
            letter-spacing: -0.5px;
        }
        .category-hero .hero-desc {
            color: rgba(250, 247, 242, 0.82);
            font-size: 16px;
            line-height: 1.8;
            max-width: 520px;
        }
        .category-hero .hero-left {
            padding-right: 24px;
        }

        /* ========== 通用区块 ========== */
        .section {
            padding: 72px 0;
        }
        .section-alt {
            background: var(--card-bg-alt);
        }
        .section-dark {
            background: var(--primary);
            color: #fff;
            padding: 72px 0;
        }
        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            background: var(--accent-soft);
            padding: 4px 14px;
            border-radius: var(--radius-tag);
            margin-bottom: 12px;
            letter-spacing: 0.5px;
        }
        .section-title {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 16px;
            letter-spacing: -0.3px;
        }
        .section-title.light {
            color: #fff;
        }
        .section-lead {
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-secondary);
            max-width: 720px;
        }
        .section-lead.light {
            color: rgba(250, 247, 242, 0.75);
        }

        /* ========== 卡片 ========== */
        .review-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .review-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-4px);
        }
        .review-card .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 8px;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 16px;
            flex-shrink: 0;
        }
        .review-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .review-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
            flex-grow: 1;
        }
        .review-card .card-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: color 0.25s ease;
        }
        .review-card .card-link:hover {
            color: var(--accent-hover);
        }
        .review-card .card-link i {
            transition: transform 0.25s ease;
        }
        .review-card .card-link:hover i {
            transform: translateX(4px);
        }

        .featured-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease, border-color 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .featured-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
            transform: translateY(-4px);
        }
        .featured-card .fc-image {
            height: 220px;
            background-size: cover;
            background-position: center;
        }
        .featured-card .fc-body {
            padding: 24px 28px;
            flex-grow: 1;
            display: flex;
            flex-direction: column;
        }
        .featured-card .fc-body h3 {
            font-size: 21px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
            line-height: 1.4;
        }
        .featured-card .fc-body p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
            flex-grow: 1;
        }
        .featured-card .fc-body .card-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .featured-card .fc-body .card-link i {
            transition: transform 0.25s ease;
        }
        .featured-card .fc-body .card-link:hover i {
            transform: translateX(4px);
        }

        /* 数据面板 */
        .data-panel {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px;
            box-shadow: var(--shadow-sm);
        }
        .data-panel .dp-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 1px solid var(--border);
        }
        .data-item {
            display: flex;
            align-items: baseline;
            justify-content: space-between;
            padding: 10px 0;
            border-bottom: 1px dashed var(--border);
        }
        .data-item:last-child {
            border-bottom: none;
        }
        .data-item .label {
            font-size: 14px;
            color: var(--text-secondary);
        }
        .data-item .value {
            font-size: 26px;
            font-weight: 700;
            color: var(--highlight);
            letter-spacing: -0.5px;
        }
        .data-item .unit {
            font-size: 13px;
            font-weight: 400;
            color: var(--text-secondary);
            margin-left: 2px;
        }

        /* 深色数据带 */
        .metric-block {
            text-align: center;
            padding: 24px 16px;
        }
        .metric-block .metric-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            letter-spacing: -1px;
        }
        .metric-block .metric-label {
            font-size: 15px;
            color: rgba(250, 247, 242, 0.75);
            margin-top: 6px;
        }

        /* 证言 */
        .testimonial-card {
            background: var(--testimonial-bg);
            border-radius: var(--radius-card);
            padding: 28px;
            border: none;
            position: relative;
            height: 100%;
            box-shadow: var(--shadow-sm);
        }
        .testimonial-card .quote-mark {
            font-size: 48px;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 12px;
            font-family: Georgia, serif;
            opacity: 0.7;
        }
        .testimonial-card blockquote {
            font-size: 15px;
            line-height: 1.85;
            color: var(--text-primary);
            margin: 0 0 20px 0;
            font-style: normal;
        }
        .testimonial-card .quote-author {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .testimonial-card .quote-author .avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }
        .testimonial-card .quote-author .name {
            font-weight: 600;
            font-size: 14px;
            color: var(--text-primary);
        }
        .testimonial-card .quote-author .role {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* FAQ */
        .faq-section .accordion-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-card) !important;
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--card-bg);
        }
        .faq-section .accordion-button {
            font-weight: 600;
            font-size: 16px;
            color: var(--text-primary);
            background: var(--card-bg);
            padding: 18px 24px;
            border: none;
            box-shadow: none;
        }
        .faq-section .accordion-button:not(.collapsed) {
            background: var(--card-bg-alt);
            color: var(--accent);
            box-shadow: none;
        }
        .faq-section .accordion-button:focus {
            box-shadow: var(--focus-ring);
            border-color: var(--accent);
        }
        .faq-section .accordion-button::after {
            filter: sepia(0.3) saturate(2) hue-rotate(-10deg);
        }
        .faq-section .accordion-body {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.85;
            padding: 18px 24px 20px;
            background: var(--card-bg);
        }

        /* CTA */
        .cta-section {
            background: var(--primary);
            padding: 72px 0;
            text-align: center;
        }
        .cta-section .cta-title {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }
        .cta-section .cta-desc {
            font-size: 16px;
            color: rgba(250, 247, 242, 0.75);
            max-width: 600px;
            margin: 0 auto 28px;
            line-height: 1.8;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--primary);
            color: var(--footer-text);
            padding: 48px 0 24px;
        }
        .site-footer .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }
        .site-footer .footer-logo:hover {
            color: var(--accent);
        }
        .site-footer .footer-logo-icon {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
        }
        .site-footer h5 {
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .site-footer .footer-about {
            font-size: 14px;
            line-height: 1.8;
            color: var(--footer-text);
            margin-bottom: 20px;
            max-width: 320px;
        }
        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-links li {
            margin-bottom: 8px;
        }
        .site-footer .footer-links a {
            color: var(--footer-text);
            font-size: 14px;
            transition: color 0.25s ease;
        }
        .site-footer .footer-links a:hover {
            color: var(--accent);
        }
        .site-footer .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-contact li {
            font-size: 14px;
            color: var(--footer-text);
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .site-footer .footer-contact i {
            color: var(--accent);
            flex-shrink: 0;
            margin-top: 2px;
        }
        .footer-bottom {
            margin-top: 32px;
            padding-top: 20px;
            border-top: 1px solid rgba(250, 247, 242, 0.1);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
        }
        .footer-bottom .copyright {
            font-size: 13px;
            color: rgba(250, 247, 242, 0.5);
        }
        .footer-bottom .footer-bottom-links {
            font-size: 13px;
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-bottom .footer-bottom-links a {
            color: rgba(250, 247, 242, 0.5);
            transition: color 0.25s ease;
        }
        .footer-bottom .footer-bottom-links a:hover {
            color: var(--accent);
        }
        .footer-bottom .icp {
            font-size: 12px;
            color: rgba(250, 247, 242, 0.4);
            width: 100%;
            margin-top: 6px;
        }

        /* ========== 响应式 ========== */
        @media (max-width: 991.98px) {
            .container {
                padding-left: 24px;
                padding-right: 24px;
            }
            .section,
            .section-dark,
            .cta-section {
                padding: 48px 0;
            }
            .category-hero {
                min-height: 40vh;
                padding: 40px 0;
            }
            .category-hero h1 {
                font-size: 32px;
            }
            .category-hero .hero-desc {
                font-size: 15px;
            }
            .section-title {
                font-size: 26px;
            }
            .metric-block .metric-number {
                font-size: 32px;
            }
            .navbar .nav-link {
                padding-left: 10px;
                padding-right: 10px;
                font-size: 14px;
            }
            .nav-search-form input {
                width: 90px;
            }
        }

        @media (max-width: 767.98px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .section,
            .section-dark,
            .cta-section {
                padding: 36px 0;
            }
            .category-hero {
                min-height: 36vh;
                padding: 32px 0;
            }
            .category-hero h1 {
                font-size: 28px;
            }
            .category-hero .hero-desc {
                font-size: 14px;
            }
            .section-title {
                font-size: 22px;
            }
            .review-card,
            .featured-card .fc-body,
            .data-panel,
            .testimonial-card {
                padding: 20px;
            }
            .featured-card .fc-image {
                height: 160px;
            }
            .metric-block .metric-number {
                font-size: 26px;
            }
            .cta-section .cta-title {
                font-size: 24px;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .footer-bottom .footer-bottom-links {
                gap: 10px;
            }
            .navbar .nav-link {
                padding: 10px 16px;
            }
            .nav-search-form {
                margin-bottom: 10px;
            }
            .nav-search-form input {
                width: 100%;
            }
        }

        @media (max-width: 575.98px) {
            .category-hero h1 {
                font-size: 24px;
            }
            .section-title {
                font-size: 20px;
            }
            .review-card h3,
            .featured-card .fc-body h3 {
                font-size: 18px;
            }
            .btn-primary-custom,
            .btn-outline-custom {
                padding: 9px 18px;
                font-size: 14px;
            }
            .data-item .value {
                font-size: 20px;
            }
        }

/* roulang page: category4 */
:root {
            --primary: #2B2620;
            --accent: #B8935A;
            --accent-hover: #A07F48;
            --accent-soft: rgba(184, 147, 90, 0.12);
            --accent-soft-2: rgba(184, 147, 90, 0.08);
            --bg: #FAF7F2;
            --card-bg: #FFFFFF;
            --card-bg-alt: #F5F1EA;
            --text-primary: #1F1D19;
            --text-secondary: #6E675E;
            --border: #E5DFD5;
            --highlight: #8C6D3F;
            --testimonial-bg: #F2EDE5;
            --footer-text: #D5CFC5;
            --footer-bg: #2B2620;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-tag: 4px;
            --shadow-sm: 0 1px 4px rgba(0, 0, 0, 0.04);
            --shadow-hover: 0 4px 20px rgba(0, 0, 0, 0.08);
            --focus-ring: 0 0 0 4px rgba(184, 147, 90, 0.3);
            --font-stack: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
            --transition-base: all 0.25s ease;
            --transition-smooth: all 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-primary);
            background-color: var(--bg);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
            overflow-x: hidden;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        a:hover {
            color: var(--accent-hover);
        }

        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        .btn:focus-visible {
            outline: none;
            box-shadow: var(--focus-ring);
            border-radius: var(--radius-btn);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1140px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        @media (min-width: 992px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }

        @media (max-width: 575.98px) {
            .container {
                padding-left: 18px;
                padding-right: 18px;
            }
        }

        /* ========== 顶部导航 ========== */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1030;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease;
        }

        .site-header.scrolled {
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
        }

        .site-header .navbar {
            padding-top: 12px;
            padding-bottom: 12px;
        }

        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: -0.2px;
        }

        .navbar-brand:hover {
            color: var(--accent);
        }

        .navbar-brand .brand-icon {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }

        .navbar .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 15px;
            padding-left: 14px;
            padding-right: 14px;
            position: relative;
            transition: color 0.25s ease;
        }

        .navbar .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 14px;
            right: 100%;
            height: 2px;
            background-color: var(--accent);
            transition: right 0.3s ease;
        }

        .navbar .nav-link:hover {
            color: var(--accent);
        }

        .navbar .nav-link:hover::after,
        .navbar .nav-link.active::after {
            right: 14px;
        }

        .navbar .nav-link.active {
            color: var(--accent);
            font-weight: 600;
        }

        .nav-search-form {
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 5px 6px 5px 14px;
            background: #fff;
            transition: border-color 0.25s ease;
        }

        .nav-search-form:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(184, 147, 90, 0.12);
        }

        .nav-search-form input {
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            color: var(--text-primary);
            width: 130px;
        }

        .nav-search-form input::placeholder {
            color: var(--text-secondary);
            font-size: 13px;
        }

        .nav-search-form .search-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease;
            font-size: 15px;
        }

        .nav-search-form .search-btn:hover {
            background: var(--accent);
            color: #fff;
        }

        .btn-primary-custom {
            background-color: var(--accent);
            color: #FFFFFF;
            border: none;
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(184, 147, 90, 0.35);
        }

        .btn-primary-custom:active {
            transform: translateY(0);
            box-shadow: 0 2px 6px rgba(184, 147, 90, 0.25);
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }

        .btn-outline-custom:hover {
            background-color: var(--accent);
            color: #fff;
            transform: translateY(-2px);
        }

        /* 导航移动端 */
        @media (max-width: 991.98px) {
            .navbar-collapse {
                background: #fff;
                border-radius: 0 0 var(--radius-card) var(--radius-card);
                padding: 16px 12px;
                margin-top: 10px;
                border-top: 1px solid var(--border);
            }
            .navbar .nav-link {
                padding: 10px 14px;
                font-size: 16px;
            }
            .navbar .nav-link::after {
                display: none;
            }
            .nav-search-form {
                margin-top: 10px;
                width: 100%;
            }
            .nav-search-form input {
                width: 100%;
            }
            .navbar .btn-primary-custom {
                margin-top: 10px;
                width: 100%;
            }
        }

        @media (max-width: 575.98px) {
            .navbar-brand {
                font-size: 18px;
            }
            .navbar-brand .brand-icon {
                width: 30px;
                height: 30px;
                font-size: 16px;
            }
        }

        /* ========== Hero ========== */
        .category-hero {
            position: relative;
            min-height: 46vh;
            display: flex;
            align-items: flex-end;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            background-repeat: no-repeat;
            color: #fff;
            overflow: hidden;
        }

        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(43, 38, 32, 0.88) 0%, rgba(43, 38, 32, 0.62) 55%, rgba(43, 38, 32, 0.45) 100%);
            z-index: 1;
        }

        .category-hero .hero-content {
            position: relative;
            z-index: 2;
            padding: 64px 0 48px;
            width: 100%;
        }

        .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 20px;
            flex-wrap: wrap;
        }

        .breadcrumb-custom a {
            color: rgba(255, 255, 255, 0.85);
            text-decoration: none;
            transition: color 0.25s ease;
        }

        .breadcrumb-custom a:hover {
            color: var(--accent);
        }

        .breadcrumb-custom .separator {
            color: rgba(255, 255, 255, 0.5);
            font-size: 12px;
        }

        .breadcrumb-custom .current {
            color: var(--accent);
            font-weight: 600;
        }

        .category-hero .hero-title {
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.25;
            margin-bottom: 16px;
            color: #fff;
        }

        .category-hero .hero-desc {
            font-size: 17px;
            line-height: 1.8;
            color: rgba(255, 255, 255, 0.82);
            max-width: 680px;
            margin-bottom: 0;
        }

        @media (max-width: 767.98px) {
            .category-hero {
                min-height: 40vh;
            }
            .category-hero .hero-content {
                padding: 48px 0 36px;
            }
            .category-hero .hero-title {
                font-size: 28px;
                line-height: 1.3;
            }
            .category-hero .hero-desc {
                font-size: 15px;
                line-height: 1.7;
            }
        }

        /* ========== 内容列表（分类页4：左侧缩略图右侧文字） ========== */
        .section-block {
            padding: 72px 0;
        }

        .section-block.alt-bg {
            background: var(--card-bg-alt);
        }

        .section-block.white-bg {
            background: #fff;
        }

        .section-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            background: var(--accent-soft);
            padding: 5px 14px;
            border-radius: 50px;
            letter-spacing: 0.5px;
            margin-bottom: 14px;
        }

        .section-title {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: -0.3px;
            line-height: 1.3;
            color: var(--text-primary);
            margin-bottom: 14px;
        }

        .section-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.75;
            max-width: 720px;
            margin-bottom: 40px;
        }

        .guide-list-item {
            display: flex;
            gap: 24px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 20px;
            margin-bottom: 20px;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            align-items: center;
        }

        .guide-list-item:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }

        .guide-list-item .guide-thumb {
            flex-shrink: 0;
            width: 200px;
            height: 140px;
            border-radius: var(--radius-card);
            overflow: hidden;
            background: var(--card-bg-alt);
        }

        .guide-list-item .guide-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }

        .guide-list-item:hover .guide-thumb img {
            transform: scale(1.06);
        }

        .guide-list-item .guide-body {
            flex: 1;
            min-width: 0;
        }

        .guide-list-item .guide-title {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .guide-list-item .guide-summary {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .guide-list-item .read-more-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--accent);
            transition: gap 0.3s ease, color 0.3s ease;
        }

        .guide-list-item .read-more-link i {
            font-size: 14px;
            transition: transform 0.3s ease;
        }

        .guide-list-item .read-more-link:hover {
            color: var(--accent-hover);
            gap: 10px;
        }

        .guide-list-item .read-more-link:hover i {
            transform: translateX(4px);
        }

        @media (max-width: 767.98px) {
            .guide-list-item {
                flex-direction: column;
                align-items: stretch;
                gap: 16px;
                padding: 16px;
            }
            .guide-list-item .guide-thumb {
                width: 100%;
                height: 180px;
            }
            .guide-list-item .guide-title {
                font-size: 18px;
            }
            .guide-list-item .guide-summary {
                font-size: 14px;
                -webkit-line-clamp: 3;
            }
        }

        /* ========== 快速提示卡片 ========== */
        .quick-tip-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 24px;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            height: 100%;
        }

        .quick-tip-card:hover {
            transform: translateY(-3px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }

        .quick-tip-card .tip-icon {
            width: 46px;
            height: 46px;
            border-radius: 10px;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 14px;
        }

        .quick-tip-card .tip-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .quick-tip-card .tip-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }

        /* ========== 图文区块 ========== */
        .media-split {
            display: flex;
            gap: 32px;
            align-items: center;
        }

        .media-split .media-image {
            flex-shrink: 0;
            width: 44%;
        }

        .media-split .media-image img {
            width: 100%;
            height: 320px;
            object-fit: cover;
            border-radius: var(--radius-card);
            box-shadow: var(--shadow-hover);
        }

        .media-split .media-text {
            flex: 1;
            min-width: 0;
        }

        .media-split .media-text h3 {
            font-size: 24px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 14px;
            line-height: 1.4;
        }

        .media-split .media-text p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 12px;
        }

        @media (max-width: 991.98px) {
            .media-split {
                flex-direction: column;
                gap: 24px;
            }
            .media-split .media-image {
                width: 100%;
            }
            .media-split .media-image img {
                height: 240px;
            }
        }

        /* ========== 步骤流程 ========== */
        .step-flow {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            margin-top: 12px;
        }

        .step-flow .step-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 24px 20px;
            position: relative;
            box-shadow: var(--shadow-sm);
            transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
            text-align: center;
        }

        .step-flow .step-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }

        .step-flow .step-number {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            font-size: 18px;
            font-weight: 700;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 14px;
        }

        .step-flow .step-title {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 8px;
        }

        .step-flow .step-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 0;
        }

        @media (max-width: 991.98px) {
            .step-flow {
                grid-template-columns: repeat(2, 1fr);
                gap: 16px;
            }
        }

        @media (max-width: 575.98px) {
            .step-flow {
                grid-template-columns: 1fr;
                gap: 14px;
            }
            .step-flow .step-item {
                padding: 20px 16px;
            }
        }

        /* ========== 统计数字 ========== */
        .stat-band {
            background: var(--primary);
            padding: 48px 0;
            border-radius: var(--radius-card);
            margin: 0;
        }

        .stat-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .stat-grid .stat-item {
            text-align: center;
            color: #fff;
        }

        .stat-grid .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            letter-spacing: -1px;
        }

        .stat-grid .stat-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.72);
            margin-top: 6px;
        }

        @media (max-width: 991.98px) {
            .stat-grid {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .stat-grid .stat-number {
                font-size: 32px;
            }
        }

        @media (max-width: 575.98px) {
            .stat-grid {
                grid-template-columns: 1fr 1fr;
                gap: 16px;
            }
            .stat-grid .stat-number {
                font-size: 28px;
            }
            .stat-grid .stat-label {
                font-size: 13px;
            }
        }

        /* ========== FAQ 手风琴 ========== */
        .accordion-custom .accordion-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card) !important;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: border-color 0.3s ease;
        }

        .accordion-custom .accordion-item:hover {
            border-color: var(--accent);
        }

        .accordion-custom .accordion-button {
            background: #fff;
            color: var(--text-primary);
            font-weight: 600;
            font-size: 16px;
            padding: 18px 20px;
            border: none;
            box-shadow: none;
            transition: color 0.3s ease, background 0.3s ease;
        }

        .accordion-custom .accordion-button:not(.collapsed) {
            background: var(--accent-soft-2);
            color: var(--accent);
            box-shadow: none;
        }

        .accordion-custom .accordion-button::after {
            filter: none;
            background-image: none;
            content: '\F282';
            font-family: 'bootstrap-icons';
            font-size: 16px;
            color: var(--accent);
            transition: transform 0.3s ease;
        }

        .accordion-custom .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }

        .accordion-custom .accordion-button:focus {
            box-shadow: none;
            border-color: var(--accent);
        }

        .accordion-custom .accordion-body {
            padding: 16px 20px 20px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            background: #fff;
        }

        /* ========== CTA 区块 ========== */
        .cta-section {
            background: var(--primary);
            padding: 64px 0;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: radial-gradient(ellipse at center, rgba(184, 147, 90, 0.12) 0%, transparent 70%);
            z-index: 1;
        }

        .cta-section .cta-content {
            position: relative;
            z-index: 2;
        }

        .cta-section .cta-title {
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }

        .cta-section .cta-desc {
            font-size: 16px;
            color: rgba(255, 255, 255, 0.75);
            max-width: 560px;
            margin: 0 auto 28px;
            line-height: 1.75;
        }

        .cta-section .btn-cta-large {
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: var(--radius-btn);
            padding: 14px 36px;
            font-weight: 600;
            font-size: 17px;
            min-height: 52px;
            display: inline-flex;
            align-items: center;
            gap: 10px;
            transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
        }

        .cta-section .btn-cta-large:hover {
            background: var(--accent-hover);
            transform: translateY(-3px);
            box-shadow: 0 8px 24px rgba(184, 147, 90, 0.4);
        }

        @media (max-width: 575.98px) {
            .cta-section {
                padding: 48px 0;
            }
            .cta-section .cta-title {
                font-size: 24px;
            }
            .cta-section .cta-desc {
                font-size: 15px;
            }
            .cta-section .btn-cta-large {
                font-size: 15px;
                padding: 12px 28px;
                min-height: 46px;
            }
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--footer-bg);
            color: var(--footer-text);
            padding: 56px 0 0;
            font-size: 14px;
        }

        .site-footer .footer-top {
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }

        .site-footer .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: #fff;
            text-decoration: none;
            margin-bottom: 16px;
        }

        .site-footer .footer-logo:hover {
            color: var(--accent);
        }

        .site-footer .footer-logo-icon {
            width: 32px;
            height: 32px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 16px;
        }

        .site-footer .footer-about {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.75;
            margin-bottom: 0;
        }

        .site-footer h5 {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.2px;
        }

        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer .footer-links li {
            margin-bottom: 10px;
        }

        .site-footer .footer-links a {
            color: rgba(255, 255, 255, 0.65);
            text-decoration: none;
            font-size: 14px;
            transition: color 0.25s ease;
        }

        .site-footer .footer-links a:hover {
            color: var(--accent);
        }

        .site-footer .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .site-footer .footer-contact li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            margin-bottom: 12px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.65);
            line-height: 1.6;
        }

        .site-footer .footer-contact i {
            color: var(--accent);
            font-size: 16px;
            margin-top: 2px;
            flex-shrink: 0;
        }

        .site-footer .footer-bottom {
            padding: 20px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 12px;
            color: rgba(255, 255, 255, 0.5);
        }

        .site-footer .footer-bottom a {
            color: rgba(255, 255, 255, 0.55);
            text-decoration: none;
            transition: color 0.25s ease;
            font-size: 12px;
        }

        .site-footer .footer-bottom a:hover {
            color: var(--accent);
        }

        .site-footer .footer-bottom .bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            align-items: center;
        }

        @media (max-width: 575.98px) {
            .site-footer {
                padding: 36px 0 0;
            }
            .site-footer .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
            .site-footer .footer-bottom .bottom-links {
                gap: 12px;
                flex-wrap: wrap;
            }
        }

        /* ========== 通用工具 ========== */
        .text-accent {
            color: var(--accent);
        }

        .fw-600 {
            font-weight: 600;
        }

        .mb-0 {
            margin-bottom: 0;
        }

        .gap-2 {
            gap: 8px;
        }

        .flex-wrap {
            flex-wrap: wrap;
        }

        .w-100 {
            width: 100%;
        }

/* roulang page: category5 */
:root {
            --primary: #2B2620;
            --accent: #B8935A;
            --accent-hover: #A07F48;
            --accent-soft: rgba(184, 147, 90, 0.12);
            --bg: #FAF7F2;
            --card-bg: #FFFFFF;
            --card-bg-alt: #F5F1EA;
            --text-primary: #1F1D19;
            --text-secondary: #6E675E;
            --border: #E5DFD5;
            --highlight: #8C6D3F;
            --testimonial-bg: #F2EDE5;
            --footer-text: #D5CFC5;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-tag: 4px;
            --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
            --shadow-hover: 0 4px 20px rgba(0,0,0,0.08);
            --focus-ring: 0 0 0 4px rgba(184, 147, 90, 0.3);
            --font-stack: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-primary);
            background-color: var(--bg);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: var(--accent-hover);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        .btn:focus-visible {
            outline: none;
            box-shadow: var(--focus-ring);
            border-radius: var(--radius-btn);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1140px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 16px;
            padding-right: 16px;
        }
        @media (min-width: 576px) {
            .container {
                padding-left: 24px;
                padding-right: 24px;
            }
        }
        @media (min-width: 992px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }

        /* ========== 顶部导航 ========== */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1030;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease;
        }
        .site-header.scrolled {
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        .site-header .navbar {
            padding-top: 12px;
            padding-bottom: 12px;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: -0.2px;
            white-space: nowrap;
        }
        .navbar-brand:hover {
            color: var(--accent);
        }
        .navbar-brand .brand-icon {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .navbar .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 15px;
            padding-left: 14px;
            padding-right: 14px;
            position: relative;
            transition: color 0.25s ease;
        }
        .navbar .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 14px;
            right: 100%;
            height: 2px;
            background-color: var(--accent);
            transition: right 0.3s ease;
        }
        .navbar .nav-link:hover {
            color: var(--accent);
        }
        .navbar .nav-link:hover::after,
        .navbar .nav-link.active::after {
            right: 14px;
        }
        .navbar .nav-link.active {
            color: var(--accent);
            font-weight: 600;
        }
        .nav-search-form {
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 5px 6px 5px 14px;
            background: #fff;
            transition: border-color 0.25s ease;
        }
        .nav-search-form:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(184,147,90,0.12);
        }
        .nav-search-form input {
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            color: var(--text-primary);
            width: 130px;
        }
        .nav-search-form input::placeholder {
            color: var(--text-secondary);
            font-size: 13px;
        }
        .nav-search-form .search-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease;
            font-size: 15px;
        }
        .nav-search-form .search-btn:hover {
            background: var(--accent);
            color: #fff;
        }
        .btn-primary-custom {
            background-color: var(--accent);
            color: #FFFFFF;
            border: none;
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }
        .btn-outline-custom:hover {
            background-color: var(--accent);
            color: #fff;
            transform: translateY(-2px);
        }
        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            padding: 8px 10px;
            font-size: 20px;
            color: var(--text-primary);
        }
        .navbar-toggler:focus {
            box-shadow: var(--focus-ring);
            outline: none;
        }

        /* ========== 面包屑 ========== */
        .breadcrumb-custom {
            background: transparent;
            margin: 0;
            padding: 0;
            font-size: 14px;
            color: rgba(255,255,255,0.75);
        }
        .breadcrumb-custom .breadcrumb-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .breadcrumb-custom .breadcrumb-item a {
            color: rgba(255,255,255,0.85);
            transition: color 0.25s ease;
        }
        .breadcrumb-custom .breadcrumb-item a:hover {
            color: #fff;
        }
        .breadcrumb-custom .breadcrumb-item.active {
            color: var(--accent);
        }
        .breadcrumb-custom .breadcrumb-item + .breadcrumb-item::before {
            content: "/";
            color: rgba(255,255,255,0.5);
            margin: 0 8px;
        }

        /* ========== 分类 Hero ========== */
        .category-hero {
            position: relative;
            min-height: 45vh;
            background-image: url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            display: flex;
            align-items: flex-end;
            padding: 60px 0 48px;
            margin-bottom: 72px;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(43,38,32,0.82) 0%, rgba(43,38,32,0.55) 50%, rgba(43,38,32,0.7) 100%);
            z-index: 1;
        }
        .category-hero .container {
            position: relative;
            z-index: 2;
        }
        .category-hero-inner {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
        }
        @media (min-width: 992px) {
            .category-hero-inner {
                grid-template-columns: 1.2fr 0.8fr;
                gap: 48px;
                align-items: end;
            }
        }
        .category-hero h1 {
            color: #fff;
            font-size: 32px;
            font-weight: 700;
            letter-spacing: -0.3px;
            line-height: 1.3;
            margin: 14px 0 12px;
        }
        @media (min-width: 768px) {
            .category-hero h1 {
                font-size: 40px;
            }
        }
        .category-hero .hero-desc {
            color: rgba(255,255,255,0.85);
            font-size: 15px;
            line-height: 1.8;
            max-width: 520px;
        }
        .category-hero .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 5px 14px;
            border-radius: 50px;
            letter-spacing: 0.3px;
        }

        /* ========== 通用板块样式 ========== */
        .section-block {
            padding: 72px 0;
            position: relative;
        }
        @media (max-width: 768px) {
            .section-block {
                padding: 40px 0;
            }
        }
        .section-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            font-weight: 600;
            color: var(--accent);
            background: var(--accent-soft);
            padding: 5px 14px;
            border-radius: 50px;
            margin-bottom: 14px;
            letter-spacing: 0.5px;
        }
        .section-title {
            font-size: 28px;
            font-weight: 700;
            line-height: 1.35;
            color: var(--text-primary);
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }
        @media (min-width: 768px) {
            .section-title {
                font-size: 34px;
            }
        }
        .section-subtitle {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.8;
            max-width: 680px;
        }

        /* ========== 合作价值区 ========== */
        .value-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: 36px;
        }
        @media (min-width: 768px) {
            .value-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }
        }
        @media (min-width: 992px) {
            .value-grid {
                grid-template-columns: 1.1fr 0.9fr 0.9fr;
                align-items: start;
            }
        }
        .value-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            display: flex;
            flex-direction: column;
            gap: 12px;
            box-shadow: var(--shadow-sm);
        }
        .value-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }
        .value-card .value-icon {
            width: 48px;
            height: 48px;
            border-radius: var(--radius-card);
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }
        .value-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }
        .value-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin: 0;
        }
        .value-lead {
            background: var(--card-bg-alt);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 32px 28px;
            display: flex;
            flex-direction: column;
            gap: 18px;
            box-shadow: var(--shadow-sm);
        }
        .value-lead h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-primary);
            margin: 0;
        }
        .value-lead p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin: 0;
        }
        .value-lead .highlight-num {
            font-size: 42px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
        }
        .value-lead .highlight-label {
            font-size: 14px;
            color: var(--text-secondary);
            font-weight: 500;
        }

        /* ========== 时间线 ========== */
        .timeline-wrapper {
            margin-top: 40px;
            position: relative;
            padding-left: 28px;
        }
        .timeline-wrapper::before {
            content: '';
            position: absolute;
            left: 8px;
            top: 0;
            bottom: 0;
            width: 2px;
            background: linear-gradient(to bottom, var(--accent) 0%, var(--border) 100%);
        }
        .timeline-item {
            position: relative;
            margin-bottom: 36px;
            padding-left: 24px;
        }
        .timeline-item:last-child {
            margin-bottom: 0;
        }
        .timeline-item::before {
            content: '';
            position: absolute;
            left: -24px;
            top: 8px;
            width: 14px;
            height: 14px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid var(--bg);
            box-shadow: 0 0 0 2px var(--accent);
            z-index: 1;
        }
        .timeline-item .timeline-year {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            font-size: 18px;
            font-weight: 700;
            color: var(--accent);
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .timeline-item .timeline-year i {
            font-size: 16px;
        }
        .timeline-item .timeline-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 22px 24px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.25s ease, border-color 0.25s ease;
        }
        .timeline-item .timeline-card:hover {
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }
        .timeline-item .timeline-card h4 {
            font-size: 17px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0 0 6px;
        }
        .timeline-item .timeline-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin: 0;
        }
        @media (min-width: 768px) {
            .timeline-wrapper {
                padding-left: 40px;
            }
            .timeline-wrapper::before {
                left: 20px;
            }
            .timeline-item {
                padding-left: 0;
            }
            .timeline-item::before {
                left: -30px;
                top: 6px;
                width: 18px;
                height: 18px;
            }
        }

        /* ========== 合作伙伴类型 ========== */
        .partner-type-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin-top: 36px;
        }
        @media (min-width: 768px) {
            .partner-type-grid {
                grid-template-columns: 1fr 1fr;
                gap: 28px;
            }
        }
        @media (min-width: 992px) {
            .partner-type-grid {
                grid-template-columns: 1.3fr 0.85fr 0.85fr;
                gap: 28px;
            }
        }
        .partner-type-card {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px 24px;
            box-shadow: var(--shadow-sm);
            transition: transform 0.25s ease, box-shadow 0.25s ease, border-color 0.25s ease;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .partner-type-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
            border-color: var(--accent);
        }
        .partner-type-card.featured {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }
        .partner-type-card.featured h3 {
            color: #fff;
        }
        .partner-type-card.featured p {
            color: rgba(255,255,255,0.8);
        }
        .partner-type-card .type-icon {
            width: 44px;
            height: 44px;
            border-radius: var(--radius-card);
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            flex-shrink: 0;
        }
        .partner-type-card.featured .type-icon {
            background: var(--accent);
            color: #fff;
        }
        .partner-type-card h3 {
            font-size: 20px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }
        .partner-type-card p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
            margin: 0;
            flex-grow: 1;
        }
        .partner-type-card .type-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .partner-type-card .type-meta span {
            font-size: 12px;
            padding: 4px 10px;
            border-radius: 50px;
            background: var(--accent-soft);
            color: var(--accent);
            font-weight: 500;
        }
        .partner-type-card.featured .type-meta span {
            background: rgba(184,147,90,0.2);
            color: var(--accent);
        }

        /* ========== 流程 ========== */
        .process-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 16px;
            margin-top: 36px;
        }
        @media (min-width: 576px) {
            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (min-width: 992px) {
            .process-grid {
                grid-template-columns: repeat(5, 1fr);
                gap: 20px;
            }
        }
        .process-step {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 22px 18px;
            box-shadow: var(--shadow-sm);
            display: flex;
            flex-direction: column;
            gap: 8px;
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
            position: relative;
        }
        .process-step:hover {
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }
        .process-step .step-num {
            font-size: 13px;
            font-weight: 700;
            color: var(--accent);
            background: var(--accent-soft);
            width: 32px;
            height: 32px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0;
        }
        .process-step h4 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-primary);
            margin: 0;
        }
        .process-step p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.65;
            margin: 0;
        }

        /* ========== 数据展示区 ========== */
        .stats-band {
            background: var(--primary);
            padding: 56px 0;
            position: relative;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        @media (min-width: 768px) {
            .stats-grid {
                grid-template-columns: repeat(4, 1fr);
                gap: 32px;
            }
        }
        .stat-item {
            text-align: center;
            color: #fff;
        }
        .stat-item .stat-num {
            font-size: 38px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.25;
            letter-spacing: -0.5px;
        }
        .stat-item .stat-label {
            font-size: 14px;
            color: var(--footer-text);
            margin-top: 6px;
        }

        /* ========== FAQ ========== */
        .accordion-custom .accordion-item {
            border: 1px solid var(--border);
            border-radius: var(--radius-card) !important;
            margin-bottom: 14px;
            overflow: hidden;
            background: var(--card-bg);
            box-shadow: var(--shadow-sm);
            transition: border-color 0.25s ease, box-shadow 0.25s ease;
        }
        .accordion-custom .accordion-item:has(.accordion-button:not(.collapsed)) {
            border-color: var(--accent);
            box-shadow: var(--shadow-hover);
        }
        .accordion-custom .accordion-button {
            background: var(--card-bg);
            color: var(--text-primary);
            font-weight: 600;
            font-size: 16px;
            padding: 20px 24px;
            border: none;
            box-shadow: none;
            transition: background 0.3s ease, color 0.3s ease;
        }
        .accordion-custom .accordion-button:not(.collapsed) {
            background: var(--card-bg-alt);
            color: var(--accent);
            box-shadow: none;
        }
        .accordion-custom .accordion-button:focus {
            box-shadow: var(--focus-ring);
        }
        .accordion-custom .accordion-button::after {
            background-image: none;
            font-family: "bootstrap-icons";
            content: "\F282";
            transition: transform 0.3s ease;
            font-size: 18px;
            color: var(--accent);
        }
        .accordion-custom .accordion-button:not(.collapsed)::after {
            transform: rotate(180deg);
        }
        .accordion-custom .accordion-body {
            padding: 16px 24px 22px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
        }

        /* ========== CTA ========== */
        .cta-section {
            background: var(--primary);
            padding: 72px 0;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -40%;
            right: -10%;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: rgba(184,147,90,0.08);
            pointer-events: none;
        }
        .cta-section .container {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .cta-section h2 {
            color: #fff;
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }
        @media (min-width: 768px) {
            .cta-section h2 {
                font-size: 34px;
            }
        }
        .cta-section p {
            color: var(--footer-text);
            font-size: 16px;
            max-width: 560px;
            margin: 0 auto 28px;
            line-height: 1.8;
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--primary);
            color: var(--footer-text);
            padding: 64px 0 28px;
            font-size: 14px;
        }
        .site-footer a {
            color: var(--footer-text);
            transition: color 0.25s ease;
        }
        .site-footer a:hover {
            color: var(--accent);
        }
        .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .footer-logo:hover {
            color: var(--accent);
        }
        .footer-logo .footer-logo-icon {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .footer-about {
            font-size: 14px;
            line-height: 1.8;
            color: var(--footer-text);
            max-width: 320px;
            margin-bottom: 0;
        }
        .site-footer h5 {
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            margin-bottom: 16px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            font-size: 14px;
        }
        .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-contact li {
            margin-bottom: 10px;
            display: flex;
            align-items: flex-start;
            gap: 8px;
        }
        .footer-contact i {
            color: var(--accent);
            font-size: 16px;
            flex-shrink: 0;
            margin-top: 3px;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255,255,255,0.1);
            margin-top: 48px;
            padding-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: rgba(255,255,255,0.5);
        }
        .footer-bottom .copyright {
            font-size: 13px;
            color: var(--footer-text);
        }
        .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            font-size: 12px;
            color: rgba(255,255,255,0.5);
        }
        .footer-bottom-links a {
            color: rgba(255,255,255,0.6);
        }
        .footer-bottom-links a:hover {
            color: var(--accent);
        }
        .footer-bottom .divider {
            color: rgba(255,255,255,0.3);
        }

        /* ========== 响应式微调 ========== */
        @media (max-width: 575px) {
            .navbar-brand {
                font-size: 17px;
            }
            .nav-search-form {
                display: none;
            }
            .btn-primary-custom.btn-sm {
                padding: 8px 14px;
                font-size: 13px;
                min-height: 36px;
            }
            .category-hero {
                min-height: 50vh;
                padding: 40px 0 32px;
            }
            .category-hero h1 {
                font-size: 26px;
            }
            .section-title {
                font-size: 24px;
            }
            .value-lead .highlight-num {
                font-size: 34px;
            }
            .stat-item .stat-num {
                font-size: 30px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 8px;
            }
            .footer-bottom-links {
                justify-content: center;
            }
        }

/* roulang page: category7 */
:root {
            --primary: #2B2620;
            --accent: #B8935A;
            --accent-hover: #A07F48;
            --accent-soft: rgba(184, 147, 90, 0.12);
            --bg: #FAF7F2;
            --card-bg: #FFFFFF;
            --card-bg-alt: #F5F1EA;
            --text-primary: #1F1D19;
            --text-secondary: #6E675E;
            --border: #E5DFD5;
            --highlight: #8C6D3F;
            --testimonial-bg: #F2EDE5;
            --footer-text: #D5CFC5;
            --radius-card: 8px;
            --radius-btn: 6px;
            --radius-tag: 4px;
            --shadow-sm: 0 1px 4px rgba(0,0,0,0.04);
            --shadow-hover: 0 4px 20px rgba(0,0,0,0.08);
            --focus-ring: 0 0 0 4px rgba(184, 147, 90, 0.3);
            --font-stack: "Noto Sans SC", "PingFang SC", "Microsoft YaHei", -apple-system, sans-serif;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--font-stack);
            font-size: 16px;
            line-height: 1.85;
            color: var(--text-primary);
            background-color: var(--bg);
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--accent);
            text-decoration: none;
            transition: color 0.25s ease;
        }
        a:hover {
            color: var(--accent-hover);
        }
        a:focus-visible,
        button:focus-visible,
        input:focus-visible,
        textarea:focus-visible,
        .btn:focus-visible {
            outline: none;
            box-shadow: var(--focus-ring);
            border-radius: var(--radius-btn);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1140px;
            width: 100%;
            margin-left: auto;
            margin-right: auto;
            padding-left: 24px;
            padding-right: 24px;
        }
        @media (min-width: 992px) {
            .container {
                padding-left: 32px;
                padding-right: 32px;
            }
        }
        @media (max-width: 575px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* ========== 顶部导航 ========== */
        .site-header {
            background: #FFFFFF;
            border-bottom: 1px solid var(--border);
            position: sticky;
            top: 0;
            z-index: 1030;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease;
        }
        .site-header.scrolled {
            box-shadow: 0 4px 16px rgba(0,0,0,0.08);
        }
        .site-header .navbar {
            padding-top: 12px;
            padding-bottom: 12px;
        }
        .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: var(--text-primary);
            letter-spacing: -0.2px;
            white-space: nowrap;
        }
        .navbar-brand:hover {
            color: var(--accent);
        }
        .navbar-brand .brand-icon {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .navbar .nav-link {
            color: var(--text-primary);
            font-weight: 500;
            font-size: 15px;
            padding-left: 14px;
            padding-right: 14px;
            position: relative;
            transition: color 0.25s ease;
            white-space: nowrap;
        }
        .navbar .nav-link::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 14px;
            right: 100%;
            height: 2px;
            background-color: var(--accent);
            transition: right 0.3s ease;
        }
        .navbar .nav-link:hover {
            color: var(--accent);
        }
        .navbar .nav-link:hover::after,
        .navbar .nav-link.active::after {
            right: 14px;
        }
        .navbar .nav-link.active {
            color: var(--accent);
            font-weight: 600;
        }
        .nav-search-form {
            display: flex;
            align-items: center;
            gap: 6px;
            border: 1px solid var(--border);
            border-radius: 50px;
            padding: 5px 6px 5px 14px;
            background: #fff;
            transition: border-color 0.25s ease;
            margin-right: 10px;
        }
        .nav-search-form:focus-within {
            border-color: var(--accent);
            box-shadow: 0 0 0 3px rgba(184,147,90,0.12);
        }
        .nav-search-form input {
            border: none;
            outline: none;
            background: transparent;
            font-size: 14px;
            color: var(--text-primary);
            width: 130px;
        }
        .nav-search-form input::placeholder {
            color: var(--text-secondary);
            font-size: 13px;
        }
        .nav-search-form .search-btn {
            width: 34px;
            height: 34px;
            border-radius: 50%;
            border: none;
            background: var(--accent-soft);
            color: var(--accent);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background 0.25s ease, color 0.25s ease;
            font-size: 15px;
        }
        .nav-search-form .search-btn:hover {
            background: var(--accent);
            color: #fff;
        }
        .btn-primary-custom {
            background-color: var(--accent);
            color: #FFFFFF;
            border: none;
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.25s ease, transform 0.2s ease, box-shadow 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
            text-decoration: none;
        }
        .btn-primary-custom:hover {
            background-color: var(--accent-hover);
            color: #FFFFFF;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(0,0,0,0.15);
        }
        .btn-outline-custom {
            background: transparent;
            color: var(--accent);
            border: 1px solid var(--accent);
            border-radius: var(--radius-btn);
            padding: 11px 24px;
            font-weight: 600;
            font-size: 15px;
            min-height: 44px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            transition: background-color 0.25s ease, color 0.25s ease, transform 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
            text-decoration: none;
        }
        .btn-outline-custom:hover {
            background-color: var(--accent);
            color: #FFFFFF;
            transform: translateY(-2px);
        }
        .navbar-toggler {
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            padding: 8px 12px;
        }
        .navbar-toggler:focus {
            box-shadow: var(--focus-ring);
        }
        @media (max-width: 1199px) {
            .navbar .nav-link {
                padding-left: 10px;
                padding-right: 10px;
                font-size: 14px;
            }
            .nav-search-form input {
                width: 100px;
            }
        }
        @media (max-width: 991px) {
            .navbar-collapse {
                background: #FFFFFF;
                border-radius: 0 0 var(--radius-card) var(--radius-card);
                padding: 16px 20px;
                margin-top: 12px;
                box-shadow: var(--shadow-hover);
            }
            .navbar-nav {
                gap: 4px;
            }
            .navbar .nav-link {
                padding: 10px 12px;
                font-size: 15px;
            }
            .navbar .nav-link::after {
                display: none;
            }
            .nav-search-form {
                margin-top: 12px;
                margin-right: 0;
                width: 100%;
            }
            .nav-search-form input {
                width: auto;
                flex: 1;
            }
            .btn-primary-custom.btn-sm {
                margin-top: 12px;
                width: 100%;
            }
        }

        /* ========== 分类页 Hero（半高） ========== */
        .category-hero {
            position: relative;
            min-height: 46vh;
            background: url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
            display: flex;
            align-items: center;
            padding: 72px 0 56px;
            margin-bottom: 0;
        }
        .category-hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(43,38,32,0.82) 0%, rgba(43,38,32,0.55) 50%, rgba(43,38,32,0.72) 100%);
            z-index: 1;
        }
        .category-hero .container {
            position: relative;
            z-index: 2;
        }
        .category-hero .breadcrumb-custom {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: rgba(255,255,255,0.75);
            margin-bottom: 20px;
            flex-wrap: wrap;
        }
        .category-hero .breadcrumb-custom a {
            color: rgba(255,255,255,0.75);
            transition: color 0.25s ease;
        }
        .category-hero .breadcrumb-custom a:hover {
            color: var(--accent);
        }
        .category-hero .breadcrumb-custom .separator {
            color: rgba(255,255,255,0.4);
            font-size: 12px;
        }
        .category-hero .breadcrumb-custom .current {
            color: var(--accent);
            font-weight: 500;
        }
        .category-hero h1 {
            color: #FFFFFF;
            font-size: 42px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.25;
            margin-bottom: 16px;
        }
        .category-hero .hero-desc {
            color: rgba(255,255,255,0.82);
            font-size: 16px;
            line-height: 1.8;
            max-width: 620px;
        }
        @media (max-width: 767px) {
            .category-hero {
                min-height: 40vh;
                padding: 48px 0 40px;
            }
            .category-hero h1 {
                font-size: 28px;
            }
            .category-hero .hero-desc {
                font-size: 14px;
            }
        }

        /* ========== 头条报道（混合布局：上大图头条） ========== */
        .featured-article-section {
            padding: 72px 0 56px;
            background: var(--bg);
        }
        .featured-article-card {
            background: var(--card-bg);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 0;
        }
        .featured-article-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .featured-article-card .article-image-wrapper {
            position: relative;
            min-height: 320px;
            overflow: hidden;
        }
        .featured-article-card .article-image-wrapper img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .featured-article-card:hover .article-image-wrapper img {
            transform: scale(1.05);
        }
        .featured-article-card .article-image-wrapper .featured-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: var(--accent);
            color: #fff;
            font-size: 13px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: var(--radius-tag);
            letter-spacing: 0.5px;
        }
        .featured-article-card .article-content {
            padding: 32px 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .featured-article-card .article-date {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 10px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .featured-article-card .article-title {
            font-size: 26px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.4;
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }
        .featured-article-card .article-summary {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .featured-article-card .read-more-link {
            color: var(--accent);
            font-weight: 600;
            font-size: 15px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.25s ease, color 0.25s ease;
        }
        .featured-article-card .read-more-link:hover {
            color: var(--accent-hover);
            gap: 10px;
        }
        .featured-article-card .read-more-link i {
            font-size: 14px;
            transition: transform 0.25s ease;
        }
        .featured-article-card .read-more-link:hover i {
            transform: translateX(4px);
        }
        @media (max-width: 991px) {
            .featured-article-card {
                grid-template-columns: 1fr;
            }
            .featured-article-card .article-image-wrapper {
                min-height: 240px;
            }
            .featured-article-card .article-content {
                padding: 24px 24px 28px;
            }
            .featured-article-card .article-title {
                font-size: 21px;
            }
        }
        @media (max-width: 575px) {
            .featured-article-card .article-image-wrapper {
                min-height: 180px;
            }
            .featured-article-card .article-content {
                padding: 18px 18px 22px;
            }
        }

        /* ========== 2×2 卡片区 ========== */
        .article-grid-section {
            padding: 0 0 72px;
            background: var(--bg);
        }
        .article-grid-section .section-heading {
            margin-bottom: 32px;
        }
        .article-grid-section .section-heading h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .article-grid-section .section-heading p {
            font-size: 15px;
            color: var(--text-secondary);
            margin: 0;
        }
        .grid-card-wrapper {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
        }
        .grid-card {
            background: var(--card-bg);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .grid-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .grid-card .grid-card-image {
            position: relative;
            min-height: 180px;
            overflow: hidden;
        }
        .grid-card .grid-card-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .grid-card:hover .grid-card-image img {
            transform: scale(1.05);
        }
        .grid-card .grid-card-image .media-tag {
            position: absolute;
            bottom: 12px;
            left: 12px;
            background: rgba(43,38,32,0.8);
            color: #fff;
            font-size: 12px;
            font-weight: 500;
            padding: 4px 10px;
            border-radius: var(--radius-tag);
            letter-spacing: 0.3px;
        }
        .grid-card .grid-card-body {
            padding: 22px 24px 24px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .grid-card .grid-card-date {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 8px;
        }
        .grid-card .grid-card-title {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            line-height: 1.45;
            margin-bottom: 10px;
            letter-spacing: -0.2px;
        }
        .grid-card .grid-card-summary {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
            flex: 1;
        }
        .grid-card .grid-card-link {
            color: var(--accent);
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: gap 0.25s ease, color 0.25s ease;
        }
        .grid-card .grid-card-link:hover {
            color: var(--accent-hover);
            gap: 10px;
        }
        .grid-card .grid-card-link i {
            font-size: 13px;
            transition: transform 0.25s ease;
        }
        .grid-card .grid-card-link:hover i {
            transform: translateX(4px);
        }
        @media (max-width: 767px) {
            .grid-card-wrapper {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .grid-card .grid-card-image {
                min-height: 160px;
            }
            .grid-card .grid-card-body {
                padding: 18px 18px 20px;
            }
            .grid-card .grid-card-title {
                font-size: 16px;
            }
        }

        /* ========== 数据统计带 ========== */
        .media-stats-section {
            background: var(--primary);
            padding: 64px 0;
            color: #FFFFFF;
        }
        .media-stats-section .stats-row {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 32px;
        }
        .media-stats-section .stat-item {
            text-align: center;
            padding: 12px;
        }
        .media-stats-section .stat-number {
            font-size: 42px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
            margin-bottom: 8px;
            letter-spacing: -1px;
        }
        .media-stats-section .stat-label {
            font-size: 14px;
            color: var(--footer-text);
            letter-spacing: 0.5px;
        }
        @media (max-width: 767px) {
            .media-stats-section {
                padding: 40px 0;
            }
            .media-stats-section .stats-row {
                grid-template-columns: repeat(2, 1fr);
                gap: 20px;
            }
            .media-stats-section .stat-number {
                font-size: 32px;
            }
        }
        @media (max-width: 480px) {
            .media-stats-section .stats-row {
                grid-template-columns: 1fr;
            }
        }

        /* ========== 媒体合作流程 ========== */
        .media-process-section {
            padding: 72px 0;
            background: var(--card-bg-alt);
        }
        .media-process-section .section-heading {
            margin-bottom: 40px;
        }
        .media-process-section .section-heading h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 10px;
            letter-spacing: -0.3px;
        }
        .media-process-section .section-heading p {
            font-size: 15px;
            color: var(--text-secondary);
            max-width: 650px;
            margin: 0;
        }
        .process-steps {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .process-step {
            background: var(--card-bg);
            border-radius: var(--radius-card);
            border: 1px solid var(--border);
            padding: 28px 24px;
            box-shadow: var(--shadow-sm);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
            position: relative;
        }
        .process-step:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-4px);
        }
        .process-step .step-number {
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 18px;
            margin-bottom: 16px;
            flex-shrink: 0;
        }
        .process-step h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-primary);
            margin-bottom: 10px;
            letter-spacing: -0.2px;
        }
        .process-step p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin: 0;
        }
        @media (max-width: 767px) {
            .media-process-section {
                padding: 48px 0;
            }
            .process-steps {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .process-step {
                padding: 22px 20px;
            }
        }

        /* ========== 新闻素材资源区 ========== */
        .media-resources-section {
            padding: 72px 0;
            background: var(--bg);
        }
        .media-resources-section .resources-wrapper {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: center;
        }
        .media-resources-section .resources-text h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 16px;
            letter-spacing: -0.3px;
        }
        .media-resources-section .resources-text p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.8;
            margin-bottom: 20px;
        }
        .media-resources-section .resource-list {
            list-style: none;
            padding: 0;
            margin: 0 0 24px;
        }
        .media-resources-section .resource-list li {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            font-size: 15px;
            color: var(--text-primary);
            padding: 10px 0;
            border-bottom: 1px solid var(--border);
        }
        .media-resources-section .resource-list li:last-child {
            border-bottom: none;
        }
        .media-resources-section .resource-list li i {
            color: var(--accent);
            font-size: 18px;
            margin-top: 4px;
            flex-shrink: 0;
        }
        .media-resources-section .resources-image {
            border-radius: var(--radius-card);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-sm);
        }
        .media-resources-section .resources-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            min-height: 300px;
        }
        @media (max-width: 767px) {
            .media-resources-section {
                padding: 48px 0;
            }
            .media-resources-section .resources-wrapper {
                grid-template-columns: 1fr;
                gap: 24px;
            }
            .media-resources-section .resources-image img {
                min-height: 200px;
            }
        }

        /* ========== FAQ ========== */
        .faq-section {
            padding: 72px 0;
            background: var(--card-bg-alt);
        }
        .faq-section .section-heading {
            margin-bottom: 32px;
        }
        .faq-section .section-heading h2 {
            font-size: 28px;
            font-weight: 700;
            color: var(--text-primary);
            line-height: 1.3;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .faq-section .section-heading p {
            font-size: 15px;
            color: var(--text-secondary);
            margin: 0;
        }
        .accordion-custom .accordion-item {
            background: var(--card-bg);
            border: 1px solid var(--border);
            border-radius: var(--radius-card) !important;
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color 0.25s ease;
        }
        .accordion-custom .accordion-item:last-child {
            margin-bottom: 0;
        }
        .accordion-custom .accordion-item:focus-within {
            border-color: var(--accent);
        }
        .accordion-custom .accordion-button {
            background: var(--card-bg);
            color: var(--text-primary);
            font-weight: 600;
            font-size: 15px;
            padding: 18px 24px;
            border: none;
            box-shadow: none;
            border-radius: var(--radius-card) !important;
            transition: background 0.25s ease, color 0.25s ease;
        }
        .accordion-custom .accordion-button:not(.collapsed) {
            background: var(--accent-soft);
            color: var(--accent);
            box-shadow: none;
        }
        .accordion-custom .accordion-button:focus {
            box-shadow: none;
            border: none;
        }
        .accordion-custom .accordion-button::after {
            filter: invert(1) sepia(1) saturate(3) hue-rotate(10deg);
        }
        .accordion-custom .accordion-body {
            background: var(--card-bg);
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.75;
            padding: 4px 24px 20px;
        }
        @media (max-width: 767px) {
            .faq-section {
                padding: 48px 0;
            }
            .accordion-custom .accordion-button {
                font-size: 14px;
                padding: 16px 18px;
            }
            .accordion-custom .accordion-body {
                padding: 4px 18px 18px;
            }
        }

        /* ========== CTA ========== */
        .cta-section {
            background: var(--primary);
            padding: 64px 0;
            color: #FFFFFF;
            text-align: center;
        }
        .cta-section .cta-inner {
            max-width: 650px;
            margin: 0 auto;
        }
        .cta-section h2 {
            font-size: 30px;
            font-weight: 700;
            color: #FFFFFF;
            line-height: 1.35;
            margin-bottom: 14px;
            letter-spacing: -0.3px;
        }
        .cta-section p {
            font-size: 16px;
            color: rgba(255,255,255,0.75);
            line-height: 1.8;
            margin-bottom: 28px;
        }
        .cta-section .btn-primary-custom {
            font-size: 16px;
            padding: 14px 36px;
        }
        @media (max-width: 767px) {
            .cta-section {
                padding: 48px 0;
            }
            .cta-section h2 {
                font-size: 24px;
            }
            .cta-section p {
                font-size: 14px;
            }
        }

        /* ========== 页脚 ========== */
        .site-footer {
            background: var(--primary);
            color: var(--footer-text);
            padding: 56px 0 0;
            border-top: 1px solid rgba(255,255,255,0.08);
        }
        .site-footer .footer-top {
            padding-bottom: 36px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
        }
        .site-footer .footer-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 20px;
            color: #FFFFFF;
            margin-bottom: 16px;
            text-decoration: none;
        }
        .site-footer .footer-logo:hover {
            color: var(--accent);
        }
        .site-footer .footer-logo .footer-logo-icon {
            width: 34px;
            height: 34px;
            border-radius: 6px;
            background: var(--accent);
            color: #fff;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .site-footer .footer-about {
            font-size: 14px;
            color: var(--footer-text);
            line-height: 1.75;
            margin-bottom: 20px;
        }
        .site-footer h5 {
            color: #FFFFFF;
            font-size: 15px;
            font-weight: 600;
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }
        .site-footer .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-links li {
            margin-bottom: 10px;
        }
        .site-footer .footer-links a {
            color: var(--footer-text);
            font-size: 14px;
            transition: color 0.25s ease;
            text-decoration: none;
        }
        .site-footer .footer-links a:hover {
            color: var(--accent);
        }
        .site-footer .footer-contact {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .site-footer .footer-contact li {
            margin-bottom: 10px;
            font-size: 14px;
            color: var(--footer-text);
            display: flex;
            align-items: flex-start;
            gap: 8px;
            line-height: 1.6;
        }
        .site-footer .footer-contact li i {
            color: var(--accent);
            font-size: 16px;
            margin-top: 3px;
            flex-shrink: 0;
        }
        .site-footer .footer-bottom {
            padding: 20px 0;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            font-size: 13px;
            color: var(--footer-text);
        }
        .site-footer .footer-bottom .copyright {
            font-size: 13px;
        }
        .site-footer .footer-bottom-links {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 16px;
            font-size: 13px;
        }
        .site-footer .footer-bottom-links a {
            color: var(--footer-text);
            font-size: 13px;
            text-decoration: none;
            transition: color 0.25s ease;
        }
        .site-footer .footer-bottom-links a:hover {
            color: var(--accent);
        }
        .site-footer .footer-bottom-links .separator {
            color: rgba(255,255,255,0.25);
        }
        @media (max-width: 767px) {
            .site-footer {
                padding: 40px 0 0;
            }
            .site-footer .footer-top {
                padding-bottom: 24px;
            }
            .site-footer .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .site-footer .footer-bottom-links {
                justify-content: center;
            }
        }
