* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: linear-gradient(145deg, #0f1a12 0%, #1a3a2a 100%);
            color: #e0f2e9;
            line-height: 1.7;
            min-height: 100vh;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            background: rgba(15, 26, 18, 0.85);
            backdrop-filter: blur(16px);
            border-bottom: 1px solid rgba(74, 222, 128, 0.15);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #c0e0d0;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            transition: color 0.3s, text-shadow 0.3s;
            letter-spacing: 0.3px;
        }
        .nav-links a:hover {
            color: #4ade80;
            text-shadow: 0 0 12px rgba(74, 222, 128, 0.4);
        }
        .logo {
            font-size: 1.4rem;
            font-weight: 700;
            color: #4ade80;
            letter-spacing: 1px;
        }
        /* H1 */
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            color: #4ade80;
            text-align: center;
            padding: 48px 0 16px;
            text-shadow: 0 0 30px rgba(74, 222, 128, 0.2);
            letter-spacing: 1px;
        }
        /* 卡片 */
        .glass-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(74, 222, 128, 0.15);
            border-radius: 24px;
            padding: 28px 24px;
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3), 0 0 20px rgba(74, 222, 128, 0.05);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .glass-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0, 0, 0, 0.4), 0 0 30px rgba(74, 222, 128, 0.15);
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #4ade80;
            margin-bottom: 28px;
            position: relative;
            display: inline-block;
        }
        .section-title::after {
            content: '';
            position: absolute;
            bottom: -6px;
            left: 0;
            width: 60%;
            height: 3px;
            background: linear-gradient(90deg, #4ade80, transparent);
            border-radius: 4px;
        }
        /* 新闻网格 */
        .news-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 24px;
        }
        .news-card {
            background: rgba(255, 255, 255, 0.03);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(74, 222, 128, 0.1);
            border-radius: 20px;
            padding: 20px;
            transition: 0.3s;
        }
        .news-card:hover {
            border-color: #4ade80;
            box-shadow: 0 0 20px rgba(74, 222, 128, 0.08);
        }
        .news-date {
            font-size: 0.8rem;
            color: #8ca99a;
            margin-bottom: 8px;
            display: block;
        }
        .news-card h3 {
            color: #e0f2e9;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        .news-card p {
            color: #b0c9bc;
            font-size: 0.92rem;
        }
        /* FAQ */
        .faq-item {
            border-bottom: 1px solid rgba(74, 222, 128, 0.1);
            padding: 20px 0;
        }
        .faq-item:last-child {
            border-bottom: none;
        }
        .faq-q {
            font-weight: 600;
            color: #4ade80;
            font-size: 1.1rem;
            margin-bottom: 10px;
            cursor: default;
        }
        .faq-a {
            color: #c0d8cc;
            font-size: 0.95rem;
        }
        /* GEO */
        .geo-text {
            font-size: 1.05rem;
            color: #c8dfd4;
            max-width: 900px;
            margin: 0 auto;
            text-align: center;
            padding: 0 12px;
            line-height: 1.8;
        }
        /* 统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            text-align: center;
        }
        .stat-item {
            padding: 20px 12px;
        }
        .stat-number {
            font-size: 2.4rem;
            font-weight: 800;
            color: #4ade80;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #a0c0b0;
            margin-top: 6px;
        }
        /* 优势 */
        .advantages-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 24px;
        }
        .advantage-item {
            padding: 18px;
            text-align: center;
        }
        .advantage-icon {
            font-size: 2.2rem;
            margin-bottom: 12px;
        }
        .advantage-item h3 {
            color: #4ade80;
            margin-bottom: 8px;
        }
        /* 合作伙伴 */
        .partners-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            align-items: center;
        }
        .partner-item {
            background: rgba(255, 255, 255, 0.04);
            border: 1px solid rgba(74, 222, 128, 0.08);
            border-radius: 16px;
            padding: 12px 24px;
            color: #9cb8aa;
            font-weight: 500;
            font-size: 0.9rem;
        }
        /* 愿景 */
        .vision-mission {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        @media (max-width: 640px) {
            .vision-mission {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 1.8rem;
            }
            .nav-links {
                gap: 14px;
            }
        }
        .vision-box, .mission-box {
            padding: 24px;
        }
        .vision-box h3, .mission-box h3 {
            color: #4ade80;
            font-size: 1.4rem;
            margin-bottom: 12px;
        }
        /* CTA */
        .cta-section {
            text-align: center;
            padding: 48px 24px;
            background: radial-gradient(circle at 30% 50%, rgba(74, 222, 128, 0.05), transparent 70%);
            border-radius: 32px;
            margin: 40px 0;
        }
        .cta-button {
            display: inline-block;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            color: #0f1a12;
            font-weight: 700;
            padding: 14px 44px;
            border-radius: 60px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: transform 0.3s, box-shadow 0.3s;
            box-shadow: 0 4px 20px rgba(74, 222, 128, 0.25);
            margin-top: 16px;
        }
        .cta-button:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(74, 222, 128, 0.4);
        }
        /* 图片 */
        .img-responsive {
            width: 100%;
            border-radius: 16px;
            border: 1px solid rgba(74, 222, 128, 0.1);
            margin: 16px 0;
            display: block;
            object-fit: cover;
            max-height: 320px;
        }
        .img-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 16px;
            margin: 24px 0;
        }
        .img-gallery img {
            width: 100%;
            border-radius: 12px;
            height: 200px;
            object-fit: cover;
            border: 1px solid rgba(74, 222, 128, 0.08);
        }
        /* 页脚 */
        .footer {
            background: rgba(0, 0, 0, 0.4);
            backdrop-filter: blur(12px);
            border-top: 1px solid rgba(74, 222, 128, 0.1);
            padding: 40px 0 24px;
            margin-top: 60px;
        }
        .footer-inner {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .footer-links a {
            color: #a0c0b0;
            text-decoration: none;
            font-size: 0.9rem;
            transition: color 0.3s;
            margin-right: 16px;
        }
        .footer-links a:hover {
            color: #4ade80;
        }
        .footer-info {
            color: #7a9a8a;
            font-size: 0.85rem;
            margin-top: 12px;
        }
        .footer-bottom {
            text-align: center;
            padding-top: 28px;
            border-top: 1px solid rgba(74, 222, 128, 0.06);
            margin-top: 28px;
            color: #6a8a7a;
            font-size: 0.82rem;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 16px;
            margin: 12px 0;
        }
        .friend-links a {
            color: #8ca99a;
            text-decoration: none;
            font-size: 0.85rem;
        }
        .friend-links a:hover {
            color: #4ade80;
        }
        /* 间距 */
        section {
            padding: 44px 0;
        }
        .mt-20 { margin-top: 20px; }
        .mb-20 { margin-bottom: 20px; }