* { margin: 0; padding: 0; box-sizing: border-box; }
        body { font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif; background: linear-gradient(145deg, #fce4ec 0%, #f8bbd0 100%); color: #3e2c2f; line-height: 1.7; }
        .container { max-width: 1280px; margin: 0 auto; padding: 0 24px; }
        /* 金属质感卡片 */
        .metal-card { background: rgba(255, 255, 255, 0.4); backdrop-filter: blur(6px); border-radius: 32px; padding: 28px 24px; box-shadow: 0 15px 35px rgba(0,0,0,0.05), inset 0 1px 4px rgba(255,215,220,0.6); border: 1px solid rgba(255,215,220,0.5); transition: transform 0.2s ease; }
        .metal-card:hover { transform: translateY(-4px); box-shadow: 0 25px 40px rgba(200,130,140,0.15); }
        /* 导航 */
        .navbar { background: rgba(255, 240, 243, 0.75); backdrop-filter: blur(20px); border-bottom: 1px solid rgba(200, 150, 160, 0.2); padding: 14px 0; position: sticky; top: 0; z-index: 100; }
        .nav-links { display: flex; gap: 32px; flex-wrap: wrap; justify-content: center; }
        .nav-links a { color: #5d3b40; font-weight: 500; text-decoration: none; padding: 6px 14px; border-radius: 40px; background: rgba(255,220,225,0.4); transition: 0.25s; }
        .nav-links a:hover { background: #e8a0b0; color: #fff; }
        /* 标题 */
        h1 { font-size: 3rem; background: linear-gradient(135deg, #b76e79, #d4a0a7); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; text-align: center; margin: 40px 0 16px; letter-spacing: 1px; }
        h2 { font-size: 2rem; margin-bottom: 28px; color: #7a4a52; border-left: 6px solid #d4a0a7; padding-left: 24px; }
        /* 图片 */
        img { max-width: 100%; border-radius: 24px; box-shadow: 0 12px 28px -8px rgba(120,70,80,0.2); margin: 12px 0; transition: 0.3s; }
        img:hover { transform: scale(1.01); }
        .img-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(180px,1fr)); gap: 20px; margin: 30px 0; }
        /* 页脚 */
        .footer { background: rgba(40, 28, 30, 0.85); backdrop-filter: blur(12px); color: #f0dede; padding: 40px 0 20px; margin-top: 70px; border-radius: 48px 48px 0 0; }
        .footer a { color: #f5c6d0; text-decoration: none; margin: 0 8px; }
        .footer a:hover { text-decoration: underline; }
        .footer .links { display: flex; flex-wrap: wrap; justify-content: center; gap: 10px 20px; margin: 18px 0; }
        .footer .copy { text-align: center; opacity: 0.8; font-size: 0.9rem; margin-top: 18px; }
        /* faq , news */
        .faq-item { margin-bottom: 30px; border-bottom: 1px dashed rgba(200,150,160,0.3); padding-bottom: 20px; }
        .faq-item strong { color: #7a4a52; font-size: 1.2rem; }
        .news-card { background: rgba(255,240,243,0.5); backdrop-filter: blur(4px); border-radius: 28px; padding: 24px; margin-bottom: 30px; box-shadow: 0 6px 18px rgba(180,100,120,0.08); }
        .news-card h3 { color: #6d3d45; margin-bottom: 8px; }
        .tag { background: #dbb1bb; color: #fff; padding: 4px 16px; border-radius: 40px; font-size: 0.8rem; display: inline-block; margin-right: 12px; }
        /* 响应式 */
        @media (max-width: 760px) { h1 { font-size: 2.2rem; } .nav-links { gap: 16px; } .metal-card { padding: 20px 16px; } }
        /* 随机点缀 */
        .rose-divider { height: 2px; background: linear-gradient(90deg, transparent, #d4a0a7, transparent); margin: 40px 0; }