* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', Roboto, system-ui, -apple-system, sans-serif;
        }
        body {
            background: linear-gradient(145deg, #0f1a12 0%, #1a3a2a 100%);
            color: #e2f0e6;
            min-height: 100vh;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #78e99a;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: #4ade80;
            text-shadow: 0 0 8px rgba(74, 222, 128, 0.3);
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        nav {
            background: rgba(15, 26, 18, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(74, 222, 128, 0.15);
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
        }
        .nav-container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 10px;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4ade80, #22c55e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
            display: flex;
            align-items: center;
            gap: 8px;
        }
        .logo img {
            width: 36px;
            height: 36px;
            border-radius: 50%;
            object-fit: cover;
            -webkit-text-fill-color: initial;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-size: 0.95rem;
            font-weight: 500;
            padding: 6px 4px;
            border-bottom: 2px solid transparent;
            transition: 0.3s;
            color: #c8e6d0;
        }
        .nav-links a:hover {
            border-bottom-color: #4ade80;
            color: #fff;
        }
        /* 玻璃卡片 */
        .glass-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(8px);
            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 0 1px rgba(74, 222, 128, 0.05) inset;
            transition: 0.3s;
        }
        .glass-card:hover {
            border-color: rgba(74, 222, 128, 0.35);
            box-shadow: 0 12px 40px rgba(0, 40, 10, 0.4);
        }
        /* 标题 */
        h1 {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f0fff4, #4ade80);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 16px;
            line-height: 1.2;
            letter-spacing: -0.5px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 20px;
            color: #d9f5e0;
            border-left: 4px solid #4ade80;
            padding-left: 18px;
        }
        .section-pad {
            padding: 60px 0;
        }
        /* hero */
        #hero {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            gap: 40px;
            padding: 40px 0 60px;
        }
        .hero-text {
            flex: 1 1 380px;
        }
        .hero-text p {
            font-size: 1.15rem;
            color: #b8d6c2;
            max-width: 600px;
            margin-bottom: 30px;
        }
        .hero-img {
            flex: 1 1 320px;
            text-align: center;
        }
        .hero-img img {
            width: 100%;
            max-width: 520px;
            border-radius: 28px;
            box-shadow: 0 20px 60px rgba(0, 60, 20, 0.5);
            border: 1px solid rgba(74, 222, 128, 0.2);
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #1a5a2a, #2d8a4e);
            color: #fff;
            padding: 14px 42px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1.05rem;
            border: 1px solid #4ade8070;
            box-shadow: 0 4px 20px rgba(74, 222, 128, 0.2);
            transition: 0.3s;
        }
        .btn-cta:hover {
            background: #2d8a4e;
            transform: translateY(-3px);
            box-shadow: 0 10px 30px rgba(74, 222, 128, 0.3);
            color: #fff;
        }
        /* 网格布局 */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 30px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 10px;
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 700;
            color: #4ade80;
        }
        .stat-label {
            font-size: 0.95rem;
            color: #9bb8a8;
            margin-top: 6px;
        }
        .icon-feature {
            font-size: 2.2rem;
            margin-bottom: 12px;
            display: block;
        }
        /* 新闻卡片 */
        .news-card {
            background: rgba(255, 255, 255, 0.03);
            border-radius: 20px;
            padding: 24px;
            border: 1px solid rgba(74, 222, 128, 0.08);
            transition: 0.3s;
        }
        .news-card:hover {
            background: rgba(74, 222, 128, 0.04);
            border-color: rgba(74, 222, 128, 0.25);
        }
        .news-date {
            font-size: 0.85rem;
            color: #7da88c;
            margin-bottom: 8px;
            display: block;
            letter-spacing: 0.5px;
        }
        .news-card h3 {
            font-size: 1.25rem;
            margin-bottom: 10px;
            color: #e6f5ea;
        }
        .news-card p {
            color: #b0cfbc;
            font-size: 0.95rem;
        }
        /* FAQ */
        .faq-item {
            margin-bottom: 24px;
            padding: 20px 24px;
            background: rgba(255, 255, 255, 0.02);
            border-radius: 18px;
            border-left: 3px solid #4ade80;
        }
        .faq-question {
            font-weight: 600;
            font-size: 1.1rem;
            color: #d2f0dc;
            margin-bottom: 10px;
        }
        .faq-answer {
            color: #b0cfbc;
        }
        /* 页脚 */
        footer {
            background: rgba(10, 18, 14, 0.9);
            border-top: 1px solid rgba(74, 222, 128, 0.1);
            padding: 40px 0 24px;
            margin-top: 60px;
        }
        .footer-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer-col {
            flex: 1 1 200px;
        }
        .footer-col h4 {
            color: #4ade80;
            margin-bottom: 12px;
            font-size: 1.1rem;
        }
        .footer-col a {
            display: block;
            margin: 6px 0;
            color: #9bb8a8;
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: #4ade80;
        }
        .footer-bottom {
            border-top: 1px solid rgba(74, 222, 128, 0.06);
            padding-top: 20px;
            margin-top: 30px;
            text-align: center;
            font-size: 0.85rem;
            color: #6b8f7a;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 20px;
            margin: 12px 0;
        }
        .footer-links a {
            color: #78e99a;
        }
        /* 图片自适应 */
        img {
            max-width: 100%;
            height: auto;
            display: block;
        }
        .img-gallery {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 16px;
            margin: 30px 0;
        }
        .img-gallery img {
            border-radius: 16px;
            aspect-ratio: 16/9;
            object-fit: cover;
            border: 1px solid rgba(74, 222, 128, 0.1);
        }
        /* 伙伴logo条 */
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px 36px;
        }
        .partner-logos img {
            width: 110px;
            opacity: 0.7;
            transition: 0.3s;
            filter: grayscale(0.5);
        }
        .partner-logos img:hover {
            opacity: 1;
            filter: grayscale(0);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 14px; }
            .nav-links a { font-size: 0.85rem; }
            .glass-card { padding: 20px 16px; }
            .hero-img img { max-width: 100%; }
        }