* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', system-ui, -apple-system, sans-serif;
            background: linear-gradient(145deg, #1a0a2e 0%, #4a1a6f 100%);
            color: #f0e6ff;
            min-height: 100vh;
            line-height: 1.6;
        }
        a {
            color: #d4b0ff;
            text-decoration: none;
            transition: 0.3s;
        }
        a:hover {
            color: #fff;
            text-shadow: 0 0 12px #b366ff;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }
        /* 导航 */
        .navbar {
            background: rgba(26, 10, 46, 0.75);
            backdrop-filter: blur(18px);
            border-bottom: 1px solid rgba(180, 130, 255, 0.2);
            padding: 14px 0;
            position: sticky;
            top: 0;
            z-index: 100;
            box-shadow: 0 8px 32px rgba(0,0,0,0.6);
        }
        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #e0b0ff, #b366ff);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 1px;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-size: 1rem;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.3s;
        }
        .nav-links a:hover {
            border-bottom-color: #b366ff;
            transform: translateY(-2px);
        }
        /* 标题 */
        h1 {
            text-align: center;
            font-size: 3.2rem;
            font-weight: 800;
            padding: 60px 0 20px;
            background: linear-gradient(135deg, #f2e6ff, #c084fc);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            letter-spacing: 2px;
        }
        h2 {
            font-size: 2.2rem;
            font-weight: 600;
            margin-bottom: 30px;
            border-left: 6px solid #b366ff;
            padding-left: 20px;
        }
        /* 毛玻璃卡片 */
        .glass-card {
            background: rgba(255, 255, 255, 0.07);
            backdrop-filter: blur(14px);
            border: 1px solid rgba(255,255,255,0.1);
            border-radius: 28px;
            padding: 32px 28px;
            margin: 20px 0;
            box-shadow: 0 12px 40px rgba(0,0,0,0.3);
            transition: transform 0.2s, box-shadow 0.3s;
        }
        .glass-card:hover {
            transform: translateY(-6px);
            box-shadow: 0 18px 50px rgba(179, 102, 255, 0.25);
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 28px;
        }
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 28px;
        }
        img {
            max-width: 100%;
            border-radius: 20px;
            display: block;
            margin: 0 auto 18px;
            box-shadow: 0 8px 24px rgba(0,0,0,0.5);
            transition: 0.4s;
        }
        img:hover {
            transform: scale(1.02);
            box-shadow: 0 12px 36px #b366ff66;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(135deg, #7c3aed, #a855f7);
            color: #fff;
            padding: 14px 40px;
            border-radius: 60px;
            font-weight: 600;
            font-size: 1.1rem;
            transition: 0.3s;
            border: none;
            cursor: pointer;
            box-shadow: 0 8px 24px #7c3aed55;
        }
        .btn:hover {
            transform: scale(1.06);
            box-shadow: 0 12px 36px #a855f7aa;
        }
        /* 新闻列表 */
        .news-item {
            margin-bottom: 32px;
            border-bottom: 1px solid rgba(255,255,255,0.08);
            padding-bottom: 24px;
        }
        .news-item h3 {
            font-size: 1.5rem;
            margin-bottom: 10px;
        }
        .news-date {
            font-size: 0.9rem;
            color: #c9b0ff;
            margin-bottom: 8px;
        }
        /* FAQ */
        .faq-item {
            margin-bottom: 24px;
        }
        .faq-item h4 {
            font-size: 1.3rem;
            color: #d9b8ff;
            margin-bottom: 10px;
        }
        .faq-item p {
            padding-left: 12px;
            border-left: 3px solid #b366ff;
        }
        /* 页脚 */
        .footer {
            background: rgba(12, 4, 22, 0.8);
            backdrop-filter: blur(10px);
            border-top: 1px solid #2a1a4a;
            padding: 40px 0 28px;
            margin-top: 60px;
            text-align: center;
        }
        .footer a {
            color: #bca0ff;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 24px;
            margin-bottom: 24px;
        }
        .footer-copy {
            opacity: 0.7;
            font-size: 0.9rem;
        }
        .friend-links {
            margin: 24px 0 12px;
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 12px 24px;
        }
        .friend-links a {
            font-size: 0.95rem;
        }
        /* 响应式 */
        @media (max-width:768px){
            h1 { font-size: 2.2rem; }
            .navbar .container { flex-direction: column; gap: 12px; }
            .nav-links { gap: 16px; justify-content: center; }
        }