* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
        }
        body {
            background: linear-gradient(145deg, #0b1120 0%, #1a1a2e 100%);
            color: #e2e8f0;
            line-height: 1.6;
            min-height: 100vh;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        nav {
            background: rgba(11, 17, 32, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(251, 191, 36, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
            padding: 16px 0;
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            color: #fbbf24;
            letter-spacing: 1px;
            text-shadow: 0 0 30px rgba(251, 191, 36, 0.2);
        }
        .nav-links {
            display: flex;
            gap: 28px;
        }
        .nav-links a {
            color: #cbd5e1;
            text-decoration: none;
            font-size: 0.95rem;
            font-weight: 500;
            padding: 8px 0;
            border-bottom: 2px solid transparent;
            transition: all 0.3s;
        }
        .nav-links a:hover {
            color: #fbbf24;
            border-bottom-color: #fbbf24;
        }
        /* 毛玻璃卡片 */
        .glass-card {
            background: rgba(255, 255, 255, 0.04);
            backdrop-filter: blur(16px);
            border: 1px solid rgba(251, 191, 36, 0.08);
            border-radius: 24px;
            padding: 32px;
            transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
            box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
        }
        .glass-card:hover {
            transform: translateY(-6px);
            border-color: rgba(251, 191, 36, 0.25);
            box-shadow: 0 16px 48px rgba(251, 191, 36, 0.08);
        }
        /* 标题 */
        h1, h2, h3 {
            font-weight: 700;
            letter-spacing: -0.02em;
        }
        h1 {
            font-size: 3rem;
            color: #fbbf24;
            text-align: center;
            margin: 48px 0 16px;
            text-shadow: 0 0 60px rgba(251, 191, 36, 0.15);
        }
        h2 {
            font-size: 2rem;
            color: #fbbf24;
            margin-bottom: 32px;
            display: flex;
            align-items: center;
            gap: 12px;
        }
        h2:before {
            content: '';
            width: 6px;
            height: 32px;
            background: #fbbf24;
            border-radius: 4px;
            display: inline-block;
        }
        .section {
            padding: 64px 0;
        }
        /* hero */
        .hero {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 48px;
            flex-wrap: wrap;
        }
        .hero-text {
            flex: 1 1 400px;
        }
        .hero-text p {
            font-size: 1.2rem;
            color: #94a3b8;
            margin: 24px 0 32px;
        }
        .hero-img {
            flex: 1 1 400px;
            border-radius: 24px;
            overflow: hidden;
            box-shadow: 0 20px 60px rgba(0,0,0,0.5);
        }
        .hero-img img {
            width: 100%;
            height: auto;
            display: block;
        }
        .cta-btn {
            display: inline-block;
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #0b1120;
            font-weight: 700;
            padding: 16px 40px;
            border-radius: 60px;
            text-decoration: none;
            font-size: 1.1rem;
            transition: all 0.3s;
            box-shadow: 0 8px 24px rgba(251, 191, 36, 0.3);
        }
        .cta-btn:hover {
            transform: scale(1.03);
            box-shadow: 0 12px 32px rgba(251, 191, 36, 0.5);
        }
        /* 网格 */
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
            gap: 24px;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #fbbf24;
            line-height: 1.2;
            margin-bottom: 8px;
        }
        .stat-label {
            color: #94a3b8;
            font-size: 1rem;
        }
        /* 新闻 */
        .news-card {
            padding: 24px;
        }
        .news-date {
            color: #fbbf24;
            font-size: 0.85rem;
            font-weight: 500;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .news-card h3 {
            font-size: 1.3rem;
            margin-bottom: 12px;
            color: #f1f5f9;
        }
        .news-card p {
            color: #94a3b8;
            font-size: 0.95rem;
        }
        /* FAQ */
        .faq-item {
            margin-bottom: 20px;
            padding: 24px;
            background: rgba(255,255,255,0.02);
            border-radius: 16px;
            border-left: 4px solid #fbbf24;
        }
        .faq-item h3 {
            font-size: 1.15rem;
            color: #fbbf24;
            margin-bottom: 12px;
        }
        .faq-item p {
            color: #94a3b8;
        }
        /* 合作伙伴 */
        .partner-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 24px;
            justify-content: center;
            align-items: center;
        }
        .partner-item {
            background: rgba(255,255,255,0.03);
            padding: 16px 28px;
            border-radius: 40px;
            border: 1px solid rgba(251,191,36,0.1);
            font-weight: 500;
            color: #94a3b8;
        }
        /* 页脚 */
        footer {
            background: rgba(11, 17, 32, 0.9);
            backdrop-filter: blur(16px);
            border-top: 1px solid rgba(251, 191, 36, 0.1);
            padding: 48px 0 32px;
            margin-top: 64px;
        }
        .footer-inner {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 32px;
        }
        .footer-col h4 {
            color: #fbbf24;
            margin-bottom: 16px;
            font-size: 1.1rem;
        }
        .footer-col a, .footer-col p {
            color: #94a3b8;
            text-decoration: none;
            display: block;
            margin-bottom: 8px;
            font-size: 0.9rem;
        }
        .footer-col a:hover {
            color: #fbbf24;
        }
        .footer-bottom {
            margin-top: 32px;
            padding-top: 24px;
            border-top: 1px solid rgba(251,191,36,0.08);
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            color: #64748b;
            font-size: 0.85rem;
        }
        .footer-links {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
        }
        .footer-links a:hover {
            color: #fbbf24;
        }
        /* 图片通用 */
        img {
            max-width: 100%;
            height: auto;
            border-radius: 16px;
        }
        .img-inline {
            margin-top: 24px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .nav-links { gap: 12px; flex-wrap: wrap; }
            .nav-links a { font-size: 0.85rem; }
            .hero { flex-direction: column; }
        }