* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Georgia', 'Songti SC', serif; }
        body { background: #f9f3e7; color: #3e2c1a; line-height: 1.7; }
        .container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        .navbar { background: #2d6a4f; padding: 16px 0; border-bottom: 3px solid #d4a373; box-shadow: 0 4px 12px rgba(0,0,0,0.1); }
        .navbar .container { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .navbar .logo { font-size: 1.8rem; font-weight: bold; color: #f1e3c3; letter-spacing: 2px; text-shadow: 2px 2px 0 #3e2723; }
        .nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
        .nav-links a { color: #f1e3c3; text-decoration: none; font-size: 1rem; padding: 6px 12px; border-radius: 20px; background: rgba(255,255,255,0.08); transition: all 0.3s; }
        .nav-links a:hover { background: #d4a373; color: #2d6a4f; }
        /* 通用板块 */
        section { padding: 60px 0; }
        .section-title { font-size: 2.2rem; color: #2d6a4f; text-align: center; margin-bottom: 40px; position: relative; }
        .section-title::after { content: ''; display: block; width: 80px; height: 3px; background: #d4a373; margin: 10px auto 0; }
        .card { background: #fffcf5; border: 1px solid #ddd0b8; border-radius: 16px; padding: 30px; box-shadow: 6px 6px 0 rgba(45,106,79,0.08); margin-bottom: 24px; transition: 0.3s; }
        .card:hover { box-shadow: 8px 8px 0 rgba(45,106,79,0.15); }
        .grid-2, .grid-3, .grid-4 { display: grid; gap: 24px; }
        .grid-2 { grid-template-columns: 1fr 1fr; }
        .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
        .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
        @media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } }
        /* 图片 */
        img { max-width: 100%; height: auto; border-radius: 12px; border: 2px solid #ddd0b8; }
        /* 按钮 */
        .btn { display: inline-block; background: #2d6a4f; color: #f1e3c3; padding: 12px 32px; border-radius: 40px; text-decoration: none; font-weight: bold; border: none; cursor: pointer; transition: 0.3s; font-size: 1rem; }
        .btn:hover { background: #d4a373; color: #2d6a4f; transform: translateY(-2px); }
        /* 页脚 */
        .footer { background: #2d6a4f; color: #f1e3c3; padding: 40px 0 20px; margin-top: 40px; border-top: 4px solid #d4a373; }
        .footer a { color: #f1e3c3; text-decoration: underline; margin: 0 8px; }
        .footer .links { margin: 20px 0; font-size: 0.95rem; }
        .footer .copyright { font-size: 0.85rem; opacity: 0.8; }
        /* Hero */
        .hero { background: linear-gradient(145deg, #f9f3e7 0%, #e6d5b8 100%); border-bottom: 2px solid #d4a373; }
        .hero h1 { font-size: 2.6rem; color: #2d6a4f; margin-bottom: 20px; }
        .hero p { font-size: 1.15rem; max-width: 800px; margin: 0 auto 30px; color: #4a3b2a; }
        /* faq */
        .faq-item { margin-bottom: 16px; border-bottom: 1px dashed #d4a373; padding-bottom: 16px; }
        .faq-item h4 { color: #2d6a4f; cursor: pointer; font-size: 1.15rem; }
        .faq-item p { margin-top: 8px; color: #4a3b2a; }
        /* 新闻 */
        .news-item { margin-bottom: 24px; }
        .news-item .date { color: #8c7a63; font-size: 0.9rem; }
        /* 合作伙伴 */
        .partner-logo { display: flex; flex-wrap: wrap; justify-content: center; gap: 24px; }
        .partner-logo span { background: #fffcf5; border: 1px solid #ddd0b8; padding: 12px 24px; border-radius: 40px; font-weight: bold; color: #2d6a4f; }
        /* 统计 */
        .stat-number { font-size: 2.8rem; font-weight: bold; color: #2d6a4f; }
        .stat-label { font-size: 1rem; color: #6b5a48; }
        /* 做旧装饰 */
        .vintage-divider { height: 4px; background: repeating-linear-gradient(90deg, #d4a373 0px, #d4a373 8px, transparent 8px, transparent 16px); margin: 20px 0; }
        .text-center { text-align: center; }
        .mt-20 { margin-top: 20px; }
        .mb-20 { margin-bottom: 20px; }
        .img-row { display: flex; flex-wrap: wrap; gap: 16px; justify-content: center; margin: 24px 0; }
        .img-row img { width: 200px; }