* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
            font-family: system-ui, 'Segoe UI', Roboto, sans-serif;
        }
        body {
            background: linear-gradient(145deg, #1a0a0a 0%, #2d0b0b 100%);
            color: #f0e6d3;
            line-height: 1.6;
            min-height: 100vh;
        }
        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        nav {
            background: #2d0a0a;
            border-bottom: 2px solid #b8860b;
            padding: 16px 0;
            box-shadow: 0 4px 20px rgba(0,0,0,0.8);
            position: sticky;
            top: 0;
            z-index: 100;
        }
        nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .logo {
            font-weight: 800;
            font-size: 1.5rem;
            background: linear-gradient(135deg, #f7d68a, #b8860b);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            letter-spacing: 2px;
        }
        .nav-links {
            display: flex;
            gap: 24px;
            flex-wrap: wrap;
        }
        .nav-links a {
            color: #e6c9a0;
            text-decoration: none;
            font-weight: 500;
            padding: 6px 12px;
            border-radius: 30px;
            transition: all 0.3s;
            border: 1px solid transparent;
        }
        .nav-links a:hover {
            color: #f5e6c8;
            background: #5e1a1a;
            border-color: #b8860b;
        }
        /* H1 */
        h1 {
            text-align: center;
            font-size: 2.4rem;
            margin: 40px 0 20px;
            background: linear-gradient(135deg, #f7d68a, #c79a3e);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-shadow: 0 2px 6px rgba(0,0,0,0.5);
        }
        /* 卡片 */
        .card {
            background: #2c0f0f;
            border: 1px solid #b8860b;
            border-radius: 20px;
            padding: 30px 25px;
            margin: 30px 0;
            box-shadow: 0 10px 25px rgba(0,0,0,0.7);
            transition: transform 0.2s;
        }
        .card h2, .card h3 {
            color: #f5d98a;
            border-left: 4px solid #b8860b;
            padding-left: 15px;
            margin-bottom: 20px;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 24px;
        }
        .grid-2 { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }
        .grid-3 { grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); }
        .grid-4 { grid-template-columns: repeat(auto-fit, minmax(200px, 1fr)); }
        img {
            width: 100%;
            border-radius: 16px;
            border: 2px solid #b8860b;
            margin-bottom: 10px;
            object-fit: cover;
            max-height: 220px;
        }
        .stat-item {
            background: #3e1515;
            padding: 20px;
            border-radius: 16px;
            text-align: center;
            border: 1px solid #b8860b;
        }
        .stat-item span {
            font-size: 2.6rem;
            font-weight: 800;
            color: #f7d68a;
            display: block;
        }
        .btn {
            display: inline-block;
            background: linear-gradient(145deg, #991b1b, #4a0a0a);
            border: 1px solid #b8860b;
            color: #f5e6c8;
            padding: 12px 28px;
            border-radius: 40px;
            font-weight: 600;
            text-decoration: none;
            transition: 0.3s;
        }
        .btn:hover {
            background: #b8860b;
            color: #1a0a0a;
        }
        /* FAQ */
        .faq-item {
            background: #1e0b0b;
            padding: 18px 22px;
            margin: 14px 0;
            border-radius: 16px;
            border-left: 5px solid #b8860b;
        }
        .faq-item strong {
            color: #f7d68a;
            font-size: 1.2rem;
        }
        /* 新闻 */
        .news-card {
            background: #271010;
            padding: 20px;
            border-radius: 18px;
            border: 1px solid #b8860b;
        }
        .news-card h3 {
            color: #eccc7a;
        }
        .news-date {
            color: #a08060;
            font-size: 0.85rem;
        }
        /* 页脚 */
        footer {
            background: #1a0808;
            border-top: 2px solid #b8860b;
            padding: 40px 0 20px;
            margin-top: 60px;
        }
        footer .container {
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            gap: 30px;
        }
        footer .footer-col {
            flex: 1 1 200px;
        }
        footer a {
            color: #c9a87c;
            text-decoration: none;
        }
        footer a:hover {
            color: #f5d98a;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px;
            margin-top: 12px;
        }
        .copyright {
            text-align: center;
            margin-top: 30px;
            color: #7a6a5a;
            font-size: 0.9rem;
            border-top: 1px solid #3d2a1a;
            padding-top: 20px;
        }
        @media (max-width: 700px) {
            h1 { font-size: 1.8rem; }
            nav .container { flex-direction: column; gap: 12px; }
        }