* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', 'Microsoft YaHei', sans-serif;
            background: #f8fafc;
            color: #1e293b;
            line-height: 1.7;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航栏 */
        .navbar {
            background: linear-gradient(135deg, #1e3a8a, #2563eb);
            padding: 16px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(30, 58, 138, 0.25);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .navbar .logo {
            font-size: 1.6rem;
            font-weight: 700;
            color: #fbbf24;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            padding: 8px 4px;
            border-bottom: 2px solid transparent;
            transition: 0.3s;
        }
        .nav-links a:hover {
            border-bottom-color: #fbbf24;
            color: #fbbf24;
        }
        /* 主视觉 H1 */
        .hero {
            background: linear-gradient(145deg, #1e3a8a 0%, #0f172a 100%);
            padding: 80px 0 60px;
            text-align: center;
            color: #fff;
            border-bottom: 4px solid #fbbf24;
        }
        .hero h1 {
            font-size: 2.8rem;
            font-weight: 800;
            letter-spacing: 2px;
            margin-bottom: 16px;
            background: linear-gradient(to right, #fbbf24, #f59e0b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            display: inline-block;
        }
        .hero p {
            max-width: 800px;
            margin: 0 auto;
            font-size: 1.1rem;
            opacity: 0.9;
        }
        /* 通用区块 */
        .section {
            padding: 70px 0;
        }
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            text-align: center;
            margin-bottom: 48px;
            color: #1e3a8a;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #fbbf24, #f59e0b);
            margin: 12px auto 0;
            border-radius: 4px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 32px;
        }
        .card {
            background: #fff;
            border-radius: 20px;
            padding: 28px 20px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.05);
            border: 1px solid rgba(30,58,138,0.08);
            transition: 0.3s;
            text-align: center;
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(30,58,138,0.12);
            border-color: #fbbf24;
        }
        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 12px;
            margin-bottom: 16px;
            border: 2px solid rgba(251,191,36,0.2);
        }
        .card h3 {
            font-size: 1.3rem;
            color: #1e3a8a;
            margin-bottom: 10px;
        }
        .card p {
            color: #475569;
            font-size: 0.95rem;
        }
        /* 新闻列表 */
        .news-list {
            display: flex;
            flex-direction: column;
            gap: 28px;
        }
        .news-item {
            background: #fff;
            border-radius: 16px;
            padding: 24px 28px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            border-left: 6px solid #fbbf24;
            transition: 0.2s;
        }
        .news-item:hover {
            background: #f1f5f9;
        }
        .news-date {
            color: #64748b;
            font-size: 0.85rem;
            margin-bottom: 6px;
        }
        .news-item h3 {
            color: #1e3a8a;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }
        .news-item p {
            color: #334155;
        }
        /* FAQ */
        .faq-item {
            background: #fff;
            border-radius: 16px;
            padding: 24px 28px;
            margin-bottom: 20px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
            border: 1px solid #e2e8f0;
        }
        .faq-item h3 {
            color: #1e3a8a;
            font-size: 1.15rem;
            margin-bottom: 10px;
        }
        .faq-item p {
            color: #475569;
        }
        /* GEO */
        .geo-box {
            background: #fff;
            border-radius: 24px;
            padding: 40px;
            box-shadow: 0 6px 20px rgba(0,0,0,0.05);
            border: 1px solid #e2e8f0;
            margin-top: 30px;
        }
        .geo-box p {
            font-size: 1.05rem;
            color: #1e293b;
        }
        /* 页脚 */
        .footer {
            background: #0f172a;
            color: #cbd5e1;
            padding: 48px 0 30px;
            margin-top: 60px;
        }
        .footer .container {
            display: flex;
            flex-direction: column;
            gap: 20px;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 24px;
            justify-content: center;
        }
        .footer-links a {
            color: #94a3b8;
            text-decoration: none;
            font-size: 0.9rem;
            transition: 0.2s;
        }
        .footer-links a:hover {
            color: #fbbf24;
        }
        .footer-info {
            text-align: center;
            font-size: 0.85rem;
            border-top: 1px solid #1e293b;
            padding-top: 24px;
            margin-top: 12px;
        }
        .footer-info p {
            margin: 4px 0;
        }
        .friend-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 10px 16px;
            background: #1e293b;
            padding: 16px 20px;
            border-radius: 12px;
            margin: 10px 0;
        }
        .friend-links a {
            color: #fbbf24;
            text-decoration: none;
            font-size: 0.9rem;
        }
        .friend-links a:hover {
            text-decoration: underline;
        }
        @media (max-width: 768px) {
            .hero h1 { font-size: 2rem; }
            .navbar .container { flex-direction: column; gap: 12px; }
            .nav-links { justify-content: center; gap: 16px; }
        }