* {
            font-family: "Segoe UI", "Helvetica Neue", Arial, "Microsoft YaHei", "微软雅黑", "PingFang SC", sans-serif !important;
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: #ecfdf5;
            color: #065f46;
            line-height: 1.7;
            overflow-x: hidden;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 12px;
        }
        a {
            text-decoration: none;
            color: inherit;
            transition: color 0.3s;
        }

        /* 导航 */
        .navbar {
            background: linear-gradient(135deg, #065f46, #10b981);
            padding: 1rem 2rem;
            position: sticky;
            top: 0;
            z-index: 1000;
            box-shadow: 0 4px 20px rgba(6, 95, 70, 0.3);
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            align-items: center;
            gap: 1.2rem;
        }
        .nav-links a {
            color: #ffffff;
            font-weight: 600;
            font-size: 1rem;
            padding: 0.4rem 0.8rem;
            border-radius: 30px;
            transition: background 0.3s, color 0.3s;
        }
        .nav-links a:hover {
            background: #fbbf24;
            color: #064e3b;
        }
        .nav-links a:first-child {
            background: #fbbf24;
            color: #064e3b;
            border-radius: 30px;
            padding: 0.4rem 1.2rem;
            font-weight: 700;
        }

        /* HERO */
        .hero {
            background: linear-gradient(135deg, #ecfdf5 0%, #d1fae5 50%, #a7f3d0 100%);
            text-align: center;
            padding: 3.5rem 2rem 3rem;
            position: relative;
        }
        .hero h1 {
            font-size: 2.4rem;
            font-weight: 800;
            color: #065f46;
            margin-bottom: 1.2rem;
            letter-spacing: 1px;
        }
        .hero .geo-intro {
            max-width: 860px;
            margin: 0 auto 2rem;
            font-size: 1.05rem;
            color: #064e3b;
            background: rgba(255, 255, 255, 0.7);
            padding: 1.5rem 2rem;
            border-radius: 20px;
            box-shadow: 0 8px 32px rgba(6, 95, 70, 0.08);
            line-height: 1.8;
            text-align: left;
        }
        .hero-images {
            display: flex;
            justify-content: center;
            gap: 1.5rem;
            flex-wrap: wrap;
            margin-top: 1rem;
        }
        .hero-images img {
            width: 300px;
            height: 190px;
            object-fit: cover;
            border-radius: 18px;
            box-shadow: 0 12px 30px rgba(6, 95, 70, 0.15);
            transition: transform 0.3s;
        }
        .hero-images img:hover {
            transform: translateY(-5px);
        }

        /* 区块通用 */
        .block {
            padding: 3rem 2rem;
        }
        .block-title {
            text-align: center;
            font-size: 1.8rem;
            font-weight: 750;
            color: #065f46;
            margin-bottom: 2rem;
            position: relative;
            padding-bottom: 0.8rem;
        }
        .block-title::after {
            content: "";
            position: absolute;
            bottom: 0;
            left: 50%;
            transform: translateX(-50%);
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #10b981, #fbbf24);
            border-radius: 4px;
        }

        /* 卡片网格 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .card {
            background: #ffffff;
            border-radius: 18px;
            padding: 1.8rem;
            box-shadow: 0 4px 24px rgba(6, 95, 70, 0.08);
            transition: transform 0.3s, box-shadow 0.3s;
            border: 1px solid #ecfdf5;
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 8px 32px rgba(6, 95, 70, 0.15);
        }
        .card img {
            width: 100%;
            height: 150px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 1rem;
        }
        .card h3 {
            font-size: 1.2rem;
            color: #065f46;
            margin-bottom: 0.5rem;
            font-weight: 700;
        }
        .card p {
            font-size: 0.92rem;
            color: #065f46;
            opacity: 0.85;
        }

        /* stats */
        #stats {
            background: linear-gradient(135deg, #065f46, #059669);
            color: #fff;
        }
        #stats .block-title {
            color: #fff;
        }
        #stats .block-title::after {
            background: linear-gradient(90deg, #fbbf24, #fff);
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
            text-align: center;
        }
        .stat-item {
            background: rgba(255, 255, 255, 0.1);
            border-radius: 16px;
            padding: 1.5rem;
            backdrop-filter: blur(4px);
        }
        .stat-item .num {
            font-size: 2.2rem;
            font-weight: 800;
            color: #fbbf24;
            display: block;
        }
        .stat-item .label {
            font-size: 0.9rem;
            color: #d1fae5;
            margin-top: 0.3rem;
        }

        /* 特色布局 */
        .featured-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 1.8rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .featured-card {
            background: #ffffff;
            border-radius: 20px;
            overflow: hidden;
            box-shadow: 0 6px 30px rgba(6, 95, 70, 0.1);
            border: 1px solid #ecfdf5;
            transition: transform 0.3s;
        }
        .featured-card:hover {
            transform: translateY(-5px);
        }
        .featured-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 0;
        }
        .featured-card .content {
            padding: 1.4rem;
        }
        .featured-card .content h3 {
            font-size: 1.15rem;
            color: #065f46;
            margin-bottom: 0.4rem;
        }
        .featured-card .content p {
            font-size: 0.88rem;
            color: #047857;
            opacity: 0.85;
        }

        /* 列表样式 */
        .list-row {
            max-width: 1200px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .list-row .item {
            display: flex;
            align-items: center;
            gap: 1rem;
            background: #ffffff;
            border-radius: 14px;
            padding: 1rem 1.4rem;
            box-shadow: 0 4px 16px rgba(6, 95, 70, 0.06);
        }
        .list-row .rank {
            font-size: 1.4rem;
            font-weight: 800;
            color: #fbbf24;
            width: 40px;
            text-align: center;
        }
        .list-row .team {
            flex: 1;
            font-weight: 600;
            color: #064e3b;
        }
        .list-row .score {
            font-weight: 700;
            color: #10b981;
            background: #ecfdf5;
            padding: 0.2rem 0.8rem;
            border-radius: 20px;
        }

        /* 直播 */
        .live-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1200px;
            margin: 0 auto;
        }
        .live-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.5rem;
            border-left: 4px solid #10b981;
            box-shadow: 0 4px 20px rgba(6, 95, 70, 0.08);
        }
        .live-card .live-tag {
            display: inline-block;
            background: #fbbf24;
            color: #064e3b;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.7rem;
            border-radius: 20px;
            margin-bottom: 0.8rem;
        }
        .live-card h3 {
            font-size: 1.1rem;
            color: #065f46;
            margin-bottom: 0.3rem;
        }
        .live-card p {
            font-size: 0.85rem;
            color: #047857;
        }

        /* 新闻 */
        #news-list {
            background: #f0fdf4;
        }
        .news-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .news-card {
            display: flex;
            background: #ffffff;
            border-radius: 18px;
            overflow: hidden;
            box-shadow: 0 4px 20px rgba(6, 95, 70, 0.08);
            border: 1px solid #ecfdf5;
            transition: transform 0.3s;
        }
        .news-card:hover {
            transform: translateX(4px);
        }
        .news-card img {
            width: 240px;
            height: auto;
            object-fit: cover;
            flex-shrink: 0;
        }
        .news-card .content {
            padding: 1.5rem;
            display: flex;
            flex-direction: column;
        }
        .news-card .tag {
            align-self: flex-start;
            background: #10b981;
            color: #fff;
            font-size: 0.75rem;
            font-weight: 700;
            padding: 0.2rem 0.7rem;
            border-radius: 20px;
            margin-bottom: 0.5rem;
        }
        .news-card h3 {
            font-size: 1.15rem;
            color: #065f46;
            margin-bottom: 0.3rem;
            font-weight: 700;
        }
        .news-card time {
            font-size: 0.8rem;
            color: #10b981;
            margin-bottom: 0.6rem;
            font-weight: 600;
        }
        .news-card p {
            font-size: 0.9rem;
            color: #047857;
            line-height: 1.7;
        }

        /* FAQ */
        #faq {
            background: #ecfdf5;
        }
        .faq-container {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            flex-direction: column;
            gap: 1rem;
        }
        .faq-item {
            background: #ffffff;
            border-radius: 16px;
            padding: 1.4rem 1.8rem;
            box-shadow: 0 4px 16px rgba(6, 95, 70, 0.06);
            border-left: 4px solid #10b981;
        }
        .faq-item h3 {
            font-size: 1.05rem;
            color: #065f46;
            margin-bottom: 0.6rem;
            font-weight: 700;
        }
        .faq-item p {
            font-size: 0.9rem;
            color: #047857;
            line-height: 1.8;
        }

        /* 口碑 */
        .testimonial-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 1.5rem;
            max-width: 1100px;
            margin: 0 auto;
        }
        .testimonial-card {
            background: #ffffff;
            border-radius: 20px;
            padding: 1.8rem;
            box-shadow: 0 4px 20px rgba(6, 95, 70, 0.08);
            position: relative;
        }
        .testimonial-card::before {
            content: "“";
            font-size: 3rem;
            color: #10b981;
            position: absolute;
            top: 10px;
            left: 16px;
            opacity: 0.3;
        }
        .testimonial-card p {
            font-size: 0.92rem;
            color: #065f46;
            margin-bottom: 0.8rem;
        }
        .testimonial-card .user {
            font-weight: 700;
            color: #047857;
            font-size: 0.85rem;
        }

        /* 下载 */
        #download {
            background: linear-gradient(135deg, #065f46, #059669);
            text-align: center;
        }
        #download .block-title {
            color: #fff;
        }
        #download .block-title::after {
            background: #fbbf24;
        }
        .download-buttons {
            display: flex;
            justify-content: center;
            gap: 1.2rem;
            flex-wrap: wrap;
            margin-top: 1.5rem;
        }
        .download-buttons a {
            background: #fbbf24;
            color: #064e3b;
            padding: 0.8rem 2rem;
            border-radius: 40px;
            font-weight: 700;
            font-size: 1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            display: inline-block;
        }
        .download-buttons a:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(251, 191, 36, 0.3);
        }
        #download img {
            max-width: 200px;
            border-radius: 18px;
            margin: 1.5rem auto 0;
            display: block;
            box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
        }

        /* 页脚 */
        footer {
            background: #022c22;
            color: #d1fae5;
            padding: 3rem 2rem 1.5rem;
            font-size: 0.9rem;
        }
        .footer-inner {
            max-width: 1100px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 2rem;
        }
        .footer-inner h4 {
            color: #fbbf24;
            font-size: 1rem;
            margin-bottom: 0.8rem;
        }
        .footer-inner p {
            color: #a7f3d0;
            line-height: 1.8;
        }
        .footer-bottom {
            text-align: center;
            margin-top: 2rem;
            padding-top: 1.5rem;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            color: #6ee7b7;
            font-size: 0.85rem;
        }
        .footer-bottom a {
            color: #fbbf24;
            margin: 0 0.5rem;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }

        @media (max-width: 768px) {
            .news-card {
                flex-direction: column;
            }
            .news-card img {
                width: 100%;
                height: 180px;
            }
            .nav-links {
                gap: 0.6rem;
            }
            .nav-links a {
                font-size: 0.85rem;
                padding: 0.3rem 0.5rem;
            }
            .hero h1 {
                font-size: 1.8rem;
            }
            .hero-images img {
                width: 100%;
                max-width: 400px;
            }
        }