* { margin: 0; padding: 0; box-sizing: border-box; font-family: system-ui, -apple-system, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif; }
        body { background: linear-gradient(145deg, #f0faf5 0%, #e8f5e9 100%); color: #1a2e2a; line-height: 1.6; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        nav { background: rgba(255,255,255,0.8); backdrop-filter: blur(10px); -webkit-backdrop-filter: blur(10px); border-bottom: 1px solid rgba(52, 211, 153, 0.3); position: sticky; top: 0; z-index: 100; padding: 12px 0; }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .logo { font-size: 1.6rem; font-weight: 700; background: linear-gradient(135deg, #34d399, #059669); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        .nav-links { display: flex; gap: 20px; flex-wrap: wrap; }
        .nav-links a { text-decoration: none; color: #1f2937; font-weight: 500; padding: 6px 12px; border-radius: 20px; transition: 0.2s; }
        .nav-links a:hover { background: #34d39922; color: #059669; }
        /* 通用卡片 */
        .card { background: rgba(255,255,255,0.7); backdrop-filter: blur(4px); border-radius: 24px; padding: 32px; margin: 28px 0; box-shadow: 0 8px 24px rgba(52, 211, 153, 0.08); border: 1px solid rgba(52, 211, 153, 0.15); transition: transform 0.2s; }
        .card:hover { transform: translateY(-2px); }
        h1 { font-size: 2.4rem; font-weight: 700; background: linear-gradient(135deg, #0d4f3c, #34d399); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 16px; line-height: 1.2; }
        h2 { font-size: 1.8rem; font-weight: 600; color: #0d4f3c; margin-bottom: 18px; display: flex; align-items: center; gap: 10px; }
        .grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
        .text-muted { color: #3b5e4e; }
        .badge { background: #34d39920; color: #059669; font-size: 0.8rem; padding: 2px 12px; border-radius: 30px; font-weight: 500; }
        .btn-cta { display: inline-block; background: linear-gradient(135deg, #34d399, #059669); color: white; padding: 12px 32px; border-radius: 40px; font-weight: 600; text-decoration: none; transition: 0.2s; border: none; cursor: pointer; }
        .btn-cta:hover { transform: scale(1.02); box-shadow: 0 8px 20px #34d39955; }
        img { max-width: 100%; border-radius: 18px; display: block; }
        .img-wrap { overflow: hidden; border-radius: 18px; box-shadow: 0 4px 12px rgba(0,0,0,0.04); }
        .faq-item { border-bottom: 1px solid #34d39930; padding: 20px 0; }
        .faq-item:last-child { border-bottom: none; }
        .faq-q { font-weight: 600; font-size: 1.1rem; color: #0b3f30; margin-bottom: 8px; }
        .faq-a { color: #2d4d3f; }
        .news-card { background: white; border-radius: 20px; padding: 20px; box-shadow: 0 4px 12px #34d39910; }
        .news-date { font-size: 0.85rem; color: #6b8a7c; margin-bottom: 4px; }
        .footer { background: #0b2b22; color: #c8ddd2; padding: 48px 0 24px; margin-top: 48px; border-radius: 40px 40px 0 0; }
        .footer a { color: #a7d4c0; text-decoration: none; }
        .footer a:hover { color: #34d399; }
        .footer-links { display: flex; flex-wrap: wrap; gap: 12px 24px; justify-content: center; margin: 16px 0; }
        .footer-bottom { border-top: 1px solid #2b5a48; padding-top: 20px; text-align: center; font-size: 0.9rem; }
        .partner-logo { background: white; border-radius: 16px; padding: 16px; text-align: center; box-shadow: 0 2px 8px #34d39908; }
        .stat-number { font-size: 2.2rem; font-weight: 700; color: #059669; }
        .stat-label { color: #3b5e4e; }
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .nav-links { gap: 8px; }
            .nav-links a { font-size: 0.9rem; padding: 4px 10px; }
        }