* {
            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, #f0fdf7 0%, #e8f5ee 100%);
            color: #1a2e2a;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        .navbar {
            background: rgba(255,255,255,0.75);
            backdrop-filter: blur(10px);
            box-shadow: 0 2px 20px rgba(52,211,153,0.12);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 1px solid rgba(52,211,153,0.2);
        }
        .navbar .container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            background: linear-gradient(135deg, #34d399, #0d9488);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: -0.5px;
        }
        .nav-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #1e3a34;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 30px;
            transition: all 0.25s;
            font-size: 0.95rem;
        }
        .nav-links a:hover {
            background: #34d399;
            color: white;
            box-shadow: 0 4px 12px rgba(52,211,153,0.3);
        }
        /* H1 */
        .hero {
            text-align: center;
            padding: 70px 20px 50px;
        }
        .hero h1 {
            font-size: clamp(2.2rem, 6vw, 3.8rem);
            font-weight: 800;
            background: linear-gradient(135deg, #0d9488, #34d399, #5eead4);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 20px;
            letter-spacing: -1px;
        }
        .hero p {
            max-width: 780px;
            margin: 0 auto;
            font-size: 1.15rem;
            color: #2d4a43;
            background: rgba(255,255,255,0.6);
            padding: 20px 28px;
            border-radius: 24px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(52,211,153,0.2);
        }
        /* 通用区块 */
        section {
            padding: 60px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 40px;
            color: #0f3d35;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, #34d399, #0d9488);
            margin: 12px auto 0;
            border-radius: 4px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .card {
            background: rgba(255,255,255,0.8);
            backdrop-filter: blur(2px);
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 8px 24px rgba(52,211,153,0.08);
            transition: transform 0.2s, box-shadow 0.2s;
            border: 1px solid rgba(52,211,153,0.15);
        }
        .card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 32px rgba(52,211,153,0.15);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 16px;
            background: #e0f2ed;
        }
        .card h3 {
            font-size: 1.3rem;
            margin-bottom: 8px;
            color: #0f3d35;
        }
        .card p {
            color: #3b5e55;
        }
        /* 图片组 */
        .img-gallery {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            margin: 30px 0;
        }
        .img-gallery img {
            width: 240px;
            height: 160px;
            object-fit: cover;
            border-radius: 20px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.06);
            transition: transform 0.3s;
        }
        .img-gallery img:hover {
            transform: scale(1.02);
        }
        /* FAQ */
        .faq-item {
            background: white;
            border-radius: 20px;
            padding: 20px 24px;
            margin-bottom: 16px;
            box-shadow: 0 2px 12px rgba(52,211,153,0.06);
            border-left: 4px solid #34d399;
        }
        .faq-item h4 {
            color: #0d6b5c;
            font-size: 1.1rem;
            margin-bottom: 8px;
        }
        /* 新闻列表 */
        .news-item {
            background: white;
            padding: 20px 24px;
            border-radius: 20px;
            margin-bottom: 18px;
            border: 1px solid rgba(52,211,153,0.1);
        }
        .news-item .date {
            font-size: 0.85rem;
            color: #5f8a7e;
            margin-bottom: 6px;
            font-weight: 500;
        }
        .news-item h3 {
            color: #0f3d35;
            margin-bottom: 6px;
        }
        /* 页脚 */
        footer {
            background: #0f2d26;
            color: #b8d5cb;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        footer .container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }
        .footer-links a {
            color: #b8d5cb;
            text-decoration: none;
            font-size: 0.9rem;
            padding: 4px 10px;
            border-radius: 20px;
            transition: 0.2s;
        }
        .footer-links a:hover {
            color: #34d399;
            background: rgba(52,211,153,0.1);
        }
        .footer-info {
            text-align: center;
            font-size: 0.9rem;
            line-height: 1.9;
            border-top: 1px solid rgba(52,211,153,0.15);
            padding-top: 20px;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 16px;
            justify-content: center;
            font-size: 0.85rem;
        }
        .friend-links a {
            color: #8fc4b6;
            text-decoration: none;
        }
        .friend-links a:hover {
            color: #34d399;
        }
        @media (max-width: 640px) {
            .navbar .container {
                flex-direction: column;
                align-items: center;
            }
            .nav-links {
                justify-content: center;
            }
            .hero p {
                font-size: 1rem;
                padding: 16px;
            }
        }