* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', Roboto, system-ui, -apple-system, sans-serif;
        }
        body {
            background: linear-gradient(145deg, #1a0a2e 0%, #4a1a6f 100%);
            color: #f0eaff;
            min-height: 100vh;
            padding: 20px 0;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .nav-container {
            background: rgba(255, 255, 255, 0.08);
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
            border-radius: 60px;
            padding: 12px 32px;
            margin-bottom: 40px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            border: 1px solid rgba(255, 255, 255, 0.15);
            box-shadow: 0 8px 32px rgba(0,0,0,0.3);
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
            align-items: center;
        }
        .nav-links a {
            color: #e6d9ff;
            text-decoration: none;
            font-weight: 500;
            font-size: 1rem;
            padding: 6px 12px;
            border-radius: 30px;
            transition: all 0.25s;
            letter-spacing: 0.3px;
        }
        .nav-links a:hover {
            background: rgba(255, 215, 255, 0.2);
            color: #fff;
            box-shadow: 0 0 12px rgba(200, 160, 255, 0.3);
        }
        .nav-logo {
            font-weight: 700;
            font-size: 1.4rem;
            background: linear-gradient(135deg, #d9b3ff, #f5e6ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin-right: 12px;
        }
        /* 卡片毛玻璃 */
        .glass-card {
            background: rgba(255, 255, 255, 0.06);
            backdrop-filter: blur(16px);
            -webkit-backdrop-filter: blur(16px);
            border-radius: 32px;
            padding: 32px 28px;
            border: 1px solid rgba(255, 255, 255, 0.08);
            box-shadow: 0 12px 48px rgba(0, 0, 0, 0.25);
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .glass-card:hover {
            box-shadow: 0 16px 56px rgba(160, 100, 255, 0.2);
        }
        h1 {
            font-size: 3.2rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f5e6ff, #d9b3ff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin: 20px 0 16px;
            letter-spacing: 1px;
            line-height: 1.2;
        }
        h2 {
            font-size: 2rem;
            font-weight: 600;
            margin-bottom: 24px;
            color: #e6d9ff;
            border-left: 6px solid #b47aff;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.5rem;
            font-weight: 500;
            margin: 16px 0 12px;
            color: #dcccff;
        }
        p {
            line-height: 1.8;
            font-size: 1.05rem;
            letter-spacing: 0.3px;
            color: #d9cfff;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 28px;
        }
        .img-fluid {
            width: 100%;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.3);
            margin: 16px 0;
            display: block;
            object-fit: cover;
        }
        .img-rounded {
            border-radius: 28px;
            max-height: 300px;
            width: 100%;
            object-fit: cover;
        }
        .btn-ghost {
            display: inline-block;
            padding: 12px 36px;
            border-radius: 40px;
            background: rgba(255, 255, 255, 0.08);
            border: 1px solid rgba(255, 215, 255, 0.3);
            color: #f0eaff;
            font-weight: 600;
            text-decoration: none;
            transition: 0.2s;
            backdrop-filter: blur(4px);
        }
        .btn-ghost:hover {
            background: rgba(200, 160, 255, 0.25);
            border-color: #b47aff;
            box-shadow: 0 0 20px #b47aff66;
        }
        footer {
            margin-top: 60px;
            background: rgba(0,0,0,0.3);
            backdrop-filter: blur(12px);
            border-radius: 40px 40px 0 0;
            padding: 48px 28px 28px;
            border-top: 1px solid rgba(255,255,255,0.05);
        }
        footer a {
            color: #c6b0ff;
            text-decoration: none;
            transition: 0.2s;
        }
        footer a:hover {
            color: #fff;
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 28px;
            justify-content: center;
            margin: 20px 0;
        }
        .footer-info {
            text-align: center;
            color: #b3a0d9;
            font-size: 0.95rem;
            line-height: 2;
        }
        .faq-item {
            padding: 18px 0;
            border-bottom: 1px solid rgba(255,255,255,0.06);
        }
        .faq-item strong {
            color: #e6d9ff;
            font-size: 1.1rem;
        }
        .faq-item p {
            margin-top: 8px;
        }
        .news-card {
            background: rgba(255,255,255,0.04);
            border-radius: 24px;
            padding: 20px;
            transition: 0.2s;
            border: 1px solid rgba(255,255,255,0.03);
        }
        .news-card:hover {
            background: rgba(255,255,255,0.08);
        }
        .news-date {
            color: #b7a0d9;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f5e6ff, #b47aff);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
        }
        .stat-label {
            color: #c6b5e6;
        }
        .geo-section {
            background: rgba(255,255,255,0.03);
            border-radius: 36px;
            padding: 28px;
            margin: 20px 0;
        }
        .flex-center {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 20px;
            justify-content: center;
        }
        .mt-4 { margin-top: 40px; }
        .mb-4 { margin-bottom: 40px; }
        .text-center { text-align: center; }
        @media (max-width: 700px) {
            h1 { font-size: 2.4rem; }
            .nav-container { flex-direction: column; gap: 12px; padding: 16px; }
        }