* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }
        body {
            font-family: 'Segoe UI', Roboto, 'Helvetica Neue', sans-serif;
            background: #faf6f2;
            color: #2c2c2c;
            line-height: 1.7;
        }
        a {
            color: #b58a6b;
            text-decoration: none;
            transition: all 0.3s ease;
        }
        a:hover {
            color: #d4af8b;
        }
        .container {
            max-width: 1240px;
            margin: 0 auto;
            padding: 0 20px;
        }
        /* 导航 */
        nav {
            background: linear-gradient(135deg, #f3e5d8, #e8d5c4);
            padding: 12px 0;
            border-bottom: 2px solid #d4af8b;
            box-shadow: 0 4px 20px rgba(181, 138, 107, 0.15);
            position: sticky;
            top: 0;
            z-index: 100;
            backdrop-filter: blur(6px);
        }
        nav .container {
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
        }
        .nav-links {
            display: flex;
            gap: 28px;
            flex-wrap: wrap;
        }
        .nav-links a {
            font-weight: 600;
            color: #5a3e2e;
            letter-spacing: 0.5px;
            padding: 6px 0;
            border-bottom: 2px solid transparent;
            transition: 0.25s;
        }
        .nav-links a:hover {
            border-bottom-color: #b58a6b;
            color: #3a2820;
        }
        /* H1 */
        h1 {
            font-size: 2.8rem;
            font-weight: 700;
            background: linear-gradient(135deg, #b58a6b, #d4af8b, #f3e5d8);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
            text-align: center;
            margin: 40px 0 20px;
            line-height: 1.3;
            letter-spacing: 2px;
        }
        /* 卡片金属质感 */
        .card {
            background: linear-gradient(145deg, #fdf9f5, #f0e6dc);
            border-radius: 28px;
            padding: 28px 30px;
            box-shadow: 0 10px 30px rgba(181, 138, 107, 0.12), inset 0 1px 2px rgba(255, 255, 255, 0.6);
            border: 1px solid rgba(212, 175, 139, 0.3);
            transition: transform 0.2s ease, box-shadow 0.3s ease;
        }
        .card:hover {
            transform: translateY(-3px);
            box-shadow: 0 20px 40px rgba(181, 138, 107, 0.18);
        }
        /* 通用区块 */
        section {
            margin: 60px 0;
        }
        h2 {
            font-size: 2.2rem;
            color: #5a3e2e;
            margin-bottom: 30px;
            text-align: center;
            letter-spacing: 1.5px;
            border-bottom: 2px solid #d4af8b;
            display: inline-block;
            padding-bottom: 8px;
        }
        .section-title {
            text-align: center;
            margin-bottom: 40px;
        }
        .grid-2, .grid-3, .grid-4 {
            display: grid;
            gap: 30px;
        }
        .grid-2 { grid-template-columns: 1fr 1fr; }
        .grid-3 { grid-template-columns: 1fr 1fr 1fr; }
        .grid-4 { grid-template-columns: 1fr 1fr 1fr 1fr; }
        .img-fluid {
            width: 100%;
            height: auto;
            border-radius: 16px;
            object-fit: cover;
            box-shadow: 0 8px 20px rgba(0,0,0,0.05);
        }
        /* 按钮 */
        .btn-rose {
            background: linear-gradient(135deg, #d4af8b, #b58a6b);
            border: none;
            padding: 14px 36px;
            border-radius: 50px;
            color: #fff;
            font-weight: 600;
            font-size: 1.1rem;
            cursor: pointer;
            box-shadow: 0 6px 18px rgba(181, 138, 107, 0.3);
            transition: 0.3s;
            display: inline-block;
        }
        .btn-rose:hover {
            transform: scale(1.03);
            box-shadow: 0 10px 28px rgba(181, 138, 107, 0.4);
            color: #fff;
        }
        /* 新闻卡片 */
        .news-card {
            background: #fffbf7;
            border-radius: 24px;
            padding: 24px;
            box-shadow: 0 6px 18px rgba(181, 138, 107, 0.08);
            border: 1px solid #eedccf;
        }
        .news-card h3 {
            color: #3a2820;
            margin-bottom: 6px;
        }
        .news-date {
            color: #b58a6b;
            font-size: 0.9rem;
            display: block;
            margin-bottom: 10px;
            font-weight: 500;
        }
        /* FAQ */
        .faq-item {
            background: #fffbf7;
            border-radius: 20px;
            padding: 22px 26px;
            margin-bottom: 18px;
            border-left: 6px solid #d4af8b;
        }
        .faq-item h4 {
            color: #5a3e2e;
            font-size: 1.3rem;
            margin-bottom: 10px;
        }
        /* 页脚 */
        footer {
            background: linear-gradient(135deg, #2c1e16, #3a2820);
            color: #e8d5c4;
            padding: 48px 0 20px;
            margin-top: 60px;
        }
        footer a {
            color: #d4af8b;
        }
        footer a:hover {
            color: #f3e5d8;
        }
        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 20px;
            margin: 20px 0 30px;
        }
        .footer-bottom {
            border-top: 1px solid #5a3e2e;
            padding-top: 20px;
            text-align: center;
            font-size: 0.9rem;
        }
        /* 响应式 */
        @media (max-width: 768px) {
            h1 { font-size: 2rem; }
            .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
            nav .container { flex-direction: column; gap: 12px; }
        }
        /* 图片占位 */
        .img-placeholder {
            background: #f0e6dc;
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            min-height: 180px;
        }