/* roulang page: index */
:root {
            --primary: #1B4B36;
            --primary-dark: #143B2B;
            --accent: #F25C05;
            --accent-hover: #D84E04;
            --live-red: #E6322B;
            --dark: #10251C;
            --soft-bg: #F6F5F0;
            --tint: #E6F0E9;
            --text: #16261F;
            --text-secondary: #4A5A52;
            --text-muted: #8A9A91;
            --border: #DCE5E0;
            --radius: 12px;
            --radius-btn: 8px;
            --shadow: 0 1px 2px rgba(22,38,31,0.06), 0 4px 12px rgba(22,38,31,0.05);
            --shadow-hover: 0 8px 24px rgba(22,38,31,0.1);
            --transition: all 0.3s ease;
            --font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: var(--font-family);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text);
            background-color: var(--soft-bg);
            -webkit-font-smoothing: antialiased;
        }

        a {
            text-decoration: none;
            color: inherit;
            transition: var(--transition);
        }

        img {
            max-width: 100%;
            height: auto;
            display: block;
        }

        button,
        input,
        select,
        textarea {
            font-family: inherit;
            font-size: inherit;
        }

        button {
            cursor: pointer;
            border: none;
            background: none;
        }

        .container {
            max-width: 1320px;
            margin: 0 auto;
            padding-left: 20px;
            padding-right: 20px;
        }

        @media (max-width: 768px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
        }

        /* ===== Buttons ===== */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            padding: 0 28px;
            border-radius: var(--radius-btn);
            font-size: 15px;
            font-weight: 600;
            line-height: 1;
            transition: var(--transition);
            white-space: nowrap;
            border: 1px solid transparent;
            text-align: center;
        }

        .btn:focus-visible {
            outline: 2px solid rgba(27, 75, 54, 0.8);
            outline-offset: 2px;
        }

        .btn-primary {
            background-color: var(--primary);
            color: #fff;
        }

        .btn-primary:hover {
            background-color: var(--primary-dark);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(27, 75, 54, 0.25);
            color: #fff;
        }

        .btn-accent {
            background-color: var(--accent);
            color: #fff;
        }

        .btn-accent:hover {
            background-color: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 6px 16px rgba(242, 92, 5, 0.3);
            color: #fff;
        }

        .btn-outline {
            background: transparent;
            border: 1.5px solid var(--primary);
            color: var(--primary);
        }

        .btn-outline:hover {
            background: var(--tint);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }

        .btn-white {
            background: #fff;
            color: var(--dark);
        }

        .btn-white:hover {
            background: #f0f2f0;
            transform: translateY(-2px);
        }

        .btn-sm {
            height: 38px;
            padding: 0 16px;
            font-size: 13px;
            border-radius: 6px;
        }

        /* ===== Badges & Tags ===== */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            height: 26px;
            padding: 0 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 500;
            line-height: 1;
        }

        .badge-upcoming {
            background: transparent;
            border: 1px solid var(--primary);
            color: var(--primary);
        }

        .badge-live {
            background: var(--live-red);
            color: #fff;
            font-weight: 600;
        }

        .badge-live::before {
            content: "";
            width: 6px;
            height: 6px;
            border-radius: 50%;
            background: #fff;
            animation: pulse 1.2s infinite;
        }

        .badge-ended {
            background: #eee;
            color: #666;
            font-weight: 400;
        }

        .tag {
            display: inline-flex;
            align-items: center;
            height: 26px;
            padding: 0 12px;
            border-radius: 999px;
            background: var(--tint);
            color: var(--primary);
            font-size: 12px;
            font-weight: 500;
            line-height: 1;
            white-space: nowrap;
        }

        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
            }
            50% {
                opacity: 0.4;
            }
        }

        /* ===== Header ===== */
        .site-header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            background: rgba(246, 245, 240, 0.85);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
        }

        .site-header.scrolled {
            background: rgba(246, 245, 240, 0.98);
            box-shadow: 0 4px 20px rgba(22, 38, 31, 0.08);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 24px;
        }

        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }

        .brand-mark {
            width: 40px;
            height: 40px;
            border-radius: 10px;
            background: var(--primary);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            font-weight: 800;
            letter-spacing: -0.5px;
        }

        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }

        .brand-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: -0.3px;
        }

        .brand-sub {
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 1px;
        }

        .main-nav {
            display: flex;
            align-items: center;
            gap: 4px;
        }

        .main-nav .nav-link {
            position: relative;
            padding: 8px 16px;
            font-size: 15px;
            font-weight: 500;
            color: var(--text);
            border-radius: 6px;
            transition: var(--transition);
        }

        .main-nav .nav-link:hover {
            color: var(--primary);
            background: var(--tint);
        }

        .main-nav .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }

        .main-nav .nav-link.active::after {
            content: "";
            position: absolute;
            bottom: 2px;
            left: 16px;
            right: 16px;
            height: 2.5px;
            border-radius: 2px;
            background: var(--primary);
        }

        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }

        .header-actions .btn {
            height: 40px;
            padding: 0 20px;
            font-size: 14px;
        }

        /* ===== Mobile bottom tabs ===== */
        .bottom-tabs {
            display: none;
        }

        /* ===== Hero ===== */
        .hero {
            position: relative;
            padding: 140px 0 80px;
            background-color: var(--dark);
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: 0.35;
        }

        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(16, 37, 28, 0.92) 0%, rgba(16, 37, 28, 0.75) 50%, rgba(16, 37, 28, 0.55) 100%);
        }

        .hero .container {
            position: relative;
            z-index: 2;
        }

        .hero-content {
            display: grid;
            grid-template-columns: 1fr 1.05fr;
            gap: 48px;
            align-items: center;
        }

        .hero-cover {
            position: relative;
            border-radius: var(--radius);
            overflow: hidden;
            box-shadow: 0 16px 48px rgba(0, 0, 0, 0.4);
            aspect-ratio: 16 / 9;
        }

        .hero-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .live-badge {
            position: absolute;
            top: 16px;
            left: 16px;
            display: inline-flex;
            align-items: center;
            gap: 8px;
            height: 30px;
            padding: 0 14px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.55);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            letter-spacing: 0.5px;
            backdrop-filter: blur(6px);
            -webkit-backdrop-filter: blur(6px);
        }

        .live-badge .live-dot {
            width: 7px;
            height: 7px;
            border-radius: 50%;
            background: var(--accent);
            animation: pulse 1.5s infinite;
        }

        .hero-right {
            padding: 8px 0;
        }

        .hero-right .tag {
            margin-bottom: 16px;
        }

        .hero-right h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            color: #fff;
            letter-spacing: -0.5px;
            margin-bottom: 12px;
        }

        .hero-sub {
            font-size: 17px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.85);
            margin-bottom: 24px;
        }

        .match-time {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 24px;
        }

        .time-label {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.7);
        }

        .time-value {
            font-size: 16px;
            font-weight: 600;
            color: #fff;
            padding: 4px 14px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.15);
            font-variant-numeric: tabular-nums;
        }

        .countdown {
            display: flex;
            gap: 12px;
            margin-bottom: 32px;
        }

        .countdown-item {
            display: flex;
            flex-direction: column;
            align-items: center;
            min-width: 78px;
            padding: 14px 10px;
            border-radius: 10px;
            background: rgba(0, 0, 0, 0.5);
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .countdown-item .number {
            font-size: 44px;
            font-weight: 700;
            color: #fff;
            font-variant-numeric: tabular-nums;
            line-height: 1.1;
            font-family: "HarmonyOS Sans SC", "PingFang SC", sans-serif;
        }

        .countdown-item .label {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.6);
            margin-top: 4px;
        }

        .hero-actions {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        /* ===== Match Timeline ===== */
        .match-timeline {
            background: var(--dark);
            padding: 0 0 48px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.06);
        }

        .timeline-scroll {
            display: flex;
            gap: 16px;
            overflow-x: auto;
            padding: 20px 4px 4px;
            scrollbar-width: thin;
            scrollbar-color: rgba(255, 255, 255, 0.2) transparent;
        }

        .timeline-scroll::-webkit-scrollbar {
            height: 4px;
        }

        .timeline-scroll::-webkit-scrollbar-track {
            background: transparent;
        }

        .timeline-scroll::-webkit-scrollbar-thumb {
            background: rgba(255, 255, 255, 0.2);
            border-radius: 4px;
        }

        .timeline-item {
            display: flex;
            align-items: center;
            gap: 20px;
            padding: 18px 24px;
            border-radius: var(--radius);
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(255, 255, 255, 0.1);
            min-width: 420px;
            transition: var(--transition);
        }

        .timeline-item.highlight {
            background: rgba(255, 255, 255, 0.08);
            border-color: rgba(242, 92, 5, 0.4);
            box-shadow: 0 0 24px rgba(242, 92, 5, 0.08);
        }

        .timeline-item.dimmed {
            opacity: 0.65;
        }

        .tl-time {
            display: flex;
            flex-direction: column;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.7);
            line-height: 1.4;
            white-space: nowrap;
        }

        .tl-time strong {
            font-size: 14px;
            color: #fff;
        }

        .tl-match {
            display: flex;
            align-items: center;
            gap: 12px;
            flex: 1;
        }

        .tl-match strong {
            font-size: 15px;
            color: #fff;
            white-space: nowrap;
        }

        .tl-vs,
        .tl-score {
            font-size: 13px;
            font-weight: 600;
            color: rgba(255, 255, 255, 0.5);
            padding: 2px 10px;
            border-radius: 6px;
            background: rgba(255, 255, 255, 0.08);
            white-space: nowrap;
        }

        /* ===== Sections ===== */
        .section {
            padding: 96px 0;
        }

        .section-title {
            font-size: 32px;
            font-weight: 800;
            line-height: 1.3;
            color: var(--text);
            letter-spacing: -0.3px;
            margin-bottom: 12px;
        }

        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 40px;
        }

        .section-desc {
            font-size: 16px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        .link-more {
            font-size: 15px;
            font-weight: 600;
            color: var(--primary);
            white-space: nowrap;
        }

        .link-more:hover {
            color: var(--accent);
        }

        /* ===== Highlights ===== */
        .highlights-section {
            background: #fff;
            border-bottom: 1px solid var(--border);
        }

        .highlights-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            max-width: 880px;
            margin: 0 auto;
        }

        .highlight-item {
            display: flex;
            gap: 24px;
            padding: 28px 24px;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
            border-radius: 8px;
        }

        .highlight-item:last-child {
            border-bottom: none;
        }

        .highlight-item:hover {
            background: var(--tint);
        }

        .hl-number {
            font-size: 20px;
            font-weight: 800;
            color: var(--accent);
            font-variant-numeric: tabular-nums;
            flex-shrink: 0;
            line-height: 1.4;
            min-width: 44px;
        }

        .hl-content h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 6px;
        }

        .hl-content p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .highlights-footer {
            text-align: center;
            margin-top: 32px;
        }

        /* ===== Subscribe ===== */
        .subscribe-section {
            padding: 80px 0;
        }

        .subscribe-card {
            display: grid;
            grid-template-columns: 1fr 1.2fr;
            gap: 40px;
            align-items: center;
            background: var(--tint);
            border-radius: 16px;
            padding: 48px 56px;
            border: 1px solid var(--border);
        }

        .subscribe-left h2 {
            font-size: 28px;
            font-weight: 800;
            color: var(--text);
            margin-bottom: 8px;
        }

        .subscribe-left p {
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        .subscribe-form {
            display: flex;
            gap: 12px;
            flex-wrap: wrap;
        }

        .form-select-wrap {
            position: relative;
            flex-shrink: 0;
        }

        .form-select-wrap select {
            height: 48px;
            padding: 0 36px 0 16px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border);
            background: #fff;
            color: var(--text);
            font-size: 14px;
            appearance: none;
            -webkit-appearance: none;
            cursor: pointer;
            transition: var(--transition);
            outline: none;
        }

        .form-select-wrap select:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(27, 75, 54, 0.12);
        }

        .form-select-wrap::after {
            content: "\f078";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            right: 14px;
            top: 50%;
            transform: translateY(-50%);
            font-size: 12px;
            color: var(--text-muted);
            pointer-events: none;
        }

        .subscribe-form input {
            flex: 1;
            min-width: 200px;
            height: 48px;
            padding: 0 16px;
            border-radius: var(--radius-btn);
            border: 1px solid var(--border);
            font-size: 14px;
            background: #fff;
            color: var(--text);
            transition: var(--transition);
            outline: none;
        }

        .subscribe-form input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(27, 75, 54, 0.12);
        }

        .subscribe-form input::placeholder {
            color: var(--text-muted);
        }

        .subscribe-feedback {
            display: none;
            align-items: center;
            gap: 8px;
            margin-top: 14px;
            padding: 10px 16px;
            border-radius: 8px;
            background: #fff;
            border: 1px solid var(--primary);
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
        }

        .subscribe-feedback.show {
            display: flex;
        }

        .subscribe-feedback i {
            font-size: 18px;
        }

        /* ===== News List ===== */
        .news-section {
            background: #fff;
            border-bottom: 1px solid var(--border);
        }

        .news-list {
            display: flex;
            flex-direction: column;
            gap: 0;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: #fff;
            overflow: hidden;
        }

        .news-item {
            display: flex;
            align-items: center;
            gap: 24px;
            padding: 20px 24px;
            border-bottom: 1px solid var(--border);
            transition: var(--transition);
            position: relative;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-item:hover {
            background: var(--tint);
        }

        .news-item:hover::before {
            content: "";
            position: absolute;
            left: 0;
            top: 0;
            bottom: 0;
            width: 3px;
            background: var(--primary);
        }

        .news-info {
            flex: 1;
            min-width: 0;
        }

        .news-meta {
            display: flex;
            align-items: center;
            gap: 12px;
            margin-bottom: 6px;
        }

        .news-meta time {
            font-size: 13px;
            color: var(--text-muted);
        }

        .news-info h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 4px;
            line-height: 1.5;
            overflow: hidden;
            text-overflow: ellipsis;
            white-space: nowrap;
        }

        .news-info p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            display: -webkit-box;
            -webkit-line-clamp: 1;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }

        .news-thumb {
            width: 120px;
            height: 80px;
            border-radius: 8px;
            overflow: hidden;
            flex-shrink: 0;
        }

        .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: var(--transition);
        }

        .news-item:hover .news-thumb img {
            transform: scale(1.05);
        }

        .empty-state {
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 12px;
            padding: 64px 24px;
            border: 2px dashed var(--border);
            border-radius: var(--radius);
            background: var(--soft-bg);
        }

        .empty-state .empty-icon {
            font-size: 40px;
            color: var(--text-muted);
        }

        .empty-state p {
            font-size: 15px;
            color: var(--text-secondary);
        }

        /* ===== Replay Cards ===== */
        .replay-section {
            background: var(--soft-bg);
        }

        .replay-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }

        .replay-card {
            border-radius: var(--radius);
            background: #fff;
            border: 1px solid var(--border);
            overflow: hidden;
            transition: var(--transition);
            box-shadow: var(--shadow);
        }

        .replay-card:hover {
            transform: translateY(-2px);
            box-shadow: var(--shadow-hover);
        }

        .replay-thumb {
            position: relative;
            aspect-ratio: 4 / 3;
            overflow: hidden;
            border-radius: var(--radius) var(--radius) 0 0;
        }

        .replay-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }

        .replay-card:hover .replay-thumb img {
            transform: scale(1.02);
        }

        .replay-thumb::after {
            content: "\f04b";
            font-family: "Font Awesome 6 Free";
            font-weight: 900;
            position: absolute;
            top: 50%;
            left: 50%;
            transform: translate(-50%, -50%);
            width: 52px;
            height: 52px;
            border-radius: 50%;
            background: rgba(0, 0, 0, 0.55);
            color: #fff;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 18px;
            opacity: 0;
            transition: var(--transition);
            backdrop-filter: blur(4px);
        }

        .replay-card:hover .replay-thumb::after {
            opacity: 1;
        }

        .replay-badge {
            position: absolute;
            top: 12px;
            right: 12px;
            height: 24px;
            padding: 0 12px;
            border-radius: 999px;
            background: rgba(0, 0, 0, 0.55);
            color: #fff;
            font-size: 12px;
            font-weight: 500;
            display: flex;
            align-items: center;
            backdrop-filter: blur(4px);
        }

        .replay-info {
            padding: 16px 20px 20px;
        }

        .replay-info h3 {
            font-size: 16px;
            font-weight: 700;
            color: var(--text);
            margin-bottom: 8px;
            line-height: 1.4;
        }

        .replay-meta {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
        }

        .replay-meta i {
            margin-right: 4px;
            font-size: 12px;
        }

        /* ===== FAQ ===== */
        .faq-section {
            background: #fff;
        }

        .faq-list {
            max-width: 860px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .faq-item {
            border: 1px solid var(--border);
            border-radius: var(--radius);
            background: #fff;
            overflow: hidden;
            transition: var(--transition);
        }

        .faq-item.active {
            border-color: var(--primary);
        }

        .faq-question {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            width: 100%;
            padding: 20px 24px;
            font-size: 16px;
            font-weight: 600;
            color: var(--text);
            text-align: left;
            background: none;
            border: none;
            cursor: pointer;
            transition: var(--transition);
        }

        .faq-question:hover {
            color: var(--primary);
        }

        .faq-icon {
            font-size: 22px;
            font-weight: 400;
            color: var(--primary);
            transition: transform 0.3s ease;
            line-height: 1;
            flex-shrink: 0;
        }

        .faq-item.active .faq-icon {
            transform: rotate(45deg);
        }

        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height 0.35s ease;
        }

        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        .faq-item.active .faq-answer {
            max-height: 400px;
        }

        /* ===== CTA ===== */
        .cta-section {
            background: var(--dark);
            padding: 80px 0;
        }

        .cta-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 32px;
            flex-wrap: wrap;
        }

        .cta-inner h2 {
            font-size: 28px;
            font-weight: 800;
            color: #fff;
            margin: 0;
        }

        .cta-inner .btn {
            flex-shrink: 0;
        }

        /* ===== Footer ===== */
        .site-footer {
            background: var(--dark);
            border-top: 1px solid rgba(255, 255, 255, 0.06);
            padding: 64px 0 32px;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 1.4fr 2fr;
            gap: 48px;
            margin-bottom: 48px;
        }

        .footer-logo {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            letter-spacing: -0.3px;
            display: block;
            margin-bottom: 8px;
        }

        .footer-brand p {
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            line-height: 1.7;
        }

        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }

        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
        }

        .footer-col a {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            padding: 4px 0;
            transition: var(--transition);
        }

        .footer-col a:hover {
            color: var(--accent);
            padding-left: 4px;
        }

        .footer-bottom {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 13px;
            color: rgba(255, 255, 255, 0.4);
        }

        /* ===== Responsive ===== */
        @media (max-width: 1024px) {
            .hero-right h1 {
                font-size: 36px;
            }

            .countdown-item {
                min-width: 64px;
                padding: 12px 8px;
            }

            .countdown-item .number {
                font-size: 32px;
            }

            .subscribe-card {
                grid-template-columns: 1fr;
                padding: 36px 32px;
                gap: 24px;
            }

            .replay-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .timeline-item {
                min-width: 360px;
            }
        }

        @media (max-width: 768px) {
            .section {
                padding: 64px 0;
            }

            .section-title {
                font-size: 24px;
            }

            .main-nav {
                display: none;
            }

            .header-actions .btn {
                display: none;
            }

            .bottom-tabs {
                display: flex;
                position: fixed;
                bottom: 0;
                left: 0;
                right: 0;
                height: 64px;
                background: #fff;
                border-top: 1px solid var(--border);
                z-index: 1000;
                padding-bottom: env(safe-area-inset-bottom);
            }

            .bottom-tabs .tab-item {
                flex: 1;
                display: flex;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 3px;
                font-size: 11px;
                color: var(--text-muted);
                transition: var(--transition);
            }

            .bottom-tabs .tab-item i {
                font-size: 18px;
            }

            .bottom-tabs .tab-item.active {
                color: var(--primary);
            }

            .bottom-tabs .tab-item.tab-accent {
                color: var(--accent);
            }

            .bottom-tabs .tab-item:active {
                transform: scale(0.95);
            }

            .hero {
                padding: 120px 0 56px;
            }

            .hero-content {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .hero-right h1 {
                font-size: 30px;
            }

            .hero-sub {
                font-size: 15px;
            }

            .countdown {
                gap: 8px;
            }

            .countdown-item {
                min-width: 56px;
                padding: 10px 6px;
            }

            .countdown-item .number {
                font-size: 26px;
            }

            .timeline-item {
                min-width: 300px;
                padding: 14px 16px;
                gap: 12px;
            }

            .tl-match strong {
                font-size: 13px;
            }

            .subscribe-form {
                flex-direction: column;
            }

            .subscribe-form select,
            .subscribe-form input,
            .subscribe-form .btn {
                width: 100%;
            }

            .news-item {
                padding: 16px;
                gap: 16px;
            }

            .news-thumb {
                width: 88px;
                height: 64px;
            }

            .news-info h3 {
                font-size: 15px;
            }

            .news-info p {
                display: none;
            }

            .replay-grid {
                grid-template-columns: 1fr;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }

            .footer-links {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }

            .cta-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .site-footer {
                padding-bottom: 96px;
            }

            body {
                padding-bottom: 0;
            }
        }

        @media (max-width: 520px) {
            .container {
                padding-left: 14px;
                padding-right: 14px;
            }

            .hero-right h1 {
                font-size: 26px;
            }

            .countdown-item {
                min-width: 50px;
            }

            .countdown-item .number {
                font-size: 22px;
            }

            .hero-actions {
                flex-direction: column;
                width: 100%;
            }

            .hero-actions .btn {
                width: 100%;
            }

            .subscribe-card {
                padding: 24px 20px;
                border-radius: 12px;
            }

            .replay-grid {
                gap: 16px;
            }

            .footer-links {
                grid-template-columns: 1fr;
                gap: 20px;
            }

            .section-head {
                flex-direction: column;
                align-items: flex-start;
                gap: 8px;
            }
        }

        /* ===== Back to top ===== */
        .back-to-top {
            display: none;
            position: fixed;
            bottom: 88px;
            right: 20px;
            width: 44px;
            height: 44px;
            border-radius: 50%;
            background: var(--primary);
            color: #fff;
            border: none;
            font-size: 16px;
            cursor: pointer;
            box-shadow: 0 4px 16px rgba(22, 38, 31, 0.2);
            z-index: 999;
            transition: var(--transition);
        }

        .back-to-top:hover {
            background: var(--primary-dark);
            transform: translateY(-2px);
        }

        .back-to-top.show {
            display: flex;
            align-items: center;
            justify-content: center;
        }

        @media (max-width: 768px) {
            .back-to-top {
                bottom: 80px;
                right: 14px;
                width: 38px;
                height: 38px;
                font-size: 14px;
            }
        }

/* roulang page: category1 */
:root {
            --primary: #1B4B36;
            --primary-dark: #143B2B;
            --accent: #F25C05;
            --accent-dark: #D84E04;
            --live-red: #E6322B;
            --dark: #10251C;
            --soft-bg: #F6F5F0;
            --tint: #E6F0E9;
            --text-main: #16261F;
            --text-secondary: #4A5A52;
            --text-weak: #8A9A91;
            --border: #DCE5E0;
            --radius: 12px;
            --radius-sm: 8px;
            --shadow-sm: 0 1px 2px rgba(22, 38, 31, 0.06), 0 4px 12px rgba(22, 38, 31, 0.05);
            --shadow-lg: 0 8px 24px rgba(22, 38, 31, 0.1);
            --font-family: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei UI", "Microsoft YaHei", sans-serif;
        }

        *,
        *::before,
        *::after {
            box-sizing: border-box;
        }
        html {
            scroll-behavior: smooth;
        }
        body {
            font-family: var(--font-family);
            background: var(--soft-bg);
            color: var(--text-main);
            line-height: 1.75;
            margin: 0;
            padding: 0;
            -webkit-font-smoothing: antialiased;
        }
        img {
            max-width: 100%;
            display: block;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: all .2s ease;
        }
        a:hover {
            color: inherit;
        }
        button {
            font-family: inherit;
        }
        h1,
        h2,
        h3,
        h4,
        h5 {
            font-weight: 700;
            line-height: 1.3;
            margin: 0;
        }
        p {
            margin: 0;
        }
        .container {
            max-width: 1320px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* 通用按钮 */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 48px;
            padding: 0 28px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 600;
            border: 1px solid transparent;
            cursor: pointer;
            transition: all .25s ease;
            white-space: nowrap;
            line-height: 1;
        }
        .btn:focus-visible {
            outline: 2px solid rgba(27, 75, 54, .8);
            outline-offset: 2px;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            border-color: var(--primary-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(27, 75, 54, .25);
            color: #fff;
        }
        .btn-accent {
            background: var(--accent);
            color: #fff;
            border-color: var(--accent);
        }
        .btn-accent:hover {
            background: var(--accent-dark);
            border-color: var(--accent-dark);
            transform: translateY(-1px);
            box-shadow: 0 6px 16px rgba(242, 92, 5, .3);
            color: #fff;
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border-color: var(--primary);
        }
        .btn-outline:hover {
            background: var(--tint);
            color: var(--primary-dark);
            border-color: var(--primary-dark);
        }
        .hero .btn-outline,
        .cta-box .btn-outline {
            color: #fff;
            border-color: rgba(255, 255, 255, .7);
        }
        .hero .btn-outline:hover,
        .cta-box .btn-outline:hover {
            background: rgba(255, 255, 255, .15);
            border-color: #fff;
            color: #fff;
            box-shadow: none;
        }

        /* 通用区块标题 */
        .section-head {
            margin-bottom: 40px;
        }
        .section-head.center {
            text-align: center;
        }
        .section-head h2 {
            font-size: 32px;
            color: var(--text-main);
            margin-bottom: 10px;
        }
        .section-head .section-sub {
            font-size: 16px;
            color: var(--text-secondary);
        }

        /* 标签与徽章 */
        .cat-tag {
            display: inline-flex;
            align-items: center;
            background: var(--tint);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            padding: 4px 14px;
            border-radius: 999px;
            line-height: 1.6;
        }
        .badge-live {
            position: absolute;
            top: 16px;
            left: 16px;
            background: rgba(16, 37, 28, .72);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 999px;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            backdrop-filter: blur(4px);
            z-index: 2;
        }
        .badge-live::before {
            content: '';
            width: 6px;
            height: 6px;
            background: var(--accent);
            border-radius: 50%;
            animation: pulse 1.5s infinite;
        }
        @keyframes pulse {
            0%,
            100% {
                opacity: 1;
                transform: scale(1);
            }
            50% {
                opacity: .55;
                transform: scale(1.35);
            }
        }
        .badge-soon {
            display: inline-flex;
            align-items: center;
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            border: 1px solid var(--primary);
            color: var(--primary);
            background: #fff;
        }
        .badge-live-red {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            background: var(--live-red);
            color: #fff;
        }
        .badge-live-red::before {
            content: '';
            width: 5px;
            height: 5px;
            border-radius: 50%;
            background: #fff;
        }
        .badge-replay {
            display: inline-flex;
            align-items: center;
            padding: 4px 14px;
            border-radius: 999px;
            font-size: 12px;
            font-weight: 600;
            background: #EBEDEB;
            color: #6B7A71;
        }

        /* Header */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(246, 245, 240, .9);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-bottom: 1px solid var(--border);
            transition: box-shadow .3s ease, background .3s ease;
        }
        .site-header.scrolled {
            background: rgba(246, 245, 240, .98);
            box-shadow: 0 4px 16px rgba(16, 37, 28, .08);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            height: 72px;
            gap: 20px;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-mark {
            width: 38px;
            height: 38px;
            background: var(--primary);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 17px;
        }
        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .brand-name {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: .02em;
        }
        .brand-sub {
            font-size: 11px;
            color: var(--text-weak);
            letter-spacing: .04em;
        }
        .main-nav {
            display: flex;
            gap: 4px;
        }
        .nav-link {
            padding: 10px 16px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            color: var(--text-secondary);
            position: relative;
            transition: all .25s ease;
            font-weight: 500;
        }
        .nav-link:hover {
            color: var(--primary);
            background: var(--tint);
        }
        .nav-link.active {
            color: var(--primary);
            background: var(--tint);
            font-weight: 600;
        }
        .nav-link.active::after {
            content: '';
            position: absolute;
            bottom: 4px;
            left: 50%;
            transform: translateX(-50%);
            width: 20px;
            height: 3px;
            border-radius: 999px;
            background: var(--primary);
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .header-actions .btn {
            height: 42px;
            padding: 0 20px;
            font-size: 14px;
        }

        /* Hero */
        .hero {
            position: relative;
            background: var(--dark);
            padding: 110px 0 100px;
            overflow: hidden;
        }
        .hero-bg {
            position: absolute;
            inset: 0;
            background-size: cover;
            background-position: center;
            opacity: .5;
            z-index: 0;
        }
        .hero-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(110deg, rgba(16, 37, 28, .94) 15%, rgba(16, 37, 28, .65) 55%, rgba(16, 37, 28, .8) 100%);
            z-index: 1;
        }
        .hero-content {
            position: relative;
            z-index: 2;
            color: #fff;
            max-width: 760px;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, .12);
            border: 1px solid rgba(255, 255, 255, .18);
            color: #fff;
            font-size: 13px;
            font-weight: 500;
            padding: 6px 18px;
            border-radius: 999px;
            margin-bottom: 24px;
        }
        .hero-badge i {
            color: var(--accent);
        }
        .hero h1 {
            font-size: 48px;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            color: #fff;
        }
        .hero-sub {
            font-size: 17px;
            color: rgba(255, 255, 255, .85);
            max-width: 600px;
            line-height: 1.75;
            margin-bottom: 32px;
        }
        .hero-stats {
            display: flex;
            gap: 24px;
            margin-bottom: 36px;
            flex-wrap: wrap;
        }
        .stat-item {
            display: flex;
            flex-direction: column;
            gap: 2px;
        }
        .stat-num {
            font-size: 30px;
            font-weight: 800;
            color: #fff;
            line-height: 1.2;
            font-variant-numeric: tabular-nums;
        }
        .stat-label {
            font-size: 13px;
            color: rgba(255, 255, 255, .6);
        }
        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }

        /* 赛程区块 */
        .schedule-section {
            padding: 96px 0;
            background: var(--soft-bg);
        }
        .featured-match {
            display: grid;
            grid-template-columns: 1.15fr 1fr;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            margin-bottom: 32px;
            transition: box-shadow .3s ease;
        }
        .featured-match:hover {
            box-shadow: var(--shadow-lg);
        }
        .featured-cover {
            position: relative;
            aspect-ratio: 16/9;
            overflow: hidden;
        }
        .featured-cover img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform .4s ease;
        }
        .featured-match:hover .featured-cover img {
            transform: scale(1.02);
        }
        .featured-info {
            padding: 32px 36px;
            display: flex;
            flex-direction: column;
            justify-content: center;
            gap: 12px;
        }
        .featured-info .cat-tag {
            align-self: flex-start;
        }
        .featured-info h3 {
            font-size: 24px;
            font-weight: 700;
            color: var(--text-main);
        }
        .match-time {
            font-size: 15px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 6px;
        }
        .countdown {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .count-label {
            font-size: 13px;
            color: var(--text-weak);
            font-weight: 500;
        }
        .count-grid {
            display: flex;
            gap: 8px;
        }
        .count-cell {
            background: var(--dark);
            border-radius: var(--radius-sm);
            min-width: 56px;
            padding: 10px 0;
            text-align: center;
        }
        .count-num {
            display: block;
            font-size: 44px;
            font-weight: 800;
            color: #fff;
            line-height: 1;
            font-variant-numeric: tabular-nums;
        }
        .count-unit {
            font-size: 12px;
            color: rgba(255, 255, 255, .55);
        }
        .featured-desc {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
        }
        .featured-actions {
            display: flex;
            gap: 12px;
            margin-top: 4px;
            flex-wrap: wrap;
        }
        .featured-actions .btn {
            height: 44px;
            padding: 0 22px;
            font-size: 14px;
        }

        /* 筛选条 */
        .filter-bar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            flex-wrap: wrap;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 14px 20px;
            margin-bottom: 24px;
            box-shadow: var(--shadow-sm);
        }
        .filter-group {
            display: flex;
            align-items: center;
            gap: 8px;
            flex-wrap: wrap;
        }
        .filter-label {
            font-size: 13px;
            color: var(--text-weak);
        }
        .filter-btn {
            padding: 8px 18px;
            border: 1px solid var(--border);
            background: #fff;
            border-radius: 999px;
            font-size: 14px;
            color: var(--text-secondary);
            cursor: pointer;
            transition: all .25s ease;
            line-height: 1.4;
        }
        .filter-btn:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--tint);
        }
        .filter-btn.active {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
        }

        /* 赛程列表 */
        .match-table {
            display: flex;
            flex-direction: column;
            gap: 12px;
        }
        .match-row {
            display: grid;
            grid-template-columns: 120px 1fr 120px 130px;
            align-items: center;
            gap: 16px;
            padding: 16px 20px;
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            transition: all .25s ease;
        }
        .match-row:hover {
            background: var(--tint);
            box-shadow: var(--shadow-sm);
        }
        .match-date {
            font-size: 14px;
            font-weight: 700;
            color: var(--text-main);
            line-height: 1.4;
        }
        .match-date small {
            display: block;
            font-size: 12px;
            font-weight: 400;
            color: var(--text-weak);
        }
        .match-info {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-wrap: wrap;
        }
        .match-league {
            font-size: 12px;
            font-weight: 600;
            color: var(--primary);
            background: var(--tint);
            padding: 2px 10px;
            border-radius: 999px;
            white-space: nowrap;
        }
        .match-title {
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            white-space: nowrap;
            overflow: hidden;
            text-overflow: ellipsis;
        }
        .match-status {
            display: flex;
            justify-content: flex-end;
        }
        .match-action {
            display: flex;
            justify-content: flex-end;
        }
        .btn-remind {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 36px;
            padding: 0 16px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid var(--primary);
            color: var(--primary);
            background: transparent;
            cursor: pointer;
            transition: all .25s ease;
        }
        .btn-remind:hover {
            background: var(--primary);
            color: #fff;
        }
        .btn-remind.reminded {
            background: var(--tint);
            border-color: var(--tint);
            color: var(--text-weak);
            cursor: default;
        }
        .btn-replay {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            height: 36px;
            padding: 0 16px;
            border-radius: 999px;
            font-size: 13px;
            font-weight: 600;
            border: 1px solid var(--border);
            color: var(--text-secondary);
            background: #fff;
            transition: all .25s ease;
        }
        .btn-replay:hover {
            border-color: var(--primary);
            color: var(--primary);
            background: var(--tint);
        }

        /* 卖点区块 */
        .perks-section {
            padding: 96px 0;
            background: #fff;
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
        }
        .perks-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 24px;
        }
        .perk-item {
            background: var(--soft-bg);
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px;
            transition: all .3s ease;
        }
        .perk-item:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
            border-color: var(--primary);
        }
        .perk-item i {
            font-size: 28px;
            color: var(--primary);
            background: var(--tint);
            width: 56px;
            height: 56px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 18px;
        }
        .perk-item h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main);
        }
        .perk-item p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* 流程区块 */
        .steps-section {
            padding: 96px 0;
            background: var(--soft-bg);
        }
        .steps-wrap {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .step-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: 16px;
            padding: 32px 28px;
            position: relative;
            transition: all .3s ease;
        }
        .step-item:hover {
            box-shadow: var(--shadow-lg);
            transform: translateY(-3px);
        }
        .step-num {
            font-size: 36px;
            font-weight: 800;
            color: var(--tint);
            display: block;
            line-height: 1;
            margin-bottom: 14px;
            font-variant-numeric: tabular-nums;
        }
        .step-item h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 8px;
            color: var(--text-main);
        }
        .step-item p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
        }

        /* 订阅提醒 */
        .subscribe-section {
            padding: 96px 0;
            background: #fff;
            border-bottom: 1px solid var(--border);
        }
        .subscribe-card {
            background: var(--tint);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 28px;
            padding: 40px 44px;
            flex-wrap: wrap;
            border: 1px solid rgba(27, 75, 54, .12);
        }
        .subscribe-text h2 {
            font-size: 28px;
            color: var(--text-main);
            margin-bottom: 6px;
        }
        .subscribe-text p {
            font-size: 15px;
            color: var(--text-secondary);
        }
        .subscribe-form {
            display: flex;
            gap: 10px;
            align-items: center;
            flex-wrap: wrap;
        }
        .subscribe-form select,
        .subscribe-form input {
            height: 48px;
            border: 1px solid var(--border);
            border-radius: var(--radius-sm);
            padding: 0 16px;
            background: #fff;
            font-size: 14px;
            color: var(--text-main);
            outline: none;
            transition: all .25s ease;
        }
        .subscribe-form select {
            width: 96px;
        }
        .subscribe-form input {
            width: 220px;
        }
        .subscribe-form select:focus,
        .subscribe-form input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(27, 75, 54, .1);
        }
        .subscribe-success {
            display: none;
            background: #fff;
            border: 1px solid rgba(27, 75, 54, .3);
            border-radius: var(--radius-sm);
            color: var(--primary);
            font-size: 14px;
            font-weight: 600;
            padding: 12px 20px;
            margin-top: 12px;
            width: 100%;
            text-align: center;
        }

        /* FAQ */
        .faq-section {
            padding: 96px 0;
            background: var(--soft-bg);
        }
        .faq-list {
            max-width: 860px;
            margin: 0 auto;
        }
        .faq-item {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius);
            margin-bottom: 12px;
            overflow: hidden;
            transition: border-color .25s ease, box-shadow .25s ease;
        }
        .faq-item.active {
            border-color: var(--primary);
            box-shadow: var(--shadow-sm);
        }
        .faq-question {
            display: flex;
            justify-content: space-between;
            align-items: center;
            width: 100%;
            padding: 18px 24px;
            background: none;
            border: none;
            font-size: 16px;
            font-weight: 600;
            color: var(--text-main);
            cursor: pointer;
            text-align: left;
            gap: 16px;
        }
        .faq-icon {
            color: var(--text-weak);
            font-size: 22px;
            font-weight: 400;
            transition: transform .3s ease, color .25s ease;
            flex-shrink: 0;
        }
        .faq-item.active .faq-icon {
            transform: rotate(45deg);
            color: var(--primary);
        }
        .faq-answer {
            max-height: 0;
            overflow: hidden;
            transition: max-height .35s ease;
        }
        .faq-item.active .faq-answer {
            max-height: 360px;
        }
        .faq-answer-inner {
            padding: 0 24px 20px;
            font-size: 15px;
            color: var(--text-secondary);
            line-height: 1.75;
        }

        /* CTA 条 */
        .cta-section {
            padding: 96px 0;
            background: var(--soft-bg);
        }
        .cta-box {
            background: var(--dark);
            border-radius: 20px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            padding: 52px 56px;
            gap: 32px;
            flex-wrap: wrap;
            position: relative;
            overflow: hidden;
        }
        .cta-box::before {
            content: '';
            position: absolute;
            top: 0;
            right: 0;
            width: 280px;
            height: 100%;
            background: radial-gradient(circle, rgba(242, 92, 5, .18) 0%, transparent 70%);
            pointer-events: none;
        }
        .cta-text {
            position: relative;
            z-index: 1;
        }
        .cta-text h2 {
            font-size: 30px;
            color: #fff;
            margin-bottom: 8px;
        }
        .cta-text p {
            font-size: 15px;
            color: rgba(255, 255, 255, .7);
        }
        .cta-box .btn {
            position: relative;
            z-index: 1;
            flex-shrink: 0;
        }

        /* Footer */
        .site-footer {
            background: var(--dark);
            color: rgba(255, 255, 255, .75);
            padding: 64px 0 40px;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.2fr 2fr;
            gap: 48px;
            margin-bottom: 48px;
        }
        .footer-logo {
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            display: inline-block;
            margin-bottom: 12px;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, .6);
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 14px;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, .6);
            margin-bottom: 8px;
            transition: color .2s ease;
        }
        .footer-col a:hover {
            color: #fff;
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 8px;
            padding-top: 28px;
            border-top: 1px solid rgba(255, 255, 255, .1);
            font-size: 13px;
            color: rgba(255, 255, 255, .45);
        }

        /* 移动端底部 Tab */
        .mobile-tabbar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            right: 0;
            height: 64px;
            background: #fff;
            border-top: 1px solid var(--border);
            box-shadow: 0 -4px 16px rgba(22, 38, 31, .05);
            z-index: 1200;
            align-items: stretch;
            justify-content: space-around;
            padding-bottom: env(safe-area-inset-bottom);
        }
        .mobile-tabbar.show {
            display: flex;
        }
        .tab-item {
            flex: 1;
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 3px;
            color: var(--text-secondary);
            font-size: 11px;
            transition: color .2s ease, transform .15s ease;
        }
        .tab-item i {
            font-size: 18px;
        }
        .tab-item:active {
            transform: scale(.94);
        }
        .tab-item.active {
            color: var(--primary);
            font-weight: 600;
        }
        .tab-item.active i {
            color: var(--primary);
        }
        .tab-item-remind {
            color: var(--accent);
        }
        .tab-item-remind i {
            font-size: 20px;
        }

        /* 响应式 */
        @media (max-width: 1200px) {
            .steps-wrap {
                grid-template-columns: repeat(2, 1fr);
            }
            .match-row {
                grid-template-columns: 100px 1fr 100px 110px;
                gap: 12px;
            }
        }
        @media (max-width: 1024px) {
            .main-nav {
                display: none;
            }
            .mobile-tabbar {
                display: flex;
            }
            body {
                padding-bottom: 80px;
            }
            .site-footer {
                padding-bottom: 32px;
            }
            .hero {
                padding: 90px 0 80px;
            }
            .hero h1 {
                font-size: 38px;
            }
            .schedule-section,
            .perks-section,
            .steps-section,
            .subscribe-section,
            .faq-section,
            .cta-section {
                padding: 72px 0;
            }
        }
        @media (max-width: 768px) {
            .header-inner {
                height: 64px;
            }
            .header-actions .btn {
                padding: 0 14px;
                font-size: 13px;
                height: 38px;
            }
            .hero {
                padding: 70px 0 64px;
            }
            .hero h1 {
                font-size: 30px;
            }
            .hero-sub {
                font-size: 15px;
            }
            .hero-stats {
                gap: 20px;
            }
            .stat-num {
                font-size: 24px;
            }
            .featured-match {
                grid-template-columns: 1fr;
            }
            .featured-cover {
                aspect-ratio: 16/9;
            }
            .featured-info {
                padding: 24px;
            }
            .featured-info h3 {
                font-size: 20px;
            }
            .count-num {
                font-size: 30px;
            }
            .count-cell {
                min-width: 46px;
            }
            .filter-bar {
                flex-direction: column;
                align-items: flex-start;
                padding: 12px 16px;
            }
            .match-row {
                grid-template-columns: 80px 1fr;
                padding: 14px 16px;
                gap: 8px 12px;
            }
            .match-date {
                grid-column: 1;
            }
            .match-info {
                grid-column: 2;
            }
            .match-status {
                grid-column: 1;
                justify-content: flex-start;
            }
            .match-action {
                grid-column: 2;
                justify-content: flex-start;
            }
            .match-title {
                white-space: normal;
            }
            .perks-grid {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .perk-item {
                padding: 24px;
            }
            .steps-wrap {
                grid-template-columns: 1fr;
                gap: 16px;
            }
            .step-item {
                padding: 24px;
            }
            .subscribe-card {
                padding: 28px 24px;
                flex-direction: column;
                align-items: stretch;
            }
            .subscribe-form select,
            .subscribe-form input {
                width: 100%;
            }
            .subscribe-form .btn {
                width: 100%;
            }
            .cta-box {
                padding: 36px 28px;
                flex-direction: column;
                align-items: flex-start;
                gap: 20px;
            }
            .cta-text h2 {
                font-size: 24px;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-links {
                grid-template-columns: repeat(3, 1fr);
                gap: 16px;
            }
            .section-head {
                margin-bottom: 28px;
            }
            .section-head h2 {
                font-size: 24px;
            }
        }
        @media (max-width: 576px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .brand-name {
                font-size: 16px;
            }
            .brand-mark {
                width: 34px;
                height: 34px;
                font-size: 15px;
            }
            .hero-actions .btn {
                width: 100%;
            }
            .hero-badge {
                font-size: 12px;
                padding: 5px 14px;
            }
            .footer-links {
                grid-template-columns: 1fr 1fr;
            }
            .footer-bottom {
                flex-direction: column;
                align-items: flex-start;
            }
            .count-grid {
                gap: 5px;
            }
            .count-num {
                font-size: 24px;
            }
            .count-cell {
                min-width: 40px;
                padding: 8px 0;
            }
        }

/* roulang page: article */
:root {
    --primary: #1B4B36;
    --primary-dark: #143B2B;
    --accent: #F25C05;
    --accent-hover: #D84E04;
    --live-red: #E6322B;
    --dark: #10251C;
    --soft-bg: #F6F5F0;
    --tint: #E6F0E9;
    --text-main: #16261F;
    --text-secondary: #4A5A52;
    --text-muted: #8A9A91;
    --border: #DCE5E0;
    --font-main: 'HarmonyOS Sans SC', 'PingFang SC', 'Microsoft YaHei UI', 'Segoe UI', sans-serif;
    --shadow-card: 0 1px 2px rgba(22,38,31,0.06), 0 4px 12px rgba(22,38,31,0.05);
    --shadow-hover: 0 8px 24px rgba(22,38,31,0.1);
    --radius-card: 12px;
    --radius-btn: 8px;
}
* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font-main);
    background: var(--soft-bg);
    color: var(--text-main);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}
img { max-width: 100%; height: auto; }
a { color: var(--primary); text-decoration: none; }
a:hover { color: var(--primary-dark); }
.container { max-width: 1320px; padding-left: 20px; padding-right: 20px; }

/* ========== Buttons ========== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    padding: 0 26px;
    border-radius: var(--radius-btn);
    border: none;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .25s;
    cursor: pointer;
    line-height: 1;
    white-space: nowrap;
}
.btn:focus-visible { outline: 3px solid rgba(27,75,54,0.35); outline-offset: 2px; }
.btn-primary {
    background: var(--primary);
    color: #fff !important;
}
.btn-primary:hover {
    background: var(--primary-dark);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
}
.btn-accent {
    background: var(--accent);
    color: #fff !important;
}
.btn-accent:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    box-shadow: var(--shadow-hover);
    color: #fff;
}
.btn-outline {
    background: transparent;
    border: 1.5px solid var(--primary);
    color: var(--primary);
}
.btn-outline:hover {
    background: var(--tint);
    color: var(--primary);
}

/* ========== Site Header ========== */
.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    background: rgba(255,255,255,0.86);
    -webkit-backdrop-filter: blur(14px);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--border);
    transition: background .3s, box-shadow .3s;
}
.site-header.scrolled {
    background: rgba(255,255,255,0.97);
    box-shadow: 0 4px 20px rgba(22,38,31,0.07);
}
.header-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 72px;
    gap: 20px;
}
.brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    flex-shrink: 0;
}
.brand-mark {
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--primary);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: 0 4px 12px rgba(27,75,54,0.2);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.2; }
.brand-name {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-main);
    letter-spacing: 0.2px;
}
.brand-sub {
    font-size: 11px;
    color: var(--text-muted);
    margin-top: 2px;
}
.main-nav { display: flex; gap: 4px; align-items: center; }
.nav-link {
    padding: 9px 16px;
    border-radius: 8px;
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: all .2s;
    position: relative;
}
.nav-link:hover {
    color: var(--primary);
    background: var(--tint);
}
.nav-link.active {
    color: var(--primary);
    font-weight: 600;
}
.nav-link.active::after {
    content: '';
    position: absolute;
    left: 14px;
    right: 14px;
    bottom: 1px;
    height: 3px;
    border-radius: 2px;
    background: var(--primary);
}
.header-actions { flex-shrink: 0; }

/* ========== Mobile Bottom Tab ========== */
.bottom-tabbar {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    height: 64px;
    background: #fff;
    border-top: 1px solid var(--border);
    z-index: 1001;
    padding-bottom: env(safe-area-inset-bottom);
    box-shadow: 0 -4px 20px rgba(22,38,31,0.06);
}
.bottom-tabbar .tab-item {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 3px;
    font-size: 11px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color .2s, transform .1s;
}
.bottom-tabbar .tab-item i { font-size: 19px; }
.bottom-tabbar .tab-item.active { color: var(--primary); font-weight: 600; }
.bottom-tabbar .tab-item:active { transform: scale(0.94); }
.tab-accent { color: var(--accent) !important; }

/* ========== Article Hero ========== */
.article-hero {
    position: relative;
    padding: 76px 0 60px;
    background: var(--dark);
    overflow: hidden;
}
.article-hero-bg {
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/backpic/back-1.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.42;
}
.article-hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(16,37,28,0.55) 0%, rgba(16,37,28,0.88) 100%);
    z-index: 1;
}
.article-hero .container { position: relative; z-index: 2; }
.breadcrumb-nav {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    font-size: 13px;
    color: rgba(255,255,255,0.65);
    margin-bottom: 20px;
}
.breadcrumb-nav a { color: rgba(255,255,255,0.82); transition: color .2s; }
.breadcrumb-nav a:hover { color: #fff; }
.breadcrumb-nav .current { color: rgba(255,255,255,0.55); max-width: 300px; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.article-title {
    font-size: 38px;
    font-weight: 700;
    color: #fff;
    line-height: 1.35;
    margin-bottom: 18px;
    max-width: 920px;
    letter-spacing: 0.2px;
}
.article-meta {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    color: rgba(255,255,255,0.82);
    font-size: 14px;
}
.article-meta .meta-item { display: inline-flex; align-items: center; gap: 6px; }
.article-meta .meta-item i { color: rgba(255,255,255,0.7); }
.article-hero .tag-badge {
    background: rgba(255,255,255,0.16);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.28);
    -webkit-backdrop-filter: blur(6px);
    backdrop-filter: blur(6px);
}

/* ========== Tag Badge ========== */
.tag-badge {
    display: inline-block;
    padding: 5px 14px;
    border-radius: 999px;
    background: var(--tint);
    color: var(--primary);
    font-size: 13px;
    font-weight: 500;
    line-height: 1.5;
}

/* ========== Article Section ========== */
.article-section { padding: 56px 0 80px; }
.article-layout { max-width: 880px; margin: 0 auto; }
.article-hero-img-wrap {
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 32px;
    box-shadow: var(--shadow-card);
}
.article-hero-img-wrap img {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: cover;
}
.article-body {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 16px;
    padding: 48px 52px;
    box-shadow: var(--shadow-card);
    font-size: 17px;
    line-height: 1.8;
    color: var(--text-main);
}
.article-body h2 {
    font-size: 26px;
    font-weight: 700;
    color: var(--primary);
    margin: 2em 0 0.8em;
    padding-bottom: 0.35em;
    border-bottom: 1px solid var(--border);
}
.article-body h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-main);
    margin: 1.6em 0 0.6em;
}
.article-body p { margin: 0 0 1.2em; }
.article-body img { max-width: 100%; border-radius: 12px; }
.article-body blockquote {
    border-left: 4px solid var(--primary);
    background: var(--tint);
    padding: 16px 20px;
    margin: 1.5em 0;
    border-radius: 0 8px 8px 0;
    color: var(--text-secondary);
}
.article-body ul,
.article-body ol { padding-left: 1.4em; margin: 0 0 1.2em; }
.article-body a { color: var(--accent); text-decoration: underline; text-underline-offset: 4px; }
.article-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid var(--border);
}
.post-pager {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    margin-top: 28px;
}

/* ========== Not Found ========== */
.not-found {
    text-align: center;
    background: #fff;
    border: 2px dashed var(--border);
    border-radius: 16px;
    padding: 84px 24px;
    box-shadow: var(--shadow-card);
}
.not-found i { font-size: 56px; color: var(--text-muted); margin-bottom: 20px; }
.not-found p { font-size: 18px; color: var(--text-secondary); margin-bottom: 24px; }

/* ========== Related Section ========== */
.related-section { padding: 96px 0; background: #fff; }
.section-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 40px;
    gap: 20px;
}
.section-head h2 {
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    margin: 0;
    line-height: 1.3;
}
.see-more {
    color: var(--primary);
    text-decoration: none;
    font-size: 15px;
    font-weight: 500;
    transition: color .2s;
    white-space: nowrap;
}
.see-more:hover { color: var(--accent); }
.news-card {
    display: block;
    background: #fff;
    border: 1px solid var(--border);
    border-radius: var(--radius-card);
    overflow: hidden;
    text-decoration: none;
    box-shadow: var(--shadow-card);
    transition: all .25s;
    height: 100%;
}
.news-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-hover);
    text-decoration: none;
}
.news-card .card-img-wrap {
    position: relative;
    aspect-ratio: 16 / 10;
    overflow: hidden;
}
.news-card .card-img-wrap img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .4s;
}
.news-card:hover .card-img-wrap img { transform: scale(1.04); }
.news-card .card-img-wrap .tag-badge {
    position: absolute;
    top: 12px;
    left: 12px;
    background: rgba(16,37,28,0.75);
    color: #fff;
    -webkit-backdrop-filter: blur(4px);
    backdrop-filter: blur(4px);
}
.news-card .card-body { padding: 20px 22px; }
.news-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-main);
    line-height: 1.5;
    margin-bottom: 10px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.news-card time { font-size: 13px; color: var(--text-muted); }

/* ========== CTA Banner ========== */
.cta-banner { background: var(--dark); padding: 60px 0; border-top: 1px solid rgba(255,255,255,0.06); }
.cta-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    flex-wrap: wrap;
}
.cta-text {
    font-size: 28px;
    font-weight: 700;
    color: #fff;
    margin: 0;
    line-height: 1.4;
}

/* ========== FAQ ========== */
.faq-section { padding: 96px 0; background: var(--soft-bg); }
.faq-section > .container > h2 {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 48px;
}
.faq-list { max-width: 880px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item {
    background: #fff;
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color .25s, box-shadow .25s;
}
.faq-item.active {
    border-color: var(--primary);
    box-shadow: var(--shadow-card);
}
.faq-question {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 22px 28px;
    cursor: pointer;
    font-size: 16px;
    font-weight: 600;
    color: var(--text-main);
    background: none;
    border: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
    transition: color .2s;
}
.faq-question:hover { color: var(--primary); }
.faq-icon {
    font-size: 18px;
    color: var(--primary);
    transition: transform .3s;
    flex-shrink: 0;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    padding: 0 28px;
    max-height: 0;
    overflow: hidden;
    transition: all .35s ease;
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.8;
}
.faq-item.active .faq-answer {
    padding: 0 28px 24px;
    max-height: 600px;
}

/* ========== Subscribe CTA ========== */
.subscribe-cta {
    padding: 96px 0 120px;
    background: var(--dark);
    position: relative;
    overflow: hidden;
}
.subscribe-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: url('/assets/images/backpic/back-3.webp');
    background-size: cover;
    background-position: center;
    opacity: 0.18;
}
.subscribe-box {
    max-width: 1120px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.14);
    border-radius: 24px;
    padding: 52px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
    flex-wrap: wrap;
}
.subscribe-text h2 {
    color: #fff;
    font-size: 30px;
    font-weight: 700;
    margin-bottom: 12px;
}
.subscribe-text p {
    color: rgba(255,255,255,0.72);
    font-size: 15px;
    line-height: 1.8;
    margin: 0;
}
.subscribe-form-wrap { flex: 1; min-width: 340px; max-width: 620px; }
.subscribe-form { display: flex; gap: 12px; flex-wrap: wrap; }
.subscribe-form select,
.subscribe-form input {
    height: 48px;
    border-radius: 8px;
    border: none;
    padding: 0 16px;
    font-size: 14px;
    font-family: inherit;
    background: #fff;
    color: var(--text-main);
    outline: none;
    transition: box-shadow .2s;
}
.subscribe-form select { width: 130px; }
.subscribe-form input { flex: 1; min-width: 180px; }
.subscribe-form select:focus,
.subscribe-form input:focus {
    box-shadow: 0 0 0 4px rgba(242,92,5,0.3);
}
.subscribe-success {
    display: none;
    align-items: center;
    gap: 8px;
    margin-top: 16px;
    padding: 12px 18px;
    border-radius: 8px;
    background: var(--tint);
    color: var(--primary);
    font-size: 14px;
    font-weight: 500;
}
.subscribe-success.show { display: inline-flex; }

/* ========== Footer ========== */
.site-footer {
    background: var(--dark);
    color: rgba(255,255,255,0.75);
    padding: 72px 0 48px;
}
.footer-top {
    display: flex;
    justify-content: space-between;
    gap: 48px;
    flex-wrap: wrap;
    padding-bottom: 48px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}
.footer-brand { max-width: 320px; }
.footer-logo {
    font-size: 24px;
    font-weight: 700;
    color: #fff;
    display: block;
    margin-bottom: 12px;
}
.footer-brand p {
    font-size: 14px;
    line-height: 1.8;
    color: rgba(255,255,255,0.55);
    margin: 0;
}
.footer-links {
    display: flex;
    gap: 60px;
    flex-wrap: wrap;
}
.footer-col { display: flex; flex-direction: column; gap: 12px; }
.footer-col h4 {
    font-size: 15px;
    color: #fff;
    margin-bottom: 8px;
    font-weight: 600;
}
.footer-col a {
    color: rgba(255,255,255,0.55);
    font-size: 14px;
    text-decoration: none;
    transition: color .2s;
}
.footer-col a:hover { color: #fff; }
.footer-bottom {
    display: flex;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    padding-top: 24px;
    font-size: 13px;
    color: rgba(255,255,255,0.4);
}

/* ========== Back to Top ========== */
.back-top-btn {
    position: fixed;
    right: 24px;
    bottom: 84px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--primary);
    border: none;
    color: #fff;
    font-size: 16px;
    box-shadow: 0 6px 18px rgba(22,38,31,0.22);
    opacity: 0;
    transform: translateY(12px);
    pointer-events: none;
    transition: all .3s;
    z-index: 998;
    cursor: pointer;
}
.back-top-btn.show {
    opacity: 1;
    transform: translateY(0);
    pointer-events: auto;
}
.back-top-btn:hover { background: var(--primary-dark); }

/* ========== Responsive ========== */
@media (max-width: 991px) {
    .main-nav { display: none; }
    .bottom-tabbar { display: flex; }
    body { padding-bottom: 80px; }
    .article-hero { padding: 56px 0 44px; }
    .article-title { font-size: 30px; }
    .article-body { padding: 36px 28px; }
    .related-section,
    .faq-section,
    .subscribe-cta { padding: 72px 0; }
    .subscribe-box { padding: 40px 28px; }
    .cta-text { font-size: 24px; }
}
@media (max-width: 767px) {
    .section-head h2,
    .faq-section > .container > h2 { font-size: 26px; }
    .article-body { padding: 28px 20px; font-size: 16px; }
    .article-meta { gap: 12px; }
    .footer-links { gap: 40px; }
    .footer-top { flex-direction: column; gap: 36px; }
}
@media (max-width: 575px) {
    .article-section { padding: 40px 0 64px; }
    .article-title { font-size: 24px; }
    .breadcrumb-nav { font-size: 12px; }
    .article-body { border-radius: 12px; }
    .news-card h3 { font-size: 17px; }
    .cta-inner { flex-direction: column; align-items: flex-start; }
    .cta-text { font-size: 22px; }
    .subscribe-form-wrap { min-width: 100%; }
    .subscribe-form select { width: 100%; }
    .subscribe-form input { min-width: 100%; }
    .subscribe-form .btn { width: 100%; }
}

/* roulang page: category2 */
/* ===== 设计变量 ===== */
        :root {
            --primary: #1B4B36;
            --primary-dark: #143B2B;
            --primary-rgb: 27, 75, 54;
            --accent: #F25C05;
            --accent-hover: #D84E04;
            --live-red: #E6322B;
            --dark-bg: #10251C;
            --soft-bg: #F6F5F0;
            --tint: #E6F0E9;
            --text-main: #16261F;
            --text-sub: #4A5A52;
            --text-muted: #8A9A91;
            --border: #DCE5E0;
            --radius-card: 12px;
            --radius-btn: 8px;
            --shadow-card: 0 1px 2px rgba(22, 38, 31, 0.06), 0 4px 12px rgba(22, 38, 31, 0.05);
            --shadow-hover: 0 8px 24px rgba(22, 38, 31, 0.1);
            --font-cn: "HarmonyOS Sans SC", "PingFang SC", "Microsoft YaHei UI", "Helvetica Neue", Arial, sans-serif;
        }

        /* ===== Reset & Base ===== */
        *,
        *::before,
        *::after {
            box-sizing: border-box;
            margin: 0;
            padding: 0;
        }
        html {
            scroll-behavior: smooth;
            scroll-padding-top: 90px;
        }
        body {
            font-family: var(--font-cn);
            font-size: 16px;
            line-height: 1.75;
            color: var(--text-main);
            background: var(--soft-bg);
            -webkit-font-smoothing: antialiased;
        }
        a {
            color: var(--primary);
            text-decoration: none;
            transition: color 0.2s ease;
        }
        a:hover {
            color: var(--accent);
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        button {
            font-family: inherit;
        }
        .container {
            max-width: 1320px;
            padding-left: 20px;
            padding-right: 20px;
        }

        /* ===== 顶部导航 ===== */
        .site-header {
            position: sticky;
            top: 0;
            z-index: 1000;
            background: rgba(246, 245, 240, 0.92);
            -webkit-backdrop-filter: blur(10px);
            backdrop-filter: blur(10px);
            border-bottom: 1px solid var(--border);
            transition: background 0.3s ease, box-shadow 0.3s ease;
        }
        .site-header.scrolled {
            background: rgba(255, 255, 255, 0.97);
            box-shadow: 0 6px 24px rgba(22, 38, 31, 0.08);
        }
        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            min-height: 72px;
            gap: 20px;
        }
        .brand {
            display: flex;
            align-items: center;
            gap: 10px;
            flex-shrink: 0;
        }
        .brand-mark {
            width: 40px;
            height: 40px;
            background: var(--primary);
            border-radius: 10px;
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: #fff;
            font-size: 18px;
            box-shadow: 0 2px 8px rgba(27, 75, 54, 0.3);
        }
        .brand-text {
            display: flex;
            flex-direction: column;
            line-height: 1.2;
        }
        .brand-name {
            font-size: 20px;
            font-weight: 700;
            color: var(--primary);
            letter-spacing: 0.02em;
        }
        .brand-sub {
            font-size: 11px;
            color: var(--text-muted);
            letter-spacing: 0.08em;
        }
        .main-nav {
            display: flex;
            align-items: center;
            gap: 28px;
            margin-left: auto;
            margin-right: 20px;
        }
        .main-nav .nav-link {
            position: relative;
            font-size: 15px;
            font-weight: 500;
            color: var(--text-main);
            padding: 28px 0 24px;
            white-space: nowrap;
            transition: color 0.2s ease;
        }
        .main-nav .nav-link::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: 16px;
            width: 100%;
            height: 3px;
            border-radius: 99px;
            background: var(--accent);
            transform: scaleX(0);
            transform-origin: left;
            transition: transform 0.25s ease;
        }
        .main-nav .nav-link:hover {
            color: var(--primary);
        }
        .main-nav .nav-link:hover::after,
        .main-nav .nav-link.active::after {
            transform: scaleX(1);
        }
        .main-nav .nav-link.active {
            color: var(--primary);
            font-weight: 600;
        }
        .header-actions {
            display: flex;
            align-items: center;
            gap: 12px;
            flex-shrink: 0;
        }
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            border-radius: var(--radius-btn);
            font-weight: 600;
            font-size: 15px;
            line-height: 1;
            padding: 14px 22px;
            border: 0;
            transition: all 0.25s ease;
            cursor: pointer;
            min-height: 44px;
            text-decoration: none;
            letter-spacing: 0.01em;
        }
        .btn-primary {
            background: var(--primary);
            color: #fff;
            box-shadow: 0 4px 12px rgba(27, 75, 54, 0.2);
        }
        .btn-primary:hover {
            background: var(--primary-dark);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(27, 75, 54, 0.3);
        }
        .btn-outline {
            background: transparent;
            color: var(--primary);
            border: 1.5px solid var(--primary);
        }
        .btn-outline:hover {
            background: var(--tint);
            color: var(--primary-dark);
            transform: translateY(-2px);
        }
        .btn-accent {
            background: var(--accent);
            color: #fff;
            box-shadow: 0 4px 14px rgba(242, 92, 5, 0.25);
        }
        .btn-accent:hover {
            background: var(--accent-hover);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 8px 22px rgba(242, 92, 5, 0.3);
        }
        .btn-sm {
            padding: 10px 18px;
            font-size: 14px;
            min-height: 40px;
        }
        .btn:focus-visible {
            outline: 2px solid rgba(27, 75, 54, 0.7);
            outline-offset: 2px;
        }

        /* ===== 页面 Banner ===== */
        .page-banner {
            position: relative;
            padding: 96px 0 80px;
            background: linear-gradient(135deg, var(--dark-bg) 0%, #1A3329 60%, #204031 100%);
            overflow: hidden;
            color: #fff;
        }
        .page-banner::before {
            content: "";
            position: absolute;
            inset: 0;
            background: url('/assets/images/backpic/back-3.webp') center/cover no-repeat;
            opacity: 0.3;
        }
        .page-banner::after {
            content: "";
            position: absolute;
            inset: 0;
            background: linear-gradient(90deg, rgba(16, 37, 28, 0.92) 0%, rgba(16, 37, 28, 0.6) 60%, rgba(16, 37, 28, 0.4) 100%);
        }
        .page-banner .container {
            position: relative;
            z-index: 2;
        }
        .banner-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(255, 255, 255, 0.12);
            border: 1px solid rgba(255, 255, 255, 0.2);
            border-radius: 99px;
            padding: 6px 16px;
            font-size: 13px;
            letter-spacing: 0.05em;
            color: #e8f0ea;
            margin-bottom: 20px;
            -webkit-backdrop-filter: blur(4px);
            backdrop-filter: blur(4px);
        }
        .banner-badge i {
            color: var(--accent);
        }
        .page-banner h1 {
            font-size: 48px;
            font-weight: 700;
            line-height: 1.2;
            letter-spacing: 0.02em;
            margin-bottom: 16px;
            max-width: 720px;
            color: #fff;
        }
        .page-banner .banner-desc {
            font-size: 17px;
            line-height: 1.75;
            color: rgba(255, 255, 255, 0.82);
            max-width: 620px;
            margin-bottom: 28px;
        }
        .banner-meta {
            display: flex;
            flex-wrap: wrap;
            gap: 28px;
            margin-top: 8px;
        }
        .banner-meta .meta-item {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.78);
        }
        .banner-meta .meta-item i {
            width: 32px;
            height: 32px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.12);
            display: inline-flex;
            align-items: center;
            justify-content: center;
            color: var(--accent);
            font-size: 14px;
        }

        /* ===== 通用板块 ===== */
        .section {
            padding: 96px 0;
        }
        .section-sm {
            padding: 64px 0;
        }
        .section-head {
            display: flex;
            align-items: flex-end;
            justify-content: space-between;
            gap: 20px;
            margin-bottom: 40px;
        }
        .section-head h2 {
            font-size: 32px;
            font-weight: 700;
            color: var(--text-main);
            letter-spacing: 0.02em;
            line-height: 1.3;
            margin: 0;
        }
        .section-head h2 span {
            color: var(--accent);
        }
        .section-head .sub-text {
            font-size: 15px;
            color: var(--text-sub);
            margin-top: 6px;
        }
        .section-link {
            flex-shrink: 0;
            font-size: 14px;
            font-weight: 600;
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 8px 16px;
            border: 1px solid var(--border);
            border-radius: 99px;
            background: #fff;
            color: var(--primary);
            transition: all 0.2s ease;
        }
        .section-link:hover {
            background: var(--tint);
            border-color: var(--primary);
            color: var(--primary-dark);
        }

        /* ===== 精选资讯区 ===== */
        .featured-section {
            padding-top: 80px;
        }
        .featured-grid {
            display: grid;
            grid-template-columns: 2fr 1fr;
            gap: 24px;
        }
        .featured-main {
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            min-height: 460px;
            display: flex;
            align-items: flex-end;
            background: #fff;
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease;
        }
        .featured-main:hover {
            box-shadow: var(--shadow-hover);
        }
        .featured-main .featured-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .featured-main:hover .featured-img {
            transform: scale(1.03);
        }
        .featured-main .featured-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 40%, rgba(16, 37, 28, 0.88) 100%);
        }
        .featured-main .featured-content {
            position: relative;
            z-index: 2;
            padding: 40px 36px;
            color: #fff;
        }
        .featured-main .tag {
            background: var(--accent);
            color: #fff;
            font-size: 12px;
            font-weight: 600;
            padding: 4px 12px;
            border-radius: 99px;
            display: inline-block;
            margin-bottom: 14px;
            letter-spacing: 0.04em;
        }
        .featured-main h3 {
            font-size: 28px;
            font-weight: 700;
            margin-bottom: 12px;
            line-height: 1.35;
            color: #fff;
        }
        .featured-main p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.8);
            margin-bottom: 16px;
            max-width: 540px;
        }
        .featured-main .meta-line {
            font-size: 13px;
            color: rgba(255, 255, 255, 0.6);
            display: flex;
            align-items: center;
            gap: 16px;
        }
        .featured-side {
            display: flex;
            flex-direction: column;
            gap: 24px;
        }
        .featured-side-card {
            flex: 1;
            position: relative;
            border-radius: var(--radius-card);
            overflow: hidden;
            display: flex;
            align-items: flex-end;
            min-height: 218px;
            background: #fff;
            box-shadow: var(--shadow-card);
            transition: box-shadow 0.3s ease, transform 0.3s ease;
        }
        .featured-side-card:hover {
            box-shadow: var(--shadow-hover);
            transform: translateY(-2px);
        }
        .featured-side-card .featured-img {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }
        .featured-side-card:hover .featured-img {
            transform: scale(1.04);
        }
        .featured-side-card .featured-overlay {
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 30%, rgba(16, 37, 28, 0.88) 100%);
        }
        .featured-side-card .featured-content {
            position: relative;
            z-index: 2;
            padding: 20px 22px;
            color: #fff;
            width: 100%;
        }
        .featured-side-card .tag {
            background: rgba(242, 92, 5, 0.9);
            color: #fff;
            font-size: 11px;
            padding: 3px 10px;
            border-radius: 99px;
            display: inline-block;
            margin-bottom: 8px;
        }
        .featured-side-card h3 {
            font-size: 18px;
            font-weight: 600;
            line-height: 1.4;
            margin-bottom: 6px;
            color: #fff;
        }
        .featured-side-card .meta-line {
            font-size: 12px;
            color: rgba(255, 255, 255, 0.65);
        }

        /* ===== 文章列表 + 侧栏 ===== */
        .news-layout {
            display: grid;
            grid-template-columns: 1fr 360px;
            gap: 48px;
            align-items: start;
        }
        .news-list-item {
            display: flex;
            gap: 20px;
            padding: 24px 0;
            border-bottom: 1px solid var(--border);
            background: transparent;
            transition: background 0.25s ease;
            border-radius: 8px;
            padding-left: 8px;
            padding-right: 8px;
        }
        .news-list-item:hover {
            background: var(--tint);
        }
        .news-list-item .news-thumb {
            flex-shrink: 0;
            width: 220px;
            height: 132px;
            border-radius: 10px;
            overflow: hidden;
            background: var(--border);
        }
        .news-list-item .news-thumb img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.4s ease;
        }
        .news-list-item:hover .news-thumb img {
            transform: scale(1.04);
        }
        .news-list-item .news-info {
            flex: 1;
            min-width: 0;
        }
        .news-list-item .tag-group {
            display: flex;
            gap: 8px;
            margin-bottom: 8px;
            flex-wrap: wrap;
        }
        .tag {
            display: inline-flex;
            align-items: center;
            background: var(--tint);
            color: var(--primary);
            font-size: 12px;
            font-weight: 600;
            padding: 3px 12px;
            border-radius: 99px;
            letter-spacing: 0.03em;
            white-space: nowrap;
        }
        .tag-hot {
            background: rgba(242, 92, 5, 0.12);
            color: var(--accent);
        }
        .news-list-item h3 {
            font-size: 20px;
            font-weight: 600;
            line-height: 1.45;
            margin-bottom: 8px;
            color: var(--text-main);
        }
        .news-list-item h3 a {
            color: inherit;
        }
        .news-list-item h3 a:hover {
            color: var(--accent);
        }
        .news-list-item .news-excerpt {
            font-size: 14px;
            color: var(--text-sub);
            line-height: 1.7;
            margin-bottom: 12px;
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
        }
        .news-list-item .news-meta-line {
            display: flex;
            align-items: center;
            gap: 16px;
            font-size: 13px;
            color: var(--text-muted);
        }
        .news-list-item .news-meta-line i {
            margin-right: 4px;
            font-size: 12px;
        }

        /* ===== 侧边栏 ===== */
        .sidebar {
            position: sticky;
            top: 96px;
            display: flex;
            flex-direction: column;
            gap: 32px;
        }
        .sidebar-card {
            background: #fff;
            border: 1px solid var(--border);
            border-radius: var(--radius-card);
            padding: 28px;
            box-shadow: var(--shadow-card);
        }
        .sidebar-card h3 {
            font-size: 18px;
            font-weight: 700;
            color: var(--text-main);
            margin-bottom: 20px;
            padding-bottom: 14px;
            border-bottom: 2px solid var(--tint);
            position: relative;
        }
        .sidebar-card h3::after {
            content: "";
            position: absolute;
            left: 0;
            bottom: -2px;
            width: 36px;
            height: 2px;
            background: var(--accent);
        }
        .hot-list {
            list-style: none;
            margin: 0;
            padding: 0;
        }
        .hot-list li {
            display: flex;
            align-items: flex-start;
            gap: 14px;
            padding: 12px 0;
            border-bottom: 1px solid var(--border);
        }
        .hot-list li:last-child {
            border-bottom: none;
        }
        .hot-list .num {
            flex-shrink: 0;
            width: 26px;
            height: 26px;
            border-radius: 6px;
            background: var(--tint);
            color: var(--primary);
            font-size: 13px;
            font-weight: 700;
            display: inline-flex;
            align-items: center;
            justify-content: center;
        }
        .hot-list li:nth-child(1) .num {
            background: var(--accent);
            color: #fff;
        }
        .hot-list li:nth-child(2) .num {
            background: rgba(242, 92, 5, 0.7);
            color: #fff;
        }
        .hot-list .hot-info {
            min-width: 0;
        }
        .hot-list .hot-title {
            font-size: 14px;
            font-weight: 500;
            line-height: 1.5;
            color: var(--text-main);
            display: -webkit-box;
            -webkit-line-clamp: 2;
            -webkit-box-orient: vertical;
            overflow: hidden;
            transition: color 0.2s ease;
        }
        .hot-list .hot-title:hover {
            color: var(--accent);
        }
        .hot-list .hot-meta {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
        }
        .tag-cloud {
            display: flex;
            flex-wrap: wrap;
            gap: 8px;
        }
        .tag-cloud a {
            font-size: 13px;
            color: var(--text-sub);
            background: var(--soft-bg);
            border: 1px solid var(--border);
            padding: 6px 14px;
            border-radius: 99px;
            transition: all 0.2s ease;
        }
        .tag-cloud a:hover {
            background: var(--primary);
            color: #fff;
            border-color: var(--primary);
        }
        .subscribe-card {
            background: var(--tint);
            border: none;
            border-radius: var(--radius-card);
            padding: 28px;
        }
        .subscribe-card h4 {
            font-size: 18px;
            font-weight: 700;
            color: var(--primary);
            margin-bottom: 8px;
        }
        .subscribe-card p {
            font-size: 14px;
            color: var(--text-sub);
            margin-bottom: 16px;
        }
        .subscribe-card .subscribe-input {
            width: 100%;
            border: 1px solid var(--border);
            border-radius: var(--radius-btn);
            padding: 12px 14px;
            font-size: 14px;
            background: #fff;
            color: var(--text-main);
            outline: none;
            transition: border-color 0.2s ease, box-shadow 0.2s ease;
            margin-bottom: 10px;
        }
        .subscribe-card .subscribe-input:focus {
            border-color: var(--primary);
            box-shadow: 0 0 0 4px rgba(27, 75, 54, 0.12);
        }

        /* ===== 分页器 ===== */
        .pagination-wrap {
            padding-top: 48px;
            display: flex;
            justify-content: center;
        }
        .pagination {
            gap: 8px;
            flex-wrap: wrap;
            justify-content: center;
        }
        .pagination .page-link {
            border: 1px solid var(--border);
            border-radius: var(--radius-btn) !important;
            color: var(--text-sub);
            font-size: 14px;
            font-weight: 500;
            padding: 10px 16px;
            background: #fff;
            transition: all 0.2s ease;
            min-width: 44px;
            text-align: center;
        }
        .pagination .page-link:hover {
            background: var(--tint);
            color: var(--primary);
            border-color: var(--primary);
        }
        .pagination .page-item.active .page-link {
            background: var(--primary);
            border-color: var(--primary);
            color: #fff;
            box-shadow: 0 4px 10px rgba(27, 75, 54, 0.2);
        }
        .pagination .page-item.disabled .page-link {
            color: var(--text-muted);
            background: var(--soft-bg);
        }

        /* ===== CTA 区块 ===== */
        .cta-section {
            background: var(--dark-bg);
            padding: 72px 0;
            color: #fff;
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: "";
            position: absolute;
            width: 360px;
            height: 360px;
            border-radius: 50%;
            background: rgba(27, 75, 54, 0.4);
            right: -80px;
            top: -80px;
        }
        .cta-section::after {
            content: "";
            position: absolute;
            width: 200px;
            height: 200px;
            border-radius: 50%;
            background: rgba(242, 92, 5, 0.15);
            left: 10%;
            bottom: -60px;
        }
        .cta-inner {
            position: relative;
            z-index: 2;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
        }
        .cta-inner h2 {
            font-size: 30px;
            font-weight: 700;
            margin-bottom: 8px;
            color: #fff;
        }
        .cta-inner p {
            font-size: 15px;
            color: rgba(255, 255, 255, 0.7);
            margin: 0;
        }
        .cta-actions {
            display: flex;
            gap: 14px;
            flex-shrink: 0;
        }

        /* ===== 页脚 ===== */
        .site-footer {
            background: var(--dark-bg);
            color: rgba(255, 255, 255, 0.7);
            padding: 64px 0 32px;
        }
        .footer-top {
            display: grid;
            grid-template-columns: 1.4fr 2fr;
            gap: 48px;
            padding-bottom: 40px;
            border-bottom: 1px solid rgba(255, 255, 255, 0.1);
        }
        .footer-brand .footer-logo {
            font-size: 22px;
            font-weight: 700;
            color: #fff;
            letter-spacing: 0.02em;
        }
        .footer-brand p {
            font-size: 14px;
            line-height: 1.7;
            color: rgba(255, 255, 255, 0.55);
            margin-top: 14px;
        }
        .footer-links {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 32px;
        }
        .footer-col h4 {
            font-size: 15px;
            font-weight: 600;
            color: #fff;
            margin-bottom: 16px;
        }
        .footer-col a {
            display: block;
            font-size: 14px;
            color: rgba(255, 255, 255, 0.6);
            padding: 6px 0;
            transition: color 0.2s ease;
        }
        .footer-col a:hover {
            color: var(--accent);
        }
        .footer-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
            padding-top: 28px;
            font-size: 13px;
            color: rgba(255, 255, 255, 0.45);
            flex-wrap: wrap;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 1199.98px) {
            .featured-grid {
                grid-template-columns: 1.6fr 1fr;
            }
            .featured-main {
                min-height: 420px;
            }
        }
        @media (max-width: 1023.98px) {
            .section {
                padding: 72px 0;
            }
            .featured-grid {
                grid-template-columns: 1fr;
            }
            .featured-side {
                flex-direction: row;
            }
            .featured-side-card {
                min-height: 200px;
            }
            .featured-side-card h3 {
                font-size: 16px;
            }
            .news-layout {
                grid-template-columns: 1fr;
            }
            .sidebar {
                position: static;
                flex-direction: row;
                flex-wrap: wrap;
                gap: 20px;
            }
            .sidebar-card {
                flex: 1;
                min-width: 280px;
            }
            .main-nav {
                gap: 18px;
            }
        }
        @media (max-width: 767.98px) {
            .section {
                padding: 56px 0;
            }
            .page-banner {
                padding: 64px 0 52px;
            }
            .page-banner h1 {
                font-size: 32px;
            }
            .page-banner .banner-desc {
                font-size: 15px;
            }
            .section-head {
                flex-direction: column;
                align-items: flex-start;
                margin-bottom: 30px;
            }
            .section-head h2 {
                font-size: 26px;
            }
            .featured-section {
                padding-top: 48px;
            }
            .featured-main {
                min-height: 340px;
            }
            .featured-main .featured-content {
                padding: 24px 20px;
            }
            .featured-main h3 {
                font-size: 22px;
            }
            .featured-side {
                flex-direction: column;
            }
            .news-list-item {
                flex-direction: column;
                padding: 20px 0;
            }
            .news-list-item .news-thumb {
                width: 100%;
                height: 190px;
            }
            .footer-top {
                grid-template-columns: 1fr;
                gap: 32px;
            }
            .footer-links {
                grid-template-columns: 1fr 1fr;
                gap: 24px;
            }
            .cta-inner {
                flex-direction: column;
                align-items: flex-start;
                gap: 24px;
            }
            .cta-actions {
                width: 100%;
                flex-direction: column;
            }
            .cta-actions .btn {
                width: 100%;
            }
            .header-actions {
                display: none;
            }
            .header-inner {
                min-height: 64px;
            }
            .brand-name {
                font-size: 18px;
            }
            .brand-mark {
                width: 36px;
                height: 36px;
                font-size: 16px;
            }
            .main-nav {
                gap: 14px;
                margin: 0;
            }
            .main-nav .nav-link {
                font-size: 14px;
                padding: 20px 0 16px;
            }
            .page-banner .banner-meta {
                gap: 14px;
            }
            .page-banner .banner-meta .meta-item {
                font-size: 13px;
            }
        }
        @media (max-width: 575.98px) {
            .container {
                padding-left: 16px;
                padding-right: 16px;
            }
            .brand-sub {
                display: none;
            }
            .main-nav {
                gap: 10px;
                overflow-x: auto;
                -webkit-overflow-scrolling: touch;
            }
            .main-nav .nav-link {
                font-size: 13px;
                white-space: nowrap;
            }
            .news-list-item .news-thumb {
                height: 160px;
            }
            .sidebar-card {
                min-width: 100%;
            }
            .footer-links {
                grid-template-columns: 1fr;
                gap: 20px;
            }
            .footer-bottom {
                flex-direction: column;
                text-align: center;
            }
        }
