/*
 * 自定义样式文件
 * 主要用于补充和覆盖Bootstrap5的样式
 * 适配PC端及高分辨率屏幕（2K/4K）
 * 包含从index.html提取的导航相关样式
 * v1.0.0
 */
:root {
    --green-color: #00C4B3;
    --nav-height: 80px;
}

/* ==================== 全局自定义滚动条 ==================== */
::-webkit-scrollbar {
    width: 5px;
    height: 5px;
    background-color: rgba(0, 196, 179, 0.2);
}
::-webkit-scrollbar-track {
    border-radius: 0;
    background: rgba(255, 255, 255, 0);
}
::-webkit-scrollbar-thumb {
    border-radius: 5px;
    background: rgba(0, 196, 179, 0.54);
}
::-webkit-scrollbar-thumb:hover {
    background: rgba(0, 196, 179, 0.7);
}
/* Firefox 滚动条 */
html {
    scrollbar-width: thin;
    scrollbar-color: rgba(0, 196, 179, 0.54) rgba(0, 196, 179, 0.2);
}

/* 基础重置和增强 */
* {box-sizing: border-box;}

/* 全局设置：白色背景，全屏平铺 */
body {background-color: #ffffff; margin: 0; padding-top: var(--nav-height); min-height: 100vh; font-family: 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif; font-size: 16px; line-height: 1.6; color: #333; text-rendering: optimizeLegibility; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; overflow-x: hidden; /* 正常屏幕隐藏横向滚动 */}
/*
 * 方正字体文件（FZLTHJW/FZLTCXHJW）为商业字体，需从方正字库获取授权后放置到 static/fonts/ 目录
 * 暂时注释掉 @font-face，使用系统字体栈作为降级方案
 * 恢复方法：将 .woff/.ttf 文件放入 static/fonts/，取消下方注释即可
 */
/* -- 方正字体声明（取消注释即可启用）--
@font-face {
    font-family: 'FZLanTingHei';
    src: url('../fonts/FZLTHJW.eot');
    src: url('../fonts/FZLTHJW.eot?#iefix') format('embedded-opentype'),
         url('../fonts/FZLTHJW.woff') format('woff'),
         url('../fonts/FZLTHJW.ttf') format('truetype'),
         url('../fonts/FZLTHJW.svg#FZLTHJW') format('svg');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}
@font-face {
    font-family: 'FZLanTingHei';
    src: url('../fonts/FZLTCXHJW.eot');
    src: url('../fonts/FZLTCXHJW.eot?#iefix') format('embedded-opentype'),
         url('../fonts/FZLTCXHJW.woff') format('woff'),
         url('../fonts/FZLTCXHJW.ttf') format('truetype'),
         url('../fonts/FZLTCXHJW.svg#FZLTCXHJW') format('svg');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}
-- 方正字体声明结束 */
body{
    font-family: 'PingFang SC', 'Microsoft YaHei', 'Helvetica Neue', Arial, sans-serif;
}
/* 页面全局容器 */
.page-container {width: 100%; margin: 0; padding: 0; margin-bottom:0}
.page-banner img {width: 100%; max-height: 400px; object-fit: cover;}
.page-content {max-width: 1200px; margin: 0 auto; padding: 40px 20px;}
.page-title {font-size: 2rem; font-weight: 700; margin-bottom: 20px; color: #333;}
.page-body {line-height: 1.8; font-size: 1rem; color: #555;}

/* 标题样式增强 */
h1, h2, h3, h4, h5, h6 {font-weight: 700; line-height: 1.5; margin-bottom: 1rem;}

/* 链接样式 */
a {color: #00c4b3; text-decoration: none; transition: all 0.3s ease;}

a:hover {color: #00dac7;text-decoration: none;}



/* 按钮样式增强 */
.btn {padding: 0.75rem 2.5rem;font-size: 1.1rem;font-weight: normal;border-radius: 2.5rem;transition: all 0.3s ease;}

.btn-primary {background: linear-gradient(135deg, #00c4b3 0%, #0a58ca 100%); border: none;}

.btn-primary:hover {background: linear-gradient(135deg, #0a58ca 0%, #084298 100%); transform: translateY(-2px); box-shadow: 0 4px 15px rgba(13, 110, 253, 0.4);}

.btn-green {background: var(--green-color, #00C4B3); border: none; color: #fff;}
.btn-green:hover {background: var(--green-color, #00C4B3);transform: translateY(-2px);/* box-shadow: 0 4px 15px rgba(0, 196, 179, 0.4); */color: #fff;}

/* 导航栏样式增强 - 从index.html提取 */
.navbar {padding: 1rem 0; box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);}

.navbar-brand {font-size: 1.5rem; font-weight: 700;}

.nav-link {font-weight: 500; padding: 0.5rem 1rem !important;}

/* 高级导航栏样式 - 从index.html提取 */
.advanced-navbar {display: flex; align-items: center; justify-content: space-between; padding: 0.5rem 0; position: relative;}

/* 左侧Logo区域 */
.nav-left {flex: 0.8; min-width: 200px;width: 100%; display: flex; align-items: center; justify-content: center;}

.nav-logo {display: inline-flex; align-items: center; text-decoration: none; color: #333; font-weight: 700; font-size: 1.8rem; transition: all 0.3s ease;}

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

/* 真实Logo图片样式 */
.logo-image-real {height: 70px; width: auto; margin-left: 12px; vertical-align: middle; transition: all 0.3s ease;}

/* 中间导航区域 */
.nav-center {flex: 2.4; display: flex; justify-content: flex-start; margin-left: 50px;}

.nav-menu {display: flex; list-style: none; margin: 0; padding: 0; gap: 0; /* 名称之间间距为0 */}

.nav-menu-item {
    position: relative;
    margin: 0; /* 确保没有外边距 */
    transition: background-color 0.3s ease;
}

.nav-menu-item:hover {
    background-color: #f5f5f5; /* 悬停时增加灰色背景 */
}

/* 为带data-nav属性的导航项同样设置悬停样式 */
.nav-menu-item[data-nav]:hover {
    background-color: #f5f5f5;
}

.nav-menu-link {
    color: #555;
    font-size: 1.2rem;
    font-weight: 500;
    text-decoration: none;
    padding: 2rem 1.5rem; /* 增加左右内边距，提供更舒适点击区域 */
    position: relative;
    transition: all 0.3s ease;
}

/* 鼠标悬停底部边线高亮 */
.nav-menu-link::before {content: ''; position: absolute; bottom: 0; left: 0; width: 0; height: 3px; background-color: var(--green-color); transition: width 0.3s ease, bottom 0.3s ease; border-radius: 3px 3px 0 0;}

/* 向上凸起三角样式 */
.nav-menu-link::after {content: ''; position: absolute; bottom: 3px; left: 50%; transform: translateX(-50%); width: 0; height: 0; border-left: 6px solid transparent; border-right: 6px solid transparent; border-bottom: 6px solid var(--green-color); opacity: 0; transition: opacity 0.3s ease, bottom 0.3s ease;}

.nav-menu-link:hover {color: var(--green-color); text-decoration: none !important;}

.nav-menu-link:hover::before {width: 100%; bottom: -3px;}

.nav-menu-link:hover::after {opacity: 1; bottom: 0;}

.nav-menu-link.active {color: var(--green-color);}

.nav-menu-link.active::before {width: 100%; bottom: -3px;}

.nav-menu-link.active::after {opacity: 1; bottom: 0;}

/* 导航悬停弹出层样式 */
.nav-menu-item {
    position: relative;
}

.nav-dropdown-layer {
    position: fixed;
    left: 0;
    right: 0;
    width: 100%; /* 宽度设为100% */
    min-height: 500px;
    background-color: rgba(255, 255, 255, 0.8); /* 白色透明度80% */
    backdrop-filter: blur(10px);
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    z-index: 10000; /* 提高z-index确保不被遮挡 */
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}

/* 投资者关系弹窗：白色不透明 + 缩小高度 + 底部投影 */
.nav-dropdown-layer[data-dropdown-type="investor"] {
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: none;
    min-height: 250px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* 探索华帝弹窗：白色不透明 + 底部投影 */
.nav-dropdown-layer[data-dropdown-type="explore"] {
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* 产品中心弹窗：白色不透明 + 底部投影 */
.nav-dropdown-layer[data-dropdown-type="product"] {
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: none;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
}

/* 购买指引弹窗：白色小弹窗 + 底部投影，直接显示不滑动 */
.nav-dropdown-layer[data-dropdown-type="purchase-guide"] {
    position: absolute;
    width: 132px;
    min-height: auto;
    background-color: rgba(255, 255, 255, 1);
    backdrop-filter: none;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.12);
    border-radius: 4px;
    transition: opacity 0.2s ease, visibility 0.2s ease; /* 仅淡入淡出，无位移动画 */
}

/* 购买指引链接列表（上下布局，内容居中） */
.purchase-guide-nav-grid {
    display: flex;
    flex-direction: column;
    align-items: center; /* 内容水平居中 */
    padding: 8px 0;
}

.purchase-guide-link {
    display: block;
    color: #4b4b4b;
    font-size: 14px;
    text-decoration: none;
    padding: 10px 16px;
    text-align: center; /* 文字居中 */
    transition: all 0.2s ease;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

/*.purchase-guide-link:hover {*/
/*    color: var(--green-color);*/
/*    background-color: rgba(0, 181, 164, 0.05);*/
/*}*/

/* 弹出层显示状态 */
.nav-dropdown-layer.active {
    opacity: 1;
    visibility: visible;
}

.dropdown-content {
    text-align: center;
    width: 100%; /* 默认填满弹出层宽度 */
}

/* 显示激活的内容 - 通过JS控制 */
.dropdown-content.active {
    display: block;
}

.dropdown-index {
    font-size: 4rem;
    font-weight: 900;
    color: var(--green-color);
    opacity: 0.3;
    line-height: 1;
    margin-bottom: 10px;
}

.dropdown-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 15px;
}

.dropdown-desc {
    font-size: 1.2rem;
    color: #666;
    line-height: 1.6;
    max-width: 80%;
    margin: 0 auto;
}

/* ==================== 差异化弹出层布局样式 ==================== */

/* 默认布局样式优化 */
.default-dropdown-layout {
    width: 100%;
    padding: 60px 40px;
    text-align: center;
}

.default-nav-children {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 30px;
    margin-top: 30px;
}

.child-nav-link {
    color: #555;
    text-decoration: none;
    font-size: 1.1rem;
    padding: 10px 25px;
    border-radius: 25px;
    background: #f5f5f5;
    transition: all 0.3s ease;
}

.child-nav-link:hover {
    color: #fff;
    background: var(--green-color);
    text-decoration: none;
}

.no-children-tip {
    color: #999;
    font-size: 1rem;
}

/* ========== 产品中心布局样式 - 多级联动版 ========== */
.product-dropdown-layout {
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    padding: 30px 0;
}

/* ========== 1. 二级分类导航栏 ========== */
.product-level2-nav {
    display: flex;
    justify-content: space-around;
    gap: 0;
    padding-bottom: 15px;
    border-bottom: 2px solid rgba(0, 196, 179, 0.15);
    margin-bottom: 15px;
    flex-wrap: nowrap;
}

.level2-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    padding: 5px 8px;
    cursor: pointer;
    border-radius: 8px;
    transition: all 0.3s ease;
    white-space: nowrap;
    flex: 1 1 0;
    min-width: 0;
    border: none;
    background: transparent;
    text-decoration: none;
    color: inherit;
    pointer-events: auto;
    position: relative;
    z-index: 1;
}

.level2-item:hover {
    background: transparent;
    transform: translateY(-2px);
}

.level2-item.active {
    color: var(--green-color);
    transform: translateY(-2px);
    box-shadow: none;
}

.level2-icon {
    width: clamp(65px, 5vw, 80px);
    height: clamp(65px, 5vw, 80px);
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 0;
    background: transparent;
    box-shadow: none;
    position: relative;
    transition: all 0.3s ease;
}

.level2-item.active .level2-icon {
    background: transparent;
    box-shadow: none;
}

.level2-icon img {
    width: clamp(65px, 5vw, 80px);
    height: clamp(55px, 4.5vw, 70px);
    object-fit: contain;
    position: absolute;
    top: 0;
    left: 0;
    transition: opacity 0.3s ease;
}

.level2-icon .icon-default {
    opacity: 1;
    z-index: 1;
}

.level2-icon .icon-hover {
    opacity: 0;
    z-index: 2;
}

.level2-item:hover .level2-icon .icon-default,
.level2-item.active .level2-icon .icon-default {
    opacity: 0;
}

.level2-item:hover .level2-icon .icon-hover,
.level2-item.active .level2-icon .icon-hover {
    opacity: 1;
}

.level2-title {
    font-size: clamp(0.75rem, 0.9vw, 1rem);
    font-weight: 500;
    letter-spacing: 0.5px;
    color: #000;
    transition: color 0.3s ease;
    overflow: hidden;
    text-overflow: ellipsis;
    max-width: 100%;
}

.level2-item:hover .level2-title,
.level2-item.active .level2-title {
    color: var(--green-color);
}

/* ========== 2. 当前二级大标题 ========== */
.product-level2-title {
    text-align: center;
    margin-bottom: 25px;
}

.product-level2-title h2 {
    font-size: 36px;
    font-weight: 500;
    color: black;
    margin: 0 0 12px 0;
    letter-spacing: 20px;
}


/* ========== 3. 三级分类列表 ========== */
.product-level3-nav {
    margin-bottom: 30px;
}

.level3-panel {
    display: none;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.level3-panel.active {
    display: flex;
    animation: fadeInUp 0.3s ease;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.level3-item {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 265px;
    height: 151px;
    border: none;
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    text-decoration: none;
    color: inherit;
    pointer-events: auto;
    z-index: 1;
    flex-shrink: 0;
}

.level3-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.3);
    z-index: 1;
}

.level3-title-wrapper {
    position: relative;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.level3-title {
    font-size: 1.2rem;
    font-weight: 400;
    color: #fff;
    text-align: center;
    text-shadow: 0 1px 3px rgba(0, 0, 0, 0.3);
    transition: all .5s;
}
.level3-item:hover .level3-title, .level3-item.active .level3-title {
    color: #00dac7;
}
.level3-bottom-border {
    width: 0;
    height: 3px;
    background: var(--green-color);
    margin-top: 8px;
    transition: width 0.4s ease;
    display: none;
}

.level3-item:hover .level3-bottom-border,
.level3-item.active .level3-bottom-border {
    width: 60%;
}

/* ========== 4. 推荐产品区 ========== */
.product-recommend-area {
    padding-top: 10px;
}

.recommend-products-panel {
    display: none;
    animation: fadeIn 0.3s ease;
}

.recommend-products-panel.active {
    display: block;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.recommend-products-grid {
    display: flex;
    justify-content: center;
    align-items: stretch;
    flex-wrap: wrap;
    gap: 22px;
}

.recommend-products-grid > * {
    flex: 0 1 calc(25% - 17px);
    min-width: 0;
}

@media (max-width: 1400px) {
    .recommend-products-grid > * {
        flex: 0 1 calc(33.333% - 15px);
    }
}

.product-card-large {
    display: block;
    border-radius: 16px;
    text-align: center;
    cursor: pointer;
    overflow: hidden;
    position: relative;
    text-decoration: none;
    color: inherit;
}

.product-card-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--green-color), #00e5d2);
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.product-card-large:hover {
    transform: translateY(-6px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.1);
    border-color: rgba(0, 196, 179, 0.15);
}

.product-card-large:hover::before {
    transform: scaleX(1);
}

.product-card-placeholder {
    cursor: default;
}

.product-card-placeholder:hover {
    transform: none;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    border-color: transparent;
}

.product-card-placeholder:hover::before {
    transform: scaleX(0);
}

.product-card-placeholder .placeholder-icon {
    font-size: 3rem;
    color: #999;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 100%;
}

.product-card-img {
    width: 100%;
    height: clamp(150px, 12vw, 200px);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    border-radius: 12px;
    overflow: hidden;
}

.product-card-img img {
    max-height: 100%;
    max-width: 100%;
    object-fit: contain;
    transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.product-card-large:hover .product-card-img img {
    transform: scale(1.08);
}

.more-products-link {
    border-radius: 16px;
    display: flex;
    flex-direction: row;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    cursor: pointer;
    min-height: 220px;
    padding: 20px;
    box-sizing: border-box;
}

.more-products-link:hover {
    transform: translateY(-6px);
}

.more-products-link:hover .more-text {
    color: var(--green-color);
}

.more-products-link:hover .more-icon {
    opacity: 0.8;
    transform: translateX(5px);
}

.more-text {
    font-size: 19px;
    font-weight: 400;
    color: #333;
    margin-right: 8px;
    transition: color 0.3s ease;
}

.more-icon {
    width: 24px;
    height: 24px;
    vertical-align: middle;
    transition: all 0.3s ease;
}

.product-card-info h4 {
    font-size: 1.05rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
    transition: color 0.3s ease;
}

.product-card-large:hover .product-card-info h4 {
    color: var(--green-color);
}

.product-card-info p {
    font-size: 0.85rem;
    color: #999;
    margin: 0;
    line-height: 1.5;
}

/* ========== 响应式适配 ========== */
@media (max-width: 1200px) {
    .product-dropdown-layout {
        padding: 25px 30px;
    }

    .product-level2-nav {
        gap: 15px;
        flex-wrap: wrap;
    }

    .level2-item {
        padding: 12px 15px;
        min-width: 100px;
        flex: 0 0 auto;
    }

    .level2-icon {
        width: 70px;
        height: 70px;
    }

    .level2-icon img {
        width: 70px;
        height: 70px;
    }

    .level2-title {
        font-size: 0.85rem;
    }

    .level3-item {
        min-width: 100px;
        height: 70px;
    }

    .level3-title {
        font-size: 0.85rem;
    }

    .recommend-products-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 18px;
    }
}

@media (min-width: 1920px) {
    .product-dropdown-layout {
        padding: 10px;
    }

    .recommend-products-grid {
        gap: 15px;
    }
}

/* ========== 探索华帝布局样式 ========== */
.explore-dropdown-layout {
    width: 80%;
    margin: 0 auto;
    padding: 50px 40px;
}

.explore-nav-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 40px;
}

.explore-nav-column {
    text-align: left;
}

.column-title {
    font-size: 1.2rem;
    font-weight: 500;
    color: #2b2b2b;
    margin: 0 0 20px 0;
    padding-bottom: 12px;
    border-bottom: 1px solid #cccccc;
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
    transition: color 0.3s ease;
}

.column-title:hover {
    color: var(--green-color);
}

.column-title i {
    color: var(--green-color);
    font-size: 1rem;
}

.column-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.column-links li {
    margin-bottom: 12px;
}

.column-links a {
    color: #666;
    text-decoration: none;
    transition: all 0.3s ease;
    display: block;
    padding: 5px 0;
    font-size: 0.95rem;
}

.column-links a:hover {
    color: var(--green-color);
    padding-left: 8px;
}

/* ========== 投资者关系布局样式 ========== */
.investor-dropdown-layout {
    width: 80%;
    margin: 0 auto;
}

.investor-card-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 20px;
}

.investor-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    padding: 30px 20px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.investor-card:hover {
    background: #e7f8f6;

    transform: translateY(-5px);
}

.investor-card .card-icon {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.3s ease;
}

.investor-card .card-icon img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.investor-card:hover .card-icon {
    opacity: 0.8;
}

.investor-card .card-title {
    font-size: 16px;
    font-weight: 400;
    color: #3f4040;
    transition: color 0.3s ease;
}

.investor-card:hover .card-title {
    color: #2b2b2b;
}

.investor-card .card-desc {
    font-size: 0.85rem;
    color: #999;
    transition: color 0.3s ease;
}

.investor-card:hover .card-desc {
    color: rgba(255, 255, 255, 0.8);
}

/* ========== 分红列表页样式 ========== */

/* 内容区域包裹：最大宽度1400px，居中 */
.bonus-content-wrapper {
    max-width: 1400px;
    margin: 0 auto;
}

/* 页面标题 */
.bonus-page-title {
    text-align: center;
    padding: 50px 0 30px;
}
.bonus-page-title h1 {
    font-size: 40px;
    font-weight: 700;
    color: var(--green-color);
    margin: 0 0 8px;
}
.bonus-page-subtitle {
    font-size: 0.95rem;
    color: #999;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* 三级导航 */
.bonus-sub-nav {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 1px solid #e8e8e8;
    margin-bottom: 24px;
}
.bonus-sub-nav-item {
    display: inline-block;
    padding: 10px 28px;
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
    border-bottom: 2px solid transparent;
    transition: all 0.25s;
    margin-bottom: -1px;
}
.bonus-sub-nav-item:hover {
    color: var(--green-color);
    text-decoration: none;
}
.bonus-sub-nav-item.active {
    color: var(--green-color);
    border-bottom-color: var(--green-color);
    font-weight: 600;
}

/* 工具栏：年度标签 + 排序按钮 */
.bonus-toolbar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin: 42px 0;
}

/* 年度标签（横向） */
.bonus-year-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}
.bonus-year-tab {
    display: inline-block;
    padding: 8px 22px;
    border-radius: 22px;
    font-size: 0.9rem;
    color: #555;
    background: #f5f5f5;
    transition: all 0.25s;
    text-decoration: none;
}
.bonus-year-tab:hover {
    background: #e8f5e9;
    color: var(--green-color);
    text-decoration: none;
}
.bonus-year-tab.active {
    background: var(--green-color);
    color: #fff;
}

/* 排序按钮 */
.bonus-sort-area {
    flex-shrink: 0;
}
.bonus-sort-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 18px;
    border: 1px solid #e0e0e0;
    border-radius: 8px;
    background: #fff;
    color: #555;
    font-size: 0.88rem;
    cursor: pointer;
    transition: all 0.25s;
    text-decoration: none;
    user-select: none;
}
.bonus-sort-btn:hover {
    border-color: var(--green-color);
    color: var(--green-color);
    text-decoration: none;
}
.bonus-sort-btn i {
    font-size: 0.85rem;
    transition: transform 0.3s;
}

/* 分红表格 */
.bonus-table-wrapper {
    margin-bottom: 40px;
}
.bonus-table {
    width: 100%;
    border-collapse: collapse;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 6px rgba(0,0,0,0.06);
}
.bonus-table thead th {
    background: #f7f8fa;
    padding: 14px 16px;
    font-size: 0.9rem;
    font-weight: 600;
    color: #444;
    text-align: center;
    border-bottom: 2px solid #e8e8e8;
}
.bonus-table tbody td {
    padding: 14px 16px;
    font-size: 0.88rem;
    color: #333;
    text-align: center;
    border-bottom: 1px solid #f0f0f0;
    vertical-align: middle;
}
.bonus-table tbody tr:hover {
    background: #f9fbf9;
}
.bonus-table tbody tr:nth-child(even) {
    background: #fafafa;
}
.bonus-table tbody tr:nth-child(even):hover {
    background: #f4f7f4;
}
.bonus-title-cell {
    text-align: left !important;
    max-width: 360px;
}
.bonus-title-link {
    color: #333;
    text-decoration: none;
    transition: color 0.2s;
}
.bonus-title-link:hover {
    color: var(--green-color);
    text-decoration: underline;
}

/* 分红空状态 */
.bonus-empty {
    text-align: center;
    padding: 80px 0;
    color: #aaa;
}
.bonus-empty .fa-inbox {
    font-size: 56px;
    color: #ddd;
    display: block;
    margin-bottom: 20px;
}
.bonus-empty p {
    font-size: 0.95rem;
    margin: 0;
}

/* 分红分页 */
.bonus-pagination {
    margin-top: 30px;
}

/* 投资文件筛选下拉框 */
.investment-filter-group {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-left: auto;
}
.investment-filter-form {
    margin: 0;
}
.investment-select {
    padding: 6px 32px 6px 12px;
    font-size: 0.85rem;
    color: #555;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 6px;
    cursor: pointer;
    outline: none;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='10' height='6'%3E%3Cpath d='M0 0l5 6 5-6z' fill='%23999'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 10px center;
}
.investment-select:hover {
    border-color: var(--green-color);
}

/* 下载按钮 */
.investment-download-btn {
    display: inline-block;
    padding: 4px 14px;
    font-size: 0.85rem;
    color: var(--green-color);
    border: 1px solid var(--green-color);
    border-radius: 16px;
    text-decoration: none;
    transition: all 0.25s;
}
.investment-download-btn:hover {
    background: var(--green-color);
    color: #fff;
    text-decoration: none;
}

/* 表格行奇偶条纹 */
.investment-row-odd {
    background: #fff;
}
.investment-row-even {
    background: #fafafa;
}
.bonus-table tbody tr.investment-row-odd:hover,
.bonus-table tbody tr.investment-row-even:hover {
    background: #f0f8f5;
}

@media (max-width: 1200px) {
    .product-dropdown-layout {
        padding: 30px 40px;
    }

    .recommend-products {
        grid-template-columns: repeat(3, 1fr);
    }

    .explore-nav-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 30px;
    }

    .investor-card-grid {
        grid-template-columns: repeat(3, 1fr);
    }

    .bonus-toolbar {
        flex-direction: column;
        align-items: flex-start;
    }

    .bonus-table thead th,
    .bonus-table tbody td {
        padding: 10px 8px;
        font-size: 0.8rem;
    }
}

@media (min-width: 1920px) {
    .recommend-products {
        gap: 30px;
    }
}

/* 悬停时链接颜色变化 */
.nav-menu-item:hover .nav-menu-link {
    color: var(--green-color);
    background-color: #f5f5f5; /* 悬停时增加淡灰色背景 */
    text-decoration: none !important;
}

/* 悬停时链接颜色变化 - 保持与之前一致 */
.nav-menu-item[data-nav]:hover .nav-menu-link {
    color: var(--green-color);
    background-color: #f5f5f5; /* 悬停时增加淡灰色背景 */
    text-decoration: none !important;
}

.nav-menu-item:hover .nav-menu-link::before {
    width: 100%;
    bottom: -3px;
}

.nav-menu-item:hover .nav-menu-link::after {
    opacity: 1;
    bottom: 0;
}

/* 右侧搜索区域 */
.nav-right {flex: 0.8; display: flex; justify-content: flex-end; align-items: center; position: relative; min-width: 150px;}

/* 导航右侧搜索框 */
.nav-search {
    flex-shrink: 0;
}

.nav-search .search-form {
    height: 42px;
}

.nav-search .search-input {
    width: 180px;
    font-size: 0.9rem;
}

.nav-search .search-btn {
    padding: 8px 12px;
}

/* 导航文字链接（购买指引触发器 — 占满导航栏高度，确保悬停区域无缝） */
.nav-text-link {
    color: #4b4b4b;
    font-size: 14px;
    margin-left: 30px;
    margin-right: 50px;
    text-decoration: none;
    white-space: nowrap;
    transition: color 0.3s ease;
    height: var(--nav-height); /* 与导航栏同高 */
    display: inline-flex;
    align-items: center;
}

.nav-text-link:hover {
    color: var(--green-color);
}

/* 购买指引内部 span —— 承载文字，撑满导航栏高度 */
.purchase-guide-trigger-area {
    display: inline-flex;
    align-items: center;
    height: 100%;
}



/* 轮播图样式 - 全屏自适应显示 */
.slide-show{width: 100%; height: calc(100vh - var(--nav-height)); margin: 0; padding: 0; position: relative; z-index: 1; overflow: hidden; border-radius: 0;}
.slide-show .swiper{width: 100%; height: 100%;}
.slide-show .swiper-slide{text-align: center; font-size: 18px; background: #000; display: flex; justify-content: center; align-items: center;}
.slide-show .swiper-slide img{display: block; width: 100%; height: 100%; object-fit: cover;}

/* 调整页面布局适应全屏轮播图 */
.bt + .page-container{position: relative; z-index: 2;}
.bt{position: fixed; top: 0; left: 0; right: 0; z-index: 1000; background: rgba(255, 255, 255, 0.95); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(234, 234, 234, 0.8); overflow-x: hidden; transition: all 0.3s ease;}



/* 轮播图导航按钮样式 - 已隐藏 */
.slide-show .swiper-button-next, .slide-show .swiper-button-prev {display: none !important;}

/* 轮播图分页器样式 */
.slide-show .swiper-pagination {bottom: 20px !important; display: flex; justify-content: center; align-items: center; gap: 8px;}
.slide-show .swiper-pagination-bullet {width: 40px; height: 6px; background: rgba(0, 0, 0, 0.4); opacity: 0.7; border-radius: 1px; transform: skewX(-20deg); transition: all 0.3s ease;}
.slide-show .swiper-pagination-bullet-active {background: rgba(0, 181, 164, 0.9); opacity: 1; height: 6px; transform: skewX(-20deg) scaleX(1.2);}

/* 淡入淡出效果 */
.swiper-fade .swiper-slide {opacity: 0 !important; transition: opacity 0.8s ease !important;}
.swiper-fade .swiper-slide-active {opacity: 1 !important;}
.swiper-fade .swiper-slide-next, .swiper-fade .swiper-slide-prev {opacity: 0 !important;}

/* 响应式调整 - 针对高分辨率屏幕 - 从index.html提取部分 */
@media (min-width: 2560px) {
    .advanced-navbar {padding: 2rem 0;}
    .nav-logo {font-size: 2.2rem;}
    .nav-menu-link {font-size: 1.3rem;}
    .nav-menu {gap: 0;}
}

@media (min-width: 3840px) {
    .advanced-navbar {padding: 2.5rem 0;}
    .nav-logo {font-size: 2.8rem;}
    .nav-menu-link {font-size: 1.6rem;}
    .nav-menu-link::before {height: 4px;}
    .nav-menu-link::after {border-left-width: 8px; border-right-width: 8px; border-bottom-width: 8px;}
    .nav-menu {gap: 0;}
}

/* 导航栏响应式设计 - PC端自适应，低于1200px固定宽度为1200px */
@media (max-width: 1199px) {
    /* 确保整个页面可水平滚动 - 小于1200px时启用滚动 */
    body {min-width: 1200px; padding-top: 0; /* 导航在文档流中，无需padding */}
    html {min-width: 1200px;}

    /* 导航栏随页面滚动显示 */
    .bt {position: static !important; /* 改为文档流定位 */
        width: 1200px !important;
        margin: 0 !important;
        background: rgba(255, 255, 255, 0.95) !important;
        backdrop-filter: blur(10px) !important;
        border-bottom: 1px solid rgba(234, 234, 234, 0.8) !important;
        overflow-x: hidden !important;
        z-index: 1000 !important;}

    /* 导航栏内部容器 - 固定1200px宽度 */
    .advanced-navbar {
        min-width: 1200px;
        white-space: nowrap;
        padding: 0.5rem 0;
        width: 1200px;
        margin: 0 auto;
    }

    .nav-left {flex: 0.8; min-width: 200px;}
    .nav-center {flex: 2.4; order: initial; margin-top: 0; justify-content: flex-start; margin-left: 50px;}
    .nav-right {flex: 0.8; order: initial; margin-left: 0; min-width: 150px;}
    .nav-menu {gap: 0; justify-content: flex-start; flex-wrap: nowrap;}
    .nav-menu-item {
        margin: 0;
        padding: 0 ; /* 在小屏幕下适当内边距 */
    }
    .nav-menu-item:hover {
        background-color: #f5f5f5;
    }
    /* 小屏幕下链接悬停样式 - 与大屏幕完全一致 */
    .nav-menu-item:hover .nav-menu-link {
        color: var(--green-color);
        background-color: #f5f5f5; /* 悬停时增加淡灰色背景 */
        text-decoration: none !important;
    }
    .nav-menu-item[data-nav]:hover .nav-menu-link {
        color: var(--green-color);
        background-color: #f5f5f5; /* 悬停时增加淡灰色背景 */
        text-decoration: none !important;
    }
    /* 同步底边线高亮效果 */
    .nav-menu-item:hover .nav-menu-link::before {
        width: 100%;
        bottom: -3px;
    }
    /* 同步向三角形效果 */
    .nav-menu-item:hover .nav-menu-link::after {
        opacity: 1;
        bottom: 0;
    }
    .nav-menu-link {
        font-size: 1rem;
        padding: 2rem 1.5rem; /* 与小屏幕padding一致 */
        transition: all 0.3s ease; /* 同步所有过渡效果 */
    }
    /* 所有页面容器统一为1200px宽度，使用页面滚动条 */
    .page-container {overflow-x: visible; padding: 0; min-width: 1200px; margin: 0 auto; width: 100%; max-width: 1200px;}

    /* 调整轮播图在固定宽度下的布局 - 移除导航负边距 */
    .bt + .page-container {margin-top: 0 !important; width: 1200px;}

    /* 轮播图在低于1200px时高度设为500px */
    .slide-show{height: 500px; width: 1200px; margin: 0 auto;}

    /* 响应式导航弹出层调整 - 在小屏幕下确保正确定位 */
    /* 在小屏幕下，弹出层应该位于导航栏下方 */
    /* 注意：top值由JavaScript动态计算设置 */

    .dropdown-content {
        padding: 30px;
        width: 90%; /* 在小屏幕下内容区域宽度调整为90% */
    }

    .dropdown-index {
        font-size: 3.5rem;
    }

    .dropdown-title {
        font-size: 2rem;
    }

    .dropdown-desc {
        font-size: 1.1rem;
    }
}

/* 大于等于1200px屏幕 - 确保轮播图全屏显示 */
@media (min-width: 1200px) {
    /* 1200+屏幕隐藏所有滚动条 */
    body {
        overflow-x: hidden !important;
        overflow-y: auto !important;
    }

    html {
        overflow-x: hidden !important;
    }

    /* 导航容器不显示滚动条 */
    .bt {
        overflow-x: hidden !important;
        overflow-y: hidden !important;
    }

    .advanced-navbar {
        overflow-x: hidden !important;
        overflow-y: hidden !important;
    }

    /* 确保1200+屏幕导航样式与基础样式一致 */
    .nav-menu-link {
        color: #555 !important;
        padding: 2rem 1.5rem !important;
        font-size: 1rem !important;
        font-weight: 500 !important;
    }

    .nav-menu-item:hover {
        background-color: #f5f5f5 !important;
    }

    .nav-menu-item:hover .nav-menu-link {
        color: var(--green-color) !important;
        background-color: #f5f5f5 !important;
        text-decoration: none !important;
    }

    .nav-menu-item[data-nav]:hover .nav-menu-link {
        color: var(--green-color) !important;
        background-color: #f5f5f5 !important;
        text-decoration: none !important;
    }

    .slide-show{width: 100%; height: calc(100vh - var(--nav-height)); margin: 0; left: 0; right: 0;}
    .bt + .page-container {width: 100%; margin-left: 0; margin-right: 0;}

    /* 大于等于1200px屏幕 - 弹出层使用固定位置 */
    .nav-dropdown-layer {
        top: 94px; /* 大屏幕下使用95px高度 */
    }
}

/* 1200-1222像素显示屏 - 确保导航样式与标准1200+一致 */
@media (min-width: 1200px) and (max-width: 1222px) {
    body {
        overflow-x: hidden !important;
    }

    html {
        overflow-x: hidden !important;
    }

    /* 导航容器不显示滚动条 */
    .bt {
        overflow-x: hidden !important;
        overflow-y: hidden !important;
    }

    .advanced-navbar {
        overflow-x: hidden !important;
        overflow-y: hidden !important;
    }

    /* 确保导航名称和悬停样式与标准大屏幕一致 */
    .nav-menu-link {
        color: #555 !important;
        padding: 2rem 1.5rem !important;
        font-size: 1.2rem !important;
        font-weight: 500 !important;
    }

    .nav-menu-item:hover {
        background-color: #f5f5f5 !important;
    }

    .nav-menu-item:hover .nav-menu-link {
        color: var(--green-color) !important;
        background-color: #f5f5f5 !important;
        text-decoration: none !important;
    }

    .nav-menu-item[data-nav]:hover .nav-menu-link {
        color: var(--green-color) !important;
        background-color: #f5f5f5 !important;
        text-decoration: none !important;
    }
}

/* 其他响应式调整 - 字体大小增强 */
@media (min-width: 1400px) {
    body {font-size: 17px;}
}

@media (min-width: 1920px) {
    body {font-size: 18px;}
}

@media (min-width: 2560px) {
    body {font-size: 20px;}
    .btn {padding: 1rem 2rem; font-size: 1.2rem;}
}

/* 滚动条美化 */
::-webkit-scrollbar {width: 10px;}

::-webkit-scrollbar-track {background: #f1f1f1; border-radius: 5px;}

::-webkit-scrollbar-thumb {background: #888; border-radius: 5px;}

::-webkit-scrollbar-thumb:hover {background: #555;}

/* 产品/探索/生活区域通用样式 */
.product-box,
.explore-box,
.living-box {
    padding: 60px 20px;
    background-color: #f8f9fa;
}

.product-title,
.explore-title,
.living-title {
    text-align: center;
    font-size: 2.5rem;
    font-weight: 700;
    color: #333;
    margin-bottom: 40px;
    position: relative;
}

.product-title::after,
.explore-title::after,
.living-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--green-color);
    border-radius: 2px;
}

.product-subtitle,
.explore-subtitle,
.living-subtitle {
    text-align: center;
    font-size: 1.2rem;
    font-weight: 500;
    color: #666;
    margin-top: -30px;
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.product-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1px;
    max-width: 100%;
    margin: 0 auto;
}

.product-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 2/3;
    background-color: #f5f5f5;
    transition: all 0.3s ease;
}
.product-item::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 0;
    transition: height 0.3s ease;
    z-index: 2;
}

.product-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: opacity 0.3s ease;
}

.product-item:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
}

.product-item:hover::before {
    height: 8px;
}

.product-item:hover .product-img.default {
    opacity: 0;
}

.product-item:hover .product-img.hover {
    opacity: 1;
}

.product-img.default {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 1;
}

.product-img.hover {
    position: absolute;
    top: 0;
    left: 0;
    opacity: 0;
}

.product-caption {
    position: absolute;
    top: 30px;
    left: 0;
    right: 0;
    text-align: center;
    padding: 0;
    transform: none;
    opacity: 1;
    transition: all 0.3s ease;
    z-index: 3;
}

.product-name {
    font-size: 18px;
    font-weight: 700;
    margin: 0;
    color: var(--green-color);
    transition: color 0.3s ease;
}

.product-item:hover .product-caption {
    opacity: 1;
}

.product-item:hover .product-name {
    color: #fff;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}



/* 响应式设计 */
@media (max-width: 1199px) {
    .product-box {
        padding: 40px 0;
        width: 1200px;
        margin: 0 auto;
    }

    .product-grid {
        width: 1200px;
        margin: 0 auto;
        gap: 1px;
    }
}

@media (min-width: 1200px) and (max-width: 1919px) {
    .product-box {
        padding: 60px 0;
        max-width: 100%;
    }

    .product-grid {
        max-width: 100%;
        gap: 1px;
    }
}

@media (min-width: 1920px) {
    .product-box {
        padding: 80px 0;
    }

    .product-grid {
        max-width: 80%;
        margin: 0 auto;
        gap: 1px;
    }
}
/* 探索华帝区域样式 */
.explore-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1px;
    max-width: 1200px;
    margin: 0 auto;
}

.explore-item {
    position: relative;
    overflow: hidden;
    aspect-ratio: 16/9;
    border-radius: 0;
    transition: all 0.5s ease;
}

.explore-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.explore-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.5s ease;
    z-index: 1;
}

.explore-caption {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
}

.explore-item-title {
    font-size: 2.2rem;
    font-weight: 700;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
    letter-spacing: 2px;
}

/* 悬停效果 */
.explore-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.explore-item:hover .explore-img {
    transform: scale(1.05);
}

.explore-item:hover .explore-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.explore-item:hover .explore-item-title {
    color: var(--green-color);
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}

/* 响应式设计 - 探索区域 */
@media (max-width: 1199px) {
    .explore-box {
        padding: 40px 0;
        width: 1200px;
        margin: 0 auto;
    }

    .explore-grid {
        width: 1200px;
        margin: 0 auto;
        gap: 1px;
    }
}

@media (min-width: 1200px) and (max-width: 1919px) {
    .explore-box {
        padding: 60px 0;
        max-width: 100%;
    }

    .explore-grid {
        max-width: 100%;
        gap: 1px;
    }
}

@media (min-width: 1920px) {
    .explore-box {
        padding: 80px 0;
    }

    .explore-grid {
        max-width: 80%;
        margin: 0 auto;
        gap: 1px;
    }
}

/* 认真生活家区域样式 */
.living-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 1px;
    max-width: 1200px;
    margin: 0 auto;
    height: 800px;
}

.living-item {
    position: relative;
    overflow: hidden;
    transition: all 0.5s ease;
}

.living-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.living-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.5);
    transition: background-color 0.5s ease;
    z-index: 1;
}

.living-caption {
    position: absolute;
    top: 50%;
    left: 18px;
    transform: translateY(-50%);
    z-index: 2;
    text-align: left;
}

.living-item-title {
    font-size: 24px;
    font-weight: 500;
    letter-spacing:5px;
    color: #fff;
    margin: 0;
    transition: color 0.3s ease;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.5);
}

.living-item-desc {
    display: none;
}

/* 网格项目尺寸定义 - 4x2布局 */
.living-item-left {
    grid-column: 1 / 2;    /* 左侧大图 */
    grid-row: 1 / 3;
}

.living-item-top-center {
    grid-column: 2 / 4;    /* 中间上方横向大图，跨2列 */
    grid-row: 1 / 2;
}

.living-item-bottom-left {
    grid-column: 2 / 3;    /* 中间下方左小图 */
    grid-row: 2 / 3;
}

.living-item-bottom-right {
    grid-column: 3 / 4;    /* 中间下方右小图 */
    grid-row: 2 / 3;
}

.living-item-right {
    grid-column: 4 / 5;    /* 右侧大图 */
    grid-row: 1 / 3;
}

/* 悬停效果 */
.living-item:hover {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
}

.living-item:hover .living-img {
    transform: scale(1.05);
}

.living-item:hover .living-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.living-item:hover .living-item-title {
    color: var(--green-color);
    text-shadow: 1px 1px 8px rgba(0, 0, 0, 0.7);
}


/* 响应式设计 - 生活区域 */
@media (max-width: 1199px) {
    .living-box {
        padding: 40px 0;
        width: 1200px;
        margin: 0 auto;
    }

    .living-grid {
        width: 1200px;
        height: 700px;
        margin: 0 auto;
        gap: 1px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
}

@media (min-width: 1200px) and (max-width: 1919px) {
    .living-box {
        padding: 60px 0;
        max-width: 100%;
    }

    .living-grid {
        max-width: 100%;
        height: 750px;
        gap: 1px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
        padding: 0; /* 为左右边添加一些间距 */
    }
}

@media (min-width: 1920px) {
    .living-box {
        padding: 80px 0;
    }

    .living-grid {
        max-width: 80%;
        margin: 0 auto;
        height: 850px;
        gap: 1px;
        grid-template-columns: 1fr 1fr 1fr 1fr;
        grid-template-rows: 1fr 1fr;
    }
}

/* 更小屏幕优化 */
@media (max-width: 1024px) {
    .living-item-title {
        font-size: 20px;
    }

    .living-caption {
        top: 50%;
        left: 20px;
        transform: translateY(-50%);
    }
}

/* 在大屏幕上调整标题大小 */
@media (min-width: 2560px) {
    .living-item-title {
        font-size: 28px;
    }
}

/* 产品/探索/生活/视频区域通用样式 */
.product-box,
.explore-box,
.living-box,
.video-box {
    padding: 60px 0;
    background-color: #fff;
}


.product-title,
.explore-title,
.living-title,
.video-title {
    text-align: center;
    font-size: 28px;
    font-weight: 400;
    color: black;
    margin-bottom: 40px;
    position: relative;
    letter-spacing: 10px;
}

.product-title::after,
.explore-title::after,
.living-title::after,
.video-title::after {
    content: '';
    position: absolute;
    bottom: -10px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--green-color);
    border-radius: 2px;
}

.product-subtitle,
.explore-subtitle,
.living-subtitle,
.video-subtitle {
    text-align: center;
    font-size: 13px;
    font-weight: 400;
    color: #858585;
    margin-top: -25px;
    margin-bottom: 50px;
    letter-spacing: 3px;
    text-transform: uppercase;
}

.video-grid {
    max-width: 80%;
    margin: 0 auto;
}

.video-item {
    position: relative;
    overflow: hidden;
    border-radius: 12px;
    transition: all 0.5s ease;
    aspect-ratio: 16/9;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.video-preview {
    width: 100%;
    height: 100%;
    object-fit: fill;
    transition: transform 0.8s ease;
    display: block;
    background-color: #000;
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.3);
    transition: background-color 0.5s ease;
    z-index: 1;
}


.video-caption {
    position: absolute;
    top: 76%;
    left: 50%;
    transform: translate(-50%, -50%);
    text-align: center;
    z-index: 2;
    width: 100%;
}

.video-play-btn {
    background: transparent;
    border: 2px solid var(--green-color);
    color: var(--green-color);
    padding: 14px 64px;
    font-size: 1.2rem;
    font-weight: normal;
    border-radius: 50px;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
}

.video-play-icon {
    margin-right: 10px;
    font-size: 1.3rem;
    transition: all 0.3s ease;
}

/* 悬停效果 */
.video-item:hover .video-preview {
    transform: scale(1.05);
}

.video-item:hover .video-overlay {
    background-color: rgba(0, 0, 0, 0.2);
}

.video-play-btn:hover {
    background-color: var(--green-color);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 5px 20px rgba(0, 181, 164, 0.3);
}

.video-play-btn:hover .video-play-icon {
    transform: scale(1.1);
}

/* 响应式设计 - 华帝影像馆区域 */
@media (max-width: 1199px) {
    .video-box {
        padding: 40px 0;
        width: 1200px;
        margin: 0 auto;
    }

    .video-grid {
        width: 80%;
        margin: 0 auto;
        max-width: none;
    }
}

@media (min-width: 1200px) and (max-width: 1919px) {
    .video-box {
        padding: 60px 20px;
        max-width: 100%;
    }

    .video-grid {
        max-width: 80%;
        margin: 0 auto;
    }
}

@media (min-width: 1920px) {
    .video-box {
        padding: 80px 0;
    }

    .video-grid {
        max-width: 80%;
        margin: 0 auto;
    }
}

/* 更小屏幕优化 */
@media (max-width: 768px) {
    .video-title {
        font-size: 2rem;
    }

    .video-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }

    .video-play-btn {
        padding: 12px 24px;
        font-size: 1.1rem;
    }
}

/* 全屏视频播放遮罩层样式 */
.video-fullscreen-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.95);
    z-index: 9999;
    display: none;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.video-fullscreen-overlay.active {
    display: block;
    opacity: 1;
}

.video-fullscreen-player {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 90%;
    max-width: 1200px;
    height: auto;
    max-height: 80vh;
    background-color: #000;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 50px rgba(0, 0, 0, 0.8);
}

.video-fullscreen-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #000;
}

.video-loading-placeholder {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.3rem;
    text-align: center;
    z-index: 1;
}

.video-close-btn {
    position: absolute;
    top: 20px;
    right: 20px;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    font-size: 1.8rem;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    z-index: 10000;
}

.video-close-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.1);
}

.video-play-info {
    position: absolute;
    bottom: 30px;
    left: 0;
    width: 100%;
    text-align: center;
    color: white;
    font-size: 1.2rem;
    text-shadow: 1px 1px 5px rgba(0, 0, 0, 0.7);
    z-index: 10000;
    padding: 0 20px;
}

/* 响应式调整 - 全屏视频 */
@media (max-width: 768px) {
    .video-fullscreen-player {
        width: 95%;
        max-height: 60vh;
    }

    .video-close-btn {
        top: 10px;
        right: 10px;
        width: 40px;
        height: 40px;
        font-size: 1.5rem;
    }

    .video-play-info {
        font-size: 1rem;
        bottom: 20px;
    }
}

/* 页脚样式 */
.main-footer {
    background: linear-gradient(180deg,  #fafafa, #0fdac81c);
    color: #ddd;
    padding: 40px 0 20px;
    font-size: 0.95rem;
    margin-top: 0px;
}

.main-footer a {
    color: #444444;
    text-decoration: none;
    transition: color 0.3s ease;
}

.main-footer a:hover {
    color: var(--green-color);
    text-decoration: none;
}

/* 顶部链接区域 */
.footer-content {
    display: grid;
    grid-template-columns: repeat(9, 1fr);
    gap: 5px;
    margin-bottom: 40px;
    overflow-x: auto; /* 允许横向滚动 */
}

.footer-links-section {
    display: flex;
    flex-direction: column;
    min-width: 120px;
    flex-shrink: 0; /* 防止横向滚动时收缩 */
}

.footer-section-title {
    font-size: 1.1rem;
    font-weight: normal;
    color: #000;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 8px;
}

.footer-section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 40px;
    height: 2px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links li:last-child {
    margin-bottom: 0;
}

.footer-links li a {
    font-size: 0.95rem;
    line-height: 1.5;
}

/* 工程渠道单行部分 - 更新为两栏布局 */
.footer-project-section-fullwidth {
    grid-column: 1 / -1;
    margin-top: 20px;
    padding-top: 30px;
    border-top: 1px solid #eeeeee;
    max-width: 100%;
    width: 100%;
}

.footer-project-content {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    flex-wrap: wrap;
    gap: 40px;
    width: 100%;
    box-sizing: border-box;
}

.footer-company-info {
    flex: 1;
    min-width: 350px;
    max-width: calc(100% - 250px);
}

.company-details {
    margin-top: 10px;
}

.company-line {
    margin: 6px 0;
    font-size: 0.95rem;
    color: #444444;
    line-height: 1.5;
}

.company-line:first-child {
    margin-top: 0;
}

.company-line:last-child {
    margin-bottom: 0;
}

.footer-links-horizontal {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    margin-top: 10px;
}

.footer-links-horizontal li {
    margin-bottom: 0;
}

/* 社交媒体图标区域 */
.footer-social-media {
    flex: 0 0 200px;
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    margin-left: auto;
}

.social-icons {
    display: flex;
    gap: 25px;
    margin-top: 10px;
}

.social-icon {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-decoration: none;
    color: #ddd;
    transition: all 0.3s ease;
    min-width: 60px;
}

.social-icon:hover {
    color: var(--green-color);
    transform: translateY(-3px);
}

.social-icon i {
    font-size: 2.2rem;
    margin-bottom: 6px;
}

.social-label {
    font-size: 0.85rem;
    text-align: center;
    line-height: 1.3;
}

.social-icon.wechat i {
    color: #07c160;
}

.social-icon.weibo i {
    color: #e6162d;
}

/* 免责声明区域 */
.footer-disclaimer {
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 6px;
    padding: 18px 20px;
    margin: 30px 0;
    border-left: 4px solid var(--green-color);
}

.footer-disclaimer p {
    margin: 0;
    font-size: 0.9rem;
    color: #444444;
    line-height: 1.6;
}

/* 底部版权区域 - 改为三栏居中布局 */
.footer-bottom {
    display: flex;
    justify-content: center; /* 改为居中 */
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid #f2f2f2;
    flex-wrap: nowrap; /* 改为不换行 */
    gap: 40px; /* 增加栏间距 */
    overflow-x: auto; /* 允许横向滚动 */
    white-space: nowrap; /* 确保文本不换行 */
}

.footer-bottom-column {
    text-align: center;
    flex: 1; /* 每栏宽度相等 */
    min-width: 200px;
    width: auto; /* 使用自动宽度 */
    flex-shrink: 0; /* 防止收缩 */
    white-space: nowrap; /* 确保文本不换行 */
}

.footer-bottom-column p {
    margin: 8px 0;
    font-size: 0.9rem;
    color: #666;
    line-height: 1.5;
}

/* 确保底部三栏文本居中显示 */
.footer-left, .footer-center, .footer-right {
    justify-content: center;
    text-align: center;
}

/* 响应式设计 - 页脚 */
@media (max-width: 1199px) {
    .main-footer {
        width: 1200px;
        margin: 60px auto 0;
        min-width: auto; /* 移除最小宽度限制 */
        max-width: 1200px; /* 限制最大宽度 */
    }

    .footer-content {
        width: 80%;
        max-width: 1200px;
        margin: 0 auto 40px;
        grid-template-columns: repeat(9, 1fr);
        gap: 5px; /* 减少间隙，增加可用宽度 */
        overflow-x: visible; /* 在固定宽度下不显示滚动条 */
    }

    /* 确保footer链接列不换行，在1200px内保持在单行 */
    .footer-links-section {
        min-width: 120px; /* 确保每列有最小宽度 */
        flex-shrink: 0; /* 防止收缩 */
    }

    .footer-links li a {
        white-space: nowrap; /* 强制链接文本不换行 */
    }

    .footer-project-section-fullwidth {
        width: 80%;
        max-width: 1200px;
        margin: 20px auto 0 auto;
        overflow-x: visible;
    }

    .footer-disclaimer {
        width: 80%;
        max-width: 1200px;
        margin: 30px auto;
        overflow-x: visible;
    }

    .footer-bottom {
        width: 80%;
        max-width: 1200px;
        margin: 0 auto;
        overflow-x: visible;
        flex-wrap: nowrap;
    }

    .footer-bottom-column {
        flex-shrink: 0;
    }
}

@media (min-width: 1200px) and (max-width: 1919px) {
    .footer-content {
        max-width: 80%;
        margin: 0 auto 40px;
        grid-template-columns: repeat(9, 1fr);
        overflow-x: visible;
    }

    .footer-project-section-fullwidth {
        max-width: 80%;
        margin: 20px auto 0 auto;
        overflow-x: visible;
    }

    .footer-disclaimer {
        max-width: 80%;
        margin: 30px auto;
        overflow-x: visible;
    }

    .footer-bottom {
        max-width: 80%;
        margin: 0 auto;
        overflow-x: visible;
        flex-wrap: nowrap;
    }

    .footer-links-section {
        flex-shrink: 0;
    }

    .footer-bottom-column {
        flex-shrink: 0;
    }
}

@media (min-width: 1920px) {
    .footer-content {
        max-width: 80%;
        margin: 0 auto 40px;
        grid-template-columns: repeat(9, 1fr);
        overflow-x: visible;
    }

    .footer-project-section-fullwidth {
        max-width: 80%;
        margin: 20px auto 0 auto;
        overflow-x: visible;
    }

    .footer-disclaimer {
        max-width: 80%;
        margin: 30px auto;
        overflow-x: visible;
    }

    .footer-bottom {
        max-width: 80%;
        margin: 0 auto;
        overflow-x: visible;
        flex-wrap: nowrap;
    }

    .footer-links-section {
        flex-shrink: 0;
    }

    .footer-bottom-column {
        flex-shrink: 0;
    }
}

/* 不再需要1024px以下的分行布局，保持6列一行显示，通过横向滚动条查看 */
@media (max-width: 1199px) {
    .footer-project-content {
        flex-wrap: nowrap;
    }
}

@media (max-width: 1024px) {
    .footer-company-info {
        min-width: 250px;
        max-width: 100%;
    }

    .footer-social-media {
        flex: 0 0 auto;
        margin-left: 0;
        margin-top: 0;
        align-items: flex-start;
    }

    /* 在1024px以下，footer-bottom和footer-content仍然保持一行，通过滚动查看 */
    .footer-project-content {
        flex-direction: row;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    /* 不再需要768px以下的分行布局，保持6列一行显示，通过横向滚动条查看 */
    .footer-links-horizontal {
        flex-direction: row;
        flex-wrap: nowrap;
        gap: 20px;
    }

    .footer-disclaimer {
        padding: 15px;
    }

    .footer-company-info {
        min-width: auto;
    }

    .footer-social-media {
        width: auto;
        align-items: flex-end;
        margin-top: 0;
    }

    .social-icons {
        justify-content: flex-end;
    }
}

/* 右侧悬浮窗样式 */
.floating-sidebar {
    position: fixed;
    right: 1px;
    top: 70%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.float-btn {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 72px;
    padding: 10px 0;
    background-color: #fff;
    color: var(--green-color);
    text-decoration: none;
    transition: all 0.3s ease;
    border-top-left-radius: 8px;
    border-bottom-left-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.06);
}

.float-btn:hover {
    color: #009c8e;
    border-color: #009c8e;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
    transform: translateX(-2px);
}

.float-btn-primary {
    background-color: var(--green-color);
    color: #fff;
    border-color: var(--green-color);
    /* box-shadow: 0 4px 15px rgba(0, 181, 164, 0.3); */
}

.float-btn-primary:hover {
    color: #fff;
    background-color: #00a396;
    border-color: #00a396;
}

.float-btn i {
    font-size: 22px;
    margin-bottom: 4px;
}

.float-btn span {
    font-size: 12px;
    white-space: nowrap;
    letter-spacing: 1px;
}

/* 预约体验模态框样式 */
.booking-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 10000;
    align-items: center;
    justify-content: center;
}

.booking-modal.active {
    display: flex;
}

.booking-modal-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.8);
}

.booking-modal-content {
    /* position: relative; */
    width: 1200px;
    max-width: 90%;
    aspect-ratio: 16 / 9;
    background-color: #f5f5f5;
    background-image: url('../images/slides-00.jpg');
    background-repeat: no-repeat;
    background-position: center;
    background-size: cover;
    border-radius: 30px;
    overflow: hidden;
    z-index: 10001;
}

.booking-modal-close {
    position: absolute;
    top: 15px;
    right: 15px;
    width: 40px;
    height: 40px;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    z-index: 10002;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    color: #666;
    transition: all 0.3s ease;
}

.booking-modal-close:hover {
    background: #fff;
    color: #333;
}

.booking-modal-body {
    display: flex;
    min-height: 100%;
    margin-top: 41px;
}

.booking-modal-left-top{background-color: rgba(0, 0, 0, 0.5);padding: 14px 40px;margin-top: 18px;border-radius: 12px;}
	/* benefitType=0：白色半透明背景 */
	.booking-modal-left-top.type-white{background-color: rgba(255, 255, 255, 0.5);}
	.booking-modal-left-top.type-white .booking-form-title{color: #2b2b2b;}
	/* benefitType=1（默认）：黑色半透明背景 + 白色标题，无需额外样式 */

.booking-promo-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-promo-tag {
    width: 70%;
    margin: 0 auto;
    padding: 10px 25px;
    border-radius: 8px;
    text-align: center;
    min-height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(1, 173, 161, 0.37);
}

.booking-promo-tag img {
    max-width: 100%;
    max-height: 90px;
    object-fit: contain;
}

.promo-title {
    display: block;
    font-size: 20px;
    margin-bottom: 5px;
    text-align: left;
    font-weight: 600;
}

.promo-amount {
    font-size: 36px;
    font-weight: bold;
    line-height: 1;
}

.promo-desc {
    font-size: 20px;
    font-weight: 600;
}

.promo-note {
    display: block;
    font-size: 12px;
    margin-top: 5px;
    text-align: right;
    width: 70%;
    margin: 0 auto;
    opacity: 0.9;
}

.booking-modal-right {
    flex: 0 0 auto;


    margin-left: auto;
    margin-right: 100px;
    align-self: center;
}

.booking-form-title {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff;
    text-align: center;
    margin-bottom: 20px;
    padding-bottom: 15px;
    border-bottom: 3px solid var(--green-color);
}

.booking-form {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.booking-form-group {
    position: relative;
}

.booking-input {
    width: 100%;
    height: 48px;
    padding: 0 15px;
    border: 1px solid #f5f5f5;
    border-radius: 24px;
    font-size: 14px;
    color: #333;
    transition: border-color 0.3s ease;
}

.booking-input:focus {
    outline: none;
    border-color: var(--green-color);
}

.booking-input::placeholder {
    color: #999;
}

.booking-captcha-group {
    display: flex;
    gap: 10px;
}

.booking-captcha-group .booking-input {
    flex: 1;
}

.booking-captcha-image {
    width: 100px;
    height: 35px;
    border-radius: 4px;
    margin-top: 7px;
    overflow: hidden;
    cursor: pointer;
}

.booking-captcha-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.booking-sms-group {
    display: flex;
    align-items: center;
    background-color: #fff;
    border: 1px solid #f5f5f5;
    border-radius: 25px;
    padding: 4px 4px 4px 15px;
    overflow: hidden;
}

.booking-sms-group .booking-input {
    flex: 1;
    border: none;
    background: transparent;
    height: 40px;
    padding: 0;
}

.booking-sms-group .booking-input:focus {
    outline: none;
    border: none;
}

.booking-sms-btn {
    width: auto;
    height: 36px;
    padding: 0 20px;
    background-color: #e9e9e9;
    border: none;
    border-radius: 4px;
    color: #999;
    font-size: 14px;
    cursor: not-allowed;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.booking-sms-btn:enabled {
    background-color: var(--green-color);
    color: #fff;
    cursor: pointer;
}

.booking-sms-btn:enabled:hover {
    background-color: #009688;
    color: #fff;
}

.booking-location-group {
    display: flex;
    gap: 10px;
}

.booking-select {
    flex: 1;
    height: 40px;
    padding: 0 8px;
    border: 1px solid #f5f5f5;
    border-radius: 4px;
    font-size: 14px;
    color: #666;
    background-color: #fff;
    cursor: pointer;
    transition: border-color 0.3s ease;
}

.booking-select:focus {
    outline: none;
    border-color: var(--green-color);
}

.booking-select:disabled {
    background-color: #e9e9e9;
    color: #aaa;
    cursor: not-allowed;
}

.booking-submit-btn {
    width: 100%;
    height: 50px;
    background-color: var(--green-color);
    border: none;
    border-radius: 25px;
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-top: 10px;
}

.booking-submit-btn:hover {
    background-color: #00a396;
}

/* ==================== 产品列表页样式 ==================== */

/* 通栏Banner */
.product-banner {
    position: relative;
    width: 100%;
    height: 442px;
    overflow: hidden;
    margin-top: 7px;
}

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

/* 面包屑导航 */
.breadcrumb-wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 18px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 30px;
}

.product-breadcrumb {
    display: flex;
    align-items: center;
    font-size: 0.95rem;
    color: #999;
    flex-shrink: 0;
}

.breadcrumb-link {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb-link:hover {
    color: var(--green-color);
}

.breadcrumb-separator {
    margin: 0 10px;
    color: #ccc;
}

.breadcrumb-current {
    color: var(--green-color);
    font-weight: 500;
}

/* 面包屑右侧搜索框 */
.breadcrumb-search {
    flex-shrink: 0;
}

.search-form {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.search-form:focus-within {
    border-color: var(--green-color);
    box-shadow: 0 0 0 3px rgba(0, 181, 164, 0.1);
}

.search-input {
    border: none;
    outline: none;
    padding: 8px 16px;
    font-size: 0.9rem;
    width: 200px;
    color: #333;
    background: transparent;
}

.search-input::placeholder {
    color: #bbb;
}

.search-btn {
    border: none;
    outline: none;
    background: transparent;
    color: #999;
    padding: 8px 14px;
    cursor: pointer;
    font-size: 1rem;
    transition: color 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.search-btn:hover {
    color: var(--green-color);
}

/* ==================== 右侧锚点导航 ==================== */
.detail-anchor-nav {
    position: fixed;
    right: calc((100% - 80vw) / 2 - 100px);
    top: 38%;
    transform: translateY(-50%);
    z-index: 999;
    display: flex;
    flex-direction: column;
    gap: 12px;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}

.detail-anchor-nav.visible {
    opacity: 1;
    visibility: visible;
}

.anchor-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 100px;
    padding: 6px 20px;
    background: #fff;
    color: #333;
    text-decoration: none;
    border-radius: 30px;
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 2px;
    transition: all 0.3s ease;
    /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.08); */
    cursor: pointer;
    border: 1px solid var(--green-color);
    white-space: nowrap;
}

.anchor-btn:hover {
    border-color: #009c8e;
    color: #009c8e;
    /* box-shadow: 0 4px 18px rgba(0, 0, 0, 0.12); */
    transform: translateX(-2px);
}

.anchor-btn.active {
    background: var(--green-color);
    color: #fff;
    border-color: var(--green-color);
    /* box-shadow: 0 4px 18px rgba(0, 181, 164, 0.35); */
}

.anchor-text {
    display: block;
}

/* 顶部"产品概览"锚点样式已移除，由 .anchor-product-info 替代 */

/* 设计款：锚点导航上方产品信息（可点击锚链回 Banner） */
.anchor-product-info {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px;
    margin-bottom: 8px;
    padding-bottom: 14px;
    border-bottom: 1px solid rgba(0, 196, 179, 0.25);
    max-width: 220px;
    text-decoration: none;
    cursor: pointer;
}

.anchor-product-info:hover .anchor-product-name {
    color: var(--green-color);
}

.anchor-product-name {
    font-size: 18px;
    font-weight: 600;
    color: #333;
    text-align: right;
    line-height: 1.3;
    transition: color 0.3s ease;
}

.anchor-product-desc {
    font-size: 13px;
    color: #999;
    text-align: right;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}

/* 锚点导航可见时（Banner 滚出视口）→ 高亮 */
.detail-anchor-nav.visible .anchor-product-name {
    color: var(--green-color);
}

.detail-anchor-nav.visible .anchor-product-desc {
    color: #666;
}

/* 大屏适配 */
@media (min-width: 1920px) {
    .detail-anchor-nav {
        right: calc((100% - 1400px) / 2 - 110px);
    }
}

/* 小屏隐藏 */
@media (max-width: 1300px) {
    .detail-anchor-nav {
        display: none;
    }
}

/* ==================== 产品详情页Banner ==================== */
.product-detail-banner {
    position: relative;
    width: 100%;
    height: 442px;
    overflow: hidden;
    background: url('/images/temp08.jpg') center/contain no-repeat;
}

.product-detail-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.product-detail-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    gap: 60px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
}

.product-detail-banner-img {
    flex-shrink: 0;
    width: auto;
    height: 320px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 50px;
}

.product-detail-banner-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.product-detail-banner-text {
    flex: 1;
    min-width: 0;
    text-align: center;
}

.product-detail-banner-name {
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--green-color);
    margin: 0 0 16px 0;
    line-height: 1.3;
}

.product-detail-banner-desc {
    font-size: 1.1rem;
    margin: 0;
    line-height: 1.7;
}

@media (max-width: 768px) {
    .product-detail-banner {
        height: auto;
        padding: 60px 0;
    }
    .product-detail-banner-inner {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }
    .product-detail-banner-img {
        width: 240px;
        height: 240px;
    }
    .product-detail-banner-name {
        font-size: 1.8rem;
    }
}

/* ==================== 产品特点区域背景 ==================== */
.feature-section-wrapper {
    background: url('https://vatti2.gdtangguo.cn/Public/Home/images/pro_bg3.png') repeat-y center 185px;
    padding: 60px 0;
    background-size: 1000px auto;
    /* max-width: 1400px; */
}

/* page_type=1 设计详情内容（图片居中） */
.design-content {
    line-height: 1.8;
    color: #333;
    font-size: 15px;
    max-width: 1000px;
    margin: 0 auto;
    padding: 20px 0;
}

.design-content img {
    display: block;
    margin: 0 auto;
    max-width: 100%;
    height: auto;
}

/* 主体内容区域 */
.product-main {
    width: 80%;
    margin: 0 auto;
    padding: 0 20px 60px;
}

.product-layout {
    display: flex;
    gap: 30px;
}

/* 左侧边栏 */
.product-sidebar {
    flex: 0 0 270px;
    width: 270px;
}

.sidebar-inner {
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
}

.sidebar-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: #fff;
    background: var(--green-color);
    margin: 0;
    padding: 18px 24px;
    text-align: center;
}

.category-list {
    list-style: none;
    margin: 0;
    padding: 8px 0;
}

.category-item {
    border-bottom: 1px solid #f5f5f5;
}

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

.category-link {
    display: block;
    padding: 14px 24px;
    font-size: 0.95rem;
    color: #555;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.category-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    width: 3px;
    height: 100%;
    background: var(--green-color);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.category-link:hover {
    color: var(--green-color);
    background: #f0fdfa;
}

.category-link:hover::before {
    transform: scaleY(1);
}

.category-item.active .category-link {
    color: var(--green-color);
    background: #f0fdfa;
    font-weight: 600;
}

.category-item.active .category-link::before {
    transform: scaleY(1);
}

/* 右侧内容区 */
.product-content {
    flex: 1;
    min-width: 0;
}

.content-header {
    margin-bottom: 30px;
    padding-bottom: 20px;
    border-bottom: 2px solid #f0f0f0;
}

.content-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.content-desc {
    font-size: 0.95rem;
    color: #999;
    margin: 0;
}

/* 产品分类区块 */
.product-section {
    margin-bottom: 40px;
}

.product-section:last-child {
    margin-bottom: 0;
}

/* 分类标题栏 */
.section-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 12px;
    /* border-bottom: 2px solid rgba(0, 196, 179, 0.15); */
}

.section-title {
    font-size: 1.25rem;
    font-weight: 600;
    color: #333;
    margin: 0;
}

.more-link {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--green-color);
    text-decoration: none;
    transition: all 0.3s ease;
    font-weight: 500;
}

.more-link:hover {
    color: #009e8f;
    text-decoration: none;
    transform: translateX(4px);
}

.more-link i {
    font-size: 0.8rem;
}

/* 空状态样式 */
.empty-products, .empty-category {
    text-align: center;
    padding: 60px 20px;
    color: #999;
    font-size: 1rem;
}

/* 产品列表网格：每行3个，自适应行数 */
.product-list-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}

/* 产品卡片 */
.product-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    cursor: pointer;
    text-decoration: none;
    color: inherit;
}

.product-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
}

.product-card-img {
    width: 100%;
    aspect-ratio: 1 / 1;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.product-card-img img {
    object-fit: contain;
    transition: transform 0.4s ease;
}

.product-card:hover .product-card-img img {
    transform: scale(1.08);
}

.product-card-info {
    padding: 16px 20px;
    text-align: center;
}

.product-card-name {
    font-size: 1rem;
    font-weight: 500;
    color: #333;
    margin: 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.product-card:hover .product-card-name {
    color: var(--green-color);
}

.product-card-desc {
    font-size: 14px;
    color: #999999;
    margin: 6px 0 0 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* ==================== 视频列表页 ==================== */

/* 视频Banner */
.video-banner {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    border-radius: 12px;
    margin-top: 20px;
}
.video-banner-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.video-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.35);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
}
.video-banner-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: 4px;
}
.video-banner-subtitle {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 6px;
    opacity: 0.8;
    margin: 0;
}

/* 热点推荐（单条，3/9网格布局，与面包屑同宽） */
.video-hot-featured {
    display: flex;
    align-items: stretch;
    gap: 40px;
    width: 80%;
    margin: 0 auto;
    padding: 50px 0;
}
.hot-featured-left {
    flex: 0 0 25%;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.hot-featured-title {
    font-size: 1.5rem;
    font-weight: 600;
    color: #333;
    margin: 20px 0 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hot-featured-right {
    flex: 1;
    min-height: 380px;
    position: relative;
}
.hot-featured-thumb {
    position: relative;
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #1a1a1a;
}
.hot-featured-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.hot-featured-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 68px;
    height: 68px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.92);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.18);
}
.hot-featured-play i {
    font-size: 24px;
    color: #e53e3e;
    margin-left: 4px;
}
.hot-featured-play:hover {
    background: #e53e3e;
    transform: translate(-50%, -50%) scale(1.08);
}
.hot-featured-play:hover i {
    color: #fff;
}
.hot-featured-player {
    width: 100%;
    height: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}
.hot-featured-player video {
    width: 100%;
    height: 100%;
    object-fit: contain;
    border-radius: 10px;
}

/* 同级栏目横向标签（与面包屑同宽） */
.video-category-tabs-wrapper {
    width: 80%;
    margin: 0 auto;
}
.video-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 30px 0;
    border-top: 1px solid #eee;
}
.video-cat-tab {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 24px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.video-cat-tab:hover {
    background: #e8e8e8;
    color: #333;
}
.video-cat-tab.active {
    background: var(--green-color);
    color: #fff;
}

/* 视频网格（4列，与面包屑同宽） */
.video-grid-wrapper {
    width: 80%;
    margin: 0 auto;
}
.video-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
    padding-bottom: 20px;
}
.video-grid-card {
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05);
}
.video-grid-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 6px 24px rgba(0, 0, 0, 0.12);
}
.video-grid-thumb {
    display: block;
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    background: #1a1a1a;
    text-decoration: none;
}
.video-grid-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, opacity 0.4s ease;
}
.video-grid-card:hover .video-grid-thumb img {
    transform: scale(1.05);
    opacity: 0.75;
}
.video-grid-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}
.video-grid-play i {
    font-size: 16px;
    color: var(--green-color);
    margin-left: 3px;
}
.video-grid-card:hover .video-grid-play {
    background: var(--green-color);
}
.video-grid-card:hover .video-grid-play i {
    color: #fff;
}
.video-grid-body {
    padding: 14px 16px 16px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}
.video-grid-category {
    font-size: 0.8rem;
    color: var(--green-color);
    font-weight: 500;
}
.video-grid-title-link {
    text-decoration: none;
    color: inherit;
}
.video-grid-title {
    font-size: 1rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}
.video-grid-title-link:hover .video-grid-title {
    color: var(--green-color);
}
.video-grid-date {
    font-size: 0.8rem;
    color: #999;
}

/* 空状态 */
.empty-videos {
    text-align: center;
    padding: 80px 0;
    color: #999;
    font-size: 1rem;
}

/* 视频分页居中 */
.video-pagination {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 40px 0 20px;
}
.custom-pagination-center {
    display: flex;
    list-style: none;
    padding: 0;
    margin: 0;
    gap: 6px;
}
.custom-pagination-center .page-item .page-link {
    display: inline-block;
    padding: 8px 14px;
    border-radius: 6px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.25s ease;
}
.custom-pagination-center .page-item .page-link:hover {
    background: #e0e0e0;
    color: #333;
}
.custom-pagination-center .page-item.active .page-link {
    background: var(--green-color);
    color: #fff;
}
.custom-pagination-center .page-item.disabled .page-link {
    color: #ccc;
    cursor: default;
    pointer-events: none;
}
.pagination-info-center {
    margin-top: 12px;
    font-size: 0.85rem;
    color: #999;
}
.pagination-info-center span {
    color: #555;
    font-weight: 500;
}

/* ==================== 视频详情页 ==================== */

/* 视频播放器（与面包屑同宽） */
.video-detail-player-wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 30px 0;
}
.video-detail-player {
    width: 100%;
    border-radius: 10px;
    overflow: hidden;
    background: #000;
}
.video-detail-player video {
    width: 100%;
    display: block;
    aspect-ratio: 16 / 9;
    object-fit: contain;
}

/* 视频信息（与面包屑同宽） */
.video-detail-info-wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 0 0 40px;
}
.video-detail-category {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--green-color);
    font-weight: 500;
    margin-bottom: 12px;
}
.video-detail-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 20px;
    line-height: 1.4;
}
.video-detail-desc {
    margin-bottom: 16px;
}
.video-detail-desc p {
    font-size: 0.95rem;
    color: #666;
    line-height: 1.8;
    margin: 0;
}
.video-detail-meta {
    display: flex;
    align-items: center;
    gap: 20px;
}
.video-detail-date {
    font-size: 0.85rem;
    color: #999;
    display: flex;
    align-items: center;
    gap: 6px;
}
.video-detail-date i {
    font-size: 0.9rem;
}

/* 推荐视频区域（与面包屑同宽） */
.video-detail-recommend-wrapper {
    width: 80%;
    margin: 0 auto;
    padding: 0 0 50px;
}
.video-detail-recommend-header {
    display: flex;
    align-items: baseline;
    gap: 16px;
    margin-bottom: 30px;
    padding-bottom: 14px;
    border-bottom: 2px solid #eee;
}
.recommend-title {
    font-size: 1.4rem;
    font-weight: 700;
    color: #333;
    margin: 0;
}
.recommend-subtitle {
    font-size: 0.85rem;
    color: #aaa;
    letter-spacing: 2px;
    text-transform: uppercase;
}

/* ==================== 文章列表页 ==================== */

/* Banner */
.article-banner {
    position: relative;
    width: 100%;
    margin-top: 20px;
}
.article-banner-img {
    display: block;
    width: 100%;
    height: auto;
}
.article-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
}
/* 内层容器：与面包屑 wrapper（width:80% + padding:20px）完全对齐 */
.article-banner-overlay-inner {
    width: 80%;
    margin: 0 auto;
    padding: 0 20px;
}
.article-banner-title {
    font-size: 38px;
    font-weight: 700;
    margin: 0 0 8px;
    letter-spacing: 4px;
    color: var(--green-color);
}
.article-banner-subtitle {
    font-size: 24px;
    font-weight: 300;
    letter-spacing:8px;
    opacity: 0.8;
    margin: 0 0 8px;
    color: #adadad;
}
.article-banner-desc {
    font-size: 20px;
    letter-spacing: 5px;
    color: #333;
    margin: 20px 0;
}

/* 分类标签 */
.article-category-tabs-wrapper {
    width: 80%;
    margin: 0 auto;
}
.article-category-tabs {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    padding: 30px 0;
    border-top: 1px solid #eee;
}
.article-cat-tab {
    display: inline-block;
    padding: 10px 28px;
    border-radius: 24px;
    background: #f5f5f5;
    color: #666;
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    transition: all 0.3s ease;
}
.article-cat-tab:hover {
    background: #e8e8e8;
    color: #333;
}
.article-cat-tab.active {
    background: var(--green-color);
    color: #fff;
}

/* 文章列表容器 */
.article-list-wrapper {
    width: 80%;
    margin: 0 auto;
}

/* 文章列表项（2/8/2网格） */
.article-list-item {
    display: grid;
    grid-template-columns: 2fr 6fr;
    gap: 24px;
    align-items: center;
    padding: 24px 24px;
    margin-bottom: 43px;
    background: #f9fbfc;
    border-radius: 10px;
    /* box-shadow: 0 2px 12px rgba(0, 0, 0, 0.05); */
    transition: all 0.3s ease;
}
.article-list-item:hover {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
    transform: translateY(-2px);
}

/* 左侧缩略图 */
.article-item-thumb {
    display: block;
    width: 100%;
    aspect-ratio: 16 / 9;
    border-radius: 8px;
    overflow: hidden;
    background: #f0f0f0;
    text-decoration: none;
}
.article-item-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}
.article-list-item:hover .article-item-thumb img {
    transform: scale(1.05);
}

/* 中间内容 */
.article-item-body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 12px;
    min-width: 0;
}
.article-item-title-link {
    text-decoration: none;
    color: inherit;
}
.article-item-title {
    font-size: 20px;
    font-weight: 400;
    color: #333333;
    margin: 0;
    line-height: 1.4;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}
.article-item-title-link:hover .article-item-title {
    color: var(--green-color);
}
.article-item-desc {
    font-size: 14px;
    color: #666666;
    line-height: 32px;
    margin: 0;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.article-item-more {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    font-size: 16px;
    color: var(--green-color);
    text-decoration: none;
    font-weight: 500;
    transition: gap 0.3s ease;
}
.article-item-more:hover {
    gap: 8px;
}
.article-item-more i {
    font-size: 0.8rem;
}

/* 文章日期（描述下方） */
.article-item-date {
    font-size: 14px;
    color: #999;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

/* ==================== 文章详情页 ==================== */

.article-detail-wrapper {
    width: 80%;
    margin: 0 auto;
}
.article-detail-layout {
    display: grid;
    grid-template-columns: 8fr 4fr;
    gap: 0;
    padding: 30px 0 50px;
}

/* 左侧主内容 */
.article-detail-main {
    min-width: 0;
    padding-right: 15px;
}
.article-detail-category {
    display: inline-block;
    font-size: 0.85rem;
    color: var(--green-color);
    font-weight: 500;
    margin-bottom: 12px;
}
.article-detail-title {
    font-size: 30px;
    font-weight: 400;
    color: #333333;
    margin: 0 0 16px;
    line-height: 1.4;
}
.article-detail-meta {
    margin-bottom: 24px;
}
.article-detail-date {
    font-size: 16px;
    color: #aaaaaa;
    display: flex;
    align-items: center;
    gap: 6px;
}
.article-detail-date i {
    font-size: 0.9rem;
}
.article-detail-content {
    font-size: 0.95rem;
    color: #555;
    line-height: 1.9;
}
.article-detail-content img {
    max-width: 100%;
    border-radius: 6px;
}

/* 右侧推荐资讯 */
.article-detail-sidebar {
    min-width: 0;
    border-left: 1px solid #f5f5f5;
    padding-left: 20px;
}
.article-recommend-header {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid #eee;
}
.article-recommend-header .recommend-title {
    font-size: 30px;
    font-weight: 500;
    color: #333;
    margin: 0;
}
.article-recommend-header .recommend-subtitle {
    font-size: 0.75rem;
    color: #aaa;
    letter-spacing: 2px;
}
.article-recommend-list {
    display: flex;
    flex-direction: column;
    gap: 0;
}
.article-recommend-item {
    display: block;
    padding: 14px 0;
    border-bottom: 1px dashed #eee;
    text-decoration: none;
    transition: padding 0.2s ease;
}
.article-recommend-item:last-child {
    border-bottom: none;
}
.article-recommend-item:hover {
    padding-left: 8px;
}
.recommend-item-title {
    font-size: 18px;
    font-weight: 500;
    color: #333;
    margin: 0 0 6px;
    line-height: 1.5;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    transition: color 0.3s ease;
}
.article-recommend-item:hover .recommend-item-title {
    color: var(--green-color);
}
.recommend-item-date {
    font-size: 16px;
    color: #aaa;
}

/* 产品列表页响应式 */
@media (max-width: 1199px) {
    .product-banner {
        margin-top: 0;
        height: 360px;
    }

    .breadcrumb-wrapper {
        width: 1200px;
    }

    .video-hot-featured {
        width: 1200px;
    }

    .product-main {
        width: 1200px;
        padding: 0 20px 40px;
    }

    .product-layout {
        gap: 20px;
    }

    .product-sidebar {
        flex: 0 0 250px;
        width: 250px;
    }

    .product-list-grid {
        gap: 15px;
    }

    .video-banner {
        height: 360px;
    }

    .video-banner-title {
        font-size: 2.2rem;
    }

    .video-hot-featured {
        flex-direction: column;
        gap: 24px;
        padding: 30px 0;
    }

    .hot-featured-left {
        flex: 0 0 auto;
    }

    .hot-featured-right {
        min-height: 280px;
    }

    .video-category-tabs-wrapper {
        width: 1200px;
    }

    .video-grid-wrapper {
        width: 1200px;
    }

    .video-detail-player-wrapper,
    .video-detail-info-wrapper,
    .video-detail-recommend-wrapper {
        width: 1200px;
    }

    .article-category-tabs-wrapper,
    .article-list-wrapper,
    .article-detail-wrapper {
        width: 1200px;
    }

    .article-list-item {
        grid-template-columns: 2fr 8fr 2fr;
        gap: 16px;
        padding: 18px;
    }

    .article-item-thumb {
        aspect-ratio: 16 / 9;
    }

    .article-item-title {
        font-size: 1.05rem;
    }

    .video-card-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 20px;
    }

    .video-detail-title {
        font-size: 1.5rem;
    }
}

@media (min-width: 1920px) {
    .product-banner {
        height: 500px;
    }

    .breadcrumb-wrapper {
        max-width: 1400px;
    }

    .article-banner-overlay-inner {
        max-width: 1400px;
    }

    .video-hot-featured {
        max-width: 1400px;
    }

    .video-category-tabs-wrapper {
        max-width: 1400px;
    }

    .video-grid-wrapper {
        max-width: 1400px;
    }

    .video-detail-player-wrapper,
    .video-detail-info-wrapper,
    .video-detail-recommend-wrapper {
        max-width: 1400px;
    }

    .article-category-tabs-wrapper,
    .article-list-wrapper,
    .article-detail-wrapper {
        max-width: 1400px;
    }

    .product-main {
        max-width: 1400px;
    }

    .product-list-grid {
        gap: 24px;
    }

    .video-banner {
        height: 500px;
    }

    .video-banner-title {
        font-size: 3.2rem;
    }
}

/* ==================== 分页样式 ==================== */
.pagination-wrapper {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-top: 40px;
    padding-top: 20px;
    border-top: 1px solid #f0f0f0;
    flex-wrap: wrap;
    gap: 15px;
}

.custom-pagination {
    display: flex;
    list-style: none;
    margin: 0;
    padding: 0;
    gap: 5px;
}

.custom-pagination .page-item {
    display: inline-flex;
}

.custom-pagination .page-link {
    display: flex;
    align-items: center;
    justify-content: center;
    min-width: 38px;
    height: 38px;
    padding: 0 12px;
    font-size: 0.9rem;
    color: #666;
    text-decoration: none;
    background: #fff;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    transition: all 0.3s ease;
}

.custom-pagination .page-link:hover {
    color: var(--green-color);
    border-color: var(--green-color);
    background: #f0fdfa;
}

.custom-pagination .page-item.active .page-link {
    color: #fff;
    background: var(--green-color);
    border-color: var(--green-color);
}

.custom-pagination .page-item.disabled .page-link {
    color: #ccc;
    background: #fafafa;
    border-color: #e8e8e8;
    cursor: not-allowed;
    pointer-events: none;
}

.pagination-info {
    font-size: 0.9rem;
    color: #999;
}

.pagination-info span {
    color: var(--green-color);
    font-weight: 600;
}

/* ==================== 产品详情页样式 ==================== */

/* 面包屑 + 搜索同行 */
.breadcrumb-search-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}

.breadcrumb-search-row .product-breadcrumb {
    flex-shrink: 0;
}

.detail-search {
    flex-shrink: 0;
    margin-left: auto;
}

.detail-search-form {
    display: flex;
    align-items: center;
    border: 1px solid #e0e0e0;
    border-radius: 25px;
    overflow: hidden;
    background: #fff;
    transition: border-color 0.3s ease;
}

.detail-search-form:focus-within {
    border-color: var(--green-color);
}

.detail-search-input {
    width: 200px;
    height: 36px;
    padding: 0 15px;
    border: none;
    outline: none;
    font-size: 0.9rem;
    color: #333;
}

.detail-search-input::placeholder {
    color: #aaa;
}

.detail-search-btn {
    width: 40px;
    height: 36px;
    border: none;
    background: transparent;
    color: #999;
    cursor: pointer;
    transition: color 0.3s ease;
}

.detail-search-btn:hover {
    color: var(--green-color);
}

/* 产品特点 & 规格参数 通用标题 */
.section-header {
    text-align: center;
    margin-bottom: 50px;
    padding-top: 20px;
}

.section-title {
    font-size: 1.2rem;
    font-weight: bold;
    color: var(--green-color);
    margin: 0;
}

.section-title-en {
    font-size: 1.4rem;
    font-weight: 500;
    color: #2b2b2b;
    text-transform: uppercase;
    letter-spacing: 2px;
}

/* 特点行 - 交替布局 */
.feature-row {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    margin-bottom: 60px;
}

.feature-row:last-child {
    margin-bottom: 0;
}

.feature-row-right {
    flex-direction: row;
    align-items: self-start;
}

.feature-row-right .feature-image {
    order: 1;
}

.feature-row-right .feature-text {
    order: 2;
}

.feature-row-left {
    flex-direction: row;
    align-items: self-end;
}

.feature-row-left .feature-image {
    order: 2;
}

.feature-row-left .feature-text {
    order: 1;
}

.feature-image {
    flex: 0 0 520px;
    display: flex;
    justify-content: center;
    align-items: center;
}

.feature-image img {
    width: 100%;
    height: auto;
    object-fit: contain;
}

.feature-text {
    flex: 1;
    display: flex;
    align-items: center;
}

.feature-text-inner {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    padding-top: 120px;
}

.feature-name {
    flex: 0 0 180px;
    font-size: 1.0rem;
    font-weight: 600;
    color: #333;
    margin: 0;
    white-space: nowrap;
    text-align: right;
    padding-top: 5px;
}

.feature-desc {
    flex: 1;
    font-size: 0.95rem;
    color: #777;
    line-height: 1.8;
    margin: 0;
}

/* 规格参数表格 */
.spec-img-wrapper {
    max-width: 800px;
    margin: 0 auto 40px;
    text-align: center;
}

.spec-img-wrapper img {
    max-width: 100%;
    height: auto;
}

.spec-table-wrapper {
    max-width: 800px;
    margin: 0 auto;
}

.spec-table {
    width: 100%;
    border-collapse: collapse;
}

.spec-table tr:nth-child(odd) {
    background-color: #fafafa;
}

.spec-table tr:nth-child(even) {
    background-color: #f3f3f3;
}

.spec-table td {
    padding: 14px 20px;
    font-size: 0.95rem;
    color: #444;
    text-align: center;
    vertical-align: middle;
}

.spec-label {
    width: 200px;
    font-weight: 500;
    color: #666;
}

.spec-value {
    color: #333;
}

/* 底部操作栏 */
.detail-action-bar {
    display: flex;
    justify-content: center;
    gap: 30px;
    padding: 60px 0 40px;
}

.detail-manual-btn,
.detail-appointment-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 36px;
    font-size: 1rem;
    font-weight: 500;
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.detail-manual-btn {
    background: #fff;
    color: var(--green-color);
    border: 2px solid var(--green-color);
}

.detail-manual-btn:hover {
    background: #f0fdfa;
    color: #009688;
    border-color: #009688;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 181, 164, 0.15);
}

.detail-appointment-btn {
    background: var(--green-color);
    color: #fff;
    border: 2px solid var(--green-color);
}

.detail-appointment-btn:hover {
    background: #009688;
    border-color: #009688;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(0, 181, 164, 0.3);
}

/* 详情页响应式 */
@media (max-width: 1199px) {
    .breadcrumb-search-row {
        width: 1200px;
    }

    .feature-row {
        gap: 30px;
    }

    .feature-image {
        flex: 0 0 300px;
    }

    .feature-name {
        flex: 0 0 140px;
        font-size: 1.2rem;
    }
}

@media (min-width: 1920px) {
    .spec-table-wrapper {
        max-width: 1000px;
    }
}

/* ==================== 华帝服务页面样式 ==================== */

/* Banner */
.service-banner {
    position: relative;
    width: 100%;
    height: 420px;
    overflow: hidden;
    margin-top: -80px;
    background: url('/images/temp08.jpg') center/cover no-repeat;
}

.service-banner::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.3);
}

.service-banner-inner {
    position: relative;
    z-index: 1;
    display: flex;
    align-items: center;
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    height: 100%;
}

.service-banner-text {
    flex: 0 0 50%;
}

.service-banner-text h1 {
    font-size: 2.8rem;
    font-weight: 700;
    color: #00c4b3;
    margin: 0;
    line-height: 1.5;
    text-align: center;
}

/* 主体内容区 */
.service-content {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.service-layout {
    display: flex;
    gap: 60px;
}

/* 左侧 */
.service-left {
    flex: 1;
    background-color: #f4f4f4;
    padding: 20px;
}

.service-left-title {
    font-size: 1.8rem;
    font-weight: 700;
    color: #333;
    margin: 0 0 12px 0;
}

.service-left-desc {
    font-size: 0.95rem;
    color: #999;
    line-height: 1.8;
    margin: 0 0 30px 0;
}

/* 二维码网格 */
.qrcode-grid {
    display: flex;
    gap: 20px;
}

.qrcode-card {
    flex: 1;
    text-align: center;
}

.qrcode-img {
    width: 100%;
    aspect-ratio: 1;
    border: 1px solid #eee;
    border-radius: 8px;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    margin-bottom: 12px;
}

.qrcode-img img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.qrcode-title {
    font-size: 0.85rem;
    color: #666;
    margin: 0;
}

/* 右侧 */
.service-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.service-card {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    padding: 24px 32px;
    background: #fafafa;
    transition: all 0.3s ease;
}

.service-card:hover {
    background: #f5fdfb;
    border-color: rgba(0, 196, 179, 0.2);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
}

.service-card-icon {
    flex-shrink: 0;
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: var(--green-color);
    color: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
}

.service-card-thumb {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
}

.service-card-thumb img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.service-card-body {
    flex: 1;
    min-width: 0;
}

.service-card-title {
    font-size: 1.2rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 8px 0;
}

.service-card-desc {
    font-size: 0.9rem;
    color: #999;
    margin: 0 0 12px 0;
    line-height: 1.6;
}

.service-card-desc p{
    margin-bottom: 5px;
}

.service-card-link {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.9rem;
    color: var(--green-color);
    text-decoration: none;
    font-weight: 500;
    transition: all 0.3s ease;
}

.service-card-link:hover {
    color: #009e8f;
    text-decoration: none;
    transform: translateX(4px);
}

/* 响应式 */
@media (max-width: 768px) {
    .service-banner {
        height: 280px;
    }
    .service-banner-text {
        flex: 1;
    }
    .service-banner-text h1 {
        font-size: 1.8rem;
    }
    .service-content {
        padding: 40px 20px;
    }
    .service-layout {
        flex-direction: column;
        gap: 40px;
    }
    .qrcode-grid {
        flex-wrap: wrap;
    }
    .qrcode-card {
        flex: 0 0 calc(50% - 10px);
    }

    .video-banner {
        height: 240px;
        border-radius: 0;
        margin-top: 0;
    }
    .video-banner-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    .video-banner-subtitle {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    .video-hot-featured {
        flex-direction: column;
        gap: 20px;
        padding: 24px 0;
    }
    .hot-featured-left {
        flex: 0 0 auto;
    }
    .hot-featured-right {
        min-height: 220px;
    }
    .hot-featured-play {
        width: 52px;
        height: 52px;
    }
    .hot-featured-play i {
        font-size: 18px;
        margin-left: 3px;
    }
    .hot-featured-title {
        font-size: 1.2rem;
    }
    .video-category-tabs {
        gap: 8px;
        padding: 20px 0;
    }
    .video-cat-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    .video-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }
    .video-grid-body {
        padding: 10px 12px 12px;
    }
    .video-grid-title {
        font-size: 0.9rem;
    }
    .video-detail-player-wrapper {
        padding: 20px 0;
    }
    .video-detail-title {
        font-size: 1.3rem;
    }
    .video-detail-desc p {
        font-size: 0.9rem;
    }
    .recommend-title {
        font-size: 1.2rem;
    }
    .article-banner {
        height: 240px;
        overflow: hidden;
        border-radius: 0;
        margin-top: 0;
    }
    .article-banner-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
    }
    .article-banner-title {
        font-size: 1.6rem;
        letter-spacing: 2px;
    }
    .article-banner-subtitle {
        font-size: 0.8rem;
        letter-spacing: 3px;
    }
    .article-list-item {
        grid-template-columns: 1fr;
        gap: 14px;
        padding: 14px;
    }
    .article-item-thumb {
        aspect-ratio: 16 / 9;
    }
    .article-item-title {
        font-size: 1rem;
    }
    .article-item-desc {
        -webkit-line-clamp: 2;
    }
    .article-category-tabs {
        gap: 8px;
        padding: 20px 0;
    }
    .article-cat-tab {
        padding: 8px 16px;
        font-size: 0.85rem;
    }
    .article-detail-layout {
        grid-template-columns: 1fr;
        gap: 24px;
        padding: 20px 0 30px;
    }
    .article-detail-sidebar {
        border-left: none;
        padding-left: 0;
    }
    .article-detail-title {
        font-size: 1.3rem;
    }
    .article-recommend-header {
        margin-bottom: 14px;
    }
}

/* ======================================== */
/*   关于我们 / 集团简介 页面样式             */
/* ======================================== */
.about-hero {
    position: relative;
    width: 100%;
    background: url('../images/about_bg.png') no-repeat center center;
    background-size: cover;
    background-attachment: fixed;
    margin-top: 20px;
}

.about-hero-overlay {
    /* background: rgba(0, 0, 0, 0.45); */
    padding: 100px 0 80px;
}

.about-content {
    max-width: 860px;
    width: 90%;
    margin: 0 auto;
    text-align: center;
    color: #fff;
}

.about-title {
    font-size: 2.8rem;
    font-weight: 700;
    letter-spacing: 6px;
    margin: 0 0 10px;
    color: var(--green-color, #00C4B3);
}

.about-subtitle {
    font-size: 1.15rem;
    font-weight: normal;
    letter-spacing: 4px;
    color: #adadad;
    margin: 0 0 22px;
    text-transform: uppercase;
}

.about-divider {
    width: 70px;
    height: 3px;
    background: var(--green-color, #00C4B3);
    margin: 0 auto 30px;
}

.about-text {
    font-size: 1.05rem;
    line-height: 2;
    text-align: justify;
    color: #333;
    margin-bottom: 20px;
    text-indent: 2em;
}
.about-text * {
    color: #333 !important;
    font-size: 1.05rem !important;
    line-height: 2 !important;
    font-family: inherit !important;
    background: none !important;
}

@media (max-width: 768px) {
    .about-hero {
        background-attachment: scroll;
    }
    .about-hero-overlay {
        padding: 60px 0 50px;
    }
    .about-title {
        font-size: 2rem;
        letter-spacing: 3px;
    }
    .about-subtitle {
        font-size: 1rem;
        letter-spacing: 2px;
    }
    .about-text {
        font-size: 0.95rem;
        line-height: 1.8;
    }
}

/* ======================================== */
/*   招商加盟 页面样式                        */
/* ======================================== */
.invest-article {
    width: 100%;
    margin-top: 20px;
}

.invest-article p {
    text-align: center;
}

.invest-article img {
    display: block;
    width: 100% !important;
    height: auto !important;
    margin: 0 auto;
}

/* ======================================== */
/*   加入我们 / 招聘 页面样式                 */
/* ======================================== */

/* --- Banner --- */
.join-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.join-banner-img {
    display: block;
    width: 100%;
    height: auto;
}
.join-banner-text {
    position: absolute;
    top: 50%;
    left: 23%;
    font-weight: normal;
    transform: translate(-50%, -50%);
    text-align: center;
    color: #fff;
}
.join-banner-text h1 {
    font-size: 2.5rem;
    font-weight: normal;
    letter-spacing: 10px;
    margin: 0;
    color: #000;
}
.join-banner-text p {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #333;
    margin: 20px 0 0;
    font-weight: bold;
    text-align: left;
}
.join-banner-text p.campus-banner-en {
    color: var(--green-color, #00C4B3);
}

/* --- 招聘入口 6/12 网格 --- */
.join-entry {
    padding: 100px 0 80px;
    background: #fff;
}
.join-entry-grid {
    display: flex;
    max-width: 1000px;
    margin: 0 auto;
    gap: 4%;
}
.join-entry-item {
    flex: 1;
    text-align: center;
}
.join-entry-img-wrap {
    margin-bottom: 30px;
}
.join-entry-img-wrap img {
    max-width: 100%;
    height: auto;
}
.join-entry-title {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 10px;
    margin: 0 0 16px;
    color: #333;
}
.join-entry-desc {
    font-size: 0.9rem;
    color: #666;
    line-height: 1.8;
    max-width: 360px;
    margin: 0 auto 40px;
}
/* --- 企业核心价值观 4/12 网格 --- */
.join-values {
    position: relative;
    width: 100%;
}
.join-values-bg {
    background: url('../images/qywh.png') no-repeat center center;
    background-size: cover;
}
.join-values-overlay {
    background: rgba(0, 0, 0, 0.55);
    padding: 80px 0;
}
.join-values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.join-values-header {
    color: #fff;
}
.join-values-header h2 {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 8px;
}
.join-values-header p {
    font-size: 0.85rem;
    letter-spacing: 4px;
    color: rgba(255,255,255,0.6);
    margin: 0 0 30px;
}
.join-values-line {
    display: block;
    width: 80px;
    height: 2px;
    background: var(--green-color, #00C4B3);
}
.join-values-item h3 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: var(--green-color, #00C4B3);
    margin: 0 0 16px;
}
.join-values-item p {
    font-size: 0.85rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.8;
    margin: 0;
}
/* --- 人才发展 --- */
.join-talent {
    background: #ecf1f1;
    padding: 80px 0 100px;
}
.join-talent-header {
    text-align: center;
    margin-bottom: 50px;
}
.join-talent-header h2 {
    font-size: 1.8rem;
    font-weight: 700;
    letter-spacing: 2px;
    margin: 0 0 10px;
    color: #333;
}
.join-talent-header p {
    font-size: 0.9rem;
    letter-spacing: 4px;
    color: #8f9292;
    margin: 0 0 20px;
}
.join-talent-line {
    display: block;
    width: 80px;
    height: 2px;
    background: var(--green-color, #00C4B3);
    margin: 0 auto;
}
.join-talent-body {
    display: flex;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
    gap: 6%;
}
.join-talent-text {
    flex: 1;
}
.join-talent-en {
    font-size: 0.85rem;
    color: #9b9e9e;
    letter-spacing: 2px;
    margin: 0 0 20px;
}
.join-talent-photos {
    flex-shrink: 0;
    width: 420px;
    display: flex;
    flex-direction: column;
}
.join-talent-photos h3 {
    font-size: 1.4rem;
    font-weight: 700;
    letter-spacing: 2px;
    color: #333;
    margin: 0 0 6px;
}
.join-talent-photo-grid {
    flex: none;
    height: 450px;
    display: flex;
    gap: 10px;
    margin-top: 20px;
}
.join-talent-photo-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 10px;
}
.join-talent-photo-col img {
    flex: 1;
    width: 100%;
    min-height: 0;
    display: block;
    object-fit: cover;
}

/* --- 轮播图 --- */
/* ==================== 华帝生活-三图轮播 ==================== */
.join-carousel {
    padding: 80px 0;
    background: #fff;
}
.join-carousel-wrap {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
}
.join-carousel-row {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 20px;
}

/* 左/右列：中间图600px的40% = 240px，按钮居中下方 */
.join-carousel-left-col,
.join-carousel-right-col {
    width: 350px;
    flex-shrink: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* 中列：600px */
.join-carousel-center-col {
    width: 600px;
    flex-shrink: 0;
}

/* 卡片 */
.join-carousel-card {
    overflow: hidden;
}
.join-carousel-card img {
    display: block;
    width: 100%;
    height: auto;
}

/* 侧边卡片 */
.join-carousel-side img {
    transition: transform 0.4s ease;
}
.join-carousel-side:hover img {
    transform: scale(1.03);
}

/* 中间卡片 */
.join-carousel-main img {
    transition: transform 0.4s ease;
}
.join-carousel-main:hover img {
    transform: scale(1.02);
}

/* 标题（仅中间图显示） */
.join-carousel-title {
    text-align: center;
    font-size: 1.6rem;
    color: #333;
    letter-spacing: 2px;
    margin: 16px 0 0;
}

/* 左右切换箭头（位于左右图下方居中） */
.join-carousel-arrow {
    margin-top: 20px;
    width: 48px;
    height: 48px;
    background: #fff;
    border: 2px dashed #999;
    border-radius: 50%;
    color: #333;
    font-size: 1.4rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s ease;
    outline: none;
}
.join-carousel-arrow:hover {
    background: #333;
    color: #fff;
    border-color: #333;
}

/* 响应式：小屏适配 */
@media (max-width: 992px) {
    .join-carousel-center-col {
        width: 100%;
    }
    .join-carousel-left-col,
    .join-carousel-right-col {
        width: 30%;
    }
    .join-carousel-row {
        gap: 12px;
    }
}

/* --- 校园招聘页面 --- */
.campus-banner {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.campus-banner-img {
    display: block;
    width: 100%;
    height: auto;
}
.campus-banner-overlay {
    position: absolute;
    top: 50%;
    left: 10%;
    transform: translateY(-50%);
    width: 390px;
}
.campus-banner-overlay h1 {
    font-size: 2rem;
    font-weight: 700;
    letter-spacing: 5px;
    margin: 0 0 20px;
    padding-top: 16px;
}
.campus-banner-en {
    font-size: 0.9rem;
    letter-spacing: 4px;
    margin: 0 0 28px;
}
.campus-banner-desc {
    font-size: 1rem;
    letter-spacing: 2px;
    line-height: 1.9;
    margin: 0;
    opacity: 0.9;
}

/* 校园招聘 Banner 颜色 */
.banner-campus .campus-banner-overlay { color: #fff; }
.banner-campus .campus-banner-overlay h1 { color: #ffffff; }
.banner-campus .campus-banner-en { color: var(--green-color, #00C4B3); }
.banner-campus .campus-banner-desc { color: #f5f5f5; }

/* 社会招聘 Banner 颜色 */
.banner-social .campus-banner-overlay { color: #fff; }
.banner-social .campus-banner-overlay h1 { color: #2b2b2b; }
.banner-social .campus-banner-en { color: var(--green-color, #00C4B3); }
.banner-social .campus-banner-desc { color: #666666; }

/* 3/12 网格导航 */
.campus-nav-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 5%;
}
.campus-nav-grid--three {
    grid-template-columns: repeat(3, 1fr);
}
.campus-nav-item {
    text-align: center;
    padding: 50px 0 40px;
    cursor: pointer;
    border-bottom: 3px solid transparent;
    transition: all 0.3s ease;
}
.campus-nav-item.active {
    border-bottom-color: var(--green-color, #00C4B3);
}
.campus-nav-item img {
    width: auto;
    height: 48px;
    margin-bottom: 16px;
}
.campus-nav-item p {
    font-size: 1rem;
    color: #333;
    letter-spacing: 2px;
    margin: 0;
}
.campus-nav-item.active p {
    color: var(--green-color, #00C4B3);
    font-weight: 600;
}

/* 招聘职位列表区域 */
.campus-jobs {
    background: #f8f9fa;
    padding: 60px 5%;
}
.campus-search-bar {
    display: flex;
    max-width: 600px;
    margin: 0 auto 50px;
}
.campus-search-input {
    flex: 1;
    height: 54px;
    padding: 0 20px;
    font-size: 0.95rem;
    border: 1px solid #e0e0e0;
    border-right: none;
    outline: none;
}
.campus-search-input:focus {
    border-color: var(--green-color, #00C4B3);
}
.campus-search-btn {
    width: 80px;
    height: 54px;
    background: var(--green-color, #00C4B3);
    border: none;
    color: #fff;
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.3s;
}
.campus-search-btn:hover {
    background: #00a89a;
}

/* 筛选行 */
.campus-filter-row {
    display: flex;
    align-items: flex-start;
    max-width: 1100px;
    margin: 0 auto;
    padding: 18px 0;
    border-bottom: 1px solid #eee;
    font-size: 0.9rem;
    color: #666;
}
.campus-filter-label {
    flex-shrink: 0;
    line-height: 2;
    color: #333;
    font-weight: 500;
}
.campus-filter-list {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    list-style: none;
    padding: 0;
    margin: 0;
}
.campus-filter-list li {
    padding: 4px 16px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.2s;
    white-space: nowrap;
}
.campus-filter-list li:hover {
    color: var(--green-color, #00C4B3);
}
.campus-filter-list li.active {
    background: var(--green-color, #00C4B3);
    color: #fff;
}

/* 表格 */
.campus-job-table {
    width: 100%;
    max-width: 1100px;
    margin: 40px auto 0;
    border-collapse: collapse;
    background: #fff;
}
.campus-job-table thead {
    background: #f5f5f5;
}
.campus-job-table th {
    padding: 14px 20px;
    font-size: 0.95rem;
    font-weight: 600;
    color: #333;
    text-align: left;
}
.campus-job-table td {
    padding: 14px 20px;
    font-size: 0.9rem;
    color: #666;
    border-bottom: 1px solid #f5f5f5;
}
.campus-job-table tbody tr:hover {
    background: #fafafa;
}
.campus-empty {
    text-align: center;
    padding: 60px 20px !important;
    color: #999;
}

/* 分页 */
.campus-pagination {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 40px;
}
.campus-page-item {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    font-size: 0.9rem;
    color: #666;
    cursor: pointer;
    transition: all 0.2s;
}
.campus-page-item.active {
    background: var(--green-color, #00C4B3);
    color: #fff;
}
.campus-page-item:hover:not(.active) {
    color: var(--green-color, #00C4B3);
}

/* 选项卡面板 */
.campus-tab-panel {
    display: none;
}
.campus-tab-panel.active {
    display: block;
}
.campus-article-section {
    max-width: 1100px;
    margin: 0 auto;
    padding: 40px 5% 60px;
}

/* --- 响应式 --- */
@media (max-width: 992px) {
    .join-entry-grid {
        flex-direction: column;
        gap: 60px;
        padding: 0 20px;
    }
    .join-values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    .join-talent-body {
        flex-direction: column;
        gap: 40px;
    }
    .join-talent-photos {
        width: 100%;
    }
    .campus-banner-overlay {
        width: 320px;
    }
    .campus-banner-overlay h1 {
        font-size: 2rem;
    }
}
@media (max-width: 768px) {
    .join-banner-text h1 {
        font-size: 1.3rem;
        letter-spacing: 4px;
    }
    .join-banner-text p {
        font-size: 0.75rem;
        letter-spacing: 2px;
        margin-top: 10px;
    }
    .join-entry {
        padding: 50px 0;
    }
    .join-values-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .join-values-overlay {
        padding: 50px 20px;
    }
    .join-talent {
        padding: 50px 0;
    }
    .join-carousel-wrap {
        padding: 0 20px;
    }
    .campus-banner-overlay {
        left: 6%;
        width: 280px;
    }
    .campus-banner-overlay h1 {
        font-size: 1.6rem;
        letter-spacing: 3px;
    }
    .campus-banner-desc {
        font-size: 0.8rem;
    }
    .campus-nav-grid,
    .campus-nav-grid--three {
        grid-template-columns: repeat(2, 1fr);
    }
    .campus-filter-row {
        flex-direction: column;
        gap: 10px;
    }
    .campus-search-bar {
        margin: 0 0 40px;
    }
}

/* ==================== 美好生活页样式 ==================== */

/* 顶部马赛克网格 */
.goodlife-mosaic {
    width: 100%;
    max-width: 1920px;
    margin: -80px auto 0;
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.goodlife-mosaic-row {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 2px;
}

.goodlife-mosaic-item {
    position: relative;
    overflow: hidden;
    display: block;
    color: inherit;
    text-decoration: none;
}

.goodlife-mosaic-full {
    width: 100%;
    height: 580px;
}

.goodlife-mosaic-quarter {
    grid-column: span 3;
    height: 320px;
}

.goodlife-mosaic-half {
    grid-column: span 6;
    height: 320px;
}

.goodlife-mosaic-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.7s ease;
}

.goodlife-mosaic-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.45);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 1;
    transition: background 0.5s ease;
}

.goodlife-mosaic-item:hover .goodlife-mosaic-img {
    transform: scale(1.06);
}

.goodlife-mosaic-item:hover .goodlife-mosaic-overlay {
    background: rgba(0, 0, 0, 0.3);
}

.goodlife-mosaic-title {
    font-size: 2rem;
    font-weight: 700;
    color: #fff;
    margin: 0 0 12px 0;
    letter-spacing: 4px;
    text-shadow: 1px 1px 6px rgba(0, 0, 0, 0.5);
}

.goodlife-mosaic-title--sm {
    font-size: 1.3rem;
}

.goodlife-mosaic-desc {
    font-size: 1.05rem;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    letter-spacing: 2px;
    text-shadow: 1px 1px 4px rgba(0, 0, 0, 0.4);
}

/* 第一条：内容垂直居中 + 水平靠左 */
.goodlife-mosaic-overlay--left {
    align-items: flex-start;
    justify-content: center;
    padding-left: 80px;
}

/* 第一条：标题带绿色下划线 */
.goodlife-mosaic-title--underline {
    padding-bottom: 16px;
    margin-bottom: 18px;
    position: relative;
}

.goodlife-mosaic-title--underline::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 60px;
    height: 3px;
    background-color: var(--green-color);
    border-radius: 2px;
}

/* 栏目区域 */
.goodlife-section {
    padding: 60px 20px;
    max-width: 1200px;
    margin: 0 auto;
}

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

.goodlife-section-title {
    font-size: 37px;
    font-weight: 700;
    color: #333;
    margin: 0 0 10px 0;
    position: relative;
    display: inline-block;
    letter-spacing: 10px;
}

.goodlife-section-title::after {
    content: '';
    position: absolute;
    bottom: -12px;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: var(--green-color);
    border-radius: 2px;
}

.goodlife-section-subtitle {
    font-size: 16px;
    font-weight: 500;
    color: #858585;
    margin: 28px 0 0 0;
    letter-spacing: 6px;
    text-transform: uppercase;
}

/* 3列卡片网格 */
.goodlife-card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.goodlife-card {
    display: block;
    background: #fff;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
    text-decoration: none;
    color: inherit;
}

.goodlife-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    text-decoration: none;
    color: inherit;
}

.goodlife-card-img {
    width: 100%;
    aspect-ratio: 4 / 3;
    overflow: hidden;
    background: #f5f5f5;
}

.goodlife-card-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.goodlife-card:hover .goodlife-card-img img {
    transform: scale(1.08);
}

.goodlife-card-info {
    padding: 20px 16px;
}

.goodlife-card-title {
    font-size: 1.1rem;
    font-weight: 600;
    color: #333;
    margin: 0 0 10px 0;
    line-height: 1.4;
    transition: color 0.3s ease;
}

.goodlife-card:hover .goodlife-card-title {
    color: var(--green-color);
}

.goodlife-card-desc {
    font-size: 0.9rem;
    color: #888;
    margin: 0;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 空状态 */
.goodlife-empty {
    text-align: center;
    padding: 80px 20px;
    color: #999;
    font-size: 1rem;
}

/* 分页 */
.goodlife-pagination {
    margin-top: 50px;
    text-align: center;
}

/* 响应式 */
@media screen and (max-width: 1199px) {
    .goodlife-mosaic-full {
        height: 420px;
    }
    .goodlife-mosaic-overlay--left {
        padding-left: 50px;
    }
    .goodlife-mosaic-quarter,
    .goodlife-mosaic-half {
        height: 240px;
    }
    .goodlife-mosaic-title {
        font-size: 1.5rem;
    }
    .goodlife-mosaic-desc {
        font-size: 0.9rem;
    }
    .goodlife-section {
        padding: 50px 15px;
    }
    .goodlife-card-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
    }
}

@media screen and (max-width: 768px) {
    .goodlife-mosaic-full {
        height: 320px;
    }
    .goodlife-mosaic-overlay--left {
        padding-left: 30px;
    }
    .goodlife-mosaic-title--underline {
        padding-bottom: 12px;
        margin-bottom: 12px;
    }
    .goodlife-mosaic-row {
        grid-template-columns: repeat(2, 1fr);
    }
    .goodlife-mosaic-quarter {
        grid-column: span 1;
        height: 200px;
    }
    .goodlife-mosaic-half {
        grid-column: span 2;
        height: 200px;
    }
    .goodlife-mosaic-title {
        font-size: 1.2rem;
        letter-spacing: 2px;
    }
    .goodlife-mosaic-desc {
        font-size: 0.8rem;
    }
    .goodlife-section-title {
        font-size: 1.8rem;
    }
    .goodlife-section-subtitle {
        font-size: 1rem;
        letter-spacing: 3px;
    }
    .goodlife-card-grid {
        grid-template-columns: 1fr;
        gap: 14px;
    }
}

/* ==================== 认真生活家分页 ==================== */
.goodlife-pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 6px;
    padding: 30px 0 10px 0;
}
.goodlife-pagination .page-link {
    padding: 8px 14px;
    border: 1px solid #e0e0e0;
    border-radius: 4px;
    color: #555;
    font-size: 14px;
    text-decoration: none;
    transition: all 0.2s ease;
}
.goodlife-pagination .page-link:hover {
    background: var(--green-color);
    color: #fff;
    border-color: var(--green-color);
}
.goodlife-pagination .page-link.active {
    background: var(--green-color);
    color: #fff;
    border-color: var(--green-color);
    font-weight: 500;
}
.goodlife-pagination .page-link.disabled {
    color: #ccc;
    cursor: not-allowed;
    pointer-events: none;
}
.goodlife-pagination .page-num-wrap {
    display: contents;
}

/* ==================== 专利列表页 ==================== */
.patent-page {
    min-height: 100vh;
    background: url('../images/patent_bg.jpg') no-repeat center center fixed;
    background-size: cover;
    -webkit-background-size: cover;
    position: relative;
}
.patent-page::before {
    content: '';
    position: absolute;
    inset: 0;
    z-index: 0;
}
.patent-content {
    position: relative;
    z-index: 1;
    max-width: 1280px;
    margin: 0 auto;
    padding: 60px 40px 80px;
}
.patent-header {
    text-align: center;
    margin-bottom: 48px;
}
.patent-header h1 {
    font-size: 36px;
    font-weight: 500;
    color: var(--green-color);
    margin: 0 0 12px;
    letter-spacing: 15px;
}
.patent-header .patent-subtitle {
    font-size: 18px;
    color: #666;
    letter-spacing: 1px;
}
.patent-filters {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.patent-filters select {
    width: 200px;
    height: 44px;
    padding: 0 16px;
    border: 1px solid #d9d9d9;
    border-radius: 6px;
    font-size: 14px;
    color: #333;
    background: #fff;
    cursor: pointer;
    outline: none;
    transition: border-color 0.3s;
    appearance: none;
    -webkit-appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath fill='%23999' d='M6 8L1 3h10z'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 12px center;
}
.patent-filters select:focus {
    border-color: #1ab394;
}
.patent-table-wrap {
    background: #fff;
    box-shadow: 0 2px 16px rgba(0, 0, 0, 0.08);
    overflow: hidden;
}
.patent-table {
    width: 100%;
    border-collapse: collapse;
}
.patent-table thead th {
    background: #d7f0ee;
    color: #2b2b2b;
    font-weight: 500;
    font-size: 1.0rem;
    padding: 14px 16px;
    text-align: center;
    white-space: nowrap;
    border: 1px solid #f5f5f5;
}
.patent-table tbody td {
    padding: 18px 16px;
    color: #3b3b3b;
    text-align: center;
    border: 1px solid #f5f5f5;
    font-size: 14px;
}
.patent-table tbody tr:hover {
    background: #f5f5f5;
}
.patent-table .col-index {
    width: 60px;
}
.patent-table .col-number {
    width: 250px;
    font-family: Monaco, Menlo, monospace;
}
.patent-table .col-type {
    width: 120px;
}

.patent-table .col-date {
    width: 130px;
}
.patent-table .no-data {
    text-align: center;
    padding: 60px 0;
    color: #999;
    font-size: 15px;
    border: 1px solid #f5f5f5;
}
.patent-count {
    text-align: right;
    margin-bottom: 12px;
    font-size: 13px;
    color: #999;
}
.patent-bottom {
    text-align: center;
    margin-top: 40px;
}
.patent-query-btn {
    display: inline-block;
    height: 48px;
    line-height: 48px;
    padding: 0 48px;
    background: var(--green-color);
    color: #fff;
    font-size: 16px;
    font-weight: 500;
    border-radius: 6px;
    text-decoration: none;
    letter-spacing: 1px;
    transition: all 0.3s;
}
.patent-query-btn:hover {
    background: #18a589;
    box-shadow: 0 4px 16px rgba(26, 179, 148, 0.35);
    transform: translateY(-1px);
    color: #fff;
    text-decoration: none;
}
@media screen and (max-width: 768px) {
    .patent-content {
        padding: 40px 16px 60px;
    }
    .patent-header h1 {
        font-size: 26px;
    }
    .patent-filters select {
        width: 100%;
    }
    .patent-table thead th,
    .patent-table tbody td {
        padding: 10px 8px;
        font-size: 12px;
    }
    .patent-table .col-number {
        width: 130px;
        font-size: 11px;
    }
}
/* 专利分页居中 */
.pagination-wrapper.patent-pagination {
    justify-content: center;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

/* ==================== 品牌理念页 ==================== */
.brand-page {
    background: #fff;
}
/* 上段：Hero Banner */
.brand-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.brand-hero img {
    width: 100%;
    height: auto;
    display: block;
}
.brand-hero-text {
    position: absolute;
    left: 9.375%;
    top: 50%;
    transform: translateY(-50%);
}
.brand-hero-title {
    font-size: 38px;
    letter-spacing: 5px;
    color: #00C4B3;
    font-weight: 700;
    margin: 0;
}
.brand-hero-en {
    padding-top: 20px;
    font-size: 24px;
    color: #adadad;
    letter-spacing: 8px;
    margin: 0;
}
.brand-hero-sub1 {
    padding-top: 80px;
    font-size: 20px;
    letter-spacing: 5px;
    color: #333;
    margin: 0;
}
.brand-hero-sub2,
.brand-hero-sub3 {
    padding-top: 8px;
    font-size: 26px;
    letter-spacing: 5px;
    color: #333;
    margin: 0;
}
/* 下段：品牌价值观 */
.brand-values {
    background: url('../images/about_bg.png') no-repeat center;
    background-size: 100% auto;
    min-height: 700px;
    display: flex;
    overflow: hidden;
    width: 100%;
}
.brand-values-inner {
    display: flex;
    margin-left: 12.5%;
    width: 100.5%;
    align-items: stretch;
}
.brand-values-text {
    width: 40%;
    margin-top: 95px;
    margin-bottom: 70px;
    padding-right: 60px;
    color: #333;
    font-size: 15px;
    line-height: 2;
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.brand-values-text p {
    margin: 0 0 16px;
}
.brand-values-cards {
    width: 40%;
    display: flex;
    align-items: flex-start;
    gap: 0;
}
.brand-card {
    width: 25%;
    position: relative;
    overflow: hidden;
}
.brand-card:nth-child(1) { margin-top: 0; }
.brand-card:nth-child(2) { margin-top: 120px; }
.brand-card:nth-child(3) { margin-top: 240px; }
.brand-card:nth-child(4) { margin-top: 0; }
.brand-card img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    aspect-ratio: 2 / 4;
}
.brand-card-label {
    position: absolute;
    bottom: 10%;
    left: 10.9%;
    color: #fff;
}
.brand-card-num {
    font-size: 20px;
    font-weight: 600;
    display: block;
}
.brand-card-line {
    display: block;
    width: 30px;
    height: 2px;
    background: #fff;
    margin: 6px 0;
}
.brand-card-title {
    font-size: 16px;
    display: block;
}
.brand-card-en {
    font-size: 11px;
    letter-spacing: 1px;
    opacity: 0.7;
    display: block;
    margin-top: 2px;
}

@media screen and (max-width: 1024px) {
    .brand-hero-text {
        left: 5%;
    }
    .brand-hero-title {
        font-size: 28px;
    }
    .brand-hero-en {
        font-size: 20px;
    }
    .brand-hero-sub1 {
        padding-top: 40px;
        font-size: 16px;
    }
    .brand-hero-sub2,
    .brand-hero-sub3 {
        font-size: 20px;
    }
    .brand-values-inner {
        flex-direction: column;
        margin-left: 5%;
        width: 90%;
    }
    .brand-values-text {
        width: 100%;
        margin-top: 40px;
        margin-bottom: 30px;
        padding-right: 0;
    }
    .brand-values-cards {
        width: 100%;
        flex-wrap: wrap;
    }
    .brand-card {
        width: 50%;
    }
}

@media screen and (max-width: 480px) {
    .brand-hero-title {
        font-size: 22px;
        letter-spacing: 2px;
    }
    .brand-hero-en {
        font-size: 16px;
        letter-spacing: 4px;
        padding-top: 10px;
    }
    .brand-hero-sub1 {
        padding-top: 20px;
        font-size: 14px;
    }
    .brand-hero-sub2,
    .brand-hero-sub3 {
        font-size: 16px;
        letter-spacing: 2px;
    }
    .brand-card {
        width: 100%;
    }
}

/* ==================== 董事长寄语页面样式 ==================== */
.chairman-page {
    background: #fff;
}

/* Banner 大图区域 */
.chairman-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
}
.chairman-hero img {
    width: 100%;
    height: auto;
    display: block;
}
.chairman-hero-text {
    position: absolute;
    left: 9.375%;
    top: 50%;
    transform: translateY(-50%);
}
.chairman-hero-title {
    font-size: 38px;
    letter-spacing: 5px;
    color: #00C4B3;
    font-weight: 700;
    margin: 0;
}
.chairman-hero-en {
    padding-top: 20px;
    font-size: 26px;
    color: #adadad;
    letter-spacing: 8px;
    margin: 0;
}
.chairman-hero-desc {
    padding-top: 80px;
    font-size: 24px;
    letter-spacing: 5px;
    color: #333;
    margin: 0;
    max-width: 600px;
    line-height: 1.6;
}

/* Main 内容区域 */
.chairman-main {
    background: url('../images/chairman_bj.png') no-repeat center;
    background-size: cover;
    min-height: 600px;
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 80px 0;
}
.chairman-main-inner {
    margin-left: 14.5%;
    width: 70.5%;
}
.chairman-content {
    color: #333;
    font-size: 16px;
    line-height: 2;
}
.chairman-content p {
    margin: 0 0 20px;
}
.chairman-content img {
    max-width: 100%;
    height: auto;
}

/* 响应式 */
@media screen and (max-width: 1024px) {
    .chairman-hero-text {
        left: 5%;
    }
    .chairman-hero-title {
        font-size: 28px;
    }
    .chairman-hero-en {
        font-size: 20px;
    }
    .chairman-hero-desc {
        padding-top: 40px;
        font-size: 16px;
    }
    .chairman-main-inner {
        margin-left: 5%;
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .chairman-hero-title {
        font-size: 22px;
        letter-spacing: 2px;
    }
    .chairman-hero-en {
        font-size: 16px;
        letter-spacing: 4px;
        padding-top: 10px;
    }
    .chairman-hero-desc {
        padding-top: 20px;
        font-size: 14px;
    }
}

/* ==================== 发展历程页面样式 ==================== */
.history-page {
    background: #fff;
}

/* Banner 大图区域 */
.history-hero {
    position: relative;
    width: 100%;
    overflow: hidden;
    font-size: 0px;
}
.history-hero img {
    width: 100%;
    height: auto;
    display: block;
}
.history-hero-text {
    position: absolute;
    left: 9.375%;
    top: 50%;
    transform: translateY(-50%);
}
.history-hero-title {
    font-size: 38px;
    letter-spacing: 5px;
    color: #00C4B3;
    font-weight: 700;
    margin: 0;
}
.history-hero-en {
    padding-top: 20px;
    font-size: 26px;
    color: #adadad;
    letter-spacing: 8px;
    margin: 0;
}
.history-hero-remark {
    padding-top: 30px;
    font-size: 18px;
    color: #555;
    letter-spacing: 3px;
    margin: 0;
    max-width: 700px;
    line-height: 1.6;
}
.history-hero-desc {
    padding-top: 20px;
    font-size: 24px;
    letter-spacing: 5px;
    color: #2b2b2b;
    margin: 0;
    max-width: 700px;
    line-height: 1.6;
}

/* Main 内容区域 */
.history-main {
    background: url('../images/about_bg.png') no-repeat center bottom;
    background-size: 100% auto;
    max-height: 600px;
    display: flex;
    overflow: hidden;
    width: 100%;
    padding: 80px 0;
}
.history-main-inner {
    margin-left: 14.5%;
    width: 70.5%;
}
.history-content {
    color: #333;
    font-size: 16px;
    line-height: 2;
}
.history-content p {
    margin: 0 0 20px;
}
.history-content img {
    max-width: 100%;
    height: auto;
}

/* 响应式 */
@media screen and (max-width: 1024px) {
    .history-hero-text {
        left: 5%;
    }
    .history-hero-title {
        font-size: 28px;
    }
    .history-hero-en {
        font-size: 20px;
    }
    .history-hero-remark {
        padding-top: 20px;
        font-size: 14px;
    }
    .history-hero-desc {
        padding-top: 30px;
        font-size: 16px;
    }
    .history-main-inner {
        margin-left: 5%;
        width: 90%;
    }
}

@media screen and (max-width: 480px) {
    .history-hero-title {
        font-size: 22px;
        letter-spacing: 2px;
    }
    .history-hero-en {
        font-size: 16px;
        letter-spacing: 4px;
        padding-top: 10px;
    }
    .history-hero-remark {
        padding-top: 12px;
        font-size: 13px;
    }
    .history-hero-desc {
        padding-top: 14px;
        font-size: 14px;
    }
}

/* ==================== 售后服务页面样式 ==================== */
.w1400 {
    max-width: 1290px;
    margin: 0 auto;
}
.sale-page {
    background: #fff;
    padding: 30px 0 60px;
}

/* 面包屑 */
.sale-breadcrumb {
    font-size: 14px;
    color: #999;
    padding: 0 0 20px;
}
.sale-breadcrumb a {
    color: #666;
    text-decoration: none;
}
.sale-breadcrumb a:hover {
    color: var(--green-color);
}
.sale-breadcrumb .curr-page {
    color: var(--green-color);
    font-weight: 500;
}

.sale-container {
    margin: 0 auto;
}

/* 一级导航：横向Tab */
.sale-tabs {
    display: flex;
    justify-content: center;
    gap: 0;
    border-bottom: 2px solid #f5f5f5;
    margin: 0 0 30px;
    padding: 0;
    font-size: 24px;
    font-weight: 400;
}
.sale-tabs a {
    display: inline-block;
    padding: 12px 32px;
    font-size: 24px;
    font-weight: 500;
    color: #555;
    text-decoration: none;
    border-bottom: 3px solid transparent;
    margin-bottom: -2px;
    transition: all 0.3s ease;
}
.sale-tabs a:hover {
    color: var(--green-color);
    text-decoration: none;
}
.sale-tabs a.cur {
    color: var(--green-color);
    border-bottom-color: var(--green-color);
    font-weight: 700;
}

/* 3/9 网格布局 */
.sale-layout {
    display: flex;
    gap: 30px;
}

/* 左侧二级导航 */
.sale-sidebar {
    flex: 0 0 20%;
    max-width: 20%;
}
.sale-sidebar-nav {
    display: flex;
    flex-direction: column;
    border: 1px solid #f5f5f5;
    /*border-radius: 4px;*/
    overflow: hidden;
}
.sale-sidebar-nav a {
    display: block;
    padding: 14px;
    font-size: 14px;
    color: #555;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
    transition: all 0.3s ease;
}
.sale-sidebar-nav a:last-child {
    border-bottom: none;
}
.sale-sidebar-nav a:hover {
    color: var(--green-color);
    background: #f0fdfa;
    text-decoration: none;
}
.sale-sidebar-nav a.cur {
    color: #fff;
    background: var(--green-color);
    font-weight: 600;
}

/* 右侧内容区 */
.sale-content {
    flex: 1;
    min-width: 0;
    background: #fff;
    border-radius: 4px;
    border: 1px solid #f5f5f5;
    padding: 0px;
    min-height: 350px;
}
.sale-content-title {
    font-size: 22px;
    font-weight: normal;
    color: #1a1a1a;
    /*margin: 0 0 20px;*/
    /*padding-bottom: 15px;*/
    /* border-bottom: 2px solid var(--green-color); */
    background-color: #eeeeee;
    text-align: center;
    font-size: 22px;
    line-height: 3;
    color: #00c4b3;
}
.sale-content-body {
    font-size: 15px;
    line-height: 2;
    color: #333;
    padding: 0 15px;
}
.sale-content-body p {
    margin: 0 0 14px;
}
.sale-content-body img {
    max-width: 100%;
    height: auto;
}
.sale-empty {
    text-align: center;
    color: #999;
    font-size: 16px;
    padding: 80px 0;
}

/* 响应式 */
@media screen and (max-width: 1024px) {
    .sale-layout {
        flex-direction: column;
        gap: 20px;
    }
    .sale-sidebar {
        flex: 0 0 100%;
        max-width: 100%;
    }
    .sale-tabs a {
        padding: 10px 20px;
        font-size: 14px;
    }
    .sale-content {
        padding: 20px;
    }
}

/* ==================== 常见问题板块样式 ==================== */
.faq-section {
    max-width: 1400px;
    margin: 0 auto;
    padding: 60px 40px;
}

.faq-main-title {
    font-size: 30px;
    font-weight: 700;
    color: #333;
    margin: 0 0 8px 0;
}

.faq-subtitle {
    font-size: 16px;
    color: #999;
    margin: 0 0 40px 0;
}

/* 选项卡区域：原生横向滚动 + 左右浮动箭头 */
.faq-tabs-wrapper {
    position: relative;
    margin-bottom: 40px;
    padding: 0 52px;  /* 给两侧箭头留出可视空间 */
}

.faq-tab-arrow {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 44px;
    color: var(--green-color);
    font-size: 1.2rem;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    padding: 0;
    border-radius: 4px;
    z-index: 2;
    outline: none;
    user-select: none;
}

.faq-tab-prev { left: 0; }
.faq-tab-next { right: 0; }

.faq-tab-arrow:hover:not(.disabled) {
    background: var(--green-color);
    color: #fff;
}

.faq-tab-arrow.disabled {
    color: #ccc;
    border-color: #ddd;
    cursor: not-allowed;
    pointer-events: none;
    box-shadow: none;
}

/* 横向滚动容器 */
.faq-tabs-scroll {
    width: 100%;
    overflow-x: auto;
    overflow-y: hidden;
    scrollbar-width: none;          /* Firefox */
    -ms-overflow-style: none;       /* IE/Edge */
}

.faq-tabs-scroll::-webkit-scrollbar {
    display: none;                  /* Chrome/Safari */
}

/* 弹性轨道 */
.faq-tabs-track {
    display: flex;
    gap: 10px;
    padding: 4px 0;
}

/* 单个选项卡 */
.faq-tab {
    flex-shrink: 0;
    width: 120px;
    text-align: center;
    cursor: pointer;
    padding: 10px 6px 12px;
    border-radius: 8px;
    border: 2px solid transparent;
    transition: all 0.3s ease;
}

.faq-tab:hover {
    background: #f0fdfa;
    transform: translateY(-2px);
}

.faq-tab.active {
    background: #f0fdfa;
}

.faq-tab-thumb {
    width: 80px;
    height: 60px;
    margin: 0 auto 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 4px;
    overflow: hidden;
    background: #fff;
}

.faq-tab-thumb img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}

.faq-tab-title {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: #555;
    line-height: 1.3;
    transition: color 0.3s ease;
    /* 最多两行 */
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.faq-tab.active .faq-tab-title {
    color: var(--green-color);
    font-weight: 600;
}

/* 文章列表 */
.faq-article-list {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0 40px;
}

.faq-article-item {
    display: block;
    padding: 14px 0;
    border-bottom: 1px dashed #ddd;
    text-decoration: none;
    color: #333;
    transition: all 0.3s ease;
    cursor: pointer;
}

.faq-article-item:hover {
    color: var(--green-color);
    padding-left: 8px;
}

.faq-article-title {
    font-size: 15px;
    font-weight: 400;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 空状态 */
.faq-article-empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 40px 0;
    color: #999;
    font-size: 14px;
}

/* 常见问题响应式 */
@media (max-width: 1199px) {
    .faq-section {
        width: 1200px;
        padding: 50px 40px;
    }

    .faq-article-list {
        grid-template-columns: repeat(3, 1fr);
        gap: 0 30px;
    }

    .faq-tab {
        width: 110px;
    }
}

@media (min-width: 1920px) {
    .faq-section {
        max-width: 1400px;
    }
}

@media (max-width: 768px) {
    .faq-section {
        padding: 40px 20px;
    }

    .faq-main-title {
        font-size: 24px;
    }

    .faq-article-list {
        grid-template-columns: 1fr;
        gap: 0;
    }

    .faq-tab {
        width: 100px;
    }
}

/* ==================== 活动首页 ==================== */
.activity-page {
    width: 100%;
    overflow: hidden;
}

/* ---- 顶部大图 Hero（12/12 全宽） ---- */
.activity-hero {
    width: 100%;
    min-height: 620px;
    background-position: center;
    background-repeat: no-repeat;
    background-size: cover;
    display: flex;
    align-items: center;
    justify-content: center;
}

.activity-hero-content {
    text-align: center;
    color: #fff;
    padding: 40px 20px;
}

.activity-hero-title {
    color: var(--green-color);
    font-size: 40px;
    letter-spacing: 10px;
    margin: 0 0 12px;
    font-weight: 700;
}

.activity-hero-en {
    font-size: 14px;
    color: #adadad;
    margin: 0 0 30px;
}

.activity-hero-desc {
    color: #4b4b4b;
    font-size: 14px;
    letter-spacing: 2px;
    line-height: 2;
    max-width: 900px;
    margin-bottom: 30px;
}

.activity-hero-desc p {
    margin: 0;
}

.activity-hero-btn {
    display: inline-block;
    margin-top: 100px;
    padding: 12px 40px;
    border: 1px solid #fff;
    color: #fff;
    font-size: 14px;
    letter-spacing: 2px;
    text-decoration: none;
    transition: all 0.3s ease;
}

.activity-hero-btn:hover {
    background-color: rgba(255, 255, 255, 0.15);
    color: #fff;
    text-decoration: none;
}

/* ---- 间距 ---- */
.activity-gap-h {
    width: 100%;
    height: 8px;
    background-color: #fff;
}

.activity-gap-h-sm {
    width: 100%;
    height: 6px;
    background-color: #fff;
}

.activity-gap-v {
    width: 8px;
    background-color: #fff;
    flex-shrink: 0;
}

/* ---- 2×2 卡片网格 ---- */
.activity-grid {
    width: 100%;
}

.activity-row {
    display: flex;
    width: 100%;
}

.activity-card {
    width: 50%;
    position: relative;
    overflow: hidden;
    display: block;
    text-decoration: none;
}

.activity-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.5s ease;
}

.activity-card:hover img {
    transform: scale(1.05);
}

.activity-card-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    color: #fff;
    text-align: center;
}

.activity-card-title {
    font-size: 40px;
    letter-spacing: 10px;
    margin: 0 0 10px;
    font-weight: 700;
}

.activity-card-en {
    font-size: 13px;
    letter-spacing: 2px;
    color: #ffffff;
    margin: 0 0 20px;
}

.activity-card-desc {
    font-size: 14px;
    letter-spacing: 2px;
    margin: 0 0 40px;
    max-width: 400px;
    line-height: 1.6;
}

.activity-card-btn {
    display: inline-block;
    padding: 10px 36px;
    background-color: rgba(0, 196, 179, 0.5); /* 标准绿色50%半透明 */
    color: #fff;
    font-size: 13px;
    letter-spacing: 2px;
    border: none;
    transition: all 0.3s ease;
}

.activity-card:hover .activity-card-btn {
    background-color: rgba(0, 196, 179, 0.75); /* 悬停时稍加深 */
}

/* ---- 活动首页响应式 ---- */
@media (max-width: 1199px) {
    .activity-hero {
        min-height: 480px;
    }

    .activity-hero-title {
        font-size: 32px;
        letter-spacing: 6px;
    }

    .activity-hero-btn {
        margin-top: 60px;
    }

    .activity-card-title {
        font-size: 22px;
        letter-spacing: 4px;
    }

    .activity-card-btn {
        padding: 8px 28px;
        font-size: 12px;
    }
}

@media (max-width: 768px) {
    .activity-hero {
        min-height: 360px;
    }

    .activity-hero-title {
        font-size: 26px;
        letter-spacing: 4px;
    }

    .activity-hero-en {
        font-size: 12px;
    }

    .activity-hero-desc {
        font-size: 13px;
        letter-spacing: 1px;
    }

    .activity-hero-btn {
        margin-top: 40px;
        padding: 10px 30px;
        font-size: 13px;
    }

    .activity-row {
        flex-direction: column;
    }

    .activity-card {
        width: 100%;
        min-height: 280px;
    }

    .activity-gap-v {
        height: 6px;
        width: 100%;
    }

    .activity-card-title {
        font-size: 20px;
    }

    .activity-card-desc {
        margin-bottom: 30px;
    }
}

/* ================================================================
   产品搜索页 (product_seach.html)
   ================================================================ */

/* --- 搜索栏Hero区 --- */
.search-hero {
    background-color: #f5f5f5;
    overflow: hidden;
}
.search-hero-inner {
    max-width: 800px;
    margin: 80px auto 0;
    padding-bottom: 30px;
}
.search-bar-form {
    display: flex;
    height: 56px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.search-icon-wrap {
    width: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.search-icon-wrap img {
    width: 18px;
    height: 18px;
}
.search-bar-input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 16px;
    padding: 0 12px;
    color: #333;
    background: transparent;
}
.search-bar-input::placeholder {
    color: #bbb;
}
.search-bar-btn {
    width: 110px;
    background: #00b5a4;
    color: #fff;
    font-size: 16px;
    border: none;
    cursor: pointer;
    flex-shrink: 0;
    transition: background 0.2s;
}
.search-bar-btn:hover {
    background: #009a8c;
}

/* --- 热门搜索词 --- */
.search-hotwords {
    margin-top: 18px;
    color: #666;
    font-size: 13px;
}
.hotwords-label {
    color: #999;
}
.search-hotword {
    display: inline-block;
    margin-left: 6px;
    margin-right: 6px;
    cursor: pointer;
    color: #666;
    transition: color 0.2s;
}
.search-hotword:hover {
    color: #00b5a4;
}

/* --- 主内容区 --- */
.search-main-wrap {
    padding-top: 24px;
    padding-bottom: 60px;
    margin: 0 auto;
}
/* 本页面面包屑：宽度充满容器，左对齐，与下方栏目均匀分布 */
.search-main-wrap .breadcrumb-wrapper {
    width: 100%;
    margin: 0;
    padding: 0 0 20px;
}
/* < 1200px 满屏 */
@media (max-width: 1199px) {
    .search-main-wrap {
        width: 100%;
        max-width: 100%;
        padding-left: 16px;
        padding-right: 16px;
    }
}
/* 1200px ~ 1920px 显示80% */
@media (min-width: 1200px) and (max-width: 1919px) {
    .search-main-wrap {
        width: 80%;
        max-width: 80%;
    }
}
/* ≥ 1920px 大屏显示80% */
@media (min-width: 1920px) {
    .search-main-wrap {
        width: 80%;
        max-width: 80%;
    }
}

/* --- 品类筛选标签栏 --- */
.search-filter-bar {
    display: flex;
    align-items: flex-start;
    border-bottom: 1px solid #e5e5e5;
    padding-bottom: 14px;
    margin-bottom: 16px;
}
.filter-title {
    flex-shrink: 0;
    font-size: 14px;
    color: #333;
    font-weight: 500;
    line-height: 30px;
    margin-right: 12px;
}
.filter-items {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.filter-tag {
    display: inline-block;
    padding: 4px 16px;
    font-size: 13px;
    color: #666;
    background: #f7f7f7;
    border-radius: 3px;
    text-decoration: none;
    transition: all 0.2s;
    line-height: 22px;
}
.filter-tag:hover {
    color: #00b5a4;
    background: #e8f8f6;
}
.filter-tag.active {
    background: #00b5a4;
    color: #fff;
}

/* --- 搜索结果统计 --- */
.search-result-header {
    padding: 8px 0 16px;
}
.result-count {
    font-size: 14px;
    color: #999;
}
.result-count span {
    color: #333;
    font-weight: 500;
}

/* --- 空状态 --- */
.empty-products {
    text-align: center;
    padding: 80px 0;
}
.empty-icon {
    margin-bottom: 20px;
}
.empty-text {
    font-size: 16px;
    color: #666;
    margin-bottom: 8px;
}
.empty-hint {
    font-size: 13px;
    color: #999;
    margin-bottom: 24px;
}
.empty-link {
    display: inline-block;
    padding: 8px 24px;
    background: #00b5a4;
    color: #fff;
    border-radius: 4px;
    text-decoration: none;
    font-size: 14px;
}
.empty-link:hover {
    background: #009a8c;
    color: #fff;
}

/* --- 响应式 --- */
@media (max-width: 768px) {
    .search-hero-inner {
        max-width: 100%;
        margin-top: 40px;
        padding: 0 16px 24px;
    }
    .search-bar-form {
        height: 46px;
    }
    .search-bar-input {
        font-size: 14px;
    }
    .search-bar-btn {
        width: 80px;
        font-size: 14px;
    }
    .search-filter-bar {
        flex-direction: column;
        gap: 10px;
    }
    .filter-items {
        gap: 6px;
    }
}
