/* roulang page: index */
:root {
            --primary: #00A862;
            --primary-dark: #008F52;
            --accent: #FF6A00;
            --bg-warm: #F7F5F1;
            --bg-white: #FFFFFF;
            --bg-section: #EFEDE8;
            --bg-dark: #1A1D1C;
            --text-title: #111413;
            --text-body: #3D4341;
            --text-muted: #8A918E;
            --border-light: #E8E4DC;
            --border-dark: #2A2E2D;
            --radius-lg: 16px;
            --radius-md: 12px;
            --radius-sm: 8px;
            --shadow-card: 0 2px 8px rgba(17, 20, 19, 0.04), 0 8px 24px rgba(17, 20, 19, 0.06);
            --shadow-hover: 0 4px 12px rgba(17, 20, 19, 0.08), 0 16px 40px rgba(17, 20, 19, 0.12);
            --shadow-btn: 3px 3px 0 #111413;
        }

        * {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', system-ui, sans-serif;
            background: var(--bg-warm);
            color: var(--text-body);
            line-height: 1.8;
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: color .2s ease;
        }

        img {
            max-width: 100%;
            display: block;
        }

        button:focus-visible,
        input:focus-visible,
        a:focus-visible {
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 168, 98, 0.4);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* ===== 导航 ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 64px;
            display: flex;
            align-items: center;
            background: rgba(255, 255, 255, 0.88);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            border-bottom: 1px solid transparent;
            z-index: 1000;
            transition: background .25s ease, box-shadow .25s ease, border-color .25s ease;
        }

        .site-header.scrolled {
            background: rgba(255, 255, 255, 0.95);
            border-bottom-color: var(--border-light);
            box-shadow: 0 4px 24px rgba(17, 20, 19, 0.07);
        }

        .logo-mark {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            font-weight: 900;
            font-size: 15px;
            letter-spacing: -0.5px;
            flex-shrink: 0;
            font-family: 'DIN Alternate', Inter, sans-serif;
        }

        .logo-text {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-title);
            letter-spacing: 0;
            white-space: nowrap;
        }

        .logo-text .highlight {
            color: var(--primary);
        }

        .nav-link {
            font-size: 15px;
            font-weight: 500;
            color: var(--text-body);
            padding: 6px 2px;
            position: relative;
            transition: color .2s ease;
        }

        .nav-link:hover {
            color: var(--primary);
        }

        .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }

        .nav-link.active::after {
            content: '';
            position: absolute;
            left: 0;
            right: 0;
            bottom: -2px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }

        .nav-search {
            width: 180px;
            height: 36px;
            border: 1px solid var(--border-light);
            border-radius: var(--radius-sm);
            background: var(--bg-warm);
            padding: 0 12px 0 34px;
            font-size: 13px;
            color: var(--text-title);
            transition: all .2s ease;
            background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='%238A918E' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'%3E%3Ccircle cx='11' cy='11' r='8'/%3E%3Cline x1='21' y1='21' x2='16.65' y2='16.65'/%3E%3C/svg%3E");
            background-repeat: no-repeat;
            background-size: 15px;
            background-position: 10px center;
        }

        .nav-search:focus {
            width: 240px;
            border-color: var(--primary);
            outline: none;
            box-shadow: 0 0 0 3px rgba(0, 168, 98, 0.15);
        }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--primary);
            color: #fff;
            font-size: 14px;
            font-weight: 700;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-btn);
            transition: all .15s ease;
        }

        .btn-primary:hover {
            transform: translate(1px, 1px);
            box-shadow: 2px 2px 0 #111413;
            background: var(--primary-dark);
        }

        .btn-primary:active {
            transform: translate(3px, 3px);
            box-shadow: none;
        }

        .btn-accent {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: var(--accent);
            color: #111413;
            font-size: 14px;
            font-weight: 700;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            border: none;
            cursor: pointer;
            box-shadow: var(--shadow-btn);
            transition: all .15s ease;
        }

        .btn-accent:hover {
            transform: translate(1px, 1px);
            box-shadow: 2px 2px 0 #111413;
            filter: brightness(0.95);
        }

        .btn-accent:active {
            transform: translate(3px, 3px);
            box-shadow: none;
        }

        .btn-ghost {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: transparent;
            color: #E8E4DC;
            font-size: 14px;
            font-weight: 600;
            padding: 10px 22px;
            border-radius: var(--radius-sm);
            border: 1px solid rgba(255, 255, 255, 0.4);
            cursor: pointer;
            transition: all .2s ease;
        }

        .btn-ghost:hover {
            border-color: #fff;
            background: rgba(255, 255, 255, 0.08);
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            background-color: var(--bg-dark);
            background-image: linear-gradient(135deg, rgba(0, 168, 98, 0.15) 0%, transparent 60%),
                url('/assets/images/backpic/back-2.webp');
            background-size: cover;
            background-position: center;
            padding: 140px 0 100px;
            overflow: hidden;
        }

        .hero::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: linear-gradient(90deg, rgba(26, 29, 28, 0.92) 0%, rgba(26, 29, 28, 0.75) 50%, rgba(26, 29, 28, 0.5) 100%);
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -40px;
            left: -60px;
            width: 280px;
            height: 280px;
            background: repeating-linear-gradient(135deg,
                    rgba(255, 255, 255, 0.05) 0px,
                    rgba(255, 255, 255, 0.05) 2px,
                    transparent 2px,
                    transparent 8px);
            transform: skewX(-12deg);
            pointer-events: none;
        }

        .hero-container {
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1.1fr 0.9fr;
            gap: 64px;
            align-items: center;
        }

        .hero-title {
            font-size: 44px;
            font-weight: 900;
            line-height: 1.15;
            letter-spacing: -0.5px;
            color: #fff;
            margin-bottom: 20px;
        }

        .hero-title .text-green {
            color: var(--primary);
        }

        .hero-title .text-orange {
            color: var(--accent);
        }

        .hero-subtitle {
            font-size: 16px;
            line-height: 1.8;
            color: #C9CECB;
            max-width: 520px;
            margin-bottom: 36px;
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(0, 168, 98, 0.15);
            border: 1px solid rgba(0, 168, 98, 0.3);
            color: #7CE0B5;
            font-size: 13px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 999px;
            margin-bottom: 24px;
        }

        .hero-badge .dot {
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: var(--primary);
            animation: pulse-dot 1.5s infinite;
        }

        @keyframes pulse-dot {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: 0.5;
                transform: scale(0.8);
            }
        }

        /* 比分卡 */
        .score-card {
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-hover);
            padding: 28px;
            position: relative;
            z-index: 2;
        }

        .league-tag {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            background: var(--bg-section);
            padding: 4px 10px;
            border-radius: 999px;
        }

        .team-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--text-title);
        }

        .score-number {
            font-size: 48px;
            font-weight: 900;
            color: var(--accent);
            font-family: 'DIN Alternate', 'Inter', sans-serif;
            line-height: 1;
        }

        .match-status {
            font-size: 12px;
            font-weight: 500;
            color: var(--primary);
            background: rgba(0, 168, 98, 0.08);
            padding: 3px 10px;
            border-radius: 999px;
        }

        .mini-stats-card {
            background: #fff;
            border-radius: 14px;
            box-shadow: var(--shadow-card);
            padding: 18px 22px;
            width: 70%;
            margin-left: auto;
            margin-top: -20px;
            position: relative;
            z-index: 3;
            border-left: 4px solid var(--primary);
        }

        .mini-stat-item {
            text-align: center;
        }

        .mini-stat-item .num {
            font-size: 26px;
            font-weight: 900;
            color: var(--primary);
            font-family: 'DIN Alternate', 'Inter', sans-serif;
            line-height: 1.2;
        }

        .mini-stat-item .label {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ===== 数据条 ===== */
        .stats-bar {
            background: var(--bg-section);
            padding: 48px 0;
            border-bottom: 1px solid var(--border-light);
        }

        .stat-item {
            text-align: center;
            padding: 16px 8px;
        }

        .stat-item .stat-num {
            font-size: 44px;
            font-weight: 900;
            color: var(--primary);
            font-family: 'DIN Alternate', 'Inter', sans-serif;
            line-height: 1.1;
            letter-spacing: -1px;
        }

        .stat-item .stat-label {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-muted);
            margin-top: 6px;
        }

        /* ===== 故事区 ===== */
        .story-section {
            padding: 100px 0;
        }

        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 64px;
            align-items: center;
        }

        .story-image {
            border-radius: var(--radius-lg);
            overflow: hidden;
            box-shadow: var(--shadow-card);
            position: relative;
        }

        .story-image img {
            width: 100%;
            height: 420px;
            object-fit: cover;
        }

        .story-image::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 50%, rgba(0, 0, 0, 0.3));
            border-radius: var(--radius-lg);
        }

        .timeline-item {
            position: relative;
            padding-left: 28px;
            padding-bottom: 28px;
            border-left: 2px solid var(--border-light);
        }

        .timeline-item:last-child {
            padding-bottom: 0;
        }

        .timeline-item::before {
            content: '';
            position: absolute;
            left: -7px;
            top: 4px;
            width: 12px;
            height: 12px;
            border-radius: 50%;
            background: var(--primary);
            box-shadow: 0 0 0 4px rgba(0, 168, 98, 0.15);
        }

        .timeline-year {
            font-size: 13px;
            font-weight: 700;
            color: var(--primary);
            font-family: 'DIN Alternate', 'Inter', sans-serif;
            letter-spacing: 1px;
        }

        .timeline-text {
            font-size: 14px;
            color: var(--text-body);
            margin-top: 4px;
            line-height: 1.7;
        }

        /* ===== 精选内容 ===== */
        .featured-section {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .section-title {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-title);
            line-height: 1.3;
        }

        .section-desc {
            font-size: 15px;
            color: var(--text-muted);
            margin-top: 8px;
        }

        .feature-card {
            background: var(--bg-warm);
            border-radius: var(--radius-lg);
            padding: 32px 28px;
            border: 1px solid var(--border-light);
            transition: all .2s ease;
            display: flex;
            flex-direction: column;
            height: 100%;
        }

        .feature-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
            background: #fff;
            border-color: transparent;
        }

        .feature-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(0, 168, 98, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--primary);
            font-size: 22px;
            margin-bottom: 20px;
        }

        .feature-card h3 {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-title);
            margin-bottom: 10px;
        }

        .feature-card p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.75;
            flex-grow: 1;
        }

        .feature-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            margin-top: 20px;
            transition: gap .2s ease;
        }

        .feature-link:hover {
            gap: 12px;
        }

        .feature-card-img {
            border-radius: 12px;
            overflow: hidden;
            margin-bottom: 20px;
        }

        .feature-card-img img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }

        /* ===== 资讯列表 ===== */
        .news-section {
            padding: 100px 0;
            background: var(--bg-section);
        }

        .news-main {
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            padding: 28px;
        }

        .news-list-item {
            display: flex;
            gap: 16px;
            padding: 18px 0;
            border-bottom: 1px solid var(--border-light);
            transition: background .2s ease;
            border-radius: 10px;
            padding-left: 8px;
            padding-right: 8px;
            margin: 0 -8px;
        }

        .news-list-item:last-child {
            border-bottom: none;
        }

        .news-list-item:hover {
            background: var(--bg-warm);
        }

        .news-thumb {
            width: 120px;
            height: 80px;
            border-radius: var(--radius-sm);
            overflow: hidden;
            flex-shrink: 0;
            background: var(--bg-section);
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .news-body {
            flex: 1;
        }

        .news-body h3 {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-title);
            line-height: 1.4;
            margin-bottom: 4px;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-body h3 a:hover {
            color: var(--primary);
        }

        .news-body p {
            font-size: 13px;
            color: var(--text-muted);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            margin-bottom: 6px;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 12px;
            color: var(--text-muted);
        }

        .news-meta .tag {
            background: rgba(0, 168, 98, 0.08);
            color: var(--primary);
            font-size: 11px;
            font-weight: 600;
            padding: 2px 8px;
            border-radius: 999px;
        }

        .news-sidebar {
            background: #fff;
            border-radius: var(--radius-lg);
            box-shadow: var(--shadow-card);
            padding: 24px;
        }

        .news-sidebar .sidebar-title {
            font-size: 16px;
            font-weight: 700;
            color: var(--text-title);
            margin-bottom: 18px;
            padding-bottom: 12px;
            border-bottom: 2px solid var(--primary);
            display: inline-block;
        }

        .hot-item {
            display: flex;
            align-items: baseline;
            gap: 12px;
            padding: 10px 0;
            border-bottom: 1px dashed var(--border-light);
            transition: color .2s ease;
        }

        .hot-item:last-child {
            border-bottom: none;
        }

        .hot-item:hover {
            color: var(--primary);
        }

        .hot-rank {
            font-size: 20px;
            font-weight: 900;
            font-family: 'DIN Alternate', 'Inter', sans-serif;
            color: #D0D4D1;
            line-height: 1;
            width: 22px;
            flex-shrink: 0;
        }

        .hot-item:nth-child(2) .hot-rank {
            color: var(--accent);
        }

        .hot-item:nth-child(3) .hot-rank {
            color: var(--accent);
        }

        .hot-item:nth-child(4) .hot-rank {
            color: var(--accent);
        }

        .hot-item .hot-title {
            font-size: 13px;
            font-weight: 500;
            color: var(--text-body);
            line-height: 1.5;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .empty-state {
            text-align: center;
            padding: 60px 20px;
            background: var(--bg-warm);
            border-radius: var(--radius-lg);
        }

        .empty-state .empty-icon {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            background: var(--bg-section);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin: 0 auto 16px;
            color: var(--text-muted);
        }

        .empty-state p {
            font-size: 14px;
            color: var(--text-muted);
            margin-bottom: 16px;
        }

        .empty-state .btn-subscribe {
            font-size: 14px;
            font-weight: 600;
            color: var(--primary);
            background: transparent;
            border: none;
            cursor: pointer;
            transition: color .2s ease;
        }

        .empty-state .btn-subscribe:hover {
            color: var(--primary-dark);
            text-decoration: underline;
        }

        /* ===== 信任背书 ===== */
        .trust-section {
            background: var(--bg-dark);
            padding: 100px 0;
        }

        .trust-section .section-title {
            color: #fff;
        }

        .trust-section .section-desc {
            color: #8A918E;
        }

        .partner-logo {
            height: 44px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(255, 255, 255, 0.06);
            border-radius: 12px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            color: #B8BEBB;
            font-size: 14px;
            font-weight: 600;
            transition: all .2s ease;
        }

        .partner-logo:hover {
            border-color: var(--primary);
            color: #fff;
            background: rgba(0, 168, 98, 0.08);
        }

        .testimonial-card {
            background: #fff;
            border-radius: var(--radius-lg);
            padding: 28px;
            box-shadow: var(--shadow-card);
            transition: all .2s ease;
            height: 100%;
        }

        .testimonial-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--shadow-hover);
        }

        .quote-icon {
            font-size: 28px;
            color: var(--primary);
            margin-bottom: 12px;
            line-height: 1;
        }

        .testimonial-card p {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.8;
            margin-bottom: 20px;
        }

        .testimonial-user {
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .testimonial-user .avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }

        .testimonial-user .name {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-title);
        }

        .testimonial-user .role {
            font-size: 12px;
            color: var(--text-muted);
        }

        /* ===== FAQ ===== */
        .faq-section {
            padding: 100px 0;
            background: var(--bg-white);
        }

        .faq-item {
            border: 1px solid var(--border-light);
            border-radius: var(--radius-md);
            padding: 24px 28px;
            margin-bottom: 16px;
            transition: box-shadow .2s ease, border-color .2s ease;
        }

        .faq-item:hover {
            border-color: var(--primary);
            box-shadow: var(--shadow-card);
        }

        .faq-q {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-title);
            margin-bottom: 8px;
            display: flex;
            gap: 10px;
            align-items: flex-start;
        }

        .faq-q .q-mark {
            color: var(--primary);
            flex-shrink: 0;
            font-weight: 900;
        }

        .faq-a {
            font-size: 14px;
            color: var(--text-body);
            line-height: 1.8;
            padding-left: 24px;
            color: var(--text-muted);
        }

        /* ===== CTA ===== */
        .cta-section {
            background: var(--primary);
            padding: 80px 0;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: repeating-linear-gradient(135deg,
                    rgba(0, 0, 0, 0.03) 0px,
                    rgba(0, 0, 0, 0.03) 2px,
                    transparent 2px,
                    transparent 10px);
            pointer-events: none;
        }

        .cta-container {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            flex-wrap: wrap;
        }

        .cta-title {
            font-size: 28px;
            font-weight: 800;
            color: #111413;
            line-height: 1.3;
        }

        .cta-sub {
            font-size: 15px;
            color: rgba(17, 20, 19, 0.75);
            margin-top: 8px;
        }

        .cta-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .cta-form input {
            height: 48px;
            min-width: 280px;
            border: none;
            border-radius: var(--radius-sm);
            padding: 0 16px;
            font-size: 14px;
            color: var(--text-title);
            background: #fff;
            transition: box-shadow .2s ease;
        }

        .cta-form input::placeholder {
            color: var(--text-muted);
        }

        .cta-form input:focus {
            outline: none;
            box-shadow: 0 0 0 3px rgba(255, 255, 255, 0.6);
        }

        .cta-form .btn-submit {
            height: 48px;
            background: var(--accent);
            color: #111413;
            font-size: 14px;
            font-weight: 700;
            padding: 0 28px;
            border: none;
            border-radius: var(--radius-sm);
            cursor: pointer;
            box-shadow: 3px 3px 0 #111413;
            transition: all .15s ease;
        }

        .cta-form .btn-submit:hover {
            transform: translate(1px, 1px);
            box-shadow: 2px 2px 0 #111413;
            filter: brightness(0.95);
        }

        .cta-form .btn-submit:active {
            transform: translate(3px, 3px);
            box-shadow: none;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--bg-dark);
            color: #8A918E;
            padding-top: 64px;
            padding-bottom: 0;
        }

        .footer-grid {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1.2fr;
            gap: 48px;
            padding-bottom: 48px;
        }

        .footer-brand .logo-text {
            color: #fff;
            font-size: 15px;
        }

        .footer-desc {
            font-size: 13px;
            line-height: 1.8;
            margin-top: 16px;
            color: #8A918E;
        }

        .footer-title {
            font-size: 14px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 18px;
        }

        .footer-links {
            list-style: none;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            font-size: 13px;
            color: #8A918E;
            transition: color .2s ease;
        }

        .footer-links a:hover {
            color: var(--primary);
        }

        .footer-contact {
            font-size: 13px;
            line-height: 1.8;
        }

        .footer-contact a {
            color: #8A918E;
        }

        .footer-contact a:hover {
            color: var(--primary);
        }

        .social-icon {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #B8BEBB;
            font-size: 15px;
            margin-right: 10px;
            transition: all .2s ease;
        }

        .social-icon:hover {
            background: var(--primary);
            color: #fff;
        }

        .footer-bottom {
            border-top: 1px solid var(--border-dark);
            padding: 20px 0;
            text-align: center;
            font-size: 13px;
            color: #6A716D;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1023px) {
            .hero-container {
                grid-template-columns: 1fr;
                gap: 48px;
            }

            .hero {
                padding: 120px 0 80px;
            }

            .story-grid {
                grid-template-columns: 1fr;
                gap: 40px;
            }

            .footer-grid {
                grid-template-columns: 1fr 1fr;
                gap: 32px;
            }

            .nav-search {
                width: 150px;
            }

            .nav-search:focus {
                width: 190px;
            }
        }

        @media (max-width: 767px) {
            .site-header {
                height: 56px;
            }

            .container {
                padding: 0 16px;
            }

            .hero {
                padding: 100px 0 64px;
            }

            .hero-title {
                font-size: 28px;
            }

            .hide-mobile {
                display: none !important;
            }

            .story-section,
            .featured-section,
            .news-section,
            .trust-section,
            .faq-section {
                padding: 56px 0;
            }

            .stats-bar {
                padding: 32px 0;
            }

            .stat-item .stat-num {
                font-size: 32px;
            }

            .footer-grid {
                grid-template-columns: 1fr;
                gap: 32px;
                padding-bottom: 32px;
            }

            .cta-container {
                flex-direction: column;
                align-items: flex-start;
            }

            .cta-form {
                width: 100%;
            }

            .cta-form input {
                min-width: 0;
                flex: 1;
                width: 100%;
            }

            .cta-form .btn-submit {
                width: 100%;
            }

            .news-list-item {
                flex-direction: row;
            }

            .news-thumb {
                width: 88px;
                height: 64px;
            }

            .hero-title {
                font-size: 26px;
            }

            .nav-search {
                display: none;
            }

            .btn-desktop {
                display: none;
            }

            .section-title {
                font-size: 20px;
            }

            .score-number {
                font-size: 36px;
            }

            .mini-stats-card {
                width: 90%;
            }
        }

        @media (max-width: 520px) {
            .news-thumb {
                display: none;
            }

            .stat-item .stat-num {
                font-size: 28px;
            }

            .hero-badge {
                font-size: 12px;
            }

            .cta-title {
                font-size: 22px;
            }

            .footer-bottom {
                font-size: 12px;
            }
        }

        /* 移动菜单抽屉 */
        .mobile-menu {
            position: fixed;
            top: 0;
            right: 0;
            bottom: 0;
            width: 280px;
            background: #fff;
            z-index: 1100;
            padding: 24px;
            box-shadow: -4px 0 24px rgba(17, 20, 19, 0.15);
            transition: transform .3s ease;
        }

        .mobile-menu.hidden {
            transform: translateX(100%);
        }

        .mobile-menu-backdrop {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            bottom: 0;
            background: rgba(17, 20, 19, 0.5);
            z-index: 1050;
            backdrop-filter: blur(2px);
        }

/* roulang page: article */
:root {
  --primary: #00A862;
  --primary-dark: #008E52;
  --primary-light: #E8F7EF;
  --accent: #FF6A00;
  --accent-dark: #E55C00;
  --dark: #1A1D1C;
  --dark-soft: #242827;
  --light-bg: #F7F5F1;
  --light-gray: #EFEDE8;
  --card-bg: #FFFFFF;
  --border: #E8E4DC;
  --border-dark: #2A2E2D;
  --text-main: #111413;
  --text-body: #3D4341;
  --text-muted: #8A918E;
  --radius-lg: 16px;
  --radius-md: 10px;
  --radius-sm: 8px;
  --shadow-card: 0 2px 8px rgba(17,20,19,0.04), 0 8px 24px rgba(17,20,19,0.06);
  --shadow-hover: 0 4px 12px rgba(17,20,19,0.08), 0 16px 40px rgba(17,20,19,0.12);
}

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, "PingFang SC", "Microsoft YaHei", "Noto Sans SC", sans-serif;
  background: var(--light-bg);
  color: var(--text-body);
  font-size: 16px;
  line-height: 1.8;
  -webkit-font-smoothing: antialiased;
}

.container {
  max-width: 1280px;
  margin: 0 auto;
  padding: 0 24px;
}

a {
  text-decoration: none;
  color: inherit;
  transition: color 0.2s ease;
}

img {
  max-width: 100%;
  display: block;
}

button, input {
  font-family: inherit;
}

/* ===== 导航 ===== */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 100;
  height: 64px;
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  transition: box-shadow 0.3s ease, background 0.3s ease;
}

.site-header.scrolled {
  background: rgba(255,255,255,0.98);
  box-shadow: 0 4px 24px rgba(17,20,19,0.06);
}

.nav-container {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}

.logo-mark {
  width: 36px;
  height: 36px;
  background: var(--primary);
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 15px;
  font-weight: 800;
  font-family: "DIN Alternate", "Inter", sans-serif;
  letter-spacing: -0.5px;
  box-shadow: 2px 2px 0 var(--dark);
}

.logo-text {
  font-size: 16px;
  font-weight: 700;
  color: var(--text-main);
  letter-spacing: -0.2px;
  white-space: nowrap;
}

.logo-text .highlight {
  color: var(--primary);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 4px;
  flex: 1;
  justify-content: center;
}

.nav-link {
  position: relative;
  padding: 8px 16px;
  font-size: 15px;
  font-weight: 500;
  color: var(--text-body);
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.nav-link:hover {
  color: var(--primary);
  background: var(--primary-light);
}

.nav-link.active {
  color: var(--primary);
  font-weight: 600;
}

.nav-link.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 16px;
  right: 16px;
  height: 2px;
  background: var(--primary);
  border-radius: 2px;
}

.nav-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}

.search-box {
  position: relative;
  display: flex;
  align-items: center;
}

.search-box svg {
  position: absolute;
  left: 12px;
  color: var(--text-muted);
  pointer-events: none;
}

.search-box input {
  width: 180px;
  height: 40px;
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  background: var(--light-bg);
  padding: 0 12px 0 36px;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  transition: all 0.3s ease;
}

.search-box input:focus {
  width: 240px;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(0,168,98,0.15);
}

.btn-login {
  font-size: 14px;
  font-weight: 500;
  color: var(--text-body);
  padding: 8px 14px;
  border-radius: var(--radius-sm);
  transition: all 0.2s ease;
}

.btn-login:hover {
  background: var(--light-gray);
  color: var(--text-main);
}

.btn-start {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 40px;
  padding: 0 20px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 3px 3px 0 var(--dark);
  transition: all 0.2s ease;
}

.btn-start:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 2px 2px 0 var(--dark);
}

.btn-start:active {
  transform: translateY(1px);
  box-shadow: 1px 1px 0 var(--dark);
}

.hamburger {
  display: none;
  width: 40px;
  height: 40px;
  border: none;
  background: transparent;
  border-radius: var(--radius-sm);
  cursor: pointer;
  align-items: center;
  justify-content: center;
}

.hamburger:hover {
  background: var(--light-gray);
}

.hamburger svg {
  width: 22px;
  height: 22px;
}

.mobile-drawer {
  position: fixed;
  top: 0;
  right: 0;
  width: 300px;
  height: 100vh;
  background: #fff;
  z-index: 200;
  padding: 28px 20px;
  transform: translateX(100%);
  transition: transform 0.3s ease;
  box-shadow: -8px 0 40px rgba(17,20,19,0.15);
  overflow-y: auto;
}

.mobile-drawer.open {
  transform: translateX(0);
}

.drawer-backdrop {
  position: fixed;
  inset: 0;
  background: rgba(17,20,19,0.6);
  z-index: 190;
  opacity: 0;
  visibility: hidden;
  transition: all 0.3s ease;
}

.drawer-backdrop.open {
  opacity: 1;
  visibility: visible;
}

.drawer-close {
  position: absolute;
  top: 16px;
  right: 16px;
  width: 36px;
  height: 36px;
  border: none;
  background: var(--light-gray);
  border-radius: 50%;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--text-body);
}

.drawer-close:hover {
  background: var(--border);
}

/* ===== 页脚 ===== */
.site-footer {
  background: var(--dark);
  color: #C9CECB;
  padding: 64px 0 0;
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.2fr;
  gap: 48px;
  padding-bottom: 48px;
  border-bottom: 1px solid var(--border-dark);
}

.footer-brand .logo-text {
  color: #fff;
}

.footer-brand .highlight {
  color: var(--primary);
}

.footer-desc {
  margin-top: 16px;
  font-size: 14px;
  line-height: 1.7;
  color: #8A918E;
}

.footer-title {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 16px;
}

.footer-links {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links a {
  font-size: 14px;
  color: #8A918E;
  transition: color 0.2s ease;
}

.footer-links a:hover {
  color: var(--primary);
}

.footer-contact p {
  font-size: 14px;
  color: #8A918E;
  margin-bottom: 8px;
}

.footer-contact a {
  color: #C9CECB;
}

.footer-contact a:hover {
  color: var(--primary);
}

.social-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 36px;
  height: 36px;
  background: var(--dark-soft);
  border-radius: 50%;
  color: #8A918E;
  margin-right: 8px;
  transition: all 0.2s ease;
}

.social-icon:hover {
  background: var(--primary);
  color: #fff;
}

.footer-bottom {
  padding: 24px 0;
  text-align: center;
  font-size: 13px;
  color: #6B7270;
}

.footer-bottom a {
  color: #8A918E;
}

/* ===== 面包屑 ===== */
.breadcrumb-area {
  padding-top: 96px;
  background: var(--light-bg);
  border-bottom: 1px solid var(--border);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 13px;
  color: var(--text-muted);
  padding: 16px 0;
  overflow: hidden;
  white-space: nowrap;
}

.breadcrumb a {
  color: var(--text-muted);
  transition: color 0.2s ease;
}

.breadcrumb a:hover {
  color: var(--primary);
}

.breadcrumb .sep {
  color: #C9CECB;
}

.breadcrumb .current {
  color: var(--text-body);
  font-weight: 500;
  overflow: hidden;
  text-overflow: ellipsis;
  max-width: 320px;
}

/* ===== 文章页 ===== */
.article-wrap {
  padding: 48px 0 80px;
}

.post-container {
  max-width: 860px;
  margin: 0 auto;
}

.post-header {
  text-align: center;
  margin-bottom: 32px;
}

.post-header h1 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.3;
  color: var(--text-main);
  letter-spacing: -0.3px;
  margin-bottom: 16px;
}

.post-meta {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  font-size: 13px;
  color: var(--text-muted);
  flex-wrap: wrap;
}

.post-meta .meta-item {
  display: inline-flex;
  align-items: center;
  gap: 6px;
}

.post-meta .meta-author {
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.post-meta .avatar {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  font-weight: 600;
}

.post-meta .category-badge {
  display: inline-block;
  padding: 4px 12px;
  background: var(--primary-light);
  color: var(--primary);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
}

.post-cover {
  margin-bottom: 40px;
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-card);
}

.post-cover img {
  width: 100%;
  aspect-ratio: 16/9;
  object-fit: cover;
}

.post-content {
  max-width: 720px;
  margin: 0 auto 48px;
  font-size: 16px;
  line-height: 1.85;
  color: var(--text-body);
  word-break: break-word;
}

.post-content p {
  margin-bottom: 1.5em;
}

.post-content h1,
.post-content h2,
.post-content h3 {
  color: var(--text-main);
  font-weight: 700;
  line-height: 1.4;
  margin-top: 1.8em;
  margin-bottom: 0.6em;
}

.post-content h1 { font-size: 30px; }
.post-content h2 { font-size: 24px; }
.post-content h3 { font-size: 19px; margin-top: 1.5em; }

.post-content ul,
.post-content ol {
  margin: 0 0 1.5em;
  padding-left: 1.6em;
}

.post-content ul li,
.post-content ol li {
  margin-bottom: 0.5em;
}

.post-content blockquote {
  border-left: 4px solid var(--primary);
  background: var(--light-gray);
  padding: 18px 24px;
  border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
  font-size: 14px;
  color: var(--text-body);
  margin: 1.5em 0;
  line-height: 1.7;
}

.post-content blockquote p {
  margin-bottom: 0;
}

.post-content img {
  border-radius: 12px;
  margin: 1.5em auto;
}

.post-content table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
  border-radius: var(--radius-sm);
  overflow: hidden;
  margin: 1.5em 0;
  font-size: 14px;
}

.post-content table th {
  background: var(--primary);
  color: #fff;
  padding: 12px 16px;
  text-align: left;
  font-weight: 600;
}

.post-content table td {
  padding: 12px 16px;
  border-bottom: 1px solid var(--border);
}

.post-content table tr:nth-child(even) td {
  background: var(--light-bg);
}

.post-content table tr:last-child td {
  border-bottom: none;
}

.post-content pre {
  background: var(--dark);
  color: #D8DEE4;
  border-radius: 12px;
  padding: 20px;
  overflow-x: auto;
  margin: 1.5em 0;
  font-family: "SF Mono", "Fira Code", Consolas, monospace;
  font-size: 14px;
  line-height: 1.7;
}

.post-content code {
  font-family: "SF Mono", "Fira Code", Consolas, monospace;
  font-size: 0.9em;
  background: var(--light-gray);
  padding: 2px 6px;
  border-radius: 4px;
  color: var(--primary-dark);
}

.post-content pre code {
  background: transparent;
  color: inherit;
  padding: 0;
}

.post-content a {
  color: var(--primary);
  text-decoration: underline;
  text-underline-offset: 2px;
}

.post-content a:hover {
  color: var(--primary-dark);
}

/* 空状态 */
.empty-state {
  text-align: center;
  padding: 80px 24px;
  background: #fff;
  border-radius: var(--radius-lg);
  border: 1px dashed var(--border);
  max-width: 720px;
  margin: 0 auto;
}

.empty-state .empty-icon {
  width: 72px;
  height: 72px;
  margin: 0 auto 20px;
  border-radius: 50%;
  background: var(--light-gray);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 28px;
  color: var(--text-muted);
}

.empty-state h2 {
  font-size: 20px;
  color: var(--text-main);
  margin-bottom: 8px;
}

.empty-state p {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 24px;
}

.empty-state .btn-home {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  height: 44px;
  padding: 0 28px;
  background: var(--primary);
  color: #fff;
  border-radius: var(--radius-sm);
  font-size: 14px;
  font-weight: 600;
  box-shadow: 3px 3px 0 var(--dark);
  transition: all 0.2s ease;
}

.empty-state .btn-home:hover {
  background: var(--primary-dark);
  transform: translateY(-1px);
  box-shadow: 2px 2px 0 var(--dark);
}

/* ===== 标签 + 分享 ===== */
.post-tags {
  max-width: 720px;
  margin: 0 auto 48px;
  padding: 24px 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.tag-group {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
}

.tag-capsule {
  display: inline-block;
  padding: 5px 16px;
  background: var(--light-gray);
  color: var(--text-body);
  border-radius: 999px;
  font-size: 12px;
  font-weight: 500;
  transition: all 0.2s ease;
}

.tag-capsule:hover {
  background: var(--primary-light);
  color: var(--primary);
}

.share-group {
  display: flex;
  align-items: center;
  gap: 8px;
}

.share-label {
  font-size: 13px;
  color: var(--text-muted);
  margin-right: 4px;
}

.share-btn {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  border: none;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.2s ease;
  background: var(--light-gray);
  color: var(--text-body);
}

.share-btn:hover {
  background: var(--primary);
  color: #fff;
  transform: translateY(-2px);
}

.share-btn.wechat:hover { background: #07C160; }
.share-btn.weibo:hover { background: #E6162D; }
.share-btn.qq:hover { background: #12B7F5; }

/* ===== 上一篇/下一篇 ===== */
.post-nav {
  max-width: 720px;
  margin: 0 auto 64px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}

.post-nav-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 20px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  transition: all 0.25s ease;
  min-height: 90px;
  justify-content: center;
}

.post-nav-item:hover {
  border-color: var(--primary);
  box-shadow: var(--shadow-hover);
  transform: translateY(-2px);
}

.post-nav-item .nav-label {
  font-size: 12px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

.post-nav-item .nav-title {
  font-size: 14px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.post-nav-item:hover .nav-title {
  color: var(--primary);
}

.post-nav-item.next {
  text-align: right;
  align-items: flex-end;
}

/* ===== 相关推荐 ===== */
.related-section {
  background: #fff;
  padding: 72px 0;
  border-top: 1px solid var(--border);
}

.section-head {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  margin-bottom: 36px;
}

.section-title {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-main);
  position: relative;
  padding-left: 16px;
}

.section-title::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 4px;
  height: 22px;
  background: var(--primary);
  border-radius: 2px;
}

.related-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.related-card {
  background: var(--card-bg);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all 0.25s ease;
}

.related-card:hover {
  box-shadow: var(--shadow-hover);
  transform: translateY(-4px);
  border-color: transparent;
}

.related-card .card-img {
  aspect-ratio: 16/10;
  overflow: hidden;
}

.related-card .card-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s ease;
}

.related-card:hover .card-img img {
  transform: scale(1.05);
}

.related-card .card-body {
  padding: 18px;
}

.related-card .card-title {
  font-size: 15px;
  font-weight: 600;
  color: var(--text-main);
  line-height: 1.5;
  margin-bottom: 10px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.2s ease;
}

.related-card:hover .card-title {
  color: var(--primary);
}

.related-card .card-date {
  font-size: 13px;
  color: var(--text-muted);
  display: flex;
  align-items: center;
  gap: 6px;
}

/* ===== CTA 订阅 ===== */
.cta-subscribe {
  background: var(--primary);
  padding: 64px 0;
  position: relative;
  overflow: hidden;
}

.cta-subscribe::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(17,20,19,0.08) 0%, transparent 50%);
}

.cta-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
}

.cta-copy {
  flex: 1;
}

.cta-copy h2 {
  font-size: 28px;
  font-weight: 800;
  color: var(--dark);
  margin-bottom: 8px;
  letter-spacing: -0.3px;
}

.cta-copy p {
  font-size: 15px;
  color: rgba(17,20,19,0.8);
  line-height: 1.6;
}

.cta-form {
  display: flex;
  gap: 12px;
  flex-shrink: 0;
  align-items: center;
}

.cta-form input {
  width: 280px;
  height: 48px;
  border: none;
  border-radius: var(--radius-sm);
  padding: 0 16px;
  font-size: 14px;
  color: var(--text-main);
  outline: none;
  background: #fff;
  transition: box-shadow 0.2s ease;
}

.cta-form input:focus {
  box-shadow: 0 0 0 3px rgba(255,255,255,0.6);
}

.cta-form input::placeholder {
  color: var(--text-muted);
}

.cta-form .btn-accent {
  height: 48px;
  padding: 0 28px;
  border: none;
  border-radius: var(--radius-sm);
  background: var(--accent);
  color: #fff;
  font-size: 15px;
  font-weight: 700;
  cursor: pointer;
  box-shadow: 3px 3px 0 var(--dark);
  transition: all 0.2s ease;
  white-space: nowrap;
}

.cta-form .btn-accent:hover {
  background: var(--accent-dark);
  transform: translateY(-1px);
  box-shadow: 2px 2px 0 var(--dark);
}

/* ===== 响应式 ===== */
@media (max-width: 1024px) {
  .nav-links {
    display: none;
  }
  .search-box input {
    width: 150px;
  }
  .search-box input:focus {
    width: 200px;
  }
  .hamburger {
    display: flex;
  }
  .related-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: 32px;
  }
}

@media (max-width: 768px) {
  .container {
    padding: 0 16px;
  }
  .site-header {
    height: 56px;
  }
  .nav-actions .search-box,
  .nav-actions .btn-login,
  .nav-actions .btn-start {
    display: none;
  }
  .hamburger {
    display: flex;
  }
  .breadcrumb-area {
    padding-top: 72px;
  }
  .breadcrumb .current {
    max-width: 180px;
  }
  .post-header h1 {
    font-size: 24px;
  }
  .post-content {
    font-size: 15px;
  }
  .post-content h2 {
    font-size: 21px;
  }
  .post-content h3 {
    font-size: 18px;
  }
  .post-nav {
    grid-template-columns: 1fr;
  }
  .post-nav-item.next {
    text-align: left;
    align-items: flex-start;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .cta-inner {
    flex-direction: column;
    align-items: flex-start;
  }
  .cta-form {
    width: 100%;
    flex-direction: column;
    align-items: stretch;
  }
  .cta-form input {
    width: 100%;
  }
  .cta-form .btn-accent {
    width: 100%;
  }
  .footer-grid {
    grid-template-columns: 1fr;
    gap: 32px;
  }
  .post-tags {
    flex-direction: column;
    align-items: flex-start;
  }
  .share-group {
    align-self: flex-end;
  }
}

@media (max-width: 520px) {
  .post-meta {
    gap: 12px;
    font-size: 12px;
  }
  .post-meta .meta-item.hide-mobile {
    display: none;
  }
  .section-title {
    font-size: 20px;
  }
  .related-grid {
    grid-template-columns: 1fr;
  }
  .cta-copy h2 {
    font-size: 22px;
  }
}

/* roulang page: category1 */
:root {
        --primary: #00A862;
        --primary-dark: #009254;
        --accent: #FF6A00;
        --accent-dark: #E65E00;
        --dark: #1A1D1C;
        --warm: #F7F5F1;
        --gray-light: #EFEDE8;
        --border: #E8E4DC;
        --dark-border: #2A2E2D;
        --ink: #111413;
        --body: #3D4341;
        --muted: #8A918E;
        --error: #D93026;
        --success: #00A862;
        --warning: #F5A623;
        --radius-card: 16px;
        --radius-small: 10px;
        --radius-btn: 8px;
        --radius-pill: 999px;
        --shadow-card: 0 2px 8px rgba(17,20,19,0.04), 0 8px 24px rgba(17,20,19,0.06);
        --shadow-hover: 0 4px 12px rgba(17,20,19,0.08), 0 16px 40px rgba(17,20,19,0.12);
        --section-gap: 100px;
    }
    * {
        margin: 0;
        padding: 0;
        box-sizing: border-box;
    }
    html {
        scroll-behavior: smooth;
    }
    body {
        font-family: 'PingFang SC', 'Microsoft YaHei', 'Noto Sans SC', -apple-system, sans-serif;
        background: var(--warm);
        color: var(--body);
        line-height: 1.8;
        font-size: 15px;
        letter-spacing: 0.2px;
    }
    .container {
        max-width: 1280px;
        margin: 0 auto;
        padding: 0 24px;
    }
    a {
        color: inherit;
    }
    img {
        max-width: 100%;
    }

    /* ===== Header ===== */
    .site-header {
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        z-index: 100;
        height: 64px;
        background: rgba(255, 255, 255, 0.92);
        backdrop-filter: blur(14px);
        -webkit-backdrop-filter: blur(14px);
        border-bottom: 1px solid var(--border);
        transition: box-shadow .2s ease, background .2s ease;
    }
    .site-header.scrolled {
        box-shadow: 0 4px 24px rgba(17, 20, 19, .08);
        background: rgba(255, 255, 255, .96);
    }
    .site-header-inner {
        height: 64px;
        display: flex;
        align-items: center;
        gap: 20px;
    }
    .logo {
        display: flex;
        align-items: center;
        gap: 10px;
        text-decoration: none;
        flex-shrink: 0;
    }
    .logo-mark {
        width: 34px;
        height: 34px;
        background: var(--primary);
        color: #fff;
        border-radius: 10px;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 14px;
        font-family: 'DIN Alternate', 'Inter', sans-serif;
        box-shadow: 2px 2px 0 rgba(17, 20, 19, .12);
        flex-shrink: 0;
    }
    .logo-text {
        font-size: 16px;
        font-weight: 700;
        color: var(--ink);
        letter-spacing: -0.2px;
        white-space: nowrap;
    }
    .logo-text .highlight {
        color: var(--primary);
    }
    .nav-center {
        display: flex;
        gap: 4px;
    }
    .nav-link {
        display: block;
        padding: 8px 14px;
        font-size: 15px;
        font-weight: 500;
        color: var(--body);
        text-decoration: none;
        border-radius: 8px;
        position: relative;
        transition: color .18s ease, background .18s ease;
    }
    .nav-link:hover {
        color: var(--primary);
        background: rgba(0, 168, 98, .06);
    }
    .nav-link.active {
        color: var(--primary);
        font-weight: 600;
    }
    .nav-link.active::after {
        content: '';
        position: absolute;
        bottom: 2px;
        left: 14px;
        right: 14px;
        height: 2px;
        background: var(--primary);
        border-radius: 2px;
    }
    .nav-right {
        display: flex;
        align-items: center;
        gap: 12px;
        margin-left: auto;
    }
    .search-box {
        position: relative;
    }
    .search-box input {
        width: 180px;
        height: 36px;
        padding: 0 12px 0 34px;
        border: 1px solid var(--border);
        border-radius: 8px;
        background: #fff;
        font-size: 13px;
        color: var(--ink);
        outline: none;
        transition: width .2s ease, border-color .2s ease, box-shadow .2s ease;
    }
    .search-box input:focus {
        width: 240px;
        border-color: var(--primary);
        box-shadow: 0 0 0 3px rgba(0, 168, 98, .14);
    }
    .search-box .search-icon {
        position: absolute;
        left: 10px;
        top: 50%;
        transform: translateY(-50%);
        color: var(--muted);
        font-size: 13px;
        pointer-events: none;
    }
    .login-btn {
        font-size: 14px;
        font-weight: 500;
        color: var(--body);
        text-decoration: none;
        padding: 6px 10px;
        border-radius: 8px;
        transition: background .18s, color .18s;
    }
    .login-btn:hover {
        background: var(--gray-light);
        color: var(--ink);
    }
    .start-btn {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        height: 36px;
        padding: 0 16px;
        background: var(--primary);
        color: #fff;
        font-size: 14px;
        font-weight: 600;
        border-radius: 8px;
        text-decoration: none;
        box-shadow: 2px 2px 0 rgba(17, 20, 19, .15);
        transition: all .18s ease;
    }
    .start-btn:hover {
        background: var(--primary-dark);
        transform: translateY(-1px);
        box-shadow: 3px 3px 0 rgba(17, 20, 19, .18);
    }
    .start-btn:active {
        transform: translateY(1px);
        box-shadow: 1px 1px 0 rgba(17, 20, 19, .15);
    }
    .burger-btn {
        display: none;
        width: 42px;
        height: 42px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: #fff;
        color: var(--ink);
        align-items: center;
        justify-content: center;
        cursor: pointer;
        transition: border-color .18s, color .18s;
    }
    .burger-btn:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

    /* ===== Mobile Menu ===== */
    .mobile-overlay {
        position: fixed;
        inset: 0;
        background: rgba(17, 20, 19, .5);
        z-index: 105;
        opacity: 0;
        pointer-events: none;
        transition: opacity .2s ease;
    }
    .mobile-overlay.open {
        opacity: 1;
        pointer-events: auto;
    }
    .mobile-menu {
        position: fixed;
        top: 0;
        right: -320px;
        bottom: 0;
        width: 280px;
        background: #fff;
        z-index: 110;
        padding: 84px 20px 30px;
        box-shadow: -8px 0 32px rgba(17, 20, 19, .12);
        transition: right .22s ease-out;
        overflow-y: auto;
    }
    .mobile-menu.open {
        right: 0;
    }
    .mobile-close {
        position: absolute;
        top: 16px;
        right: 16px;
        width: 38px;
        height: 38px;
        border: 1px solid var(--border);
        border-radius: 10px;
        background: #fff;
        color: var(--ink);
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: border-color .18s, color .18s;
    }
    .mobile-close:hover {
        border-color: var(--primary);
        color: var(--primary);
    }

    /* ===== Hero ===== */
    .page-hero {
        position: relative;
        padding: 140px 0 90px;
        background-color: var(--dark);
        background-image: linear-gradient(120deg, rgba(26, 29, 28, .94) 0%, rgba(26, 29, 28, .78) 45%, rgba(26, 29, 28, .55) 100%), url('/assets/images/backpic/back-1.png');
        background-size: cover;
        background-position: center;
        color: #fff;
        overflow: hidden;
    }
    .page-hero::after {
        content: '';
        position: absolute;
        top: -50%;
        right: -8%;
        width: 520px;
        height: 520px;
        background: radial-gradient(circle, rgba(0, 168, 98, .35), transparent 70%);
        pointer-events: none;
    }
    .hero-lines {
        position: absolute;
        bottom: 0;
        left: 0;
        right: 0;
        height: 150px;
        background: repeating-linear-gradient(-45deg, transparent, transparent 22px, rgba(255, 255, 255, .025) 22px, rgba(255, 255, 255, .025) 23px), linear-gradient(transparent, rgba(26, 29, 28, .65) 100%);
        pointer-events: none;
        z-index: 0;
    }
    .hero-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        padding: 6px 14px;
        font-size: 12px;
        font-weight: 600;
        color: var(--primary);
        background: rgba(0, 168, 98, .12);
        border: 1px solid rgba(0, 168, 98, .35);
        border-radius: 999px;
        letter-spacing: .3px;
    }
    .hero-badge .dot {
        width: 7px;
        height: 7px;
        border-radius: 50%;
        background: var(--primary);
        animation: pulse 1.6s infinite;
    }
    @keyframes pulse {
        0%,
        100% {
            opacity: 1;
        }
        50% {
            opacity: .4;
        }
    }
    .hero-title {
        font-size: 42px;
        font-weight: 900;
        line-height: 1.2;
        color: #fff;
        letter-spacing: -0.5px;
        margin-top: 18px;
    }
    .hero-title .highlight {
        color: var(--primary);
    }
    .hero-desc {
        font-size: 16px;
        color: #C9CECB;
        line-height: 1.8;
        margin-top: 18px;
        max-width: 560px;
    }
    .score-card {
        background: #fff;
        border-radius: 16px;
        padding: 28px;
        box-shadow: 0 8px 32px rgba(17, 20, 19, .18);
        max-width: 380px;
        margin-left: auto;
        position: relative;
        z-index: 2;
    }
    .team-badge {
        width: 40px;
        height: 40px;
        border-radius: 50%;
        background: var(--gray-light);
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto;
        font-size: 12px;
        font-weight: 700;
        color: var(--ink);
    }
    .score-nums {
        font-family: 'DIN Alternate', 'Inter', sans-serif;
        font-size: 42px;
        font-weight: 900;
        color: var(--accent);
        letter-spacing: 2px;
        line-height: 1;
        padding: 0 12px;
    }
    .mini-stat-card {
        background: #fff;
        border-radius: 14px;
        padding: 18px 22px;
        box-shadow: 0 4px 20px rgba(17, 20, 19, .14);
        max-width: 280px;
        margin: -28px 0 0 -30px;
        position: relative;
        z-index: 3;
    }
    .mini-stat-num {
        font-family: 'DIN Alternate', 'Inter', sans-serif;
        font-size: 22px;
        font-weight: 900;
        color: var(--primary);
        line-height: 1.2;
    }
    .mini-stat-label {
        font-size: 12px;
        color: var(--muted);
        margin-top: 2px;
    }

    /* ===== Buttons ===== */
    .btn-primary {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        height: 46px;
        padding: 0 24px;
        background: var(--primary);
        color: #fff;
        font-size: 15px;
        font-weight: 700;
        border-radius: 10px;
        text-decoration: none;
        box-shadow: 3px 3px 0 var(--ink);
        transition: transform .15s ease, box-shadow .15s ease, background .15s ease;
    }
    .btn-primary:hover {
        transform: translateY(-1px);
        box-shadow: 4px 4px 0 var(--ink);
        background: var(--primary-dark);
    }
    .btn-primary:active {
        transform: translateY(2px);
        box-shadow: 1px 1px 0 var(--ink);
    }
    .btn-outline {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        height: 46px;
        padding: 0 24px;
        background: transparent;
        color: #fff;
        font-size: 15px;
        font-weight: 600;
        border: 1.5px solid rgba(255, 255, 255, .65);
        border-radius: 10px;
        text-decoration: none;
        transition: background .18s ease, border-color .18s, color .18s;
    }
    .btn-outline:hover {
        background: rgba(255, 255, 255, .1);
        border-color: #fff;
        color: #fff;
    }
    .btn-outline:active {
        background: rgba(255, 255, 255, .18);
    }
    .btn-more {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        height: 40px;
        padding: 0 18px;
        border: 1.5px solid var(--border);
        border-radius: 10px;
        background: #fff;
        color: var(--ink);
        font-size: 14px;
        font-weight: 600;
        text-decoration: none;
        transition: all .18s ease;
    }
    .btn-more:hover {
        border-color: var(--primary);
        color: var(--primary);
        background: rgba(0, 168, 98, .04);
    }

    /* ===== Stats ===== */
    .stats-bar {
        background: var(--gray-light);
        padding: 40px 0;
        border-bottom: 1px solid var(--border);
    }
    .stat-num {
        font-family: 'DIN Alternate', 'Inter', sans-serif;
        font-weight: 900;
        font-size: 44px;
        color: var(--primary);
        line-height: 1.1;
    }
    .stat-label {
        font-size: 13px;
        color: var(--muted);
        margin-top: 4px;
        font-weight: 500;
    }

    /* ===== Section ===== */
    .section-gap {
        padding: var(--section-gap) 0;
    }
    .section-kicker {
        display: inline-block;
        padding: 4px 12px;
        background: rgba(0, 168, 98, .1);
        color: var(--primary);
        font-size: 12px;
        font-weight: 600;
        border-radius: 999px;
        margin-bottom: 12px;
        letter-spacing: .5px;
    }
    .section-title {
        font-size: 24px;
        font-weight: 700;
        color: var(--ink);
        line-height: 1.3;
        letter-spacing: -0.2px;
    }
    .section-sub {
        font-size: 15px;
        color: var(--muted);
    }

    /* ===== Cards ===== */
    .card-base {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: var(--radius-card);
        box-shadow: var(--shadow-card);
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
    }
    .card-base:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(0, 168, 98, .3);
    }
    .tag {
        display: inline-flex;
        align-items: center;
        padding: 3px 10px;
        background: rgba(0, 168, 98, .1);
        color: var(--primary);
        font-size: 11px;
        font-weight: 600;
        border-radius: 999px;
    }
    .content-card-img {
        height: 160px;
        overflow: hidden;
        border-radius: 16px 16px 0 0;
    }
    .content-card-img img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform .24s ease;
    }
    .content-card:hover .content-card-img img {
        transform: scale(1.04);
    }
    .card-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        margin-top: 16px;
        font-size: 13px;
        font-weight: 600;
        color: var(--primary);
        text-decoration: none;
        transition: gap .18s ease;
    }
    .card-link i {
        transition: transform .18s ease;
    }
    .card-link:hover {
        gap: 10px;
    }
    .card-link:hover i {
        transform: translateX(2px);
    }

    /* ===== Feature Cards ===== */
    .feature-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px 28px;
        transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
    }
    .feature-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
        border-color: rgba(0, 168, 98, .3);
    }
    .feature-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: var(--primary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 20px;
        margin-bottom: 20px;
        box-shadow: 2px 2px 0 rgba(17, 20, 19, .14);
    }
    .feature-card h3 {
        font-size: 18px;
        font-weight: 600;
        color: var(--ink);
    }
    .feature-card p {
        font-size: 14px;
        color: var(--muted);
        margin-top: 10px;
        line-height: 1.8;
    }

    /* ===== Moment Cards ===== */
    .moment-card {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 16px;
        padding: 32px 28px;
        text-align: center;
        transition: transform .2s ease, box-shadow .2s ease;
    }
    .moment-card:hover {
        transform: translateY(-4px);
        box-shadow: var(--shadow-hover);
    }
    .moment-icon {
        width: 52px;
        height: 52px;
        margin: 0 auto 16px;
        border-radius: 14px;
        background: rgba(0, 168, 98, .1);
        color: var(--primary);
        display: flex;
        align-items: center;
        justify-content: center;
        font-size: 22px;
    }
    .moment-card h3 {
        font-size: 17px;
        font-weight: 700;
        color: var(--ink);
        margin-bottom: 8px;
    }
    .moment-card p {
        font-size: 14px;
        color: var(--muted);
    }

    /* ===== Steps ===== */
    .step-list {
        display: flex;
        flex-direction: column;
        gap: 26px;
        margin-top: 36px;
    }
    .step-item {
        display: flex;
        gap: 18px;
        align-items: flex-start;
    }
    .step-num {
        flex-shrink: 0;
        width: 42px;
        height: 42px;
        border-radius: 12px;
        background: var(--primary);
        color: #fff;
        display: flex;
        align-items: center;
        justify-content: center;
        font-weight: 900;
        font-size: 15px;
        font-family: 'DIN Alternate', 'Inter', sans-serif;
        box-shadow: 2px 2px 0 rgba(17, 20, 19, .14);
    }
    .step-title {
        font-size: 16px;
        font-weight: 600;
        color: var(--ink);
    }
    .step-desc {
        font-size: 14px;
        color: var(--muted);
        margin-top: 4px;
    }

    /* ===== FAQ ===== */
    .faq-item {
        background: #fff;
        border: 1px solid var(--border);
        border-radius: 12px;
        overflow: hidden;
        transition: box-shadow .2s, border-color .2s;
    }
    .faq-item:hover {
        border-color: rgba(0, 168, 98, .4);
        box-shadow: var(--shadow-card);
    }
    .faq-q {
        width: 100%;
        display: flex;
        justify-content: space-between;
        align-items: center;
        padding: 20px 24px;
        background: transparent;
        border: none;
        cursor: pointer;
        font-size: 15px;
        font-weight: 600;
        color: var(--ink);
        text-align: left;
        gap: 16px;
        transition: background .18s;
    }
    .faq-q:hover {
        background: rgba(0, 168, 98, .04);
    }
    .faq-icon {
        flex-shrink: 0;
        width: 24px;
        height: 24px;
        background: var(--gray-light);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--muted);
        font-size: 13px;
        transition: transform .2s, background .2s, color .2s;
    }
    .faq-item.open .faq-icon {
        transform: rotate(45deg);
        background: var(--primary);
        color: #fff;
    }
    .faq-a {
        display: none;
        padding: 0 24px 20px;
        font-size: 14px;
        color: var(--body);
        line-height: 1.8;
    }
    .faq-item.open .faq-a {
        display: block;
    }

    /* ===== CTA ===== */
    .cta-panel {
        background: var(--primary);
        background-image: linear-gradient(135deg, rgba(0, 0, 0, .06) 25%, transparent 25%, transparent 50%, rgba(0, 0, 0, .06) 50%, rgba(0, 0, 0, .06) 75%, transparent 75%);
        background-size: 12px 12px;
        border-radius: 20px;
        padding: 52px 56px;
        position: relative;
        overflow: hidden;
    }
    .cta-title {
        font-size: 28px;
        font-weight: 800;
        color: var(--ink);
        line-height: 1.25;
        letter-spacing: -0.3px;
    }
    .cta-sub {
        font-size: 15px;
        color: rgba(17, 20, 19, .65);
        margin-top: 8px;
    }
    .cta-form-row {
        display: flex;
        gap: 10px;
    }
    .cta-form input {
        flex: 1;
        height: 48px;
        padding: 0 16px;
        border: 2px solid #fff;
        border-radius: 8px;
        background: #fff;
        font-size: 14px;
        color: var(--ink);
        outline: none;
        transition: box-shadow .18s, border-color .18s;
        min-width: 0;
    }
    .cta-form input:focus {
        box-shadow: 0 0 0 3px rgba(255, 255, 255, .35);
        border-color: #fff;
    }
    .cta-form button {
        height: 48px;
        padding: 0 22px;
        background: var(--accent);
        border: none;
        border-radius: 8px;
        color: var(--dark);
        font-size: 14px;
        font-weight: 700;
        cursor: pointer;
        box-shadow: 2px 2px 0 rgba(17, 20, 19, .18);
        transition: transform .15s, box-shadow .15s, background .15s;
        white-space: nowrap;
    }
    .cta-form button:hover {
        background: #FF7B1A;
        transform: translateY(-1px);
        box-shadow: 3px 3px 0 rgba(17, 20, 19, .2);
    }
    .cta-form button:active {
        transform: translateY(1px);
        box-shadow: 1px 1px 0 rgba(17, 20, 19, .18);
    }
    .form-success {
        font-size: 13px;
        color: var(--ink);
        background: rgba(255, 255, 255, .92);
        padding: 8px 12px;
        border-radius: 8px;
        display: none;
    }

    /* ===== Footer ===== */
    .site-footer {
        background: var(--dark);
        color: #C9CECB;
        padding: 64px 0 24px;
        font-size: 14px;
    }
    .footer-grid {
        display: grid;
        grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
        gap: 40px;
        padding-bottom: 48px;
        border-bottom: 1px solid var(--dark-border);
    }
    .footer-brand .logo-text {
        color: #fff;
    }
    .footer-desc {
        margin-top: 16px;
        color: #8A918E;
        font-size: 13px;
        line-height: 1.8;
        max-width: 300px;
    }
    .footer-title {
        font-size: 15px;
        color: #fff;
        font-weight: 600;
        margin-bottom: 16px;
    }
    .footer-links {
        list-style: none;
        display: flex;
        flex-direction: column;
        gap: 10px;
    }
    .footer-links a {
        color: #8A918E;
        font-size: 13px;
        text-decoration: none;
        transition: color .18s;
    }
    .footer-links a:hover {
        color: var(--primary);
    }
    .footer-contact p {
        color: #8A918E;
        font-size: 13px;
        line-height: 1.9;
    }
    .footer-contact a {
        color: #C9CECB;
        text-decoration: none;
        transition: color .18s;
    }
    .footer-contact a:hover {
        color: var(--primary);
    }
    .social-icon {
        display: inline-flex;
        width: 36px;
        height: 36px;
        align-items: center;
        justify-content: center;
        border: 1px solid var(--dark-border);
        border-radius: 50%;
        color: #8A918E;
        margin-right: 8px;
        transition: all .18s ease;
        text-decoration: none;
    }
    .social-icon:hover {
        background: var(--primary);
        border-color: var(--primary);
        color: #fff;
    }
    .footer-bottom {
        padding-top: 24px;
        display: flex;
        justify-content: space-between;
        align-items: center;
        font-size: 13px;
        color: #6F7673;
        flex-wrap: wrap;
        gap: 10px;
    }

    /* ===== 辅助类 ===== */
    .line-clamp-2 {
        display: -webkit-box;
        -webkit-line-clamp: 2;
        -webkit-box-orient: vertical;
        overflow: hidden;
    }
    .rounded-card {
        border-radius: 16px;
    }

    /* ===== 响应式 ===== */
    @media (max-width: 1023px) {
        .nav-center {
            display: none;
        }
        .search-box input {
            width: 140px;
        }
        .search-box input:focus {
            width: 180px;
        }
        .burger-btn {
            display: flex;
        }
        .footer-grid {
            grid-template-columns: 1fr 1fr;
        }
        .hero-title {
            font-size: 36px;
        }
        .score-card {
            margin-left: 0;
            max-width: 100%;
        }
        .mini-stat-card {
            margin-left: 0;
            margin-top: -30px;
        }
        .cta-panel {
            padding: 40px 32px;
        }
    }
    @media (max-width: 767px) {
        .container {
            padding: 0 16px;
        }
        .section-gap {
            --section-gap: 56px;
        }
        .nav-right .search-box {
            display: none;
        }
        .nav-right .login-btn {
            display: none;
        }
        .nav-right .start-btn {
            height: 36px;
            padding: 0 14px;
            font-size: 13px;
        }
        .logo-text {
            font-size: 15px;
        }
        .page-hero {
            padding: 112px 0 56px;
        }
        .hero-title {
            font-size: 30px;
        }
        .hero-desc {
            font-size: 15px;
        }
        .stat-num {
            font-size: 30px;
        }
        .footer-grid {
            grid-template-columns: 1fr;
        }
        .footer-bottom {
            flex-direction: column;
            text-align: center;
        }
        .cta-panel {
            padding: 36px 24px;
        }
        .cta-form-row {
            flex-direction: column;
        }
        .cta-form button {
            width: 100%;
        }
        .section-title {
            font-size: 21px;
        }
        .content-card-img {
            height: 140px;
        }
        .feature-card {
            padding: 26px 22px;
        }
        .moment-card {
            padding: 26px 20px;
        }
    }
    @media (max-width: 520px) {
        .logo-text {
            font-size: 14px;
        }
        .nav-right .start-btn {
            display: none;
        }
        .burger-btn {
            display: flex;
        }
        .hero-btn-wrap .btn-primary,
        .hero-btn-wrap .btn-outline {
            width: 100%;
            justify-content: center;
        }
    }

/* roulang page: category2 */
:root {
            --primary: #00A862;
            --primary-dark: #008F52;
            --accent: #FF6A00;
            --dark: #1A1D1C;
            --dark-2: #2A2E2D;
            --bg: #F7F5F1;
            --card: #FFFFFF;
            --bg-soft: #EFEDE8;
            --border: #E8E4DC;
            --text: #111413;
            --text-body: #3D4341;
            --text-muted: #8A918E;
            --text-disabled: #C9CECB;
            --danger: #D93026;
            --info: #2B6CB0;
            --warning: #F5A623;
            --radius: 16px;
            --radius-sm: 8px;
            --radius-pill: 999px;
            --shadow-card: 0 2px 8px rgba(17,20,19,0.04), 0 8px 24px rgba(17,20,19,0.06);
            --shadow-hover: 0 4px 12px rgba(17,20,19,0.08), 0 16px 40px rgba(17,20,19,0.12);
            --shadow-btn: 3px 3px 0 #111413;
            --font-sans: "PingFang SC", "Microsoft YaHei", "Noto Sans SC", "Inter", "DIN Alternate", sans-serif;
        }

        *, *::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-body);
            background: var(--bg);
            -webkit-font-smoothing: antialiased;
        }
        img { max-width: 100%; display: block; }
        a { text-decoration: none; color: inherit; }
        button { font-family: inherit; cursor: pointer; border: none; background: none; }
        input { font-family: inherit; }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding-left: 24px;
            padding-right: 24px;
        }

        /* ===== Header ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            height: 64px;
            z-index: 1000;
            background: rgba(247,245,241,0.92);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            transition: background 0.2s ease, box-shadow 0.2s ease;
        }
        .site-header.scrolled {
            background: rgba(247,245,241,0.85);
            box-shadow: 0 4px 20px rgba(17,20,19,0.06);
        }
        .header-inner {
            height: 64px;
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .logo-mark {
            width: 36px;
            height: 36px;
            border-radius: 10px;
            background: var(--primary);
            color: #fff;
            font-weight: 900;
            font-size: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: "DIN Alternate", "Inter", sans-serif;
            letter-spacing: -0.5px;
            box-shadow: 2px 2px 0 rgba(17,20,19,0.15);
            flex-shrink: 0;
        }
        .logo-text {
            font-size: 18px;
            font-weight: 800;
            color: var(--text);
            letter-spacing: -0.2px;
            white-space: nowrap;
        }
        .logo-text .highlight { color: var(--primary); }
        .main-nav { display: flex; gap: 4px; flex: 1; }
        .nav-link {
            padding: 8px 16px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-body);
            position: relative;
            transition: color 0.2s ease, background 0.2s ease;
        }
        .nav-link:hover { color: var(--primary); background: rgba(0,168,98,0.06); }
        .nav-link.active { color: var(--primary); font-weight: 600; }
        .nav-link.active::after {
            content: "";
            position: absolute;
            left: 16px;
            right: 16px;
            bottom: 2px;
            height: 2px;
            background: var(--primary);
            border-radius: 2px;
        }
        .header-actions { display: flex; align-items: center; gap: 12px; }
        .search-box {
            display: flex;
            align-items: center;
            gap: 8px;
            width: 180px;
            height: 38px;
            padding: 0 12px;
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            transition: width 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .search-box:focus-within {
            width: 240px;
            border-color: var(--primary);
            box-shadow: 0 0 0 3px rgba(0,168,98,0.15);
        }
        .search-box i { color: var(--text-muted); font-size: 14px; }
        .search-box input { border: none; outline: none; font-size: 14px; color: var(--text); background: transparent; width: 100%; }
        .login-btn {
            padding: 6px 14px;
            font-size: 14px;
            font-weight: 500;
            color: var(--text);
            border-radius: 8px;
            transition: background 0.2s ease;
        }
        .login-btn:hover { background: var(--bg-soft); }
        .primary-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            background: var(--primary);
            color: #fff;
            font-size: 14px;
            font-weight: 600;
            border-radius: 8px;
            box-shadow: 3px 3px 0 #111413;
            transition: transform 0.2s ease, box-shadow 0.2s ease, background 0.2s ease;
        }
        .primary-btn:hover { transform: translate(-1px, -1px); box-shadow: 4px 4px 0 #111413; background: var(--primary-dark); }
        .primary-btn:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 #111413; }
        .mobile-menu-btn { display: none; font-size: 20px; color: var(--text); padding: 8px; border-radius: 8px; }
        .mobile-menu-btn:hover { background: var(--bg-soft); }

        .mobile-mask {
            position: fixed;
            inset: 0;
            background: rgba(17,20,19,0.45);
            z-index: 998;
            opacity: 0;
            pointer-events: none;
            transition: opacity 0.25s ease;
        }
        .mobile-mask.show { opacity: 1; pointer-events: auto; }
        .mobile-menu {
            position: fixed;
            top: 64px;
            right: -320px;
            width: 300px;
            bottom: 0;
            background: var(--card);
            border-left: 1px solid var(--border);
            padding: 24px;
            transition: right 0.25s ease;
            z-index: 999;
            box-shadow: -8px 0 30px rgba(17,20,19,0.12);
            overflow-y: auto;
        }
        .mobile-menu.open { right: 0; }
        .mobile-menu a { display: block; padding: 12px 16px; border-radius: 10px; font-size: 15px; font-weight: 500; color: var(--text-body); transition: background 0.2s ease, color 0.2s ease; }
        .mobile-menu a:hover { background: var(--bg-soft); color: var(--primary); }
        .mobile-menu a.active { background: #F0FAF4; color: #00A862; font-weight: 600; }
        .mobile-menu-divider { height: 1px; background: var(--border); margin: 16px 0; }

        /* ===== Category Hero ===== */
        .category-hero {
            margin-top: 64px;
            background: var(--dark);
            background-image: linear-gradient(135deg, rgba(10,12,11,0.92) 30%, rgba(26,29,28,0.55) 70%), url('/assets/images/backpic/back-1.png');
            background-size: cover;
            background-position: center;
            padding: 88px 0 84px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .category-hero::after {
            content: '';
            position: absolute;
            right: -80px;
            top: -80px;
            width: 420px;
            height: 420px;
            background: radial-gradient(circle, rgba(0,168,98,0.35), transparent 60%);
            border-radius: 50%;
            pointer-events: none;
        }
        .category-hero-inner {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 48px;
            position: relative;
            z-index: 2;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 5px 14px;
            background: rgba(255,106,0,0.18);
            border: 1px solid rgba(255,106,0,0.45);
            color: #FF8A3D;
            font-size: 12px;
            font-weight: 700;
            letter-spacing: 2px;
            border-radius: 999px;
            text-transform: uppercase;
        }
        .category-hero h1 {
            font-size: 48px;
            font-weight: 900;
            line-height: 1.15;
            color: #fff;
            margin-top: 18px;
            letter-spacing: -0.5px;
        }
        .hero-desc {
            margin-top: 16px;
            font-size: 16px;
            line-height: 1.8;
            color: #C9CECB;
            max-width: 680px;
        }
        .hero-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 22px;
            font-size: 14px;
            color: #8A918E;
        }
        .hero-meta i { color: var(--primary); margin-right: 6px; }
        .cta-subscribe {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 14px 28px;
            background: var(--accent);
            color: #111413;
            font-size: 16px;
            font-weight: 700;
            border-radius: 10px;
            box-shadow: 4px 4px 0 rgba(0,0,0,0.25);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            white-space: nowrap;
        }
        .cta-subscribe:hover { transform: translate(-1px, -1px); box-shadow: 5px 5px 0 rgba(0,0,0,0.3); }
        .cta-subscribe:active { transform: translate(2px, 2px); box-shadow: 2px 2px 0 rgba(0,0,0,0.25); }
        .action-hint { margin-top: 14px; font-size: 13px; color: #8A918E; text-align: center; }

        /* ===== Stats Bar ===== */
        .stats-bar { background: var(--bg-soft); padding: 40px 0; border-bottom: 1px solid var(--border); }
        .stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; }
        .stat-item { text-align: center; padding: 16px; }
        .stat-number { font-size: 44px; font-weight: 900; color: var(--primary); line-height: 1.1; font-family: "DIN Alternate", "Inter", sans-serif; }
        .stat-number span { font-size: 18px; font-weight: 700; color: var(--text-body); margin-left: 4px; }
        .stat-label { font-size: 13px; color: var(--text-muted); margin-top: 6px; font-weight: 500; }

        /* ===== Section Common ===== */
        .content-section { padding: 96px 0; }
        .section-heading { display: flex; align-items: flex-end; justify-content: space-between; margin-bottom: 40px; }
        .section-heading.center { justify-content: center; text-align: center; flex-direction: column; align-items: center; }
        .section-tag {
            display: inline-block;
            padding: 4px 12px;
            background: rgba(0,168,98,0.1);
            color: var(--primary);
            font-size: 12px;
            font-weight: 700;
            border-radius: 999px;
            letter-spacing: 1px;
        }
        .section-heading h2 { font-size: 28px; font-weight: 800; color: var(--text); margin-top: 10px; line-height: 1.3; }
        .section-heading p { color: var(--text-muted); font-size: 15px; margin-top: 8px; }

        /* ===== Data Cards ===== */
        .data-card-list { display: flex; flex-direction: column; gap: 24px; }
        .data-card {
            display: flex;
            background: var(--card);
            border-radius: var(--radius);
            overflow: hidden;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            transition: transform 0.2s ease, box-shadow 0.2s ease, border-color 0.2s ease;
        }
        .data-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-3px); border-color: rgba(0,168,98,0.25); }
        .data-card-img { flex: 0 0 280px; min-height: 220px; position: relative; overflow: hidden; }
        .data-card-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.3s ease; }
        .data-card:hover .data-card-img img { transform: scale(1.04); }
        .data-card-body { flex: 1; padding: 28px 32px; display: flex; flex-direction: column; }
        .data-card-meta { display: flex; align-items: center; gap: 12px; margin-bottom: 10px; flex-wrap: wrap; }
        .badge-primary { display: inline-block; padding: 3px 10px; background: rgba(0,168,98,0.1); color: var(--primary); font-size: 12px; font-weight: 600; border-radius: 999px; }
        .data-time { font-size: 13px; color: var(--text-muted); display: inline-flex; align-items: center; gap: 5px; }
        .data-card-body h3 { font-size: 20px; font-weight: 700; color: var(--text); margin-bottom: 8px; line-height: 1.4; }
        .data-card-body p { font-size: 15px; color: var(--text-muted); line-height: 1.7; flex: 1; }
        .card-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 16px;
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            transition: color 0.2s ease, gap 0.2s ease;
        }
        .card-link i { transition: transform 0.2s ease; }
        .card-link:hover { color: var(--primary-dark); }
        .card-link:hover i { transform: translateX(4px); }

        /* ===== Pagination ===== */
        .pagination { display: flex; align-items: center; justify-content: center; gap: 8px; margin-top: 48px; flex-wrap: wrap; }
        .pagination a, .pagination .page-current, .pagination .page-dots {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 12px;
            border-radius: 10px;
            border: 1px solid var(--border);
            background: var(--card);
            font-size: 14px;
            font-weight: 600;
            color: var(--text-body);
            transition: all 0.2s ease;
        }
        .pagination .page-current { background: var(--primary); color: #fff; border-color: var(--primary); box-shadow: 3px 3px 0 rgba(17,20,19,0.2); }
        .pagination a:hover { border-color: var(--primary); color: var(--primary); background: rgba(0,168,98,0.05); }
        .pagination .page-dots { border: none; background: transparent; }

        /* ===== Features ===== */
        .feature-section { padding: 96px 0; background: var(--bg-soft); }
        .feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
        .feature-card {
            background: var(--card);
            border-radius: var(--radius);
            padding: 36px 32px;
            border: 1px solid var(--border);
            box-shadow: var(--shadow-card);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }
        .feature-card:hover { box-shadow: var(--shadow-hover); transform: translateY(-4px); }
        .feature-card i { width: 52px; height: 52px; display: flex; align-items: center; justify-content: center; background: rgba(0,168,98,0.1); color: var(--primary); font-size: 22px; border-radius: 14px; margin-bottom: 20px; }
        .feature-card h3 { font-size: 18px; font-weight: 700; color: var(--text); margin-bottom: 8px; }
        .feature-card p { font-size: 14px; color: var(--text-muted); line-height: 1.7; }

        /* ===== FAQ ===== */
        .faq-section { padding: 96px 0; background: var(--bg); }
        .faq-list { max-width: 860px; margin: 0 auto; }
        .faq-item {
            background: var(--card);
            border: 1px solid var(--border);
            border-radius: 14px;
            margin-bottom: 14px;
            overflow: hidden;
            transition: border-color 0.2s ease;
        }
        .faq-item:hover { border-color: rgba(0,168,98,0.3); }
        .faq-question {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            background: transparent;
            text-align: left;
            transition: color 0.2s ease;
        }
        .faq-question:hover { color: var(--primary); }
        .faq-question i { color: var(--text-muted); transition: transform 0.2s ease; font-size: 14px; }
        .faq-item.active .faq-question i { transform: rotate(180deg); }
        .faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.25s ease; }
        .faq-item.active .faq-answer { max-height: 300px; }
        .faq-answer p { padding: 0 24px 20px; font-size: 14px; color: var(--text-muted); line-height: 1.8; }

        /* ===== CTA ===== */
        .cta-section { padding: 24px 0 96px; background: var(--bg); }
        .cta-box {
            background: var(--primary);
            border-radius: 24px;
            padding: 56px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            position: relative;
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(0,168,98,0.3);
        }
        .cta-box::before {
            content: "";
            position: absolute;
            inset: 0;
            background-image: linear-gradient(135deg, rgba(255,255,255,0.06) 25%, transparent 25%, transparent 50%, rgba(255,255,255,0.06) 50%, rgba(255,255,255,0.06) 75%, transparent 75%);
            background-size: 24px 24px;
            pointer-events: none;
        }
        .cta-box h2 { font-size: 28px; font-weight: 800; color: #111413; position: relative; z-index: 1; }
        .cta-box p { font-size: 15px; color: rgba(17,20,19,0.75); margin-top: 6px; position: relative; z-index: 1; }
        .cta-form { display: flex; gap: 12px; position: relative; z-index: 1; }
        .cta-form input {
            width: 300px;
            height: 48px;
            border-radius: 8px;
            border: 2px solid rgba(255,255,255,0.85);
            background: #fff;
            padding: 0 16px;
            font-size: 15px;
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
        }
        .cta-form input:focus { border-color: #fff; box-shadow: 0 0 0 3px rgba(255,255,255,0.4); }
        .cta-form button {
            height: 48px;
            padding: 0 28px;
            background: var(--accent);
            border-radius: 8px;
            font-size: 15px;
            font-weight: 700;
            color: #111413;
            box-shadow: 3px 3px 0 rgba(17,20,19,0.25);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            white-space: nowrap;
        }
        .cta-form button:hover { transform: translate(-1px, -1px); }
        .cta-form button:active { transform: translate(2px, 2px); box-shadow: 1px 1px 0 rgba(17,20,19,0.25); }

        /* ===== Footer ===== */
        .site-footer { background: var(--dark); color: #8A918E; padding: 72px 0 0; }
        .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1.2fr; gap: 48px; padding-bottom: 56px; }
        .footer-brand .logo-text { color: #fff; }
        .footer-desc { font-size: 14px; color: #8A918E; margin-top: 16px; line-height: 1.8; max-width: 260px; }
        .footer-title { font-size: 15px; font-weight: 700; color: #fff; margin-bottom: 18px; }
        .footer-links { list-style: none; }
        .footer-links li { margin-bottom: 10px; }
        .footer-links a { font-size: 14px; color: #8A918E; transition: color 0.2s ease; }
        .footer-links a:hover { color: var(--primary); }
        .footer-contact p { font-size: 14px; margin-bottom: 8px; }
        .footer-contact a { color: #8A918E; transition: color 0.2s ease; }
        .footer-contact a:hover { color: var(--primary); }
        .social-icon {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: #2A2E2D;
            color: #8A918E;
            margin-right: 8px;
            transition: transform 0.2s ease, background 0.2s ease, color 0.2s ease;
        }
        .social-icon:hover { background: var(--primary); color: #fff; transform: translateY(-2px); }
        .footer-bottom {
            border-top: 1px solid #2A2E2D;
            padding: 24px 0;
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 13px;
            color: #8A918E;
            flex-wrap: wrap;
            gap: 12px;
        }
        .footer-bottom .copyright a { color: #8A918E; }
        .footer-bottom .copyright a:hover { color: var(--primary); }

        /* ===== Responsive ===== */
        @media (max-width: 1023px) {
            .main-nav { display: none; }
            .header-actions .search-box { width: 40px; padding: 0; justify-content: center; }
            .header-actions .search-box input { display: none; }
            .header-actions .search-box:focus-within { width: 40px; border-color: var(--border); box-shadow: none; }
            .mobile-menu-btn { display: inline-flex; }
            .category-hero-inner { flex-direction: column; align-items: flex-start; }
            .category-hero h1 { font-size: 38px; }
            .stats-grid { grid-template-columns: repeat(2, 1fr); }
            .data-card { flex-direction: column; }
            .data-card-img { flex: none; height: 220px; }
            .feature-grid { grid-template-columns: repeat(2, 1fr); }
            .cta-box { flex-direction: column; align-items: flex-start; }
            .cta-form { width: 100%; }
            .cta-form input { flex: 1; width: auto; }
            .footer-grid { grid-template-columns: repeat(2, 1fr); gap: 32px; }
        }

        @media (max-width: 767px) {
            .container { padding-left: 16px; padding-right: 16px; }
            .site-header, .header-inner { height: 56px; }
            .header-inner { gap: 12px; }
            .logo-text { font-size: 16px; }
            .logo-mark { width: 32px; height: 32px; font-size: 13px; }
            .header-actions { gap: 8px; }
            .header-actions .search-box { width: 36px; height: 36px; }
            .header-actions .primary-btn { padding: 8px 14px; font-size: 13px; }
            .login-btn { display: none; }
            .mobile-menu { top: 56px; }
            .category-hero { margin-top: 56px; padding: 56px 0 52px; }
            .category-hero h1 { font-size: 30px; }
            .hero-desc { font-size: 15px; }
            .hero-meta { gap: 16px; }
            .cta-subscribe { width: 100%; justify-content: center; }
            .action-hint { text-align: left; }
            .content-section, .feature-section, .faq-section { padding: 56px 0; }
            .section-heading h2 { font-size: 22px; }
            .stats-grid { gap: 12px; }
            .stat-number { font-size: 32px; }
            .stat-number span { font-size: 15px; }
            .data-card-body { padding: 24px; }
            .data-card-img { height: 200px; }
            .feature-grid { grid-template-columns: 1fr; }
            .feature-card { padding: 28px 24px; }
            .cta-section { padding: 12px 0 56px; }
            .cta-box { padding: 32px 24px; border-radius: 18px; }
            .cta-form { flex-direction: column; }
            .cta-form input, .cta-form button { width: 100%; }
            .footer-grid { grid-template-columns: 1fr; gap: 28px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .mobile-menu { width: 100%; right: -100%; }
        }
