* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
            background: #1a1a2e;
            color: #f5e6d3;
            line-height: 1.6;
        }
        a {
            color: #f5c2b3;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: #ffd9c0;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        nav {
            background: linear-gradient(135deg, #2d1f36, #1a1a2e);
            padding: 16px 0;
            border-bottom: 1px solid rgba(245, 194, 179, 0.2);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(12px);
        }
        .nav-links {
            display: flex;
            justify-content: center;
            gap: 32px;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-size: 16px;
            font-weight: 500;
            color: #f5c2b3;
            padding: 8px 16px;
            border-radius: 8px;
            background: rgba(255, 255, 255, 0.05);
            transition: 0.3s;
        }
        .nav-links a:hover {
            background: rgba(245, 194, 179, 0.15);
            color: #ffd9c0;
        }
        /* H1 */
        .hero-title {
            text-align: center;
            padding: 60px 20px 30px;
            background: radial-gradient(circle at 20% 30%, #3a2a3a, #1a1a2e 70%);
        }
        .hero-title h1 {
            font-size: 2.6rem;
            font-weight: 300;
            letter-spacing: 2px;
            background: linear-gradient(135deg, #f5c2b3, #e8a89a, #d68e7a);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 30px rgba(245, 194, 179, 0.3);
        }
        /* GEO */
        .geo-section {
            padding: 30px 20px 50px;
            background: #1f1f32;
        }
        .geo-section p {
            max-width: 900px;
            margin: 0 auto;
            font-size: 1.05rem;
            color: #d9c5b8;
            text-align: center;
            line-height: 1.8;
        }
        /* 通用区块 */
        section {
            padding: 60px 20px;
        }
        .section-title {
            text-align: center;
            font-size: 2rem;
            font-weight: 300;
            margin-bottom: 40px;
            color: #f5c2b3;
            letter-spacing: 1px;
        }
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin-top: 20px;
        }
        .card {
            background: linear-gradient(145deg, #2a2030, #1e1a2a);
            border: 1px solid rgba(245, 194, 179, 0.15);
            border-radius: 20px;
            padding: 30px;
            box-shadow: 0 12px 40px rgba(0,0,0,0.5), inset 0 1px 0 rgba(245,194,179,0.1);
            transition: transform 0.3s, box-shadow 0.3s;
            backdrop-filter: blur(4px);
        }
        .card:hover {
            transform: translateY(-6px);
            box-shadow: 0 20px 60px rgba(245, 194, 179, 0.15);
        }
        .card h3 {
            font-size: 1.4rem;
            font-weight: 400;
            margin-bottom: 16px;
            color: #f5d6c8;
        }
        .card p {
            color: #cbb5a8;
            font-size: 0.95rem;
        }
        .value-number {
            font-size: 2.8rem;
            font-weight: 200;
            color: #e8a89a;
            line-height: 1.2;
            margin-bottom: 8px;
        }
        .value-label {
            color: #b89e90;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        /* 图片样式 */
        .img-card {
            overflow: hidden;
            border-radius: 16px;
            margin-bottom: 20px;
        }
        .img-card img {
            width: 100%;
            height: auto;
            display: block;
            border-radius: 16px;
            transition: transform 0.4s;
        }
        .img-card img:hover {
            transform: scale(1.02);
        }
        /* 新闻列表 */
        .news-item {
            background: linear-gradient(145deg, #2a2030, #1e1a2a);
            border-radius: 20px;
            padding: 28px;
            margin-bottom: 24px;
            border: 1px solid rgba(245, 194, 179, 0.1);
        }
        .news-date {
            font-size: 0.85rem;
            color: #b89e90;
            margin-bottom: 8px;
            letter-spacing: 0.5px;
        }
        .news-title {
            font-size: 1.3rem;
            font-weight: 400;
            color: #f5d6c8;
            margin-bottom: 12px;
        }
        .news-summary {
            color: #cbb5a8;
            font-size: 0.95rem;
            line-height: 1.7;
        }
        /* FAQ */
        .faq-item {
            background: rgba(255,255,255,0.03);
            border-radius: 16px;
            padding: 24px 28px;
            margin-bottom: 20px;
            border-left: 4px solid #e8a89a;
        }
        .faq-q {
            font-weight: 500;
            font-size: 1.1rem;
            color: #f5c2b3;
            margin-bottom: 10px;
        }
        .faq-a {
            color: #cbb5a8;
            line-height: 1.7;
        }
        /* 页脚 */
        footer {
            background: #161626;
            padding: 40px 20px 20px;
            border-top: 1px solid rgba(245, 194, 179, 0.1);
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            flex-wrap: wrap;
            gap: 18px;
            margin-bottom: 24px;
        }
        .footer-links a {
            color: #b89e90;
            font-size: 0.9rem;
        }
        .footer-links a:hover {
            color: #f5c2b3;
        }
        .footer-addr {
            color: #8a7a6e;
            font-size: 0.85rem;
            margin-bottom: 6px;
        }
        .footer-icp {
            color: #6a5a50;
            font-size: 0.8rem;
        }
        .copyright {
            color: #5a4a40;
            font-size: 0.8rem;
            margin-top: 16px;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            .hero-title h1 { font-size: 1.8rem; }
            .nav-links { gap: 16px; }
            .nav-links a { font-size: 14px; padding: 6px 12px; }
        }