* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
        }
        body {
            background: linear-gradient(145deg, #0f1a12 0%, #1a3a2a 100%);
            color: #e8f0e8;
            min-height: 100vh;
            line-height: 1.7;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 18px 0;
            border-bottom: 1px solid rgba(74, 222, 128, 0.15);
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4ade80, #2dd4bf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #c0d6c0;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            transition: 0.3s;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #4ade80;
            border-bottom-color: #4ade80;
        }
        /* 通用玻璃卡片 */
        .glass-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border: 1px solid rgba(74, 222, 128, 0.15);
            border-radius: 32px;
            padding: 32px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
            transition: 0.3s;
        }
        .glass-card:hover {
            border-color: #4ade80;
            box-shadow: 0 8px 40px rgba(74, 222, 128, 0.12);
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 700;
            margin-bottom: 28px;
            background: linear-gradient(135deg, #4ade80, #86efac);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 20px;
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: #0f1a12;
            font-weight: 700;
            padding: 14px 38px;
            border-radius: 60px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: 0.3s;
            border: none;
            box-shadow: 0 4px 20px rgba(74, 222, 128, 0.3);
        }
        .btn-cta:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 28px rgba(74, 222, 128, 0.5);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            display: block;
            width: 100%;
            object-fit: cover;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #4ade80, #2dd4bf);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .faq-item {
            border-bottom: 1px solid rgba(74, 222, 128, 0.1);
            padding: 20px 0;
        }
        .faq-question {
            font-weight: 600;
            font-size: 1.2rem;
            margin-bottom: 8px;
            color: #4ade80;
        }
        .news-card {
            background: rgba(255,255,255,0.03);
            border-radius: 24px;
            padding: 24px;
            border: 1px solid rgba(74,222,128,0.08);
            transition: 0.3s;
        }
        .news-card:hover {
            border-color: #4ade80;
            transform: translateY(-4px);
        }
        .news-date {
            color: #86efac;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .footer {
            border-top: 1px solid rgba(74, 222, 128, 0.1);
            padding: 40px 0 20px;
            margin-top: 60px;
            text-align: center;
            color: #9ab89a;
        }
        .footer a {
            color: #86efac;
            text-decoration: none;
            margin: 0 6px;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 16px 24px;
            margin: 20px 0;
        }
        .hero {
            display: flex;
            flex-direction: column;
            align-items: center;
            text-align: center;
            padding: 60px 0 40px;
        }
        .hero h1 {
            font-size: 3rem;
            font-weight: 800;
            margin-bottom: 20px;
            background: linear-gradient(135deg, #ffffff, #86efac);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 1.2rem;
            max-width: 720px;
            color: #c0d6c0;
        }
        .geo-text {
            font-size: 1.05rem;
            color: #d0e6d0;
            line-height: 1.8;
            max-width: 900px;
            margin: 0 auto;
        }
        @media (max-width: 768px) {
            .navbar {
                flex-direction: column;
                align-items: stretch;
            }
            .nav-links {
                justify-content: center;
                gap: 16px;
            }
            .hero h1 {
                font-size: 2rem;
            }
            .section-title {
                font-size: 1.6rem;
            }
        }