* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
            background: linear-gradient(135deg, #fdf6f0 0%, #fce9e6 100%);
            color: #2d2a3d;
            line-height: 1.6;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 1.5rem 1rem;
        }
        /* 导航 */
        .navbar {
            background: linear-gradient(90deg, #ff6f3c, #ff9a76, #f65b5b);
            padding: 0.8rem 1.5rem;
            border-radius: 2rem;
            box-shadow: 0 8px 20px rgba(255, 111, 60, 0.3);
            margin: 1rem 0 1.5rem;
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            justify-content: space-between;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            align-items: center;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 600;
            padding: 0.4rem 0.8rem;
            border-radius: 2rem;
            transition: background 0.2s, transform 0.2s;
            font-size: 0.95rem;
            letter-spacing: 0.3px;
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.25);
            transform: scale(1.04);
        }
        .nav-brand {
            color: #fff;
            font-weight: 800;
            font-size: 1.2rem;
            background: rgba(0,0,0,0.1);
            padding: 0.2rem 1rem;
            border-radius: 3rem;
        }
        /* 卡片设计 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
            gap: 1.8rem;
            margin: 2rem 0;
        }
        .card {
            background: linear-gradient(145deg, #fff7f0, #ffe8e0);
            border-radius: 2rem;
            padding: 1.8rem 1.5rem;
            box-shadow: 0 12px 30px rgba(255, 100, 60, 0.12);
            transition: transform 0.25s, box-shadow 0.25s;
            border: 1px solid rgba(255, 140, 100, 0.2);
            backdrop-filter: blur(2px);
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 40px rgba(255, 80, 40, 0.2);
        }
        .card h2, .card h3 {
            color: #b83b2c;
            margin-bottom: 0.75rem;
        }
        .card img {
            width: 100%;
            max-height: 200px;
            object-fit: cover;
            border-radius: 1.2rem;
            margin-bottom: 1rem;
            border: 2px solid #ffba9a;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #ff6f3c, #d94f8f);
            color: #fff;
            padding: 0.6rem 1.8rem;
            border-radius: 3rem;
            text-decoration: none;
            font-weight: 600;
            box-shadow: 0 4px 14px rgba(255, 80, 60, 0.4);
            transition: 0.2s;
            margin-top: 1rem;
        }
        .btn:hover {
            transform: scale(1.04);
            box-shadow: 0 6px 20px rgba(255, 60, 40, 0.5);
        }
        /* hero */
        .hero {
            background: linear-gradient(135deg, #ffdad0, #ffb3a5, #ff8a7a);
            border-radius: 3rem;
            padding: 3rem 2rem;
            margin: 2rem 0;
            color: #2d1e28;
            text-align: center;
        }
        .hero h1 {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #a8352a, #6d1f6b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
        /* 数据统计 */
        .stats-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 2rem;
            margin: 1.5rem 0;
        }
        .stat-item {
            background: #fff0e8;
            border-radius: 2rem;
            padding: 1.2rem 2rem;
            min-width: 140px;
            box-shadow: 0 4px 12px rgba(255,90,40,0.1);
        }
        .stat-number {
            font-size: 2rem;
            font-weight: 800;
            color: #c73f2c;
        }
        /* 新闻列表 */
        .news-list {
            margin: 2.5rem 0;
        }
        .news-item {
            background: #fffaf5;
            border-radius: 1.8rem;
            padding: 1.5rem;
            margin-bottom: 1.5rem;
            border-left: 5px solid #ff6f3c;
            box-shadow: 0 4px 12px rgba(255,80,40,0.06);
        }
        .news-item h3 a {
            color: #b83b2c;
            text-decoration: none;
        }
        .news-item h3 a:hover {
            text-decoration: underline;
        }
        .news-date {
            color: #b37b6e;
            font-size: 0.9rem;
        }
        /* FAQ */
        .faq-item {
            background: #ffffffd0;
            backdrop-filter: blur(4px);
            border-radius: 1.8rem;
            padding: 1.5rem;
            margin: 1.2rem 0;
            border: 1px solid #ffccbb;
        }
        .faq-item h4 {
            color: #b0422e;
            font-size: 1.2rem;
            margin-bottom: 0.5rem;
        }
        footer {
            background: #2d1e28;
            color: #f0ded5;
            border-radius: 3rem 3rem 0 0;
            padding: 2.5rem 1.5rem;
            margin-top: 3.5rem;
        }
        footer a {
            color: #ffbb9a;
            text-decoration: none;
        }
        footer a:hover {
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.8rem;
            justify-content: center;
            margin: 1.2rem 0;
        }
        .footer-bottom {
            text-align: center;
            border-top: 1px solid #4b3540;
            padding-top: 1.8rem;
            margin-top: 1.8rem;
            font-size: 0.9rem;
        }
        @media (max-width: 640px) {
            .navbar {
                flex-direction: column;
                gap: 0.6rem;
            }
            .hero h1 {
                font-size: 1.6rem;
            }
        }
        .flex-2col {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        @media (max-width: 720px) {
            .flex-2col {
                grid-template-columns: 1fr;
            }
        }
        .badge {
            background: #ff6f3c20;
            padding: 0.4rem 1rem;
            border-radius: 2rem;
            display: inline-block;
            color: #b83b2c;
            font-weight: 500;
        }