* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', 'Roboto', Arial, sans-serif;
            background: linear-gradient(135deg, #1a0a0a 0%, #2c0e0e 50%, #1a0505 100%);
            color: #f0e6d3;
            line-height: 1.7;
            min-height: 100vh;
        }
        a {
            color: #f1c40f;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #e67e22;
            text-shadow: 0 0 8px rgba(241, 196, 15, 0.3);
        }
        img {
            max-width: 100%;
            height: auto;
            border-radius: 8px;
            display: block;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        nav {
            background: linear-gradient(135deg, #4a0a0a, #991b1b);
            padding: 15px 0;
            box-shadow: 0 4px 20px rgba(0, 0, 0, 0.6);
            border-bottom: 2px solid #f1c40f;
            position: sticky;
            top: 0;
            z-index: 1000;
        }
        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 900;
            color: #f1c40f;
            text-transform: uppercase;
            letter-spacing: 2px;
            text-shadow: 0 2px 10px rgba(241, 196, 15, 0.3);
        }
        .nav-links {
            display: flex;
            gap: 25px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #f0e6d3;
            font-weight: 600;
            padding: 8px 16px;
            border-radius: 30px;
            background: rgba(255, 255, 255, 0.05);
            border: 1px solid transparent;
            transition: all 0.3s ease;
            font-size: 0.95rem;
        }
        .nav-links a:hover {
            background: #f1c40f;
            color: #4a0a0a;
            border-color: #f1c40f;
            box-shadow: 0 0 20px rgba(241, 196, 15, 0.4);
        }
        /* H1 区域 */
        .hero-section {
            padding: 60px 0 40px;
            text-align: center;
            background: radial-gradient(circle at 50% 30%, rgba(153, 27, 27, 0.3), transparent 70%);
        }
        h1 {
            font-size: 3.5rem;
            font-weight: 900;
            color: #f1c40f;
            text-shadow: 0 4px 25px rgba(241, 196, 15, 0.5);
            letter-spacing: 2px;
            margin-bottom: 20px;
        }
        .geo-desc {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.15rem;
            color: #d4c5a9;
            padding: 20px;
            background: rgba(0, 0, 0, 0.4);
            border-radius: 12px;
            border-left: 4px solid #f1c40f;
        }
        /* 通用区块 */
        .section {
            padding: 50px 0;
        }
        .section-title {
            font-size: 2.2rem;
            font-weight: 800;
            color: #f1c40f;
            text-align: center;
            margin-bottom: 40px;
            text-transform: uppercase;
            letter-spacing: 1px;
            text-shadow: 0 2px 10px rgba(241, 196, 15, 0.2);
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
        }
        .card {
            background: linear-gradient(145deg, #2c0e0e, #3a1414);
            border: 2px solid #b8860b;
            border-radius: 16px;
            padding: 25px;
            box-shadow: 0 8px 30px rgba(0, 0, 0, 0.5);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 16px 40px rgba(241, 196, 15, 0.2);
            border-color: #f1c40f;
        }
        .card img {
            margin-bottom: 15px;
            border-radius: 8px;
            width: 100%;
            height: 200px;
            object-fit: cover;
        }
        .card h3 {
            color: #f1c40f;
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        .card p {
            color: #c5b8a0;
            font-size: 0.95rem;
        }
        /* 新闻 */
        .news-item {
            background: linear-gradient(145deg, #2c0e0e, #3a1414);
            border: 2px solid #b8860b;
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 25px;
            transition: all 0.3s ease;
        }
        .news-item:hover {
            border-color: #f1c40f;
            box-shadow: 0 8px 25px rgba(241, 196, 15, 0.15);
        }
        .news-date {
            color: #f1c40f;
            font-weight: 700;
            font-size: 0.9rem;
            margin-bottom: 8px;
            display: inline-block;
            background: rgba(241, 196, 15, 0.1);
            padding: 4px 12px;
            border-radius: 20px;
        }
        .news-title {
            font-size: 1.4rem;
            font-weight: 700;
            color: #e6d5b8;
            margin-bottom: 12px;
        }
        .news-summary {
            color: #b8a88c;
            line-height: 1.8;
        }
        /* FAQ */
        .faq-item {
            background: linear-gradient(145deg, #2c0e0e, #3a1414);
            border: 2px solid #b8860b;
            border-radius: 16px;
            padding: 25px;
            margin-bottom: 20px;
        }
        .faq-question {
            font-size: 1.2rem;
            font-weight: 700;
            color: #f1c40f;
            margin-bottom: 12px;
            cursor: pointer;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }
        .faq-answer {
            color: #c5b8a0;
            line-height: 1.8;
        }
        /* 页脚 */
        footer {
            background: linear-gradient(135deg, #1a0505, #2c0e0e);
            border-top: 3px solid #b8860b;
            padding: 50px 0 30px;
            margin-top: 60px;
        }
        .footer-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
            gap: 30px;
            margin-bottom: 30px;
        }
        .footer-grid h4 {
            color: #f1c40f;
            font-size: 1.2rem;
            margin-bottom: 15px;
        }
        .footer-grid p, .footer-grid a {
            color: #b8a88c;
            font-size: 0.9rem;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 15px;
            justify-content: center;
            padding: 20px 0;
            border-top: 1px solid rgba(184, 134, 11, 0.3);
            border-bottom: 1px solid rgba(184, 134, 11, 0.3);
            margin-bottom: 20px;
        }
        .footer-links a {
            color: #f1c40f;
            font-weight: 500;
        }
        .footer-bottom {
            text-align: center;
            color: #8a7a60;
            font-size: 0.85rem;
        }
        /* 按钮 */
        .btn {
            display: inline-block;
            padding: 12px 35px;
            background: linear-gradient(135deg, #f1c40f, #e67e22);
            color: #4a0a0a;
            font-weight: 700;
            border-radius: 40px;
            border: none;
            cursor: pointer;
            transition: all 0.3s ease;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        .btn:hover {
            transform: scale(1.05);
            box-shadow: 0 8px 30px rgba(241, 196, 15, 0.4);
        }
        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 25px;
            text-align: center;
        }
        .stat-item {
            background: rgba(255, 255, 255, 0.05);
            padding: 30px 15px;
            border-radius: 16px;
            border: 1px solid #b8860b;
        }
        .stat-number {
            font-size: 3rem;
            font-weight: 900;
            color: #f1c40f;
        }
        .stat-label {
            color: #c5b8a0;
            font-size: 1rem;
            margin-top: 8px;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2.2rem; }
            .nav-container { flex-direction: column; gap: 15px; }
            .nav-links { justify-content: center; gap: 12px; }
            .nav-links a { font-size: 0.85rem; padding: 6px 12px; }
            .section-title { font-size: 1.8rem; }
        }
        /* 图片占位装饰 */
        .img-frame {
            border-radius: 12px;
            overflow: hidden;
            border: 2px solid #b8860b;
        }
        .highlight-text {
            color: #f1c40f;
            font-weight: 600;
        }