* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        body {
            background: linear-gradient(145deg, #0f1a12 0%, #1a3a2a 100%);
            color: #e8f0e8;
            line-height: 1.6;
            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;
            box-shadow: 0 4px 30px rgba(0,0,0,0.5);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .brand {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4ade80, #22d3ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 6px 12px;
            border-radius: 30px;
            transition: all 0.3s ease;
            background: rgba(74, 222, 128, 0.05);
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            color: #4ade80;
            background: rgba(74, 222, 128, 0.12);
            border-color: rgba(74, 222, 128, 0.3);
            box-shadow: 0 0 20px rgba(74, 222, 128, 0.15);
        }
        /* HERO */
        .hero {
            padding: 60px 0 40px;
            text-align: center;
            position: relative;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            line-height: 1.2;
            margin-bottom: 16px;
            background: linear-gradient(135deg, #4ade80, #a7f3d0, #22d3ee);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .hero p {
            font-size: 1.2rem;
            color: #94a3b8;
            max-width: 800px;
            margin: 0 auto 32px;
        }
        .hero-img {
            display: flex;
            justify-content: center;
            gap: 20px;
            flex-wrap: wrap;
            margin-top: 30px;
        }
        .hero-img img {
            width: 200px;
            height: 130px;
            object-fit: cover;
            border-radius: 16px;
            border: 1px solid rgba(74, 222, 128, 0.25);
            box-shadow: 0 8px 32px rgba(0,0,0,0.6);
            transition: transform 0.3s ease;
        }
        .hero-img img:hover {
            transform: scale(1.03);
            border-color: #4ade80;
        }
        /* 通用区块 */
        section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 28px;
            border-left: 6px solid #4ade80;
            padding-left: 18px;
            background: linear-gradient(90deg, rgba(74,222,128,0.1), transparent);
        }
        .card-grid {
            display: grid;
            gap: 24px;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(8px);
            border: 1px solid rgba(74, 222, 128, 0.15);
            border-radius: 20px;
            padding: 24px;
            transition: all 0.3s ease;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
        }
        .glass-card:hover {
            border-color: #4ade80;
            box-shadow: 0 4px 40px rgba(74, 222, 128, 0.15);
            transform: translateY(-4px);
        }
        .glass-card h3 {
            color: #4ade80;
            margin-bottom: 12px;
            font-size: 1.4rem;
        }
        .glass-card p {
            color: #b0c4b0;
        }
        .badge {
            display: inline-block;
            background: rgba(74, 222, 128, 0.15);
            color: #4ade80;
            padding: 2px 12px;
            border-radius: 30px;
            font-size: 0.75rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        /* 新闻 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .news-item {
            border-bottom: 1px solid rgba(74, 222, 128, 0.1);
            padding-bottom: 20px;
        }
        .news-item h3 {
            font-size: 1.3rem;
            color: #f0fdf4;
            margin-bottom: 6px;
        }
        .news-item .date {
            color: #6ee7b7;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 8px;
        }
        .news-item p {
            color: #b8cbb8;
        }
        /* FAQ */
        .faq-item {
            margin-bottom: 24px;
            padding: 18px 22px;
            background: rgba(0,0,0,0.2);
            border-radius: 16px;
            border-left: 4px solid #4ade80;
        }
        .faq-item h4 {
            font-size: 1.2rem;
            color: #4ade80;
            margin-bottom: 10px;
        }
        .faq-item p {
            color: #c0d0c0;
        }
        /* 页脚 */
        .footer {
            background: rgba(0,0,0,0.6);
            border-top: 1px solid rgba(74, 222, 128, 0.1);
            padding: 40px 0 20px;
            margin-top: 40px;
        }
        .footer .container {
            display: flex;
            flex-direction: column;
            gap: 16px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            justify-content: center;
        }
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #4ade80;
        }
        .footer-info {
            text-align: center;
            color: #6b7c6b;
            font-size: 0.85rem;
        }
        .footer-info p {
            margin: 4px 0;
        }
        .footer-bottom {
            border-top: 1px solid rgba(74,222,128,0.08);
            padding-top: 16px;
            margin-top: 12px;
            text-align: center;
            font-size: 0.8rem;
            color: #4a5c4a;
        }
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
        }
        .stat-item {
            text-align: center;
            padding: 20px 12px;
            background: rgba(0,0,0,0.2);
            border-radius: 20px;
            border: 1px solid rgba(74,222,128,0.1);
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            color: #4ade80;
        }
        .stat-label {
            color: #9ab09a;
            margin-top: 6px;
        }
        @media (max-width: 640px) {
            .hero h1 { font-size: 1.8rem; }
            .nav-links { gap: 8px; }
            .nav-links a { font-size: 0.8rem; padding: 4px 10px; }
        }