* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, sans-serif;
            background: linear-gradient(135deg, #0a0a0a 0%, #1a1a1a 100%);
            color: #f0f0f0;
            line-height: 1.7;
            min-height: 100vh;
            padding: 0 20px;
        }
        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 20px 0;
        }
        /* 导航栏 */
        .navbar {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 20px 0;
            border-bottom: 1px solid rgba(255, 215, 0, 0.08);
            flex-wrap: wrap;
        }
        .logo {
            font-size: 1.5rem;
            font-weight: 700;
            letter-spacing: 2px;
            color: #fff;
        }
        .logo span {
            color: #d4a017;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #ccc;
            text-decoration: none;
            font-size: 0.95rem;
            transition: 0.2s;
            position: relative;
            padding-bottom: 4px;
        }
        .nav-links a:hover {
            color: #d4a017;
        }
        .nav-links a::after {
            content: '';
            position: absolute;
            width: 0;
            height: 1px;
            bottom: 0;
            left: 0;
            background: #d4a017;
            transition: 0.3s;
        }
        .nav-links a:hover::after {
            width: 100%;
        }
        /* 通用区 */
        h1 {
            font-size: 2.6rem;
            font-weight: 300;
            letter-spacing: 1px;
            margin: 40px 0 20px;
            color: #fff;
            border-left: 4px solid #d4a017;
            padding-left: 20px;
        }
        h2 {
            font-size: 2rem;
            font-weight: 300;
            margin: 60px 0 30px;
            color: #e8e8e8;
            border-bottom: 1px solid #2a2a2a;
            padding-bottom: 12px;
        }
        h3 {
            font-size: 1.3rem;
            font-weight: 400;
            color: #d4a017;
            margin-bottom: 12px;
        }
        p {
            color: #bbb;
            margin-bottom: 16px;
        }
        a {
            color: #d4a017;
            text-decoration: none;
        }
        a:hover {
            text-decoration: underline;
        }
        .highlight-gold {
            color: #d4a017;
        }
        /* 卡片与网格 */
        .grid-2 {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
        }
        .grid-3 {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 30px;
        }
        .grid-4 {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
        }
        .card {
            background: rgba(255, 255, 255, 0.02);
            border: 1px solid rgba(255, 255, 255, 0.04);
            padding: 30px;
            border-radius: 0;
            transition: 0.2s;
        }
        .card:hover {
            border-color: rgba(212, 160, 23, 0.3);
        }
        .card img {
            width: 100%;
            height: auto;
            margin-bottom: 20px;
            filter: grayscale(0.1);
            opacity: 0.9;
        }
        .stat-number {
            font-size: 2.8rem;
            font-weight: 300;
            color: #d4a017;
            line-height: 1.2;
        }
        .stat-label {
            font-size: 0.9rem;
            color: #999;
            text-transform: uppercase;
            letter-spacing: 1px;
        }
        /* 新闻列表 */
        .news-item {
            padding: 24px 0;
            border-bottom: 1px solid #222;
        }
        .news-date {
            font-size: 0.8rem;
            color: #777;
            margin-bottom: 6px;
            letter-spacing: 0.5px;
        }
        .news-title {
            font-size: 1.2rem;
            font-weight: 400;
            color: #eee;
            margin-bottom: 8px;
        }
        .news-excerpt {
            color: #888;
            font-size: 0.95rem;
        }
        /* 品牌故事 / 愿景 */
        .story-section {
            padding: 30px 0;
        }
        /* FAQ */
        .faq-item {
            border-bottom: 1px solid #2a2a2a;
            padding: 24px 0;
        }
        .faq-q {
            font-weight: 500;
            font-size: 1.1rem;
            color: #ddd;
            margin-bottom: 10px;
        }
        .faq-a {
            color: #999;
            line-height: 1.8;
        }
        /* 友情链接 */
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
            padding: 40px 0 20px;
            border-top: 1px solid #222;
            margin-top: 40px;
        }
        .footer-links a {
            color: #888;
            font-size: 0.85rem;
        }
        .footer-links a:hover {
            color: #d4a017;
        }
        .footer-meta {
            text-align: center;
            color: #555;
            font-size: 0.8rem;
            padding: 20px 0 40px;
        }
        .footer-addr {
            color: #666;
            line-height: 1.8;
        }
        /* 合作伙伴 */
        .partner-grid {
            display: flex;
            flex-wrap: wrap;
            gap: 16px 32px;
            justify-content: center;
            color: #555;
            font-size: 0.9rem;
            letter-spacing: 1px;
        }
        .partner-grid span {
            border: 1px solid #2a2a2a;
            padding: 8px 20px;
        }
        .cta-button {
            display: inline-block;
            background: #d4a017;
            color: #0a0a0a;
            padding: 14px 48px;
            font-size: 1rem;
            font-weight: 600;
            letter-spacing: 1px;
            text-decoration: none;
            transition: 0.2s;
            margin-top: 12px;
        }
        .cta-button:hover {
            background: #e5b82a;
            text-decoration: none;
        }
        .text-center {
            text-align: center;
        }
        .mt-4 {
            margin-top: 40px;
        }
        .mb-2 {
            margin-bottom: 20px;
        }
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            .nav-links { gap: 16px; margin-top: 12px; }
        }