* {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

@font-face {
  font-family: 'Microsoft YaHei';
  src: url('https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/fonts/MicrosoftYaHei.woff2') format('woff2');
  font-weight: normal;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'Microsoft YaHei';
  src: url('https://cdn.jsdelivr.net/npm/font-awesome@4.7.0/fonts/MicrosoftYaHeiBold.woff2') format('woff2');
  font-weight: bold;
  font-style: normal;
  font-display: swap;
}

        body {
            font-family: 'Microsoft YaHei', sans-serif;
            background-color: #FCF9F5;
            color: #1E1A17;
            line-height: 1.5;
            scroll-behavior: smooth;
        }

        :root {
            --gold: #B68B40;
            --gold-light: #D9B48B;
            --gold-dark: #8E6A3C;
            --dark-bg: #1A1715;
            --dark-soft: #2A2623;
            --cream: #FCF9F5;
            --gray-light: #F5F2EF;
            --shadow-sm: 0 12px 30px -10px rgba(0,0,0,0.06);
            --shadow-md: 0 25px 40px -16px rgba(0,0,0,0.12);
            --transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1);
        }

        .container {
            max-width: 1280px;
            margin: 0 auto;
            padding: 0 32px;
        }

        /* 导航栏 */
        .navbar {
            position: sticky;
            top: 0;
            width: 100%;
            background: rgba(255, 253, 250, 0.96);
            backdrop-filter: blur(12px);
            z-index: 1000;
            box-shadow: 0 2px 20px rgba(0,0,0,0.02);
            border-bottom: 1px solid rgba(182, 139, 64, 0.2);
        }

        .nav-container {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 16px 32px;
            max-width: 1400px;
            margin: 0 auto;
        }

        /* LOGO 区域 + 精美图标 */
        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
        }
        .logo-icon {
            font-size: 2rem;
            color: var(--gold);
            filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
        }
        .logo h1 {
            font-family: 'Microsoft YaHei', serif;
            font-size: 1.5rem;
            font-weight: 600;
            letter-spacing: 2px;
            color: var(--dark-bg);
            margin: 0;
        }
        .logo span {
            color: var(--gold);
            font-weight: 700;
        }
        .nav-links {
            display: flex;
            gap: 36px;
            list-style: none;
            align-items: center;
        }
        .nav-links a {
            text-decoration: none;
            font-weight: 500;
            font-size: 0.95rem;
            color: #2C2825;
            transition: var(--transition);
            letter-spacing: 0.3px;
        }
        .nav-links a:hover {
            color: var(--gold);
        }
        .nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            background: rgba(182, 139, 64, 0.12);
            padding: 6px 16px;
            border-radius: 40px;
            margin-left: 12px;
        }
        .nav-phone i {
            color: var(--gold);
            font-size: 0.9rem;
        }
        .nav-phone a {
            font-weight: 600;
            color: #1E1A17;
            letter-spacing: 0;
        }
        .menu-toggle {
            display: none;
            font-size: 1.6rem;
            cursor: pointer;
            color: #1E1A17;
        }

.linkss {
            justify-content: center;
            margin-bottom: 30px;
        }
        .linkss a {
            color: #CBC3BB;
            text-decoration: none;
        }

        /* 导航下的背景区 - 奢华图片区 (已修复) */
        .hero-under-nav {
            background: linear-gradient(115deg, rgba(30,26,23,0.75) 0%, rgba(41,36,31,0.68) 100%), url('https://images.pexels.com/photos/132132/pexels-photo-132132.jpeg?auto=compress&cs=tinysrgb&w=1600');
            background-size: cover;
            background-position: center 30%;
            padding: 42px 0 35px;
            text-align: center;
            position: relative;
            border-bottom: 1px solid rgba(182, 139, 64, 0.4);
        }
        .hero-under-nav:after {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, transparent, var(--gold), var(--gold-light), transparent);
        }
        .breadcrumb {
            font-size: 0.9rem;
            color: #FFF8F0;
            text-shadow: 0 1px 3px rgba(0,0,0,0.2);
            letter-spacing: 0.5px;
        }
        .breadcrumb a {
            color: #F5E5D1;
            text-decoration: none;
            transition: color 0.2s;
        }
        .breadcrumb a:hover {
            color: var(--gold-light);
        }
        .breadcrumb span {
            color: var(--gold-light);
            font-weight: 500;
        }
        .hero-title {
            font-size: 2.2rem;
            font-family: 'Microsoft YaHei', serif;
            color: white;
            margin-top: 18px;
            letter-spacing: -0.5px;
            font-weight: 500;
            text-shadow: 0 2px 8px rgba(0,0,0,0.2);
        }
        .hero-sub {
            color: rgba(255,245,230,0.85);
            font-size: 0.9rem;
            margin-top: 10px;
        }

        /* 文章主体区域 (卡片上移覆盖一点背景) */
        .article-detail-wrapper {
            display: flex;
            flex-wrap: wrap;
            gap: 48px;
            margin: -40px 0 80px;
            position: relative;
            z-index: 2;
        }
        .article-main {
            flex: 2.5;
            background: white;
            border-radius: 32px;
            padding: 40px 44px;
            box-shadow: var(--shadow-md);
            border: 1px solid #F1EAE3;
        }
        .article-header {
            margin-bottom: 32px;
            border-bottom: 1px solid #EFE5DC;
            padding-bottom: 24px;
        }
        .article-category {
            display: inline-block;
            background: rgba(182, 139, 64, 0.12);
            color: var(--gold-dark);
            padding: 5px 14px;
            border-radius: 40px;
            font-size: 0.75rem;
            font-weight: 600;
            letter-spacing: 0.5px;
            margin-bottom: 20px;
        }
        .article-title {
            font-size: 1.6rem;
            font-family: 'Microsoft YaHei', serif;
            font-weight: 700;
            line-height: 1.25;
            margin-bottom: 20px;
            color: #1E1A17;
        }
        .article-meta {
            display: flex;
            gap: 28px;
            font-size: 0.85rem;
            color: #7F6E5E;
            flex-wrap: wrap;
        }
        .article-meta i {
            color: var(--gold);
            margin-right: 6px;
        }
        .article-summary {
            background: #F9F5F0;
            padding: 28px 32px;
            border-radius: 24px;
            margin: 24px 0 32px;
            border-left: 4px solid var(--gold);
            font-style: normal;
            color: #3E3731;
            font-size: 1rem;
            line-height: 1.6;
            font-weight: 450;
        }
        .article-content {
            font-size: 1rem;
            line-height: 1.75;
            color: #2E2A26;
        }
        .article-content p {
            margin-bottom: 1.5rem;
        }
        .article-content h2 {
            font-size: 1.6rem;
            font-family: 'Microsoft YaHei', serif;
            margin: 32px 0 16px;
            color: #1E1A17;
        }
        .article-content img {
            width: 100%;
            border-radius: 24px;
            margin: 24px 0;
            box-shadow: var(--shadow-sm);
        }

        /* 上下篇导航 */
        .post-navigation {
            display: flex;
            justify-content: space-between;
            gap: 30px;
            margin: 48px 0 32px;
            padding-top: 32px;
            border-top: 1px solid #EFE5DC;
        }
        .nav-prev, .nav-next {
            flex: 1;
            background: #FCF9F5;
            border-radius: 24px;
            padding: 20px 24px;
            transition: var(--transition);
            border: 1px solid #EFE5DC;
            text-decoration: none;
        }
        .nav-prev:hover, .nav-next:hover {
            background: white;
            border-color: var(--gold-light);
            transform: translateY(-3px);
        }
        .nav-label {
            font-size: 0.75rem;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            color: var(--gold);
            display: block;
            margin-bottom: 10px;
        }
        .nav-title {
            font-weight: 600;
            color: #1E1A17;
            font-size: 1rem;
            line-height: 1.4;
        }
        .nav-next {
            text-align: right;
        }

        /* 侧边栏 - 相关文章 */
        .article-sidebar {
            flex: 1.2;
        }
        .related-box {
            background: white;
            border-radius: 32px;
            padding: 32px 28px;
            box-shadow: var(--shadow-md);
            border: 1px solid #F1EAE3;
            position: sticky;
            top: 100px;
        }
        .related-title {
            font-size: 1.4rem;
            font-weight: 600;
            font-family: 'Microsoft YaHei', serif;
            padding-bottom: 18px;
            margin-bottom: 20px;
            border-bottom: 2px solid var(--gold-light);
            display: inline-block;
            width: 100%;
        }
        .related-list {
            list-style: none;
        }
        .related-list li {
            margin-bottom: 20px;
            border-bottom: 1px solid #F0E8E0;
            padding-bottom: 16px;
        }
        .related-list li:last-child {
            border-bottom: none;
            margin-bottom: 0;
            padding-bottom: 0;
        }
        .related-link {
            display: flex;
            align-items: center;
            gap: 14px;
            text-decoration: none;
            transition: 0.2s;
        }
        .related-icon {
            width: 32px;
            height: 32px;
            background: rgba(182, 139, 64, 0.1);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            font-size: 0.9rem;
        }
        .related-info {
            flex: 1;
        }
        .related-info .related-article-title {
            font-weight: 600;
            color: #1E1A17;
            font-size: 0.95rem;
            line-height: 1.4;
            transition: color 0.2s;
        }
        .related-link:hover .related-article-title {
            color: var(--gold);
        }
        .related-date {
            font-size: 0.7rem;
            color: #9B8A7A;
            margin-top: 6px;
            display: block;
        }

        /* 底部浮动模块 */
        .mobile-bottom-bar {
            display: none;
            position: fixed;
            bottom: 0;
            left: 0;
            width: 100%;
            background: rgba(26, 23, 21, 0.96);
            backdrop-filter: blur(16px);
            box-shadow: 0 -8px 25px rgba(0, 0, 0, 0.2);
            border-top: 1px solid rgba(182, 139, 64, 0.5);
            z-index: 1100;
            padding: 10px 20px;
            justify-content: space-between;
            align-items: center;
            gap: 16px;
        }
        .mobile-bottom-btn {
            flex: 1;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 12px;
            background: #2A2623;
            border-radius: 60px;
            padding: 12px 0;
            font-weight: 600;
            font-size: 1rem;
            color: #FCF9F5;
            text-decoration: none;
            transition: all 0.25s ease;
            border: 1px solid rgba(182, 139, 64, 0.3);
            animation: softGlow 2.2s infinite ease-out;
        }
        .mobile-bottom-btn i {
            font-size: 1.25rem;
            color: var(--gold);
        }
        @keyframes softGlow {
            0% { box-shadow: 0 0 0 0 rgba(182, 139, 64, 0.2); border-color: rgba(182, 139, 64, 0.4); }
            50% { box-shadow: 0 0 0 6px rgba(182, 139, 64, 0.12), 0 0 12px 2px rgba(217, 180, 139, 0.25); border-color: rgba(182, 139, 64, 0.9); }
            100% { box-shadow: 0 0 0 0 rgba(182, 139, 64, 0); border-color: rgba(182, 139, 64, 0.4); }
        }
        .mobile-bottom-btn:active { transform: scale(0.96); }

        footer {
            background: #13100E;
            color: #CBC3BB;
            padding: 48px 0 28px;
            text-align: center;
        }
        .footer-links {
            display: flex;
            justify-content: center;
            gap: 40px;
            margin-bottom: 30px;
            flex-wrap: wrap;
        }
        .footer-links a {
            color: #CBC3BB;
            text-decoration: none;
        }

        @media (max-width: 992px) {
            .article-detail-wrapper {
                flex-direction: column;
                margin-top: -20px;
            }
            .article-sidebar {
                order: 2;
            }
            .article-main {
                order: 1;
            }
        }
        @media (max-width: 768px) {
            .mobile-bottom-bar { display: flex; }
            body { padding-bottom: 75px; }
            .menu-toggle { display: block; }
            .nav-links {
                position: fixed;
                top: 72px;
                left: -100%;
                flex-direction: column;
                background: rgba(255, 252, 248, 0.98);
                backdrop-filter: blur(12px);
                width: 70%;
                height: 100vh;
                padding: 40px 32px;
                gap: 28px;
                transition: 0.3s;
                box-shadow: 5px 0 30px rgba(0,0,0,0.05);
                z-index: 999;
            }
            .nav-links.active { left: 0; }
            .container { padding: 0 20px; }
            .article-main { padding: 28px 24px; }
            .article-title { font-size: 1.8rem; }
            .post-navigation { flex-direction: column; gap: 16px; }
            .nav-prev, .nav-next { text-align: left; }
            .hero-under-nav { padding: 32px 0 28px; }
            .hero-title { font-size: 1.6rem; }
        }
		
		/*-------------------------
电脑端模块隐藏，手机端显示
-------------------------*/
.wppc{
    display: none;
}
@media (max-width: 767px) {
  .wppc{
    display: block !important;
  }
}
/*-------------------------------
电脑端模块隐藏，手机端显示 结束
-------------------------------*/


/*-------------------------------
电脑端模块显示，手机端隐藏 开始
-------------------------------*/
@media screen and (max-width: 767px) { /*当屏幕尺寸小于600px时，应用下面的CSS样式*/
  .ying {
  display:none;
  }
}
/*-------------------------------
电脑端模块显示，手机端隐藏 结束
-------------------------------*/