* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: linear-gradient(145deg, #0f1a12 0%, #1a3a2a 100%);
            color: #e0f0e8;
            line-height: 1.7;
            min-height: 100vh;
            padding: 20px;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
        }
        /* 导航 */
        .navbar {
            background: rgba(15, 26, 18, 0.8);
            backdrop-filter: blur(14px);
            -webkit-backdrop-filter: blur(14px);
            border: 1px solid rgba(74, 222, 128, 0.2);
            border-radius: 60px;
            padding: 12px 28px;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
            margin-bottom: 36px;
            box-shadow: 0 8px 32px rgba(0,0,0,0.5);
        }
        .navbar .brand {
            font-weight: 700;
            font-size: 1.4rem;
            background: linear-gradient(135deg, #4ade80, #86efac);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
        }
        .nav-links a {
            color: #b0d4c0;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 10px;
            border-radius: 30px;
            transition: 0.25s;
            font-size: 0.98rem;
        }
        .nav-links a:hover {
            background: rgba(74, 222, 128, 0.15);
            color: #4ade80;
        }
        /* 卡片通用 */
        .card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1px solid rgba(74, 222, 128, 0.25);
            border-radius: 32px;
            padding: 30px 28px;
            margin-bottom: 36px;
            box-shadow: 0 8px 20px rgba(0, 0, 0, 0.4);
            transition: 0.3s ease;
        }
        .card:hover {
            border-color: rgba(74, 222, 128, 0.5);
            box-shadow: 0 0 25px rgba(74, 222, 128, 0.08);
        }
        h1 {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(135deg, #4ade80, #86efac);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            margin-bottom: 18px;
            letter-spacing: 1px;
        }
        h2 {
            font-size: 1.9rem;
            color: #b8f0d0;
            margin-bottom: 20px;
            border-left: 6px solid #4ade80;
            padding-left: 18px;
        }
        h3 {
            color: #9ce0b8;
            margin-top: 16px;
            margin-bottom: 10px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 28px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 24px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 20px;
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 20px;
            display: block;
            box-shadow: 0 8px 18px rgba(0,0,0,0.5);
            border: 1px solid rgba(74, 222, 128, 0.15);
        }
        .img-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 18px;
            justify-content: center;
            margin: 20px 0;
        }
        .img-gallery img {
            width: 220px;
            height: 140px;
            object-fit: cover;
            flex: 1 1 180px;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(145deg, #1f4d32, #2d6b44);
            color: #f0fcf4;
            padding: 14px 38px;
            border-radius: 60px;
            font-weight: 600;
            text-decoration: none;
            border: 1px solid #4ade80;
            transition: 0.3s;
            box-shadow: 0 0 20px rgba(74,222,128,0.2);
        }
        .btn:hover {
            background: #2d6b44;
            box-shadow: 0 0 35px #4ade80;
            transform: scale(1.03);
        }
        .text-glow {
            text-shadow: 0 0 8px rgba(74, 222, 128, 0.2);
        }
        .faq-item, .news-item {
            border-bottom: 1px solid rgba(74, 222, 128, 0.12);
            padding: 18px 0;
        }
        .faq-item:last-child, .news-item:last-child {
            border-bottom: none;
        }
        .faq-q {
            font-weight: 600;
            color: #b4e4c8;
            margin-bottom: 8px;
            font-size: 1.1rem;
        }
        .faq-a {
            color: #b8d4c4;
            padding-left: 6px;
        }
        .news-date {
            font-size: 0.85rem;
            color: #7aaa8a;
            margin-bottom: 4px;
            display: inline-block;
            background: rgba(74,222,128,0.08);
            padding: 2px 14px;
            border-radius: 30px;
        }
        .news-title {
            font-size: 1.2rem;
            font-weight: 600;
            margin: 6px 0 8px;
        }
        .news-summary {
            color: #b0d0bc;
        }
        .stats-number {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(145deg, #4ade80, #a3f0c2);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        .stats-label {
            color: #9bc0ac;
            font-size: 1rem;
        }
        .footer {
            background: rgba(0,0,0,0.35);
            backdrop-filter: blur(6px);
            border-radius: 40px;
            padding: 36px 32px;
            margin-top: 40px;
            border: 1px solid rgba(74,222,128,0.1);
            color: #a0c8b0;
            font-size: 0.92rem;
            text-align: center;
        }
        .footer a {
            color: #6fcf97;
            text-decoration: none;
            margin: 0 6px;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .footer .friend-links {
            margin: 18px 0 14px;
            word-break: break-word;
        }
        .flex-center {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: center;
            gap: 24px;
        }
        .partner-logo {
            background: rgba(255,255,255,0.03);
            border-radius: 40px;
            padding: 20px 28px;
            border: 1px solid rgba(74,222,128,0.08);
        }
        @media (max-width: 780px) {
            .grid-2, .grid-3, .grid-4 {
                grid-template-columns: 1fr;
            }
            h1 {
                font-size: 2rem;
            }
            .navbar {
                flex-direction: column;
                gap: 12px;
                border-radius: 32px;
                padding: 16px 18px;
            }
            .nav-links {
                justify-content: center;
            }
        }