* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: linear-gradient(145deg, #fff8f0 0%, #fef3e7 100%);
            color: #2d1b0e;
            line-height: 1.7;
            overflow-x: hidden;
        }
        a {
            text-decoration: none;
            color: inherit;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* header */
        header {
            background: linear-gradient(135deg, #f97316, #4a2c0a);
            padding: 16px 24px;
            border-radius: 0 0 32px 32px;
            box-shadow: 0 12px 28px rgba(249, 115, 22, 0.25);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        .header-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 12px;
        }
        .logo-area {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-area img {
            height: 42px;
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.2));
        }
        .site-title {
            color: #fff;
            font-weight: 700;
            font-size: 1.3rem;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 20px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #fff3e0;
            font-weight: 600;
            font-size: 1rem;
            padding: 8px 14px;
            border-radius: 40px;
            background: rgba(255,255,240,0.08);
            transition: 0.3s;
            backdrop-filter: blur(2px);
            border: 1px solid rgba(255,215,150,0.2);
        }
        .nav-links a:hover {
            background: rgba(255,255,255,0.25);
            color: #fff;
            border-color: #ffb347;
            transform: scale(1.02);
        }
        /* H1 */
        .hero-block {
            text-align: center;
            padding: 60px 24px 30px;
        }
        .hero-block h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #f97316, #b75f0a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 800;
            letter-spacing: 1px;
            margin-bottom: 20px;
            text-shadow: 0 4px 10px rgba(249,115,22,0.15);
        }
        .geo-desc {
            max-width: 900px;
            margin: 0 auto 20px;
            background: rgba(255,255,245,0.7);
            backdrop-filter: blur(8px);
            border-radius: 40px;
            padding: 28px 32px;
            font-size: 1.1rem;
            color: #3a2a1a;
            border: 1px solid #facc9b;
            box-shadow: 0 6px 20px rgba(249, 115, 22, 0.08);
            line-height: 1.8;
        }
        /* 通用卡片区域 */
        .section-title {
            font-size: 2rem;
            font-weight: 700;
            color: #4a2c0a;
            text-align: center;
            margin: 50px 0 30px;
            position: relative;
        }
        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #f97316, #fbbf24);
            margin: 12px auto 0;
            border-radius: 4px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
            gap: 28px;
            margin: 30px 0;
        }
        .glass-card {
            background: rgba(255, 255, 245, 0.65);
            backdrop-filter: blur(12px);
            border-radius: 28px;
            padding: 28px 22px;
            border: 1px solid rgba(249, 115, 22, 0.20);
            box-shadow: 0 12px 30px rgba(74, 44, 10, 0.06);
            transition: all 0.3s;
        }
        .glass-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 36px rgba(249, 115, 22, 0.12);
            border-color: #f97316;
        }
        .glass-card img {
            width: 100%;
            border-radius: 20px;
            margin-bottom: 16px;
            aspect-ratio: 16/9;
            object-fit: cover;
            background: #f5dcc0;
        }
        .glass-card h3 {
            color: #4a2c0a;
            margin-bottom: 12px;
            font-size: 1.3rem;
        }
        .glass-card p {
            color: #4d3822;
        }
        .stat-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 30px;
            background: rgba(249,115,22,0.05);
            border-radius: 60px;
            padding: 40px 20px;
            backdrop-filter: blur(4px);
        }
        .stat-item {
            text-align: center;
            min-width: 150px;
        }
        .stat-number {
            font-size: 2.6rem;
            font-weight: 800;
            background: linear-gradient(145deg, #f97316, #b75f0a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
        }
        .stat-label {
            color: #5a3f26;
            font-weight: 600;
            margin-top: 6px;
        }
        /* FAQ */
        .faq-item {
            background: rgba(255,245,235,0.7);
            backdrop-filter: blur(6px);
            border-radius: 28px;
            padding: 24px;
            margin-bottom: 20px;
            border-left: 6px solid #f97316;
            transition: 0.2s;
        }
        .faq-item h4 {
            color: #4a2c0a;
            font-size: 1.2rem;
            margin-bottom: 12px;
        }
        .faq-item p {
            color: #3d2d1c;
        }
        /* 新闻 */
        .news-item {
            background: #fffcf8;
            border-radius: 28px;
            padding: 24px;
            margin-bottom: 24px;
            border: 1px solid #fad6af;
            box-shadow: 0 4px 14px rgba(249,115,22,0.04);
        }
        .news-item h3 {
            color: #4a2c0a;
            margin-bottom: 10px;
        }
        .news-date {
            display: inline-block;
            background: #f97316;
            color: #fff;
            padding: 2px 14px;
            border-radius: 40px;
            font-size: 0.85rem;
            font-weight: 600;
            margin-bottom: 12px;
        }
        .news-item p {
            color: #3f3222;
        }
        /* footer */
        footer {
            background: #2b1a0a;
            color: #f5e3d0;
            padding: 50px 24px 30px;
            border-radius: 48px 48px 0 0;
            margin-top: 60px;
        }
        footer a {
            color: #fbc48b;
            transition: 0.3s;
        }
        footer a:hover {
            color: #ffb347;
            text-decoration: underline;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px 30px;
            margin: 20px 0;
        }
        .footer-links a {
            font-size: 0.95rem;
        }
        .footer-info {
            text-align: center;
            font-size: 0.9rem;
            opacity: 0.9;
            line-height: 2;
        }
        .friend-links {
            text-align: center;
            margin: 28px 0 18px;
            padding: 18px 0;
            border-top: 1px solid #5a3f26;
            border-bottom: 1px solid #5a3f26;
        }
        .friend-links a {
            margin: 0 6px;
        }
        @media (max-width: 680px) {
            .hero-block h1 { font-size: 2rem; }
            .header-inner { flex-direction: column; }
            .nav-links { justify-content: center; }
        }