* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', Roboto, system-ui, -apple-system, sans-serif;
        }
        body {
            background: linear-gradient(135deg, #0f0a1a 0%, #1c1028 50%, #2d1b3d 100%);
            color: #f0e8fc;
            min-height: 100vh;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        .navbar {
            background: rgba(255, 90, 30, 0.15);
            backdrop-filter: blur(12px);
            border-bottom: 1px solid rgba(255, 120, 80, 0.25);
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 50;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 26px;
        }
        .nav-links a {
            color: #ffccba;
            text-decoration: none;
            font-weight: 600;
            font-size: 1.05rem;
            letter-spacing: 0.4px;
            padding: 6px 12px;
            border-radius: 30px;
            transition: all 0.25s ease;
            background: transparent;
        }
        .nav-links a:hover {
            background: linear-gradient(135deg, #ff6a4a, #ff3b8a);
            color: #fff;
            box-shadow: 0 0 18px rgba(255, 80, 60, 0.5);
        }
        /* H1 */
        .hero-title {
            text-align: center;
            padding: 48px 10px 20px;
        }
        .hero-title h1 {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff9966, #ff4d94, #c44dff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 0 40px rgba(255, 100, 50, 0.3);
        }
        .hero-sub {
            color: #dbb8ff;
            margin-top: 6px;
            font-size: 1.1rem;
            letter-spacing: 1px;
        }
        /* 卡片氛围 */
        .card {
            background: linear-gradient(145deg, rgba(255, 120, 70, 0.12), rgba(180, 60, 200, 0.08));
            border-radius: 28px;
            padding: 28px 24px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 150, 100, 0.2);
            box-shadow: 0 8px 30px rgba(200, 60, 30, 0.1);
        }
        .section-title {
            font-size: 1.9rem;
            font-weight: 700;
            margin-bottom: 24px;
            background: linear-gradient(135deg, #ff9966, #ff66b3);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
            border-bottom: 2px solid rgba(255, 150, 100, 0.3);
            padding-bottom: 6px;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 24px;
        }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px,1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); }
        .img-fluid {
            width: 100%;
            border-radius: 18px;
            object-fit: cover;
            height: 200px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.3);
            transition: transform 0.3s;
        }
        .img-fluid:hover { transform: scale(1.02); }
        .stat-number {
            font-size: 2.2rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff884d, #ff4d94);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .btn-cta {
            background: linear-gradient(135deg, #ff5e3a, #ff2d7a);
            border: none;
            color: #fff;
            padding: 14px 42px;
            font-size: 1.2rem;
            font-weight: 700;
            border-radius: 60px;
            cursor: pointer;
            transition: 0.3s;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 0 30px rgba(255, 80, 40, 0.3);
        }
        .btn-cta:hover {
            transform: translateY(-3px);
            box-shadow: 0 10px 40px rgba(255, 60, 30, 0.5);
        }
        .faq-item {
            background: rgba(255, 255, 255, 0.04);
            border-radius: 20px;
            padding: 20px 22px;
            margin-bottom: 14px;
            border-left: 4px solid #ff6a4a;
        }
        .faq-item strong {
            color: #ffb38a;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 8px;
        }
        .news-card {
            background: rgba(255, 140, 80, 0.08);
            border-radius: 24px;
            padding: 20px;
            transition: 0.3s;
        }
        .news-card:hover { background: rgba(255, 140, 80, 0.16); }
        .news-date {
            color: #ffae7a;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }
        .footer {
            background: rgba(0,0,0,0.6);
            padding: 40px 0 20px;
            margin-top: 60px;
            border-top: 1px solid rgba(255,130,80,0.2);
        }
        .footer a {
            color: #ffae8a;
            text-decoration: none;
            margin: 0 8px;
        }
        .footer a:hover { color: #ffd5b3; text-decoration: underline; }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 18px 30px;
            margin: 20px 0;
        }
        .copy {
            text-align: center;
            font-size: 0.9rem;
            color: #aa8fc0;
            border-top: 1px solid rgba(255,255,255,0.05);
            padding-top: 20px;
        }
        @media (max-width: 640px) {
            .hero-title h1 { font-size: 1.8rem; }
            .nav-links a { font-size: 0.9rem; gap: 12px; }
        }