* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', 'PingFang SC', Roboto, sans-serif; background: linear-gradient(135deg, #fce4ec 0%, #f8bbd0 30%, #f48fb1 100%); color: #3e2c2e; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 导航 */
        nav { background: linear-gradient(90deg, #d4afb7, #eac0c9); backdrop-filter: blur(10px); box-shadow: 0 4px 20px rgba(180, 100, 120, 0.25); padding: 14px 0; position: sticky; top: 0; z-index: 100; border-bottom: 2px solid #f5d8e0; }
        .nav-links { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
        .nav-links a { color: #4a2c30; font-weight: 600; text-decoration: none; font-size: 1.05rem; letter-spacing: 1px; padding: 6px 4px; border-bottom: 2px solid transparent; transition: 0.3s; }
        .nav-links a:hover { border-bottom-color: #b76e7a; color: #2c181a; transform: scale(1.02); }
        /* H1 */
        h1 { text-align: center; font-size: 3rem; font-weight: 700; letter-spacing: 3px; padding: 50px 20px 20px; color: #4a2c30; text-shadow: 0 0 15px rgba(255, 215, 220, 0.6); background: linear-gradient(to right, #d7a1ab, #b37784); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; }
        /* 卡片金属质感 */
        .card { background: rgba(255, 240, 244, 0.75); backdrop-filter: blur(6px); border-radius: 28px; padding: 30px 35px; box-shadow: 0 10px 35px rgba(150, 70, 90, 0.2), inset 0 1px 3px rgba(255, 220, 230, 0.9); border: 1px solid #f9d8e2; margin-bottom: 35px; transition: 0.25s; }
        .card:hover { box-shadow: 0 18px 45px rgba(160, 70, 100, 0.3); transform: translateY(-4px); }
        .section-title { font-size: 2rem; font-weight: 600; margin-bottom: 24px; text-align: center; color: #4f2f34; border-bottom: 3px solid #dbaab6; display: inline-block; padding-bottom: 8px; }
        .grid-2, .grid-3, .grid-4 { display: grid; gap: 28px; }
        .grid-2 { grid-template-columns: repeat(2,1fr); }
        .grid-3 { grid-template-columns: repeat(3,1fr); }
        .grid-4 { grid-template-columns: repeat(4,1fr); }
        img { width: 100%; height: auto; border-radius: 16px; box-shadow: 0 6px 18px rgba(0,0,0,0.05); }
        .btn-cta { display: inline-block; background: linear-gradient(145deg, #dba7b4, #b87b88); color: #fff; font-weight: 700; padding: 14px 44px; border-radius: 60px; text-decoration: none; font-size: 1.15rem; box-shadow: 0 10px 20px rgba(180, 80, 100, 0.3); transition: 0.3s; border: 1px solid #f2c8d2; }
        .btn-cta:hover { background: #c38b99; box-shadow: 0 16px 30px #b5708080; transform: scale(1.02); }
        footer { background: #3a2428; color: #f2dbe0; padding: 40px 20px; margin-top: 50px; border-radius: 40px 40px 0 0; text-align: center; }
        footer a { color: #f7ced8; text-decoration: underline; margin: 0 6px; }
        footer a:hover { color: #fff; }
        .news-item { margin-bottom: 24px; border-left: 5px solid #dbaab6; padding-left: 20px; }
        .news-item h3 { font-size: 1.3rem; }
        .news-date { color: #7a4d55; font-size: 0.9rem; margin-bottom: 6px; display: block; }
        .faq-item { margin-bottom: 28px; }
        .faq-item h4 { font-weight: 700; font-size: 1.15rem; margin-bottom: 8px; color: #4f2f34; }
        .partners-logos { display: flex; flex-wrap: wrap; justify-content: center; gap: 30px; }
        .partners-logos img { width: 100px; height: auto; filter: drop-shadow(0 0 6px #d7a1ab); }
        @media (max-width: 768px) { .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; } h1 { font-size: 2.2rem; } .nav-links { gap: 18px; } }