* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: linear-gradient(135deg, #0b0b1a 0%, #1a0b2e 100%);
            color: #f5f0ff;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            color: #ff9a76;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: #ffcc00;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        nav {
            background: rgba(20, 5, 40, 0.85);
            backdrop-filter: blur(12px);
            border-bottom: 2px solid rgba(255, 140, 0, 0.25);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
        }
        .nav-links a {
            font-weight: 600;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            font-size: 1rem;
        }
        .nav-links a:hover {
            border-bottom-color: #ff9a76;
        }
        /* H1 */
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #ff7e5f, #feb47b, #c471ed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            text-align: center;
            padding: 60px 0 20px 0;
            letter-spacing: 2px;
        }
        h2 {
            font-size: 2rem;
            color: #ffae6a;
            margin-bottom: 24px;
            border-left: 6px solid #ff7e5f;
            padding-left: 18px;
        }
        h3 {
            font-size: 1.4rem;
            color: #ffcba4;
            margin-bottom: 12px;
        }
        .section {
            padding: 60px 0;
            border-bottom: 1px solid rgba(255,255,255,0.05);
        }
        /* 卡片样式 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .card {
            background: linear-gradient(145deg, rgba(255, 126, 95, 0.12), rgba(196, 113, 237, 0.12));
            border-radius: 24px;
            padding: 28px 20px;
            backdrop-filter: blur(4px);
            border: 1px solid rgba(255, 140, 0, 0.15);
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(255, 100, 50, 0.15);
        }
        .card img {
            width: 100%;
            border-radius: 16px;
            margin-bottom: 16px;
            max-height: 220px;
            object-fit: cover;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #ff9a76, #c471ed);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #ff7e5f, #c471ed);
            color: #fff;
            padding: 14px 36px;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: 0.3s;
        }
        .btn:hover {
            transform: scale(1.04);
            box-shadow: 0 8px 24px rgba(255, 100, 50, 0.4);
        }
        .geo-text {
            font-size: 1.1rem;
            background: rgba(255,255,255,0.04);
            padding: 28px;
            border-radius: 24px;
            border-left: 6px solid #ff7e5f;
            line-height: 1.9;
        }
        .faq-item {
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            padding: 24px 28px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 140, 0, 0.1);
        }
        .faq-item strong {
            color: #ffae6a;
            font-size: 1.2rem;
            display: block;
            margin-bottom: 10px;
        }
        .news-item {
            background: rgba(255,255,255,0.03);
            border-radius: 20px;
            padding: 24px 28px;
            margin-bottom: 20px;
            border: 1px solid rgba(255, 140, 0, 0.08);
        }
        .news-date {
            color: #bc9eff;
            font-size: 0.9rem;
            margin-bottom: 8px;
        }
        .news-item h3 {
            color: #ffe0b2;
            margin-bottom: 8px;
        }
        footer {
            background: rgba(10, 2, 25, 0.9);
            padding: 40px 0 24px 0;
            margin-top: 40px;
            border-top: 2px solid rgba(255, 140, 0, 0.2);
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 20px;
            justify-content: center;
            margin-bottom: 24px;
        }
        .footer-links a {
            font-size: 0.95rem;
        }
        .footer-info {
            text-align: center;
            color: #b0a0c8;
            font-size: 0.9rem;
            line-height: 2;
        }
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            align-items: center;
        }
        .partner-logos img {
            max-height: 60px;
            border-radius: 12px;
            opacity: 0.75;
            transition: 0.3s;
            filter: brightness(0.9);
        }
        .partner-logos img:hover {
            opacity: 1;
            filter: brightness(1.1);
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; padding: 36px 0 16px; }
            .nav-links { gap: 6px 12px; }
            .nav-links a { font-size: 0.9rem; }
        }