* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            background: linear-gradient(135deg, #0f1a12 0%, #1a3a2a 100%);
            color: #e5e7eb;
            font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif;
            min-height: 100vh;
            line-height: 1.6;
        }
        a {
            color: #4ade80;
            text-decoration: none;
            transition: opacity 0.3s;
        }
        a:hover {
            opacity: 0.8;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航栏 */
        .navbar {
            background: rgba(15, 26, 18, 0.9);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(74, 222, 128, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 14px 0;
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            font-weight: 500;
            font-size: 15px;
            color: #d1fae5;
            letter-spacing: 0.5px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: border-color 0.3s, color 0.3s;
        }
        .nav-links a:hover {
            border-bottom: 2px solid #4ade80;
            color: #4ade80;
        }
        .brand-logo {
            font-size: 22px;
            font-weight: 700;
            background: linear-gradient(90deg, #4ade80, #22c55e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        /* H1 */
        .hero-section {
            text-align: center;
            padding: 70px 20px 40px;
            background: radial-gradient(ellipse at 50% 0%, rgba(74,222,128,0.08) 0%, transparent 60%);
        }
        .hero-section h1 {
            font-size: 40px;
            font-weight: 700;
            color: #f0fdf4;
            margin-bottom: 20px;
            letter-spacing: 1px;
        }
        .hero-section p {
            max-width: 780px;
            margin: 0 auto;
            color: #a7f3d0;
            font-size: 17px;
        }
        /* 卡片 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
            margin: 60px 0;
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(74, 222, 128, 0.2);
            border-radius: 20px;
            padding: 30px 22px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
            transition: transform 0.25s, box-shadow 0.3s;
        }
        .glass-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 48px rgba(74, 222, 128, 0.15);
        }
        .glass-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
        }
        .glass-card h3 {
            font-size: 20px;
            color: #f0fdf4;
            margin-bottom: 10px;
        }
        .glass-card p {
            color: #b0bdb5;
            font-size: 15px;
        }
        .section-title {
            font-size: 32px;
            font-weight: 700;
            color: #f0fdf4;
            text-align: center;
            margin: 70px 0 30px;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 3px;
            background: #4ade80;
            margin: 12px auto 0;
            border-radius: 4px;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
            gap: 24px;
            text-align: center;
            margin: 50px 0;
        }
        .stat-item {
            background: rgba(255,255,255,0.04);
            border-radius: 16px;
            padding: 24px 12px;
            border: 1px solid rgba(74,222,128,0.15);
        }
        .stat-item .num {
            font-size: 38px;
            font-weight: 700;
            color: #4ade80;
        }
        .stat-item .label {
            color: #9ca3af;
            margin-top: 6px;
            font-size: 14px;
        }
        /* 新闻 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
            margin: 30px 0 50px;
        }
        .news-item {
            background: rgba(255,255,255,0.03);
            border-left: 4px solid #4ade80;
            padding: 22px 28px;
            border-radius: 0 16px 16px 0;
        }
        .news-item .date {
            font-size: 13px;
            color: #6ee7b7;
            margin-bottom: 6px;
        }
        .news-item h3 {
            font-size: 20px;
            color: #f0fdf4;
        }
        .news-item p {
            color: #b0bdb5;
            margin-top: 8px;
        }
        /* FAQ */
        .faq-item {
            background: rgba(255,255,255,0.02);
            border: 1px solid rgba(74,222,128,0.12);
            border-radius: 16px;
            padding: 24px 28px;
            margin-bottom: 20px;
        }
        .faq-item h4 {
            color: #4ade80;
            font-size: 18px;
            margin-bottom: 10px;
        }
        .faq-item p {
            color: #b0bdb5;
        }
        /* GEO 区域 */
        .geo-content {
            background: rgba(0,0,0,0.2);
            border-radius: 24px;
            padding: 40px 30px;
            margin: 40px 0;
            border: 1px solid rgba(74,222,128,0.08);
        }
        .geo-content p {
            color: #cbd5e1;
            font-size: 16px;
            line-height: 1.8;
        }
        /* 页脚 */
        .footer {
            background: rgba(0,0,0,0.5);
            border-top: 1px solid rgba(74,222,128,0.15);
            padding: 50px 0 30px;
            margin-top: 80px;
        }
        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h5 {
            color: #4ade80;
            margin-bottom: 14px;
            font-size: 16px;
        }
        .footer-col p, .footer-col a {
            font-size: 14px;
            color: #9ca3af;
            display: block;
            margin-bottom: 6px;
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 24px;
            margin-top: 30px;
            color: #6b7280;
            font-size: 13px;
        }
        .footer-bottom a {
            color: #6ee7b7;
            margin: 0 6px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px;
            margin-bottom: 12px;
        }
        .footer-links a {
            color: #9ca3af;
            font-size: 13px;
        }
        @media (max-width: 640px) {
            .navbar .container {
                flex-direction: column;
                gap: 12px;
            }
            .nav-links {
                justify-content: center;
                gap: 16px;
            }
            .hero-section h1 {
                font-size: 28px;
            }
        }