* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif;
        }
        body {
            background: #f0fdf4;
            color: #14532d;
            line-height: 1.6;
            overflow-x: hidden;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 导航 */
        .site-header {
            background: linear-gradient(135deg, #10b981, #065f46);
            padding: 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(6, 95, 70, 0.3);
        }
        .nav {
            display: flex;
            justify-content: center;
            align-items: center;
            min-height: 64px;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 8px;
            flex-wrap: wrap;
            padding: 12px 16px;
            align-items: center;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            font-size: 15px;
            padding: 8px 18px;
            border-radius: 20px;
            transition: all 0.3s ease;
            background: rgba(255, 255, 255, 0.08);
            display: inline-block;
        }
        .nav-links a:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-1px);
            box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
        }

        /* 英雄区 */
        .hero {
            background: linear-gradient(135deg, #10b981 0%, #065f46 70%, #047857 100%);
            padding: 70px 20px 50px;
            text-align: center;
            position: relative;
            overflow: hidden;
        }
        .hero::before {
            content: "";
            position: absolute;
            top: -50%;
            left: -20%;
            width: 70%;
            height: 150%;
            background: radial-gradient(circle, rgba(255, 255, 255, 0.1) 0%, transparent 70%);
            border-radius: 50%;
        }
        .hero h1 {
            color: #fff;
            font-size: 2.4rem;
            font-weight: 700;
            letter-spacing: 1px;
            position: relative;
            z-index: 1;
            text-shadow: 0 2px 12px rgba(0, 0, 0, 0.2);
            margin-bottom: 8px;
        }
        .hero p {
            color: rgba(255, 255, 255, 0.85);
            font-size: 1.05rem;
            max-width: 800px;
            margin: 12px auto 0;
            position: relative;
            z-index: 1;
        }

        /* GEO 区块 */
        .geo-intro {
            background: #ffffff;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(16, 185, 129, 0.08);
            margin: 40px auto;
            padding: 32px;
            max-width: 1200px;
            border: 1px solid rgba(16, 185, 129, 0.1);
        }
        .geo-intro .container {
            max-width: none;
            padding: 0;
        }
        .geo-intro p {
            font-size: 0.98rem;
            color: #1e3a2f;
            line-height: 1.75;
            text-indent: 2em;
        }

        /* 通用区块 */
        section {
            padding: 60px 20px;
        }
        section h2 {
            text-align: center;
            font-size: 1.9rem;
            font-weight: 700;
            color: #065f46;
            margin-bottom: 12px;
            position: relative;
        }
        section h2::after {
            content: "";
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #10b981, #fbbf24);
            border-radius: 4px;
            margin: 10px auto 0;
        }
        .section-subtitle {
            text-align: center;
            color: #4b7a66;
            font-size: 0.95rem;
            max-width: 700px;
            margin: 0 auto 40px;
        }

        /* 数据统计 */
        .stats-section {
            background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .stat-card {
            background: #ffffff;
            border-radius: 16px;
            padding: 28px 20px;
            text-align: center;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(16, 185, 129, 0.08);
        }
        .stat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
        }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            color: #10b981;
            line-height: 1.3;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #5b8a77;
            margin-top: 8px;
        }

        /* 核心优势 */
        .advantages-section {
            background: #fff;
        }
        .advantage-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .advantage-card {
            background: linear-gradient(145deg, #ffffff, #f0fdf4);
            border-radius: 16px;
            padding: 30px 24px;
            border: 1px solid rgba(16, 185, 129, 0.12);
            box-shadow: 0 4px 16px rgba(6, 95, 70, 0.06);
            transition: all 0.3s ease;
        }
        .advantage-card:hover {
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
            transform: translateY(-3px);
        }
        .advantage-card h3 {
            font-size: 1.1rem;
            color: #065f46;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .advantage-card p {
            font-size: 0.9rem;
            color: #3d6a58;
            line-height: 1.65;
        }

        /* 品牌故事 */
        .brand-story {
            background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
        }
        .story-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 48px;
            align-items: center;
            max-width: 1100px;
            margin: 0 auto;
        }
        .story-image img {
            width: 100%;
            border-radius: 20px;
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
        }
        .story-content h2 {
            text-align: left;
            margin-bottom: 20px;
        }
        .story-content h2::after {
            margin: 10px 0 0;
        }
        .story-content p {
            font-size: 0.95rem;
            color: #2e4d3e;
            line-height: 1.7;
            margin-bottom: 14px;
        }

        /* 焦点赛事 */
        .featured-events {
            background: #fff;
        }
        .events-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .event-card {
            background: linear-gradient(145deg, #ffffff, #f8fff9);
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(16, 185, 129, 0.08);
            border: 1px solid rgba(16, 185, 129, 0.08);
            transition: all 0.3s ease;
        }
        .event-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.18);
        }
        .event-card img {
            width: 100%;
            height: 160px;
            object-fit: cover;
        }
        .event-card h3 {
            font-size: 1.15rem;
            color: #065f46;
            padding: 16px 18px 4px;
            font-weight: 700;
        }
        .event-card p {
            font-size: 0.9rem;
            color: #4b7a66;
            padding: 0 18px 18px;
            line-height: 1.6;
        }

        /* 服务覆盖 */
        .coverage-section {
            background: #f0fdf4;
        }
        .coverage-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .coverage-item {
            background: #fff;
            border-radius: 16px;
            padding: 24px;
            text-align: center;
            box-shadow: 0 4px 16px rgba(16, 185, 129, 0.08);
            transition: all 0.3s ease;
        }
        .coverage-item img {
            width: 56px;
            height: 56px;
            object-fit: contain;
            margin-bottom: 12px;
        }
        .coverage-item h3 {
            font-size: 1.05rem;
            color: #065f46;
            margin-bottom: 6px;
        }
        .coverage-item p {
            font-size: 0.85rem;
            color: #4b7a66;
            line-height: 1.5;
        }

        /* 用户口碑 */
        .testimonials-section {
            background: #fff;
        }
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .testimonial-card {
            background: linear-gradient(145deg, #f0fdf4, #ffffff);
            border-radius: 16px;
            padding: 28px;
            border: 1px solid rgba(16, 185, 129, 0.1);
            box-shadow: 0 4px 16px rgba(6, 95, 70, 0.05);
        }
        .testimonial-card p {
            font-size: 0.92rem;
            color: #2e4d3e;
            line-height: 1.7;
            font-style: italic;
        }
        .testimonial-author {
            font-size: 0.85rem;
            color: #10b981;
            margin-top: 14px;
            font-weight: 600;
            text-align: right;
        }

        /* 合作伙伴 */
        .partners-section {
            background: linear-gradient(135deg, #ecfdf5, #f0fdf4);
        }
        .partner-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
            max-width: 900px;
            margin: 0 auto;
        }
        .partner-item {
            background: #fff;
            border-radius: 14px;
            padding: 20px;
            text-align: center;
            border: 1px solid rgba(16, 185, 129, 0.1);
            box-shadow: 0 2px 12px rgba(16, 185, 129, 0.06);
            transition: all 0.3s ease;
        }
        .partner-item img {
            width: 48px;
            height: 48px;
            object-fit: contain;
            margin-bottom: 8px;
        }
        .partner-item span {
            display: block;
            font-size: 0.9rem;
            font-weight: 600;
            color: #065f46;
        }

        /* 新闻 */
        .news-section {
            background: #fff;
            padding: 60px 20px;
        }
        .news-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 28px;
            max-width: 1100px;
            margin: 0 auto;
        }
        .news-card {
            background: #f8fff9;
            border-radius: 18px;
            overflow: hidden;
            border: 1px solid rgba(16, 185, 129, 0.1);
            box-shadow: 0 4px 16px rgba(6, 95, 70, 0.04);
            transition: all 0.3s ease;
            display: flex;
            flex-direction: column;
        }
        .news-card:hover {
            box-shadow: 0 8px 30px rgba(16, 185, 129, 0.15);
            transform: translateY(-3px);
        }
        .news-card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
        }
        .news-content {
            padding: 20px;
            display: flex;
            flex-direction: column;
            flex: 1;
        }
        .news-tag {
            display: inline-block;
            background: linear-gradient(135deg, #10b981, #065f46);
            color: #fff;
            font-size: 0.75rem;
            padding: 4px 14px;
            border-radius: 20px;
            margin-bottom: 12px;
            align-self: flex-start;
            text-decoration: none;
            font-weight: 600;
        }
        .news-card h3 {
            font-size: 1.1rem;
            color: #065f46;
            line-height: 1.4;
            margin-bottom: 6px;
            font-weight: 700;
        }
        .news-date {
            font-size: 0.8rem;
            color: #10b981;
            font-weight: 600;
            margin-bottom: 10px;
        }
        .news-card p {
            font-size: 0.88rem;
            color: #3d6a58;
            line-height: 1.65;
            flex: 1;
        }
        .news-card a {
            color: #065f46;
            text-decoration: none;
            font-weight: 600;
            margin-top: 10px;
            font-size: 0.9rem;
            display: inline-block;
        }
        .news-card a:hover {
            color: #10b981;
        }

        /* FAQ */
        .faq-section {
            background: linear-gradient(135deg, #f0fdf4, #ecfdf5);
        }
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
        }
        .faq-item {
            background: #fff;
            border-radius: 14px;
            padding: 24px 28px;
            margin-bottom: 16px;
            box-shadow: 0 2px 12px rgba(16, 185, 129, 0.06);
            border: 1px solid rgba(16, 185, 129, 0.08);
        }
        .faq-item h3 {
            font-size: 1.05rem;
            color: #065f46;
            margin-bottom: 10px;
            font-weight: 700;
        }
        .faq-item p {
            font-size: 0.9rem;
            color: #2e4d3e;
            line-height: 1.65;
        }

        /* 行动呼吁 */
        .cta-section {
            background: linear-gradient(135deg, #10b981, #065f46);
            text-align: center;
            padding: 60px 20px;
        }
        .cta-section h2 {
            color: #fff;
            font-size: 2rem;
            margin-bottom: 14px;
        }
        .cta-section h2::after {
            background: linear-gradient(90deg, #fbbf24, #fff);
        }
        .cta-section p {
            color: rgba(255, 255, 255, 0.9);
            font-size: 1rem;
            margin-bottom: 30px;
            max-width: 600px;
            margin-left: auto;
            margin-right: auto;
        }
        .cta-buttons {
            display: flex;
            gap: 16px;
            justify-content: center;
            flex-wrap: wrap;
        }
        .btn-primary,
        .btn-secondary {
            display: inline-block;
            padding: 12px 34px;
            border-radius: 30px;
            text-decoration: none;
            font-weight: 600;
            font-size: 1rem;
            transition: all 0.3s ease;
        }
        .btn-primary {
            background: #fbbf24;
            color: #065f46;
            box-shadow: 0 4px 16px rgba(251, 191, 36, 0.3);
        }
        .btn-primary:hover {
            background: #f59e0b;
            transform: translateY(-2px);
        }
        .btn-secondary {
            background: rgba(255, 255, 255, 0.15);
            color: #fff;
            border: 1px solid rgba(255, 255, 255, 0.4);
        }
        .btn-secondary:hover {
            background: rgba(255, 255, 255, 0.25);
            transform: translateY(-2px);
        }

        /* 页脚 */
        .site-footer {
            background: #064e36;
            color: rgba(255, 255, 255, 0.85);
            padding: 50px 20px 20px;
        }
        .footer-content {
            max-width: 1100px;
            margin: 0 auto;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 32px;
            margin-bottom: 30px;
        }
        .footer-info h3 {
            color: #fff;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        .footer-info p {
            font-size: 0.85rem;
            line-height: 1.6;
        }
        .footer-links {
            display: flex;
            flex-direction: column;
            gap: 6px;
        }
        .footer-links a {
            color: rgba(255, 255, 255, 0.8);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s;
        }
        .footer-links a:hover {
            color: #fbbf24;
        }
        .footer-bottom {
            border-top: 1px solid rgba(255, 255, 255, 0.15);
            padding-top: 20px;
            text-align: center;
            font-size: 0.8rem;
            line-height: 1.8;
        }
        .footer-bottom a {
            color: rgba(255, 255, 255, 0.7);
            text-decoration: none;
        }
        .footer-bottom a:hover {
            color: #fbbf24;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .stats-grid,
            .advantage-grid,
            .events-grid,
            .coverage-grid,
            .testimonial-grid,
            .partner-grid {
                grid-template-columns: 1fr 1fr;
            }
            .story-grid {
                grid-template-columns: 1fr;
            }
            .news-grid {
                grid-template-columns: 1fr;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
            .footer-grid {
                grid-template-columns: 1fr;
            }
        }
        @media (max-width: 480px) {
            .stats-grid,
            .advantage-grid,
            .events-grid,
            .coverage-grid,
            .testimonial-grid,
            .partner-grid {
                grid-template-columns: 1fr;
            }
        }