/* ===== 设计变量 ===== */
        :root {
            --brand: #1b4332;
            --brand-dark: #0f2b21;
            --brand-light: #2d6a4f;
            --gold: #c9a96a;
            --gold-dark: #a98454;
            --bg: #faf8f5;
            --bg-alt: #f1ece4;
            --dark: #101a15;
            --text: #1e2a24;
            --text-muted: #64746c;
            --border: #e4ddd2;
            --radius: 18px;
            --radius-lg: 28px;
            --shadow: 0 8px 30px rgba(20, 40, 30, .08);
            --shadow-lg: 0 16px 48px rgba(20, 40, 30, .12);
            --transition: all .3s ease;
            --coupon-bg: #12291f;
        }

        /* ===== Reset & Base ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            margin: 0;
            font-family: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Helvetica Neue", Arial, sans-serif;
            background: var(--bg);
            color: var(--text);
            font-size: 16px;
            line-height: 1.75;
            padding-bottom: 72px;
            -webkit-font-smoothing: antialiased;
        }

        a {
            color: inherit;
            text-decoration: none;
            transition: var(--transition);
        }

        a:hover {
            color: var(--brand);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        ul,
        ol {
            margin: 0;
            padding: 0;
            list-style: none;
        }

        .container {
            max-width: 1180px;
        }

        /* ===== 导航 ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1050;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
        }

        .header-inner {
            display: flex;
            align-items: center;
            gap: 28px;
            padding: 14px 0;
        }

        .logo {
            font-size: 1.3rem;
            font-weight: 800;
            color: var(--brand);
            line-height: 1.3;
            letter-spacing: .5px;
            white-space: nowrap;
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo i {
            color: var(--gold);
            font-size: 1.2rem;
        }

        .logo:hover {
            color: var(--brand-light);
        }

        .search-wrap {
            flex: 1;
            max-width: 480px;
        }

        .search-wrap .search-form {
            position: relative;
        }

        .search-wrap .form-control {
            border-radius: 50rem;
            border: 1px solid var(--border);
            background: #fff;
            padding: .6rem 1.2rem .6rem 2.6rem;
            font-size: .95rem;
            box-shadow: inset 0 1px 4px rgba(0, 0, 0, .03);
            transition: var(--transition);
        }

        .search-wrap .form-control:focus {
            border-color: var(--brand);
            box-shadow: 0 0 0 .22rem rgba(27, 67, 50, .1);
        }

        .search-wrap .search-icon {
            position: absolute;
            left: 16px;
            top: 50%;
            transform: translateY(-50%);
            color: var(--text-muted);
            pointer-events: none;
            font-size: .9rem;
        }

        .navbar-links {
            display: flex;
            align-items: center;
            gap: 18px;
        }

        .navbar-links .nav-link {
            font-weight: 600;
            color: var(--text);
            padding: .4rem .2rem;
            position: relative;
        }

        .navbar-links .nav-link:hover {
            color: var(--brand);
        }

        .navbar-links .nav-link.active {
            color: var(--brand);
        }

        .navbar-links .nav-link.active::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 100%;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
        }

        .btn-header {
            border-radius: 50rem;
            padding: .5rem 1.4rem;
            font-weight: 600;
            font-size: .95rem;
            background: var(--brand);
            color: #fff;
            border: 1px solid var(--brand);
            transition: var(--transition);
            white-space: nowrap;
        }

        .btn-header:hover {
            background: var(--brand-light);
            color: #fff;
            border-color: var(--brand-light);
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(27, 67, 50, .2);
        }

        /* ===== 通用按钮 ===== */
        .btn {
            border-radius: 50rem;
            padding: .65rem 1.7rem;
            font-weight: 600;
            transition: var(--transition);
            font-size: 1rem;
        }

        .btn-brand {
            background: var(--brand);
            color: #fff;
            border: 1px solid var(--brand);
        }

        .btn-brand:hover,
        .btn-brand:focus {
            background: var(--brand-light);
            color: #fff;
            border-color: var(--brand-light);
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(27, 67, 50, .22);
        }

        .btn-outline-brand {
            background: transparent;
            color: var(--brand);
            border: 1px solid var(--brand);
        }

        .btn-outline-brand:hover,
        .btn-outline-brand:focus {
            background: var(--brand);
            color: #fff;
            border-color: var(--brand);
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(27, 67, 50, .18);
        }

        .btn-gold {
            background: var(--gold);
            color: #1e1a10;
            border: 1px solid var(--gold);
        }

        .btn-gold:hover,
        .btn-gold:focus {
            background: var(--gold-dark);
            color: #fff;
            border-color: var(--gold-dark);
            transform: translateY(-2px);
            box-shadow: 0 10px 26px rgba(201, 169, 106, .3);
        }

        .btn-light-outline {
            background: rgba(255, 255, 255, .1);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, .45);
            backdrop-filter: blur(4px);
        }

        .btn-light-outline:hover,
        .btn-light-outline:focus {
            background: rgba(255, 255, 255, .22);
            color: #fff;
            border-color: #fff;
            transform: translateY(-2px);
        }

        .btn:focus-visible,
        .nav-link:focus-visible,
        a:focus-visible {
            outline: 3px solid rgba(27, 67, 50, .35);
            outline-offset: 2px;
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            padding: 88px 0 84px;
            background: linear-gradient(135deg, #f5efe7 0%, #e7efe9 52%, #faefdf 100%);
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-1.jpg');
            background-size: cover;
            background-position: center;
            opacity: .13;
        }

        .hero::after {
            content: '';
            position: absolute;
            top: -120px;
            right: -80px;
            width: 320px;
            height: 320px;
            background: radial-gradient(circle, rgba(201, 169, 106, .18) 0%, transparent 70%);
            border-radius: 50%;
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-chip {
            display: inline-block;
            background: rgba(27, 67, 50, .09);
            color: var(--brand);
            border-radius: 50rem;
            padding: .3rem 1rem;
            font-size: .85rem;
            font-weight: 600;
            margin-bottom: 18px;
        }

        .hero-title {
            font-size: 2.15rem;
            font-weight: 800;
            line-height: 1.35;
            color: var(--brand-dark);
            margin-bottom: 18px;
            letter-spacing: .5px;
        }

        .hero-desc {
            font-size: 1.05rem;
            color: var(--text-muted);
            margin-bottom: 24px;
            max-width: 470px;
        }

        .hero-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
            margin-bottom: 26px;
        }

        .hero-points {
            padding: 0;
            margin: 0;
            display: grid;
            gap: 10px;
        }

        .hero-points li {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text);
            font-size: .95rem;
        }

        .hero-points li i {
            color: var(--gold-dark);
            font-size: 1.05rem;
        }

        .hero-stage {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            border: 4px solid rgba(255, 255, 255, .75);
            transform: rotate(-1deg);
            transition: var(--transition);
        }

        .hero-stage:hover {
            transform: rotate(0deg) scale(1.02);
        }

        .hero-stage img {
            width: 100%;
            height: 340px;
            object-fit: cover;
        }

        .stage-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            background: rgba(255, 255, 255, .9);
            backdrop-filter: blur(6px);
            color: var(--brand);
            border-radius: 50rem;
            padding: .3rem .9rem;
            font-size: .82rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 6px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, .08);
        }

        .stage-tag {
            position: absolute;
            bottom: 16px;
            left: 16px;
            background: linear-gradient(135deg, rgba(15, 43, 33, .85), rgba(27, 67, 50, .75));
            color: #fff;
            border-radius: 12px;
            padding: .45rem 1rem;
            font-size: .88rem;
            font-weight: 600;
            backdrop-filter: blur(6px);
        }

        .hero-points-card {
            background: rgba(255, 255, 255, .72);
            border: 1px solid rgba(255, 255, 255, .6);
            border-radius: var(--radius);
            padding: 18px;
            box-shadow: var(--shadow);
            margin-top: 20px;
        }

        .hero-points-card .metric-line {
            display: flex;
            align-items: baseline;
            gap: 8px;
            font-size: .9rem;
            color: var(--text-muted);
        }

        .hero-points-card .metric-line strong {
            font-size: 1.3rem;
            color: var(--brand);
        }

        /* ===== 通用板块 ===== */
        .section {
            padding: 84px 0;
        }

        .section-alt {
            background: var(--bg-alt);
        }

        .section-header {
            margin-bottom: 46px;
            max-width: 680px;
        }

        .section-header.center {
            margin-left: auto;
            margin-right: auto;
            text-align: center;
        }

        .section-label {
            display: inline-block;
            color: var(--gold-dark);
            font-weight: 700;
            font-size: .85rem;
            letter-spacing: 1px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .section-title {
            font-size: 1.9rem;
            font-weight: 800;
            color: var(--brand-dark);
            line-height: 1.4;
            margin-bottom: 12px;
        }

        .section-desc {
            color: var(--text-muted);
            font-size: 1rem;
            font-weight: 400;
        }

        /* ===== 分类入口 ===== */
        .cat-entry {
            padding: 70px 0 30px;
        }

        .cat-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 30px 26px;
            height: 100%;
            transition: var(--transition);
            position: relative;
            overflow: hidden;
        }

        .cat-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--brand));
            opacity: 0;
            transition: var(--transition);
        }

        .cat-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            border-color: transparent;
        }

        .cat-card:hover::before {
            opacity: 1;
        }

        .cat-icon {
            width: 54px;
            height: 54px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(27, 67, 50, .09);
            color: var(--brand);
            border-radius: 16px;
            font-size: 1.4rem;
            margin-bottom: 18px;
            transition: var(--transition);
        }

        .cat-card:hover .cat-icon {
            background: var(--brand);
            color: #fff;
        }

        .cat-title {
            font-size: 1.15rem;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text);
        }

        .cat-text {
            color: var(--text-muted);
            font-size: .92rem;
            margin: 0;
        }

        .cat-more {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--brand);
            font-weight: 600;
            font-size: .9rem;
            margin-top: 14px;
        }

        .cat-more i {
            transition: transform .3s ease;
        }

        .cat-card:hover .cat-more i {
            transform: translateX(4px);
        }

        /* ===== 卖点三连 ===== */
        .features {
            background: #fff;
        }

        .feature-card {
            text-align: center;
            padding: 36px 28px;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            background: var(--bg);
            height: 100%;
            transition: var(--transition);
            position: relative;
        }

        .feature-card:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-lg);
            background: #fff;
        }

        .feature-icon {
            width: 66px;
            height: 66px;
            border-radius: 22px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 1.7rem;
            margin-bottom: 20px;
            color: #fff;
        }

        .feature-icon.green {
            background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
        }

        .feature-icon.gold {
            background: linear-gradient(135deg, #d9b980, #a98454);
        }

        .feature-icon.teal {
            background: linear-gradient(135deg, #3c8d6e, #1b4332);
        }

        .feature-title {
            font-size: 1.2rem;
            font-weight: 700;
            margin-bottom: 10px;
            color: var(--brand-dark);
        }

        .feature-text {
            color: var(--text-muted);
            font-size: .95rem;
            margin: 0;
        }

        /* ===== 优惠券墙 ===== */
        .coupon-wall {
            background: var(--coupon-bg);
            padding: 84px 0;
            position: relative;
            overflow: hidden;
        }

        .coupon-wall::before {
            content: '';
            position: absolute;
            top: -80px;
            left: 50%;
            transform: translateX(-50%);
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(201, 169, 106, .18) 0%, transparent 70%);
            border-radius: 50%;
        }

        .coupon-wall .section-title {
            color: #fff;
        }

        .coupon-wall .section-desc {
            color: rgba(255, 255, 255, .72);
        }

        .coupon-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
            margin-bottom: 36px;
        }

        .coupon-card {
            position: relative;
            background: #fff;
            border-radius: 18px;
            padding: 30px 24px 22px;
            box-shadow: 0 14px 38px rgba(0, 0, 0, .2);
            transition: var(--transition);
            overflow: hidden;
            z-index: 1;
        }

        .coupon-card::before,
        .coupon-card::after {
            content: '';
            position: absolute;
            width: 20px;
            height: 20px;
            background: var(--coupon-bg);
            border-radius: 50%;
            top: 50%;
            transform: translateY(-50%);
            z-index: 2;
        }

        .coupon-card::before {
            left: -10px;
        }

        .coupon-card::after {
            right: -10px;
        }

        .coupon-card:hover {
            transform: translateY(-8px);
            box-shadow: 0 22px 48px rgba(0, 0, 0, .3);
        }

        .coupon-card::shadow-line {
            content: '';
            position: absolute;
            left: 12px;
            right: 12px;
            bottom: 64px;
            border-top: 1px dashed var(--border);
        }

        .coupon-value {
            font-size: 2rem;
            font-weight: 800;
            color: var(--brand);
            line-height: 1.2;
            margin-bottom: 4px;
        }

        .coupon-value small {
            font-size: .95rem;
            font-weight: 600;
            color: var(--text-muted);
        }

        .coupon-title {
            font-size: 1.08rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }

        .coupon-desc {
            font-size: .88rem;
            color: var(--text-muted);
            margin-bottom: 20px;
            line-height: 1.6;
        }

        .coupon-btn {
            display: inline-block;
            background: var(--brand);
            color: #fff;
            border-radius: 50rem;
            padding: .5rem 1.4rem;
            font-size: .9rem;
            font-weight: 600;
            transition: var(--transition);
            border: 1px solid var(--brand);
        }

        .coupon-btn:hover {
            background: var(--brand-light);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 18px rgba(27, 67, 50, .25);
        }

        .coupon-rules {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 22px;
            color: rgba(255, 255, 255, .55);
            font-size: .84rem;
            margin-bottom: 26px;
        }

        .coupon-rules span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .coupon-rules i {
            color: var(--gold);
        }

        .coupon-cta {
            text-align: center;
        }

        /* ===== 精选会所推荐 ===== */
        .venue-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            overflow: hidden;
            transition: var(--transition);
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .venue-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
        }

        .venue-thumb {
            position: relative;
            overflow: hidden;
            height: 200px;
        }

        .venue-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .5s ease;
        }

        .venue-card:hover .venue-thumb img {
            transform: scale(1.06);
        }

        .venue-tag {
            position: absolute;
            top: 14px;
            left: 14px;
            background: rgba(255, 255, 255, .92);
            color: var(--brand);
            border-radius: 50rem;
            padding: .2rem .8rem;
            font-size: .78rem;
            font-weight: 700;
            box-shadow: 0 4px 12px rgba(0, 0, 0, .06);
        }

        .venue-rate {
            position: absolute;
            bottom: 14px;
            right: 14px;
            background: rgba(15, 43, 33, .82);
            color: #fff;
            border-radius: 50rem;
            padding: .2rem .8rem;
            font-size: .84rem;
            font-weight: 700;
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .venue-rate i {
            color: var(--gold);
            font-size: .78rem;
        }

        .venue-body {
            padding: 24px 22px 22px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }

        .venue-area {
            font-size: .8rem;
            color: var(--gold-dark);
            font-weight: 700;
            letter-spacing: .5px;
            margin-bottom: 6px;
        }

        .venue-title {
            font-size: 1.15rem;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
        }

        .venue-text {
            font-size: .9rem;
            color: var(--text-muted);
            margin-bottom: 16px;
            flex: 1;
        }

        .venue-footer {
            display: flex;
            align-items: center;
            justify-content: space-between;
            border-top: 1px solid var(--bg-alt);
            padding-top: 14px;
        }

        .venue-link {
            color: var(--brand);
            font-weight: 600;
            font-size: .9rem;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .venue-link i {
            transition: transform .3s;
        }

        .venue-link:hover i {
            transform: translateX(4px);
        }

        /* ===== 场景演示 ===== */
        .scene-wrap {
            background: var(--dark);
            border-radius: var(--radius-lg);
            overflow: hidden;
            margin-bottom: 26px;
            transition: var(--transition);
        }

        .scene-wrap:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-lg);
        }

        .scene-wrap .row {
            align-items: center;
        }

        .scene-media img {
            width: 100%;
            height: 280px;
            object-fit: cover;
        }

        .scene-content {
            padding: 40px;
            color: #fff;
        }

        .scene-label {
            color: var(--gold);
            font-size: .82rem;
            font-weight: 700;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: inline-block;
        }

        .scene-title {
            font-size: 1.45rem;
            font-weight: 700;
            margin-bottom: 12px;
        }

        .scene-desc {
            color: rgba(255, 255, 255, .72);
            font-size: .95rem;
            margin-bottom: 18px;
        }

        .scene-points {
            display: grid;
            gap: 8px;
        }

        .scene-points li {
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: .9rem;
            color: rgba(255, 255, 255, .85);
        }

        .scene-points li i {
            color: var(--gold);
            font-size: .8rem;
        }

        .scene-wrap.rev .row {
            flex-direction: row-reverse;
        }

        /* ===== 社会认同 ===== */
        .metric-wall {
            background: linear-gradient(135deg, var(--brand-dark), #1d4c3a);
            border-radius: var(--radius-lg);
            padding: 46px 40px;
            margin-bottom: 48px;
            position: relative;
            overflow: hidden;
        }

        .metric-wall::before {
            content: '';
            position: absolute;
            top: -60px;
            right: -40px;
            width: 220px;
            height: 220px;
            background: radial-gradient(circle, rgba(201, 169, 106, .22), transparent 70%);
            border-radius: 50%;
        }

        .metric-item {
            text-align: center;
            color: #fff;
            padding: 16px 8px;
        }

        .metric-num {
            font-size: 2.2rem;
            font-weight: 800;
            line-height: 1.2;
        }

        .metric-num i {
            color: var(--gold);
            font-size: 1.5rem;
        }

        .metric-label {
            color: rgba(255, 255, 255, .72);
            font-size: .9rem;
            margin-top: 4px;
        }

        .testimonial-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 28px;
            height: 100%;
            transition: var(--transition);
        }

        .testimonial-card:hover {
            box-shadow: var(--shadow);
            transform: translateY(-4px);
        }

        .testimonial-stars {
            color: var(--gold);
            font-size: .9rem;
            margin-bottom: 14px;
        }

        .testimonial-text {
            font-size: .95rem;
            color: var(--text);
            margin-bottom: 18px;
            line-height: 1.75;
        }

        .testimonial-author {
            display: flex;
            align-items: center;
            gap: 12px;
            border-top: 1px solid var(--bg-alt);
            padding-top: 16px;
        }

        .author-avatar {
            width: 42px;
            height: 42px;
            border-radius: 50%;
            background: linear-gradient(135deg, var(--brand-light), var(--brand-dark));
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: .95rem;
        }

        .author-name {
            font-weight: 600;
            font-size: .95rem;
        }

        .author-role {
            font-size: .82rem;
            color: var(--text-muted);
        }

        /* ===== 资讯区 ===== */
        .news-wrap {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-lg);
            padding: 36px;
        }

        .news-item {
            border-bottom: 1px solid var(--bg-alt);
            transition: var(--transition);
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-link {
            display: flex;
            align-items: center;
            gap: 18px;
            padding: 16px 4px;
            border-radius: 10px;
        }

        .news-link:hover {
            background: var(--bg);
            padding-left: 14px;
        }

        .news-date {
            flex-shrink: 0;
            font-size: .8rem;
            font-weight: 700;
            color: var(--gold-dark);
            background: rgba(201, 169, 106, .1);
            padding: .3rem .7rem;
            border-radius: 8px;
            letter-spacing: .3px;
        }

        .news-title {
            flex: 1;
            font-size: .98rem;
            font-weight: 500;
            color: var(--text);
            line-height: 1.5;
        }

        .news-link:hover .news-title {
            color: var(--brand);
        }

        .news-arrow {
            color: var(--text-muted);
            font-size: 1rem;
            transition: var(--transition);
        }

        .news-link:hover .news-arrow {
            transform: translateX(4px);
            color: var(--brand);
        }

        .news-side {
            background: var(--bg-alt);
            border-radius: var(--radius);
            padding: 26px;
            height: 100%;
        }

        .news-side h4 {
            font-size: 1rem;
            font-weight: 700;
            color: var(--brand-dark);
            margin-bottom: 14px;
            padding-bottom: 10px;
            border-bottom: 2px solid var(--border);
        }

        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
            margin-bottom: 28px;
        }

        .tag-item {
            display: inline-block;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 50rem;
            padding: .3rem 1rem;
            font-size: .85rem;
            color: var(--text-muted);
            transition: var(--transition);
        }

        .tag-item:hover {
            background: var(--brand);
            color: #fff;
            border-color: var(--brand);
        }

        .side-list {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .side-list li {
            padding: 8px 0;
            border-bottom: 1px dashed var(--border);
        }

        .side-list li:last-child {
            border-bottom: none;
        }

        .side-list a {
            font-size: .92rem;
            color: var(--text);
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .side-list a i {
            color: var(--gold-dark);
            font-size: .8rem;
        }

        .side-list a:hover {
            color: var(--brand);
        }

        /* ===== 专属服务引导 ===== */
        .guide-cta {
            position: relative;
            border-radius: var(--radius-lg);
            overflow: hidden;
            background: linear-gradient(135deg, rgba(15, 43, 33, .92), rgba(27, 67, 50, .88));
            color: #fff;
            padding: 0;
        }

        .guide-cta .guide-bg {
            position: absolute;
            inset: 0;
            background-image: url('/assets/images/backpic/back-2.jpg');
            background-size: cover;
            background-position: center;
            opacity: .2;
        }

        .guide-cta .row {
            position: relative;
            z-index: 2;
            align-items: center;
        }

        .guide-content {
            padding: 56px 48px;
        }

        .guide-label {
            color: var(--gold);
            font-weight: 700;
            font-size: .85rem;
            letter-spacing: 1px;
            margin-bottom: 10px;
            display: block;
        }

        .guide-title {
            font-size: 1.8rem;
            font-weight: 800;
            line-height: 1.4;
            margin-bottom: 14px;
        }

        .guide-desc {
            color: rgba(255, 255, 255, .75);
            font-size: .98rem;
            margin-bottom: 22px;
            max-width: 480px;
        }

        .guide-list {
            display: grid;
            gap: 10px;
            margin-bottom: 26px;
        }

        .guide-list li {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: .95rem;
        }

        .guide-list li i {
            color: var(--gold);
        }

        .guide-actions {
            display: flex;
            flex-wrap: wrap;
            gap: 14px;
        }

        .guide-visual {
            min-height: 380px;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 40px;
            position: relative;
        }

        .guide-card {
            background: rgba(255, 255, 255, .1);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(255, 255, 255, .25);
            border-radius: 22px;
            padding: 32px;
            text-align: center;
            max-width: 280px;
        }

        .guide-card .qr-icon {
            font-size: 3.4rem;
            color: #fff;
            margin-bottom: 16px;
        }

        .guide-card p {
            color: rgba(255, 255, 255, .85);
            font-size: .9rem;
            margin-bottom: 10px;
        }

        .guide-card .card-note {
            font-size: .8rem;
            color: rgba(255, 255, 255, .6);
        }

        /* ===== FAQ ===== */
        .faq-wrap {
            max-width: 820px;
            margin: 0 auto;
        }

        .faq-wrap .accordion-item {
            border: 1px solid var(--border);
            border-radius: 14px !important;
            margin-bottom: 16px;
            overflow: hidden;
            box-shadow: none;
            background: #fff;
        }

        .faq-wrap .accordion-button {
            font-weight: 600;
            color: var(--text);
            background: #fff;
            padding: 1rem 1.3rem;
            font-size: 1rem;
            border: none;
            box-shadow: none;
        }

        .faq-wrap .accordion-button:not(.collapsed) {
            color: var(--brand);
            background: rgba(27, 67, 50, .04);
        }

        .faq-wrap .accordion-button:focus {
            box-shadow: 0 0 0 .2rem rgba(27, 67, 50, .08);
        }

        .faq-wrap .accordion-body {
            color: var(--text-muted);
            font-size: .95rem;
            line-height: 1.8;
            padding: 1rem 1.3rem 1.3rem;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, .7);
            padding: 60px 0 30px;
            position: relative;
        }

        .site-footer::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold), var(--brand-light), var(--gold));
            opacity: .5;
        }

        .footer-logo {
            font-size: 1.3rem;
            font-weight: 800;
            color: #fff;
            display: flex;
            align-items: center;
            gap: 8px;
            margin-bottom: 14px;
        }

        .footer-logo i {
            color: var(--gold);
        }

        .footer-desc {
            font-size: .9rem;
            color: rgba(255, 255, 255, .55);
            max-width: 360px;
            line-height: 1.75;
        }

        .footer-title {
            font-size: .95rem;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            position: relative;
            padding-bottom: 10px;
        }

        .footer-title::after {
            content: '';
            position: absolute;
            left: 0;
            bottom: 0;
            width: 28px;
            height: 2px;
            background: var(--gold);
            border-radius: 2px;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(255, 255, 255, .6);
            font-size: .9rem;
            transition: var(--transition);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }

        .footer-links a i {
            font-size: .7rem;
            color: var(--gold);
        }

        .footer-links a:hover {
            color: #fff;
            transform: translateX(4px);
        }

        .footer-info {
            font-size: .88rem;
            color: rgba(255, 255, 255, .5);
            line-height: 1.8;
        }

        .footer-info i {
            margin-right: 6px;
            color: var(--gold);
        }

        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, .08);
            padding-top: 22px;
            margin-top: 44px;
            text-align: center;
            font-size: .85rem;
            color: rgba(255, 255, 255, .4);
        }

        .footer-bottom a {
            color: rgba(255, 255, 255, .55);
        }

        .footer-bottom a:hover {
            color: #fff;
        }

        /* ===== 底部固定转化条 ===== */
        .convert-bar {
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            z-index: 1020;
            background: rgba(26, 42, 34, .95);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-top: 1px solid rgba(255, 255, 255, .12);
            padding: 12px 0;
            box-shadow: 0 -6px 24px rgba(0, 0, 0, .15);
        }

        .convert-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
        }

        .convert-text {
            color: #fff;
            font-weight: 600;
            font-size: .95rem;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .convert-text i {
            color: var(--gold);
            font-size: 1.1rem;
        }

        .convert-text small {
            display: block;
            font-weight: 400;
            font-size: .8rem;
            color: rgba(255, 255, 255, .55);
        }

        .convert-bar .btn {
            border-radius: 50rem;
            padding: .5rem 1.6rem;
            font-weight: 700;
            font-size: .92rem;
            white-space: nowrap;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1024px) {
            .hero-title {
                font-size: 1.8rem;
            }

            .hero-stage img {
                height: 280px;
            }

            .coupon-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .coupon-card:last-child {
                grid-column: span 2;
            }

            .scene-content {
                padding: 28px;
            }
        }

        @media (max-width: 768px) {
            body {
                font-size: 15px;
                padding-bottom: 64px;
            }

            .header-inner {
                flex-wrap: wrap;
                gap: 12px;
                padding: 10px 0;
            }

            .logo {
                font-size: 1.1rem;
            }

            .search-wrap {
                order: 3;
                flex-basis: 100%;
                max-width: none;
            }

            .navbar-links {
                gap: 10px;
                margin-left: auto;
            }

            .btn-header {
                display: none;
            }

            .hero {
                padding: 52px 0 56px;
            }

            .hero-title {
                font-size: 1.5rem;
            }

            .hero-desc {
                font-size: .95rem;
            }

            .hero-stage {
                margin-top: 28px;
            }

            .hero-stage img {
                height: 220px;
            }

            .section {
                padding: 60px 0;
            }

            .section-title {
                font-size: 1.5rem;
            }

            .cat-entry {
                padding: 46px 0 20px;
            }

            .coupon-grid {
                grid-template-columns: 1fr;
            }

            .coupon-card:last-child {
                grid-column: auto;
            }

            .scene-media img {
                height: 200px;
            }

            .scene-content {
                padding: 24px;
            }

            .metric-num {
                font-size: 1.6rem;
            }

            .metric-wall {
                padding: 30px 16px;
            }

            .news-wrap {
                padding: 22px;
            }

            .news-link {
                gap: 10px;
            }

            .news-title {
                font-size: .9rem;
            }

            .guide-content {
                padding: 36px 26px;
            }

            .guide-title {
                font-size: 1.4rem;
            }

            .guide-visual {
                min-height: 240px;
                padding: 20px;
            }

            .convert-text {
                font-size: .85rem;
            }

            .convert-text i {
                display: none;
            }

            .convert-bar .btn {
                padding: .45rem 1.2rem;
                font-size: .85rem;
            }
        }

        @media (max-width: 520px) {
            .hero-title {
                font-size: 1.3rem;
            }

            .hero-actions .btn {
                padding: .55rem 1.2rem;
                font-size: .9rem;
            }

            .section-title {
                font-size: 1.25rem;
            }

            .coupon-wall {
                padding: 60px 0;
            }

            .coupon-card {
                padding: 22px 18px 18px;
            }

            .venue-thumb {
                height: 170px;
            }

            .scene-title {
                font-size: 1.15rem;
            }

            .metric-item {
                padding: 10px 4px;
            }

            .news-side {
                margin-top: 24px;
            }

            .guide-actions {
                flex-direction: column;
                align-items: flex-start;
            }

            .convert-text small {
                display: none;
            }

            .footer-bottom {
                font-size: .8rem;
            }
        }
