* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #0f1a12 0%, #1a3a2a 100%);
            color: #e2e8f0;
            line-height: 1.6;
            min-height: 100vh;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        nav {
            background: rgba(15, 26, 18, 0.9);
            backdrop-filter: blur(12px);
            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;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #4ade80, #1a3a2a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            align-items: center;
        }
        .nav-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            transition: color 0.3s, transform 0.2s;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
        }
        .nav-links a:hover {
            color: #4ade80;
            border-bottom-color: #4ade80;
            transform: translateY(-1px);
        }
        /* H1 */
        h1 {
            font-size: 3.2rem;
            font-weight: 800;
            text-align: center;
            background: linear-gradient(135deg, #4ade80, #a7f3d0);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin: 60px 0 20px;
            letter-spacing: -1px;
            line-height: 1.2;
        }
        /* 通用标题 */
        h2 {
            font-size: 2.2rem;
            font-weight: 700;
            color: #f1f5f9;
            margin-bottom: 32px;
            text-align: center;
            position: relative;
        }
        h2::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #4ade80, transparent);
            margin: 16px auto 0;
            border-radius: 2px;
        }
        /* 卡片 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }
        .glass-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(74, 222, 128, 0.2);
            border-radius: 20px;
            padding: 28px 24px;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .glass-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(74, 222, 128, 0.15);
            border-color: #4ade80;
        }
        .glass-card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
            border: 1px solid rgba(74, 222, 128, 0.1);
        }
        .glass-card h3 {
            font-size: 1.3rem;
            color: #4ade80;
            margin-bottom: 12px;
        }
        .glass-card p {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        /* 新闻列表 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .news-item {
            background: rgba(255, 255, 255, 0.04);
            border-left: 4px solid #4ade80;
            padding: 24px 28px;
            border-radius: 0 16px 16px 0;
            transition: background 0.3s;
        }
        .news-item:hover {
            background: rgba(74, 222, 128, 0.08);
        }
        .news-item .date {
            color: #4ade80;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 8px;
        }
        .news-item h3 {
            font-size: 1.3rem;
            color: #f1f5f9;
            margin-bottom: 8px;
        }
        .news-item p {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        /* FAQ */
        .faq-grid {
            display: grid;
            gap: 20px;
        }
        .faq-item {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            padding: 24px 28px;
            border: 1px solid rgba(74, 222, 128, 0.1);
        }
        .faq-item h3 {
            color: #4ade80;
            font-size: 1.1rem;
            margin-bottom: 10px;
        }
        .faq-item p {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        /* 页脚 */
        footer {
            background: rgba(15, 26, 18, 0.95);
            border-top: 1px solid rgba(74, 222, 128, 0.1);
            padding: 48px 0 32px;
            margin-top: 80px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 32px;
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        .footer-grid h4 {
            color: #4ade80;
            font-size: 1rem;
            margin-bottom: 16px;
        }
        .footer-grid p, .footer-grid a {
            color: #64748b;
            font-size: 0.9rem;
            line-height: 1.8;
            text-decoration: none;
            display: block;
        }
        .footer-grid a:hover {
            color: #4ade80;
        }
        .footer-bottom {
            border-top: 1px solid rgba(74, 222, 128, 0.08);
            margin-top: 32px;
            padding-top: 24px;
            text-align: center;
            color: #475569;
            font-size: 0.85rem;
        }
        .footer-bottom a {
            color: #4ade80;
            text-decoration: none;
            margin: 0 8px;
        }
        .footer-bottom a:hover {
            text-decoration: underline;
        }
        .friend-links {
            margin: 12px 0;
            word-break: break-word;
        }
        .friend-links a {
            color: #4ade80;
            text-decoration: none;
            margin: 0 4px;
        }
        .friend-links a:hover {
            text-decoration: underline;
        }
        /* CTA */
        .cta-section {
            text-align: center;
            padding: 60px 20px;
            background: radial-gradient(circle at center, rgba(74, 222, 128, 0.08), transparent 70%);
            border-radius: 24px;
            margin: 40px 0;
        }
        .cta-section h2 {
            margin-bottom: 16px;
        }
        .cta-section p {
            color: #94a3b8;
            max-width: 600px;
            margin: 0 auto 32px;
        }
        .btn {
            display: inline-block;
            padding: 14px 40px;
            background: linear-gradient(135deg, #4ade80, #1a3a2a);
            color: #0f1a12;
            font-weight: 700;
            border-radius: 50px;
            text-decoration: none;
            transition: transform 0.3s, box-shadow 0.3s;
            font-size: 1rem;
        }
        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 24px rgba(74, 222, 128, 0.3);
        }
        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 24px;
            margin: 40px 0;
        }
        .stat-item {
            text-align: center;
            padding: 24px;
            background: rgba(255, 255, 255, 0.04);
            border-radius: 16px;
            border: 1px solid rgba(74, 222, 128, 0.1);
        }
        .stat-item .number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #4ade80;
            line-height: 1;
        }
        .stat-item .label {
            color: #64748b;
            font-size: 0.9rem;
            margin-top: 8px;
        }
        /* 图片画廊 */
        .gallery-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 16px;
            margin: 40px 0;
        }
        .gallery-grid img {
            width: 100%;
            height: 160px;
            object-fit: cover;
            border-radius: 12px;
            border: 1px solid rgba(74, 222, 128, 0.15);
            transition: transform 0.3s;
        }
        .gallery-grid img:hover {
            transform: scale(1.03);
        }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .nav-links { gap: 16px; }
            .nav-links a { font-size: 0.85rem; }
        }
        @media (max-width: 480px) {
            .container { padding: 0 16px; }
            .nav-inner { flex-direction: column; gap: 12px; }
            h1 { font-size: 1.8rem; margin-top: 32px; }
        }