* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: 'Segoe UI', 'PingFang SC', Roboto, 'Helvetica Neue', sans-serif;
        }
        body {
            background: linear-gradient(145deg, #fef9f1 0%, #fdf0e0 100%);
            color: #2d1b0e;
            line-height: 1.7;
            overflow-x: hidden;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        nav {
            background: rgba(255, 247, 237, 0.85);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(249, 115, 22, 0.2);
            padding: 12px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 4px 20px rgba(249, 115, 22, 0.08);
        }
        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo {
            font-size: 1.6rem;
            font-weight: 700;
            background: linear-gradient(135deg, #f97316, #b45309);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            flex-wrap: wrap;
            gap: 6px 18px;
        }
        .nav-links a {
            color: #4a2c0a;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 14px;
            border-radius: 40px;
            transition: 0.25s;
            font-size: 0.95rem;
        }
        .nav-links a:hover {
            background: linear-gradient(135deg, #f97316, #ea580c);
            color: white;
            box-shadow: 0 4px 12px rgba(249, 115, 22, 0.3);
        }
        /* 通用卡片 */
        .card-glass {
            background: rgba(255, 255, 255, 0.72);
            backdrop-filter: blur(10px);
            border-radius: 36px;
            padding: 32px 28px;
            box-shadow: 0 15px 40px -12px rgba(74, 44, 10, 0.15);
            border: 1px solid rgba(255, 255, 255, 0.5);
            transition: 0.3s;
        }
        .card-glass:hover {
            transform: translateY(-3px);
            box-shadow: 0 22px 48px -14px rgba(249, 115, 22, 0.2);
        }
        h1, h2 {
            font-weight: 700;
            letter-spacing: -0.3px;
        }
        h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #f97316, #7c2d12);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            margin-bottom: 10px;
        }
        h2 {
            font-size: 2.1rem;
            color: #4a2c0a;
            margin-bottom: 20px;
            position: relative;
            display: inline-block;
        }
        h2::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 0;
            width: 50px;
            height: 4px;
            background: #f97316;
            border-radius: 4px;
        }
        .section {
            margin: 60px 0;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 28px;
        }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
        img {
            max-width: 100%;
            border-radius: 20px;
            display: block;
            box-shadow: 0 8px 24px rgba(0,0,0,0.06);
        }
        .btn-cta {
            background: linear-gradient(135deg, #f97316, #d97706);
            color: white;
            padding: 14px 40px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1.1rem;
            border: none;
            cursor: pointer;
            transition: 0.3s;
            display: inline-block;
            text-decoration: none;
            box-shadow: 0 8px 24px rgba(249, 115, 22, 0.3);
        }
        .btn-cta:hover {
            transform: scale(1.03);
            box-shadow: 0 12px 32px rgba(249, 115, 22, 0.4);
        }
        .tag {
            background: rgba(249, 115, 22, 0.12);
            color: #b45309;
            padding: 4px 16px;
            border-radius: 30px;
            font-size: 0.8rem;
            font-weight: 600;
            display: inline-block;
        }
        footer {
            background: #2d1b0e;
            color: #fae8d4;
            padding: 40px 0 20px;
            border-radius: 48px 48px 0 0;
            margin-top: 60px;
        }
        footer a {
            color: #fcd6b3;
            text-decoration: none;
            margin: 0 6px;
        }
        footer a:hover { color: #f97316; }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 8px 20px;
            justify-content: center;
            margin: 16px 0;
        }
        .news-card {
            background: white;
            border-radius: 28px;
            padding: 20px;
            box-shadow: 0 6px 18px rgba(0,0,0,0.04);
            transition: 0.25s;
        }
        .news-card:hover {
            box-shadow: 0 12px 30px rgba(249, 115, 22, 0.1);
        }
        .news-date {
            font-size: 0.8rem;
            color: #a87c5a;
            margin-bottom: 8px;
            display: block;
        }
        .faq-item {
            background: rgba(255,255,255,0.6);
            backdrop-filter: blur(4px);
            border-radius: 24px;
            padding: 18px 24px;
            margin-bottom: 14px;
            border-left: 4px solid #f97316;
        }
        .faq-item strong {
            color: #4a2c0a;
            display: block;
            font-size: 1.05rem;
            margin-bottom: 6px;
        }
        .geo-highlight {
            background: rgba(249, 115, 22, 0.06);
            padding: 24px 28px;
            border-radius: 40px;
            font-size: 1.05rem;
            line-height: 1.8;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .container { padding: 0 16px; }
        }