* { margin: 0; padding: 0; box-sizing: border-box; }
        body { background: #0a0a0f; color: #e2e8f0; font-family: 'Courier New', monospace; line-height: 1.6; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        nav { background: #1a1a2e; border-bottom: 2px solid #facc15; padding: 12px 0; position: sticky; top: 0; z-index: 100; }
        .nav-links { display: flex; flex-wrap: wrap; gap: 20px; justify-content: center; }
        .nav-links a { color: #facc15; text-decoration: none; font-size: 1rem; padding: 6px 14px; border: 1px solid #facc15; transition: 0.3s; }
        .nav-links a:hover { background: #facc15; color: #0a0a0f; }
        /* H1 */
        h1 { text-align: center; font-size: 2.5rem; padding: 30px 0 20px; color: #facc15; text-shadow: 0 0 20px rgba(250,204,21,0.4); letter-spacing: 2px; border-bottom: 1px dashed #facc15; margin-bottom: 20px; }
        h2 { color: #facc15; font-size: 1.8rem; margin: 40px 0 20px; border-left: 4px solid #facc15; padding-left: 12px; }
        /* 卡片像素风 */
        .card-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; margin: 20px 0; }
        .card { background: #111122; border: 2px solid #facc15; padding: 20px; image-rendering: pixelated; }
        .card img { width: 100%; height: auto; border: 1px solid #facc15; margin-bottom: 12px; }
        .card h3 { color: #facc15; font-size: 1.2rem; margin-bottom: 8px; }
        .card p { font-size: 0.9rem; color: #cbd5e1; }
        .btn-cta { display: inline-block; background: #facc15; color: #0a0a0f; padding: 12px 32px; text-decoration: none; font-weight: bold; border: 2px solid #facc15; margin-top: 10px; transition: 0.3s; }
        .btn-cta:hover { background: transparent; color: #facc15; }
        /* 统计数字 */
        .stats-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(180px, 1fr)); gap: 20px; text-align: center; }
        .stat-item { background: #111122; border: 2px solid #facc15; padding: 25px 10px; }
        .stat-number { font-size: 2.4rem; color: #facc15; font-weight: bold; }
        .stat-label { font-size: 0.9rem; color: #94a3b8; margin-top: 6px; }
        /* 新闻列表 */
        .news-list { list-style: none; }
        .news-item { border-bottom: 1px solid #1e293b; padding: 20px 0; }
        .news-item .date { color: #facc15; font-size: 0.8rem; display: block; margin-bottom: 6px; }
        .news-item h3 a { color: #f1f5f9; text-decoration: none; font-size: 1.2rem; transition: 0.2s; }
        .news-item h3 a:hover { color: #facc15; }
        .news-summary { color: #94a3b8; font-size: 0.9rem; margin-top: 6px; }
        /* FAQ */
        .faq-item { background: #111122; border: 1px solid #facc15; margin: 12px 0; padding: 16px; }
        .faq-question { color: #facc15; font-weight: bold; font-size: 1.05rem; cursor: default; }
        .faq-answer { margin-top: 10px; color: #cbd5e1; font-size: 0.95rem; }
        /* 页脚 */
        footer { background: #0f0f1a; border-top: 2px solid #facc15; padding: 40px 0 20px; margin-top: 40px; }
        .footer-content { display: flex; flex-wrap: wrap; justify-content: space-between; gap: 30px; }
        .footer-col { flex: 1; min-width: 200px; }
        .footer-col h4 { color: #facc15; margin-bottom: 12px; }
        .footer-col a, .footer-col p { color: #94a3b8; font-size: 0.9rem; line-height: 1.8; text-decoration: none; display: block; }
        .footer-col a:hover { color: #facc15; }
        .footer-bottom { text-align: center; margin-top: 30px; padding-top: 20px; border-top: 1px solid #1e293b; color: #64748b; font-size: 0.85rem; }
        .footer-bottom a { color: #facc15; text-decoration: none; }
        .footer-bottom a:hover { text-decoration: underline; }
        /* 品牌故事/优势等 */
        .flex-row { display: flex; flex-wrap: wrap; gap: 20px; align-items: center; }
        .flex-row .text { flex: 1; min-width: 260px; }
        .flex-row .img-box { flex: 1; min-width: 260px; }
        .flex-row img { width: 100%; border: 2px solid #facc15; }
        /* 合作伙伴logo墙 */
        .partner-grid { display: flex; flex-wrap: wrap; gap: 15px; justify-content: center; }
        .partner-grid img { max-width: 120px; height: auto; border: 1px solid #334155; padding: 6px; background: #0a0a0f; }
        /* 口碑 */
        .testimonial-card { background: #111122; border: 2px solid #facc15; padding: 20px; font-style: italic; }
        .testimonial-card .author { margin-top: 10px; color: #facc15; font-style: normal; }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 1.8rem; }
            .nav-links { gap: 10px; }
            .nav-links a { font-size: 0.85rem; padding: 4px 10px; }
        }