/* roulang page: index */
:root {
            --xf-primary-dark: #0E1B15;
            --xf-primary-green: #16A34A;
            --xf-green-deep: #128A3E;
            --xf-accent-orange: #F97316;
            --xf-light-bg: #F6F7F3;
            --xf-dark-surface: #182019;
            --xf-text-primary: #172118;
            --xf-text-secondary: #5B6B5E;
            --xf-text-inverse: #F2F7F3;
            --xf-border-light: #DEE7DF;
            --xf-border-tint: rgba(22, 163, 74, 0.18);
            --xf-radius-sm: 8px;
            --xf-radius-md: 14px;
            --xf-radius-lg: 18px;
            --xf-shadow-sm: 0 1px 3px rgba(20, 30, 22, 0.08), 0 6px 24px rgba(20, 30, 22, 0.06);
            --xf-shadow-hover: 0 12px 32px rgba(16, 163, 74, 0.12);
            --xf-grad-dark: linear-gradient(135deg, #0E1B15 0%, #182019 55%, #0E1B15 100%);
            --xf-grad-cta: linear-gradient(135deg, #16A34A 0%, #128A3E 60%, #0E1B15 100%);
            --xf-grad-hero: linear-gradient(135deg, rgba(14, 27, 21, 0.92) 0%, rgba(24, 32, 25, 0.88) 50%, rgba(14, 27, 21, 0.95) 100%);
            --xf-font: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            --xf-section-pad: 56px 0;
            --xf-section-pad-mobile: 36px 0;
            --xf-tnum: "tnum" 1;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--xf-font);
            font-size: 16px;
            line-height: 1.75;
            color: var(--xf-text-primary);
            background-color: var(--xf-light-bg);
            margin: 0;
            padding-top: 72px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--xf-primary-green);
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease;
        }
        a:hover {
            color: var(--xf-green-deep);
        }
        a:focus-visible {
            outline: 2px solid var(--xf-primary-green);
            outline-offset: 3px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        h1, h2, h3, h4, h5, h6 {
            font-weight: 700;
            color: var(--xf-text-primary);
            letter-spacing: -0.5px;
            margin-top: 0;
        }
        h1 {
            font-size: clamp(28px, 4vw, 40px);
            line-height: 1.25;
            font-weight: 700;
        }
        h2 {
            font-size: clamp(24px, 3vw, 30px);
            line-height: 1.3;
            font-weight: 650;
        }
        h3 {
            font-size: clamp(18px, 2vw, 22px);
            line-height: 1.4;
            font-weight: 600;
        }

        p {
            margin-bottom: 16px;
            color: var(--xf-text-secondary);
            font-size: 15px;
            line-height: 1.8;
        }

        .lead {
            font-size: 17px;
            line-height: 1.85;
        }

        .text-accent-orange {
            color: var(--xf-accent-orange) !important;
        }
        .text-primary-green {
            color: var(--xf-primary-green) !important;
        }
        .text-inverse {
            color: var(--xf-text-inverse) !important;
        }
        .text-secondary-dark {
            color: var(--xf-text-secondary) !important;
        }

        .bg-dark-carbon {
            background-color: var(--xf-primary-dark);
        }
        .bg-dark-surface {
            background-color: var(--xf-dark-surface);
        }
        .bg-light-warm {
            background-color: var(--xf-light-bg);
        }

        .num-tabular {
            font-feature-settings: var(--xf-tnum);
            font-variant-numeric: tabular-nums;
            font-weight: 650;
        }

        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-pad {
            padding: var(--xf-section-pad);
        }
        .section-pad-sm {
            padding: 32px 0;
        }
        .section-pad-lg {
            padding: 72px 0;
        }
        .section-title-wrap {
            max-width: 720px;
            margin-bottom: 40px;
        }
        .section-title-wrap .section-subtitle {
            font-size: 16px;
            color: var(--xf-text-secondary);
            margin-top: 8px;
            line-height: 1.7;
        }
        .section-title-wrap.text-center {
            margin-left: auto;
            margin-right: auto;
        }

        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            background-color: rgba(22, 163, 74, 0.1);
            color: var(--xf-primary-green);
            border: 1px solid rgba(22, 163, 74, 0.25);
            letter-spacing: 0.3px;
        }
        .badge-orange {
            background-color: rgba(249, 115, 22, 0.12);
            color: var(--xf-accent-orange);
            border-color: rgba(249, 115, 22, 0.3);
        }

        /* ===== 导航栏 ===== */
        .navbar-xf {
            background-color: rgba(14, 27, 21, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 12px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            border-bottom: 1px solid rgba(222, 231, 223, 0.12);
            min-height: 72px;
            transition: box-shadow 0.25s ease;
        }
        .navbar-xf.scrolled {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
        }
        .navbar-xf .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 22px;
            color: var(--xf-text-inverse);
            letter-spacing: -0.4px;
            padding: 0;
            white-space: nowrap;
        }
        .navbar-xf .navbar-brand:hover {
            color: var(--xf-primary-green);
        }
        .brand-logo-mark {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--xf-grad-cta);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(22, 163, 74, 0.3);
        }
        .navbar-xf .nav-link {
            color: rgba(242, 247, 243, 0.78);
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px !important;
            border-radius: 8px;
            transition: all 0.2s ease;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }
        .navbar-xf .nav-link:hover {
            color: var(--xf-text-inverse);
            background-color: rgba(255, 255, 255, 0.08);
        }
        .navbar-xf .nav-link.active {
            color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.15);
            font-weight: 600;
        }
        .navbar-xf .nav-link:focus-visible {
            outline: 2px solid var(--xf-primary-green);
            outline-offset: -2px;
        }
        .btn-nav-secondary {
            border: 1px solid rgba(242, 247, 243, 0.4);
            color: var(--xf-text-inverse);
            background: transparent;
            padding: 10px 20px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
            transition: all 0.25s ease;
        }
        .btn-nav-secondary:hover {
            border-color: var(--xf-primary-green);
            color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.1);
        }
        .btn-nav-primary {
            background: var(--xf-grad-cta);
            border: none;
            color: #fff;
            padding: 10px 22px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            white-space: nowrap;
            transition: all 0.25s ease;
            box-shadow: 0 2px 12px rgba(22, 163, 74, 0.35);
        }
        .btn-nav-primary:hover {
            background: var(--xf-green-deep);
            color: #fff;
            box-shadow: 0 4px 18px rgba(22, 163, 74, 0.45);
            transform: translateY(-1px);
        }
        .navbar-toggler {
            border: 1px solid rgba(242, 247, 243, 0.35);
            border-radius: 8px;
            padding: 8px 12px;
            color: var(--xf-text-inverse);
            background: transparent;
            transition: all 0.2s ease;
        }
        .navbar-toggler:hover {
            background-color: rgba(255, 255, 255, 0.1);
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.4);
            border-color: var(--xf-primary-green);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28242,247,243,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .navbar-collapse {
            gap: 8px;
        }
        .nav-cta-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 12px;
        }

        @media (max-width: 991.98px) {
            .navbar-xf {
                padding: 10px 0;
                min-height: 62px;
            }
            body {
                padding-top: 62px;
            }
            .navbar-collapse {
                background-color: rgba(14, 27, 21, 0.98);
                border-radius: 12px;
                padding: 16px;
                margin-top: 10px;
                max-height: calc(100vh - 80px);
                overflow-y: auto;
            }
            .nav-cta-group {
                flex-direction: column;
                width: 100%;
                margin-left: 0;
                margin-top: 10px;
                gap: 8px;
            }
            .nav-cta-group .btn {
                width: 100%;
                text-align: center;
            }
        }

        /* ===== Hero 品牌旗舰店 ===== */
        .hero-xf {
            position: relative;
            background: var(--xf-grad-dark);
            padding: 80px 0 100px;
            overflow: hidden;
            min-height: 720px;
            display: flex;
            align-items: center;
        }
        .hero-bg-image {
            position: absolute;
            inset: 0;
            z-index: 0;
        }
        .hero-bg-image img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.35;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: var(--xf-grad-hero);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
        }
        .hero-h1 {
            color: var(--xf-text-inverse);
            font-size: clamp(32px, 4.5vw, 48px);
            line-height: 1.2;
            margin-bottom: 20px;
            letter-spacing: -0.8px;
            font-weight: 700;
        }
        .hero-h1 .highlight {
            color: var(--xf-primary-green);
            position: relative;
        }
        .hero-h1 .highlight::after {
            content: '';
            position: absolute;
            bottom: 2px;
            left: 0;
            right: 0;
            height: 4px;
            background: var(--xf-accent-orange);
            border-radius: 4px;
            opacity: 0.8;
        }
        .hero-subtitle {
            color: rgba(242, 247, 243, 0.82);
            font-size: 17px;
            line-height: 1.8;
            max-width: 560px;
            margin-bottom: 28px;
            letter-spacing: 0.1px;
        }
        .hero-trust-row {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(242, 247, 243, 0.15);
        }
        .hero-trust-item {
            color: rgba(242, 247, 243, 0.7);
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 8px;
            letter-spacing: 0.2px;
        }
        .hero-trust-item i {
            color: var(--xf-primary-green);
            font-size: 16px;
        }
        .hero-trust-item .num {
            color: var(--xf-text-inverse);
            font-weight: 700;
            font-size: 16px;
            font-feature-settings: var(--xf-tnum);
        }
        .hero-btn-group {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 8px;
        }
        .btn-xf-primary {
            background: var(--xf-grad-cta);
            border: none;
            color: #fff;
            padding: 14px 30px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            letter-spacing: 0.3px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-xf-primary:hover {
            background: var(--xf-green-deep);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(22, 163, 74, 0.5);
        }
        .btn-xf-primary:active {
            transform: translateY(0);
            box-shadow: 0 2px 8px rgba(22, 163, 74, 0.4);
        }
        .btn-xf-outline-light {
            border: 1px solid rgba(242, 247, 243, 0.45);
            color: var(--xf-text-inverse);
            background: transparent;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-xf-outline-light:hover {
            border-color: var(--xf-primary-green);
            color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.1);
        }
        .hero-score-card {
            background: rgba(24, 32, 25, 0.92);
            border-radius: var(--xf-radius-lg);
            border: 1px solid rgba(222, 231, 223, 0.15);
            padding: 24px;
            box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(8px);
        }
        .score-card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 16px;
            padding-bottom: 12px;
            border-bottom: 1px solid rgba(222, 231, 223, 0.12);
        }
        .score-card-header .live-dot {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            color: var(--xf-accent-orange);
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
        }
        .live-dot .pulse-dot {
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--xf-accent-orange);
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0%, 100% { opacity: 1; transform: scale(1); }
            50% { opacity: 0.4; transform: scale(1.4); }
        }
        .score-row {
            display: flex;
            align-items: center;
            padding: 12px 0;
            border-bottom: 1px solid rgba(222, 231, 223, 0.08);
        }
        .score-row:last-child {
            border-bottom: none;
        }
        .score-team {
            flex: 1;
            color: rgba(242, 247, 243, 0.85);
            font-size: 14px;
            font-weight: 500;
        }
        .score-num {
            font-size: 20px;
            font-weight: 700;
            color: var(--xf-text-inverse);
            font-feature-settings: var(--xf-tnum);
            letter-spacing: 0.5px;
            min-width: 64px;
            text-align: center;
        }
        .score-status {
            font-size: 11px;
            padding: 4px 10px;
            border-radius: 100px;
            font-weight: 600;
            letter-spacing: 0.3px;
            min-width: 64px;
            text-align: center;
        }
        .status-live {
            background: rgba(249, 115, 22, 0.18);
            color: var(--xf-accent-orange);
        }
        .status-finished {
            background: rgba(22, 163, 74, 0.18);
            color: var(--xf-primary-green);
        }
        .status-upcoming {
            background: rgba(242, 247, 243, 0.12);
            color: rgba(242, 247, 243, 0.7);
        }
        .score-update-time {
            font-size: 12px;
            color: rgba(242, 247, 243, 0.5);
            text-align: right;
            margin-top: 8px;
        }
        .hero-series-nav {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            z-index: 2;
            background: rgba(14, 27, 21, 0.85);
            backdrop-filter: blur(6px);
            border-top: 1px solid rgba(222, 231, 223, 0.12);
            overflow-x: auto;
            white-space: nowrap;
            -webkit-overflow-scrolling: touch;
        }
        .hero-series-nav .series-inner {
            display: flex;
            gap: 4px;
            padding: 10px 0;
            min-width: max-content;
        }
        .series-tab {
            padding: 8px 20px;
            color: rgba(242, 247, 243, 0.65);
            font-size: 13px;
            font-weight: 500;
            border-radius: 8px;
            transition: all 0.2s ease;
            letter-spacing: 0.2px;
            white-space: nowrap;
            border: none;
            background: none;
        }
        .series-tab:hover {
            color: var(--xf-text-inverse);
            background: rgba(255, 255, 255, 0.08);
        }
        .series-tab.active {
            color: var(--xf-primary-green);
            background: rgba(22, 163, 74, 0.15);
            font-weight: 600;
        }

        /* ===== 板块通用 ===== */
        .card-xf {
            background: #fff;
            border-radius: var(--xf-radius-md);
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            padding: 24px;
            transition: all 0.3s ease;
            height: 100%;
        }
        .card-xf:hover {
            box-shadow: var(--xf-shadow-hover);
            transform: translateY(-3px);
            border-color: var(--xf-border-tint);
        }
        .card-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            background: rgba(22, 163, 74, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--xf-primary-green);
            margin-bottom: 16px;
            flex-shrink: 0;
        }
        .card-title {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 8px;
            color: var(--xf-text-primary);
        }
        .card-text {
            font-size: 14px;
            color: var(--xf-text-secondary);
            line-height: 1.65;
            margin-bottom: 0;
        }
        .card-data-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            margin-top: 14px;
            font-size: 12px;
            color: var(--xf-primary-green);
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .card-link {
            font-weight: 600;
            font-size: 14px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            margin-top: 14px;
            color: var(--xf-primary-green);
            transition: all 0.2s ease;
        }
        .card-link:hover {
            gap: 10px;
            color: var(--xf-green-deep);
        }

        .img-cover-fixed {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            border-radius: var(--xf-radius-sm) var(--xf-radius-sm) 0 0;
            background-color: #e9ede8;
        }
        .card-img-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: var(--xf-radius-sm) var(--xf-radius-sm) 0 0;
            margin: -24px -24px 16px;
        }
        .card-img-wrapper img {
            width: 100%;
            aspect-ratio: 16/9;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .card-xf:hover .card-img-wrapper img {
            transform: scale(1.04);
        }

        .divider-custom {
            width: 48px;
            height: 4px;
            border-radius: 4px;
            background: var(--xf-primary-green);
            margin-bottom: 16px;
        }

        /* ===== 数据实力深色区 ===== */
        .stats-dark-section {
            background: var(--xf-grad-dark);
            padding: 64px 0;
            border-radius: 0;
        }
        .stat-num-lg {
            font-size: clamp(36px, 4vw, 48px);
            font-weight: 700;
            color: var(--xf-text-inverse);
            font-feature-settings: var(--xf-tnum);
            letter-spacing: -1px;
            line-height: 1.1;
        }
        .stat-label-dark {
            color: rgba(242, 247, 243, 0.6);
            font-size: 14px;
            margin-top: 6px;
            letter-spacing: 0.3px;
        }

        /* ===== 比分表格 ===== */
        .score-table-card {
            background: #fff;
            border-radius: var(--xf-radius-md);
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            overflow: hidden;
        }
        .score-table-card .table {
            margin-bottom: 0;
            font-size: 14px;
        }
        .score-table-card thead th {
            background: var(--xf-primary-dark);
            color: var(--xf-text-inverse);
            font-weight: 600;
            font-size: 13px;
            padding: 14px 18px;
            border: none;
            letter-spacing: 0.3px;
            white-space: nowrap;
        }
        .score-table-card tbody td {
            padding: 14px 18px;
            vertical-align: middle;
            border-color: rgba(222, 231, 223, 0.5);
            font-feature-settings: var(--xf-tnum);
            font-weight: 500;
            white-space: nowrap;
        }
        .score-table-card tbody tr:hover {
            background: rgba(22, 163, 74, 0.04);
        }
        .status-badge-table {
            font-size: 11px;
            padding: 4px 12px;
            border-radius: 100px;
            font-weight: 600;
            display: inline-block;
            letter-spacing: 0.3px;
        }
        .status-live-tbl {
            background: rgba(249, 115, 22, 0.15);
            color: var(--xf-accent-orange);
        }
        .status-finished-tbl {
            background: rgba(22, 163, 74, 0.15);
            color: var(--xf-primary-green);
        }
        .status-upcoming-tbl {
            background: rgba(91, 107, 94, 0.12);
            color: var(--xf-text-secondary);
        }
        .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--xf-text-primary);
        }
        .team-dot {
            width: 26px;
            height: 26px;
            border-radius: 50%;
            background: var(--xf-border-light);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            font-size: 10px;
            font-weight: 700;
            color: var(--xf-text-secondary);
            flex-shrink: 0;
        }

        /* ===== 评价墙 ===== */
        .review-card {
            background: #fff;
            border-radius: var(--xf-radius-md);
            border: 1px solid var(--xf-border-light);
            padding: 22px;
            box-shadow: var(--xf-shadow-sm);
            height: 100%;
            transition: all 0.25s ease;
        }
        .review-card:hover {
            box-shadow: var(--xf-shadow-hover);
            transform: translateY(-2px);
        }
        .review-stars {
            color: var(--xf-accent-orange);
            font-size: 14px;
            margin-bottom: 10px;
            letter-spacing: 2px;
        }
        .review-text {
            font-size: 14px;
            color: var(--xf-text-secondary);
            line-height: 1.7;
            margin-bottom: 14px;
        }
        .review-user {
            display: flex;
            align-items: center;
            gap: 10px;
            padding-top: 12px;
            border-top: 1px solid rgba(222, 231, 223, 0.5);
        }
        .review-user-avatar {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            background: var(--xf-primary-dark);
            color: var(--xf-text-inverse);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 14px;
            font-weight: 700;
            flex-shrink: 0;
        }
        .review-user-name {
            font-size: 13px;
            font-weight: 600;
            color: var(--xf-text-primary);
        }
        .review-user-role {
            font-size: 11px;
            color: var(--xf-text-secondary);
        }

        /* ===== 口碑横滚 ===== */
        .reputation-bar {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            padding: 16px 0;
        }
        .reputation-chip {
            background: #fff;
            border: 1px solid var(--xf-border-light);
            border-radius: 100px;
            padding: 10px 20px;
            font-size: 13px;
            color: var(--xf-text-secondary);
            font-weight: 500;
            letter-spacing: 0.2px;
            box-shadow: var(--xf-shadow-sm);
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .reputation-chip:hover {
            border-color: var(--xf-primary-green);
            color: var(--xf-text-primary);
            background: rgba(22, 163, 74, 0.04);
        }
        .reputation-chip i {
            color: var(--xf-primary-green);
            font-size: 14px;
        }

        /* ===== 资讯列表 ===== */
        .news-card {
            background: #fff;
            border-radius: var(--xf-radius-md);
            overflow: hidden;
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            box-shadow: var(--xf-shadow-hover);
            transform: translateY(-4px);
        }
        .news-card-img {
            aspect-ratio: 16/9;
            overflow: hidden;
        }
        .news-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .news-card:hover .news-card-img img {
            transform: scale(1.05);
        }
        .news-card-body {
            padding: 18px 20px 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .news-card-date {
            font-size: 12px;
            color: var(--xf-text-secondary);
            margin-bottom: 8px;
            letter-spacing: 0.2px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .news-card-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--xf-text-primary);
            margin-bottom: 8px;
            line-height: 1.45;
        }
        .news-card-excerpt {
            font-size: 13px;
            color: var(--xf-text-secondary);
            line-height: 1.6;
            margin-bottom: 12px;
            flex: 1;
        }
        .news-card-link {
            font-size: 13px;
            font-weight: 600;
            color: var(--xf-primary-green);
            display: inline-flex;
            align-items: center;
            gap: 4px;
            transition: all 0.2s ease;
        }
        .news-card-link:hover {
            gap: 8px;
        }

        /* ===== 品牌介绍 ===== */
        .brand-intro-card {
            background: #fff;
            border-radius: var(--xf-radius-lg);
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            padding: 40px;
        }
        .brand-intro-card p {
            font-size: 15px;
            line-height: 1.9;
            color: var(--xf-text-secondary);
            margin-bottom: 16px;
        }
        .brand-intro-card p:last-child {
            margin-bottom: 0;
        }

        /* ===== FAQ ===== */
        .accordion-xf .accordion-item {
            border: 1px solid var(--xf-border-light);
            border-radius: var(--xf-radius-sm) !important;
            margin-bottom: 12px;
            overflow: hidden;
            background: #fff;
            box-shadow: var(--xf-shadow-sm);
        }
        .accordion-xf .accordion-button {
            background: #fff;
            color: var(--xf-text-primary);
            font-weight: 600;
            font-size: 15px;
            padding: 18px 22px;
            border: none;
            transition: all 0.25s ease;
        }
        .accordion-xf .accordion-button:not(.collapsed) {
            background: rgba(22, 163, 74, 0.05);
            color: var(--xf-primary-green);
            box-shadow: none;
        }
        .accordion-xf .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
            border-color: var(--xf-primary-green);
            z-index: 1;
        }
        .accordion-xf .accordion-button::after {
            filter: invert(40%) sepia(70%) saturate(600%) hue-rotate(80deg);
        }
        .accordion-xf .accordion-body {
            padding: 16px 22px 20px;
            font-size: 14px;
            color: var(--xf-text-secondary);
            line-height: 1.75;
            background: #fff;
        }

        /* ===== 保障条 ===== */
        .guarantee-bar {
            background: #fff;
            border-radius: var(--xf-radius-md);
            border: 1px solid var(--xf-border-light);
            padding: 32px 28px;
            box-shadow: var(--xf-shadow-sm);
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 24px;
            justify-content: space-between;
        }
        .guarantee-item {
            display: flex;
            align-items: flex-start;
            gap: 12px;
            max-width: 300px;
        }
        .guarantee-item i {
            font-size: 22px;
            color: var(--xf-primary-green);
            flex-shrink: 0;
            margin-top: 2px;
        }
        .guarantee-item-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--xf-text-primary);
            margin-bottom: 2px;
        }
        .guarantee-item-desc {
            font-size: 13px;
            color: var(--xf-text-secondary);
            line-height: 1.6;
        }

        /* ===== CTA收口 ===== */
        .cta-final-section {
            background: var(--xf-grad-cta);
            padding: 72px 0;
            border-radius: 0;
        }
        .cta-final-title {
            color: #fff;
            font-size: clamp(26px, 3vw, 36px);
            font-weight: 700;
            letter-spacing: -0.5px;
            margin-bottom: 16px;
        }
        .cta-final-desc {
            color: rgba(255, 255, 255, 0.88);
            font-size: 16px;
            line-height: 1.7;
            max-width: 560px;
            margin: 0 auto 28px;
        }
        .btn-xf-white {
            background: #fff;
            border: none;
            color: var(--xf-primary-dark);
            padding: 14px 32px;
            border-radius: 12px;
            font-weight: 700;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
        }
        .btn-xf-white:hover {
            background: var(--xf-light-bg);
            color: var(--xf-primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.25);
        }
        .btn-xf-outline-white {
            border: 1px solid rgba(255, 255, 255, 0.6);
            color: #fff;
            background: transparent;
            padding: 14px 28px;
            border-radius: 12px;
            font-weight: 600;
            font-size: 15px;
            transition: all 0.3s ease;
            display: inline-flex;
            align-items: center;
            gap: 8px;
        }
        .btn-xf-outline-white:hover {
            border-color: #fff;
            color: var(--xf-primary-dark);
            background: #fff;
        }

        /* ===== 分类入口墙 ===== */
        .category-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 16px;
        }
        .category-tile {
            background: #fff;
            border-radius: var(--xf-radius-md);
            border: 1px solid var(--xf-border-light);
            padding: 20px;
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            transition: all 0.3s ease;
            box-shadow: var(--xf-shadow-sm);
            min-height: 80px;
        }
        .category-tile:hover {
            border-color: var(--xf-primary-green);
            box-shadow: var(--xf-shadow-hover);
            transform: translateY(-3px);
        }
        .category-tile-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(22, 163, 74, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--xf-primary-green);
            flex-shrink: 0;
        }
        .category-tile-name {
            font-size: 15px;
            font-weight: 600;
            color: var(--xf-text-primary);
            line-height: 1.3;
        }
        .category-tile-desc {
            font-size: 12px;
            color: var(--xf-text-secondary);
            margin-top: 2px;
        }

        /* ===== 页脚 ===== */
        .footer-xf {
            background: var(--xf-dark-surface);
            color: rgba(242, 247, 243, 0.7);
            padding: 56px 0 28px;
            border-top: 1px solid rgba(222, 231, 223, 0.08);
        }
        .footer-brand-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--xf-text-inverse);
            letter-spacing: -0.3px;
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .footer-desc {
            font-size: 13px;
            line-height: 1.7;
            max-width: 300px;
            color: rgba(242, 247, 243, 0.55);
        }
        .footer-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--xf-text-inverse);
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            color: rgba(242, 247, 243, 0.6);
            font-size: 13px;
            transition: color 0.2s ease;
        }
        .footer-links a:hover {
            color: var(--xf-primary-green);
        }
        .footer-bottom {
            border-top: 1px solid rgba(222, 231, 223, 0.1);
            padding-top: 20px;
            margin-top: 40px;
            font-size: 12px;
            color: rgba(242, 247, 243, 0.45);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }
        .footer-bottom a {
            color: rgba(242, 247, 243, 0.45);
        }
        .footer-bottom a:hover {
            color: var(--xf-primary-green);
        }

        /* ===== 套餐价格卡 ===== */
        .pricing-card {
            background: #fff;
            border-radius: var(--xf-radius-md);
            border: 1px solid var(--xf-border-light);
            padding: 28px;
            box-shadow: var(--xf-shadow-sm);
            transition: all 0.3s ease;
            height: 100%;
            position: relative;
            display: flex;
            flex-direction: column;
        }
        .pricing-card:hover {
            box-shadow: var(--xf-shadow-hover);
            transform: translateY(-3px);
        }
        .pricing-card.highlighted {
            border-color: var(--xf-primary-green);
            background: #fff;
            box-shadow: 0 12px 32px rgba(22, 163, 74, 0.15);
        }
        .pricing-badge {
            position: absolute;
            top: 16px;
            right: 16px;
            background: var(--xf-accent-orange);
            color: #fff;
            font-size: 11px;
            padding: 4px 12px;
            border-radius: 100px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .pricing-name {
            font-size: 18px;
            font-weight: 600;
            color: var(--xf-text-primary);
            margin-bottom: 6px;
        }
        .pricing-price {
            font-size: 36px;
            font-weight: 700;
            color: var(--xf-primary-dark);
            font-feature-settings: var(--xf-tnum);
            letter-spacing: -0.8px;
            margin-bottom: 4px;
        }
        .pricing-price .unit {
            font-size: 14px;
            font-weight: 500;
            color: var(--xf-text-secondary);
        }
        .pricing-desc {
            font-size: 13px;
            color: var(--xf-text-secondary);
            margin-bottom: 16px;
        }
        .pricing-feature-list {
            list-style: none;
            padding: 0;
            margin: 0 0 20px;
            flex: 1;
        }
        .pricing-feature-list li {
            font-size: 13px;
            padding: 6px 0;
            color: var(--xf-text-secondary);
            display: flex;
            align-items: flex-start;
            gap: 8px;
            border-bottom: 1px solid rgba(222, 231, 223, 0.4);
        }
        .pricing-feature-list li:last-child {
            border-bottom: none;
        }
        .pricing-feature-list li i {
            color: var(--xf-primary-green);
            font-size: 14px;
            flex-shrink: 0;
            margin-top: 2px;
        }
        .btn-pricing {
            background: var(--xf-primary-dark);
            border: none;
            color: #fff;
            padding: 12px 24px;
            border-radius: 10px;
            font-weight: 600;
            font-size: 14px;
            transition: all 0.3s ease;
            width: 100%;
            text-align: center;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: 6px;
        }
        .btn-pricing:hover {
            background: var(--xf-primary-green);
            color: #fff;
            transform: translateY(-1px);
        }
        .pricing-card.highlighted .btn-pricing {
            background: var(--xf-grad-cta);
        }
        .pricing-card.highlighted .btn-pricing:hover {
            background: var(--xf-green-deep);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1199.98px) {
            .hero-xf {
                min-height: 640px;
                padding: 64px 0 90px;
            }
        }
        @media (max-width: 991.98px) {
            .section-pad { padding: 40px 0; }
            .section-pad-lg { padding: 48px 0; }
            .category-grid { grid-template-columns: repeat(2, 1fr); }
            .hero-xf {
                min-height: 560px;
                padding: 48px 0 80px;
            }
            .hero-score-card { margin-top: 28px; }
            .brand-intro-card { padding: 28px; }
            .guarantee-bar { padding: 24px 20px; gap: 16px; }
        }
        @media (max-width: 767.98px) {
            body { padding-top: 62px; }
            .section-pad { padding: 32px 0; }
            .section-pad-lg { padding: 40px 0; }
            .category-grid { grid-template-columns: 1fr; }
            .hero-xf {
                min-height: 520px;
                padding: 36px 0 72px;
            }
            .hero-h1 { font-size: 28px; }
            .hero-subtitle { font-size: 15px; }
            .hero-btn-group { flex-direction: column; }
            .hero-btn-group .btn { width: 100%; justify-content: center; }
            .hero-trust-row { gap: 16px; flex-wrap: wrap; }
            .stats-dark-section .stat-num-lg { font-size: 28px; }
            .brand-intro-card { padding: 22px; }
            .cta-final-section { padding: 48px 0; }
            .footer-xf { padding: 36px 0 20px; }
            .footer-bottom { flex-direction: column; text-align: center; }
            .score-table-card .table { font-size: 12px; }
            .score-table-card thead th,
            .score-table-card tbody td { padding: 10px 12px; }
        }
        @media (max-width: 519.98px) {
            .container { padding-left: 14px; padding-right: 14px; }
            .section-title-wrap { margin-bottom: 24px; }
            .card-xf { padding: 18px; }
            .pricing-card { padding: 22px; }
            .review-card { padding: 18px; }
            .news-card-body { padding: 14px 16px 16px; }
            .guarantee-item { max-width: 100%; }
            .guarantee-bar { flex-direction: column; align-items: flex-start; }
        }

/* roulang page: category1 */
:root {
            --xf-primary-dark: #0E1B15;
            --xf-primary-green: #16A34A;
            --xf-green-deep: #128A3E;
            --xf-accent-orange: #F97316;
            --xf-light-bg: #F6F7F3;
            --xf-dark-surface: #182019;
            --xf-text-primary: #172118;
            --xf-text-secondary: #5B6B5E;
            --xf-text-inverse: #F2F7F3;
            --xf-border-light: #DEE7DF;
            --xf-border-tint: rgba(22, 163, 74, 0.18);
            --xf-radius-sm: 8px;
            --xf-radius-md: 14px;
            --xf-radius-lg: 18px;
            --xf-shadow-sm: 0 1px 3px rgba(20, 30, 22, 0.08), 0 6px 24px rgba(20, 30, 22, 0.06);
            --xf-shadow-hover: 0 12px 32px rgba(16, 163, 74, 0.12);
            --xf-grad-dark: linear-gradient(135deg, #0E1B15 0%, #182019 55%, #0E1B15 100%);
            --xf-grad-cta: linear-gradient(135deg, #16A34A 0%, #128A3E 60%, #0E1B15 100%);
            --xf-grad-hero: linear-gradient(135deg, rgba(14, 27, 21, 0.92) 0%, rgba(24, 32, 25, 0.88) 50%, rgba(14, 27, 21, 0.95) 100%);
            --xf-font: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            --xf-section-pad: 56px 0;
            --xf-section-pad-mobile: 36px 0;
            --xf-tnum: "tnum" 1;
        }
        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--xf-font);
            font-size: 16px;
            line-height: 1.75;
            color: var(--xf-text-primary);
            background-color: var(--xf-light-bg);
            margin: 0;
            padding-top: 72px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--xf-primary-green);
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease, box-shadow 0.2s ease;
        }
        a:hover {
            color: var(--xf-green-deep);
        }
        a:focus-visible {
            outline: 2px solid var(--xf-primary-green);
            outline-offset: 3px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .lead {
            font-size: 17px;
            line-height: 1.85;
        }
        .text-accent-orange {
            color: var(--xf-accent-orange) !important;
        }
        .text-primary-green {
            color: var(--xf-primary-green) !important;
        }
        .text-inverse {
            color: var(--xf-text-inverse) !important;
        }
        .text-secondary-dark {
            color: var(--xf-text-secondary) !important;
        }
        .section-pad {
            padding: var(--xf-section-pad);
        }
        .section-pad-sm {
            padding: 32px 0;
        }
        .section-pad-lg {
            padding: 72px 0;
        }
        .section-title-wrap {
            max-width: 720px;
            margin-bottom: 40px;
        }
        .section-title-wrap .section-subtitle {
            font-size: 16px;
            color: var(--xf-text-secondary);
            margin-top: 8px;
            line-height: 1.7;
        }
        .section-title-wrap.text-center {
            margin-left: auto;
            margin-right: auto;
        }
        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            background-color: rgba(22, 163, 74, 0.1);
            color: var(--xf-primary-green);
            border: 1px solid rgba(22, 163, 74, 0.25);
            letter-spacing: 0.3px;
        }
        .badge-orange {
            background-color: rgba(249, 115, 22, 0.12);
            color: var(--xf-accent-orange);
            border-color: rgba(249, 115, 22, 0.3);
        }
        .badge-live {
            background-color: rgba(249, 115, 22, 0.15);
            color: var(--xf-accent-orange);
            border-color: rgba(249, 115, 22, 0.35);
            animation: livePulse 1.8s ease-in-out infinite;
        }
        @keyframes livePulse {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.6; }
        }
        .badge-finished {
            background-color: rgba(22, 163, 74, 0.12);
            color: var(--xf-primary-green);
            border-color: rgba(22, 163, 74, 0.3);
        }
        .badge-upcoming {
            background-color: rgba(91, 107, 94, 0.12);
            color: var(--xf-text-secondary);
            border-color: rgba(91, 107, 94, 0.25);
        }
        .tnum {
            font-feature-settings: var(--xf-tnum);
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.3px;
        }

        /* ===== 导航栏 ===== */
        .navbar-xf {
            background-color: rgba(14, 27, 21, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 12px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            border-bottom: 1px solid rgba(222, 231, 223, 0.12);
            min-height: 72px;
            transition: box-shadow 0.25s ease;
        }
        .navbar-xf.scrolled {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
        }
        .navbar-xf .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 22px;
            color: var(--xf-text-inverse);
            letter-spacing: -0.4px;
            padding: 0;
            white-space: nowrap;
        }
        .navbar-xf .navbar-brand:hover {
            color: var(--xf-primary-green);
        }
        .brand-logo-mark {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--xf-grad-cta);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(22, 163, 74, 0.3);
        }
        .navbar-xf .nav-link {
            color: rgba(242, 247, 243, 0.78);
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px !important;
            border-radius: 8px;
            transition: all 0.2s ease;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }
        .navbar-xf .nav-link:hover {
            color: var(--xf-text-inverse);
            background-color: rgba(22, 163, 74, 0.12);
        }
        .navbar-xf .nav-link.active {
            color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.12);
            font-weight: 600;
        }
        .navbar-xf .navbar-toggler {
            border: 1px solid rgba(222, 231, 223, 0.25);
            padding: 6px 10px;
            border-radius: 8px;
            background-color: rgba(255, 255, 255, 0.05);
        }
        .navbar-xf .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.3);
            outline: none;
        }
        .navbar-xf .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba(242,247,243,0.8)' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .nav-cta-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 8px;
        }
        .btn-nav-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--xf-text-inverse);
            border: 1px solid rgba(222, 231, 223, 0.35);
            background-color: transparent;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .btn-nav-secondary:hover {
            border-color: var(--xf-primary-green);
            color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.08);
        }
        .btn-nav-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 20px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: var(--xf-grad-cta);
            border: none;
            transition: all 0.2s ease;
            white-space: nowrap;
            box-shadow: 0 2px 12px rgba(22, 163, 74, 0.3);
        }
        .btn-nav-primary:hover {
            background: linear-gradient(135deg, #128A3E 0%, #0E1B15 100%);
            color: #fff;
            box-shadow: 0 4px 20px rgba(22, 163, 74, 0.45);
            transform: translateY(-1px);
        }

        /* ===== 面包屑 ===== */
        .breadcrumb-xf {
            padding: 16px 0;
            margin: 0;
            background-color: transparent;
            font-size: 14px;
        }
        .breadcrumb-xf .breadcrumb-item a {
            color: var(--xf-text-secondary);
            font-weight: 500;
        }
        .breadcrumb-xf .breadcrumb-item a:hover {
            color: var(--xf-primary-green);
        }
        .breadcrumb-xf .breadcrumb-item.active {
            color: var(--xf-primary-green);
            font-weight: 600;
        }
        .breadcrumb-xf .breadcrumb-item + .breadcrumb-item::before {
            content: "/";
            color: var(--xf-border-light);
            margin: 0 8px;
        }

        /* ===== 分类页头部 ===== */
        .category-head {
            background: var(--xf-grad-dark);
            padding: 40px 0 48px;
            position: relative;
            overflow: hidden;
            border-bottom: 1px solid rgba(222, 231, 223, 0.08);
        }
        .category-head::after {
            content: '';
            position: absolute;
            top: -60px;
            right: -60px;
            width: 260px;
            height: 260px;
            border-radius: 50%;
            background: rgba(22, 163, 74, 0.12);
            pointer-events: none;
        }
        .category-head::before {
            content: '';
            position: absolute;
            bottom: -80px;
            left: -40px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(249, 115, 22, 0.07);
            pointer-events: none;
        }
        .category-head .container {
            position: relative;
            z-index: 2;
        }
        .category-head h1 {
            font-size: 32px;
            font-weight: 700;
            color: var(--xf-text-inverse);
            letter-spacing: -0.5px;
            line-height: 1.3;
            margin-bottom: 12px;
        }
        .category-head .head-desc {
            font-size: 16px;
            color: rgba(242, 247, 243, 0.75);
            max-width: 680px;
            line-height: 1.8;
            margin-bottom: 0;
        }
        .category-head .head-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 20px;
            margin-top: 16px;
        }
        .category-head .head-meta span {
            font-size: 13px;
            color: rgba(242, 247, 243, 0.6);
            display: inline-flex;
            align-items: center;
            gap: 6px;
        }
        .category-head .head-meta i {
            color: var(--xf-primary-green);
            font-size: 14px;
        }

        /* ===== 表格样式 ===== */
        .score-table-wrap {
            background: #fff;
            border-radius: var(--xf-radius-lg);
            box-shadow: var(--xf-shadow-sm);
            overflow: hidden;
            border: 1px solid var(--xf-border-light);
        }
        .score-table {
            width: 100%;
            margin-bottom: 0;
            font-size: 15px;
        }
        .score-table thead {
            background-color: var(--xf-primary-dark);
            color: var(--xf-text-inverse);
        }
        .score-table thead th {
            font-size: 13px;
            font-weight: 600;
            padding: 14px 16px;
            letter-spacing: 0.4px;
            text-transform: uppercase;
            border-bottom: none;
            white-space: nowrap;
        }
        .score-table tbody td {
            padding: 16px;
            vertical-align: middle;
            border-bottom: 1px solid var(--xf-border-light);
            transition: background-color 0.2s ease;
        }
        .score-table tbody tr:hover {
            background-color: rgba(22, 163, 74, 0.04);
        }
        .score-table tbody tr:last-child td {
            border-bottom: none;
        }
        .score-table .league-tag {
            font-size: 12px;
            color: var(--xf-text-secondary);
            display: block;
            font-weight: 500;
        }
        .score-table .match-time {
            font-size: 13px;
            color: var(--xf-text-secondary);
            white-space: nowrap;
            font-weight: 500;
        }
        .score-table .team-name {
            font-weight: 600;
            font-size: 15px;
            color: var(--xf-text-primary);
        }
        .score-table .team-name.winner {
            color: var(--xf-primary-green);
        }
        .score-table .score-value {
            font-size: 20px;
            font-weight: 700;
            text-align: center;
            letter-spacing: 0.5px;
            font-feature-settings: var(--xf-tnum);
            font-variant-numeric: tabular-nums;
            color: var(--xf-text-primary);
            min-width: 64px;
        }
        .score-table .score-value.live-score {
            color: var(--xf-accent-orange);
        }
        .score-table .status-pill {
            font-size: 12px;
            font-weight: 600;
            padding: 4px 10px;
            border-radius: 100px;
            white-space: nowrap;
        }
        .status-pill.live {
            background-color: rgba(249, 115, 22, 0.12);
            color: var(--xf-accent-orange);
            border: 1px solid rgba(249, 115, 22, 0.3);
        }
        .status-pill.finished {
            background-color: rgba(22, 163, 74, 0.1);
            color: var(--xf-primary-green);
            border: 1px solid rgba(22, 163, 74, 0.25);
        }
        .status-pill.upcoming {
            background-color: rgba(91, 107, 94, 0.1);
            color: var(--xf-text-secondary);
            border: 1px solid rgba(91, 107, 94, 0.22);
        }

        /* ===== 数据速览卡片 ===== */
        .stat-overview-card {
            background: #fff;
            border-radius: var(--xf-radius-md);
            padding: 22px 20px;
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            transition: all 0.25s ease;
            height: 100%;
        }
        .stat-overview-card:hover {
            box-shadow: var(--xf-shadow-hover);
            transform: translateY(-3px);
            border-color: var(--xf-border-tint);
        }
        .stat-overview-card .stat-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(22, 163, 74, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: var(--xf-primary-green);
            margin-bottom: 14px;
        }
        .stat-overview-card .stat-value {
            font-size: 28px;
            font-weight: 700;
            color: var(--xf-text-primary);
            letter-spacing: -0.5px;
            font-feature-settings: var(--xf-tnum);
            font-variant-numeric: tabular-nums;
            line-height: 1.2;
        }
        .stat-overview-card .stat-label {
            font-size: 14px;
            color: var(--xf-text-secondary);
            margin-top: 4px;
        }

        /* ===== 标签筛选 ===== */
        .filter-tags-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 10px;
        }
        .filter-tag-btn {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            color: var(--xf-text-secondary);
            background-color: #fff;
            border: 1px solid var(--xf-border-light);
            transition: all 0.2s ease;
            cursor: pointer;
            text-decoration: none;
        }
        .filter-tag-btn:hover {
            border-color: var(--xf-primary-green);
            color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.05);
        }
        .filter-tag-btn.active-tag {
            background: var(--xf-grad-cta);
            color: #fff;
            border-color: var(--xf-primary-green);
            box-shadow: 0 2px 10px rgba(22, 163, 74, 0.25);
        }

        /* ===== 资讯卡片 ===== */
        .news-card {
            background: #fff;
            border-radius: var(--xf-radius-md);
            overflow: hidden;
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            transition: all 0.25s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            box-shadow: var(--xf-shadow-hover);
            transform: translateY(-4px);
            border-color: var(--xf-border-tint);
        }
        .news-card .news-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 9;
        }
        .news-card .news-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .news-card:hover .news-img-wrap img {
            transform: scale(1.04);
        }
        .news-card .news-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-card .news-date {
            font-size: 12px;
            color: var(--xf-text-secondary);
            margin-bottom: 8px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .news-card .news-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--xf-text-primary);
            line-height: 1.5;
            margin-bottom: 8px;
        }
        .news-card .news-title a {
            color: var(--xf-text-primary);
        }
        .news-card .news-title a:hover {
            color: var(--xf-primary-green);
        }
        .news-card .news-excerpt {
            font-size: 14px;
            color: var(--xf-text-secondary);
            line-height: 1.7;
            flex: 1;
        }

        /* ===== 分类说明扩展 ===== */
        .category-detail-section {
            background: #fff;
            border-radius: var(--xf-radius-lg);
            padding: 32px 32px 36px;
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
        }
        .category-detail-section h3 {
            font-size: 19px;
            font-weight: 600;
            color: var(--xf-text-primary);
            margin-bottom: 16px;
        }
        .category-detail-section p {
            font-size: 15px;
            line-height: 1.85;
            color: var(--xf-text-secondary);
            margin-bottom: 16px;
        }
        .category-detail-section p:last-child {
            margin-bottom: 0;
        }

        /* ===== CTA 条 ===== */
        .cta-strip {
            background: var(--xf-grad-cta);
            border-radius: var(--xf-radius-lg);
            padding: 40px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            position: relative;
            overflow: hidden;
        }
        .cta-strip::after {
            content: '';
            position: absolute;
            top: -40px;
            right: -20px;
            width: 180px;
            height: 180px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            pointer-events: none;
        }
        .cta-strip .cta-text {
            position: relative;
            z-index: 2;
        }
        .cta-strip .cta-text h3 {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }
        .cta-strip .cta-text p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 0;
            line-height: 1.7;
        }
        .cta-strip .cta-actions {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        .btn-cta-light {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            color: var(--xf-primary-dark);
            background-color: #fff;
            border: none;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .btn-cta-light:hover {
            background-color: var(--xf-light-bg);
            color: var(--xf-green-deep);
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(255, 255, 255, 0.3);
        }
        .btn-cta-outline-light {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            background-color: transparent;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .btn-cta-outline-light:hover {
            background-color: rgba(255, 255, 255, 0.12);
            border-color: #fff;
            color: #fff;
        }

        /* ===== 分页控件 ===== */
        .pagination-xf {
            display: flex;
            justify-content: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .pagination-xf .page-link-xf {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 14px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--xf-text-secondary);
            background-color: #fff;
            border: 1px solid var(--xf-border-light);
            transition: all 0.2s ease;
            text-decoration: none;
        }
        .pagination-xf .page-link-xf:hover {
            border-color: var(--xf-primary-green);
            color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.05);
        }
        .pagination-xf .page-link-xf.active-page {
            background: var(--xf-grad-cta);
            color: #fff;
            border-color: var(--xf-primary-green);
            font-weight: 600;
        }
        .pagination-xf .page-link-xf.disabled-page {
            opacity: 0.45;
            pointer-events: none;
        }

        /* ===== 页脚 ===== */
        .footer-xf {
            background-color: var(--xf-dark-surface);
            color: rgba(242, 247, 243, 0.7);
            padding: 56px 0 24px;
            border-top: 1px solid rgba(222, 231, 223, 0.08);
        }
        .footer-brand-name {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--xf-text-inverse);
            margin-bottom: 14px;
        }
        .footer-brand-name .brand-logo-mark {
            width: 32px;
            height: 32px;
            font-size: 16px;
            border-radius: 8px;
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(242, 247, 243, 0.6);
            max-width: 340px;
        }
        .footer-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--xf-text-inverse);
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 10px;
        }
        .footer-links a {
            font-size: 14px;
            color: rgba(242, 247, 243, 0.6);
            transition: color 0.2s ease;
            display: inline-flex;
            align-items: center;
        }
        .footer-links a:hover {
            color: var(--xf-primary-green);
        }
        .footer-links a i {
            font-size: 13px;
        }
        .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(222, 231, 223, 0.1);
            display: flex;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
            font-size: 13px;
            color: rgba(242, 247, 243, 0.45);
        }
        .footer-bottom a {
            color: rgba(242, 247, 243, 0.6);
        }
        .footer-bottom a:hover {
            color: var(--xf-primary-green);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 991.98px) {
            .navbar-xf .navbar-collapse {
                background-color: rgba(14, 27, 21, 0.98);
                border-radius: 12px;
                padding: 16px 20px;
                margin-top: 12px;
                border: 1px solid rgba(222, 231, 223, 0.12);
            }
            .nav-cta-group {
                flex-direction: column;
                margin-top: 12px;
                margin-left: 0;
                gap: 8px;
                width: 100%;
            }
            .nav-cta-group a {
                width: 100%;
                justify-content: center;
            }
            .navbar-xf .nav-link {
                padding: 10px 12px !important;
            }
            .category-head h1 {
                font-size: 26px;
            }
        }
        @media (max-width: 767.98px) {
            body {
                padding-top: 64px;
            }
            :root {
                --xf-section-pad: 36px 0;
            }
            .navbar-xf {
                min-height: 64px;
                padding: 10px 0;
            }
            .navbar-xf .navbar-brand {
                font-size: 19px;
                gap: 8px;
            }
            .brand-logo-mark {
                width: 32px;
                height: 32px;
                font-size: 16px;
            }
            .category-head {
                padding: 28px 0 32px;
            }
            .category-head h1 {
                font-size: 24px;
            }
            .category-head .head-desc {
                font-size: 14px;
            }
            .score-table-wrap {
                overflow-x: auto;
            }
            .score-table {
                min-width: 620px;
                font-size: 13px;
            }
            .score-table thead th {
                font-size: 11px;
                padding: 10px 12px;
            }
            .score-table tbody td {
                padding: 12px;
            }
            .score-table .score-value {
                font-size: 17px;
                min-width: 50px;
            }
            .stat-overview-card .stat-value {
                font-size: 24px;
            }
            .cta-strip {
                padding: 28px 24px;
                flex-direction: column;
                text-align: center;
            }
            .cta-strip .cta-actions {
                justify-content: center;
            }
            .footer-xf {
                padding: 40px 0 20px;
            }
            .category-detail-section {
                padding: 24px 20px;
            }
        }
        @media (max-width: 519.98px) {
            .nav-cta-group {
                gap: 6px;
            }
            .btn-nav-secondary,
            .btn-nav-primary {
                padding: 8px 14px;
                font-size: 13px;
            }
            .filter-tag-btn {
                font-size: 12px;
                padding: 6px 14px;
            }
            .breadcrumb-xf {
                font-size: 13px;
            }
            .cta-strip .cta-text h3 {
                font-size: 19px;
            }
        }

/* roulang page: category2 */
:root {
            --xf-primary-dark: #0E1B15;
            --xf-primary-green: #16A34A;
            --xf-green-deep: #128A3E;
            --xf-accent-orange: #F97316;
            --xf-light-bg: #F6F7F3;
            --xf-dark-surface: #182019;
            --xf-text-primary: #172118;
            --xf-text-secondary: #5B6B5E;
            --xf-text-inverse: #F2F7F3;
            --xf-border-light: #DEE7DF;
            --xf-border-tint: rgba(22, 163, 74, 0.18);
            --xf-radius-sm: 8px;
            --xf-radius-md: 14px;
            --xf-radius-lg: 18px;
            --xf-shadow-sm: 0 1px 3px rgba(20, 30, 22, 0.08), 0 6px 24px rgba(20, 30, 22, 0.06);
            --xf-shadow-hover: 0 12px 32px rgba(16, 163, 74, 0.12);
            --xf-grad-dark: linear-gradient(135deg, #0E1B15 0%, #182019 55%, #0E1B15 100%);
            --xf-grad-cta: linear-gradient(135deg, #16A34A 0%, #128A3E 60%, #0E1B15 100%);
            --xf-grad-hero: linear-gradient(135deg, rgba(14, 27, 21, 0.92) 0%, rgba(24, 32, 25, 0.88) 50%, rgba(14, 27, 21, 0.95) 100%);
            --xf-font: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            --xf-section-pad: 56px 0;
            --xf-section-pad-mobile: 36px 0;
            --xf-tnum: "tnum" 1;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--xf-font);
            font-size: 16px;
            line-height: 1.75;
            color: var(--xf-text-primary);
            background-color: var(--xf-light-bg);
            margin: 0;
            padding-top: 72px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--xf-primary-green);
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease;
        }
        a:hover {
            color: var(--xf-green-deep);
        }
        a:focus-visible {
            outline: 2px solid var(--xf-primary-green);
            outline-offset: 3px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .lead {
            font-size: 17px;
            line-height: 1.85;
        }
        .text-accent-orange {
            color: var(--xf-accent-orange) !important;
        }
        .text-primary-green {
            color: var(--xf-primary-green) !important;
        }
        .text-inverse {
            color: var(--xf-text-inverse) !important;
        }
        .text-secondary-dark {
            color: var(--xf-text-secondary) !important;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-pad {
            padding: var(--xf-section-pad);
        }
        .section-pad-sm {
            padding: 32px 0;
        }
        .section-pad-lg {
            padding: 72px 0;
        }
        .section-title-wrap {
            max-width: 720px;
            margin-bottom: 40px;
        }
        .section-title-wrap .section-subtitle {
            font-size: 16px;
            color: var(--xf-text-secondary);
            margin-top: 8px;
            line-height: 1.7;
        }
        .section-title-wrap.text-center {
            margin-left: auto;
            margin-right: auto;
        }
        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            background-color: rgba(22, 163, 74, 0.1);
            color: var(--xf-primary-green);
            border: 1px solid rgba(22, 163, 74, 0.25);
            letter-spacing: 0.3px;
        }
        .badge-orange {
            background-color: rgba(249, 115, 22, 0.12);
            color: var(--xf-accent-orange);
            border-color: rgba(249, 115, 22, 0.3);
        }
        /* 导航栏 */
        .navbar-xf {
            background-color: rgba(14, 27, 21, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 12px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            border-bottom: 1px solid rgba(222, 231, 223, 0.12);
            min-height: 72px;
            transition: box-shadow 0.25s ease;
        }
        .navbar-xf.scrolled {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
        }
        .navbar-xf .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 22px;
            color: var(--xf-text-inverse);
            letter-spacing: -0.4px;
            padding: 0;
            white-space: nowrap;
        }
        .navbar-xf .navbar-brand:hover {
            color: var(--xf-primary-green);
        }
        .brand-logo-mark {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--xf-grad-cta);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(22, 163, 74, 0.3);
        }
        .navbar-xf .nav-link {
            color: rgba(242, 247, 243, 0.78);
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px !important;
            border-radius: 8px;
            transition: all 0.2s ease;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }
        .navbar-xf .nav-link:hover {
            color: var(--xf-text-inverse);
            background-color: rgba(22, 163, 74, 0.12);
        }
        .navbar-xf .nav-link.active {
            color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.15);
        }
        .navbar-xf .nav-link.active::after {
            content: '';
            display: block;
            width: 18px;
            height: 2px;
            background-color: var(--xf-primary-green);
            margin: 4px auto 0;
            border-radius: 2px;
        }
        .nav-cta-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 16px;
        }
        .btn-nav-secondary {
            padding: 9px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--xf-text-inverse);
            border: 1px solid rgba(242, 247, 243, 0.3);
            background: transparent;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .btn-nav-secondary:hover {
            border-color: var(--xf-primary-green);
            color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.08);
        }
        .btn-nav-primary {
            padding: 9px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: var(--xf-grad-cta);
            border: 1px solid transparent;
            transition: all 0.2s ease;
            white-space: nowrap;
            box-shadow: 0 2px 10px rgba(22, 163, 74, 0.3);
        }
        .btn-nav-primary:hover {
            background: var(--xf-grad-dark);
            box-shadow: 0 4px 16px rgba(22, 163, 74, 0.4);
            color: #fff;
        }
        .navbar-toggler {
            border: 1px solid rgba(242, 247, 243, 0.3);
            border-radius: 8px;
            padding: 6px 10px;
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.3);
            outline: none;
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28242,247,243,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        /* 面包屑 */
        .breadcrumb-xf {
            background-color: transparent;
            padding: 0;
            margin-bottom: 24px;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .breadcrumb-xf .breadcrumb-item + .breadcrumb-item::before {
            content: '/';
            color: var(--xf-text-secondary);
            padding-right: 8px;
        }
        .breadcrumb-xf a {
            color: var(--xf-text-secondary);
            transition: color 0.2s ease;
        }
        .breadcrumb-xf a:hover {
            color: var(--xf-primary-green);
        }
        .breadcrumb-xf .active {
            color: var(--xf-primary-green);
            font-weight: 500;
        }

        /* 分类头部 */
        .category-hero-xf {
            background: var(--xf-grad-dark);
            border-radius: var(--xf-radius-lg);
            padding: 48px 40px;
            margin-bottom: 40px;
            position: relative;
            overflow: hidden;
            border: 1px solid rgba(222, 231, 223, 0.08);
        }
        .category-hero-xf::after {
            content: '';
            position: absolute;
            right: -60px;
            top: -60px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(22, 163, 74, 0.12);
            pointer-events: none;
        }
        .category-hero-xf h1 {
            font-size: 32px;
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.5px;
            color: var(--xf-text-inverse);
            margin-bottom: 12px;
            position: relative;
            z-index: 1;
        }
        .category-hero-xf .hero-desc {
            font-size: 16px;
            line-height: 1.8;
            color: rgba(242, 247, 243, 0.75);
            max-width: 680px;
            position: relative;
            z-index: 1;
        }

        /* 文章卡片 */
        .article-card-xf {
            background: #fff;
            border-radius: var(--xf-radius-md);
            border: 1px solid var(--xf-border-light);
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--xf-shadow-sm);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .article-card-xf:hover {
            transform: translateY(-4px);
            box-shadow: var(--xf-shadow-hover);
            border-color: var(--xf-border-tint);
        }
        .article-card-xf .card-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            background: var(--xf-light-bg);
        }
        .article-card-xf .card-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .article-card-xf:hover .card-img-wrap img {
            transform: scale(1.05);
        }
        .article-card-xf .card-img-wrap .card-badge {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
        }
        .article-card-xf .card-body-xf {
            padding: 20px 22px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .article-card-xf .card-body-xf h3 {
            font-size: 17px;
            font-weight: 600;
            line-height: 1.45;
            margin-bottom: 8px;
            color: var(--xf-text-primary);
            transition: color 0.2s ease;
        }
        .article-card-xf .card-body-xf h3 a {
            color: var(--xf-text-primary);
            text-decoration: none;
        }
        .article-card-xf .card-body-xf h3 a:hover {
            color: var(--xf-primary-green);
        }
        .article-card-xf .card-excerpt {
            font-size: 14px;
            color: var(--xf-text-secondary);
            line-height: 1.7;
            margin-bottom: 16px;
            flex: 1;
        }
        .article-card-xf .card-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            font-size: 13px;
            color: var(--xf-text-secondary);
        }
        .article-card-xf .card-meta i {
            font-size: 14px;
            color: var(--xf-primary-green);
        }

        /* 分页 */
        .pagination-xf {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }
        .pagination-xf .page-link-xf {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 14px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--xf-text-secondary);
            background: #fff;
            border: 1px solid var(--xf-border-light);
            transition: all 0.2s ease;
            text-decoration: none;
        }
        .pagination-xf .page-link-xf:hover {
            border-color: var(--xf-primary-green);
            color: var(--xf-primary-green);
            background: rgba(22, 163, 74, 0.06);
        }
        .pagination-xf .page-link-xf.active {
            background: var(--xf-primary-green);
            color: #fff;
            border-color: var(--xf-primary-green);
            box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
        }
        .pagination-xf .page-link-xf.disabled {
            opacity: 0.4;
            pointer-events: none;
        }

        /* 数据速览卡 */
        .stat-card-xf {
            background: #fff;
            border-radius: var(--xf-radius-md);
            padding: 24px 28px;
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            display: flex;
            align-items: flex-start;
            gap: 16px;
            transition: all 0.3s ease;
        }
        .stat-card-xf:hover {
            border-color: var(--xf-border-tint);
            box-shadow: var(--xf-shadow-hover);
        }
        .stat-card-xf .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            flex-shrink: 0;
        }
        .stat-card-xf .stat-icon.green {
            background: rgba(22, 163, 74, 0.1);
            color: var(--xf-primary-green);
        }
        .stat-card-xf .stat-icon.orange {
            background: rgba(249, 115, 22, 0.12);
            color: var(--xf-accent-orange);
        }
        .stat-card-xf .stat-icon.dark {
            background: rgba(14, 27, 21, 0.08);
            color: var(--xf-primary-dark);
        }
        .stat-card-xf .stat-info h4 {
            font-size: 24px;
            font-weight: 700;
            font-feature-settings: var(--xf-tnum);
            color: var(--xf-text-primary);
            margin-bottom: 4px;
            line-height: 1.2;
        }
        .stat-card-xf .stat-info p {
            font-size: 14px;
            color: var(--xf-text-secondary);
            margin: 0;
        }

        /* 筛选标签 */
        .filter-tag-xf {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 500;
            background: #fff;
            border: 1px solid var(--xf-border-light);
            color: var(--xf-text-secondary);
            transition: all 0.2s ease;
            text-decoration: none;
            cursor: pointer;
        }
        .filter-tag-xf:hover {
            border-color: var(--xf-primary-green);
            color: var(--xf-primary-green);
            background: rgba(22, 163, 74, 0.06);
        }
        .filter-tag-xf.active {
            background: var(--xf-primary-green);
            color: #fff;
            border-color: var(--xf-primary-green);
        }

        /* CTA条 */
        .cta-strip-xf {
            background: var(--xf-grad-cta);
            border-radius: var(--xf-radius-lg);
            padding: 40px 44px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            border: 1px solid rgba(222, 231, 223, 0.15);
        }
        .cta-strip-xf h3 {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }
        .cta-strip-xf p {
            color: rgba(255, 255, 255, 0.8);
            margin: 0;
            font-size: 15px;
        }
        .btn-xf-primary {
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            background: var(--xf-primary-dark);
            border: 1px solid transparent;
            transition: all 0.3s ease;
            text-decoration: none;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            white-space: nowrap;
        }
        .btn-xf-primary:hover {
            background: #0a120d;
            color: #fff;
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.3);
            transform: translateY(-2px);
        }

        /* 页脚 */
        .footer-xf {
            background: var(--xf-primary-dark);
            color: rgba(242, 247, 243, 0.75);
            padding: 56px 0 0;
            margin-top: 72px;
            border-top: 1px solid rgba(222, 231, 223, 0.08);
        }
        .footer-xf .footer-brand-name {
            font-size: 22px;
            font-weight: 700;
            color: var(--xf-text-inverse);
            display: flex;
            align-items: center;
            gap: 10px;
            margin-bottom: 16px;
        }
        .footer-xf .footer-desc {
            font-size: 14px;
            line-height: 1.8;
            color: rgba(242, 247, 243, 0.6);
            margin-bottom: 24px;
            max-width: 380px;
        }
        .footer-xf .footer-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--xf-text-inverse);
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }
        .footer-xf .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-xf .footer-links li {
            margin-bottom: 10px;
        }
        .footer-xf .footer-links a {
            color: rgba(242, 247, 243, 0.6);
            font-size: 14px;
            transition: color 0.2s ease;
            text-decoration: none;
        }
        .footer-xf .footer-links a:hover {
            color: var(--xf-primary-green);
        }
        .footer-xf .footer-bottom {
            border-top: 1px solid rgba(222, 231, 223, 0.1);
            padding: 20px 0;
            margin-top: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: rgba(242, 247, 243, 0.45);
        }
        .footer-xf .footer-bottom a {
            color: rgba(242, 247, 243, 0.45);
            text-decoration: none;
        }
        .footer-xf .footer-bottom a:hover {
            color: var(--xf-primary-green);
        }

        /* 响应式 */
        @media (max-width: 992px) {
            .navbar-xf .navbar-collapse {
                background: rgba(14, 27, 21, 0.98);
                border-radius: 12px;
                padding: 16px 20px;
                margin-top: 12px;
                border: 1px solid rgba(222, 231, 223, 0.1);
            }
            .nav-cta-group {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
                margin-left: 0;
                margin-top: 12px;
            }
            .navbar-xf .nav-link.active::after {
                display: none;
            }
            .category-hero-xf {
                padding: 32px 24px;
            }
            .category-hero-xf h1 {
                font-size: 26px;
            }
            .cta-strip-xf {
                padding: 28px 24px;
                flex-direction: column;
                align-items: flex-start;
            }
        }
        @media (max-width: 768px) {
            body {
                padding-top: 64px;
            }
            .category-hero-xf {
                padding: 24px 18px;
                border-radius: 12px;
            }
            .category-hero-xf h1 {
                font-size: 22px;
            }
            .section-pad {
                padding: var(--xf-section-pad-mobile);
            }
            .footer-xf {
                padding-top: 40px;
            }
        }
        @media (max-width: 520px) {
            .category-hero-xf {
                padding: 20px 16px;
            }
            .category-hero-xf h1 {
                font-size: 20px;
            }
            .article-card-xf .card-body-xf {
                padding: 16px 16px 18px;
            }
            .article-card-xf .card-body-xf h3 {
                font-size: 15px;
            }
            .stat-card-xf {
                padding: 18px 16px;
                gap: 12px;
            }
            .stat-card-xf .stat-icon {
                width: 40px;
                height: 40px;
                font-size: 18px;
                border-radius: 10px;
            }
            .stat-card-xf .stat-info h4 {
                font-size: 20px;
            }
            .pagination-xf .page-link-xf {
                min-width: 34px;
                height: 34px;
                padding: 0 10px;
                font-size: 13px;
            }
            .breadcrumb-xf {
                font-size: 13px;
            }
        }

/* roulang page: category3 */
:root {
            --xf-primary-dark: #0E1B15;
            --xf-primary-green: #16A34A;
            --xf-green-deep: #128A3E;
            --xf-accent-orange: #F97316;
            --xf-light-bg: #F6F7F3;
            --xf-dark-surface: #182019;
            --xf-text-primary: #172118;
            --xf-text-secondary: #5B6B5E;
            --xf-text-inverse: #F2F7F3;
            --xf-border-light: #DEE7DF;
            --xf-border-tint: rgba(22, 163, 74, 0.18);
            --xf-radius-sm: 8px;
            --xf-radius-md: 14px;
            --xf-radius-lg: 18px;
            --xf-shadow-sm: 0 1px 3px rgba(20, 30, 22, 0.08), 0 6px 24px rgba(20, 30, 22, 0.06);
            --xf-shadow-hover: 0 12px 32px rgba(16, 163, 74, 0.12);
            --xf-grad-dark: linear-gradient(135deg, #0E1B15 0%, #182019 55%, #0E1B15 100%);
            --xf-grad-cta: linear-gradient(135deg, #16A34A 0%, #128A3E 60%, #0E1B15 100%);
            --xf-grad-hero: linear-gradient(135deg, rgba(14, 27, 21, 0.92) 0%, rgba(24, 32, 25, 0.88) 50%, rgba(14, 27, 21, 0.95) 100%);
            --xf-font: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            --xf-section-pad: 56px 0;
            --xf-section-pad-mobile: 36px 0;
            --xf-tnum: "tnum" 1;
        }

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }

        body {
            font-family: var(--xf-font);
            font-size: 16px;
            line-height: 1.75;
            color: var(--xf-text-primary);
            background-color: var(--xf-light-bg);
            margin: 0;
            padding-top: 72px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }

        a {
            color: var(--xf-primary-green);
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease;
        }

        a:hover {
            color: var(--xf-green-deep);
        }

        a:focus-visible {
            outline: 2px solid var(--xf-primary-green);
            outline-offset: 3px;
            border-radius: 4px;
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }

        .section-pad {
            padding: var(--xf-section-pad);
        }

        .section-pad-sm {
            padding: 32px 0;
        }

        .section-pad-lg {
            padding: 72px 0;
        }

        .section-title-wrap {
            max-width: 720px;
            margin-bottom: 40px;
        }

        .section-title-wrap .section-subtitle {
            font-size: 16px;
            color: var(--xf-text-secondary);
            margin-top: 8px;
            line-height: 1.7;
        }

        .section-title-wrap.text-center {
            margin-left: auto;
            margin-right: auto;
        }

        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            background-color: rgba(22, 163, 74, 0.1);
            color: var(--xf-primary-green);
            border: 1px solid rgba(22, 163, 74, 0.25);
            letter-spacing: 0.3px;
        }

        .badge-orange {
            background-color: rgba(249, 115, 22, 0.12);
            color: var(--xf-accent-orange);
            border-color: rgba(249, 115, 22, 0.3);
        }

        .text-accent-orange {
            color: var(--xf-accent-orange) !important;
        }
        .text-primary-green {
            color: var(--xf-primary-green) !important;
        }
        .text-inverse {
            color: var(--xf-text-inverse) !important;
        }
        .text-secondary-dark {
            color: var(--xf-text-secondary) !important;
        }

        .data-number {
            font-feature-settings: var(--xf-tnum);
            font-variant-numeric: tabular-nums;
            letter-spacing: -0.3px;
        }

        /* ===== 导航栏 ===== */
        .navbar-xf {
            background-color: rgba(14, 27, 21, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 12px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            border-bottom: 1px solid rgba(222, 231, 223, 0.12);
            min-height: 72px;
            transition: box-shadow 0.25s ease;
        }

        .navbar-xf.scrolled {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
        }

        .navbar-xf .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 22px;
            color: var(--xf-text-inverse);
            letter-spacing: -0.4px;
            padding: 0;
            white-space: nowrap;
        }

        .navbar-xf .navbar-brand:hover {
            color: var(--xf-primary-green);
        }

        .brand-logo-mark {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--xf-grad-cta);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(22, 163, 74, 0.3);
        }

        .navbar-xf .nav-link {
            color: rgba(242, 247, 243, 0.78);
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px !important;
            border-radius: 8px;
            transition: all 0.2s ease;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }

        .navbar-xf .nav-link:hover {
            color: #fff;
            background-color: rgba(22, 163, 74, 0.15);
        }

        .navbar-xf .nav-link.active {
            color: #fff;
            background-color: rgba(22, 163, 74, 0.25);
            box-shadow: inset 0 0 0 1px rgba(22, 163, 74, 0.35);
        }

        .navbar-xf .navbar-toggler {
            border: 1px solid rgba(222, 231, 223, 0.3);
            background-color: rgba(222, 231, 223, 0.08);
            padding: 8px 10px;
            border-radius: 8px;
        }

        .navbar-xf .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28242, 247, 243, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }

        .navbar-xf .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.35);
            border-color: var(--xf-primary-green);
        }

        .nav-cta-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 12px;
        }

        .btn-nav-secondary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: rgba(242, 247, 243, 0.9);
            border: 1px solid rgba(222, 231, 223, 0.35);
            background: transparent;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .btn-nav-secondary:hover {
            color: #fff;
            border-color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.12);
        }

        .btn-nav-primary {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 9px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: var(--xf-grad-cta);
            border: 1px solid transparent;
            box-shadow: 0 2px 10px rgba(22, 163, 74, 0.3);
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .btn-nav-primary:hover {
            color: #fff;
            background: linear-gradient(135deg, #128A3E 0%, #0E1B15 100%);
            box-shadow: 0 4px 18px rgba(22, 163, 74, 0.45);
            transform: translateY(-1px);
        }

        /* ===== 面包屑 ===== */
        .breadcrumb-xf {
            background: transparent;
            padding: 0;
            margin: 0;
            font-size: 14px;
            display: flex;
            align-items: center;
            flex-wrap: wrap;
            gap: 6px;
        }

        .breadcrumb-xf .breadcrumb-item {
            display: flex;
            align-items: center;
            gap: 6px;
        }

        .breadcrumb-xf .breadcrumb-item + .breadcrumb-item::before {
            content: "\F285";
            font-family: 'bootstrap-icons';
            font-size: 11px;
            color: var(--xf-text-secondary);
            margin-right: 2px;
        }

        .breadcrumb-xf a {
            color: var(--xf-primary-green);
            font-weight: 500;
        }

        .breadcrumb-xf a:hover {
            color: var(--xf-green-deep);
            text-decoration: underline;
        }

        .breadcrumb-xf .active {
            color: var(--xf-text-secondary);
            font-weight: 500;
        }

        /* ===== 分类页头部 ===== */
        .category-hero-xf {
            background: var(--xf-grad-dark);
            padding: 56px 0 48px;
            position: relative;
            overflow: hidden;
            color: var(--xf-text-inverse);
        }

        .category-hero-xf::after {
            content: "";
            position: absolute;
            top: -40%;
            right: -20%;
            width: 500px;
            height: 500px;
            background: radial-gradient(circle, rgba(22, 163, 74, 0.14) 0%, transparent 70%);
            border-radius: 50%;
            pointer-events: none;
        }

        .category-hero-xf h1 {
            font-size: 34px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.25;
            margin: 0 0 12px;
            color: #fff;
        }

        .category-hero-xf .category-subtitle {
            font-size: 17px;
            color: rgba(242, 247, 243, 0.8);
            max-width: 680px;
            line-height: 1.8;
            margin: 0;
        }

        /* ===== 统计卡片 ===== */
        .stat-card-xf {
            background: #fff;
            border-radius: var(--xf-radius-md);
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            padding: 24px 22px;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .stat-card-xf:hover {
            box-shadow: var(--xf-shadow-hover);
            border-color: var(--xf-border-tint);
            transform: translateY(-3px);
        }

        .stat-card-xf .stat-icon {
            width: 48px;
            height: 48px;
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 24px;
            margin-bottom: 16px;
            background: rgba(22, 163, 74, 0.1);
            color: var(--xf-primary-green);
        }

        .stat-card-xf .stat-value {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: -0.5px;
            color: var(--xf-text-primary);
            line-height: 1.2;
            font-feature-settings: var(--xf-tnum);
            font-variant-numeric: tabular-nums;
            margin-bottom: 6px;
        }

        .stat-card-xf .stat-label {
            font-size: 14px;
            color: var(--xf-text-secondary);
            font-weight: 500;
        }

        /* ===== 图表卡片 ===== */
        .chart-card-xf {
            background: #fff;
            border-radius: var(--xf-radius-lg);
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            padding: 28px;
            transition: all 0.3s ease;
        }

        .chart-card-xf:hover {
            box-shadow: var(--xf-shadow-hover);
            border-color: var(--xf-border-tint);
        }

        .chart-bar-row {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }

        .chart-bar-label {
            font-size: 13px;
            font-weight: 600;
            color: var(--xf-text-secondary);
            min-width: 80px;
            text-align: right;
            white-space: nowrap;
        }

        .chart-bar-track {
            flex: 1;
            height: 12px;
            background-color: rgba(222, 231, 223, 0.5);
            border-radius: 100px;
            overflow: hidden;
        }

        .chart-bar-fill {
            height: 100%;
            border-radius: 100px;
            background: var(--xf-grad-cta);
            transition: width 0.8s ease;
        }

        .chart-bar-fill.orange {
            background: linear-gradient(135deg, #F97316, #F97316dd);
        }

        .chart-bar-value {
            font-size: 14px;
            font-weight: 700;
            color: var(--xf-text-primary);
            min-width: 44px;
            font-feature-settings: var(--xf-tnum);
            font-variant-numeric: tabular-nums;
        }

        /* ===== 表格 ===== */
        .table-xf {
            width: 100%;
            border-collapse: separate;
            border-spacing: 0;
            font-size: 14px;
            margin: 0;
        }

        .table-xf thead th {
            background-color: var(--xf-primary-dark);
            color: #fff;
            font-weight: 600;
            font-size: 13px;
            letter-spacing: 0.4px;
            padding: 14px 16px;
            border: none;
            text-align: left;
            white-space: nowrap;
        }

        .table-xf thead th:first-child {
            border-radius: 10px 0 0 10px;
        }

        .table-xf thead th:last-child {
            border-radius: 0 10px 10px 0;
        }

        .table-xf tbody td {
            padding: 15px 16px;
            border-bottom: 1px solid var(--xf-border-light);
            vertical-align: middle;
            color: var(--xf-text-primary);
            font-weight: 500;
            font-feature-settings: var(--xf-tnum);
            font-variant-numeric: tabular-nums;
        }

        .table-xf tbody tr:last-child td {
            border-bottom: none;
        }

        .table-xf tbody tr {
            transition: background-color 0.2s ease;
            cursor: default;
        }

        .table-xf tbody tr:hover {
            background-color: rgba(22, 163, 74, 0.05);
        }

        .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
        }

        .team-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }

        .team-dot.green {
            background: var(--xf-primary-green);
        }
        .team-dot.orange {
            background: var(--xf-accent-orange);
        }
        .team-dot.dark {
            background: var(--xf-primary-dark);
        }
        .team-dot.gray {
            background: #8a9a8e;
        }

        /* ===== 资讯卡片 ===== */
        .news-card-xf {
            background: #fff;
            border-radius: var(--xf-radius-md);
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            overflow: hidden;
            transition: all 0.3s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }

        .news-card-xf:hover {
            box-shadow: var(--xf-shadow-hover);
            border-color: var(--xf-border-tint);
            transform: translateY(-4px);
        }

        .news-card-xf .news-img-wrap {
            position: relative;
            overflow: hidden;
            aspect-ratio: 16 / 9;
            background-color: var(--xf-dark-surface);
        }

        .news-card-xf .news-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .news-card-xf:hover .news-img-wrap img {
            transform: scale(1.05);
        }

        .news-card-xf .news-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }

        .news-card-xf .news-tag {
            font-size: 12px;
            font-weight: 600;
            color: var(--xf-primary-green);
            letter-spacing: 0.5px;
            text-transform: uppercase;
            margin-bottom: 8px;
        }

        .news-card-xf .news-title {
            font-size: 17px;
            font-weight: 650;
            line-height: 1.45;
            margin: 0 0 8px;
            color: var(--xf-text-primary);
        }

        .news-card-xf .news-summary {
            font-size: 14px;
            color: var(--xf-text-secondary);
            line-height: 1.7;
            margin: 0 0 14px;
            flex: 1;
        }

        .news-card-xf .news-meta {
            font-size: 12px;
            color: var(--xf-text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
        }

        /* ===== 标签 ===== */
        .tag-pill-xf {
            display: inline-flex;
            align-items: center;
            padding: 8px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            background: #fff;
            color: var(--xf-text-secondary);
            border: 1px solid var(--xf-border-light);
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .tag-pill-xf:hover {
            color: var(--xf-primary-green);
            border-color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.06);
            transform: translateY(-1px);
        }

        .tag-pill-xf.active {
            background: var(--xf-primary-green);
            color: #fff;
            border-color: var(--xf-primary-green);
            box-shadow: 0 2px 8px rgba(22, 163, 74, 0.3);
        }

        /* ===== 说明区块 ===== */
        .explainer-panel-xf {
            background: #fff;
            border-radius: var(--xf-radius-lg);
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            padding: 32px 28px;
        }

        .explainer-panel-xf h3 {
            font-size: 18px;
            font-weight: 600;
            margin-bottom: 10px;
            color: var(--xf-text-primary);
            letter-spacing: -0.2px;
        }

        .explainer-panel-xf p {
            font-size: 15px;
            color: var(--xf-text-secondary);
            line-height: 1.85;
            margin: 0;
        }

        /* ===== CTA 条 ===== */
        .cta-strip-xf {
            background: var(--xf-grad-cta);
            border-radius: var(--xf-radius-lg);
            padding: 36px 32px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            flex-wrap: wrap;
        }

        .cta-strip-xf h2 {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: -0.3px;
            margin: 0 0 4px;
            color: #fff;
        }

        .cta-strip-xf p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
            margin: 0;
        }

        .btn-cta-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            color: var(--xf-primary-dark);
            background: #fff;
            border: 1px solid transparent;
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .btn-cta-white:hover {
            color: var(--xf-primary-dark);
            background: rgba(255, 255, 255, 0.92);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
            transform: translateY(-1px);
        }

        .btn-cta-outline-light {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 24px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.25s ease;
            white-space: nowrap;
        }

        .btn-cta-outline-light:hover {
            color: #fff;
            background: rgba(255, 255, 255, 0.12);
            border-color: #fff;
        }

        /* ===== 分页 ===== */
        .pagination-xf {
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 8px;
            margin-top: 28px;
            flex-wrap: wrap;
        }

        .pagination-xf .page-link-xf {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 40px;
            height: 40px;
            padding: 0 14px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--xf-text-secondary);
            background: #fff;
            border: 1px solid var(--xf-border-light);
            transition: all 0.2s ease;
        }

        .pagination-xf .page-link-xf:hover {
            color: var(--xf-primary-green);
            border-color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.06);
        }

        .pagination-xf .page-link-xf.active {
            background: var(--xf-primary-green);
            color: #fff;
            border-color: var(--xf-primary-green);
            box-shadow: 0 2px 10px rgba(22, 163, 74, 0.3);
        }

        .pagination-xf .page-link-xf.disabled {
            opacity: 0.5;
            pointer-events: none;
        }

        /* ===== 页脚 ===== */
        .footer-xf {
            background: var(--xf-dark-surface);
            color: rgba(242, 247, 243, 0.75);
            padding: 60px 0 0;
            font-size: 14px;
        }

        .footer-brand-name {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: -0.3px;
        }

        .footer-desc {
            font-size: 14px;
            color: rgba(242, 247, 243, 0.7);
            line-height: 1.8;
            max-width: 340px;
            margin: 0;
        }

        .footer-title {
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.5px;
            text-transform: uppercase;
        }

        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }

        .footer-links li {
            margin-bottom: 10px;
        }

        .footer-links a {
            color: rgba(242, 247, 243, 0.7);
            font-size: 14px;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
        }

        .footer-links a:hover {
            color: var(--xf-primary-green);
            transform: translateX(2px);
        }

        .footer-bottom {
            border-top: 1px solid rgba(222, 231, 223, 0.1);
            padding: 20px 0;
            margin-top: 48px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 8px;
            font-size: 13px;
            color: rgba(242, 247, 243, 0.55);
        }

        .footer-bottom a {
            color: rgba(242, 247, 243, 0.65);
        }

        .footer-bottom a:hover {
            color: var(--xf-primary-green);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 991.98px) {
            .navbar-xf .collapse {
                background-color: rgba(14, 27, 21, 0.98);
                border-radius: var(--xf-radius-md);
                padding: 16px;
                margin-top: 12px;
                border: 1px solid rgba(222, 231, 223, 0.15);
            }
            .navbar-xf .navbar-nav {
                gap: 4px;
            }
            .nav-cta-group {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
                margin-left: 0;
                margin-top: 12px;
            }
            .btn-nav-secondary,
            .btn-nav-primary {
                justify-content: center;
                width: 100%;
            }
            .category-hero-xf h1 {
                font-size: 28px;
            }
            .section-title-wrap {
                margin-bottom: 28px;
            }
            .cta-strip-xf {
                flex-direction: column;
                text-align: center;
                justify-content: center;
            }
        }

        @media (max-width: 767.98px) {
            body {
                padding-top: 64px;
            }
            .navbar-xf {
                min-height: 64px;
                padding: 10px 0;
            }
            .section-pad {
                padding: var(--xf-section-pad-mobile);
            }
            .category-hero-xf h1 {
                font-size: 24px;
            }
            .category-hero-xf .category-subtitle {
                font-size: 15px;
            }
            .stat-card-xf {
                padding: 18px 16px;
            }
            .stat-card-xf .stat-value {
                font-size: 26px;
            }
            .chart-card-xf {
                padding: 20px 16px;
            }
            .chart-bar-label {
                min-width: 60px;
                font-size: 12px;
            }
            .table-xf {
                font-size: 12px;
            }
            .table-xf thead th {
                padding: 10px 10px;
                font-size: 11px;
            }
            .table-xf tbody td {
                padding: 10px 10px;
            }
            .team-cell {
                gap: 6px;
                font-size: 12px;
            }
            .footer-xf {
                padding: 40px 0 0;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 4px;
            }
            .explainer-panel-xf {
                padding: 24px 18px;
            }
            .cta-strip-xf {
                padding: 28px 20px;
            }
            .breadcrumb-xf {
                font-size: 12px;
            }
        }

/* roulang page: category4 */
:root {
            --xf-primary-dark: #0E1B15;
            --xf-primary-green: #16A34A;
            --xf-green-deep: #128A3E;
            --xf-accent-orange: #F97316;
            --xf-light-bg: #F6F7F3;
            --xf-dark-surface: #182019;
            --xf-text-primary: #172118;
            --xf-text-secondary: #5B6B5E;
            --xf-text-inverse: #F2F7F3;
            --xf-border-light: #DEE7DF;
            --xf-border-tint: rgba(22, 163, 74, 0.18);
            --xf-radius-sm: 8px;
            --xf-radius-md: 14px;
            --xf-radius-lg: 18px;
            --xf-shadow-sm: 0 1px 3px rgba(20, 30, 22, 0.08), 0 6px 24px rgba(20, 30, 22, 0.06);
            --xf-shadow-hover: 0 12px 32px rgba(16, 163, 74, 0.12);
            --xf-grad-dark: linear-gradient(135deg, #0E1B15 0%, #182019 55%, #0E1B15 100%);
            --xf-grad-cta: linear-gradient(135deg, #16A34A 0%, #128A3E 60%, #0E1B15 100%);
            --xf-grad-hero: linear-gradient(135deg, rgba(14, 27, 21, 0.92) 0%, rgba(24, 32, 25, 0.88) 50%, rgba(14, 27, 21, 0.95) 100%);
            --xf-font: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            --xf-section-pad: 56px 0;
            --xf-section-pad-mobile: 36px 0;
            --xf-tnum: "tnum" 1;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--xf-font);
            font-size: 16px;
            line-height: 1.75;
            color: var(--xf-text-primary);
            background-color: var(--xf-light-bg);
            margin: 0;
            padding-top: 72px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--xf-primary-green);
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease, background-color 0.2s ease;
        }
        a:hover {
            color: var(--xf-green-deep);
        }
        a:focus-visible {
            outline: 2px solid var(--xf-primary-green);
            outline-offset: 3px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .lead {
            font-size: 17px;
            line-height: 1.85;
        }
        .text-accent-orange {
            color: var(--xf-accent-orange) !important;
        }
        .text-primary-green {
            color: var(--xf-primary-green) !important;
        }
        .text-inverse {
            color: var(--xf-text-inverse) !important;
        }
        .text-secondary-dark {
            color: var(--xf-text-secondary) !important;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-pad {
            padding: var(--xf-section-pad);
        }
        .section-pad-sm {
            padding: 32px 0;
        }
        .section-pad-lg {
            padding: 72px 0;
        }
        .section-title-wrap {
            max-width: 720px;
            margin-bottom: 40px;
        }
        .section-title-wrap .section-subtitle {
            font-size: 16px;
            color: var(--xf-text-secondary);
            margin-top: 8px;
            line-height: 1.7;
        }
        .section-title-wrap.text-center {
            margin-left: auto;
            margin-right: auto;
        }
        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            background-color: rgba(22, 163, 74, 0.1);
            color: var(--xf-primary-green);
            border: 1px solid rgba(22, 163, 74, 0.25);
            letter-spacing: 0.3px;
        }
        .badge-orange {
            background-color: rgba(249, 115, 22, 0.12);
            color: var(--xf-accent-orange);
            border-color: rgba(249, 115, 22, 0.3);
        }

        /* ===== 导航栏 ===== */
        .navbar-xf {
            background-color: rgba(14, 27, 21, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 12px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            border-bottom: 1px solid rgba(222, 231, 223, 0.12);
            min-height: 72px;
            transition: box-shadow 0.25s ease;
        }
        .navbar-xf.scrolled {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
        }
        .navbar-xf .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 22px;
            color: var(--xf-text-inverse);
            letter-spacing: -0.4px;
            padding: 0;
            white-space: nowrap;
        }
        .navbar-xf .navbar-brand:hover {
            color: var(--xf-primary-green);
        }
        .brand-logo-mark {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--xf-grad-cta);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(22, 163, 74, 0.3);
        }
        .navbar-xf .nav-link {
            color: rgba(242, 247, 243, 0.78);
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px !important;
            border-radius: 8px;
            transition: all 0.2s ease;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }
        .navbar-xf .nav-link:hover {
            color: #fff;
            background-color: rgba(22, 163, 74, 0.15);
        }
        .navbar-xf .nav-link.active {
            color: #fff;
            background-color: rgba(22, 163, 74, 0.28);
            font-weight: 600;
        }
        .navbar-xf .navbar-toggler {
            border: 1px solid rgba(242, 247, 243, 0.25);
            border-radius: 8px;
            padding: 6px 10px;
            box-shadow: none;
            background: transparent;
        }
        .navbar-xf .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.4);
            outline: none;
        }
        .navbar-xf .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28242,247,243,0.8%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .nav-cta-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 16px;
        }
        .btn-nav-secondary {
            display: inline-flex;
            align-items: center;
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--xf-text-inverse);
            border: 1px solid rgba(242, 247, 243, 0.35);
            background: transparent;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .btn-nav-secondary:hover {
            background-color: rgba(242, 247, 243, 0.1);
            border-color: rgba(242, 247, 243, 0.6);
            color: #fff;
        }
        .btn-nav-primary {
            display: inline-flex;
            align-items: center;
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: var(--xf-primary-green);
            border: 1px solid var(--xf-primary-green);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .btn-nav-primary:hover {
            background: var(--xf-green-deep);
            border-color: var(--xf-green-deep);
            color: #fff;
            box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35);
        }

        /* ===== 面包屑 ===== */
        .breadcrumb-xf {
            background: transparent;
            padding: 24px 0 0;
            margin-bottom: 0;
            font-size: 14px;
            display: flex;
            align-items: center;
            gap: 6px;
            flex-wrap: wrap;
        }
        .breadcrumb-xf .breadcrumb-item {
            display: flex;
            align-items: center;
        }
        .breadcrumb-xf .breadcrumb-item a {
            color: var(--xf-text-secondary);
            font-weight: 500;
            transition: color 0.2s ease;
        }
        .breadcrumb-xf .breadcrumb-item a:hover {
            color: var(--xf-primary-green);
        }
        .breadcrumb-xf .breadcrumb-item.active {
            color: var(--xf-primary-green);
            font-weight: 600;
        }
        .breadcrumb-xf .breadcrumb-item+.breadcrumb-item::before {
            content: "\203A";
            color: var(--xf-text-secondary);
            margin: 0 6px;
            font-size: 16px;
            line-height: 1;
        }

        /* ===== 页面头部区 ===== */
        .page-header-rank {
            background: var(--xf-grad-dark);
            border-radius: var(--xf-radius-lg);
            padding: 40px 36px;
            margin-bottom: 48px;
            position: relative;
            overflow: hidden;
            color: var(--xf-text-inverse);
        }
        .page-header-rank::after {
            content: "";
            position: absolute;
            right: -80px;
            top: -80px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(22, 163, 74, 0.25) 0%, transparent 70%);
            pointer-events: none;
        }
        .page-header-rank h1 {
            font-size: 32px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.25;
            margin-bottom: 12px;
            color: #fff;
            position: relative;
            z-index: 2;
        }
        .page-header-rank p {
            font-size: 16px;
            color: rgba(242, 247, 243, 0.75);
            line-height: 1.7;
            margin-bottom: 0;
            max-width: 680px;
            position: relative;
            z-index: 2;
        }
        .page-header-rank .header-meta {
            display: flex;
            align-items: center;
            gap: 20px;
            margin-top: 20px;
            flex-wrap: wrap;
            position: relative;
            z-index: 2;
        }
        .page-header-rank .header-meta span {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            font-size: 13px;
            color: rgba(242, 247, 243, 0.65);
            font-weight: 500;
        }
        .page-header-rank .header-meta i {
            color: var(--xf-primary-green);
            font-size: 16px;
        }

        /* ===== 联赛切换标签 ===== */
        .rank-tabs {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
            margin-bottom: 24px;
        }
        .rank-tabs .btn-rank-tab {
            padding: 10px 22px;
            border-radius: 100px;
            font-size: 14px;
            font-weight: 600;
            border: 1px solid var(--xf-border-light);
            background: #fff;
            color: var(--xf-text-secondary);
            transition: all 0.2s ease;
            cursor: pointer;
            white-space: nowrap;
        }
        .rank-tabs .btn-rank-tab:hover {
            border-color: var(--xf-primary-green);
            color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.05);
        }
        .rank-tabs .btn-rank-tab.active {
            background: var(--xf-primary-green);
            border-color: var(--xf-primary-green);
            color: #fff;
            box-shadow: 0 4px 16px rgba(22, 163, 74, 0.28);
        }

        /* ===== 表格样式 ===== */
        .table-rank-wrapper {
            background: #fff;
            border-radius: var(--xf-radius-md);
            box-shadow: var(--xf-shadow-sm);
            overflow: hidden;
            border: 1px solid var(--xf-border-light);
        }
        .table-rank {
            margin-bottom: 0;
            width: 100%;
            border-collapse: collapse;
            font-size: 15px;
        }
        .table-rank thead th {
            background: var(--xf-primary-dark);
            color: #fff;
            font-weight: 600;
            font-size: 13px;
            text-transform: uppercase;
            letter-spacing: 0.5px;
            padding: 14px 16px;
            border: none;
            white-space: nowrap;
            text-align: center;
            vertical-align: middle;
        }
        .table-rank thead th:first-child {
            text-align: left;
            padding-left: 24px;
        }
        .table-rank thead th:last-child {
            text-align: right;
            padding-right: 24px;
        }
        .table-rank tbody td {
            padding: 14px 16px;
            border-bottom: 1px solid var(--xf-border-light);
            vertical-align: middle;
            text-align: center;
            font-weight: 500;
            color: var(--xf-text-primary);
            white-space: nowrap;
        }
        .table-rank tbody td:first-child {
            text-align: left;
            padding-left: 24px;
        }
        .table-rank tbody td:last-child {
            text-align: right;
            padding-right: 24px;
        }
        .table-rank tbody tr:last-child td {
            border-bottom: none;
        }
        .table-rank tbody tr:hover {
            background-color: rgba(22, 163, 74, 0.04);
        }
        .table-rank .rank-num {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            width: 28px;
            height: 28px;
            border-radius: 6px;
            font-weight: 700;
            font-size: 14px;
            font-feature-settings: var(--xf-tnum);
        }
        .table-rank .rank-1 {
            background: rgba(249, 115, 22, 0.15);
            color: var(--xf-accent-orange);
        }
        .table-rank .rank-2 {
            background: rgba(22, 163, 74, 0.12);
            color: var(--xf-primary-green);
        }
        .table-rank .rank-3 {
            background: rgba(22, 163, 74, 0.06);
            color: var(--xf-green-deep);
        }
        .table-rank .rank-normal {
            background: var(--xf-light-bg);
            color: var(--xf-text-secondary);
        }
        .table-rank .team-cell {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 600;
            color: var(--xf-text-primary);
            text-align: left;
        }
        .table-rank .team-dot {
            width: 10px;
            height: 10px;
            border-radius: 50%;
            flex-shrink: 0;
        }
        .table-rank .diff-positive {
            color: var(--xf-primary-green);
            font-weight: 700;
            font-feature-settings: var(--xf-tnum);
        }
        .table-rank .diff-negative {
            color: #DC2626;
            font-weight: 600;
            font-feature-settings: var(--xf-tnum);
        }
        .table-rank .pts-value {
            font-weight: 700;
            font-size: 16px;
            color: var(--xf-primary-dark);
            font-feature-settings: var(--xf-tnum);
        }
        .table-rank .zone-tag {
            display: inline-block;
            padding: 3px 10px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .zone-tag-champion {
            background: rgba(249, 115, 22, 0.12);
            color: var(--xf-accent-orange);
        }
        .zone-tag-europa {
            background: rgba(22, 163, 74, 0.1);
            color: var(--xf-primary-green);
        }
        .zone-tag-relegation {
            background: rgba(220, 38, 38, 0.1);
            color: #DC2626;
        }

        /* ===== 数据速览卡片 ===== */
        .stat-card-xf {
            background: #fff;
            border-radius: var(--xf-radius-md);
            padding: 24px;
            box-shadow: var(--xf-shadow-sm);
            border: 1px solid var(--xf-border-light);
            transition: all 0.25s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .stat-card-xf:hover {
            box-shadow: var(--xf-shadow-hover);
            transform: translateY(-2px);
            border-color: var(--xf-border-tint);
        }
        .stat-card-xf .stat-icon {
            width: 44px;
            height: 44px;
            border-radius: 10px;
            background: rgba(22, 163, 74, 0.1);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            color: var(--xf-primary-green);
            margin-bottom: 14px;
        }
        .stat-card-xf .stat-icon.orange {
            background: rgba(249, 115, 22, 0.1);
            color: var(--xf-accent-orange);
        }
        .stat-card-xf .stat-value {
            font-size: 32px;
            font-weight: 700;
            color: var(--xf-primary-dark);
            line-height: 1.2;
            font-feature-settings: var(--xf-tnum);
            letter-spacing: -0.5px;
        }
        .stat-card-xf .stat-label {
            font-size: 14px;
            color: var(--xf-text-secondary);
            margin-top: 4px;
            font-weight: 500;
        }
        .stat-card-xf .stat-trend {
            display: inline-flex;
            align-items: center;
            gap: 4px;
            font-size: 12px;
            font-weight: 600;
            color: var(--xf-primary-green);
            margin-top: 8px;
        }
        .stat-card-xf .stat-trend.up {
            color: var(--xf-primary-green);
        }
        .stat-card-xf .stat-trend.down {
            color: #DC2626;
        }

        /* ===== 资讯卡片 ===== */
        .news-card-xf {
            background: #fff;
            border-radius: var(--xf-radius-md);
            overflow: hidden;
            box-shadow: var(--xf-shadow-sm);
            border: 1px solid var(--xf-border-light);
            transition: all 0.25s ease;
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .news-card-xf:hover {
            box-shadow: var(--xf-shadow-hover);
            transform: translateY(-3px);
            border-color: var(--xf-border-tint);
        }
        .news-card-xf .news-img-wrap {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
            background: var(--xf-dark-surface);
        }
        .news-card-xf .news-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .news-card-xf:hover .news-img-wrap img {
            transform: scale(1.04);
        }
        .news-card-xf .news-img-wrap .news-tag {
            position: absolute;
            top: 12px;
            left: 12px;
            background: rgba(14, 27, 21, 0.85);
            color: #fff;
            padding: 4px 12px;
            border-radius: 100px;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: 0.3px;
        }
        .news-card-xf .news-body {
            padding: 20px 22px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .news-card-xf .news-body h3 {
            font-size: 17px;
            font-weight: 600;
            line-height: 1.45;
            margin-bottom: 8px;
            color: var(--xf-text-primary);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-card-xf .news-body p {
            font-size: 14px;
            color: var(--xf-text-secondary);
            line-height: 1.65;
            margin-bottom: 14px;
            display: -webkit-box;
            -webkit-line-clamp: 3;
            -webkit-box-orient: vertical;
            overflow: hidden;
            flex: 1;
        }
        .news-card-xf .news-meta {
            display: flex;
            align-items: center;
            justify-content: space-between;
            font-size: 12px;
            color: var(--xf-text-secondary);
            border-top: 1px solid var(--xf-border-light);
            padding-top: 12px;
        }
        .news-card-xf .news-meta span {
            display: inline-flex;
            align-items: center;
            gap: 4px;
        }
        .news-card-xf .news-meta i {
            font-size: 13px;
        }

        /* ===== 标签筛选区 ===== */
        .tag-filter-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-filter-link {
            display: inline-flex;
            align-items: center;
            padding: 8px 18px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            color: var(--xf-text-secondary);
            background: #fff;
            border: 1px solid var(--xf-border-light);
            transition: all 0.2s ease;
            cursor: pointer;
        }
        .tag-filter-link:hover {
            border-color: var(--xf-primary-green);
            color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.05);
        }
        .tag-filter-link.active {
            background: var(--xf-primary-dark);
            border-color: var(--xf-primary-dark);
            color: #fff;
        }
        .tag-filter-link i {
            margin-right: 6px;
            font-size: 14px;
        }

        /* ===== 分类说明扩展 ===== */
        .rank-desc-card {
            background: #fff;
            border-radius: var(--xf-radius-md);
            padding: 36px;
            box-shadow: var(--xf-shadow-sm);
            border: 1px solid var(--xf-border-light);
        }
        .rank-desc-card h3 {
            font-size: 20px;
            font-weight: 650;
            color: var(--xf-primary-dark);
            margin-bottom: 16px;
        }
        .rank-desc-card p {
            font-size: 15px;
            color: var(--xf-text-secondary);
            line-height: 1.8;
            margin-bottom: 16px;
        }
        .rank-desc-card p:last-child {
            margin-bottom: 0;
        }

        /* ===== 小型CTA条 ===== */
        .cta-strip-rank {
            background: var(--xf-grad-cta);
            border-radius: var(--xf-radius-lg);
            padding: 40px 36px;
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 24px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }
        .cta-strip-rank::after {
            content: "";
            position: absolute;
            right: -60px;
            bottom: -80px;
            width: 220px;
            height: 220px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.08);
            pointer-events: none;
        }
        .cta-strip-rank h2 {
            font-size: 24px;
            font-weight: 650;
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .cta-strip-rank p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.75);
            margin-bottom: 0;
            line-height: 1.6;
        }
        .cta-strip-rank .btn-cta-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            color: var(--xf-primary-dark);
            background: #fff;
            border: none;
            transition: all 0.25s ease;
            white-space: nowrap;
            position: relative;
            z-index: 2;
        }
        .cta-strip-rank .btn-cta-white:hover {
            background: var(--xf-accent-orange);
            color: #fff;
            box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
        }

        /* ===== FAQ ===== */
        .accordion-xf .accordion-item {
            border: 1px solid var(--xf-border-light);
            border-radius: var(--xf-radius-md) !important;
            margin-bottom: 12px;
            overflow: hidden;
            box-shadow: var(--xf-shadow-sm);
            background: #fff;
        }
        .accordion-xf .accordion-button {
            font-weight: 600;
            font-size: 16px;
            color: var(--xf-text-primary);
            padding: 18px 24px;
            background: #fff;
            box-shadow: none;
            border: none;
            transition: all 0.2s ease;
        }
        .accordion-xf .accordion-button:not(.collapsed) {
            background: rgba(22, 163, 74, 0.05);
            color: var(--xf-primary-green);
            box-shadow: none;
        }
        .accordion-xf .accordion-button:focus {
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.2);
            outline: none;
            border: none;
        }
        .accordion-xf .accordion-button::after {
            background-size: 16px;
            width: 16px;
            height: 16px;
        }
        .accordion-xf .accordion-body {
            padding: 18px 24px;
            font-size: 15px;
            color: var(--xf-text-secondary);
            line-height: 1.75;
            background: #fff;
        }

        /* ===== 查看更多按钮 ===== */
        .btn-view-more {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            background: var(--xf-primary-dark);
            border: 1px solid var(--xf-primary-dark);
            transition: all 0.25s ease;
            cursor: pointer;
        }
        .btn-view-more:hover {
            background: var(--xf-green-deep);
            border-color: var(--xf-green-deep);
            color: #fff;
            box-shadow: 0 6px 20px rgba(22, 163, 74, 0.3);
        }

        /* ===== 页脚 ===== */
        .footer-xf {
            background: var(--xf-primary-dark);
            color: rgba(242, 247, 243, 0.75);
            padding: 56px 0 24px;
            margin-top: 72px;
        }
        .footer-xf .footer-brand-name {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 16px;
        }
        .footer-xf .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(242, 247, 243, 0.6);
            margin-bottom: 0;
        }
        .footer-xf .footer-title {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
            letter-spacing: 0.3px;
        }
        .footer-xf .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-xf .footer-links li {
            margin-bottom: 10px;
        }
        .footer-xf .footer-links a {
            color: rgba(242, 247, 243, 0.6);
            font-size: 14px;
            transition: color 0.2s ease;
            font-weight: 400;
        }
        .footer-xf .footer-links a:hover {
            color: var(--xf-primary-green);
        }
        .footer-xf .footer-bottom {
            border-top: 1px solid rgba(222, 231, 223, 0.12);
            padding-top: 20px;
            margin-top: 40px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
            font-size: 13px;
            color: rgba(242, 247, 243, 0.5);
        }
        .footer-xf .footer-bottom a {
            color: rgba(242, 247, 243, 0.5);
            text-decoration: none;
        }
        .footer-xf .footer-bottom a:hover {
            color: var(--xf-primary-green);
        }

        /* ===== 响应式设计 ===== */
        @media (max-width: 1024px) {
            .page-header-rank h1 {
                font-size: 28px;
            }
            .table-rank {
                font-size: 14px;
            }
            .table-rank thead th,
            .table-rank tbody td {
                padding: 10px 12px;
            }
            .cta-strip-rank {
                flex-direction: column;
                text-align: center;
                align-items: center;
            }
        }
        @media (max-width: 768px) {
            body {
                padding-top: 64px;
            }
            .navbar-xf {
                padding: 8px 0;
                min-height: 64px;
            }
            .navbar-xf .navbar-brand {
                font-size: 19px;
            }
            .brand-logo-mark {
                width: 32px;
                height: 32px;
                font-size: 17px;
                border-radius: 8px;
            }
            .nav-cta-group {
                margin-left: 0;
                margin-top: 12px;
                flex-direction: column;
                width: 100%;
                gap: 8px;
            }
            .nav-cta-group .btn-nav-secondary,
            .nav-cta-group .btn-nav-primary {
                width: 100%;
                justify-content: center;
            }
            .navbar-xf .nav-link {
                padding: 10px 16px !important;
                font-size: 15px;
            }
            .section-pad {
                padding: var(--xf-section-pad-mobile);
            }
            .page-header-rank {
                padding: 28px 20px;
            }
            .page-header-rank h1 {
                font-size: 24px;
            }
            .page-header-rank p {
                font-size: 15px;
            }
            .table-rank {
                font-size: 13px;
            }
            .table-rank thead th,
            .table-rank tbody td {
                padding: 8px 10px;
            }
            .table-rank .rank-num {
                width: 24px;
                height: 24px;
                font-size: 12px;
            }
            .stat-card-xf .stat-value {
                font-size: 26px;
            }
            .rank-desc-card {
                padding: 24px 20px;
            }
            .cta-strip-rank {
                padding: 28px 20px;
            }
            .cta-strip-rank h2 {
                font-size: 20px;
            }
            .footer-xf {
                margin-top: 48px;
                padding: 40px 0 16px;
            }
            .footer-xf .footer-bottom {
                flex-direction: column;
                text-align: center;
                gap: 4px;
            }
        }
        @media (max-width: 520px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .breadcrumb-xf {
                font-size: 12px;
                padding-top: 16px;
            }
            .page-header-rank h1 {
                font-size: 21px;
                letter-spacing: -0.3px;
            }
            .page-header-rank .header-meta {
                gap: 12px;
            }
            .rank-tabs .btn-rank-tab {
                padding: 8px 16px;
                font-size: 13px;
            }
            .table-rank {
                font-size: 12px;
            }
            .table-rank thead th,
            .table-rank tbody td {
                padding: 6px 6px;
            }
            .table-rank .team-cell {
                gap: 6px;
                font-size: 12px;
            }
            .table-rank .rank-num {
                width: 20px;
                height: 20px;
                font-size: 11px;
            }
            .stat-card-xf {
                padding: 18px;
            }
            .stat-card-xf .stat-value {
                font-size: 24px;
            }
            .news-card-xf .news-body {
                padding: 16px;
            }
            .tag-filter-link {
                padding: 6px 14px;
                font-size: 12px;
            }
            .btn-view-more {
                width: 100%;
                justify-content: center;
            }
        }

/* roulang page: category5 */
:root {
            --xf-primary-dark: #0E1B15;
            --xf-primary-green: #16A34A;
            --xf-green-deep: #128A3E;
            --xf-accent-orange: #F97316;
            --xf-light-bg: #F6F7F3;
            --xf-dark-surface: #182019;
            --xf-text-primary: #172118;
            --xf-text-secondary: #5B6B5E;
            --xf-text-inverse: #F2F7F3;
            --xf-border-light: #DEE7DF;
            --xf-border-tint: rgba(22, 163, 74, 0.18);
            --xf-radius-sm: 8px;
            --xf-radius-md: 14px;
            --xf-radius-lg: 18px;
            --xf-shadow-sm: 0 1px 3px rgba(20, 30, 22, 0.08), 0 6px 24px rgba(20, 30, 22, 0.06);
            --xf-shadow-hover: 0 12px 32px rgba(16, 163, 74, 0.12);
            --xf-grad-dark: linear-gradient(135deg, #0E1B15 0%, #182019 55%, #0E1B15 100%);
            --xf-grad-cta: linear-gradient(135deg, #16A34A 0%, #128A3E 60%, #0E1B15 100%);
            --xf-grad-hero: linear-gradient(135deg, rgba(14, 27, 21, 0.92) 0%, rgba(24, 32, 25, 0.88) 50%, rgba(14, 27, 21, 0.95) 100%);
            --xf-font: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            --xf-section-pad: 56px 0;
            --xf-section-pad-mobile: 36px 0;
            --xf-tnum: "tnum" 1;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--xf-font);
            font-size: 16px;
            line-height: 1.75;
            color: var(--xf-text-primary);
            background-color: var(--xf-light-bg);
            margin: 0;
            padding-top: 72px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--xf-primary-green);
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease;
        }
        a:hover {
            color: var(--xf-green-deep);
        }
        a:focus-visible {
            outline: 2px solid var(--xf-primary-green);
            outline-offset: 3px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .lead {
            font-size: 17px;
            line-height: 1.85;
        }
        .text-accent-orange {
            color: var(--xf-accent-orange) !important;
        }
        .text-primary-green {
            color: var(--xf-primary-green) !important;
        }
        .text-inverse {
            color: var(--xf-text-inverse) !important;
        }
        .text-secondary-dark {
            color: var(--xf-text-secondary) !important;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-pad {
            padding: var(--xf-section-pad);
        }
        .section-pad-sm {
            padding: 32px 0;
        }
        .section-pad-lg {
            padding: 72px 0;
        }
        .section-title-wrap {
            max-width: 720px;
            margin-bottom: 40px;
        }
        .section-title-wrap .section-subtitle {
            font-size: 16px;
            color: var(--xf-text-secondary);
            margin-top: 8px;
            line-height: 1.7;
        }
        .section-title-wrap.text-center {
            margin-left: auto;
            margin-right: auto;
        }
        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            background-color: rgba(22, 163, 74, 0.1);
            color: var(--xf-primary-green);
            border: 1px solid rgba(22, 163, 74, 0.25);
            letter-spacing: 0.3px;
        }
        .badge-orange {
            background-color: rgba(249, 115, 22, 0.12);
            color: var(--xf-accent-orange);
            border-color: rgba(249, 115, 22, 0.3);
        }
        .badge-dark {
            background-color: rgba(14, 27, 21, 0.06);
            color: var(--xf-text-primary);
            border-color: rgba(14, 27, 21, 0.12);
        }
        .breadcrumb-xf {
            background-color: transparent;
            margin: 0;
            padding: 0;
            font-size: 14px;
            color: var(--xf-text-secondary);
        }
        .breadcrumb-xf .breadcrumb-item a {
            color: var(--xf-primary-green);
            font-weight: 500;
        }
        .breadcrumb-xf .breadcrumb-item.active {
            color: var(--xf-text-secondary);
        }
        .breadcrumb-xf .breadcrumb-item+.breadcrumb-item::before {
            content: "›";
            color: var(--xf-text-secondary);
            padding: 0 6px;
        }

        /* ===== 导航栏 ===== */
        .navbar-xf {
            background-color: rgba(14, 27, 21, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 12px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            border-bottom: 1px solid rgba(222, 231, 223, 0.12);
            min-height: 72px;
            transition: box-shadow 0.25s ease;
        }
        .navbar-xf.scrolled {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
        }
        .navbar-xf .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 22px;
            color: var(--xf-text-inverse);
            letter-spacing: -0.4px;
            padding: 0;
            white-space: nowrap;
        }
        .navbar-xf .navbar-brand:hover {
            color: var(--xf-primary-green);
        }
        .brand-logo-mark {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--xf-grad-cta);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(22, 163, 74, 0.3);
        }
        .navbar-xf .nav-link {
            color: rgba(242, 247, 243, 0.78);
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px !important;
            border-radius: 8px;
            transition: all 0.2s ease;
            letter-spacing: 0.2px;
            white-space: nowrap;
        }
        .navbar-xf .nav-link:hover {
            color: var(--xf-text-inverse);
            background-color: rgba(22, 163, 74, 0.15);
        }
        .navbar-xf .nav-link.active {
            color: #fff;
            background-color: rgba(22, 163, 74, 0.28);
            font-weight: 600;
        }
        .navbar-xf .navbar-toggler {
            border: 1px solid rgba(222, 231, 223, 0.25);
            padding: 8px 10px;
            border-radius: 8px;
            background-color: rgba(22, 163, 74, 0.1);
        }
        .navbar-xf .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 30 30'%3e%3cpath stroke='rgba%28242, 247, 243, 0.85%29' stroke-linecap='round' stroke-miterlimit='10' stroke-width='2' d='M4 7h22M4 15h22M4 23h22'/%3e%3c/svg%3e");
        }
        .navbar-xf .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.4);
        }
        .nav-cta-group {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .btn-nav-secondary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: var(--xf-text-inverse);
            border: 1px solid rgba(242, 247, 243, 0.3);
            background: transparent;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .btn-nav-secondary:hover {
            background-color: rgba(242, 247, 243, 0.08);
            border-color: rgba(242, 247, 243, 0.5);
            color: #fff;
        }
        .btn-nav-primary {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: var(--xf-grad-cta);
            border: 1px solid transparent;
            transition: all 0.2s ease;
            white-space: nowrap;
            box-shadow: 0 2px 10px rgba(22, 163, 74, 0.25);
        }
        .btn-nav-primary:hover {
            background: linear-gradient(135deg, #158F42 0%, #107A35 60%, #0C241A 100%);
            color: #fff;
            box-shadow: 0 4px 16px rgba(22, 163, 74, 0.35);
        }

        /* ===== 分类头部 ===== */
        .cat-header {
            background: var(--xf-grad-dark);
            padding: 48px 0 40px;
            color: var(--xf-text-inverse);
            position: relative;
            overflow: hidden;
        }
        .cat-header::before {
            content: "";
            position: absolute;
            top: -60px;
            right: -40px;
            width: 280px;
            height: 280px;
            border-radius: 50%;
            background: rgba(22, 163, 74, 0.12);
            pointer-events: none;
        }
        .cat-header::after {
            content: "";
            position: absolute;
            bottom: -80px;
            left: -20px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(249, 115, 22, 0.08);
            pointer-events: none;
        }
        .cat-header .breadcrumb-xf {
            position: relative;
            z-index: 2;
            margin-bottom: 16px;
        }
        .cat-header .breadcrumb-xf .breadcrumb-item a {
            color: rgba(242, 247, 243, 0.7);
        }
        .cat-header .breadcrumb-xf .breadcrumb-item.active {
            color: rgba(242, 247, 243, 0.55);
        }
        .cat-header .breadcrumb-xf .breadcrumb-item+.breadcrumb-item::before {
            color: rgba(242, 247, 243, 0.4);
        }
        .cat-header h1 {
            position: relative;
            z-index: 2;
            font-size: 34px;
            font-weight: 700;
            letter-spacing: -0.5px;
            line-height: 1.25;
            margin-bottom: 12px;
            color: #fff;
        }
        .cat-header .cat-header-desc {
            position: relative;
            z-index: 2;
            font-size: 16px;
            color: rgba(242, 247, 243, 0.78);
            max-width: 680px;
            line-height: 1.75;
            margin-bottom: 0;
        }

        /* ===== 专家卡片 ===== */
        .expert-card {
            background: #fff;
            border-radius: var(--xf-radius-md);
            border: 1px solid var(--xf-border-light);
            overflow: hidden;
            transition: all 0.3s ease;
            box-shadow: var(--xf-shadow-sm);
            height: 100%;
            display: flex;
            flex-direction: column;
        }
        .expert-card:hover {
            box-shadow: var(--xf-shadow-hover);
            transform: translateY(-3px);
            border-color: var(--xf-border-tint);
        }
        .expert-card-img {
            position: relative;
            aspect-ratio: 16 / 9;
            overflow: hidden;
            background-color: var(--xf-dark-surface);
        }
        .expert-card-img img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.5s ease;
        }
        .expert-card:hover .expert-card-img img {
            transform: scale(1.04);
        }
        .expert-card-img .overlay-gradient {
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 60%;
            background: linear-gradient(180deg, transparent 0%, rgba(14, 27, 21, 0.75) 100%);
            pointer-events: none;
        }
        .expert-card-sport {
            position: absolute;
            top: 12px;
            left: 12px;
            z-index: 2;
            background: rgba(14, 27, 21, 0.8);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 100px;
            letter-spacing: 0.5px;
            backdrop-filter: blur(6px);
        }
        .expert-card-level {
            position: absolute;
            top: 12px;
            right: 12px;
            z-index: 2;
            background: rgba(16, 163, 74, 0.9);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 100px;
            letter-spacing: 0.5px;
        }
        .expert-card-body {
            padding: 20px 22px 24px;
            display: flex;
            flex-direction: column;
            flex-grow: 1;
        }
        .expert-card-title {
            font-size: 18px;
            font-weight: 650;
            line-height: 1.4;
            color: var(--xf-text-primary);
            margin-bottom: 8px;
            letter-spacing: -0.3px;
        }
        .expert-card-title a {
            color: inherit;
            transition: color 0.2s ease;
        }
        .expert-card-title a:hover {
            color: var(--xf-primary-green);
        }
        .expert-card-desc {
            font-size: 14px;
            color: var(--xf-text-secondary);
            line-height: 1.7;
            margin-bottom: 14px;
            flex-grow: 1;
        }
        .expert-card-meta {
            display: flex;
            align-items: center;
            gap: 14px;
            font-size: 13px;
            color: var(--xf-text-secondary);
            border-top: 1px solid var(--xf-border-light);
            padding-top: 14px;
        }
        .expert-card-meta .meta-item {
            display: flex;
            align-items: center;
            gap: 5px;
        }
        .expert-card-meta .meta-item i {
            font-size: 14px;
            color: var(--xf-primary-green);
        }
        .expert-card-meta .meta-verdict {
            margin-left: auto;
            font-weight: 600;
            color: var(--xf-accent-orange);
            font-size: 13px;
        }
        .expert-card-meta .meta-verdict.positive {
            color: var(--xf-primary-green);
        }

        /* ===== 数据速览 ===== */
        .stat-overview-card {
            background: var(--xf-dark-surface);
            border-radius: var(--xf-radius-md);
            padding: 24px 28px;
            color: var(--xf-text-inverse);
            border: 1px solid rgba(222, 231, 223, 0.08);
            text-align: center;
            height: 100%;
            transition: all 0.3s ease;
        }
        .stat-overview-card:hover {
            border-color: rgba(22, 163, 74, 0.4);
            box-shadow: 0 10px 28px rgba(0, 0, 0, 0.3);
        }
        .stat-overview-card .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--xf-primary-green);
            letter-spacing: -0.5px;
            font-feature-settings: var(--xf-tnum);
            line-height: 1.2;
            margin-bottom: 6px;
        }
        .stat-overview-card .stat-label {
            font-size: 14px;
            color: rgba(242, 247, 243, 0.7);
            font-weight: 500;
        }
        .stat-overview-card .stat-desc {
            font-size: 13px;
            color: rgba(242, 247, 243, 0.5);
            margin-top: 4px;
        }

        /* ===== 相关资讯 ===== */
        .related-news-card {
            display: flex;
            align-items: center;
            gap: 14px;
            background: #fff;
            border-radius: var(--xf-radius-sm);
            border: 1px solid var(--xf-border-light);
            padding: 12px 16px;
            transition: all 0.25s ease;
            height: 100%;
        }
        .related-news-card:hover {
            border-color: var(--xf-border-tint);
            box-shadow: var(--xf-shadow-sm);
        }
        .related-news-card .rn-icon {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: rgba(22, 163, 74, 0.1);
            color: var(--xf-primary-green);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            flex-shrink: 0;
        }
        .related-news-card .rn-content {
            flex-grow: 1;
            min-width: 0;
        }
        .related-news-card .rn-title {
            font-size: 14px;
            font-weight: 600;
            color: var(--xf-text-primary);
            line-height: 1.45;
            margin-bottom: 2px;
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .related-news-card .rn-meta {
            font-size: 12px;
            color: var(--xf-text-secondary);
        }

        /* ===== 标签筛选 ===== */
        .filter-tag {
            display: inline-flex;
            align-items: center;
            gap: 5px;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            background: #fff;
            color: var(--xf-text-secondary);
            border: 1px solid var(--xf-border-light);
            transition: all 0.2s ease;
            cursor: pointer;
            text-decoration: none;
        }
        .filter-tag:hover {
            background: rgba(22, 163, 74, 0.08);
            border-color: var(--xf-border-tint);
            color: var(--xf-primary-green);
        }
        .filter-tag.active {
            background: var(--xf-primary-green);
            color: #fff;
            border-color: var(--xf-primary-green);
            font-weight: 600;
        }

        /* ===== 分类说明扩展 ===== */
        .cat-desc-block {
            background: #fff;
            border-radius: var(--xf-radius-md);
            border: 1px solid var(--xf-border-light);
            padding: 28px 32px;
            box-shadow: var(--xf-shadow-sm);
        }
        .cat-desc-block h3 {
            font-size: 17px;
            font-weight: 650;
            margin-bottom: 12px;
            color: var(--xf-text-primary);
        }
        .cat-desc-block p {
            font-size: 15px;
            color: var(--xf-text-secondary);
            line-height: 1.85;
            margin-bottom: 12px;
        }
        .cat-desc-block p:last-child {
            margin-bottom: 0;
        }

        /* ===== CTA ===== */
        .cta-strip {
            background: var(--xf-grad-cta);
            border-radius: var(--xf-radius-lg);
            padding: 40px 40px;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-strip::before {
            content: "";
            position: absolute;
            top: -50px;
            right: -30px;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(255, 255, 255, 0.1);
            pointer-events: none;
        }
        .cta-strip h2 {
            font-size: 24px;
            font-weight: 700;
            margin-bottom: 8px;
            position: relative;
            z-index: 2;
        }
        .cta-strip p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 0;
            position: relative;
            z-index: 2;
        }
        .cta-strip .btn-cta-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 700;
            color: var(--xf-primary-dark);
            background: #fff;
            border: none;
            transition: all 0.2s ease;
            position: relative;
            z-index: 2;
            white-space: nowrap;
        }
        .cta-strip .btn-cta-white:hover {
            background: #f0f0f0;
            transform: translateY(-2px);
            box-shadow: 0 6px 20px rgba(0, 0, 0, 0.2);
            color: var(--xf-primary-dark);
        }
        .cta-strip .btn-cta-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 10px 24px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            color: #fff;
            background: transparent;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.2s ease;
            position: relative;
            z-index: 2;
            white-space: nowrap;
        }
        .cta-strip .btn-cta-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
        }

        /* ===== 分页 ===== */
        .pagination-xf {
            display: flex;
            gap: 6px;
            align-items: center;
            justify-content: center;
            flex-wrap: wrap;
        }
        .pagination-xf .page-link-xf {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            min-width: 38px;
            height: 38px;
            padding: 0 12px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            color: var(--xf-text-secondary);
            background: #fff;
            border: 1px solid var(--xf-border-light);
            transition: all 0.2s ease;
            cursor: pointer;
            text-decoration: none;
        }
        .pagination-xf .page-link-xf:hover {
            border-color: var(--xf-border-tint);
            color: var(--xf-primary-green);
            background: rgba(22, 163, 74, 0.05);
        }
        .pagination-xf .page-link-xf.active {
            background: var(--xf-primary-green);
            color: #fff;
            border-color: var(--xf-primary-green);
            font-weight: 600;
        }
        .pagination-xf .page-link-xf.disabled {
            opacity: 0.5;
            cursor: default;
            pointer-events: none;
        }

        /* ===== 页脚 ===== */
        .footer-xf {
            background: var(--xf-dark-surface);
            color: rgba(242, 247, 243, 0.75);
            padding: 56px 0 24px;
            border-top: 1px solid rgba(222, 231, 223, 0.08);
        }
        .footer-brand-name {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 12px;
        }
        .footer-desc {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(242, 247, 243, 0.6);
            max-width: 340px;
        }
        .footer-title {
            font-size: 15px;
            font-weight: 650;
            color: #fff;
            margin-bottom: 14px;
            letter-spacing: 0.2px;
        }
        .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
        }
        .footer-links li {
            margin-bottom: 8px;
        }
        .footer-links a {
            font-size: 14px;
            color: rgba(242, 247, 243, 0.65);
            transition: color 0.2s ease;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: var(--xf-primary-green);
        }
        .footer-bottom {
            margin-top: 36px;
            padding-top: 18px;
            border-top: 1px solid rgba(222, 231, 223, 0.1);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 8px;
            font-size: 13px;
            color: rgba(242, 247, 243, 0.45);
        }
        .footer-bottom a {
            color: rgba(242, 247, 243, 0.55);
            text-decoration: none;
        }
        .footer-bottom a:hover {
            color: var(--xf-primary-green);
        }

        /* ===== 响应式 ===== */
        @media (max-width: 991.98px) {
            .navbar-xf .navbar-collapse {
                margin-top: 12px;
                padding: 12px 0;
                border-top: 1px solid rgba(222, 231, 223, 0.1);
                max-height: calc(100vh - 72px);
                overflow-y: auto;
            }
            .navbar-xf .nav-link {
                padding: 10px 16px !important;
                font-size: 15px;
            }
            .nav-cta-group {
                flex-direction: column;
                align-items: stretch;
                gap: 8px;
                margin-top: 12px;
            }
            .btn-nav-secondary,
            .btn-nav-primary {
                width: 100%;
                text-align: center;
            }
            .cat-header h1 {
                font-size: 26px;
            }
            .cat-header {
                padding: 36px 0 32px;
            }
            .cta-strip {
                padding: 28px 24px;
            }
            .cta-strip h2 {
                font-size: 20px;
            }
        }
        @media (max-width: 767.98px) {
            body {
                padding-top: 64px;
            }
            .navbar-xf {
                min-height: 64px;
                padding: 10px 0;
            }
            .navbar-xf .navbar-brand {
                font-size: 18px;
            }
            .brand-logo-mark {
                width: 32px;
                height: 32px;
                font-size: 16px;
                border-radius: 8px;
            }
            .section-pad {
                padding: var(--xf-section-pad-mobile);
            }
            .section-pad-lg {
                padding: 48px 0;
            }
            .cat-header h1 {
                font-size: 22px;
                letter-spacing: -0.3px;
            }
            .cat-header .cat-header-desc {
                font-size: 14px;
            }
            .expert-card-body {
                padding: 16px 18px 20px;
            }
            .expert-card-title {
                font-size: 16px;
            }
            .stat-overview-card .stat-number {
                font-size: 28px;
            }
            .cat-desc-block {
                padding: 20px 18px;
            }
            .footer-xf {
                padding: 40px 0 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
            .cta-strip {
                padding: 24px 18px;
                text-align: center;
            }
            .cta-strip .d-flex {
                justify-content: center;
                flex-wrap: wrap;
            }
        }
        @media (max-width: 519.98px) {
            .container {
                padding-left: 14px;
                padding-right: 14px;
            }
            .navbar-xf .navbar-brand {
                font-size: 17px;
            }
            .brand-logo-mark {
                width: 30px;
                height: 30px;
                font-size: 14px;
                border-radius: 7px;
            }
            .cat-header h1 {
                font-size: 20px;
            }
            .expert-card-img {
                aspect-ratio: 16 / 10;
            }
            .stat-overview-card {
                padding: 18px 16px;
            }
            .filter-tag {
                padding: 5px 12px;
                font-size: 12px;
            }
        }

/* roulang page: category6 */
:root {
            --xf-primary-dark: #0E1B15;
            --xf-primary-green: #16A34A;
            --xf-green-deep: #128A3E;
            --xf-accent-orange: #F97316;
            --xf-light-bg: #F6F7F3;
            --xf-dark-surface: #182019;
            --xf-text-primary: #172118;
            --xf-text-secondary: #5B6B5E;
            --xf-text-inverse: #F2F7F3;
            --xf-border-light: #DEE7DF;
            --xf-border-tint: rgba(22, 163, 74, 0.18);
            --xf-radius-sm: 8px;
            --xf-radius-md: 14px;
            --xf-radius-lg: 18px;
            --xf-shadow-sm: 0 1px 3px rgba(20, 30, 22, 0.08), 0 6px 24px rgba(20, 30, 22, 0.06);
            --xf-shadow-hover: 0 12px 32px rgba(16, 163, 74, 0.12);
            --xf-grad-dark: linear-gradient(135deg, #0E1B15 0%, #182019 55%, #0E1B15 100%);
            --xf-grad-cta: linear-gradient(135deg, #16A34A 0%, #128A3E 60%, #0E1B15 100%);
            --xf-grad-hero: linear-gradient(135deg, rgba(14, 27, 21, 0.92) 0%, rgba(24, 32, 25, 0.88) 50%, rgba(14, 27, 21, 0.95) 100%);
            --xf-font: 'Inter', 'Noto Sans SC', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', sans-serif;
            --xf-section-pad: 56px 0;
            --xf-section-pad-mobile: 36px 0;
            --xf-tnum: "tnum" 1;
        }
        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%;
        }
        body {
            font-family: var(--xf-font);
            font-size: 16px;
            line-height: 1.75;
            color: var(--xf-text-primary);
            background-color: var(--xf-light-bg);
            margin: 0;
            padding-top: 72px;
            -webkit-font-smoothing: antialiased;
            -moz-osx-font-smoothing: grayscale;
        }
        a {
            color: var(--xf-primary-green);
            text-decoration: none;
            transition: color 0.2s ease, border-color 0.2s ease;
        }
        a:hover {
            color: var(--xf-green-deep);
        }
        a:focus-visible {
            outline: 2px solid var(--xf-primary-green);
            outline-offset: 3px;
            border-radius: 4px;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .lead {
            font-size: 17px;
            line-height: 1.85;
        }
        .text-accent-orange {
            color: var(--xf-accent-orange) !important;
        }
        .text-primary-green {
            color: var(--xf-primary-green) !important;
        }
        .text-inverse {
            color: var(--xf-text-inverse) !important;
        }
        .text-secondary-dark {
            color: var(--xf-text-secondary) !important;
        }
        .container {
            max-width: 1200px;
            padding-left: 20px;
            padding-right: 20px;
        }
        .section-pad {
            padding: var(--xf-section-pad);
        }
        .section-pad-sm {
            padding: 32px 0;
        }
        .section-pad-lg {
            padding: 72px 0;
        }
        .section-title-wrap {
            max-width: 720px;
            margin-bottom: 40px;
        }
        .section-title-wrap .section-subtitle {
            font-size: 16px;
            color: var(--xf-text-secondary);
            margin-top: 8px;
            line-height: 1.7;
        }
        .section-title-wrap.text-center {
            margin-left: auto;
            margin-right: auto;
        }
        .badge-custom {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 6px 14px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            background-color: rgba(22, 163, 74, 0.1);
            color: var(--xf-primary-green);
            border: 1px solid rgba(22, 163, 74, 0.25);
            letter-spacing: 0.3px;
        }
        .badge-orange {
            background-color: rgba(249, 115, 22, 0.12);
            color: var(--xf-accent-orange);
            border-color: rgba(249, 115, 22, 0.3);
        }
        .navbar-xf {
            background-color: rgba(14, 27, 21, 0.97);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            padding: 12px 0;
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1030;
            border-bottom: 1px solid rgba(222, 231, 223, 0.12);
            min-height: 72px;
            transition: box-shadow 0.25s ease;
        }
        .navbar-xf.scrolled {
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.35);
        }
        .navbar-xf .navbar-brand {
            display: flex;
            align-items: center;
            gap: 10px;
            font-weight: 700;
            font-size: 22px;
            color: var(--xf-text-inverse);
            letter-spacing: -0.4px;
            padding: 0;
            white-space: nowrap;
        }
        .navbar-xf .navbar-brand:hover {
            color: var(--xf-primary-green);
        }
        .brand-logo-mark {
            width: 38px;
            height: 38px;
            border-radius: 10px;
            background: var(--xf-grad-cta);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 20px;
            color: #fff;
            flex-shrink: 0;
            box-shadow: 0 2px 10px rgba(22, 163, 74, 0.3);
        }
        .navbar-xf .nav-link {
            color: rgba(242, 247, 243, 0.78);
            font-weight: 500;
            font-size: 15px;
            padding: 8px 16px !important;
            border-radius: 8px;
            transition: all 0.2s ease;
            letter-spacing: 0.2px;
        }
        .navbar-xf .nav-link:hover {
            color: #fff;
            background-color: rgba(255, 255, 255, 0.08);
        }
        .navbar-xf .nav-link.active {
            color: var(--xf-primary-green);
            background-color: rgba(22, 163, 74, 0.12);
        }
        .nav-cta-group {
            display: flex;
            align-items: center;
            gap: 10px;
            margin-left: 12px;
            white-space: nowrap;
        }
        .btn-nav-secondary {
            display: inline-flex;
            align-items: center;
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 500;
            border: 1px solid rgba(242, 247, 243, 0.3);
            color: var(--xf-text-inverse);
            background: transparent;
            transition: all 0.2s ease;
        }
        .btn-nav-secondary:hover {
            border-color: var(--xf-primary-green);
            color: var(--xf-primary-green);
            background: rgba(22, 163, 74, 0.08);
        }
        .btn-nav-primary {
            display: inline-flex;
            align-items: center;
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            background: var(--xf-grad-cta);
            color: #fff;
            border: none;
            transition: all 0.2s ease;
        }
        .btn-nav-primary:hover {
            background: var(--xf-green-deep);
            color: #fff;
            box-shadow: 0 0 0 2px rgba(22, 163, 74, 0.25);
        }
        .navbar-toggler {
            border: 1px solid rgba(242, 247, 243, 0.3);
            background: rgba(255, 255, 255, 0.05);
            color: var(--xf-text-inverse);
            padding: 6px 10px;
            border-radius: 8px;
        }
        .navbar-toggler:focus {
            box-shadow: 0 0 0 3px rgba(22, 163, 74, 0.3);
            border-color: var(--xf-primary-green);
        }
        .navbar-toggler-icon {
            background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 24 24' stroke='%23F2F7F3' stroke-width='2'%3e%3cpath stroke-linecap='round' stroke-linejoin='round' d='M4 6h16M4 12h16M4 18h16'/%3e%3c/svg%3e");
        }
        @media (max-width: 991.98px) {
            .navbar-xf .navbar-collapse {
                background: var(--xf-dark-surface);
                border-radius: var(--xf-radius-md);
                padding: 16px;
                margin-top: 12px;
                border: 1px solid rgba(222, 231, 223, 0.12);
            }
            .nav-cta-group {
                margin-left: 0;
                margin-top: 10px;
                flex-direction: column;
                align-items: stretch;
            }
            .btn-nav-secondary,
            .btn-nav-primary {
                justify-content: center;
                width: 100%;
            }
        }
        .breadcrumb-xf {
            background: transparent;
            padding: 8px 0 0;
            margin-bottom: 0;
            font-size: 14px;
        }
        .breadcrumb-xf a {
            color: var(--xf-primary-green);
            font-weight: 500;
        }
        .breadcrumb-xf a:hover {
            color: var(--xf-green-deep);
            text-decoration: underline;
        }
        .breadcrumb-xf .breadcrumb-item+.breadcrumb-item::before {
            content: "/";
            color: var(--xf-text-secondary);
            margin: 0 8px;
        }
        .breadcrumb-xf .breadcrumb-item.active {
            color: var(--xf-text-secondary);
        }
        .team-hero-cat {
            background: var(--xf-grad-dark);
            padding: 48px 0;
            border-bottom: 1px solid rgba(222, 231, 223, 0.08);
        }
        .team-hero-cat .cat-h1 {
            color: var(--xf-text-inverse);
            font-size: clamp(28px, 4vw, 38px);
            font-weight: 700;
            line-height: 1.25;
            letter-spacing: -0.5px;
            margin-bottom: 8px;
        }
        .team-hero-cat .cat-subtitle {
            color: rgba(242, 247, 243, 0.75);
            font-size: 16px;
            line-height: 1.75;
            max-width: 680px;
        }
        .team-hero-cat .cat-meta {
            display: flex;
            gap: 24px;
            margin-top: 18px;
            flex-wrap: wrap;
        }
        .team-hero-cat .cat-meta-item {
            color: rgba(242, 247, 243, 0.7);
            font-size: 13px;
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .team-filter-bar {
            background: #fff;
            border: 1px solid var(--xf-border-light);
            border-radius: var(--xf-radius-md);
            padding: 16px 20px;
            box-shadow: var(--xf-shadow-sm);
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 32px;
        }
        .team-filter-bar .filter-label {
            font-size: 14px;
            font-weight: 600;
            color: var(--xf-text-primary);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .filter-tag-group {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .filter-tag {
            display: inline-flex;
            align-items: center;
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 500;
            border: 1px solid var(--xf-border-light);
            background: var(--xf-light-bg);
            color: var(--xf-text-secondary);
            cursor: pointer;
            transition: all 0.2s ease;
        }
        .filter-tag:hover {
            border-color: var(--xf-primary-green);
            color: var(--xf-primary-green);
            background: rgba(22, 163, 74, 0.06);
        }
        .filter-tag.active {
            background: var(--xf-primary-green);
            color: #fff;
            border-color: var(--xf-primary-green);
        }
        .team-card-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .team-card {
            background: #fff;
            border-radius: var(--xf-radius-md);
            overflow: hidden;
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
        }
        .team-card:hover {
            transform: translateY(-4px);
            box-shadow: var(--xf-shadow-hover);
            border-color: var(--xf-border-tint);
        }
        .team-card-cover {
            position: relative;
            height: 140px;
            background: var(--xf-grad-dark);
            display: flex;
            align-items: center;
            justify-content: center;
            overflow: hidden;
        }
        .team-card-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            opacity: 0.55;
        }
        .team-card-cover::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(14, 27, 21, 0.7) 0%, rgba(22, 163, 74, 0.35) 100%);
            pointer-events: none;
        }
        .team-abbr {
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            z-index: 2;
            font-size: 32px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 1px;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.4);
        }
        .team-card-body {
            padding: 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .team-card-body .team-name {
            font-size: 18px;
            font-weight: 600;
            color: var(--xf-text-primary);
            line-height: 1.4;
            margin-bottom: 4px;
        }
        .team-card-body .team-league {
            font-size: 13px;
            color: var(--xf-primary-green);
            font-weight: 500;
            display: flex;
            align-items: center;
            gap: 4px;
            margin-bottom: 12px;
        }
        .team-card-body .team-info-list {
            list-style: none;
            padding: 0;
            margin: 0 0 14px;
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .team-card-body .team-info-list li {
            font-size: 13px;
            color: var(--xf-text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
            line-height: 1.5;
        }
        .team-card-body .team-info-list li i {
            color: var(--xf-primary-green);
            font-size: 14px;
            flex-shrink: 0;
        }
        .team-card-footer {
            margin-top: auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 8px;
            padding-top: 12px;
            border-top: 1px solid var(--xf-border-light);
        }
        .team-card-footer .team-year {
            font-size: 12px;
            color: var(--xf-text-secondary);
            font-feature-settings: var(--xf-tnum);
        }
        .team-card-footer .team-status {
            font-size: 12px;
            padding: 3px 10px;
            border-radius: 100px;
            font-weight: 500;
        }
        .team-status.active-status {
            background: rgba(22, 163, 74, 0.1);
            color: var(--xf-primary-green);
        }
        .team-status.inactive-status {
            background: rgba(249, 115, 22, 0.1);
            color: var(--xf-accent-orange);
        }
        @media (max-width: 991.98px) {
            .team-card-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }
        @media (max-width: 575.98px) {
            .team-card-grid {
                grid-template-columns: 1fr;
            }
            .team-filter-bar {
                flex-direction: column;
                align-items: flex-start;
            }
        }
        .pagination-xf {
            display: flex;
            justify-content: center;
            margin-top: 36px;
            gap: 6px;
        }
        .pagination-xf .page-link {
            border-radius: 8px;
            border: 1px solid var(--xf-border-light);
            color: var(--xf-text-secondary);
            font-size: 14px;
            font-weight: 500;
            padding: 8px 14px;
            background: #fff;
            transition: all 0.2s ease;
        }
        .pagination-xf .page-link:hover {
            background: rgba(22, 163, 74, 0.08);
            border-color: var(--xf-primary-green);
            color: var(--xf-primary-green);
        }
        .pagination-xf .page-link.active {
            background: var(--xf-primary-green);
            border-color: var(--xf-primary-green);
            color: #fff;
        }
        .pagination-xf .page-link.disabled {
            opacity: 0.5;
            pointer-events: none;
            background: #f0f0f0;
        }
        .stat-card-xf {
            background: #fff;
            border-radius: var(--xf-radius-md);
            padding: 24px;
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            text-align: center;
            transition: all 0.25s ease;
        }
        .stat-card-xf:hover {
            box-shadow: var(--xf-shadow-hover);
            transform: translateY(-2px);
        }
        .stat-card-xf .stat-number {
            font-size: 36px;
            font-weight: 700;
            color: var(--xf-primary-dark);
            font-feature-settings: var(--xf-tnum);
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        .stat-card-xf .stat-number.text-green {
            color: var(--xf-primary-green);
        }
        .stat-card-xf .stat-label {
            font-size: 14px;
            color: var(--xf-text-secondary);
            margin-top: 6px;
            font-weight: 500;
        }
        .stat-card-xf .stat-detail {
            font-size: 12px;
            color: var(--xf-text-secondary);
            opacity: 0.7;
            margin-top: 4px;
        }
        .article-card-xf {
            background: #fff;
            border-radius: var(--xf-radius-md);
            overflow: hidden;
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            transition: all 0.25s ease;
            display: flex;
            flex-direction: column;
        }
        .article-card-xf:hover {
            box-shadow: var(--xf-shadow-hover);
            transform: translateY(-3px);
            border-color: var(--xf-border-tint);
        }
        .article-card-xf .article-cover {
            height: 160px;
            overflow: hidden;
            position: relative;
        }
        .article-card-xf .article-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.3s ease;
        }
        .article-card-xf:hover .article-cover img {
            transform: scale(1.05);
        }
        .article-card-xf .article-body {
            padding: 18px 20px 20px;
            flex: 1;
            display: flex;
            flex-direction: column;
        }
        .article-card-xf .article-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--xf-text-primary);
            line-height: 1.5;
            margin-bottom: 8px;
        }
        .article-card-xf .article-title a {
            color: var(--xf-text-primary);
        }
        .article-card-xf .article-title a:hover {
            color: var(--xf-primary-green);
        }
        .article-card-xf .article-summary {
            font-size: 13px;
            color: var(--xf-text-secondary);
            line-height: 1.6;
            margin-bottom: 12px;
            flex: 1;
        }
        .article-card-xf .article-meta {
            font-size: 12px;
            color: var(--xf-text-secondary);
            opacity: 0.8;
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .article-card-xf .article-meta i {
            margin-right: 2px;
        }
        .dark-info-band {
            background: var(--xf-grad-dark);
            padding: 44px 0;
            border-radius: var(--xf-radius-lg);
            margin: 0 0 40px;
        }
        .dark-info-band .band-title {
            color: var(--xf-text-inverse);
            font-size: 24px;
            font-weight: 650;
            line-height: 1.3;
            margin-bottom: 8px;
        }
        .dark-info-band .band-text {
            color: rgba(242, 247, 243, 0.75);
            font-size: 15px;
            line-height: 1.75;
        }
        .cta-band-xf {
            background: var(--xf-grad-cta);
            border-radius: var(--xf-radius-lg);
            padding: 44px 36px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 20px;
            margin-bottom: 40px;
        }
        .cta-band-xf .cta-title {
            color: #fff;
            font-size: 24px;
            font-weight: 650;
            line-height: 1.3;
            margin-bottom: 4px;
        }
        .cta-band-xf .cta-desc {
            color: rgba(255, 255, 255, 0.85);
            font-size: 15px;
            line-height: 1.7;
        }
        .cta-band-xf .btn-cta-white {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 600;
            background: #fff;
            color: var(--xf-primary-dark);
            border: none;
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .cta-band-xf .btn-cta-white:hover {
            background: var(--xf-light-bg);
            color: var(--xf-primary-green);
            box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2);
        }
        .cta-band-xf .btn-cta-outline {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 12px 28px;
            border-radius: 8px;
            font-size: 15px;
            font-weight: 500;
            background: transparent;
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: all 0.2s ease;
            white-space: nowrap;
        }
        .cta-band-xf .btn-cta-outline:hover {
            background: rgba(255, 255, 255, 0.1);
            border-color: #fff;
            color: #fff;
        }
        .faq-item-xf {
            background: #fff;
            border-radius: var(--xf-radius-md);
            border: 1px solid var(--xf-border-light);
            box-shadow: var(--xf-shadow-sm);
            overflow: hidden;
            margin-bottom: 12px;
        }
        .faq-item-xf .faq-question {
            padding: 18px 20px;
            font-size: 16px;
            font-weight: 600;
            color: var(--xf-text-primary);
            cursor: pointer;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 12px;
            transition: all 0.2s ease;
        }
        .faq-item-xf .faq-question:hover {
            color: var(--xf-primary-green);
        }
        .faq-item-xf .faq-question i {
            font-size: 18px;
            color: var(--xf-primary-green);
            transition: transform 0.2s ease;
        }
        .faq-item-xf .faq-answer {
            padding: 0 20px 18px;
            font-size: 14px;
            color: var(--xf-text-secondary);
            line-height: 1.75;
        }
        .faq-item-xf .faq-answer p {
            margin: 0;
        }
        .footer-xf {
            background: var(--xf-dark-surface);
            padding: 56px 0 24px;
            color: rgba(242, 247, 243, 0.75);
        }
        .footer-xf .footer-brand-name {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 20px;
            font-weight: 700;
            color: var(--xf-text-inverse);
            margin-bottom: 12px;
        }
        .footer-xf .footer-desc {
            font-size: 14px;
            line-height: 1.75;
            color: rgba(242, 247, 243, 0.65);
            max-width: 340px;
        }
        .footer-xf .footer-title {
            font-size: 15px;
            font-weight: 600;
            color: var(--xf-text-inverse);
            margin-bottom: 14px;
            letter-spacing: 0.3px;
        }
        .footer-xf .footer-links {
            list-style: none;
            padding: 0;
            margin: 0;
            display: flex;
            flex-direction: column;
            gap: 8px;
        }
        .footer-xf .footer-links li a {
            color: rgba(242, 247, 243, 0.65);
            font-size: 14px;
            transition: all 0.2s ease;
            display: inline-flex;
            align-items: center;
        }
        .footer-xf .footer-links li a:hover {
            color: var(--xf-primary-green);
            padding-left: 4px;
        }
        .footer-xf .footer-bottom {
            margin-top: 40px;
            padding-top: 20px;
            border-top: 1px solid rgba(222, 231, 223, 0.12);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 10px;
            font-size: 13px;
            color: rgba(242, 247, 243, 0.5);
        }
        .footer-xf .footer-bottom a {
            color: rgba(242, 247, 243, 0.5);
        }
        .footer-xf .footer-bottom a:hover {
            color: var(--xf-primary-green);
        }
        @media (max-width: 575.98px) {
            .section-pad {
                padding: var(--xf-section-pad-mobile);
            }
            .team-hero-cat {
                padding: 36px 0;
            }
            .cta-band-xf {
                padding: 28px 22px;
                flex-direction: column;
                align-items: flex-start;
            }
            .cta-band-xf .btn-cta-white,
            .cta-band-xf .btn-cta-outline {
                width: 100%;
                justify-content: center;
            }
            .footer-xf {
                padding: 40px 0 20px;
            }
        }

/* roulang: framework shim */
/* 覆盖 Bootstrap 等对 a/btn 的全局默认，避免导航出现下划线/蓝链 */
.site-header a,.site-header a:hover,.navbar a,.navbar a:hover,.nav-links a,.nav-links a:hover,header nav a,header nav a:hover{text-decoration:none}
.site-header .btn,.navbar .btn,.nav-cta{text-decoration:none}
