/* roulang page: index */
/* ===== 设计变量 ===== */
        :root {
            --primary: #A9714B;
            --primary-dark: #8B5838;
            --primary-deep: #6E4028;
            --primary-light: rgba(169, 113, 75, .10);
            --primary-border: rgba(169, 113, 75, .18);
            --accent: #C9923A;
            --accent-light: rgba(201, 146, 58, .14);
            --accent-dark: #B07F2F;
            --green: #6B8E72;
            --green-light: rgba(107, 142, 114, .14);
            --green-dark: #55755C;
            --bg: #FAF6F0;
            --bg-alt: #F0EAE2;
            --bg-card: #FFFFFF;
            --bg-deep: #2F2A26;
            --text: #2F2A26;
            --text-light: #7A6F66;
            --text-soft: #9C8E82;
            --radius: 18px;
            --radius-lg: 24px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-pill: 999px;
            --shadow: 0 10px 30px rgba(136, 96, 62, .08);
            --shadow-hover: 0 16px 44px rgba(136, 96, 62, .16);
            --shadow-nav: 0 8px 32px rgba(136, 96, 62, .12);
            --border: 1px solid var(--primary-border);
            --transition: all .3s ease;
            --font-sans: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", sans-serif;
            --container-w: 1200px;
            --section-pad: 84px;
        }

        /* ===== Reset & Base ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            scroll-padding-top: 90px;
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container {
            max-width: var(--container-w);
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ===== 导航 ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            padding: 14px 24px;
            transition: var(--transition);
        }

        .site-header.scrolled {
            padding: 8px 24px;
        }

        .header-inner {
            max-width: calc(var(--container-w) + 40px);
            margin: 0 auto;
            background: rgba(250, 246, 240, .82);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(169, 113, 75, .18);
            border-radius: 22px;
            padding: 10px 22px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: space-between;
        }

        .site-header.scrolled .header-inner {
            box-shadow: var(--shadow-nav);
            padding-top: 6px;
            padding-bottom: 6px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-light);
            border: 1px solid var(--primary-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 18px;
            flex-shrink: 0;
        }

        .brand-text {
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: .5px;
            white-space: nowrap;
        }

        .brand-text span {
            color: var(--primary);
            font-weight: 600;
            font-size: 13px;
            display: block;
            line-height: 1.3;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .main-nav a {
            color: var(--text);
            font-size: 15px;
            font-weight: 500;
            position: relative;
            padding: 4px 2px;
            transition: var(--transition);
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 4px;
            transition: var(--transition);
        }

        .main-nav a:hover {
            color: var(--primary);
        }

        .main-nav a:hover::after {
            width: 100%;
        }

        .main-nav a.active {
            color: var(--primary);
        }

        .main-nav a.active::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--accent) !important;
            color: #fff !important;
            padding: 8px 22px !important;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 14px !important;
            transition: var(--transition);
            box-shadow: 0 4px 14px rgba(201, 146, 58, .3);
            border: none !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--accent-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(201, 146, 58, .4);
            color: #fff !important;
        }

        .nav-toggle {
            display: none;
            background: none;
            border: none;
            font-size: 22px;
            color: var(--text);
            cursor: pointer;
            padding: 4px 8px;
            border-radius: 8px;
            transition: var(--transition);
        }

        .nav-toggle:hover {
            background: var(--primary-light);
        }

        .mobile-menu {
            display: none;
            max-width: calc(var(--container-w) + 40px);
            margin: 10px auto 0;
            background: var(--bg);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 16px;
            flex-direction: column;
            gap: 4px;
        }

        .mobile-menu.open {
            display: flex;
        }

        .mobile-menu a {
            padding: 10px 14px;
            border-radius: var(--radius-md);
            color: var(--text);
            font-size: 15px;
            transition: var(--transition);
        }

        .mobile-menu a:hover {
            background: var(--primary-light);
            color: var(--primary);
        }

        /* ===== Hero ===== */
        .hero {
            padding-top: 130px;
            padding-bottom: 80px;
            background: linear-gradient(120deg, rgba(169, 113, 75, .06) 0%, rgba(250, 246, 240, .98) 45%, rgba(250, 246, 240, 1) 100%), url('/assets/images/backpic/back-1.jpg') center/cover no-repeat;
            position: relative;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 146, 58, .08) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .hero-wrap {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            gap: 48px;
        }

        .hero-content {
            flex: 0 0 42%;
            max-width: 42%;
            padding-left: 8px;
        }

        .hero-kicker {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary-light);
            border: 1px solid var(--primary-border);
            color: var(--primary);
            font-size: 13px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: var(--radius-pill);
            margin-bottom: 20px;
            letter-spacing: .5px;
        }

        .hero h1 {
            font-size: clamp(1.9rem, 4vw, 2.7rem);
            font-weight: 700;
            line-height: 1.35;
            color: var(--text);
            margin-bottom: 20px;
        }

        .hero h1 .highlight {
            color: var(--primary);
            position: relative;
        }

        .hero-sub {
            font-size: 16px;
            color: var(--text-light);
            line-height: 1.8;
            margin-bottom: 28px;
        }

        .hero-btns {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }

        .btn-main {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #fff;
            font-size: 15px;
            font-weight: 600;
            padding: 12px 30px;
            border-radius: var(--radius-pill);
            border: none;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(201, 146, 58, .3);
        }

        .btn-main:hover {
            background: var(--accent-dark);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 146, 58, .42);
        }

        .btn-main:active {
            transform: translateY(-1px) scale(.98);
        }

        .btn-main:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 3px;
        }

        .btn-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: transparent;
            color: var(--primary);
            font-size: 15px;
            font-weight: 600;
            padding: 12px 28px;
            border-radius: var(--radius-pill);
            border: 1.5px solid var(--primary);
            cursor: pointer;
            transition: var(--transition);
        }

        .btn-outline:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
            transform: translateY(-3px);
            box-shadow: var(--shadow);
        }

        .btn-outline:active {
            transform: translateY(-1px) scale(.98);
        }

        .btn-outline:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 3px;
        }

        .hero-kpis {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .hero-kpi {
            background: rgba(255, 255, 255, .7);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-md);
            padding: 8px 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: var(--text);
            font-weight: 500;
            -webkit-backdrop-filter: blur(6px);
            backdrop-filter: blur(6px);
        }

        .hero-kpi i {
            color: var(--green);
        }

        .hero-visual {
            flex: 0 0 58%;
            max-width: 58%;
            position: relative;
            padding-right: 10px;
        }

        .hero-img-wrap {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: visible;
            transform: rotate(1.2deg);
            box-shadow: var(--shadow-hover);
            border: 4px solid #fff;
            max-height: 480px;
        }

        .hero-img-wrap::after {
            content: '';
            position: absolute;
            top: -12px;
            right: -12px;
            width: 65%;
            height: 65%;
            border: 2px solid rgba(201, 146, 58, .3);
            border-radius: var(--radius-lg);
            z-index: -1;
            transform: rotate(-1.5deg);
        }

        .hero-img-wrap img {
            width: 100%;
            height: 440px;
            object-fit: cover;
            border-radius: var(--radius-lg);
        }

        .hero-badge {
            position: absolute;
            bottom: -18px;
            left: -14px;
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-md);
            box-shadow: var(--shadow);
            padding: 12px 18px;
            display: flex;
            align-items: center;
            gap: 10px;
            transform: rotate(-2deg);
        }

        .hero-badge i {
            color: var(--accent);
            font-size: 22px;
        }

        .hero-badge .badge-title {
            font-weight: 700;
            font-size: 14px;
            color: var(--text);
            line-height: 1.3;
        }

        .hero-badge .badge-sub {
            font-size: 12px;
            color: var(--text-light);
            line-height: 1.3;
        }

        /* ===== 通用板块 ===== */
        .section {
            padding: var(--section-pad) 0;
        }

        .section-alt {
            background: var(--bg-alt);
        }

        .section-deep {
            background: var(--bg-deep);
            color: #E8DED4;
        }

        .section-head {
            margin-bottom: 48px;
        }

        .section-head .sec-tag {
            display: inline-block;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: 1.5px;
            text-transform: uppercase;
            color: var(--primary);
            background: var(--primary-light);
            padding: 4px 16px;
            border-radius: var(--radius-pill);
            margin-bottom: 12px;
        }

        .section-head h2 {
            font-size: clamp(1.6rem, 3vw, 2.1rem);
            font-weight: 700;
            color: var(--text);
            line-height: 1.35;
            margin-bottom: 10px;
        }

        .section-deep .section-head h2 {
            color: #F5EDE3;
        }

        .section-head p {
            font-size: 15px;
            color: var(--text-light);
            max-width: 600px;
            line-height: 1.7;
        }

        .section-deep .section-head p {
            color: #B8AA9B;
        }

        /* ===== 卖点三连 ===== */
        .feature-cards {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .feature-card {
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            padding: 32px 26px;
            transition: var(--transition);
            box-shadow: var(--shadow);
            position: relative;
            overflow: hidden;
        }

        .feature-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--primary));
            opacity: 0;
            transition: var(--transition);
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-hover);
        }

        .feature-card:hover::before {
            opacity: 1;
        }

        .feature-icon {
            width: 52px;
            height: 52px;
            border-radius: 14px;
            background: var(--primary-light);
            border: 1px solid var(--primary-border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--primary);
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 19px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 12px;
        }

        .feature-card p {
            font-size: 14.5px;
            color: var(--text-light);
            line-height: 1.7;
            margin-bottom: 18px;
        }

        .feature-link {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 6px;
            transition: var(--transition);
        }

        .feature-link:hover {
            color: var(--primary-dark);
            gap: 10px;
        }

        /* ===== 预约流程 ===== */
        .steps-wrap {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            position: relative;
        }

        .step-item {
            text-align: center;
            position: relative;
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            padding: 28px 18px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .step-item:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .step-num {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--accent);
            color: #fff;
            font-weight: 700;
            font-size: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 16px;
            box-shadow: 0 4px 12px rgba(201, 146, 58, .3);
        }

        .step-icon {
            font-size: 24px;
            color: var(--primary);
            margin-bottom: 14px;
        }

        .step-item h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .step-item p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
        }

        .step-arrow {
            position: absolute;
            top: 50%;
            right: -18px;
            transform: translateY(-50%);
            color: var(--primary-border);
            font-size: 20px;
            z-index: 3;
            background: var(--bg-alt);
            border-radius: 50%;
            width: 30px;
            height: 30px;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        /* ===== 茶友口碑 ===== */
        .review-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .review-card {
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            padding: 28px 26px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            flex-direction: column;
        }

        .review-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .review-stars {
            color: var(--accent);
            font-size: 15px;
            margin-bottom: 14px;
            letter-spacing: 2px;
        }

        .review-text {
            font-size: 15px;
            color: var(--text);
            line-height: 1.75;
            flex: 1;
            margin-bottom: 18px;
            font-style: italic;
        }

        .review-user {
            display: flex;
            align-items: center;
            gap: 10px;
            border-top: 1px solid rgba(169, 113, 75, .1);
            padding-top: 14px;
        }

        .review-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 14px;
        }

        .review-name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
        }

        .review-tag {
            font-size: 12px;
            color: var(--green);
            background: var(--green-light);
            padding: 2px 10px;
            border-radius: var(--radius-pill);
            margin-left: auto;
        }

        /* ===== 保障图标条 ===== */
        .assurance-bar {
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
            padding: 32px 36px;
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }

        .assure-item {
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .assure-icon {
            min-width: 46px;
            width: 46px;
            height: 46px;
            border-radius: 12px;
            background: var(--primary-light);
            color: var(--primary);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
        }

        .assure-item h5 {
            font-size: 15px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 2px;
        }

        .assure-item p {
            font-size: 13px;
            color: var(--text-light);
            line-height: 1.4;
            margin: 0;
        }

        /* ===== 资讯列表 ===== */
        .news-layout {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 40px;
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .news-item {
            display: flex;
            gap: 20px;
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            padding: 18px;
            box-shadow: var(--shadow);
            transition: var(--transition);
        }

        .news-item:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-3px);
        }

        .news-thumb {
            width: 150px;
            min-width: 150px;
            height: 96px;
            border-radius: var(--radius-md);
            overflow: hidden;
            background: var(--bg-alt);
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }

        .news-item:hover .news-thumb img {
            transform: scale(1.05);
        }

        .news-thumb-placeholder {
            width: 100%;
            height: 100%;
            display: flex;
            align-items: center;
            justify-content: center;
            background: var(--bg-alt);
            color: var(--primary);
            font-size: 30px;
        }

        .news-info {
            flex: 1;
            min-width: 0;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 6px;
        }

        .badge-cat {
            background: var(--green);
            color: #fff;
            padding: 2px 12px;
            border-radius: var(--radius-pill);
            font-size: 12px;
            font-weight: 600;
        }

        .news-date {
            font-size: 13px;
            color: var(--text-light);
        }

        .news-info h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            line-height: 1.5;
            margin-bottom: 6px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-info h3 a {
            color: var(--text);
            transition: var(--transition);
        }

        .news-info h3 a:hover {
            color: var(--primary);
        }

        .news-info p {
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 8px;
        }

        .news-more {
            font-size: 13px;
            font-weight: 600;
            color: var(--primary);
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }

        .news-more:hover {
            gap: 7px;
            color: var(--primary-dark);
        }

        .news-empty {
            background: var(--bg-card);
            border: 1px dashed var(--primary-border);
            border-radius: var(--radius-lg);
            padding: 60px 20px;
            text-align: center;
            color: var(--text-light);
        }

        .news-empty i {
            font-size: 44px;
            color: var(--primary-border);
            margin-bottom: 14px;
            display: block;
        }

        .news-empty p {
            font-size: 15px;
            font-weight: 500;
        }

        .news-sidebar {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }

        .side-card {
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            padding: 24px;
            box-shadow: var(--shadow);
        }

        .side-card h4 {
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 16px;
            padding-bottom: 10px;
            border-bottom: 1px solid rgba(169, 113, 75, .1);
        }

        .side-link-list {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .side-link-list li a {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 14px;
            color: var(--text);
            padding: 6px 0;
            transition: var(--transition);
        }

        .side-link-list li a i {
            font-size: 12px;
            color: var(--primary);
            width: 16px;
            text-align: center;
        }

        .side-link-list li a:hover {
            color: var(--primary);
            padding-left: 4px;
        }

        .side-badge-box {
            background: linear-gradient(135deg, var(--primary-light), rgba(201, 146, 58, .12));
            border-radius: var(--radius-md);
            padding: 18px;
            text-align: center;
            border: 1px solid var(--primary-border);
        }

        .side-badge-box .num {
            font-size: 28px;
            font-weight: 700;
            color: var(--accent);
            line-height: 1.2;
        }

        .side-badge-box p {
            font-size: 13px;
            color: var(--text-light);
            margin: 6px 0 0;
        }

        /* ===== 内容日历 ===== */
        .calendar-list {
            display: flex;
            flex-direction: column;
            gap: 14px;
            max-width: 820px;
            margin: 0 auto;
        }

        .calendar-item {
            display: flex;
            align-items: center;
            gap: 20px;
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            padding: 20px 26px;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .calendar-item:hover {
            transform: translateX(6px);
            box-shadow: var(--shadow-hover);
            border-color: rgba(169, 113, 75, .3);
        }

        .calendar-date {
            min-width: 76px;
            text-align: center;
            background: var(--primary-light);
            border-radius: var(--radius-md);
            padding: 10px 8px;
            border: 1px solid var(--primary-border);
        }

        .calendar-date .day {
            font-size: 24px;
            font-weight: 700;
            color: var(--primary);
            line-height: 1.2;
        }

        .calendar-date .month {
            font-size: 12px;
            color: var(--text-light);
            text-transform: uppercase;
        }

        .calendar-content {
            flex: 1;
        }

        .calendar-content h4 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
        }

        .calendar-content p {
            font-size: 14px;
            color: var(--text-light);
            margin: 0;
        }

        .calendar-status {
            font-size: 13px;
            font-weight: 600;
            color: var(--green);
            background: var(--green-light);
            padding: 4px 14px;
            border-radius: var(--radius-pill);
            white-space: nowrap;
        }

        /* ===== 预约 + FAQ ===== */
        .booking-wrap {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: start;
        }

        .booking-card {
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            box-shadow: var(--shadow);
        }

        .booking-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .booking-card .booking-sub {
            font-size: 14px;
            color: var(--text-light);
            margin-bottom: 24px;
        }

        .form-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 6px;
        }

        .form-label .required {
            color: var(--accent);
            margin-left: 2px;
        }

        .form-control {
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-md);
            padding: 11px 16px;
            font-size: 14.5px;
            color: var(--text);
            background: var(--bg);
            transition: var(--transition);
        }

        .form-control:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(169, 113, 75, .15);
            background: #fff;
        }

        .form-select {
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-md);
            padding: 11px 16px;
            font-size: 14.5px;
            color: var(--text);
            background: var(--bg) url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' fill='%23A9714B'%3E%3Cpath d='M6 8L0 0h12z'/%3E%3C/svg%3E") no-repeat right 12px center / 12px;
            appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .form-select:focus {
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(169, 113, 75, .15);
            background-color: #fff;
        }

        .btn-submit {
            width: 100%;
            background: var(--accent);
            color: #fff;
            border: none;
            border-radius: var(--radius-pill);
            padding: 14px 30px;
            font-size: 16px;
            font-weight: 600;
            cursor: pointer;
            transition: var(--transition);
            box-shadow: 0 6px 20px rgba(201, 146, 58, .3);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
        }

        .btn-submit:hover {
            background: var(--accent-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 10px 28px rgba(201, 146, 58, .42);
        }

        .btn-submit:active {
            transform: translateY(0) scale(.98);
        }

        .booking-note {
            font-size: 13px;
            color: var(--text-light);
            text-align: center;
            margin-top: 14px;
        }

        .booking-note i {
            color: var(--green);
        }

        .form-success {
            display: none;
            text-align: center;
            padding: 30px 20px;
        }

        .form-success .success-icon {
            font-size: 48px;
            color: var(--green);
            margin-bottom: 14px;
        }

        .form-success h4 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .form-success p {
            font-size: 14px;
            color: var(--text-light);
        }

        .faq-card {
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            padding: 36px 32px;
            box-shadow: var(--shadow);
        }

        .faq-card h3 {
            font-size: 20px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 20px;
        }

        .accordion-item {
            background: transparent !important;
            border: none !important;
            border-bottom: 1px solid rgba(169, 113, 75, .1) !important;
        }

        .accordion-item:last-child {
            border-bottom: none !important;
        }

        .accordion-button {
            background: transparent !important;
            color: var(--text) !important;
            font-weight: 600;
            font-size: 15px;
            padding: 18px 8px;
            box-shadow: none !important;
            border-radius: 0 !important;
        }

        .accordion-button::after {
            background-image: none !important;
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            content: "\f067";
            color: var(--primary);
            width: 22px;
            height: 22px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 13px;
            transition: var(--transition);
        }

        .accordion-button:not(.collapsed)::after {
            content: "\f068";
            transform: none !important;
        }

        .accordion-button:not(.collapsed) {
            color: var(--primary) !important;
        }

        .accordion-body {
            color: var(--text-light);
            font-size: 14.5px;
            line-height: 1.75;
            padding: 0 8px 20px;
        }

        /* ===== CTA 区块 ===== */
        .cta-section {
            position: relative;
            background: url('/assets/images/backpic/back-2.jpg') center 45% fixed no-repeat;
            background-size: cover;
            border-radius: var(--radius-lg);
            overflow: hidden;
            padding: 70px 60px;
            text-align: center;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(47, 42, 38, .88) 0%, rgba(110, 64, 40, .78) 100%);
        }

        .cta-inner {
            position: relative;
            z-index: 2;
        }

        .cta-inner h2 {
            font-size: clamp(1.6rem, 3vw, 2.2rem);
            color: #F5EDE3;
            font-weight: 700;
            margin-bottom: 14px;
        }

        .cta-inner p {
            color: #D4C8BA;
            font-size: 15.5px;
            max-width: 560px;
            margin: 0 auto 30px;
            line-height: 1.7;
        }

        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent);
            color: #fff;
            font-size: 16px;
            font-weight: 600;
            padding: 14px 36px;
            border-radius: var(--radius-pill);
            border: none;
            transition: var(--transition);
            box-shadow: 0 6px 24px rgba(201, 146, 58, .4);
        }

        .cta-btn:hover {
            background: var(--accent-dark);
            color: #fff;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(201, 146, 58, .5);
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--bg-deep);
            color: #B8AA9B;
            padding: 60px 0 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1.4fr;
            gap: 40px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, .08);
        }

        .footer-brand .brand {
            margin-bottom: 14px;
        }

        .footer-brand .brand .brand-icon {
            background: rgba(255, 255, 255, .08);
            border-color: rgba(255, 255, 255, .1);
            color: #D4C8BA;
        }

        .footer-brand .brand .brand-text {
            color: #F5EDE3;
        }

        .footer-brand .brand .brand-text span {
            color: #B8AA9B;
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: #B8AA9B;
            max-width: 320px;
        }

        .footer-col h5 {
            font-size: 15px;
            font-weight: 700;
            color: #F5EDE3;
            margin-bottom: 18px;
            letter-spacing: .5px;
        }

        .footer-col ul {
            list-style: none;
            margin: 0;
            padding: 0;
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .footer-col ul a {
            color: #B8AA9B;
            font-size: 14px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-col ul a i {
            font-size: 12px;
            color: var(--primary);
        }

        .footer-col ul a:hover {
            color: #F5EDE3;
            padding-left: 4px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 14px;
            font-size: 14px;
            color: #B8AA9B;
            line-height: 1.6;
        }

        .footer-contact-item i {
            color: var(--accent);
            margin-top: 4px;
            width: 18px;
            text-align: center;
        }

        .footer-bottom {
            padding: 20px 0;
            text-align: center;
            font-size: 13px;
            color: #8C7E72;
        }

        .footer-bottom a {
            color: #8C7E72;
        }

        .footer-bottom a:hover {
            color: #D4C8BA;
        }

        /* ===== 底部固定转化条 ===== */
        .float-cta {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1040;
            background: rgba(47, 42, 38, .92);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding: 14px 24px;
            transform: translateY(100%);
            transition: transform .4s ease;
        }

        .float-cta.visible {
            transform: translateY(0);
        }

        .float-cta-inner {
            max-width: var(--container-w);
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .float-cta-text {
            color: #F5EDE3;
            font-size: 15px;
            font-weight: 500;
        }

        .float-cta-text span {
            color: var(--accent);
            font-weight: 700;
        }

        .float-cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent);
            color: #fff;
            border-radius: var(--radius-pill);
            padding: 10px 26px;
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
        }

        .float-cta-btn:hover {
            background: var(--accent-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(201, 146, 58, .4);
        }

        body {
            padding-bottom: 0;
        }

        .page-bottom-space {
            height: 64px;
        }

        /* ===== 响应式断点 ===== */
        @media (max-width: 1199.98px) {
            .hero-wrap {
                gap: 30px;
            }
            .hero-content {
                flex-basis: 44%;
                max-width: 44%;
            }
            .hero-visual {
                flex-basis: 56%;
                max-width: 56%;
            }
            .hero-img-wrap img {
                height: 400px;
            }
        }

        @media (max-width: 991.98px) {
            .section {
                padding: 60px 0;
            }

            .hero {
                padding-top: 120px;
                padding-bottom: 60px;
            }

            .hero-wrap {
                flex-direction: column;
                gap: 48px;
            }

            .hero-content,
            .hero-visual {
                flex: 0 0 100%;
                max-width: 100%;
                padding: 0;
            }

            .hero-img-wrap img {
                height: 360px;
            }

            .feature-cards {
                grid-template-columns: repeat(2, 1fr);
            }

            .feature-card:last-child {
                grid-column: span 2;
            }

            .steps-wrap {
                grid-template-columns: repeat(2, 1fr);
            }

            .step-arrow {
                display: none;
            }

            .review-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .assurance-bar {
                grid-template-columns: repeat(2, 1fr);
            }

            .news-layout {
                grid-template-columns: 1fr;
            }

            .news-sidebar {
                flex-direction: row;
                flex-wrap: wrap;
            }

            .news-sidebar .side-card {
                flex: 1;
                min-width: 260px;
            }

            .booking-wrap {
                grid-template-columns: 1fr;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 30px;
            }

            .footer-brand {
                grid-column: span 2;
            }

            .main-nav {
                display: none;
            }

            .nav-toggle {
                display: block;
            }

            .mobile-menu.open {
                display: flex;
            }

            .hero-kpis {
                flex-wrap: wrap;
            }
        }

        @media (max-width: 767.98px) {
            .section {
                padding: 48px 0;
            }

            .hero {
                padding-top: 110px;
                padding-bottom: 48px;
            }

            .hero h1 {
                font-size: 1.7rem;
            }

            .hero-sub {
                font-size: 15px;
            }

            .hero-img-wrap img {
                height: 260px;
            }

            .hero-badge {
                bottom: -12px;
                left: 8px;
                padding: 8px 14px;
            }

            .feature-cards {
                grid-template-columns: 1fr;
            }

            .feature-card:last-child {
                grid-column: auto;
            }

            .steps-wrap {
                grid-template-columns: 1fr;
            }

            .review-grid {
                grid-template-columns: 1fr;
            }

            .assurance-bar {
                grid-template-columns: 1fr 1fr;
                padding: 24px;
            }

            .calendar-item {
                flex-direction: column;
                align-items: flex-start;
                gap: 10px;
                padding: 18px;
            }

            .calendar-status {
                align-self: flex-start;
            }

            .booking-card,
            .faq-card {
                padding: 24px 20px;
            }

            .cta-section {
                padding: 50px 24px;
                border-radius: var(--radius-lg);
                margin: 0 12px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-brand {
                grid-column: auto;
            }

            .float-cta {
                padding: 10px 16px;
            }

            .float-cta-text {
                font-size: 14px;
            }

            .float-cta-btn {
                padding: 8px 18px;
                font-size: 13px;
            }

            .site-header {
                padding: 10px 12px;
            }

            .header-inner {
                padding: 8px 14px;
                border-radius: 18px;
            }

            .brand-text {
                font-size: 15px;
            }

            .brand-icon {
                width: 34px;
                height: 34px;
                font-size: 15px;
            }
        }

        @media (max-width: 575.98px) {
            .hero-kpi {
                font-size: 12px;
                padding: 6px 12px;
            }

            .hero-btns .btn-main,
            .hero-btns .btn-outline {
                width: 100%;
                justify-content: center;
            }

            .news-item {
                flex-direction: column;
            }

            .news-thumb {
                width: 100%;
                min-width: 0;
                height: 150px;
            }

            .assurance-bar {
                grid-template-columns: 1fr;
            }

            .assure-item {
                justify-content: center;
                text-align: left;
            }

            .news-sidebar {
                flex-direction: column;
            }

            .news-sidebar .side-card {
                min-width: 0;
            }

            .float-cta-inner {
                flex-direction: row;
                gap: 10px;
            }

            .float-cta-text {
                font-size: 13px;
            }

            .float-cta-btn {
                padding: 8px 14px;
                font-size: 12px;
            }
        }

/* roulang page: article */
:root {
            --primary: #A9714B;
            --primary-dark: #8B5838;
            --primary-deep: #6E4028;
            --primary-light: rgba(169, 113, 75, .10);
            --primary-border: rgba(169, 113, 75, .18);
            --accent: #C9923A;
            --accent-light: rgba(201, 146, 58, .14);
            --accent-dark: #B07F2F;
            --green: #6B8E72;
            --green-light: rgba(107, 142, 114, .14);
            --green-dark: #55755C;
            --bg: #FAF6F0;
            --bg-alt: #F0EAE2;
            --bg-card: #FFFFFF;
            --bg-deep: #2F2A26;
            --text: #2F2A26;
            --text-light: #7A6F66;
            --text-soft: #9C8E82;
            --radius: 18px;
            --radius-lg: 24px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --radius-pill: 999px;
            --shadow: 0 10px 30px rgba(136, 96, 62, .08);
            --shadow-hover: 0 16px 44px rgba(136, 96, 62, .16);
            --shadow-nav: 0 8px 32px rgba(136, 96, 62, .12);
            --border: 1px solid var(--primary-border);
            --transition: all .3s ease;
            --font-sans: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", sans-serif;
            --container-w: 1200px;
            --section-pad: 84px;
        }

        *, *::before, *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-sans);
            font-size: 16px;
            line-height: 1.8;
            color: var(--text);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
            scroll-padding-top: 100px;
        }

        a {
            text-decoration: none;
            color: var(--primary);
            transition: var(--transition);
        }

        a:hover {
            color: var(--primary-dark);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button, input, select, textarea {
            font-family: inherit;
            font-size: inherit;
            line-height: inherit;
        }

        .container {
            max-width: var(--container-w);
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ===== 导航 ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1050;
            padding: 14px 24px;
            transition: var(--transition);
        }

        .site-header.scrolled {
            padding: 8px 24px;
        }

        .header-inner {
            max-width: calc(var(--container-w) + 40px);
            margin: 0 auto;
            background: rgba(250, 246, 240, .85);
            -webkit-backdrop-filter: blur(14px);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(169, 113, 75, .18);
            border-radius: 22px;
            padding: 10px 22px;
            box-shadow: var(--shadow);
            transition: var(--transition);
            display: flex;
            align-items: center;
            justify-content: space-between;
            position: relative;
        }

        .site-header.scrolled .header-inner {
            box-shadow: var(--shadow-nav);
            padding-top: 6px;
            padding-bottom: 6px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .brand-icon {
            width: 40px;
            height: 40px;
            border-radius: 50%;
            background: var(--primary-light);
            border: 1px solid var(--primary-border);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 18px;
            flex-shrink: 0;
            transition: var(--transition);
        }

        .brand:hover .brand-icon {
            background: var(--primary);
            color: #fff;
        }

        .brand-text {
            font-size: 17px;
            font-weight: 700;
            color: var(--text);
            letter-spacing: .5px;
            white-space: nowrap;
        }

        .brand-text span {
            color: var(--primary);
            font-weight: 600;
            font-size: 13px;
            display: block;
            line-height: 1.3;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 32px;
        }

        .main-nav a {
            color: var(--text);
            font-size: 15px;
            font-weight: 500;
            position: relative;
            padding: 4px 2px;
            transition: var(--transition);
        }

        .main-nav a::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 0;
            height: 2px;
            background: var(--primary);
            border-radius: 4px;
            transition: var(--transition);
        }

        .main-nav a:hover {
            color: var(--primary);
        }

        .main-nav a:hover::after {
            width: 100%;
        }

        .main-nav a.active {
            color: var(--primary);
        }

        .main-nav a.active::after {
            width: 100%;
        }

        .nav-cta {
            background: var(--accent) !important;
            color: #fff !important;
            padding: 8px 22px !important;
            border-radius: var(--radius-pill);
            font-weight: 600;
            font-size: 14px !important;
            transition: var(--transition);
            box-shadow: 0 4px 14px rgba(201, 146, 58, .3);
            border: none !important;
        }

        .nav-cta::after {
            display: none !important;
        }

        .nav-cta:hover {
            background: var(--accent-dark) !important;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(201, 146, 58, .4);
        }

        .nav-cta:active {
            transform: translateY(0);
        }

        .nav-cta:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .nav-toggle {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: var(--radius-md);
            border: 1px solid var(--primary-border);
            background: var(--bg-card);
            color: var(--primary);
            font-size: 18px;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: var(--transition);
        }

        .nav-toggle:hover {
            background: var(--primary-light);
        }

        .nav-toggle:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        @media (max-width: 992px) {
            .nav-toggle {
                display: flex;
            }

            .main-nav {
                position: absolute;
                top: calc(100% + 12px);
                left: 0;
                right: 0;
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
                background: var(--bg-card);
                border: 1px solid var(--primary-border);
                border-radius: var(--radius-lg);
                padding: 18px;
                box-shadow: var(--shadow-nav);
                opacity: 0;
                visibility: hidden;
                transform: translateY(-8px);
                pointer-events: none;
                transition: all .3s ease;
            }

            .main-nav.open {
                opacity: 1;
                visibility: visible;
                transform: translateY(0);
                pointer-events: auto;
            }

            .main-nav a {
                display: block;
                padding: 10px 14px;
                border-radius: var(--radius-sm);
                font-size: 15px;
            }

            .main-nav a::after {
                display: none;
            }

            .main-nav a:hover {
                background: var(--primary-light);
                color: var(--primary);
            }

            .main-nav a.active {
                background: var(--primary-light);
                color: var(--primary);
            }

            .nav-cta {
                text-align: center;
                margin-top: 6px;
            }
        }

        /* ===== 文章页公共样式 ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            border-radius: var(--radius-pill);
            font-weight: 600;
            padding: 12px 28px;
            border: 1px solid transparent;
            transition: var(--transition);
            cursor: pointer;
            line-height: 1.5;
        }

        .btn-primary-custom {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 6px 18px rgba(201, 146, 58, .3);
        }

        .btn-primary-custom:hover {
            background: var(--accent-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(201, 146, 58, .4);
        }

        .btn-primary-custom:active {
            transform: translateY(0);
        }

        .btn-primary-custom:focus-visible {
            outline: 2px solid var(--accent);
            outline-offset: 2px;
        }

        .btn-outline-custom {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }

        .btn-outline-custom:hover {
            background: var(--primary-light);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-outline-custom:active {
            transform: translateY(0);
        }

        .btn-outline-custom:focus-visible {
            outline: 2px solid var(--primary);
            outline-offset: 2px;
        }

        .badge-category {
            display: inline-block;
            background: var(--green);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 10px;
            letter-spacing: .5px;
        }

        .badge-info {
            display: inline-block;
            background: var(--primary-light);
            color: var(--primary);
            font-size: 13px;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: var(--radius-pill);
            border: 1px solid var(--primary-border);
        }

        /* ===== 文章头区 ===== */
        .article-hero {
            position: relative;
            background: linear-gradient(135deg, rgba(47, 42, 38, .72) 0%, rgba(110, 64, 40, .55) 100%), url('/assets/images/backpic/back-2.jpg') center center / cover no-repeat;
            padding: 180px 0 70px;
            text-align: center;
            color: #fff;
        }

        .article-hero .breadcrumb {
            justify-content: center;
            background: transparent;
            margin-bottom: 18px;
            font-size: 13px;
            color: rgba(255, 255, 255, .65);
        }

        .article-hero .breadcrumb a {
            color: rgba(255, 255, 255, .8);
            transition: var(--transition);
        }

        .article-hero .breadcrumb a:hover {
            color: #fff;
        }

        .article-hero .breadcrumb-item + .breadcrumb-item::before {
            color: rgba(255, 255, 255, .4);
            content: '/';
        }

        .article-hero .breadcrumb-item.active {
            color: rgba(255, 255, 255, .6);
            max-width: 320px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }

        .article-hero h1 {
            font-size: clamp(1.8rem, 4vw, 2.6rem);
            font-weight: 800;
            line-height: 1.35;
            max-width: 900px;
            margin: 0 auto 16px;
            color: #fff;
            text-shadow: 0 2px 10px rgba(0, 0, 0, .2);
        }

        .article-hero .article-meta {
            display: flex;
            justify-content: center;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            margin-bottom: 16px;
        }

        .article-hero .meta-item {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            color: rgba(255, 255, 255, .75);
        }

        .article-hero .meta-item i {
            color: var(--accent);
        }

        .article-hero .article-summary {
            max-width: 760px;
            margin: 0 auto;
            font-size: 15px;
            color: rgba(255, 255, 255, .8);
            line-height: 1.8;
            padding: 0 16px;
        }

        /* ===== 正文区 ===== */
        .article-body-wrap {
            padding: 60px 0 70px;
            background: var(--bg);
        }

        .article-container {
            max-width: 860px;
        }

        .article-cover {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow);
            margin-bottom: 40px;
        }

        .article-cover img {
            width: 100%;
            height: auto;
            object-fit: cover;
        }

        .article-content {
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            padding: 48px 56px;
            box-shadow: var(--shadow);
            line-height: 2;
            font-size: 16px;
            color: var(--text);
        }

        .article-content h2 {
            font-size: 1.6rem;
            font-weight: 700;
            color: var(--text);
            margin: 48px 0 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary-border);
            position: relative;
        }

        .article-content h2::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 60px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .article-content h3 {
            font-size: 1.25rem;
            font-weight: 700;
            color: var(--primary-dark);
            margin: 36px 0 14px;
        }

        .article-content p {
            margin-bottom: 20px;
        }

        .article-content ul,
        .article-content ol {
            margin-bottom: 20px;
            padding-left: 28px;
        }

        .article-content li {
            margin-bottom: 8px;
        }

        .article-content blockquote {
            margin: 28px 0;
            padding: 18px 24px;
            border-left: 4px solid var(--primary);
            background: var(--primary-light);
            border-radius: 0 var(--radius-md) var(--radius-md) 0;
            color: var(--text-light);
            font-style: normal;
        }

        .article-content img {
            border-radius: var(--radius);
            margin: 24px 0;
        }

        .article-content a {
            color: var(--primary);
            text-decoration: underline;
            text-underline-offset: 4px;
        }

        .article-content a:hover {
            color: var(--primary-dark);
        }

        .article-content table {
            width: 100%;
            margin: 24px 0;
            border-collapse: collapse;
        }

        .article-content th,
        .article-content td {
            padding: 10px 14px;
            border: 1px solid var(--primary-border);
            text-align: left;
        }

        .article-content th {
            background: var(--bg-alt);
            font-weight: 600;
        }

        .article-not-found {
            text-align: center;
            padding: 80px 24px;
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow);
        }

        .article-not-found i {
            font-size: 56px;
            color: var(--text-soft);
            margin-bottom: 20px;
            display: inline-block;
        }

        .article-not-found h2 {
            font-size: 1.6rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .article-not-found p {
            color: var(--text-light);
            margin-bottom: 28px;
        }

        /* ===== 相关推荐 ===== */
        .related-section {
            padding: 70px 0 80px;
            background: var(--bg-alt);
        }

        .section-title-wrap {
            text-align: center;
            margin-bottom: 44px;
        }

        .section-title {
            font-size: clamp(1.5rem, 3vw, 2rem);
            font-weight: 800;
            color: var(--text);
            margin-bottom: 8px;
        }

        .section-subtitle {
            font-size: 15px;
            color: var(--text-light);
            max-width: 520px;
            margin: 0 auto;
        }

        .related-card {
            display: block;
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius);
            overflow: hidden;
            height: 100%;
            transition: var(--transition);
        }

        .related-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .related-cover {
            aspect-ratio: 16 / 10;
            overflow: hidden;
        }

        .related-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }

        .related-card:hover .related-cover img {
            transform: scale(1.04);
        }

        .related-body {
            padding: 20px 22px 24px;
        }

        .related-body .badge-category {
            margin-bottom: 10px;
        }

        .related-body h4 {
            font-size: 1.05rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-body p {
            font-size: 13px;
            color: var(--text-light);
            margin: 0;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .related-card:hover .related-body h4 {
            color: var(--primary);
        }

        /* ===== 精品推荐 CTA ===== */
        .premium-banner {
            position: relative;
            background: linear-gradient(135deg, rgba(47, 42, 38, .82) 0%, rgba(110, 64, 40, .68) 100%), url('/assets/images/backpic/back-1.jpg') center center / cover no-repeat;
            padding: 60px 0;
            color: #fff;
        }

        .premium-banner .premium-content {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }

        .premium-banner h2 {
            font-size: clamp(1.3rem, 2.5vw, 1.8rem);
            font-weight: 800;
            margin-bottom: 8px;
        }

        .premium-banner p {
            color: rgba(255, 255, 255, .8);
            margin: 0;
            max-width: 460px;
            font-size: 14px;
        }

        .premium-banner .btn {
            flex-shrink: 0;
        }

        /* ===== 预约 CTA ===== */
        .booking-section {
            padding: 84px 0;
            background: linear-gradient(180deg, var(--bg) 0%, var(--bg-alt) 100%);
        }

        .booking-grid {
            display: grid;
            grid-template-columns: minmax(0, 1.1fr) minmax(0, .9fr);
            gap: 48px;
            align-items: start;
        }

        .booking-heading h2 {
            font-size: clamp(1.6rem, 3vw, 2.1rem);
            font-weight: 800;
            margin-bottom: 14px;
        }

        .booking-heading p {
            color: var(--text-light);
            margin-bottom: 28px;
            font-size: 15px;
        }

        .booking-form {
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            padding: 36px;
            box-shadow: var(--shadow);
        }

        .booking-form .form-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            margin-bottom: 8px;
        }

        .booking-form .form-label span {
            color: var(--primary);
            margin-left: 2px;
        }

        .booking-form .form-control,
        .booking-form .form-select {
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-md);
            padding: 12px 16px;
            font-size: 14px;
            color: var(--text);
            background: var(--bg);
            transition: var(--transition);
        }

        .booking-form .form-control:focus,
        .booking-form .form-select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(169, 113, 75, .12);
            background: #fff;
            outline: none;
        }

        .booking-form textarea.form-control {
            min-height: 100px;
            resize: vertical;
        }

        .booking-form .btn {
            width: 100%;
            margin-top: 8px;
        }

        .form-note {
            font-size: 13px;
            color: var(--text-soft);
            text-align: center;
            margin-top: 14px;
        }

        /* FAQ 手风琴 */
        .faq-wrapper {
            background: var(--bg-card);
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow);
        }

        .faq-wrapper h3 {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 24px;
            color: var(--text);
            padding-bottom: 14px;
            border-bottom: 1px solid var(--primary-border);
        }

        .faq-item {
            border: 1px solid var(--primary-border);
            border-radius: var(--radius-md);
            margin-bottom: 12px;
            overflow: hidden;
            background: var(--bg);
            transition: var(--transition);
        }

        .faq-item:last-child {
            margin-bottom: 0;
        }

        .faq-item summary {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            padding: 16px 20px;
            font-size: 14px;
            font-weight: 600;
            color: var(--text);
            cursor: pointer;
            list-style: none;
            transition: var(--transition);
        }

        .faq-item summary::-webkit-details-marker {
            display: none;
        }

        .faq-item summary::after {
            content: '\f078';
            font-family: 'Font Awesome 6 Free';
            font-weight: 900;
            font-size: 12px;
            color: var(--primary);
            transition: transform .3s ease;
            flex-shrink: 0;
        }

        .faq-item[open] summary {
            background: var(--primary-light);
            color: var(--primary-dark);
        }

        .faq-item[open] summary::after {
            transform: rotate(180deg);
        }

        .faq-item .faq-body {
            padding: 0 20px 18px;
            font-size: 14px;
            color: var(--text-light);
            line-height: 1.8;
        }

        .faq-item .faq-body p {
            margin: 0;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--bg-deep);
            color: rgba(255, 255, 255, .7);
            padding: 70px 0 24px;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 1.6fr 0.8fr 1.2fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-brand .brand {
            margin-bottom: 18px;
        }

        .footer-brand .brand .brand-text {
            color: #fff;
        }

        .footer-brand .brand .brand-text span {
            color: var(--accent);
        }

        .footer-brand .brand-icon {
            background: rgba(255, 255, 255, .08);
            border-color: rgba(255, 255, 255, .14);
            color: var(--accent);
        }

        .footer-brand p {
            font-size: 14px;
            line-height: 1.9;
            color: rgba(255, 255, 255, .6);
            margin: 0;
        }

        .footer-col h5 {
            color: #fff;
            font-size: 16px;
            font-weight: 700;
            margin-bottom: 20px;
        }

        .footer-col ul {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-col ul li {
            margin-bottom: 12px;
        }

        .footer-col ul li a {
            color: rgba(255, 255, 255, .65);
            font-size: 14px;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }

        .footer-col ul li a i {
            font-size: 11px;
            color: var(--accent);
        }

        .footer-col ul li a:hover {
            color: #fff;
            padding-left: 4px;
        }

        .footer-contact-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            margin-bottom: 18px;
            font-size: 14px;
            line-height: 1.6;
            color: rgba(255, 255, 255, .6);
        }

        .footer-contact-item i {
            color: var(--accent);
            font-size: 15px;
            margin-top: 3px;
            width: 18px;
            text-align: center;
            flex-shrink: 0;
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .1);
            padding-top: 24px;
            text-align: center;
        }

        .footer-bottom p {
            font-size: 13px;
            color: rgba(255, 255, 255, .4);
            margin: 0;
        }

        /* ===== 底部固定转化条 ===== */
        .fixed-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 1040;
            background: rgba(47, 42, 38, .92);
            -webkit-backdrop-filter: blur(12px);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding: 12px 0;
            transform: translateY(100%);
            transition: transform .4s ease;
        }

        .fixed-bar.visible {
            transform: translateY(0);
        }

        .fixed-bar-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .fixed-bar-inner p {
            margin: 0;
            color: rgba(255, 255, 255, .85);
            font-size: 14px;
            font-weight: 500;
        }

        .fixed-bar-inner p i {
            color: var(--accent);
            margin-right: 6px;
        }

        .fixed-bar-btn {
            background: var(--accent);
            color: #fff;
            border-radius: var(--radius-pill);
            padding: 8px 24px;
            font-size: 14px;
            font-weight: 600;
            transition: var(--transition);
            border: none;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .fixed-bar-btn:hover {
            background: var(--accent-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 6px 18px rgba(201, 146, 58, .4);
        }

        body {
            padding-bottom: 70px;
        }

        @media (max-width: 768px) {
            body {
                padding-bottom: 64px;
            }
        }

        /* ===== 响应式 ===== */
        @media (max-width: 992px) {
            .article-content {
                padding: 36px 28px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .booking-grid {
                grid-template-columns: 1fr;
                gap: 36px;
            }

            .premium-content {
                flex-direction: column;
                text-align: center;
            }

            .premium-banner p {
                max-width: 100%;
            }
        }

        @media (max-width: 768px) {
            .article-hero {
                padding: 150px 0 50px;
            }

            .article-hero h1 {
                font-size: 1.5rem;
            }

            .article-hero .article-summary {
                font-size: 14px;
            }

            .article-content {
                padding: 28px 20px;
                border-radius: var(--radius);
            }

            .booking-form {
                padding: 24px 20px;
            }

            .faq-wrapper {
                padding: 20px;
            }

            .fixed-bar-inner p {
                font-size: 13px;
            }

            .fixed-bar-inner p i {
                display: none;
            }

            .fixed-bar-btn {
                padding: 6px 16px;
                font-size: 13px;
            }
        }

        @media (max-width: 520px) {
            .article-hero .breadcrumb-item.active {
                max-width: 180px;
            }

            .related-section {
                padding: 50px 0 60px;
            }

            .booking-section {
                padding: 50px 0 60px;
            }

            .site-footer {
                padding: 50px 0 20px;
            }

            .fixed-bar-inner p {
                font-size: 12px;
                white-space: nowrap;
                overflow: hidden;
                text-overflow: ellipsis;
            }
        }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
