* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', system-ui, sans-serif; background: linear-gradient(145deg, #0e2b0e 0%, #2a4a1a 40%, #5c3a1e 100%); color: #f0e9d8; line-height: 1.7; min-height: 100vh; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        nav { background: rgba(26, 58, 26, 0.92); backdrop-filter: blur(6px); border-bottom: 2px solid #7c5c3a; padding: 12px 0; position: sticky; top: 0; z-index: 100; }
        .nav-flex { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .logo { font-size: 1.8rem; font-weight: bold; background: linear-gradient(135deg, #d4b48c, #a87f5a); -webkit-background-clip: text; -webkit-text-fill-color: transparent; letter-spacing: 2px; }
        .nav-links { display: flex; gap: 24px; flex-wrap: wrap; }
        .nav-links a { color: #d4c9a8; text-decoration: none; font-weight: 500; padding: 6px 14px; border-radius: 30px; transition: all 0.3s; border: 1px solid transparent; }
        .nav-links a:hover { background: #3a6b3a; color: #f5edc8; border-color: #b89a6a; }
        /* 通用卡片 */
        .card { background: rgba(30, 60, 30, 0.7); backdrop-filter: blur(4px); border-radius: 24px; padding: 30px; margin: 36px 0; border: 1px solid #7c5c3a; box-shadow: 0 8px 24px rgba(0,0,0,0.6); }
        h1 { font-size: 2.8rem; text-align: center; margin: 40px 0 20px; background: linear-gradient(135deg, #e6d5b0, #b88f5e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; text-shadow: 2px 2px 8px rgba(0,0,0,0.3); }
        h2 { font-size: 2rem; color: #dcc9a4; border-left: 6px solid #8b6f44; padding-left: 18px; margin-bottom: 24px; }
        h3 { color: #cdb88a; margin-bottom: 12px; font-size: 1.3rem; }
        .grid-3 { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px,1fr)); gap: 28px; }
        .flex-center { display: flex; align-items: center; justify-content: center; flex-wrap: wrap; gap: 30px; }
        .img-round { border-radius: 20px; max-width: 100%; height: auto; border: 2px solid #5f7f4f; box-shadow: 0 4px 16px rgba(0,0,0,0.5); transition: transform 0.3s; }
        .img-round:hover { transform: scale(1.02); }
        .btn-cta { display: inline-block; background: #7c5c3a; color: #fffbe6; padding: 14px 40px; border-radius: 50px; text-decoration: none; font-weight: bold; letter-spacing: 1px; transition: all 0.3s; border: 2px solid #aa875a; }
        .btn-cta:hover { background: #9e7a4e; transform: translateY(-4px); box-shadow: 0 8px 20px #1f3f1f; }
        .stat-number { font-size: 2.6rem; font-weight: 800; color: #e6cf9c; }
        .stat-label { color: #bdaa7e; }
        .news-item { background: rgba(20, 45, 20, 0.6); border-radius: 18px; padding: 20px; margin-bottom: 18px; border-left: 5px solid #8b7340; }
        .news-date { color: #bfa87c; font-size: 0.9rem; margin-bottom: 6px; }
        .faq-item { margin-bottom: 28px; border-bottom: 1px dashed #6b5a3a; padding-bottom: 20px; }
        .faq-q { font-weight: 700; color: #e3cc9a; font-size: 1.2rem; }
        .faq-a { margin-top: 10px; color: #ddd2b8; }
        .footer { background: #0f240f; border-top: 3px solid #5a4a2e; padding: 40px 0 20px; margin-top: 60px; }
        .footer a { color: #bfb088; text-decoration: none; margin: 0 8px; }
        .footer a:hover { color: #eaddb0; text-decoration: underline; }
        .partner-links a { display: inline-block; margin: 8px 12px; color: #bea775; }
        @media (max-width: 768px) { .nav-links { gap: 12px; } .nav-links a { font-size: 0.9rem; padding: 4px 10px; } h1 { font-size: 2rem; } }