* { margin: 0; padding: 0; box-sizing: border-box; font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif; }
        body { background: linear-gradient(145deg, #fbe9e7 0%, #fce4ec 100%); color: #3e2723; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 20px; }
        /* 导航 */
        .navbar { background: rgba(255, 215, 215, 0.4); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(233, 150, 147, 0.3); padding: 12px 0; position: sticky; top: 0; z-index: 100; }
        .nav-inner { display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap; }
        .logo { font-size: 1.6rem; font-weight: 700; background: linear-gradient(135deg, #d4a59a, #c48a80); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; letter-spacing: 2px; }
        .nav-links { display: flex; gap: 28px; flex-wrap: wrap; }
        .nav-links a { text-decoration: none; color: #5d4037; font-weight: 500; font-size: 1rem; transition: all 0.2s; border-bottom: 2px solid transparent; padding-bottom: 4px; }
        .nav-links a:hover { border-bottom-color: #c48a80; color: #4e342e; }
        /* 卡片金属质感 */
        .card { background: rgba(255, 255, 255, 0.5); backdrop-filter: blur(6px); border-radius: 32px; padding: 24px; box-shadow: 0 15px 35px rgba(180, 120, 110, 0.2), inset 0 1px 0 rgba(255,255,255,0.8); border: 1px solid rgba(215, 175, 165, 0.3); transition: transform 0.2s; }
        .card:hover { transform: translateY(-4px); }
        .glass-card { background: rgba(255, 240, 235, 0.5); backdrop-filter: blur(8px); border-radius: 28px; padding: 20px; border: 1px solid rgba(205, 160, 150, 0.2); }
        img { max-width: 100%; border-radius: 20px; display: block; height: auto; }
        h1 { font-size: 2.8rem; font-weight: 700; background: linear-gradient(135deg, #b8736a, #a4665e); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 20px; text-align: center; letter-spacing: 1px; }
        h2 { font-size: 2.0rem; color: #5d4037; margin-bottom: 16px; border-left: 6px solid #d4a59a; padding-left: 16px; }
        h3 { font-size: 1.3rem; color: #5d4037; margin-bottom: 10px; }
        .btn-rose { background: linear-gradient(145deg, #d4a59a, #c48a80); color: white; border: none; padding: 14px 38px; border-radius: 40px; font-weight: 600; font-size: 1.1rem; cursor: pointer; transition: 0.2s; box-shadow: 0 8px 18px rgba(196, 138, 128, 0.3); }
        .btn-rose:hover { transform: scale(1.03); background: #bc7d72; }
        footer { background: rgba(200, 165, 155, 0.2); backdrop-filter: blur(6px); border-top: 1px solid rgba(185, 140, 130, 0.2); padding: 40px 0; margin-top: 40px; }
        .footer-links a { color: #5d4037; text-decoration: none; margin: 0 10px; }
        .footer-links a:hover { text-decoration: underline; }
        .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 28px; }
        .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 24px; }
        .flex-center { display: flex; align-items: center; justify-content: center; gap: 20px; flex-wrap: wrap; }
        .text-center { text-align: center; }
        .mt-20 { margin-top: 20px; }
        .mb-20 { margin-bottom: 20px; }
        .section-padding { padding: 60px 0; }
        .news-item { margin-bottom: 30px; }
        .news-item h3 { font-size: 1.3rem; margin-bottom: 6px; }
        .news-date { color: #8d6e63; font-size: 0.9rem; }
        .faq-item { margin-bottom: 20px; border-bottom: 1px solid rgba(185, 140, 130, 0.2); padding-bottom: 16px; }
        .faq-question { font-weight: 700; font-size: 1.2rem; margin-bottom: 6px; color: #4e342e; }
        .faq-answer { color: #4e342e; }
        @media (max-width: 768px) { .grid-2, .grid-3 { grid-template-columns: 1fr; } .nav-links { gap: 14px; } h1 { font-size: 2.0rem; } }