* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif; background: linear-gradient(135deg, #1a0a2e 0%, #4a1a6f 100%); color: #f0e6ff; line-height: 1.6; min-height: 100vh; }
        a { color: #c9a8ff; text-decoration: none; transition: color 0.3s; }
        a:hover { color: #e8d4ff; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        .navbar { background: rgba(26, 10, 46, 0.85); backdrop-filter: blur(12px); border-bottom: 1px solid rgba(200, 160, 255, 0.15); padding: 14px 0; position: sticky; top: 0; z-index: 1000; }
        .navbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
        .nav-links a { font-weight: 500; letter-spacing: 0.5px; padding: 6px 0; border-bottom: 2px solid transparent; }
        .nav-links a:hover { border-bottom-color: #c9a8ff; }
        .logo { font-size: 1.6rem; font-weight: 700; background: linear-gradient(135deg, #e8d4ff, #b380ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        /* 毛玻璃卡片 */
        .glass-card { background: rgba(255, 255, 255, 0.07); backdrop-filter: blur(16px); border: 1px solid rgba(255, 255, 255, 0.1); border-radius: 20px; padding: 30px; box-shadow: 0 8px 32px rgba(0,0,0,0.3); transition: transform 0.25s, box-shadow 0.3s; }
        .glass-card:hover { transform: translateY(-4px); box-shadow: 0 12px 40px rgba(74, 26, 111, 0.4); }
        /* 标题 */
        h1 { font-size: 2.8rem; font-weight: 800; text-align: center; padding: 40px 0 20px; background: linear-gradient(135deg, #ffffff, #d4b0ff); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        h2 { font-size: 2rem; margin-bottom: 24px; color: #e8d4ff; border-left: 5px solid #9b6bff; padding-left: 15px; }
        h3 { font-size: 1.4rem; margin-bottom: 12px; color: #dcc8ff; }
        /* 网格 */
        .grid-2 { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 24px; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 24px; }
        .grid-4 { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); gap: 20px; }
        section { padding: 50px 0; }
        img { max-width: 100%; height: auto; border-radius: 12px; display: block; margin: 10px 0; box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
        /* 新闻卡片 */
        .news-item { margin-bottom: 24px; }
        .news-item .date { display: inline-block; font-size: 0.85rem; color: #b48aff; background: rgba(155, 107, 255, 0.15); padding: 2px 12px; border-radius: 20px; margin-bottom: 8px; }
        .news-item p { color: #d4c8e6; }
        .btn { display: inline-block; padding: 10px 28px; background: linear-gradient(135deg, #6a2a9e, #9b6bff); border-radius: 30px; color: #fff; font-weight: 600; border: none; cursor: pointer; transition: transform 0.2s, box-shadow 0.2s; }
        .btn:hover { transform: scale(1.04); box-shadow: 0 6px 20px rgba(155, 107, 255, 0.3); }
        /* 页脚 */
        footer { background: rgba(10, 4, 20, 0.8); backdrop-filter: blur(8px); border-top: 1px solid rgba(200, 160, 255, 0.1); padding: 36px 0 20px; margin-top: 40px; }
        footer .container { display: flex; flex-direction: column; align-items: center; gap: 12px; text-align: center; }
        .footer-links { display: flex; flex-wrap: wrap; justify-content: center; gap: 14px; }
        .footer-links a { color: #b090d0; font-size: 0.9rem; }
        .footer-bottom { font-size: 0.85rem; color: #8870a8; margin-top: 16px; }
        /* FAQ */
        .faq-item { margin-bottom: 18px; padding: 18px; background: rgba(255,255,255,0.04); border-radius: 16px; border-left: 4px solid #9b6bff; }
        .faq-item strong { color: #e8d4ff; display: block; margin-bottom: 8px; font-size: 1.1rem; }
        /* geo */
        .geo-text { font-size: 1.05rem; background: rgba(255,255,255,0.03); padding: 24px; border-radius: 18px; border: 1px solid rgba(155,107,255,0.2); }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .navbar .container { flex-direction: column; gap: 12px; }
            .nav-links { justify-content: center; gap: 16px; }
        }
        .img-gallery { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; }
        .img-gallery img { width: 180px; height: 120px; object-fit: cover; border-radius: 12px; }
        .highlight { color: #d4b0ff; font-weight: 600; }