* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'PingFang SC', Roboto, 'Helvetica Neue', sans-serif;
            background: linear-gradient(145deg, #fef9ec 0%, #fdf0d9 100%);
            color: #3b2a0e;
            line-height: 1.7;
        }
        /* 导航栏 */
        .navbar {
            background: linear-gradient(135deg, #f97316 0%, #4a2c0a 100%);
            padding: 0.8rem 2rem;
            display: flex;
            justify-content: space-between;
            align-items: center;
            flex-wrap: wrap;
            box-shadow: 0 6px 20px rgba(249, 115, 22, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .navbar .logo {
            font-weight: 700;
            font-size: 1.4rem;
            color: #fff3e0;
            letter-spacing: 1px;
            text-shadow: 0 2px 4px rgba(0,0,0,0.2);
        }
        .navbar .logo span {
            color: #fbbf24;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
        }
        .nav-links a {
            color: #fff8f0;
            text-decoration: none;
            font-weight: 500;
            padding: 0.4rem 0.2rem;
            border-bottom: 2px solid transparent;
            transition: 0.25s;
            font-size: 0.95rem;
        }
        .nav-links a:hover {
            border-bottom-color: #fbbf24;
            color: #fde68a;
        }
        /* 主容器 */
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 1.5rem;
        }
        /* H1 */
        h1 {
            text-align: center;
            font-size: 2.8rem;
            font-weight: 800;
            background: linear-gradient(135deg, #f97316, #b45309);
            -webkit-background-clip: text;
            background-clip: text;
            color: transparent;
            margin: 2.5rem 0 0.6rem;
            letter-spacing: 2px;
        }
        .subhead {
            text-align: center;
            color: #7a5f3a;
            font-size: 1.1rem;
            margin-bottom: 2rem;
        }
        /* 通用标题 */
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            margin-bottom: 1.5rem;
            border-left: 8px solid #f97316;
            padding-left: 1.2rem;
            color: #3b2a0e;
        }
        /* 卡片 */
        .glass-card {
            background: rgba(255, 250, 240, 0.75);
            backdrop-filter: blur(8px);
            border-radius: 36px;
            box-shadow: 0 20px 40px -12px rgba(74, 44, 10, 0.2), 0 0 0 1px rgba(249, 115, 22, 0.1);
            padding: 2rem;
            transition: transform 0.2s ease;
        }
        .glass-card:hover {
            transform: translateY(-3px);
        }
        /* 图片统一样式 */
        .img-fluid {
            width: 100%;
            height: auto;
            border-radius: 24px;
            box-shadow: 0 12px 28px rgba(74,44,10,0.1);
            object-fit: cover;
        }
        .grid-pics {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
            gap: 1.5rem;
            margin: 2rem 0;
        }
        /* 新闻&FAQ */
        .news-grid, .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 2rem;
        }
        .news-item, .faq-item {
            background: white;
            padding: 1.8rem;
            border-radius: 32px;
            box-shadow: 0 10px 20px rgba(0,0,0,0.03);
            border: 1px solid rgba(249,115,22,0.15);
        }
        .news-item h3 {
            color: #b45309;
            margin-bottom: 0.6rem;
        }
        .news-date {
            font-size: 0.85rem;
            color: #a0855c;
            margin-bottom: 0.4rem;
        }
        .faq-item h4 {
            color: #4a2c0a;
            margin-bottom: 0.75rem;
            font-size: 1.2rem;
        }
        .faq-item p {
            color: #5f4826;
        }
        .btn-cta {
            display: inline-block;
            background: linear-gradient(135deg, #f97316, #d97706);
            color: #fff;
            padding: 0.9rem 2.5rem;
            border-radius: 60px;
            font-weight: 700;
            font-size: 1.2rem;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(249,115,22,0.35);
            transition: 0.25s;
            border: none;
            cursor: pointer;
        }
        .btn-cta:hover {
            transform: scale(1.04);
            box-shadow: 0 12px 32px rgba(249,115,22,0.5);
        }
        /* 页脚 */
        .footer {
            background: #2d1f08;
            color: #e7d6b8;
            padding: 3rem 1.5rem 1.5rem;
            margin-top: 4rem;
            border-radius: 48px 48px 0 0;
        }
        .footer a {
            color: #fbbf24;
            text-decoration: none;
        }
        .footer a:hover {
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 1.2rem;
            justify-content: center;
            margin-bottom: 1.8rem;
        }
        .footer-info {
            text-align: center;
            font-size: 0.9rem;
            line-height: 2;
        }
        .footer-info p {
            margin: 0.3rem 0;
        }
        hr {
            border: 0.5px solid rgba(255,200,130,0.2);
            margin: 1.5rem 0;
        }
        /* 数据统计 */
        .stats-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 2rem;
            justify-content: space-around;
            text-align: center;
        }
        .stat-item {
            background: rgba(255,255,240,0.7);
            padding: 1.8rem 1.2rem;
            border-radius: 40px;
            min-width: 140px;
            flex: 1;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 800;
            color: #f97316;
        }
        .stat-label {
            color: #5f4826;
            font-weight: 500;
        }
        .geo-text {
            font-size: 1.1rem;
            background: rgba(249,115,22,0.05);
            padding: 1.8rem;
            border-radius: 32px;
            border-left: 6px solid #f97316;
            margin: 1.5rem 0;
        }
        @media (max-width: 780px) {
            h1 { font-size: 2rem; }
            .news-grid, .faq-grid { grid-template-columns: 1fr; }
            .navbar { flex-direction: column; gap: 0.6rem; }
            .nav-links { justify-content: center; }
        }