
/* =========================================
   1. 核心动画引擎 (安全版)
   ========================================= */

/* 默认状态：改为 opacity 1，防止 JS 报错时内容消失 */
/* 我们改用 JS 来添加 'hidden' 类进行初始化 */
.reveal-up {
    /* 暂时去掉 opacity: 0; 防止全站消失 */
    /* 动画交给 JS 动态控制，或者保留下面的 transform */
    transform: translateY(0); 
    transition: all 1.0s ease-out;
}

/* 只有当 JS 成功运行并添加了 .js-loaded 类后，才启用隐藏 */
/* 这一步是为了防止 JS 报错导致内容永久消失 */
body.js-ready .reveal-up {
    opacity: 0;
    transform: translateY(60px);
}

/* 激活状态 */
body.js-ready .reveal-up.active {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 768px) {
    body.js-ready .reveal-up { transform: translateY(30px); }
    body.js-ready .reveal-up.active { transform: translateY(0); }
}
body{ background-color:#ffffff; }
body{ background-position:left top; }


 #image_logo_1762831785223{width:11.5%;height:164px;position:absolute;top:34.48295211791992px;left:6.495028177897136%;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_logo_1762831785223{top:34.474430084228516px;left:3.8544467337287758%;}}   @media screen and (max-width:640px) {#image_logo_1762831785223{width:16.53333333333333%;height:73px;top:10px;left:1.1083333333333334%;z-index:1000;}} 

 #image_style_01_1762847178245{width:397px;height:66px;position:absolute;top:124px;left:20.291666666666668%;z-index:2;}   @media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762847178245{height:41px;width:306px;left:20.185185185185187%;top:111px;}}   @media screen and (max-width:640px) {#image_style_01_1762847178245{width:96.53333333333333%;height:60px;position:absolute;top:84.90908813476562px;left:1.7348484039306642%;display:block;}} #image_style_01_1762847178245 > .view_contents{overflow:visible;} 
/*----------------------电脑板式样式----------------------*/
#image_style_01_1762847178245{
	
}
/*----------------------平板板式样式----------------------*/
@media screen and (min-width:641px) and (max-width:1200px) {
	#image_style_01_1762847178245{
		
	}
}
/*----------------------手机板式样式----------------------*/
@media screen and (max-width:640px) {
	#image_style_01_1762847178245{
		
	}
}

 #text_html_new_1767755396452{width:72.91666666666666%;height:78px;position:absolute;top:30.451702117919922px;left:21.2476323445638%;z-index:10000;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_html_new_1767755396452{width:771px;left:17.049957985101745%;top:24.426136016845703px;}}   @media screen and (max-width:640px) {#text_html_new_1767755396452{width:77.06666666666668%;height:80px;top:6.982954025268555px;left:16.88257548014323%;}} 
/*----------------------电脑板式样式 (PC & 平板默认)----------------------*/
#text_html_new_1767755396452 .custom-header-wrapper {
    text-align: center;
    padding: 5px 0;
    font-family: Arial, sans-serif;
}

/* H1 主标题设置 */
#text_html_new_1767755396452 h1 {
    margin: 0 0 8px 0;
    color: #59a55d;      /* 绿色 */
    font-weight: 800;    /* 特粗 */
    font-size: 24px;     /* PC端字号 */
    line-height: 1.2;
}

/* H2 副标题设置 */
#text_html_new_1767755396452 h2 {
    margin: 0;
    color: #666666;      /* 灰色 */
    font-weight: 500;    /* 中等粗细 */
    font-size: 18px;     /* PC端字号 (你要求的18号) */
    text-transform: uppercase;
    letter-spacing: 1px;
}

/*----------------------平板板式样式----------------------*/
@media screen and (min-width:641px) and (max-width:1200px) {
    #text_html_new_1767755396452 {
        /* 平板继承电脑样式，保持 18px，不需要额外写 */
    }
}

/*----------------------手机板式样式----------------------*/
@media screen and (max-width:640px) {
    /* 手机端强制缩小字号 */
    #text_html_new_1767755396452 h1 {
        font-size: 16px !important; /* 手机 H1 */
    }
    #text_html_new_1767755396452 h2 {
        font-size: 12px !important; /* 手机 H2 */
    }
}

 #text_html_new_1767759029672{width:39.08333333333333%;height:34px;position:absolute;top:139.99147033691406px;left:54.95643870035807%;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_html_new_1767759029672{left:53.71360214265658%;top:120.98579406738281px;}}   @media screen and (max-width:640px) {#text_html_new_1767759029672{width:100%;height:36px;top:135.8295440673828px;left:0%;}} 
/*----------------------电脑板式样式----------------------*/

/* 1. 容器设置：隐藏溢出，强制不换行 */
#text_html_new_1767759029672 .custom-marquee-container {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    padding: 10px 0;
    background: transparent;
}

/* 2. 滚动内容设置 */
#text_html_new_1767759029672 .custom-marquee-content {
    display: inline-block;
    /* 20秒滚动一圈，匀速，无限循环 */
    animation: simpleMarquee 20s linear infinite;
}

/* 3. 鼠标放上去暂停 (方便用户复制号码) */
#text_html_new_1767759029672 .custom-marquee-container:hover .custom-marquee-content {
    animation-play-state: paused;
}

/* 4. 单个联系方式样式 (★ 核心修复) */
#text_html_new_1767759029672 .custom-contact-item {
    display: inline-flex;
    align-items: center;
    margin-right: 50px; 
    
    /* ★ 强制覆盖蓝色链接，使用深灰色 (rgb 89,89,89) ★ */
    color: #595959 !important; 
    text-decoration: none !important;
    
    font-size: 16px;   
    font-weight: 500;
    font-family: Arial, sans-serif;
    transition: color 0.3s; /* 添加平滑变色效果 */
}

/* 添加悬停变色效果 (品牌绿) */
#text_html_new_1767759029672 .custom-contact-item:hover {
    color: #819e88 !important;
}

/* 5. 图标样式 (★ 修复：同时支持 i, em, fa 标签) */
#text_html_new_1767759029672 .custom-contact-item i,
#text_html_new_1767759029672 .custom-contact-item em,
#text_html_new_1767759029672 .custom-contact-item .fa {
    margin-right: 8px;
    font-size: 18px;   
    color: #d4a768 !important; /* ★ 强制金色 */ 
    font-style: normal;
}

/* 6. 定义滚动动画 (向左移动50%) */
@keyframes simpleMarquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}


/*----------------------平板板式样式----------------------*/
@media screen and (min-width:641px) and (max-width:1200px) {
    #text_html_new_1767759029672 .custom-contact-item {
        margin-right: 30px; 
    }
}


/*----------------------手机板式样式----------------------*/
@media screen and (max-width:640px) {
    #text_html_new_1767759029672 .custom-contact-item {
        font-size: 12px;    
        margin-right: 20px; 
    }
    
    #text_html_new_1767759029672 .custom-contact-item i,
    #text_html_new_1767759029672 .custom-contact-item em,
    #text_html_new_1767759029672 .custom-contact-item .fa {
        font-size: 14px;    
        margin-right: 5px;
    }
    
    /* 手机端可以稍微快一点 */
    #text_html_new_1767759029672 .custom-marquee-content {
        animation-duration: 15s; 
    }
}

 #text_html_new_1768182536055{width:100%;height:90px;position:absolute;top:198.47443008422852px;left:0.011365254720052084%;z-index:10001;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_html_new_1768182536055{}}   @media screen and (max-width:640px) {#text_html_new_1768182536055{width:12.533333333333333%;height:60px;top:12.85511302947998px;left:87.46666666666667%;z-index:10001;}} #text_html_new_1768182536055 > .view_contents{overflow:visible;} 
/* ==================================================
   ★ 核心修复：针对模块 ID 的强制设置 ★
   解决：下拉菜单被挡住、导航栏下方留白过大
   ================================================== */
#text_html_new_1768182536055 {
    overflow: visible !important; /* 强制允许内容溢出(显示下拉菜单) */
    z-index: 99999 !important;    /* 确保层级最高 */
    height: auto !important;      /* 高度自动，防止留白 */
    min-height: auto !important;  /* 清除最小高度限制 */
}

/* ==================================================
   全局基础重置
   ================================================== */
#text_html_new_1768182536055 * { box-sizing: border-box; }

/* 强制覆盖系统默认蓝链接 */
#text_html_new_1768182536055 a { 
    text-decoration: none !important; 
    font-family: Arial, sans-serif; 
    transition: all 0.3s; 
    color: #333 !important; 
}
#text_html_new_1768182536055 ul { list-style: none; padding: 0; margin: 0; }
#text_html_new_1768182536055 li { padding: 0; margin: 0; }

/* 内部容器层级保险 */
#text_html_new_1768182536055 .custom-nav-wrapper {
    position: relative;
    z-index: 9999;
}

/* ==================================================
   PC & 平板端样式 (Desktop > 768px)
   ================================================== */
@media screen and (min-width: 769px) {
    /* 隐藏手机端元素 */
    #text_html_new_1768182536055 .mobile-header-bar,
    #text_html_new_1768182536055 .mobile-drawer,
    #text_html_new_1768182536055 .mobile-overlay { display: none !important; }

    /* 容器 */
    #text_html_new_1768182536055 .pc-nav-container {
        width: 100%; background: #fff; height: 80px;
        box-shadow: 0 2px 10px rgba(0,0,0,0.05);
        position: relative;
        z-index: 9999;
    }
    
    /* 菜单列表 */
    #text_html_new_1768182536055 .pc-menu {
        max-width: 1200px; margin: 0 auto; height: 100%;
        display: flex; justify-content: center; align-items: center;
    }

    /* 一级菜单项 */
    #text_html_new_1768182536055 .pc-menu > li {
        position: relative; height: 100%; display: flex; align-items: center;
    }
    
    #text_html_new_1768182536055 .pc-menu > li > a.nav-link {
        padding: 0 20px; font-size: 16px; font-weight: 600; 
        height: 100%; display: flex; align-items: center;
        color: #333 !important;
        position: relative; 
    }
    
    /* 绿色横条 (Underline) */
    #text_html_new_1768182536055 .pc-menu > li > a.nav-link::after {
        content: '';
        position: absolute;
        bottom: 0; left: 0;
        width: 0%; height: 4px; 
        background-color: #819e88; 
        transition: width 0.3s ease; 
    }

    /* 鼠标移入或选中时 */
    #text_html_new_1768182536055 .pc-menu > li:hover > a.nav-link::after,
    #text_html_new_1768182536055 .pc-menu > li > a.nav-link.active::after {
        width: 100%;
    }
    
    #text_html_new_1768182536055 .pc-menu > li:hover > a.nav-link,
    #text_html_new_1768182536055 .pc-menu > li > a.nav-link.active { 
        color: #819e88 !important; 
    }
    
    #text_html_new_1768182536055 .pc-menu i.fa { margin-left: 5px; font-size: 12px; color: #999; }

    /* --- 二级下拉菜单 --- */
    #text_html_new_1768182536055 .pc-dropdown {
        position: absolute; top: 80px; left: 0;
        background: #fff; min-width: 220px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-top: 3px solid #819e88;
        opacity: 0; visibility: hidden; transform: translateY(10px);
        transition: all 0.3s ease; 
        z-index: 10000; 
    }
    
    #text_html_new_1768182536055 .pc-menu > li:hover .pc-dropdown {
        opacity: 1; visibility: visible; transform: translateY(0);
    }

    #text_html_new_1768182536055 .pc-dropdown a {
        display: block; padding: 12px 20px; font-size: 14px; color: #555 !important;
        border-bottom: 1px solid #f5f5f5;
    }
    #text_html_new_1768182536055 .pc-dropdown a:hover {
        background: #f9f9f9; color: #d4a768 !important; padding-left: 25px;
    }

    /* --- 三级菜单 --- */
    #text_html_new_1768182536055 .pc-sub-item { position: relative; }
    #text_html_new_1768182536055 .pc-dropdown .flex-link {
        display: flex; justify-content: space-between; align-items: center;
    }
    
    #text_html_new_1768182536055 .pc-dropdown-level3 {
        position: absolute; left: 100%; top: 0;
        background: #fff; min-width: 200px;
        box-shadow: 0 5px 15px rgba(0,0,0,0.1);
        border-left: 3px solid #d4a768;
        opacity: 0; visibility: hidden;
        transition: all 0.3s ease;
        z-index: 10001; 
    }
    
    #text_html_new_1768182536055 .pc-sub-item:hover .pc-dropdown-level3 {
        opacity: 1; visibility: visible;
    }
}

/* ==================================================
   手机端样式 (Mobile <= 768px)
   ================================================== */
@media screen and (max-width: 768px) {
    #text_html_new_1768182536055 .pc-nav-container { display: none !important; }

    #text_html_new_1768182536055 .mobile-header-bar {
        position: absolute; top: 0; right: 0; z-index: 99;
        padding: 20px;
    }
    #text_html_new_1768182536055 .mobile-toggle-btn i {
        font-size: 28px; color: #333; cursor: pointer;
    }

    #text_html_new_1768182536055 .mobile-overlay {
        position: fixed; top: 0; left: 0; width: 100%; height: 100%;
        background: rgba(0,0,0,0.5); z-index: 999;
        display: none; 
    }
    #text_html_new_1768182536055 .mobile-overlay.active { display: block; }

    #text_html_new_1768182536055 .mobile-drawer {
        position: fixed; top: 0; right: -100%; 
        width: 80%; max-width: 320px; height: 100vh;
        background: #fff; z-index: 1000;
        transition: right 0.4s ease;
        overflow-y: auto;
        box-shadow: -5px 0 15px rgba(0,0,0,0.1);
    }
    #text_html_new_1768182536055 .mobile-drawer.active { right: 0; }

    #text_html_new_1768182536055 .drawer-header {
        height: 60px; border-bottom: 1px solid #eee; position: relative;
    }
    #text_html_new_1768182536055 .close-btn {
        position: absolute; right: 20px; top: 10px;
        font-size: 30px; color: #999; cursor: pointer;
    }

    #text_html_new_1768182536055 .mobile-menu a {
        display: block; color: #333 !important; text-decoration: none;
    }

    #text_html_new_1768182536055 .mobile-menu > li {
        border-bottom: 1px solid #eee;
    }
    
    #text_html_new_1768182536055 .m-link-wrap {
        display: flex; justify-content: space-between; align-items: center;
        width: 100%; background: #fff;
    }
    
    #text_html_new_1768182536055 .mobile-menu > li > a,
    #text_html_new_1768182536055 .m-link-wrap > a {
        padding: 16px 20px; font-size: 16px; font-weight: 700; flex: 1;
    }

    #text_html_new_1768182536055 .m-arrow {
        width: 50px; height: 50px; line-height: 50px; text-align: center;
        border-left: 1px solid #f5f5f5; color: #999; cursor: pointer;
    }
    #text_html_new_1768182536055 .m-arrow i { transition: transform 0.3s; }

    #text_html_new_1768182536055 .m-sub-menu {
        display: none; background: #f9f9f9; 
    }
    
    #text_html_new_1768182536055 li.expanded > .m-sub-menu { display: block; }
    #text_html_new_1768182536055 li.expanded > .m-link-wrap .m-arrow i { transform: rotate(180deg); }
    #text_html_new_1768182536055 li.expanded > .m-link-wrap a { color: #819e88 !important; }

    #text_html_new_1768182536055 .m-sub-menu li { border-bottom: 1px solid #e5e5e5; }
    #text_html_new_1768182536055 .m-sub-menu a {
        padding: 14px 20px 14px 35px; 
        font-size: 14px; font-weight: 500; color: #555 !important;
    }

    #text_html_new_1768182536055 .m-sub-menu.level-3 {
        background: #f0f0f0; 
        box-shadow: inset 0 3px 5px rgba(0,0,0,0.03);
    }
    #text_html_new_1768182536055 .m-sub-menu.level-3 a {
        padding: 12px 20px 12px 50px; 
        font-size: 13px; color: #666 !important;
    }
    #text_html_new_1768182536055 .m-sub-menu.level-3 a:hover {
        color: #819e88 !important; padding-left: 55px;
    }
} #comm_layout_header{height:288.4744300842285px;z-index:99999;}   @media screen and (min-width:641px) and (max-width:1200px) {#comm_layout_header{height:289.4658966064453px;}}   @media screen and (max-width:640px) {#comm_layout_header{height:171.8295440673828px;}} #comm_layout_header > .view_contents{max-width:1200px;overflow:visible;} 


 #text_style_01_1745291609989{width:100%;font-size:16px;color:#333;line-height:1.75;font-family:Microsoft YaHei,微软雅黑;position:absolute;top:50px;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_01_1745291609989{width:96%;left:2.014846235418876%;}}   @media screen and (max-width:640px) {#text_style_01_1745291609989{width:96%;font-size:12px;color:#333;line-height:2;top:20px;left:2%;}}  #text_style_01_1745291609989>.view_contents {font-size:30px;line-height:40px;border-style:solid;border-width:5px;border-top:none !important;border-right:none !important;border-bottom:none !important;padding-left:8px;border-color:#819e88;} @media screen and (min-width:641px) and (max-width:1200px) { #text_style_01_1745291609989>.view_contents {font-size:26px;line-height:30px;}} @media screen and (max-width:640px) { #text_style_01_1745291609989>.view_contents {font-size:22px;line-height:24px;}} #layout_1745291740609{height:90px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1745291740609{height:80px;}}   @media screen and (max-width:640px) {#layout_1745291740609{height:44px;}} #layout_1745291740609 > .view_contents{overflow:visible;max-width:1200px;} 


 #prodPic_style_01_1745291651529{width:380px;height:380px;position:absolute;top:40px;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#prodPic_style_01_1745291651529{left:1.8673780487804876%;top:40px;width:320px;height:320px;}}   @media screen and (max-width:640px) {#prodPic_style_01_1745291651529{width:96%;height:350px;top:10px;left:2%;}} 

 #prodInfor_style_04_1745291691452{width:65%;position:absolute;top:40px;left:35%;}   @media screen and (min-width:641px) and (max-width:1200px) {#prodInfor_style_04_1745291691452{width:60%;left:38%;}}   @media screen and (max-width:640px) {#prodInfor_style_04_1745291691452{width:96%;top:371px;left:2%;}} #prodInfor_style_04_1745291691452 > .view_contents{overflow:visible;}  #prodInfor_style_04_1745291691452 .titProSet {font-size:28px;line-height:40px;padding-top:0px;border-color:#e5e5e5;border-top:none !important;border-right:none !important;border-left:none !important;border-style:solid;border-width:1px;} #prodInfor_style_04_1745291691452 .defProSet {color:#666666;line-height:28px;margin-top:10px;margin-bottom:10px;} #prodInfor_style_04_1745291691452 .buyTProSet {border-radius:8px;background:#819e88;} @media screen and (min-width:641px) and (max-width:1200px) { #prodInfor_style_04_1745291691452 .titProSet {font-size:24px;}} @media screen and (min-width:641px) and (max-width:1200px) { #prodInfor_style_04_1745291691452 .defProSet {font-size:14px;}} @media screen and (min-width:641px) and (max-width:1200px) { #prodInfor_style_04_1745291691452 .buyTProSet {font-size:16px;}} @media screen and (max-width:640px) { #prodInfor_style_04_1745291691452 .titProSet {font-size:20px;line-height:30px;padding-bottom:10px;}} @media screen and (max-width:640px) { #prodInfor_style_04_1745291691452 .defProSet {margin-top:5px;margin-bottom:5px;}} #layout_1745291606119{height:420px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1745291606119{height:360px;}}   @media screen and (max-width:640px) {#layout_1745291606119{height:570px;}} #layout_1745291606119 > .view_contents{overflow:visible;max-width:1200px;} 


 #text_style_01_1745292558740{width:99.75%;font-size:16px;color:#333;line-height:1.75;font-family:Microsoft YaHei,微软雅黑;position:absolute;top:50px;left:0.2500012715657552%;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_style_01_1745292558740{width:96%;left:2.014846235418876%;}}   @media screen and (max-width:640px) {#text_style_01_1745292558740{width:96%;font-size:12px;color:#333;line-height:2;top:20px;left:2%;}}  #text_style_01_1745292558740>.view_contents {font-size:30px;line-height:40px;border-style:solid;border-width:5px;border-top:none !important;border-right:none !important;border-bottom:none !important;padding-left:8px;border-color:#ef001d;} @media screen and (min-width:641px) and (max-width:1200px) { #text_style_01_1745292558740>.view_contents {font-size:26px;line-height:30px;}} @media screen and (max-width:640px) { #text_style_01_1745292558740>.view_contents {font-size:22px;line-height:24px;}} #layout_1745292558739{height:90px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1745292558739{height:80px;}}   @media screen and (max-width:640px) {#layout_1745292558739{height:44px;}} #layout_1745292558739 > .view_contents{overflow:visible;max-width:1200px;} 


 #customDetail_style_prodDetail_01_1745292331470{width:100%;position:absolute;top:40px;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#customDetail_style_prodDetail_01_1745292331470{width:96%;left:2%;top:35px;}}   @media screen and (max-width:640px) {#customDetail_style_prodDetail_01_1745292331470{width:96%;top:10px;left:2%;}}  #customDetail_style_prodDetail_01_1745292331470 .bgareaSet {background:#f7f7f7;padding-top:15px;padding-bottom:15px;padding-left:15px;padding-right:15px;} @media screen and (max-width:640px) { #customDetail_style_prodDetail_01_1745292331470 .bgareaSet {padding-top:5px;padding-bottom:5px;padding-left:5px;padding-right:5px;}} #layout_1745292321194{height:101px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1745292321194{height:115px;}}   @media screen and (max-width:640px) {#layout_1745292321194{height:80px;}} #layout_1745292321194 > .view_contents{overflow:visible;max-width:1200px;} 


 #prodKind_style_16_1766028910448{width:100%;position:absolute;top:31.539810180664062px;left:0%;}   @media screen and (min-width:641px) and (max-width:1200px) {#prodKind_style_16_1766028910448{}}   @media screen and (max-width:640px) {#prodKind_style_16_1766028910448{width:96%;position:absolute;top:0px;left:2%;}} #prodKind_style_16_1766028910448 > .view_contents{overflow:visible;}  #prodKind_style_16_1766028910448 .modSet {padding-top:0px;padding-bottom:0px;padding-right:0px;padding-left:0px;border-style:none;margin-bottom:8px;} #prodKind_style_16_1766028910448 .textSet {padding-top:0px;line-height:40px;border-style:none;border-width:0px;border-color:transparent;background:#f2f2f2;} #prodKind_style_16_1766028910448 .textSet:hover {background:#819e88;color:#ffffff;border-color:#005fbf;font-family:Arial;} #prodKind_style_16_1766028910448 .selectedmodSet .textSet {background:#819e88;color:#ffffff;border-color:#005fbf;font-family:Arial;} #prodKind_style_16_1766028910448 .modSet:hover {background:#819e88;} #prodKind_style_16_1766028910448 .modSet.selectedmodSet {background:#819e88;} #prodKind_style_16_1766028910448 .modSet:hover .imgSet {background:#819e88;} #prodKind_style_16_1766028910448 .selectedmodSet .imgSet {background:#819e88;} @media screen and (min-width:641px) and (max-width:1200px) { #prodKind_style_16_1766028910448 .modSet {margin-bottom:10px;margin-top:0px;}} @media screen and (max-width:640px) { #prodKind_style_16_1766028910448 .textSet {font-size:14px;}} #layout_1766028805401{height:127.53411865234375px;}   @media screen and (min-width:641px) and (max-width:1200px) {#layout_1766028805401{}}   @media screen and (max-width:640px) {#layout_1766028805401{}} #layout_1766028805401 > .view_contents{overflow:visible;max-width:1200px;} 


 #text_html_new_1768031580287{width:100%;height:381px;position:absolute;top:32px;left:0.00757598876953125%;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_html_new_1768031580287{width:946px;left:0%;top:29.9886474609375px;height:386px;}}   @media screen and (max-width:640px) {#text_html_new_1768031580287{width:100%;height:667px;top:25px;left:0%;}} 
/*----------------------通用样式----------------------*/
#text_html_new_1768031580287 * { box-sizing: border-box; }

#text_html_new_1768031580287 .custom-footer-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    font-family: Arial, sans-serif;
    color: #fff;
}

/* 链接全局重置：强制白色 */
#text_html_new_1768031580287 a { 
    text-decoration: none; 
    color: #ffffff !important; 
    transition: all 0.3s; 
}
#text_html_new_1768031580287 a:hover { 
    color: #d4a768 !important; /* 悬停金色 */ 
}

/* 主容器 */
#text_html_new_1768031580287 .footer-main-content {
    border-bottom: 1px solid rgba(255,255,255,0.2);
    padding-bottom: 30px;
    margin-bottom: 20px;
}

/* 上部三列区域 */
#text_html_new_1768031580287 .footer-top-columns {
    display: flex;
    justify-content: flex-start; /* 紧凑排列 */
    flex-wrap: wrap; 
    /* ★ 修改：PC端去掉gap，完全靠宽度比例控制 */
    gap: 0; 
    margin-bottom: 30px;
}

/* 标题样式 */
#text_html_new_1768031580287 .f-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 25px;
    color: #fff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    border-left: 3px solid #d4a768;
    padding-left: 10px;
    line-height: 1.2;
}

/* =========================================
   1. 左侧：导航栏 (Quick Links) - 25%
   ========================================= */
#text_html_new_1768031580287 .footer-nav { 
    width: 25%; /* ★ 1:2:1 的 1 */
    padding-right: 20px; /* 防止文字贴到中间栏 */
} 
#text_html_new_1768031580287 .footer-nav ul { 
    padding: 0 0 0 18px; 
    margin: 0; 
}
#text_html_new_1768031580287 .footer-nav li { 
    margin-bottom: 12px;
    list-style-type: disc; 
    color: #ffffff; 
}
#text_html_new_1768031580287 .footer-nav a { 
    font-size: 14px; 
    opacity: 0.9;
    text-decoration: underline; 
    text-underline-offset: 3px; 
}

/* =========================================
   2. 中间：联系方式 (Contact Info) - 50%
   ========================================= */
#text_html_new_1768031580287 .footer-contact { 
    width: 50%; /* ★ 1:2:1 的 2 */
    padding-right: 20px; /* 右侧留空 */
} 

#text_html_new_1768031580287 .contact-item {
    display: flex; align-items: flex-start;
    margin-bottom: 15px;
}
#text_html_new_1768031580287 .c-icon {
    width: 20px; height: 20px;
    margin-right: 12px; margin-top: 2px; flex-shrink: 0;
}
#text_html_new_1768031580287 .c-icon img { 
    width: 100%; height: 100%; object-fit: contain; 
    filter: brightness(0) invert(1); 
}
#text_html_new_1768031580287 .c-info { font-size: 14px; line-height: 1.6; opacity: 0.95; }
#text_html_new_1768031580287 .links-group { display: inline-block; }
#text_html_new_1768031580287 .sep { margin: 0 5px; opacity: 0.5; font-size: 12px; }
#text_html_new_1768031580287 .contact-item a { text-decoration: none !important; }

/* =========================================
   3. 右侧：二维码 (Connect With Us) - 25%
   ========================================= */
#text_html_new_1768031580287 .footer-qr { 
    width: 25%; /* ★ 1:2:1 的 1 */
} 
#text_html_new_1768031580287 .qr-container { 
    display: flex; 
    gap: 30px; /* ★ 修改：二维码间距改为 30px */
}
#text_html_new_1768031580287 .qr-box { text-align: center; }
#text_html_new_1768031580287 .qr-img {
    width: 100px; height: 100px;
    background: #fff; padding: 5px;
    border-radius: 4px; margin-bottom: 8px;
}
#text_html_new_1768031580287 .qr-img img { width: 100%; height: 100%; object-fit: contain; }
#text_html_new_1768031580287 .qr-box span { display: block; font-size: 12px; opacity: 0.8; }


/* =========================================
   4. 友情链接区域
   ========================================= */
#text_html_new_1768031580287 .footer-links-section {
    border-top: 1px dashed rgba(255,255,255,0.1);
    padding-top: 15px;
    font-size: 13px; opacity: 0.9;
    display: flex;
    align-items: center; 
    flex-wrap: wrap; 
}
#text_html_new_1768031580287 .link-label { 
    margin-right: 15px; font-weight: bold; flex-shrink: 0; 
}
#text_html_new_1768031580287 .link-list-container {
    display: flex; flex-wrap: wrap; gap: 20px; 
}
#text_html_new_1768031580287 .link-list-container a {
    text-decoration: underline; text-underline-offset: 3px; position: relative;
}
#text_html_new_1768031580287 .link-list-container a:not(:last-child)::after {
    content: "|"; position: absolute; right: -12px; top: 0;
    color: rgba(255,255,255,0.4); text-decoration: none; pointer-events: none;
}


/* =========================================
   5. 底部版权
   ========================================= */
#text_html_new_1768031580287 .footer-copyright {
    text-align: center; font-size: 12px; opacity: 0.7; line-height: 1.6;
}
#text_html_new_1768031580287 .footer-copyright .slogan {
    font-size: 13px; font-weight: 500; color: #d4a768; margin-top: 5px;
}


/*----------------------平板样式 (641px - 1024px)----------------------*/
@media screen and (min-width: 641px) and (max-width: 1024px) {
    #text_html_new_1768031580287 .footer-top-columns {
        gap: 0; 
        justify-content: flex-start;
    }

    /* 保持 1:2:1 比例 */
    #text_html_new_1768031580287 .footer-nav { 
        width: 25%; 
        padding-right: 10px;
    }
    #text_html_new_1768031580287 .footer-contact { 
        width: 50%; 
        padding: 0 15px; 
    }
    #text_html_new_1768031580287 .footer-qr { 
        width: 25%; 
        padding-left: 10px;
    }
    
    #text_html_new_1768031580287 .qr-img { width: 80px; height: 80px; }
}


/*----------------------手机样式 (小于640px)----------------------*/
@media screen and (max-width: 640px) {
    #text_html_new_1768031580287 .footer-top-columns {
        flex-direction: column;
        gap: 20px; 
        margin-bottom: 20px;
    }
    
    #text_html_new_1768031580287 .footer-nav, 
    #text_html_new_1768031580287 .footer-contact, 
    #text_html_new_1768031580287 .footer-qr {
        width: 100%; padding: 0; 
    }

    #text_html_new_1768031580287 .f-title { font-size: 14px; margin-bottom: 12px; }

    /* Quick Links 双列 */
    #text_html_new_1768031580287 .footer-nav ul {
        display: grid; grid-template-columns: 1fr 1fr;
        gap: 8px 10px; padding-left: 18px; 
    }
    #text_html_new_1768031580287 .footer-nav li { margin-bottom: 0; }

    #text_html_new_1768031580287 .c-icon { width: 16px; height: 16px; margin-right: 8px; margin-top: 3px; }
    #text_html_new_1768031580287 .c-info { font-size: 12px; line-height: 1.5; }

    /* 二维码居中 + 间距30px */
    #text_html_new_1768031580287 .qr-container { 
        justify-content: center; 
        gap: 30px; 
    } 
    #text_html_new_1768031580287 .qr-img { width: 90px; height: 90px; margin: 0 auto 8px auto; }

    /* 友情链接居中 */
    #text_html_new_1768031580287 .footer-links-section {
        flex-direction: column; align-items: center; text-align: center; gap: 10px;
    }
    #text_html_new_1768031580287 .link-label { margin: 0; margin-bottom: 5px; }
    
    #text_html_new_1768031580287 .link-list-container {
        display: grid; grid-template-columns: 1fr 1fr; 
        gap: 10px 20px; justify-content: center; width: 100%;
    }
    #text_html_new_1768031580287 .link-list-container a { display: block; font-size: 12px; }
    #text_html_new_1768031580287 .link-list-container a::after { display: none; }
}

 #text_html_new_1768035515160{width:33.33333333333333%;height:68px;position:absolute;top:232.9317626953125px;left:66.6742426554362%;}   @media screen and (min-width:641px) and (max-width:1200px) {#text_html_new_1768035515160{}}   @media screen and (max-width:640px) {#text_html_new_1768035515160{width:100%;height:300px;top:0px;left:0%;}} 
/*---------------------- 侧边栏样式 (大字版) ----------------------*/
#text_html_new_1768035515160 .deva-sidebar-container {
    position: fixed;
    right: 10px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 8px; 
}

/* 按钮项 */
#text_html_new_1768035515160 .sb-item {
    position: relative;
    width: 60px;
    height: 60px;
    background-color: #819e88; 
    border-radius: 6px;
    cursor: pointer;
    
    display: flex;
    flex-direction: column; 
    align-items: center;
    justify-content: center; /* 垂直居中 */
    
    box-shadow: 0 4px 10px rgba(0,0,0,0.15);
    transition: all 0.3s;
    text-decoration: none;
    /* 去掉了 padding，完全靠 justify-content: center 和内部间距控制 */
}

#text_html_new_1768035515160 .sb-item:hover {
    background-color: #d4a768; 
    transform: translateX(-5px);
}

/* 图标 SVG */
#text_html_new_1768035515160 .sb-icon {
    width: 24px; /* ★ 增大图标至 24px */
    height: 24px;
    display: flex;
    margin-bottom: 4px; /* ★ 增加间距：图标和文字分开 */
}
#text_html_new_1768035515160 .sb-icon svg {
    width: 100%; height: 100%;
}

/* 文字样式 */
#text_html_new_1768035515160 .sb-text {
    font-size: 12px; /* ★ 增大字号至 12px */
    color: #fff;
    line-height: 1; /* 紧凑行高 */
    text-align: center;
    font-family: Arial, sans-serif;
    font-weight: 500;
}

/* ---------------- 弹出层 ---------------- */
#text_html_new_1768035515160 .sb-popup {
    position: absolute;
    right: 70px;
    top: 0;
    background: #fff;
    padding: 10px;
    border-radius: 4px;
    box-shadow: 0 5px 20px rgba(0,0,0,0.1);
    
    opacity: 0;
    visibility: hidden;
    transform: translateX(20px);
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    white-space: nowrap;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border: 1px solid #eee;
}

#text_html_new_1768035515160 .sb-item:hover .sb-popup {
    opacity: 1;
    visibility: visible;
    transform: translateX(0);
}

/* 二维码层 */
#text_html_new_1768035515160 .qr-popup .img-box {
    width: 120px; height: 120px; margin-bottom: 5px;
}
#text_html_new_1768035515160 .qr-popup img {
    width: 100%; height: 100%; object-fit: contain;
}
#text_html_new_1768035515160 .qr-popup span {
    font-size: 12px; color: #666; font-weight: bold;
}

/* 文字层 */
#text_html_new_1768035515160 .text-popup {
    top: 50%;
    transform: translate(20px, -50%);
    padding: 10px 15px;
}
#text_html_new_1768035515160 .sb-item:hover .text-popup {
    transform: translate(0, -50%);
}

#text_html_new_1768035515160 .text-popup .label {
    font-size: 12px; color: #999; margin-bottom: 2px; display: block; text-align: left; width: 100%;
}
#text_html_new_1768035515160 .text-popup .val {
    font-size: 14px; color: #333; font-weight: bold; font-family: Arial, sans-serif;
}

/*---------------------- 手机端处理 ----------------------*/
@media screen and (max-width: 640px) {
    #text_html_new_1768035515160 .sb-item { display: none; }
    
    #text_html_new_1768035515160 .sb-top {
        display: flex;
        position: fixed;
        bottom: 80px;
        right: 15px;
        z-index: 9999;
        opacity: 0.9;
        width: 50px; height: 50px; 
    }
    /* 手机端 Top 字号稍微小一点 */
    #text_html_new_1768035515160 .sb-top .sb-text { font-size: 10px; }
    #text_html_new_1768035515160 .sb-top .sb-icon { width: 20px; height: 20px; margin-bottom: 2px; }
} #comm_layout_footer{height:420px;z-index:99999;}   @media screen and (min-width:641px) and (max-width:1200px) {#comm_layout_footer{height:415.9886474609375px;}}   @media screen and (max-width:640px) {#comm_layout_footer{height:692px;}} #comm_layout_footer > .view_contents{max-width:1200px;overflow:visible;}  #comm_layout_footer  {background:#819e88;}
/*----------------------电脑板式样式----------------------*/
#comm_layout_footer{
	
}
/*----------------------平板板式样式----------------------*/
@media screen and (min-width:641px) and (max-width:1200px) {
	#comm_layout_footer{
		
	}
}
/*----------------------手机板式样式----------------------*/
@media screen and (max-width:640px) {
	#comm_layout_footer{
		
	}
}
.prodetail_1_cd{font-size:14px; color:#555; line-height:1.4; text-align:left; padding:.4em 0; width:100%;}
.prodetail_1_cd img{max-width: 100%;}
.prodetail_1_cd video{background:#eee;}

.prodetailstyle_1 video{ background:#eee; }
.prodetailstyle_1 .mobile{ display:none; }
.prodetailstyle_1 .pc{ display:block; }
.prodetailstyle_1 .collage_bt{ font-size:20px; line-height:3; }
.prodetailstyle_1 .itembox{ background:#eee; padding:10px 20px; border-bottom:1px solid #e5e5e5; overflow:hidden; font-size:16px; display:flex; justify-content: space-between; flex-wrap: wrap;}
.prodetailstyle_1 .user_img{ width:50px; height:50px; border-radius:200px; overflow:hidden; }
.prodetailstyle_1 .user_img img{ width:100% !important; height:100%; margin:0 !important;}
.prodetailstyle_1 .itembox>div{ line-height:50px; margin:0 5px;}
.prodetailstyle_1 .initiator_name.pc{ width:100px; text-align:center; }
.prodetailstyle_1 .join_list_ul{ overflow:hidden; }
.prodetailstyle_1 .join_list_ul li{float:left; box-sizing: border-box; -webkit-box-sizing: border-box; margin:0 5px;}
.prodetailstyle_1 .surplus_value{ color:red; }
.prodetailstyle_1 .join_btn{ background:rgb(239,91,81); margin:13px 0; color:white; line-height:1; border-radius: 20px; padding:4px 20px; box-sizing: border-box; -webkit-box-sizing: border-box;}
.prodetailstyle_1 .join_btn:hover{ cursor:pointer; }

.proListShow{ box-sizing: border-box; margin-top: 30px;}
.proListShow h2{ display: block; border-left: 4px solid #e85342; font-size: 18px; line-height: 1; padding: 0 10px; box-sizing: border-box; margin-bottom: 20px;}
.proListShow .listUl{ border: 1px solid #f5f5f5; padding: 10px; display: flex; justify-content: space-between; flex-wrap: wrap; box-sizing: border-box;}
.proListShow .listLi{ width: calc(96%/4);}
.proListShow .listLi .imgDiv{  position: relative; padding-bottom: 100%; overflow: hidden;}
.proListShow .imgDiv img{ transition: transform .3s; width: 100%; position: absolute; left: 50%; top: 0; transform: translateX(-50%); -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -o-transform: translateX(-50%);}
.proListShow .titleDiv{ text-align: center; color: #333; font-size: 16px; line-height: 1.5; margin-top: 10px;}

.prodetail_1_cd .selectTdClass{background-color:#edf5fa !important}
.prodetail_1_cd table.noBorderTable td,
.prodetail_1_cd table.noBorderTable th,
.prodetail_1_cd table.noBorderTable caption{border:1px dashed #ddd !important}
.prodetail_1_cd table{margin-bottom:10px;border-collapse:collapse;display:table;}
.prodetail_1_cd td,.proListShow th{padding: 5px 10px;border: 1px solid #DDD;}
.prodetail_1_cd caption{border:1px dashed #DDD;border-bottom:0;padding:3px;text-align:center;}
.prodetail_1_cd th{border-top:1px solid #BBB;background-color:#F7F7F7;}
.prodetail_1_cd table tr.firstRow th{border-top-width:2px;}
.prodetail_1_cd .ue-table-interlace-color-single{ background-color: #fcfcfc; } 
.prodetail_1_cd .ue-table-interlace-color-double{ background-color: #f7faff; }
.prodetail_1_cd td p{margin:0;padding:0;}
.prodetail_1_cd p{margin:5px 0;}
.prodetail_1_cd .closemargin{margin:0!important;}
.prodetail_1_cd p img{vertical-align: bottom;}
.list-paddingleft-2{padding-left: 30px;}
.list-paddingleft-2 li{list-style-type: inherit;font-size: 16px;}
@media screen and (min-width:641px){
	.proListShow .listLi:hover .imgDiv img{ transform: translateX(-50%) scale(1.1); -webkit-transform: translateX(-50%) scale(1.1); -moz-transform: translateX(-50%) scale(1.1); -o-transform: translateX(-50%) scale(1.1);}
}
@media screen and (max-width:640px){
	.prodetailstyle_1 .collage_bt{ font-size:14px; }
	.prodetailstyle_1 .itembox .more_img{ margin-right:10px; }
	.prodetailstyle_1 .user_img{ width:30px; height:30px; }
	.prodetailstyle_1 .empty_img{ width:30px; height:30px; margin-left:-20px; border:1px dotted #e5e5e5; background:white; border-radius:200px; float:right;}
	.prodetailstyle_1 .more_img .hav_img{ float:left; }
	.prodetailstyle_1 .itembox{ font-size:12px; padding:10px; display:block;}
	.prodetailstyle_1 .itembox>div{ line-height:30px; margin:0; float:left; position:relative;}
	.prodetailstyle_1 .itembox .join_button{ float:right; margin:5px 0;}
	.prodetailstyle_1 .join_btn{ padding:0 20px; line-height:2; margin:0; line-height:unset;}
	.prodetailstyle_1 .pc{ display:none; }
	.prodetailstyle_1 .mobile{ display:block; }
	.prodetailstyle_1 .initiator_name.mobile>span{ line-height:1.5; display:block; }

	.proListShow h2{ font-size: 16px;}
	.proListShow .listLi{ width: calc( 96%/2 ); margin-bottom: 15px;}
	.proListShow .titleDiv{ font-size: 14px;}
}
@media screen and (max-width:767px){
.prodetail_1_cd{font-size:12px; }
.prodetail_1_cd img{max-width:100% !important; height:auto !important;}
.prodetail_1_cd table{display: inline-block;overflow-x: scroll;}
}


.prodcateStyle_16{clear: both; width: 100%;overflow: hidden;}
.prodcateStyle_16 *{transition: all ease-out .2s; -webkit-transition: all ease-out .2s; -moz-transition: all ease-out .2s; -moz-transition: all ease-out .2s; -o-transition: all ease-out .2s; box-sizing: border-box;}
.prodcateStyle_16>ul>li>a, .prodcateStyle_5 .subCateUl>ul>li>a, .prodcateStyle_5 .subCateUl2>li>a{color: inherit; line-height: inherit; height: inherit; white-space: nowrap;}
.prodcateStyle_16 i{margin-left: 5px;}
.prodcateStyle_16>ul{width: 100%;background:#fff;overflow: hidden;display: flex;flex-wrap: wrap;justify-content: space-between;}
.prodcateStyle_16>ul>li{float: left;font-size: 14px;color: #555;font-family: '宋体';text-align: center;width: 16.66666667%;}
.prodcateStyle_16 .bor{padding: 15px;border: 1px solid #f1f1f1;}
.prodcateStyle_16 .kindTitle{padding-top: 8px;white-space: normal;}
.prodcateStyle_16 .kindImg{width: 100%;margin:0 auto;overflow: hidden;position: relative;left: 0;top: 0;right: 0;bottom: 0;}
.prodcateStyle_16 .kindImg img{width: 100%;height:100%;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);-webkit-transform: translate(-50%,-50%);}
.prodcateStyle_16 .dummy{margin-top: 100%;}

            body, li, ul, ol, dl, dt, dd, form, input, textarea, h1, h2, h3, h4, h5, h6, p, select{ font-family: Arial; }
    	body{-ms-text-size-adjust: 100% !important;-webkit-text-size-adjust: 100% !important;text-size-adjust: 100% !important;}
.logoStyle *{box-sizing: border-box;}
.logoStyle { height:100%; width:100%; overflow: hidden; box-sizing: border-box;}
.logoStyle>a{overflow: hidden; width: 100%;height: 100%; display: block;}
.logoName{white-space: nowrap;}
.imgStyle{font-size:0;}
#image_style_01_1762847178245 .CompatibleImg img{width:100%; height:auto}@media screen and (min-width:641px) and (max-width:1200px) {#image_style_01_1762847178245 .CompatibleImg img{width:100%; height:auto; margin-left:0px}}@media screen and (max-width:640px) {#image_style_01_1762847178245 .CompatibleImg img{width:100%; height:auto; margin-left:0px}}	#image_style_01_1762847178245 a{
		cursor: default;
	}
	.imgStyle { height:100%; width:100%; overflow: hidden; box-sizing: border-box;}
	.imgStyle>a{overflow: hidden; width: 100%; height: 100%;}
	.imgStyle img{box-sizing: border-box;}
	@media screen and (max-width:1200px) {
			}
	@media screen and (max-width:767px) {
			}

					@media screen and (min-width:1201px) {
				#image_style_01_1762847178245{height:auto;}
			}
							h1{font-size: 2em;font-weight:bold;} h2{font-size: 1.5em;font-weight:bold;} h3{font-size: 1.17em;font-weight:bold;} h4{font-weight:bold;} body, dl, dt, dd, form, input, textarea, h1, h2, h3, h4, h5, h6, p, select{margin: 0px;padding: 0px;list-style-type: none;font-size: 12px;font: 12px/1.5 tahoma,arial,"Microsoft YaHei";outline: 0 none;color: #333;} td, th{padding: 5px 10px;border: 1px solid #DDD;} table{border-collapse: collapse;} .list-paddingleft-2{padding-left: 30px;} .list-paddingleft-3{padding-left: 60px;} body.view{height:auto!important;} .tableviewcontent{overflow-x: auto;} @media screen and (max-width:640px){ .tableviewcontent{overflow-x: auto;scrollbar-width: none;} .tableviewcontent::-webkit-scrollbar{display: none;} } h1{font-size: 2em;font-weight:bold;} h2{font-size: 1.5em;font-weight:bold;} h3{font-size: 1.17em;font-weight:bold;} h4{font-weight:bold;} body, dl, dt, dd, form, input, textarea, h1, h2, h3, h4, h5, h6, p, select{margin: 0px;padding: 0px;list-style-type: none;font-size: 12px;font: 12px/1.5 tahoma,arial,"Microsoft YaHei";outline: 0 none;color: #333;} td, th{padding: 5px 10px;border: 1px solid #DDD;} table{border-collapse: collapse;} .list-paddingleft-2{padding-left: 30px;} .list-paddingleft-3{padding-left: 60px;} body.view{height:auto!important;} .tableviewcontent{overflow-x: auto;} @media screen and (max-width:640px){ .tableviewcontent{overflow-x: auto;scrollbar-width: none;} .tableviewcontent::-webkit-scrollbar{display: none;} } h1{font-size: 2em;font-weight:bold;} h2{font-size: 1.5em;font-weight:bold;} h3{font-size: 1.17em;font-weight:bold;} h4{font-weight:bold;} body, dl, dt, dd, form, input, textarea, h1, h2, h3, h4, h5, h6, p, select{margin: 0px;padding: 0px;list-style-type: none;font-size: 12px;font: 12px/1.5 tahoma,arial,"Microsoft YaHei";outline: 0 none;color: #333;} td, th{padding: 5px 10px;border: 1px solid #DDD;} table{border-collapse: collapse;} .list-paddingleft-2{padding-left: 30px;} .list-paddingleft-3{padding-left: 60px;} body.view{height:auto!important;} .tableviewcontent{overflow-x: auto;} @media screen and (max-width:640px){ .tableviewcontent{overflow-x: auto;scrollbar-width: none;} .tableviewcontent::-webkit-scrollbar{display: none;} } /*banner样式*/
.bannerStyle_1{width:100%; height:100%; position:relative;box-sizing: border-box;overflow: hidden;}
.bannerStyle_1 .main_visual{height:100%; overflow:hidden; position:relative; }
.bannerStyle_1 .main_image{height:100%; overflow:hidden; position:relative; }
.bannerStyle_1 .main_image ul{width:100%; height:100%; overflow:hidden; position:absolute; top:0; left:0}
.bannerStyle_1 .main_image li{float:left; width:100%; height:100%; overflow: hidden; box-sizing: border-box;}
.bannerStyle_1 .main_image li span{display:block; width:100%; height:100%; background-size:cover !important;background-position: 50% 50%!important;}
.bannerStyle_1 .main_image li a{display:block; width:100%; height:100%}
.bannerStyle_1 .main_image li .img_1{background:url(../img/prodPic/style_01/img.jpg) center top no-repeat}
.bannerStyle_1 .main_image li .img_2{background:url(../img/prodPic/style_01/img.jpg) center top no-repeat}
.bannerStyle_1 .main_image li .img_3{background:url(../img/prodPic/style_01/img.jpg) center top no-repeat}
.bannerStyle_1 .main_image li .img_4{background:url(../img/prodPic/style_01/img.jpg) center top no-repeat}


.bannerStyle_1 div.flicking_con{position:absolute; bottom:20px; left:0; z-index:999; width:100%; height:14px; text-align:center; }
.bannerStyle_1 div.flicking_con a{width:14px; height:14px; padding:0; background:#ccc; display:inline-block; box-sizing:border-box; margin:0 3px; border-radius:100%; }
.bannerStyle_1 div.flicking_con a.on{background:none; border:1px solid #149DEC;}
.bannerStyle_1 #btn_prev,.bannerStyle_1 #btn_next{z-index:11111; position:absolute; display:block; width:73px!important; height:74px!important; top:50%; margin-top:-37px; display:none; }
.bannerStyle_1 #btn_prev{background:url(../img/prodPic/style_01/hover_left.png) no-repeat left top; left:20px; }
.bannerStyle_1 #btn_next{background:url(../img/prodPic/style_01/hover_right.png) no-repeat right top; right:20px; }.proInfoStyle04{position: relative;overflow: hidden;font-family: Arial;}
.proInfoStyle04 .proInfo_title .prodName{margin:0;color: #000;font-size: 32px;font-weight: normal;border-bottom: 1px solid #dbdbdb;line-height:1.4;padding: 15px 0;}
.proInfoStyle04 .proInfo_title .proBrief{color: #333;font-size: 16px;margin: 15px 0;white-space: pre-wrap;}
.proInfoStyle04 .proInfo_parameter p,.proInfoStyle04 .proInfo_prop p{color: #222;font-size: 16px;line-height:35px;}
.proInfoStyle04 .probuy{
    /* padding:35px 0 10px 0;
    margin-top: 15px; */
    clear: both;}
.proInfoStyle04 .probuy .Consultation{
    border: 0;
    background: transparent;
    border-radius:4px;
    font-size: 20px;
    font-family: Arial;
    cursor: pointer;}
.proInfoStyle04 .probuy .btn1{
    width:40%;
    line-height:50px;
    margin: 50px 0 10px;
    background: #ef001d;
    color:#fff;}
.proInfoStyle04 .probuy .btn2{width: 30%;line-height: 50px;border: 1px solid #ef001d;color: #ef001d;}
.proInfoStyle04 .other-link ul{width: 100%;}
.proInfoStyle04 .other-link ul li{float: left;margin-right: 10px;line-height: 35px;cursor: pointer;}
.proInfoStyle04 .other-link ul li:nth-of-type(1) i{background: url(../img/prodInfor/style_04/scBg.png) no-repeat center;background-size: 100%;padding:8px;margin-right: 10px;}
.proInfoStyle04 .other-link ul li:nth-of-type(2) i{background: url(../img/prodInfor/style_04/shareBg.png) no-repeat center;background-size: 100%;padding:10px;margin-right: 10px;}
.proInfoStyle04 .proInfo_prop .prop.insidediv.sys_item_specpara{width: 100%;overflow: hidden;}
.proInfoStyle04 .proInfo_prop .prop_Ttile{float: left;height: 40px;line-height: 40px;margin-right: 10px;color: #888;}
.proInfoStyle04 .proInfo_prop .sys_spec_text{width:75%;float: left;}
.proInfoStyle04 .proInfo_prop .sys_spec_text li{float: left;padding: 0 2%;height: 40px;line-height: 40px;}
.proInfoStyle04 .proInfo_prop .colorimg li span{display: block;width: 20px;height: 15px;margin-top: 12.5px;border: 1px solid #eee;}
.proInfoStyle04 .proInfo_prop .colorimg li span:hover{display: block;width: 20px;height: 15px;margin-top: 12.5px;border: 1px solid red;}
.proInfoStyle04 .proInfo_prop .prop li.selected a span{color: #F40;border: 1px solid #F40;padding: 3px;}

@media screen and  (max-width: 481px){
    .proInfoStyle04 .proInfo_title .prodName{font-size: 18px;}
    .proInfoStyle04 .proInfo_title .proBrief{font-size: 14px;}
    .proInfoStyle04 .probuy .btn1{width: 100%;line-height: 40px;font-size: 16px;}
    .proInfoStyle04{padding: 10px;}
}
				#prodInfor_style_04_1745291691452 .proInfoStyle04 .probuy .btn1{width: 35%;}
		@media screen and (min-width:641px) and (max-width:1200px) {
						#prodInfor_style_04_1745291691452 .proInfoStyle04 .probuy .btn1{width: 35%;}
		}
		@media screen and (max-width:640px) {
						#prodInfor_style_04_1745291691452 .proInfoStyle04 .probuy .btn1{width: 100%;}
		}
	
.prodetail_1_cd{font-size:14px; color:#555; line-height:1.4; text-align:left; padding:.4em 0; width:100%;}
.prodetail_1_cd img{max-width: 100%;}
.prodetail_1_cd video{background:#eee;}

.prodetailstyle_1 video{ background:#eee; }
.prodetailstyle_1 .mobile{ display:none; }
.prodetailstyle_1 .pc{ display:block; }
.prodetailstyle_1 .collage_bt{ font-size:20px; line-height:3; }
.prodetailstyle_1 .itembox{ background:#eee; padding:10px 20px; border-bottom:1px solid #e5e5e5; overflow:hidden; font-size:16px; display:flex; justify-content: space-between; flex-wrap: wrap;}
.prodetailstyle_1 .user_img{ width:50px; height:50px; border-radius:200px; overflow:hidden; }
.prodetailstyle_1 .user_img img{ width:100% !important; height:100%; margin:0 !important;}
.prodetailstyle_1 .itembox>div{ line-height:50px; margin:0 5px;}
.prodetailstyle_1 .initiator_name.pc{ width:100px; text-align:center; }
.prodetailstyle_1 .join_list_ul{ overflow:hidden; }
.prodetailstyle_1 .join_list_ul li{float:left; box-sizing: border-box; -webkit-box-sizing: border-box; margin:0 5px;}
.prodetailstyle_1 .surplus_value{ color:red; }
.prodetailstyle_1 .join_btn{ background:rgb(239,91,81); margin:13px 0; color:white; line-height:1; border-radius: 20px; padding:4px 20px; box-sizing: border-box; -webkit-box-sizing: border-box;}
.prodetailstyle_1 .join_btn:hover{ cursor:pointer; }

.proListShow{ box-sizing: border-box; margin-top: 30px;}
.proListShow h2{ display: block; border-left: 4px solid #e85342; font-size: 18px; line-height: 1; padding: 0 10px; box-sizing: border-box; margin-bottom: 20px;}
.proListShow .listUl{ border: 1px solid #f5f5f5; padding: 10px; display: flex; justify-content: space-between; flex-wrap: wrap; box-sizing: border-box;}
.proListShow .listLi{ width: calc(96%/4);}
.proListShow .listLi .imgDiv{  position: relative; padding-bottom: 100%; overflow: hidden;}
.proListShow .imgDiv img{ transition: transform .3s; width: 100%; position: absolute; left: 50%; top: 0; transform: translateX(-50%); -webkit-transform: translateX(-50%); -moz-transform: translateX(-50%); -o-transform: translateX(-50%);}
.proListShow .titleDiv{ text-align: center; color: #333; font-size: 16px; line-height: 1.5; margin-top: 10px;}

.prodetail_1_cd .selectTdClass{background-color:#edf5fa !important}
.prodetail_1_cd table.noBorderTable td,
.prodetail_1_cd table.noBorderTable th,
.prodetail_1_cd table.noBorderTable caption{border:1px dashed #ddd !important}
.prodetail_1_cd table{margin-bottom:10px;border-collapse:collapse;display:table;}
.prodetail_1_cd td,.proListShow th{padding: 5px 10px;border: 1px solid #DDD;}
.prodetail_1_cd caption{border:1px dashed #DDD;border-bottom:0;padding:3px;text-align:center;}
.prodetail_1_cd th{border-top:1px solid #BBB;background-color:#F7F7F7;}
.prodetail_1_cd table tr.firstRow th{border-top-width:2px;}
.prodetail_1_cd .ue-table-interlace-color-single{ background-color: #fcfcfc; } 
.prodetail_1_cd .ue-table-interlace-color-double{ background-color: #f7faff; }
.prodetail_1_cd td p{margin:0;padding:0;}
.prodetail_1_cd p{margin:5px 0;}
.prodetail_1_cd .closemargin{margin:0!important;}
.prodetail_1_cd p img{vertical-align: bottom;}
.list-paddingleft-2{padding-left: 30px;}
.list-paddingleft-2 li{list-style-type: inherit;font-size: 16px;}
@media screen and (min-width:641px){
	.proListShow .listLi:hover .imgDiv img{ transform: translateX(-50%) scale(1.1); -webkit-transform: translateX(-50%) scale(1.1); -moz-transform: translateX(-50%) scale(1.1); -o-transform: translateX(-50%) scale(1.1);}
}
@media screen and (max-width:640px){
	.prodetailstyle_1 .collage_bt{ font-size:14px; }
	.prodetailstyle_1 .itembox .more_img{ margin-right:10px; }
	.prodetailstyle_1 .user_img{ width:30px; height:30px; }
	.prodetailstyle_1 .empty_img{ width:30px; height:30px; margin-left:-20px; border:1px dotted #e5e5e5; background:white; border-radius:200px; float:right;}
	.prodetailstyle_1 .more_img .hav_img{ float:left; }
	.prodetailstyle_1 .itembox{ font-size:12px; padding:10px; display:block;}
	.prodetailstyle_1 .itembox>div{ line-height:30px; margin:0; float:left; position:relative;}
	.prodetailstyle_1 .itembox .join_button{ float:right; margin:5px 0;}
	.prodetailstyle_1 .join_btn{ padding:0 20px; line-height:2; margin:0; line-height:unset;}
	.prodetailstyle_1 .pc{ display:none; }
	.prodetailstyle_1 .mobile{ display:block; }
	.prodetailstyle_1 .initiator_name.mobile>span{ line-height:1.5; display:block; }

	.proListShow h2{ font-size: 16px;}
	.proListShow .listLi{ width: calc( 96%/2 ); margin-bottom: 15px;}
	.proListShow .titleDiv{ font-size: 14px;}
}
@media screen and (max-width:767px){
.prodetail_1_cd{font-size:12px; }
.prodetail_1_cd img{max-width:100% !important; height:auto !important;}
.prodetail_1_cd table{display: inline-block;overflow-x: scroll;}
}


#customDetail_style_prodDetail_01_1745292331470{height:auto;}

    /* table滑动动效果 */
    .tableviewcontent{overflow-x: auto;}
    @media screen and (max-width:640px){
        .tableviewcontent{overflow-x: auto;scrollbar-width: none;}
        .tableviewcontent::-webkit-scrollbar{display: none;}
    }
    #customDetail_style_prodDetail_01_1745292331470 .detailContent img{max-width: 100%;}
    #customDetail_style_prodDetail_01_1745292331470 .proParameters img{max-width: 100%;}
        #customDetail_style_prodDetail_01_1745292331470 .view_contents{ display:block !important; }
    #customDetail_style_prodDetail_01_1745292331470 .proParameters{width:100%;overflow: hidden; box-sizing: border-box;display: flex;flex-wrap: wrap; padding: 20px;}
    #customDetail_style_prodDetail_01_1745292331470 .parameItem{width: calc(100%/4);}
    #customDetail_style_prodDetail_01_1745292331470 .proParameters .item .title{float: left;height: 100%;padding: 6px 0;box-sizing: border-box;font-weight: bold;}
    #customDetail_style_prodDetail_01_1745292331470 .proParameters .item .info{padding: 6px 0;box-sizing: border-box;overflow: hidden;word-break:break-all;}
            #customDetail_style_prodDetail_01_1745292331470 .proParameters{border-top: 1px solid #c0c0c0;border-left: 1px solid #c0c0c0;}
        #customDetail_style_prodDetail_01_1745292331470 .proParameters .item{border-bottom: 1px solid #c0c0c0;border-right: 1px solid #c0c0c0;}
        #customDetail_style_prodDetail_01_1745292331470 .proMaterial{padding: 10px;}
    #customDetail_style_prodDetail_01_1745292331470 .proMaterial .item{font-size: 14px;color: #333; box-sizing: border-box;overflow: hidden;padding: 6px 12px;border-bottom: 1px dashed #e5e5e5;}
    #customDetail_style_prodDetail_01_1745292331470 .proMaterial .item:last-child{border-bottom: 0;}
    #customDetail_style_prodDetail_01_1745292331470 .proMaterial .item .title{float: left;padding: 6px 0;width: calc(100% - 74px);}
    #customDetail_style_prodDetail_01_1745292331470 .proMaterial .item .btn{padding: 6px 0;float:right;}
    #customDetail_style_prodDetail_01_1745292331470 .proMaterial .item .btn a{color: #333;text-decoration:underline;}

    #customDetail_style_prodDetail_01_1745292331470 .content_load{text-align: center; padding: 10px; font-size: 12px; color: #666;}
    #customDetail_style_prodDetail_01_1745292331470 .content_load .icon{ margin-right: 5px; vertical-align: middle;}
    #customDetail_style_prodDetail_01_1745292331470 .content_load span{vertical-align: middle;}
    #customDetail_style_prodDetail_01_1745292331470 ol li {list-style-type: inherit;}
    @media screen and (min-width: 1025px){/*only pc*/
            }
    @media screen and (max-width: 1024px) and (min-width: 768px){/*only ipad*/
        #customDetail_style_prodDetail_01_1745292331470 .proParameters .item{width: calc(100%/3);}
            }
    
    @media screen and (max-width:767px){
        #customDetail_style_prodDetail_01_1745292331470 #proDetailContent div,#proDetailContent p,#proDetailContent a,#proDetailContent span { max-width:100% !important; }         #customDetail_style_prodDetail_01_1745292331470 .proMaterial .item .title{padding: 4px 0;width: calc(100% - 64px);}
        #customDetail_style_prodDetail_01_1745292331470 .proMaterial .item{padding: 6px 0;font-size: 12px;}
        #customDetail_style_prodDetail_01_1745292331470 .proParameters .item{width: calc(100%/1);}
        #customDetail_style_prodDetail_01_1745292331470 .proParameters {padding: 10px;}
            }


    #customDetail_style_prodDetail_01_1745292331470 .imgDiv{ padding-bottom: 67%;}

        #customDetail_style_prodDetail_01_1745292331470 .proListShow .listUl{display: none;}
    .prodcateStyle_16{clear: both; width: 100%;overflow: hidden;}
.prodcateStyle_16 *{transition: all ease-out .2s; -webkit-transition: all ease-out .2s; -moz-transition: all ease-out .2s; -moz-transition: all ease-out .2s; -o-transition: all ease-out .2s; box-sizing: border-box;}
.prodcateStyle_16>ul>li>a, .prodcateStyle_5 .subCateUl>ul>li>a, .prodcateStyle_5 .subCateUl2>li>a{color: inherit; line-height: inherit; height: inherit; white-space: nowrap;}
.prodcateStyle_16 i{margin-left: 5px;}
.prodcateStyle_16>ul{width: 100%;background:#fff;overflow: hidden;display: flex;flex-wrap: wrap;justify-content: space-between;}
.prodcateStyle_16>ul>li{float: left;font-size: 14px;color: #555;font-family: Arial;text-align: center;width: 16.66666667%;}
.prodcateStyle_16 .bor{padding: 15px;border: 1px solid #f1f1f1;}
.prodcateStyle_16 .kindTitle{padding-top: 8px;white-space: normal;}
.prodcateStyle_16 .kindImg{width: 100%;margin:0 auto;overflow: hidden;position: relative;left: 0;top: 0;right: 0;bottom: 0;}
.prodcateStyle_16 .kindImg img{width: 100%;height:100%;position: absolute;left: 50%;top: 50%;transform: translate(-50%,-50%);-webkit-transform: translate(-50%,-50%);}
.prodcateStyle_16 .dummy{margin-top: 100%;}
@media screen and (max-width:640px) {
	#prodKind_style_16_1766028910448 li{width: 32%;}
	#prodKind_style_16_1766028910448 .bor{margin-bottom:2%;}
	#prodKind_style_16_1766028910448 .kindImg{height:px;width:px;}
			#prodKind_style_16_1766028910448 .kindImg img{width: unset;}
		}
@media screen and (max-width:1201px) and (min-width:641px) {
	#prodKind_style_16_1766028910448 li{width: 15%;}
	#prodKind_style_16_1766028910448 .bor{margin-bottom:2%;}
	#prodKind_style_16_1766028910448 .kindImg{height:px;width:px;}
			#prodKind_style_16_1766028910448 .kindImg img{width: unset;}
		}
@media screen and (min-width:1202px) {
	#prodKind_style_16_1766028910448 li{width: 19.2%;}
	#prodKind_style_16_1766028910448 .bor{margin-bottom:1%;}
	#prodKind_style_16_1766028910448 .kindImg{height:px;width:px;}
			#prodKind_style_16_1766028910448 .kindImg img{width: unset;}
		}
h1{font-size: 2em;font-weight:bold;} h2{font-size: 1.5em;font-weight:bold;} h3{font-size: 1.17em;font-weight:bold;} h4{font-weight:bold;} body, dl, dt, dd, form, input, textarea, h1, h2, h3, h4, h5, h6, p, select{margin: 0px;padding: 0px;list-style-type: none;font-size: 12px;font: 12px/1.5 tahoma,arial,"Microsoft YaHei";outline: 0 none;color: #333;} td, th{padding: 5px 10px;border: 1px solid #DDD;} table{border-collapse: collapse;} .list-paddingleft-2{padding-left: 30px;} .list-paddingleft-3{padding-left: 60px;} body.view{height:auto!important;} .tableviewcontent{overflow-x: auto;} @media screen and (max-width:640px){ .tableviewcontent{overflow-x: auto;scrollbar-width: none;} .tableviewcontent::-webkit-scrollbar{display: none;} } h1{font-size: 2em;font-weight:bold;} h2{font-size: 1.5em;font-weight:bold;} h3{font-size: 1.17em;font-weight:bold;} h4{font-weight:bold;} body, dl, dt, dd, form, input, textarea, h1, h2, h3, h4, h5, h6, p, select{margin: 0px;padding: 0px;list-style-type: none;font-size: 12px;font: 12px/1.5 tahoma,arial,"Microsoft YaHei";outline: 0 none;color: #333;} td, th{padding: 5px 10px;border: 1px solid #DDD;} table{border-collapse: collapse;} .list-paddingleft-2{padding-left: 30px;} .list-paddingleft-3{padding-left: 60px;} body.view{height:auto!important;} .tableviewcontent{overflow-x: auto;} @media screen and (max-width:640px){ .tableviewcontent{overflow-x: auto;scrollbar-width: none;} .tableviewcontent::-webkit-scrollbar{display: none;} } 
				.bottomMenu{width: 100%; box-sizing:border-box; display: none;position:fixed;bottom:0; z-index:999999;}

				.bottomMenu ul{position: relative; box-sizing: border-box; width: 100%; height: 50px; background-color: #819e88; border-top: 1px solid #ddd; box-shadow: 0 0px 6px rgba(0,0,0,.1); display:-webkit-box;display:-webkit-flex;display:-ms-flexbox;display:flex;-webkit-box-align:center;-webkit-align-items:center;-ms-flex-align:center;align-items:center;}
				.bottomMenu ul li{position:relative; box-sizing: border-box; -webkit-box-flex:1;-webkit-flex:1;-ms-flex:1;flex:1;padding-top:0!important;}
				.bottomMenu ul li a{display: inline-block;width: 100%;height: 100%;}
				.bottomMenu ul li .menuItem{position: relative;}
				.bottomMenu ul li .menuItem.iconTxt{top:5%;}
				.bottomMenu ul li .menuItem.txt{top: 50%;-webkit-transform: translateY(-50%);-o-transform: translateY(-50%);-moz-transform: translateY(-50%);-ms-transform: translateY(-50%);transform: translateY(-50%);}
				.bottomMenu ul li .menuItem.icon{top: 20%;}
				.bottomMenu ul li .menuIco{width: auto; height: 26px; overflow: hidden; margin: 0 auto 4px;padding-top:2px;box-sizing:border-box;}
				.bottomMenu ul li .menuIco img{width: 100%; height: 100%;box-sizing:border-box;object-fit: contain;}
				.bottomMenu ul li .menuName{font-size: 12px; white-space: nowrap; margin: auto; text-align: center; color: #ffffff; line-height: 1;font-family:Arial;}
				.bottomMenu ul li .submenuItems{position: absolute; bottom: 48px; z-index:999999; width: 100%; text-align: center; border: 1px solid #ddd; background-color: #fff; box-shadow: 0 0px 6px rgba(0,0,0,.1);}
				.bottomMenu ul li .submenuItems a{display: block; height: 36px; line-height: 36px; font-size: 12px; color: #333; border-bottom: 1px solid #ddd; }
				@media screen and (max-width:767px) {
					.bottomMenu{display: block;}
					
					body{padding-bottom:50px!important;}
				}
				