/* 全局样式 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* 富文本内容样式 */
.rich-content {
    line-height: 1.8;
    color: #f5f5f5;
}

.rich-content img {
    max-width: 100%;
    height: auto;
    margin: 20px auto;
    display: block;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.3);
}

.rich-content p {
    margin-bottom: 16px;
}

.rich-content p img {
    display: block;
    margin: 20px auto;
}

.rich-content h1,
.rich-content h2,
.rich-content h3,
.rich-content h4,
.rich-content h5,
.rich-content h6 {
    margin: 24px 0 16px 0;
    color: #d4af37;
}

.rich-content ul,
.rich-content ol {
    margin: 16px 0;
    padding-left: 24px;
}

.rich-content li {
    margin-bottom: 8px;
}

.rich-content a {
    color: #d4af37;
    text-decoration: none;
    border-bottom: 1px solid rgba(212, 175, 55, 0.3);
    transition: all 0.3s ease;
}

.rich-content a:hover {
    color: #f4d03f;
    border-bottom-color: #f4d03f;
}

.rich-content blockquote {
    border-left: 4px solid #d4af37;
    padding-left: 20px;
    margin: 20px 0;
    font-style: italic;
    color: #e0e0e0;
}

.rich-content code {
    background: rgba(255, 255, 255, 0.1);
    padding: 2px 6px;
    border-radius: 4px;
    font-family: 'Courier New', monospace;
}

.rich-content pre {
    background: rgba(0, 0, 0, 0.3);
    padding: 16px;
    border-radius: 8px;
    overflow-x: auto;
    margin: 16px 0;
}

.rich-content pre code {
    background: none;
    padding: 0;
}

/* 品牌简介页面特定样式 */
.about-empty {
    text-align: center;
    padding: 60px 20px;
}

.about-empty .empty-message {
    color: #ccc;
    font-size: 16px;
    margin-top: 20px;
}

.about-header {
    text-align: center;
    margin-bottom: 40px;
}

.about-subtitle {
    font-size: 18px;
    color: #d4af37;
    margin-top: 16px;
    font-style: italic;
}

.about-image {
    text-align: center;
    margin: 40px 0;
}

.brand-logo {
    max-width: 300px;
    max-height: 200px;
    object-fit: contain;
}

.about-content {
    max-width: 800px;
    margin: 0 auto;
}

.about-text {
    margin-bottom: 40px;
    font-size: 16px;
}

.about-info {
    background: transparent;
    /* 改为透明 */
    padding: 24px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.about-info p {
    margin-bottom: 12px;
    font-size: 14px;
}

.about-info strong {
    color: #d4af37;
}

.status-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 12px;
    font-weight: bold;
    text-transform: uppercase;
}

.status-active {
    background: rgba(40, 167, 69, 0.2);
    color: #28a745;
    border: 1px solid rgba(40, 167, 69, 0.3);
}

.status-inactive {
    background: rgba(220, 53, 69, 0.2);
    color: #dc3545;
    border: 1px solid rgba(220, 53, 69, 0.3);
}

body {
    font-family: 'Source Han Serif CN', 'Noto Serif SC', 'STSong', '华文宋体', 'SimSun', 'Microsoft YaHei', serif;
    background: linear-gradient(135deg,
            #0d1f1a 0%,
            #11261f 25%,
            #152d25 50%,
            #11261f 75%,
            #0d1f1a 100%);
    background-attachment: fixed;
    color: #f5f5f5;
    min-height: 100vh;
    min-width: 1400px;
    /* 强制最小宽度，防止布局挤压 */
    overflow-x: auto;
    /* 允许横向滚动 */
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    position: relative;
}

body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background:
        radial-gradient(circle at 20% 30%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(212, 175, 55, 0.02) 0%, transparent 50%),
        radial-gradient(circle at 50% 50%, rgba(74, 52, 38, 0.1) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

body>* {
    position: relative;
    z-index: 1;
}

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 顶部导航栏 */
.top-header {
    background: rgba(0, 0, 0, 0.25);
    padding: 12px 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.15);
    position: relative;
    z-index: 100001;
}

.header-tools {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.search-box {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255, 255, 255, 0.08);
    padding: 10px 20px;
    border-radius: 25px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow:
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s;
}

.search-box:focus-within {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(212, 175, 55, 0.6);
    box-shadow:
        inset 0 1px 3px rgba(0, 0, 0, 0.3),
        0 0 15px rgba(212, 175, 55, 0.2);
}

.search-box input {
    background: transparent;
    border: none;
    outline: none;
    color: #E5D5C5;
    margin-left: 10px;
    width: 200px;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.search-box input::placeholder {
    color: rgba(229, 213, 197, 0.5);
    font-weight: 300;
}

/* 搜索图标样式 */
.search-icon {
    color: rgba(200, 200, 200, 0.6);
    flex-shrink: 0;
    transition: color 0.3s ease;
}

.search-box:focus-within .search-icon {
    color: rgba(212, 175, 55, 0.8);
}

/* 搜索结果下拉框 */
.search-results {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    right: 0;
    background: rgba(20, 35, 30, 0.98);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 12px;
    max-height: 400px;
    overflow-y: auto;
    display: none;
    z-index: 100000;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
}

.search-results.show {
    display: block;
}

.search-result-category {
    padding: 8px 15px;
    font-size: 12px;
    color: #d4af37;
    font-weight: 500;
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    background: rgba(212, 175, 55, 0.05);
}

.search-result-item {
    padding: 12px 15px;
    cursor: pointer;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    transition: all 0.2s;
    display: block;
    text-decoration: none;
    color: inherit;
}

.search-result-item:last-child {
    border-bottom: none;
}

.search-result-item:hover {
    background: rgba(212, 175, 55, 0.1);
}

.search-result-title {
    color: #E5D5C5;
    font-size: 14px;
    margin-bottom: 4px;
}

.search-result-desc {
    color: rgba(229, 213, 197, 0.6);
    font-size: 12px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.search-no-results {
    padding: 20px;
    text-align: center;
    color: rgba(229, 213, 197, 0.5);
    font-size: 14px;
}

.header-links {
    display: flex;
    gap: 30px;
}

.header-links a {
    color: rgb(250, 229, 177);
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 6px;
    transition: all 0.3s;
    font-size: 14px;
    font-weight: 300;
    letter-spacing: 0.5px;
}

.header-links a:hover {
    color: rgb(255, 240, 200);
    text-shadow: 0 0 8px rgba(250, 229, 177, 0.3);
}

/* Logo区域 - 标题和logo并排布局 */
.logo-section {
    text-align: center;
    padding: 80px 0 20px;
}

.logo-header-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 30px;
}

.title-section {
    text-align: center;
}

.logo-image-section {
    flex-shrink: 0;
    background: transparent;
}

.main-logo {
    font-size: 72px;
    font-weight: 300;
    color: rgb(250, 229, 177);
    letter-spacing: 16px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(250, 229, 177, 0.2);
    margin-bottom: 15px;
    font-family: 'Times New Roman', 'Georgia', serif;
}

.logo-chinese {
    font-size: 52px;
    margin-left: 25px;
    font-weight: 300;
    letter-spacing: 8px;
}

.slogan {
    font-size: 18px;
    color: rgb(250, 229, 177);
    letter-spacing: 16px;
    margin-top: 15px;
    font-weight: 300;
    opacity: 0.95;
}

.main-logo-img {
    max-width: 520px;
    height: auto;
    max-height: 300px;
    object-fit: contain;
    background: transparent;
    border: none;
    padding: 0;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
    transition: transform 0.3s ease;
}

.main-logo-img:hover {
    transform: scale(1.05);
}

/* 主导航菜单 - 简洁透明样式 */
.main-nav.jp_nav_box {
    background: transparent;
    border: none;
    padding: 20px 0;
    margin: 0 auto;
    position: relative;
    width: 100%;
    max-width: 1234px;
    backdrop-filter: none;
    box-shadow: none;
    text-align: center;
    z-index: 1000;
}

/* 移除装饰性背景效果 */
.main-nav.jp_nav_box::before {
    display: none;
}

/* 移除层叠边框效果 */
.main-nav.jp_nav_box::after {
    display: none;
}

/* 移除装饰性架子层 */
.nav-shelf {
    display: none;
}

.main-nav .nav-container {
    position: relative;
    z-index: 3;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 1300px;
    width: 100%;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.nav-menu {
    list-style: none;
    display: flex;
    margin: 0 auto;
    padding: 0;
    gap: 0;
    align-items: center;
    justify-content: center;
    flex: 1;
}

.nav-menu li {
    position: relative;
    margin: 0;
    padding: 0;
}

.nav-menu li:not(:last-child) {
    margin-right: 130px;
    /* 导航项之间的间距 - 增大间距 */
}

/* 下拉菜单容器 */
.nav-item-dropdown {
    position: relative;
    z-index: 10001;
    /* 确保下拉菜单容器在最上层 */
}

/* 使用伪元素创建一个连接区域，消除间隙 */
.nav-item-dropdown::after {
    content: '';
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    height: 5px;
    background: transparent;
    z-index: 999;
}

.nav-item-dropdown:hover .dropdown-menu,
.nav-item-dropdown:hover::after+.dropdown-menu,
.nav-item-dropdown .dropdown-menu:hover {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* 确保下拉菜单在鼠标悬停时保持显示 */
.nav-item-dropdown .nav-link:hover~.dropdown-menu,
.nav-item-dropdown:hover .dropdown-menu {
    display: block;
    opacity: 1;
    visibility: visible;
}

/* 下拉菜单样式 */
.dropdown-menu {
    position: absolute;
    top: calc(100% + 0px);
    /* 紧贴导航项，无间隙 */
    left: 0;
    display: none;
    opacity: 0;
    visibility: hidden;
    min-width: 180px;
    background: rgba(13, 31, 26, 0.95);
    border: 1px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    padding: 8px 0;
    margin-top: 0;
    /* 移除上边距，消除间隙 */
    list-style: none;
    box-shadow:
        0 4px 12px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.1);
    z-index: 10000;
    /* 提高z-index，确保不被其他元素遮挡 */
    transition: opacity 0.2s ease, visibility 0.2s ease;
    backdrop-filter: blur(10px);
    pointer-events: auto;
    /* 确保可以点击 */
}

.dropdown-menu li {
    margin: 0;
    padding: 0;
}

.dropdown-menu li:not(:last-child) {
    margin-right: 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
}

.dropdown-menu a {
    display: block;
    padding: 12px 20px;
    color: rgb(250, 229, 177);
    text-decoration: none;
    font-size: 15px;
    font-weight: 400;
    font-family: 'Microsoft YaHei', sans-serif;
    transition: all 0.2s ease;
    white-space: nowrap;
}

.dropdown-menu a:hover {
    background: rgba(212, 175, 55, 0.15);
    color: rgb(255, 240, 200);
    padding-left: 25px;
}

.nav-link {
    display: block;
    color: rgb(250, 229, 177);
    text-decoration: none;
    padding: 0;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    transition: all 0.3s;
    border-bottom: none;
    font-family: 'Microsoft YaHei', sans-serif;
    text-shadow: none;
    line-height: normal;
}

.nav-link:hover {
    color: rgb(250, 229, 177);
    text-shadow: none;
}

.nav-link.active {
    color: rgb(250, 229, 177);
    border-bottom: none;
    text-shadow: none;
    background-color: rgba(0, 0, 0, 0);
}

.shopping-cart {
    color: rgb(250, 229, 177);
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0;
    margin-left: auto;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 400;
    letter-spacing: normal;
    text-decoration: none;
    text-shadow: none;
    position: relative;
    z-index: 3;
}

.shopping-cart:hover {
    color: rgb(250, 229, 177);
    text-shadow: none;
}

.shopping-cart .icon {
    font-size: 16px;
}

/* 轮播图区域 */
.banner-section {
    padding: 50px 0;
    position: relative;
    z-index: 1;
    /* 确保在导航栏下方 */
}

.banner-container {
    max-width: 1200px;
    margin: 0 auto;
}

.banner-frame {
    position: relative;
    border: 10px solid;
    border-image: linear-gradient(135deg, #9B7653 0%, #7A5C42 50%, #8B6F47 100%) 1;
    border-radius: 20px;
    padding: 25px;
    background: linear-gradient(135deg, #4A3426 0%, #3D2B1F 50%, #2F2116 100%);
    box-shadow:
        0 10px 50px rgba(0, 0, 0, 0.6),
        0 0 100px rgba(0, 0, 0, 0.3),
        inset 0 2px 0 rgba(255, 255, 255, 0.1),
        inset 0 0 30px rgba(212, 175, 55, 0.08);
}

.banner-slider {
    position: relative;
    width: 100%;
    height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D4B8 30%, #D4AF37 100%);
    box-shadow:
        inset 0 0 50px rgba(212, 175, 55, 0.15),
        inset 0 -2px 10px rgba(0, 0, 0, 0.2);
}

.banner-video {
    position: relative;
    width: 100%;
    min-height: 500px;
    border-radius: 12px;
    overflow: hidden;
    background: #000;
}

.banner-video .video-container {
    width: 100%;
    min-height: 500px;
    background: #000;
}

.banner-video .video-poster {
    cursor: pointer;
}

.banner-video video {
    width: 100%;
    height: auto;
    min-height: 500px;
    object-fit: cover;
}

.banner-item {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
    display: flex;
    align-items: center;
    justify-content: center;
}

.banner-item.active {
    opacity: 1;
}

.banner-item img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.banner-content {
    text-align: center;
    color: #5c4033;
}

.banner-content h2 {
    font-size: 52px;
    margin-bottom: 20px;
    text-shadow:
        2px 2px 4px rgba(0, 0, 0, 0.15),
        0 0 20px rgba(0, 0, 0, 0.1);
    font-weight: 400;
    letter-spacing: 3px;
}

.banner-content p {
    font-size: 22px;
    letter-spacing: 6px;
    font-weight: 300;
    opacity: 0.95;
}

/* 闪烁星光效果 */
.banner-sparkles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.sparkle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: #fff;
    border-radius: 50%;
    animation: sparkle 3s infinite;
    box-shadow: 0 0 10px #fff;
}

@keyframes sparkle {

    0%,
    100% {
        opacity: 0;
        transform: scale(0);
    }

    50% {
        opacity: 1;
        transform: scale(1);
    }
}

/* 四大模块容器 */
.modules-container {
    padding: 0;
}

/* 模块通用样式 */
.module-section {
    padding: 100px 0;
    position: relative;
}

.module-section:nth-child(odd) {
    background: rgba(0, 0, 0, 0.15);
}

.module-section:nth-child(even) {
    background: rgba(0, 0, 0, 0.25);
}

.module-header {
    text-align: center;
    margin-bottom: 60px;
}

.module-title {
    font-size: 48px;
    color: #D4AF37;
    margin-bottom: 15px;
    letter-spacing: 8px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 175, 55, 0.3);
    font-weight: 300;
    text-align: center;
    font-family: 'Microsoft YaHei', 'PingFang SC', 'Hiragino Sans GB', sans-serif;
}

.module-subtitle {
    font-size: 18px;
    color: rgba(229, 213, 197, 0.7);
    letter-spacing: 4px;
    font-weight: 300;
    font-style: italic;
}

.module-content {
    position: relative;
}

.module-footer {
    text-align: center;
    margin-top: 50px;
}

.module-link {
    display: inline-block;
    color: #D4AF37;
    text-decoration: none;
    font-size: 18px;
    padding: 15px 40px;
    border: 2px solid rgba(212, 175, 55, 0.4);
    border-radius: 30px;
    transition: all 0.3s;
    letter-spacing: 2px;
    background: transparent;
    /* 改为透明 */
    font-weight: 300;
}

.module-link:hover {
    background: rgba(212, 175, 55, 0.18);
    border-color: #D4AF37;
    transform: translateY(-3px);
    box-shadow:
        0 8px 20px rgba(0, 0, 0, 0.3),
        0 0 25px rgba(212, 175, 55, 0.3);
}

.module-link span {
    margin-left: 10px;
    transition: transform 0.3s;
}

.module-link:hover span {
    transform: translateX(5px);
}

/* 品牌简介模块 */
.brand-preview {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.brand-text {
    margin-bottom: 40px;
}

.brand-text p {
    font-size: 18px;
    line-height: 2.2;
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 25px;
    text-align: justify;
    letter-spacing: normal;
}

/* 产品展示区 */
.products-section {
    padding: 80px 0;
}

/* 产品展示容器 - 容纳多个分类的展示框 */
.product-showcase-container {
    max-width: 1300px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 60px;
}

/* 产品展示大框框 - 模仿古典木框效果 */
.product-showcase-box {
    max-width: 1300px;
    margin: 0 auto;
    padding: 50px 60px;
    position: relative;

    /* 深色木质背景 */
    background: linear-gradient(135deg,
            #4a3426 0%,
            #3d2b1f 25%,
            #2f2116 50%,
            #3d2b1f 75%,
            #4a3426 100%);

    /* 木质纹理效果 */
    background-image:
        repeating-linear-gradient(90deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px),
        repeating-linear-gradient(0deg,
            transparent,
            transparent 2px,
            rgba(0, 0, 0, 0.03) 2px,
            rgba(0, 0, 0, 0.03) 4px);

    /* 外层深色框架 */
    border: 12px solid;
    border-image: linear-gradient(135deg,
            #3d2b1f 0%,
            #2f2116 25%,
            #1f1610 50%,
            #2f2116 75%,
            #3d2b1f 100%) 1;

    border-radius: 30px;

    /* 立体阴影效果 */
    box-shadow:
        /* 外阴影 */
        0 20px 60px rgba(0, 0, 0, 0.8),
        0 10px 30px rgba(0, 0, 0, 0.6),
        /* 内阴影 - 增加立体感 */
        inset 0 0 0 1px rgba(212, 175, 55, 0.15),
        inset 0 3px 6px rgba(255, 255, 255, 0.08),
        inset 0 -3px 6px rgba(0, 0, 0, 0.4);
}

/* 内层金色装饰框 */
.product-showcase-box::before {
    content: '';
    position: absolute;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;

    /* 金色双层边框 */
    border: 3px solid rgba(212, 175, 55, 0.4);
    box-shadow:
        0 0 0 1px rgba(212, 175, 55, 0.2),
        inset 0 0 0 1px rgba(212, 175, 55, 0.3),
        inset 0 0 20px rgba(212, 175, 55, 0.05);

    border-radius: 20px;
    pointer-events: none;
    z-index: 0;
}

/* 外层光晕装饰 */
.product-showcase-box::after {
    content: '';
    position: absolute;
    top: -15px;
    left: -15px;
    right: -15px;
    bottom: -15px;

    /* 金色光晕 */
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.15) 0%,
            transparent 20%,
            transparent 80%,
            rgba(212, 175, 55, 0.15) 100%);

    border-radius: 35px;
    z-index: -1;
    opacity: 0.6;

    /* 光晕动画 */
    animation: frameGlow 4s ease-in-out infinite alternate;
}

/* 框架光晕动画 */
@keyframes frameGlow {
    0% {
        opacity: 0.4;
    }

    100% {
        opacity: 0.7;
    }
}

.product-showcase-header {
    text-align: center;
    padding: 20px 0 40px;
    position: relative;
    z-index: 1;
}

.product-showcase-title {
    font-size: 38px;
    color: rgb(247, 226, 175);
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 0;
    text-align: center;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(247, 226, 175, 0.3);
}

.product-showcase-subtitle {
    font-size: 16px;
    color: rgba(247, 226, 175, 0.8);
    font-family: "Microsoft YaHei", sans-serif;
    margin: 0;
    padding: 10px 0 0;
    text-align: center;
    font-style: italic;
}

.product-showcase-list {
    padding: 30px 0;
    margin: 0;
    position: relative;
    z-index: 1;
}

.product-showcase-ul {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: normal;
    gap: 60px;
    padding: 0;
    margin: 0;
    list-style: none;
}

.product-showcase-ul li {
    display: list-item;
    width: 290px;
    margin: 0;
    padding: 0;
    flex: 0 1 auto;
}

.product-showcase-item {
    width: 290px;
    height: 440px;
    padding: 24px 24px 50px;
    margin: 0;
    background: linear-gradient(135deg,
            rgba(111, 78, 55, 0.9) 0%,
            rgba(74, 52, 38, 0.95) 50%,
            rgba(61, 43, 31, 0.9) 100%);
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 8px;
    position: relative;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.3s ease;
    cursor: pointer;
    box-sizing: border-box;
}

.product-showcase-item:hover {
    transform: translateY(-5px);
    box-shadow:
        0 8px 25px rgba(0, 0, 0, 0.5),
        0 0 20px rgba(212, 175, 55, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
    border-color: rgba(212, 175, 55, 0.6);
}

.product-showcase-img-box {
    width: 242px;
    height: 366px;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    background: rgba(0, 0, 0, 0.2);
    margin: 0 auto;
}

.product-showcase-img-box img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.product-showcase-footer {
    text-align: center;
    padding: 30px 0 20px;
    position: relative;
    z-index: 1;
}

.product-showcase-link {
    display: inline-block;
    padding: 14px 50px;
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.3) 0%,
            rgba(212, 175, 55, 0.2) 100%);
    border: 2px solid rgba(212, 175, 55, 0.6);
    border-radius: 30px;
    color: rgb(247, 226, 175);
    text-decoration: none;
    font-size: 16px;
    font-family: "Microsoft YaHei", sans-serif;
    transition: all 0.3s ease;
    letter-spacing: 2px;
    font-weight: 500;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.product-showcase-link:hover {
    background: linear-gradient(135deg,
            rgba(212, 175, 55, 0.5) 0%,
            rgba(212, 175, 55, 0.4) 100%);
    border-color: rgba(212, 175, 55, 0.9);
    transform: translateY(-2px);
    box-shadow:
        0 6px 20px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(212, 175, 55, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    color: #fff;
}

.product-showcase-link span {
    margin-left: 8px;
    transition: transform 0.3s;
}

.product-showcase-link:hover span {
    transform: translateX(5px);
}

.section-title {
    text-align: center;
    font-size: 42px;
    color: #D4AF37;
    margin-bottom: 50px;
    letter-spacing: 12px;
    text-shadow:
        0 2px 4px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(212, 175, 55, 0.3);
    font-weight: 300;
}

.category-tabs {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.category-tab {
    padding: 12px 32px;
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: #E5D5C5;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 16px;
    font-weight: 300;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2);
}

.category-tab:hover,
.category-tab.active {
    background: rgba(212, 175, 55, 0.18);
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-2px);
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        0 0 20px rgba(212, 175, 55, 0.2);
}

.products-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 35px;
    margin-bottom: 20px;
}

/* 限制产品模块显示数量 */
#module-products .products-grid {
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    max-height: none;
}

.product-card {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    cursor: pointer;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.product-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.4),
        0 0 30px rgba(212, 175, 55, 0.25);
    border-color: #D4AF37;
}

.product-image {
    width: 100%;
    height: 300px;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D4B8 50%, #D4AF37 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    box-shadow: inset 0 0 30px rgba(212, 175, 55, 0.1);
}

.product-image img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover;
}

.product-info {
    padding: 25px;
}

.product-name {
    font-size: 20px;
    color: #D4AF37;
    margin-bottom: 10px;
    font-weight: 400;
    letter-spacing: 1px;
}

.product-desc {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.8);
    margin-bottom: 15px;
    line-height: 1.6;
}

.product-price {
    font-size: 24px;
    color: #D4AF37;
    font-weight: 400;
    letter-spacing: 1px;
}

/* 新闻资讯区 */
.news-section {
    padding: 80px 0;
    background: rgba(0, 0, 0, 0.2);
}

.news-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

/* 限制新闻模块显示数量 */
#module-news .news-grid {
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
}

.news-card {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(212, 175, 55, 0.25);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s;
    cursor: pointer;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.3),
        inset 0 1px 0 rgba(255, 255, 255, 0.05);
}

.news-card:hover {
    transform: translateY(-8px);
    box-shadow:
        0 12px 30px rgba(0, 0, 0, 0.4),
        0 0 25px rgba(212, 175, 55, 0.2);
    border-color: rgba(212, 175, 55, 0.4);
}

.news-image {
    width: 100%;
    height: 220px;
    background: linear-gradient(135deg, #F5E6D3 0%, #E8D4B8 50%, #D4AF37 100%);
    overflow: hidden;
}

.news-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s;
}

.news-card:hover .news-image img {
    transform: scale(1.1);
}

.news-info {
    padding: 20px;
}

.news-title {
    font-size: 18px;
    color: #D4AF37;
    margin-bottom: 12px;
    font-weight: 400;
    letter-spacing: 0.5px;
}

.news-summary {
    font-size: 14px;
    color: rgba(245, 245, 245, 0.7);
    line-height: 1.6;
    margin-bottom: 15px;
}

.news-meta {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(245, 245, 245, 0.5);
}

/* 关于我们区域 */
.about-section {
    padding: 80px 0;
}

.about-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.about-text {
    margin-top: 30px;
}

.about-text p {
    font-size: 18px;
    line-height: 2;
    color: rgba(245, 245, 245, 0.9);
    margin-bottom: 20px;
}

/* 页脚 */
.footer {
    background: rgba(13, 31, 26, 0.7);
    padding: 60px 0 20px;
    border-top: 2px solid rgba(212, 175, 55, 0.3);
    margin-top: 80px;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
}

.footer-col h3 {
    color: #D4AF37;
    font-size: 20px;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

.footer-col p {
    color: rgba(245, 245, 245, 0.7);
    line-height: 1.8;
    margin-bottom: 10px;
}

.footer-col a {
    color: #D4AF37;
    text-decoration: none;
    transition: all 0.3s;
}

.footer-col a:hover {
    color: #E8D4B8;
    text-shadow: 0 0 8px rgba(212, 175, 55, 0.5);
}

.footer-col a:hover {
    color: #fff;
}

.footer-bottom {
    text-align: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 215, 0, 0.2);
    color: rgba(245, 245, 245, 0.5);
}

/* 加载动画 */
.loading {
    text-align: center;
    padding: 50px;
    color: #D4AF37;
    font-size: 18px;
    font-weight: 300;
    letter-spacing: 2px;
}

/* 语言切换按钮 */
.lang-switch {
    display: flex;
    align-items: center;
    gap: 5px;
    color: #E5D5C5;
    font-size: 14px;
}

.lang-btn {
    background: none;
    border: none;
    color: #E5D5C5;
    cursor: pointer;
    padding: 4px 8px;
    font-size: 14px;
    transition: all 0.3s;
    font-weight: 300;
}

.lang-btn:hover,
.lang-btn.active {
    color: #D4AF37;
}

/* 门店页面样式 */
.stores-section {
    padding: 80px 0;
    min-height: 60vh;
}

/* 门店页面容器 */
.stores-container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 20px;
}

/* 门店页面标题 - 模仿庆泰网站 */
.stores-page-title {
    font-size: 36px;
    color: rgb(247, 226, 175);
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 70px 0 30px;
    text-align: left;
}

/* 门店列表容器 */
.stores-list-container {
    display: flex;
    flex-direction: column;
    gap: 0;
}

/* 门店项 - 模仿庆泰网站样式 */
.store-item-junpei {
    display: flex;
    flex-direction: row;
    align-items: center;
    gap: 60px;
    margin-bottom: 80px;
    padding: 0;
}

.store-item-junpei .store-info-left {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.store-item-junpei h3 {
    font-size: 26px;
    color: rgb(250, 229, 177);
    font-family: "Microsoft YaHei", sans-serif;
    font-weight: 700;
    margin: 0;
    padding: 0 0 16px;
    line-height: normal;
}

.store-item-junpei p {
    font-size: 16px;
    color: rgb(250, 229, 177);
    font-family: "Microsoft YaHei", sans-serif;
    margin: 0 0 12px;
    padding: 0;
    line-height: 1.8;
}

.store-item-junpei .store-address {
    font-size: 16px;
    color: rgb(250, 229, 177);
    font-family: "Microsoft YaHei", sans-serif;
    margin: 0 0 12px;
    padding: 0;
    line-height: 1.8;
}

.store-item-junpei .store-address-item {
    display: inline;
}

.store-item-junpei .store-address-separator {
    display: inline-block;
    margin: 0 8px;
    color: rgba(250, 229, 177, 0.5);
    text-decoration: underline;
    text-decoration-color: rgba(250, 229, 177, 0.3);
}

.store-item-junpei .store-phone {
    font-size: 16px;
    color: rgb(250, 229, 177);
    font-family: "Microsoft YaHei", sans-serif;
    margin: 0;
    padding: 0;
    line-height: normal;
}

/* 门店图片框框 - 模仿庆泰网站 */
.store-item-junpei .store-image-right {
    flex: 0 0 auto;
    width: 500px;
    height: 350px;
    position: relative;
}

.store-item-junpei .store-image-frame {
    width: 100%;
    height: 100%;
    border: 3px solid rgba(212, 175, 55, 0.4);
    border-radius: 8px;
    background: rgba(0, 0, 0, 0.3);
    padding: 8px;
    box-shadow:
        0 4px 15px rgba(0, 0, 0, 0.5),
        inset 0 0 20px rgba(212, 175, 55, 0.1);
    position: relative;
    overflow: hidden;
}

.store-item-junpei .store-image-frame::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    border: 1px solid rgba(212, 175, 55, 0.2);
    border-radius: 5px;
    pointer-events: none;
}

.store-item-junpei .store-image-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 5px;
    display: block;
}

/* 如果没有图片，显示占位符 */
.store-item-junpei .store-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg,
            rgba(111, 78, 55, 0.5) 0%,
            rgba(74, 52, 38, 0.7) 50%,
            rgba(61, 43, 31, 0.5) 100%);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(250, 229, 177, 0.5);
    font-size: 16px;
    font-family: "Microsoft YaHei", sans-serif;
}

.city-filter {
    display: flex;
    justify-content: center;
    gap: 15px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.city-btn {
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: #E5D5C5;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: 300;
}

.city-btn:hover,
.city-btn.active {
    background: rgba(212, 175, 55, 0.18);
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-2px);
}

.stores-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
    margin-bottom: 20px;
}

/* 限制门店模块显示数量 */
#module-stores .stores-grid {
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
}

.store-card {
    background: rgba(255, 255, 255, 0.04);
    border: 2px solid rgba(212, 175, 55, 0.25);
    border-radius: 15px;
    overflow: hidden;
    transition: all 0.3s;
}

.store-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.4);
    border-color: #D4AF37;
}

.store-image {
    width: 100%;
    height: 220px;
    background-size: cover;
    background-position: center;
    background-color: linear-gradient(135deg, #F5E6D3 0%, #E8D4B8 50%, #D4AF37 100%);
}

.store-info {
    padding: 25px;
}

.store-name {
    font-size: 22px;
    color: #D4AF37;
    margin-bottom: 20px;
    font-weight: 400;
    letter-spacing: 1px;
}

.store-details p {
    color: rgba(245, 245, 245, 0.85);
    margin-bottom: 12px;
    font-size: 15px;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.store-details .icon {
    flex-shrink: 0;
}

.store-desc {
    color: rgba(245, 245, 245, 0.7);
    margin-top: 15px;
    line-height: 1.6;
    font-size: 14px;
}

.btn-sm {
    padding: 8px 20px;
    font-size: 14px;
    margin-top: 15px;
    display: inline-block;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.3s;
}

/* 品牌简介页面样式 */
.about-page-section {
    padding: 80px 0;
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
}

.about-header {
    text-align: center;
    margin-bottom: 50px;
}

.about-subtitle {
    font-size: 20px;
    color: #E5D5C5;
    margin-top: 20px;
    letter-spacing: 2px;
}

.about-image {
    margin-bottom: 50px;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.3);
}

.about-image img {
    width: 100%;
    height: auto;
    display: block;
}

.about-text {
    color: rgba(245, 245, 245, 0.9);
    font-size: 17px;
    line-height: 2;
    text-align: justify;
    margin-bottom: 40px;
}

.about-info {
    background: rgba(212, 175, 55, 0.08);
    padding: 30px;
    border-radius: 12px;
    border: 1px solid rgba(212, 175, 55, 0.3);
    margin-bottom: 40px;
}

.about-info p {
    color: rgba(245, 245, 245, 0.9);
    font-size: 16px;
    margin-bottom: 15px;
    line-height: 1.8;
}

.about-info strong {
    color: #D4AF37;
}

.about-video {
    margin-top: 40px;
    border-radius: 15px;
    overflow: hidden;
}

.about-video video {
    width: 100%;
    height: auto;
}

/* 国际化语言控制样式 */
/* 中文模式下隐藏英文内容 */
.lang-zh .lang-en {
    display: none !important;
}

/* 英文模式下隐藏中文内容 */
.lang-en .lang-zh {
    display: none !important;
}

/* 城市筛选按钮国际化 */
.city-filter .lang-zh,
.city-filter .lang-en {
    transition: all 0.3s ease;
}

/* 确保语言切换时按钮样式保持一致 */
.city-btn.lang-zh,
.city-btn.lang-en {
    padding: 10px 25px;
    background: rgba(212, 175, 55, 0.08);
    border: 2px solid rgba(212, 175, 55, 0.3);
    border-radius: 25px;
    color: #E5D5C5;
    cursor: pointer;
    transition: all 0.3s;
    font-size: 15px;
    font-weight: 300;
}

.city-btn.lang-zh:hover,
.city-btn.lang-zh.active,
.city-btn.lang-en:hover,
.city-btn.lang-en.active {
    background: rgba(212, 175, 55, 0.18);
    border-color: #D4AF37;
    color: #D4AF37;
    transform: translateY(-2px);
}

/* 查看更多按钮国际化 */
.module-link .lang-zh,
.module-link .lang-en {
    transition: all 0.3s ease;
}

/* 门店页面查看更多按钮 */
.stores-more-btn .lang-zh,
.stores-more-btn .lang-en {
    transition: all 0.3s ease;
}

/* 产品展示查看更多按钮 */
.product-showcase-link .lang-zh,
.product-showcase-link .lang-en {
    transition: all 0.3s ease;
}

/* 确保英文文本在英文模式下正确显示 */
.lang-en .module-link,
.lang-en .stores-more-btn,
.lang-en .product-showcase-link {
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: 1px;
}

/* 英文模式下调整字体和间距 */
.lang-en .section-title,
.lang-en .module-title {
    font-family: 'Times New Roman', 'Georgia', serif;
    letter-spacing: 2px;
}

.lang-en .store-name,
.lang-en .product-name,
.lang-en .news-title {
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: 0.5px;
}

/* 英文模式下的导航菜单样式调整 */
.lang-en .nav-link {
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: 0.5px;
}

/* 英文模式下的搜索框占位符 */
.lang-en .search-box input::placeholder {
    font-family: 'Arial', 'Helvetica', sans-serif;
}

/* 英文模式下的按钮文本样式 */
.lang-en .category-tab {
    font-family: 'Arial', 'Helvetica', sans-serif;
    letter-spacing: 0.5px;
}

/* 古法金·工艺再现模块样式 */
.craft-section {
    background: rgba(0, 0, 0, 0.3);
    padding: 80px 0 0 0;
    margin-bottom: 0;
}

.craft-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: start;
    padding-bottom: 80px;
}

.craft-text {
    padding: 0;
}

.craft-title {
    font-size: 28px;
    color: #d4af37;
    margin-bottom: 30px;
    font-weight: 300;
    letter-spacing: 6px;
    line-height: 1.2;
}

.craft-description p {
    font-size: 16px;
    line-height: 2;
    margin-bottom: 20px;
    color: #e0e0e0;
}

.craft-features {
    color: #d4af37 !important;
    font-weight: 500;
    font-size: 17px !important;
    letter-spacing: 2px;
}

.craft-cert,
.craft-custom {
    font-size: 15px !important;
    color: #ccc !important;
    font-style: italic;
}

.craft-carousel {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.5);
    background: rgba(0, 0, 0, 0.2);
}

.craft-slider {
    position: relative;
    width: 100%;
    height: 400px;
    overflow: hidden;
}

.craft-banner-item {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 1s ease-in-out;
}

.craft-banner-item.active {
    opacity: 1;
}

.craft-banner-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* 精选系列模块样式 */
.featured-section {
    background: transparent;
    padding: 0 0 80px 0;
    margin-top: 0;
}

.featured-header {
    text-align: left;
    margin-bottom: 60px;
    padding-left: 0;
}

.featured-title {
    font-size: 28px;
    color: #d4af37;
    font-weight: 300;
    letter-spacing: 6px;
    margin-bottom: 15px;
    line-height: 1.2;
}

.featured-subtitle {
    font-size: 14px;
    color: #999;
    font-style: italic;
    letter-spacing: 2px;
}

.featured-categories {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
    margin: 0 auto 60px;
    max-width: 1200px;
}

.featured-category-card {
    background: rgba(255, 255, 255, 0.03);
    border-radius: 16px;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.4s ease;
    border: 1px solid rgba(212, 175, 55, 0.2);
}

.featured-category-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 30px rgba(212, 175, 55, 0.3);
    border-color: rgba(212, 175, 55, 0.5);
}

.featured-category-image {
    width: 100%;
    height: 280px;
    overflow: hidden;
    position: relative;
}

.featured-category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.featured-category-card:hover .featured-category-image img {
    transform: scale(1.1);
}

.featured-category-name {
    padding: 20px;
    text-align: center;
    font-size: 18px;
    color: #d4af37;
    font-weight: 400;
    letter-spacing: 3px;
    background: rgba(0, 0, 0, 0.4);
}

.featured-footer {
    text-align: center;
}

.featured-link {
    display: inline-block;
    padding: 14px 40px;
    background: transparent;
    color: #d4af37;
    text-decoration: none;
    border: 2px solid rgba(212, 175, 55, 0.5);
    border-radius: 30px;
    font-size: 16px;
    letter-spacing: 2px;
    transition: all 0.3s ease;
}

.featured-link:hover {
    background: rgba(212, 175, 55, 0.1);
    border-color: #d4af37;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(212, 175, 55, 0.3);
}

.featured-link span {
    margin-left: 8px;
    transition: margin-left 0.3s ease;
}

.featured-link:hover span {
    margin-left: 12px;
}

.featured-empty {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 16px;
}