/* 全局重置 IE6兼容 */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
ul, ol {
    list-style: none;
}
img {
    border: none;
    max-width: 100%;
    vertical-align: middle;
}
a {
    text-decoration: none;
    color: #333;
    font-size: 12px;
}
h1, h2, h3, h5 {
    font-weight: normal;
}
.clear {
    clear: both;
    display: block;
    height: 0;
    overflow: hidden;
    zoom: 1;
}
.fl {
    float: left;
    zoom: 1;
}
.fr {
    float: right;
    zoom: 1;
}
img {
    border: none;
}
a {
    text-decoration: none;
    font-size: 12px;
    color: #333;
}
ul, li {
    margin: 0;
    padding: 0;
    list-style: none;
    font-size: 12px;
}
h1 {
    margin: 2;
    padding: 2;
    font-size: 32px;
    font-weight:700;
}


h2 {
    margin: 2;
    padding: 2;
    font-size: 26px;
    font-weight:700;
}

h4 {
    margin: 5;
    padding: 10;
    font-size:18px;
    font-weight: 600;
}

body {
    font-family: "Open Sans", sans-serif;
    color: var(--commonWord);
    background-color: var(--theme-color);
    margin: 0;
    padding: 0;
    text-align: center;
    font-size: 12px;
    _background-attachment: fixed; /* IE6滚动bug修复 */
    /*  
    background-image: url('/images/bg.jpg');
    background-repeat: repeat;
    */
}

.btn {
    display: inline-block;
    margin-bottom: 0;
    font-weight: normal;
    text-align: center;
    vertical-align: middle;
    -ms-touch-action: manipulation;
    touch-action: manipulation;
    cursor: pointer;
    background-image: none;
    border: 1px solid transparent;
    border-radius: 20px;
    white-space: nowrap;
    padding: 12px 30px;
    font-size: 14px;
    line-height: 1;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
    user-select: none;
    background-color: var(--commonButton);
    color: var(--commonButtonText);
    text-transform: uppercase;
    font-family: "Poppins", "Open Sans", sans-serif;
}

.lazy-img {
    background: #f8f8f8; /* 灰色占位底色，提升观感 */
    object-fit: cover; /* 现代设备不变形 */
    /* IE6/7 不识别object-fit，自动忽略无影响 */
}

/*--------------------TITLE------------------------*/
.section-title {
    /* 弹性布局，左右图+中间文字自适应留白 */
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 80px; /* 图片与文字间距，数值越小越紧凑，可改成8/12/16 */
    width: 100%;
    margin: 30px 0 20px 0;
    padding: 0 15px; /* 左右预留边距，防止图片贴屏幕边缘 */
    font-family: Arial, Helvetica, sans-serif;
    font-size: 32px;
    font-weight: 700;
    color: #000;
    letter-spacing: 1px;
    text-transform: uppercase;
    /* IE6/7兼容 */
    zoom: 1;
    *display: block;
    position: relative;
    text-align: center;
}

.section-title::before {
    width: 80px;
    height: 8px;
    content: "";
    display: block;
    flex-shrink: 0;
    background-image: url("/jscss/img/devider-left.png");
    background-repeat: no-repeat;
    background-position: center;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    transform: translate(0, -50%);
}

/* 右侧装饰图 b.png */
.section-title::after {
    content: "";
    display: block;
    width: 80px;
    height: 8px;
    flex-shrink: 0;
    background-image: url("/jscss/img/devider-right.png");
    background-repeat: no-repeat;
    background-position: center center;
    background-size: 100% 100%;
}

/* IE6 IE7 兼容兜底 */
@media \0screen\, screen\9 {
    .section-title {
        height: 40px;
        line-height: 40px;
    }
    .section-title::before {
        position: absolute;
        left: 12px;
        top: 50%;
        margin-top: -9px;
    }
    .section-title::after {
        position: absolute;
        right: 12px;
        top: 50%;
        margin-top: -9px;
    }
}

/* 移动端适配，字号不变，图片缩小一点 */
@media screen and (max-width: 768px) {
    .section-title {
        font-size: 18px;
        margin: 20px 0 12px 0;
        gap: 24px; /* 图片与文字间距，数值越小越紧凑，可改成8/12/16 */

        padding: 0 10px;
    }
    .section-title::before,
    .section-title::after {
        width: 80px;
        height: 6px;
    }
}
/*--------------------END OF TITLE------------------------*/

/*--------------------Head Begin------------------------*/
#header {
    width: 100%;
}
.tophead {
    color: #000;
    width: 980px;
    height: 65px;
    font-size: 13px;
    margin: 0 auto;
    background: var(--theme-color);
    position: relative;
    zoom: 1; /* IE6层级 */
}
.logo {
    float: left;
    padding-top: 0px;
}
.topszone {
   /* float: right; */
    margin-left: 350px;

    padding-top: 10px;
    text-align: center;
}
.topadstxt{
 width:100%;
 font-size: 18px;
}


/* 汉堡按钮：不使用flex，纯定位兼容IE6/7/8 */
#mnavh {
    display: none;
    position: absolute;
    top: 10px;
    right: 15px;
    width: 40px;
    height: 40px;
    z-index: 999999;
    cursor: pointer;
    margin: 0;
    padding: 0;
    zoom: 1;
}
.navicon {
    position: absolute;
    top: 17px;
    left: 5px;
    width: 30px;
    height: 5px;
    background: var(--menu-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.navicon:before,
.navicon:after {
    content: "";
    position: absolute;
    left: 0;
    width: 30px;
    height: 5px;
    background: var(--menu-color);
    -webkit-transition: 0.3s;
    transition: 0.3s;
}
.navicon:before {
    top: -10px;
}
.navicon:after {
    top: 10px;
}
/* OPEN -> X */
#mnavh.open .navicon {
    background: transparent;
}
#mnavh.open .navicon:before {
    top: 0;
    -webkit-transform: rotate(45deg);
    transform: rotate(45deg);
}
#mnavh.open .navicon:after {
    top: 0;
    -webkit-transform: rotate(-45deg);
    transform: rotate(-45deg);
}

/* PC导航栏 */
.navzone {
    width: auto;
    position: relative;
    z-index: 9999;
}
.navbar {
    font-size: 14px;
    background-color: var(--menu-bk-color);
}
.navbar ul {
    width: 600px;
    margin: 0 auto;
    height: 50px;
    padding-top: 1px;
    line-height: 50px;
    position: relative;
}
.navbar > ul > li {
    font-size: 14px;
    width: 120px;
    float: left;
    position: relative;
}
.navbar > ul > li > a {
    width: 120px;
    float: left;
    text-align: center;
    color: #000000;
    font-size: 14px;
    display: block;
}
.navbar > ul > li:hover > a {
    color: var(--main-color);
}

/* ========== PC端产品下拉菜单【双列布局核心】 ========== */
.submenu-wrap {
    position: absolute;
    top: 50px;
    left: 0;
    width: 460px;
    height: 300px;
    background: #fff;
    border: 1px solid #eee;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    display: none;
    z-index: 99999;
    padding: 15px;
}
/* IE6/7 hover兼容 */
.navbar > ul > li:hover .submenu-wrap {
    display: block;
}
.sub-col {
    width: 50%;
    float: left;
    padding: 0 8px;
}
.sub-col h4 {
    font-size: 14px;
    color: var(--main-color);
    margin-bottom: 10px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
    text-align: left;
}
.sub-col li {
    line-height: 36px;
    text-align: left;
}
.sub-col li a {
    font-size: 13px;
    padding-left: 4px;
    display: block;
}
.sub-col li a:hover {
    color: var(--main-color);
    padding-left: 8px;
}

/* 移动端侧边全屏遮罩菜单 */
#starlist {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    z-index: 99999;
    display: none;
    zoom: 1;
}
* html #starlist {
    position: absolute;
    top: expression(eval(document.documentElement.scrollTop));
}
#starlist.show {
    display: block;
}
.subNavBox {
    width: 70%;
    max-width: 300px;
    height: 100%;
    background: #fff;
    padding-top: 80px;
    box-sizing: border-box;
    -webkit-transform: translateX(-100%);
    transform: translateX(-100%);
    -webkit-transition: -webkit-transform 0.3s ease;
    transition: transform 0.3s ease;
    overflow-y: auto;
}
#starlist.show .subNavBox {
    -webkit-transform: translateX(0);
    transform: translateX(0);
}
/* IE6/7/8 无动画降级 */
@media \0screen\, screen\9 {
    .subNavBox {
        transform: none;
        -webkit-transform: none;
    }
}
.subNav {
    border-bottom: 1px solid #e5e3da;
    padding: 12px 10px;
    text-align: left;
    font-weight: bold;
    font-size: 18px;
    color: #999;
    cursor: pointer;
    position: relative;
}
.subNav:after {
    content: "+";
    position: absolute;
    right: 10px;
    top: 12px;
    font-size: 16px;
}
.subNav.currentDd:after {
    content: "-";
}
.subNav a {
    display: block;
    line-height: 40px;
    font-size: 18px;
    color: #333;
}
.subNav:hover {
    color: #277fc2;
}
.currentDd {
    color: #277fc2;
}
/* 移动端子菜单默认永久显示，无需点击展开 */
.navContent {
    display: block;
    padding-left: 16px;
    background: #f8f8f8;
    text-align: left;
    width: 100%;
}
.navContent li {
    line-height: 36px;
    width: 100%;
}
.navContent li a {
    font-size: 14px;
    color: #555;
    display: block;
    width: 100%;
}
.navContent li a:hover {
    color: var(--main-color);
}
/* -------------------------END of  Menu   ---------------------------- */

/*-------Banner-----*/

/* 轮播容器 */
.slider-wrap {
    width: 980px;
    margin: 20px auto;
    overflow: hidden;
    position: relative;
}

.slider-track {
    width: 400%;
    position: relative;
    left: 0;
    zoom: 1;
}

.slider-item {
    width: 25%;
    float: left;
}

.slider-item img {
    width: 100%;
    height: auto;
    display: block;
}

.hidden-xs {
  width: 100vw;
  height: 35.42vw;
  object-fit: cover;
   display: block !important
}

 .hidden-sm {
  width: 100vw;
  height: 117.33vw;
  object-fit: cover;
  display:none  !important
}


/* 左右按钮 */
.slider-prev,
.slider-next {
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.75);
    border-radius: 50%;
    position: absolute;
    top: 50%;
    margin-top: -21px;
    text-align: center;
    line-height: 42px;
    font-size: 20px;
    cursor: pointer;
    color: #333;
    z-index: 10;
}

.slider-prev {
    left: 20px;
}

.slider-next {
    right: 20px;
}

/* 圆点指示器 */
.slider-dots {
    position: absolute;
    bottom: 18px;
    left: 50%;
    margin-left: -50px;
    z-index: 10;
}

.slider-dots span {
    display: inline-block;
    *display: inline;
    zoom: 1;
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: #ccc;
    margin: 0 5px;
    cursor: pointer;
}

.slider-dots span.active {
    background: #9944bb;
}



/*-------End of Banner-----*/


/*--------------------Head End------------------------*/

#wrapper {   /* 主体容器PC固定宽 */
    width: 980px;
    margin: 0px auto;
    padding: 0px;
    text-align: left;
    line-height: 20px;
    background: #fff;
}


/*--------------------PRODUCT ZONE------------------------*/


/* ===================== 图文核心容器 ===================== */

        .clearfix {
    clear: both;
    height:0;
    font-size:0;
    overflow:hidden; 
        }
        .clearfix:after {
            content: "";
            display: block;
            height: 0;
            clear: both;
            visibility: hidden;
        }

        .section-wrap {
            width: 100%;
            margin: 3px auto;
            overflow: hidden;
        }
        /* PC电脑端：图片右浮动，文字左浮动 */
        .img-area {
            width: 54%;
            float: right;
            text-align: center;
        }
        .text-area {
            width: 44%;
          min-width:400px;
          font-size: 13px;
            text-align: left;
            float: left;
           padding-top: 10px;
           background: #fff;
 
        }

        .text-top-area {
            width: 100%;
           background: #DD3939;
           color: #000;
    padding-top:20px;
    padding-left:10px;
    padding-right:10px;
    padding-bottom:20px;

        }
        /* 多类名控制颜色 兼容IE6 */
        .text-top-area.red {
            background: #DD3939; 
            color: #fff;
        }
        .text-top-area.green {
            background: #73c973; 
            color: #fff;
        }
        .text-top-area.dgreen {
            background: #2B6C37; 
            color: #fff;
        }
        .text-top-area.blue {
            background: #73a9ff;
            color: #fff;
        }
        .text-top-area.orange {
            background: #ffbc73;
            color: #fff;
        }


        .main-title {
            line-height: 1.25;
            margin-bottom: 28px;
            font-weight: bold;
        }
        .feature-list {
            margin-top: 20px;
            margin-left: 20px;
            margin-bottom: 20px;
        }
        .feature-list li {
            font-size: 16px;
            margin-bottom: 10px;
            padding-left: 30px;
            position: relative;
            background-repeat: no-repeat;
            background-position: left 2px top 2px;
            background-size: 18px 18px;
        }
        /* 通过不同class切换前置图标图片 兼容IE6多类名 */
       .icon-a {
            background-image: url("/images/icon-kok-01.svg");
        }
       .icon-b {
            background-image: url("/images/icon-kok-02.svg");
        }
       .icon-c {
            background-image: url("/images/icon-kr-01.svg");
        }
       .icon-d {
            background-image: url("/images/icon-min-01.svg");
        }

        .inquiry-btn {
            display: inline-block;
            padding: 16px 36px;
            background-color: #165DFF;
            color: #ffffff;
            font-size: 18px;
            border-radius: 6px;
        }
        .inquiry-btn:hover {
            background-color: #0f4bdd;
        }
/*-------------------END -图文核心容器------------------------*/

.conleft{
width:40%;
max-width:400px;
color: #000;  margin:0 auto;
text-align: left;   
padding: 0;
float:left;
margin: 0;
background: #fff;
}

.conmain {
margin-left: 410px; 
font-size: 14px;
overflow:hidden;
text-align: left;  
}

.picleft{
width:50%;
max-width:480px;
color: #000;  margin:0 auto;
text-align: left;   
padding: 0;
float:left;
margin: 0;
background: #fff;
}

.picmain {
margin-left: 490px;  
text-align: left;  
}
.pictxt {
width:75%;
font-size: 16px;
text-align: left;  
}

.ProductPic {
width:62%;
max-width:600px;
color: #000;  
text-align: center;   
float:left;
margin: 0;
padding: 0;
background: #fff;
}

.ProductDecs {
width:36%;
float: right;
font-size: 18px;
text-align: left;  
min-height: 100%
}

.mainzone {
padding: 10px;
margin: 10px;
 font-size: 14px;
text-align: left;   
 background-color: #fff;
 width: 100%;
}


.FileTitleZone{
text-align: center;  
padding: 20px;
margin: 20px;
}
.FileTitleZone .h1{
 font-size: 28px;
padding: 20px;
}
.FileTitleZone .h3{
 font-size: 22px;
padding: 10px;
}

.PageZone{
clear: both;
font-size: 16px;
text-align: center;  
margin: 5px;
margin-bottom: 15px;
}

/*-------------------END CONTENT-------------------*/
.Listleft{
color: #000; width:180px; margin:0 auto;
text-align: left;
position:absolute;
padding: 0;
float:left;
margin: 0;
background: #fff;
overflow:hidden;
}

.ListZone {
width:780px; /*max-width:calc(100% - 180px)*/
float: right;
z-index: 1;
overflow:hidden;
text-align: center;
clear: both;
min-height: 100%
}

.HomeZone{
 background-color: #fff;
 overflow: hidden;
 width: 100%;
}

 .ProductZone{
    width:99%;
    background-color:#ffffff;margin: 0 auto;border:5px;
}
 

.zone-title{width: 100%;text-align: left; height:38px; background:url(/images/bg_r.png) repeat-x; line-height:38px; font-size:14px; font-weight:bold; padding-left:18px;}
.zone-title p{background:url(/images/oa_ico.png) no-repeat 0 14px; padding-left:30px;}
 
.ProductZone .photo {
  width: 188px;
  height:220px;  
  margin-bottom: 30px;
 text-align: center;
 background-color:#ffffff;
 margin-left:5px;
 float:left;
}

.PageBottom{
text-align: center;
padding: 5px 0px 5px 0px;
}

a.mtxtbtn,a.mtxtbtn:link,a.mtxtbtn:visited{display:inline-block;color:#ffffff;background-color:#99CC33;font-weight:600 !important;font-size:12px;text-align:center;padding-left:5px;padding-right:5px;padding-top:2px;padding-bottom:2px;text-decoration:none;margin-left:3px;margin-top:0;margin-bottom:2px;border:1px solid var(--theme-color);border-radius:5px;white-space:nowrap}
a.txtbtn,a.txtbtn:link,a.txtbtn:visited{display:inline-block;color:#000000;background-color:#ffffff;font-weight:500;font-size:12px;text-align:center;padding-left:5px;padding-right:5px;padding-top:2px;padding-bottom:2px;text-decoration:none;margin-left:3px;margin-top:0;margin-bottom:2px;border:1px solid var(--theme-color);border-radius:5px;white-space:nowrap}
a.page,a.page:link,a.page:visited{display:inline-block;background-color:#ffffff;font-size:13px;text-align:center;padding-left:2px;padding-right:2px;padding-top:0px;padding-bottom:0px;text-decoration:none;margin-left:1px;margin-top:0;margin-bottom:0px;border:1px solid var(--theme-color);border-radius:0px;white-space:nowrap}



/*--------------------END PRODUCT ZONE------------------------*/



/*--------------------ABOUT Begin------------------------*/
.imageText-area {
    background-color: #f9f9f9;
    padding: 60px 0;
    background-position: center center;
    background-size: cover;
}
.imageText {
    display: flex;
    height: 280px;
    width: 500px;
    box-sizing: border-box;
    padding: 20px;
    margin: 0 auto;
    background-color: #ffffff;
}
.imageText_text {
    flex: 1;
    display: flex;
    justify-content: left;
    align-items: center;
    text-align: left;
}
.imageText_textContect .imageTextMainTitle {
    font-size: 20px;
    font-family: "Poppins", "Open Sans", sans-serif;
    font-weight: 800;
    color: var(--commonTitle);
    line-height: 40px;
    margin-bottom: 10px;
}
.mainTitleLine {
    width: 80px;
    height: 4px;
    background: var(--commonButton);
    margin-bottom: 20px;
}
.imageText_textDesc {
    font-size: 14px;
    font-weight: 500;
    color: var(--commonContent);
    line-height: 18px;
    margin-bottom: 40px;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 8;
    -webkit-box-orient: vertical;
}
.imageText_img {
    flex: 0 0 440px;
    width: 440px;
    margin-right: 90px;
}
.imageText_img .lazy-load-container {
    width: 440px;
    height: 440px;
}
/*--------------------END ABOUT ZONE------------------------*/

/*--------------------Contact Zone Begin------------------------*/
.contactzone {
    width: 980px;
    clear: both;
    margin: 0 auto;
    border: 1px solid var(--theme-color);
}
.contact-left {
    color: #000;
    width: 400px;
    margin: 0 auto;
    text-align: left;
    position: absolute;
    padding: 0;
    float: left;
    margin: 0;
    background: #fff;
    overflow: hidden;
}
.contact-right {
    width: 560px;
    float: right;
    z-index: 1;
    overflow: hidden;
    text-align: center;
    clear: both;
    min-height: 100%;
}
.contactbox {
    width: 80%;
    padding: 10px 10px 10px 0;
    margin: 0px auto;
    overflow: hidden;
    clear: both;
    line-height: 40px;
}
.contactbox textarea {
    height: 100px;
    /* width: 700px;  */
    width: 100%;
    /* 
    float: left;      
    color: #ff0000; 
    */
    border: 1px solid var(--box-color);
    line-height: 30px;
}
.TextBoxw {
    width: 100%;
    height: 25px;
    border: 1px solid var(--box-color);
    line-height: 30px;
}
.contactbox .submit {
    width: 50%;
    height: 40px;
    text-align: center;
    color: #ffffff;
    text-transform: uppercase;
    font-weight: 500 !important;
    font-size: 14px;
    cursor: pointer;
    border: 0;
    min-width: 140px;
    -webkit-appearance: none;
    /*  background-color: #276fdb; */
    background-color: var(--tnbtcolor);
    border-radius: 20px;
    border: 1px solid #000000;
    -webkit-transition: background-color 0.3s, color 0.3s;
    transition: background-color 0.3s, color 0.3s;
    -webkit-box-ordinal-group: 3;
    -ms-flex-order: 2;
    order: 2;
}
/*--------------------Contact Zone End------------------------*/

/*--------------------Foot Begin------------------------*/
#footer {
    clear: both;
    margin: 0;
    padding: 10px 16px;
    text-align: center;
    font-size: 90%;
}
#footer-inner {
    background: #f2f2f2;
    height: 55px;
}
#footer p {
    margin: 0;
    padding: 10px 0;
}
#footer a {
    font-weight: 100;
}
#footer-claim {
    font-size: 80%;
}
#nono {
    display: none;
}

/*gotop*/
.gotop {
    display: inline-block;
    height: 40px;
    width: 40px;
    position: fixed;
    bottom: 40px;
    right: 10px;
    box-shadow: 0 0 10px rgba(0,0,0,0.05);
    overflow: hidden;
    text-indent: 100%;
    white-space: nowrap;
    /*	background: rgba(50,205,50) url(/images/top.png) no-repeat center;  */
    background: var(--commonButton) url(/images/top.png) no-repeat center;
    visibility: hidden;
    opacity: 0;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    transition: all 0.3s;
    z-index: 9999999;
}
.gotop.gt-is-visible {
    visibility: visible;
    opacity: 1;
}
/*--------------------Foot End------------------------*/

/*===== 手机端 768px以下 核心修改：topzone-left横向自动换行 =====*/
@media screen and (max-width: 767px) {
    .tophead {
        width: 100%;
        height: 65px;
        padding: 10px 0;
        overflow: hidden; /* 清除内部浮动高度塌陷 */
    }
    .logo {
        max-height: 65px;
        text-align: left;
    }
  .topszone {
/*    width: calc(100% - 175px);*/
    margin-left: 175px;  
    min-width:150px;
    text-align: left;
    padding-top: 1px;
    margin-top: 1px;
}
.topadstxt{
    margin-right: 30px;  
    font-size: 14px;
}
    .navzone {
        display: none !important;
    }
    #mnavh {
        display: block !important;
    }

    .slider-wrap {
        width: 96%;
        margin: 15px auto;
    }

.hidden-xs{
    display: none !important
}
 .hidden-sm {
    display: block !important
}


    #wrapper {
        width: 100%;
        padding: 0 8px;
        box-sizing: border-box;
    }
    .imageText-area {
        width: 100%;
    }
    .imageText {
        width: 90%;
        min-width: 400px;
    }

/* ===================== 图文核心容器 ===================== */

            .section-wrap {
                width: 94%;
                margin: 30px auto;
            }
            /* 手机取消浮动，HTML图片在前自动在上 */
            .img-area,
            .text-area {
                width: 100%;
                float: none;
            }
            .img-area {
                margin-bottom: 35px;
            }
            .text-area {
                padding-top: 0;
            }
            .main-title {
                font-size: 30px;
            }
 
.conleft{
        width: 100%;
        max-width: 100%;
        float: none;
        position: static; 
        margin-bottom: 20px;
    }
.conmain{
        width: 100%;
        max-width: 100%; 
        float: none;
        position: static; 
        margin-bottom: 20px;
        margin-left: 0 !important; /* 关键：清除405px左边空白 */
    }
.picleft{
        width: 100%;
        max-width: 100%; 
        float: none;
        position: static; 
        margin-bottom: 20px;
    }
.picmain{
        width: 100%;
        max-width: 100%;
        float: none;
        position: static; 
        margin-bottom: 20px;
        margin-left: 0 !important; /* 关键：清除405px左边空白 */
    }

.pictxt{
        width: 100%;
    }

/* ==================END= 图文核心容器 ==================== */


    .ProductZone .photo {
        width: 48%;
        /* 只给两列中间右边距，第一列左边无边距，总宽度不会超100% */
        margin: 0 4% 12px 0;
        height: auto;
        float: left;
        box-sizing: border-box;
    }
    /* 偶数第2、4、6...个元素 清除右侧外边距，贴紧最右边 */
    .ProductZone .photo:nth-child(2n) {
        margin-right: 0;
    }


     .Listleft{display:none !important;}
     .ProductZone{width:100%;padding:0 8px;box-sizing:border-box;}

.ProductPic {width:100%;float: none;}
.ProductDecs  {
width:100%;
padding: 10px;
margin: 10px;
font-size: 14px;
float: none;
}
 

    .contactzone{width:100%;float: none;}
    .contactbox {width:100%;float: none;}
    .contact-left{display:none !important;}
    .contact-right{width:100%;float: none;}
 
    .bzone-left,
    .bzone-right {
        width: 100%;
        float: none;
        margin-bottom: 15px;
    }
    /* PC下拉菜单移动端隐藏 */
    .submenu-wrap {
        display: none !important;
    }
}






/* IE6-8 忽略媒体查询，保持PC布局 */
@media \0screen\, screen\9 {
    #mnavh {
        display: none !important;
    }
    .topszone {
        display: block !important;
    }
    #header {width: 980px;}
    .tophead{width: 980px;}
    .slider-wrap {width: 980px;}
    #wrapper{width: 980px;}
    .contactzone{width: 980px;}
}

