* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Georgia', 'Times New Roman', serif;
        }
        body {
            background: linear-gradient(145deg, #f5f7fa 0%, #e8ecf1 100%);
            color: #1a1a2e;
            line-height: 1.7;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        .navbar {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            padding: 18px 0;
            box-shadow: 0 4px 25px rgba(30, 58, 138, 0.3);
            border-bottom: 2px solid #fbbf24;
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #fef9c3;
            text-decoration: none;
            font-size: 1.1rem;
            font-weight: 600;
            letter-spacing: 1px;
            padding: 8px 18px;
            border-radius: 30px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            background: rgba(255,255,240,0.15);
            border-color: #fbbf24;
            color: #ffffff;
            transform: translateY(-2px);
        }
        /* H1 */
        .hero-title {
            text-align: center;
            padding: 60px 20px 30px;
            background: linear-gradient(180deg, #1e3a8a 0%, #0f1f4a 100%);
            color: #ffffff;
            border-bottom: 3px solid #fbbf24;
        }
        .hero-title h1 {
            font-size: 2.6rem;
            letter-spacing: 2px;
            text-shadow: 0 4px 12px rgba(0,0,0,0.5);
            margin-bottom: 15px;
        }
        .hero-title h1 span {
            color: #fbbf24;
        }
        .hero-title p {
            font-size: 1.1rem;
            max-width: 800px;
            margin: 0 auto;
            opacity: 0.9;
            color: #e2e8f0;
        }
        /* 通用区块 */
        .section {
            padding: 60px 0;
        }
        .section-title {
            text-align: center;
            font-size: 2rem;
            color: #1e3a8a;
            margin-bottom: 40px;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 3px;
            background: #fbbf24;
            margin: 12px auto 0;
            border-radius: 2px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .card {
            background: #ffffff;
            border-radius: 16px;
            padding: 30px 25px;
            box-shadow: 0 10px 30px rgba(30, 58, 138, 0.08);
            border-left: 4px solid #fbbf24;
            transition: transform 0.3s, box-shadow 0.3s;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 40px rgba(30, 58, 138, 0.15);
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 10px;
            margin-bottom: 18px;
            border: 1px solid #e2e8f0;
        }
        .card h3 {
            color: #1e3a8a;
            font-size: 1.4rem;
            margin-bottom: 12px;
        }
        .card p {
            color: #475569;
        }
        /* 新闻 */
        .news-item {
            background: #ffffff;
            padding: 25px 30px;
            margin-bottom: 20px;
            border-radius: 14px;
            box-shadow: 0 5px 15px rgba(0,0,0,0.04);
            border-left: 5px solid #1e3a8a;
        }
        .news-item .date {
            font-size: 0.9rem;
            color: #f59e0b;
            font-weight: 600;
            margin-bottom: 6px;
        }
        .news-item h3 {
            color: #1e3a8a;
            font-size: 1.3rem;
            margin-bottom: 8px;
        }
        .news-item p {
            color: #334155;
        }
        /* FAQ */
        .faq-item {
            background: #ffffff;
            border-radius: 14px;
            margin-bottom: 16px;
            padding: 22px 30px;
            box-shadow: 0 3px 12px rgba(0,0,0,0.04);
            border: 1px solid #e2e8f0;
        }
        .faq-item h4 {
            color: #1e3a8a;
            font-size: 1.2rem;
            margin-bottom: 10px;
            cursor: default;
        }
        .faq-item p {
            color: #475569;
        }
        /* 合作伙伴 */
        .partner-logos {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            margin-top: 20px;
        }
        .partner-logos img {
            width: 80px;
            height: 80px;
            object-fit: contain;
            border-radius: 50%;
            background: #ffffff;
            padding: 8px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            transition: 0.3s;
        }
        .partner-logos img:hover {
            transform: scale(1.08);
        }
        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 25px;
            text-align: center;
        }
        .stat-item {
            background: #ffffff;
            padding: 30px 15px;
            border-radius: 16px;
            box-shadow: 0 8px 20px rgba(30,58,138,0.06);
            border-top: 4px solid #fbbf24;
        }
        .stat-item .number {
            font-size: 2.5rem;
            font-weight: 700;
            color: #1e3a8a;
        }
        .stat-item .label {
            color: #64748b;
            margin-top: 8px;
            font-size: 1rem;
        }
        /* 页脚 */
        .footer {
            background: #0f1f4a;
            color: #cbd5e1;
            padding: 50px 20px 30px;
            margin-top: 60px;
            border-top: 4px solid #fbbf24;
        }
        .footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        .footer a {
            color: #fbbf24;
            text-decoration: none;
            transition: 0.2s;
        }
        .footer a:hover {
            color: #ffffff;
        }
        .footer .links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
        }
        .footer .copy {
            text-align: center;
            width: 100%;
            margin-top: 30px;
            border-top: 1px solid #2d3a6a;
            padding-top: 25px;
            font-size: 0.9rem;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            .hero-title h1 { font-size: 1.8rem; }
            .nav-links { gap: 15px; }
            .nav-links a { font-size: 0.9rem; padding: 6px 12px; }
        }