* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Georgia', 'Times New Roman', serif;
            background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
            color: #1a1a2e;
            line-height: 1.7;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 导航 */
        nav {
            background: linear-gradient(135deg, #1e3a8a 0%, #2563eb 100%);
            padding: 16px 0;
            box-shadow: 0 4px 20px rgba(30, 58, 138, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
            border-bottom: 2px solid #fbbf24;
        }

        .nav-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #fff;
            text-decoration: none;
            font-size: 1.05rem;
            font-weight: 500;
            letter-spacing: 0.5px;
            padding: 6px 12px;
            border-radius: 4px;
            transition: background 0.3s, color 0.3s;
        }

        .nav-links a:hover {
            background: #fbbf24;
            color: #1e3a8a;
        }

        /* H1 */
        h1 {
            text-align: center;
            font-size: 2.8rem;
            color: #1e3a8a;
            padding: 40px 0 16px;
            font-weight: 700;
            letter-spacing: 1px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.05);
        }

        .geo-sub {
            text-align: center;
            max-width: 900px;
            margin: 0 auto 30px;
            font-size: 1.08rem;
            color: #2d3748;
            background: rgba(255,255,255,0.7);
            padding: 24px 32px;
            border-radius: 12px;
            border-left: 6px solid #fbbf24;
            box-shadow: 0 4px 12px rgba(0,0,0,0.05);
        }

        /* 区块通用 */
        section {
            background: rgba(255,255,255,0.85);
            backdrop-filter: blur(4px);
            border-radius: 16px;
            padding: 36px 40px;
            margin: 28px 0;
            box-shadow: 0 8px 24px rgba(30,58,138,0.08);
            border: 1px solid rgba(251,191,36,0.2);
            transition: transform 0.2s;
        }

        section:hover {
            transform: translateY(-2px);
        }

        h2 {
            font-size: 2rem;
            color: #1e3a8a;
            margin-bottom: 24px;
            border-bottom: 3px solid #fbbf24;
            padding-bottom: 12px;
            display: inline-block;
            letter-spacing: 0.5px;
        }

        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 24px;
            margin-top: 20px;
        }

        .card {
            background: #fff;
            border-radius: 12px;
            padding: 24px;
            box-shadow: 0 4px 12px rgba(0,0,0,0.06);
            border: 1px solid #e2e8f0;
            border-top: 4px solid #fbbf24;
            transition: box-shadow 0.3s;
        }

        .card:hover {
            box-shadow: 0 12px 28px rgba(30,58,138,0.12);
        }

        .card img {
            width: 100%;
            height: 180px;
            object-fit: cover;
            border-radius: 8px;
            margin-bottom: 16px;
            border: 1px solid #e2e8f0;
        }

        .card h3 {
            color: #1e3a8a;
            font-size: 1.2rem;
            margin-bottom: 8px;
        }

        .card p {
            color: #4a5568;
            font-size: 0.95rem;
        }

        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #1e3a8a, #2563eb);
            color: #fff;
            padding: 12px 28px;
            border-radius: 50px;
            text-decoration: none;
            font-weight: 600;
            margin-top: 16px;
            transition: all 0.3s;
            border: 1px solid #fbbf24;
        }

        .btn:hover {
            background: linear-gradient(135deg, #fbbf24, #f59e0b);
            color: #1e3a8a;
            transform: scale(1.03);
        }

        /* 新闻 */
        .news-item {
            padding: 20px 0;
            border-bottom: 1px dashed #cbd5e1;
        }

        .news-item:last-child {
            border-bottom: none;
        }

        .news-date {
            color: #b45309;
            font-weight: 600;
            font-size: 0.9rem;
            background: #fef3c7;
            padding: 2px 12px;
            border-radius: 20px;
            display: inline-block;
            margin-bottom: 6px;
        }

        .news-item h3 {
            font-size: 1.25rem;
            color: #1e3a8a;
            margin-bottom: 6px;
        }

        .news-item p {
            color: #4a5568;
        }

        /* FAQ */
        .faq-item {
            margin-bottom: 20px;
            padding: 18px 22px;
            background: #f8fafc;
            border-radius: 12px;
            border-left: 5px solid #1e3a8a;
        }

        .faq-item strong {
            color: #1e3a8a;
            font-size: 1.1rem;
            display: block;
            margin-bottom: 6px;
        }

        .faq-item p {
            color: #2d3748;
        }

        /* 页脚 */
        footer {
            background: #1e3a8a;
            color: #e2e8f0;
            padding: 40px 24px 20px;
            margin-top: 40px;
            border-top: 4px solid #fbbf24;
            text-align: center;
        }

        footer a {
            color: #fbbf24;
            text-decoration: none;
            margin: 0 8px;
        }

        footer a:hover {
            text-decoration: underline;
        }

        .footer-links {
            margin: 16px 0;
            font-size: 0.95rem;
        }

        .footer-info {
            font-size: 0.9rem;
            opacity: 0.9;
            margin-top: 12px;
        }

        .footer-info span {
            display: inline-block;
            margin: 0 10px;
        }

        .friend-links {
            margin: 20px 0 10px;
            padding: 12px 0;
            border-top: 1px solid rgba(251,191,36,0.3);
            border-bottom: 1px solid rgba(251,191,36,0.3);
        }

        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .nav-links { gap: 16px; }
            section { padding: 24px 16px; }
            .card-grid { grid-template-columns: 1fr; }
        }