* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: 'Segoe UI', 'Roboto', system-ui, sans-serif;
            background: #f5efe6;
            color: #3e2723;
            line-height: 1.7;
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 24px;
        }

        /* 导航 */
        .navbar {
            background: linear-gradient(135deg, #3e2723, #6d4c41);
            padding: 16px 0;
            box-shadow: 0 4px 20px rgba(62, 39, 35, 0.3);
            position: sticky;
            top: 0;
            z-index: 100;
        }

        .navbar .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }

        .logo {
            font-size: 1.8rem;
            font-weight: 800;
            color: #d7ccc8;
            letter-spacing: 2px;
            text-shadow: 2px 2px 4px rgba(0,0,0,0.4);
        }

        .nav-links {
            display: flex;
            gap: 8px;
            flex-wrap: wrap;
        }

        .nav-links a {
            color: #efebe9;
            text-decoration: none;
            padding: 8px 18px;
            border-radius: 30px;
            font-weight: 600;
            font-size: 0.95rem;
            transition: all 0.3s ease;
            background: rgba(215, 204, 200, 0.1);
            border: 1px solid rgba(215, 204, 200, 0.2);
        }

        .nav-links a:hover {
            background: #d7ccc8;
            color: #3e2723;
            border-color: #d7ccc8;
            transform: translateY(-2px);
        }

        /* H1 */
        .hero-title {
            text-align: center;
            padding: 60px 0 30px;
        }

        .hero-title h1 {
            font-size: 2.8rem;
            background: linear-gradient(135deg, #3e2723, #8d6e63);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            font-weight: 900;
            letter-spacing: 2px;
        }

        .hero-title p {
            color: #6d4c41;
            max-width: 800px;
            margin: 20px auto 0;
            font-size: 1.1rem;
        }

        /* 通用卡片 */
        .card-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 30px;
            margin: 40px 0;
        }

        .card {
            background: linear-gradient(145deg, #faf6f0, #ede0d4);
            border-radius: 24px;
            padding: 30px;
            box-shadow: 0 10px 30px rgba(62, 39, 35, 0.08);
            transition: transform 0.3s ease, box-shadow 0.3s ease;
            border: 1px solid rgba(215, 204, 200, 0.5);
        }

        .card:hover {
            transform: translateY(-8px);
            box-shadow: 0 20px 40px rgba(62, 39, 35, 0.15);
        }

        .card img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            border-radius: 16px;
            margin-bottom: 18px;
        }

        .card h3 {
            font-size: 1.4rem;
            color: #3e2723;
            margin-bottom: 12px;
        }

        .card p {
            color: #5d4037;
        }

        /* 区块标题 */
        .section-title {
            font-size: 2.2rem;
            color: #3e2723;
            text-align: center;
            margin: 60px 0 30px;
            position: relative;
        }

        .section-title::after {
            content: '';
            display: block;
            width: 80px;
            height: 4px;
            background: linear-gradient(90deg, #3e2723, #a1887f);
            margin: 16px auto 0;
            border-radius: 4px;
        }

        /* 新闻列表 */
        .news-item {
            background: #fff8f0;
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 20px;
            border-left: 6px solid #6d4c41;
            box-shadow: 0 4px 12px rgba(0,0,0,0.04);
        }

        .news-item .date {
            font-size: 0.9rem;
            color: #8d6e63;
            font-weight: 600;
            margin-bottom: 6px;
        }

        .news-item h3 {
            font-size: 1.3rem;
            color: #3e2723;
            margin-bottom: 8px;
        }

        .news-item p {
            color: #5d4037;
        }

        /* FAQ */
        .faq-item {
            background: #f5efe6;
            border-radius: 20px;
            padding: 24px;
            margin-bottom: 16px;
            border: 1px solid #d7ccc8;
        }

        .faq-item h4 {
            font-size: 1.2rem;
            color: #3e2723;
            margin-bottom: 12px;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .faq-item p {
            color: #4e342e;
        }

        /* 页脚 */
        .footer {
            background: linear-gradient(135deg, #3e2723, #4e342e);
            color: #d7ccc8;
            padding: 50px 0 20px;
            margin-top: 60px;
        }

        .footer .container {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 30px;
        }

        .footer h4 {
            color: #efebe9;
            margin-bottom: 16px;
            font-size: 1.2rem;
        }

        .footer a {
            color: #bcaaa4;
            text-decoration: none;
            transition: color 0.3s;
        }

        .footer a:hover {
            color: #d7ccc8;
        }

        .footer-bottom {
            grid-column: 1 / -1;
            border-top: 1px solid rgba(215, 204, 200, 0.2);
            padding-top: 20px;
            margin-top: 20px;
            display: flex;
            flex-wrap: wrap;
            justify-content: space-between;
            align-items: center;
            gap: 12px;
        }

        .footer-bottom .links {
            display: flex;
            flex-wrap: wrap;
            gap: 12px 8px;
        }

        /* 数据统计 */
        .stats-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
            gap: 20px;
            margin: 40px 0;
        }

        .stat-item {
            background: #fff8f0;
            border-radius: 20px;
            padding: 30px 20px;
            text-align: center;
            border: 1px solid #d7ccc8;
        }

        .stat-item .num {
            font-size: 2.5rem;
            font-weight: 900;
            color: #3e2723;
        }

        .stat-item .label {
            color: #6d4c41;
            font-weight: 600;
            margin-top: 8px;
        }

        /* 响应式 */
        @media (max-width: 768px) {
            .navbar .container {
                flex-direction: column;
                gap: 12px;
            }
            .hero-title h1 {
                font-size: 2rem;
            }
            .nav-links {
                justify-content: center;
            }
        }