* {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #fdf4e3;
            color: #78350f;
            line-height: 1.7;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: opacity .3s;
        }
        a:hover {
            opacity: .8;
        }
        img {
            max-width: 100%;
            height: auto;
            display: block;
            border-radius: 12px;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }

        /* ===== 导航 ===== */
        header {
            background: linear-gradient(135deg, #d97706, #78350f);
            padding: 14px 0;
            box-shadow: 0 4px 20px rgba(120, 53, 15, .3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 18px;
            align-items: center;
            justify-content: center;
        }
        .nav-links a {
            color: #fef3c7;
            font-weight: 600;
            padding: 6px 14px;
            border-radius: 30px;
            font-size: 15px;
            background: rgba(255, 255, 255, .08);
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, .18);
        }

        /* ===== Hero / H1 ===== */
        .hero {
            text-align: center;
            padding: 60px 20px 20px;
            background: linear-gradient(180deg, #fdf4e3, #fbe7c6);
        }
        .hero h1 {
            font-size: 42px;
            font-weight: 800;
            line-height: 1.3;
            color: #78350f;
            margin-bottom: 24px;
        }
        .hero .geo-intro {
            max-width: 900px;
            margin: 0 auto;
            font-size: 16px;
            color: #78350f;
            background: rgba(255, 255, 255, .6);
            padding: 24px 32px;
            border-radius: 20px;
            border-left: 5px solid #d97706;
            text-align: left;
            box-shadow: 0 8px 30px rgba(217, 119, 6, .1);
        }
        .hero .geo-intro img {
            float: right;
            width: 160px;
            margin-left: 20px;
            border-radius: 14px;
        }

        /* ===== 通用section ===== */
        .section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 32px;
            font-weight: 800;
            text-align: center;
            color: #78350f;
            margin-bottom: 40px;
            position: relative;
        }
        .section-title::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #d97706, #f59e0b);
            margin: 12px auto 0;
            border-radius: 4px;
        }

        /* ===== 数据统计 ===== */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 24px;
            padding: 20px 0;
        }
        .stat-card {
            background: linear-gradient(145deg, #fff9ed, #fbe7c6);
            border-radius: 20px;
            text-align: center;
            padding: 32px 16px;
            box-shadow: 0 6px 24px rgba(120, 53, 15, .08);
            border: 1px solid rgba(217, 119, 6, .15);
        }
        .stat-card .num {
            font-size: 44px;
            font-weight: 900;
            color: #d97706;
        }
        .stat-card .label {
            font-size: 15px;
            color: #78350f;
            margin-top: 8px;
        }

        /* ===== 核心优势 ===== */
        .features-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 28px;
        }
        .feature-card {
            background: #fff;
            border-radius: 18px;
            padding: 30px 24px;
            box-shadow: 0 4px 20px rgba(120, 53, 15, .08);
            border-top: 4px solid #d97706;
            text-align: center;
        }
        .feature-card img {
            width: 70px;
            height: 70px;
            margin: 0 auto 16px;
            object-fit: contain;
        }
        .feature-card h3 {
            font-size: 20px;
            color: #78350f;
            margin-bottom: 10px;
        }
        .feature-card p {
            font-size: 14px;
            color: #92684b;
            line-height: 1.7;
        }

        /* ===== 品牌故事 ===== */
        .story-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 32px;
            align-items: center;
            background: linear-gradient(135deg, #fff9ed, #fdf0da);
            border-radius: 24px;
            padding: 40px;
        }
        .story-wrap .text {
            flex: 1;
            min-width: 280px;
        }
        .story-wrap .text h3 {
            font-size: 24px;
            color: #78350f;
            margin-bottom: 16px;
        }
        .story-wrap .text p {
            font-size: 15px;
            color: #78350f;
        }
        .story-wrap .img-wrap {
            flex: 1;
            min-width: 240px;
            text-align: center;
        }
        .story-wrap .img-wrap img {
            max-width: 300px;
            margin: 0 auto;
            border-radius: 18px;
            box-shadow: 0 10px 30px rgba(120, 53, 15, .2);
        }

        /* ===== 荣誉时间线 ===== */
        .timeline {
            position: relative;
            max-width: 800px;
            margin: 0 auto;
            padding: 20px 0;
        }
        .timeline::before {
            content: "";
            position: absolute;
            left: 24px;
            top: 0;
            bottom: 0;
            width: 4px;
            background: linear-gradient(180deg, #d97706, #f59e0b);
            border-radius: 4px;
        }
        .timeline-item {
            position: relative;
            padding-left: 70px;
            margin-bottom: 36px;
        }
        .timeline-item::before {
            content: "";
            position: absolute;
            left: 14px;
            top: 6px;
            width: 24px;
            height: 24px;
            background: #d97706;
            border-radius: 50%;
            border: 4px solid #fbe7c6;
            box-shadow: 0 0 0 3px #d97706;
        }
        .timeline-item h4 {
            font-size: 20px;
            color: #78350f;
        }
        .timeline-item p {
            font-size: 14px;
            color: #92684b;
        }

        /* ===== 焦点赛事 ===== */
        .events-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .event-card {
            background: #fff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 6px 24px rgba(120, 53, 15, .1);
            transition: transform .3s;
        }
        .event-card:hover {
            transform: translateY(-4px);
        }
        .event-card img {
            height: 180px;
            width: 100%;
            object-fit: cover;
        }
        .event-card .body {
            padding: 20px;
        }
        .event-card .tag {
            display: inline-block;
            background: #d97706;
            color: #fff;
            font-size: 12px;
            padding: 2px 12px;
            border-radius: 20px;
            margin-bottom: 8px;
        }
        .event-card h3 {
            font-size: 19px;
            color: #78350f;
        }
        .event-card p {
            font-size: 13px;
            color: #92684b;
            margin-top: 6px;
        }

        /* ===== 新闻 ===== */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
            gap: 28px;
        }
        .news-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 18px rgba(120, 53, 15, .08);
            border-bottom: 3px solid #d97706;
            display: flex;
            flex-direction: column;
        }
        .news-date {
            font-size: 13px;
            color: #d97706;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .news-card h3 {
            font-size: 18px;
            color: #78350f;
            line-height: 1.4;
            margin-bottom: 10px;
        }
        .news-card p {
            font-size: 14px;
            color: #92684b;
            flex: 1;
        }
        .news-card a {
            font-size: 13px;
            color: #d97706;
            font-weight: 600;
            margin-top: 12px;
        }

        /* ===== FAQ ===== */
        .faq-wrap {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            background: #fff;
            border-radius: 14px;
            margin-bottom: 16px;
            box-shadow: 0 3px 12px rgba(120, 53, 15, .06);
            overflow: hidden;
        }
        .faq-item summary {
            padding: 18px 22px;
            font-size: 17px;
            font-weight: 700;
            color: #78350f;
            cursor: pointer;
            list-style: none;
            display: flex;
            justify-content: space-between;
            align-items: center;
            background: #fff9ed;
        }
        .faq-item summary::after {
            content: "＋";
            font-size: 22px;
            color: #d97706;
        }
        .faq-item[open] summary::after {
            content: "−";
        }
        .faq-item .answer {
            padding: 18px 22px;
            font-size: 14px;
            color: #92684b;
            line-height: 1.8;
            border-top: 1px solid #fdf0da;
        }

        /* ===== 口碑 ===== */
        .reviews-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 24px;
        }
        .review-card {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            box-shadow: 0 4px 16px rgba(120, 53, 15, .08);
            position: relative;
        }
        .review-card .quote {
            font-size: 42px;
            color: #d97706;
            position: absolute;
            top: 8px;
            left: 16px;
            font-family: Georgia, serif;
        }
        .review-card p {
            font-size: 14px;
            color: #78350f;
            margin-top: 20px;
        }
        .review-card .user {
            font-size: 13px;
            color: #d97706;
            font-weight: 700;
            margin-top: 12px;
            display: block;
        }

        /* ===== 合作伙伴 ===== */
        .partner-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            align-items: center;
        }
        .partner-grid img {
            width: 110px;
            height: 70px;
            object-fit: contain;
            filter: grayscale(.3);
            opacity: .7;
            transition: all .3s;
        }
        .partner-grid img:hover {
            filter: none;
            opacity: 1;
        }

        /* ===== 下载 ===== */
        .download-wrap {
            display: flex;
            flex-wrap: wrap;
            gap: 40px;
            align-items: center;
            background: linear-gradient(135deg, #78350f, #d97706);
            border-radius: 28px;
            padding: 48px;
            color: #fef3c7;
        }
        .download-wrap .info {
            flex: 1;
            min-width: 260px;
        }
        .download-wrap h3 {
            font-size: 28px;
            margin-bottom: 12px;
        }
        .download-wrap p {
            font-size: 15px;
            opacity: .9;
            margin-bottom: 20px;
        }
        .download-wrap .btn-group {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .download-wrap .btn {
            background: #fef3c7;
            color: #78350f;
            padding: 12px 24px;
            border-radius: 30px;
            font-weight: 700;
            font-size: 14px;
        }
        .download-wrap .img-box img {
            width: 240px;
            border-radius: 18px;
            box-shadow: 0 10px 40px rgba(0, 0, 0, .3);
        }

        /* ===== 页脚 ===== */
        footer {
            background: #3b1a06;
            color: #fbe7c6;
            padding: 48px 20px 24px;
            margin-top: 60px;
        }
        .footer-content {
            display: flex;
            flex-wrap: wrap;
            gap: 30px;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
        }
        .footer-col {
            flex: 1;
            min-width: 200px;
        }
        .footer-col h4 {
            font-size: 18px;
            margin-bottom: 12px;
            color: #f59e0b;
        }
        .footer-col p,
        .footer-col a {
            font-size: 14px;
            line-height: 2;
            color: #fbe7c6;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 30px;
            padding-top: 20px;
            border-top: 1px solid rgba(251, 231, 198, .2);
            font-size: 13px;
        }
        .footer-bottom a {
            margin: 0 8px;
        }

        /* ===== 响应式 ===== */
        @media (max-width: 768px) {
            .hero h1 {
                font-size: 28px;
            }
            .hero .geo-intro img {
                float: none;
                width: 100%;
                margin: 0 0 14px;
            }
            .section-title {
                font-size: 24px;
            }
            .story-wrap,
            .download-wrap {
                padding: 24px;
            }
        }