

/*Reset css*/
/* 清除内外边距 */
body,h1,h2,h3,h4,h5,h6,div,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{margin:0;padding:0;}
/* 设置默认字体 */
body,button,input,select,textarea{ font: 12px/1 '微软雅黑'; }
h1,h2,h3,h4,h5,h6{ font-size: 100%; font-weight: normal; }
address,cite,dfn,em,var{ font-style: normal; }
code,kbd,pre,samp,tt{ font-family: '微软雅黑'; }
small{ font-size: 12px; }
/* 重置列表元素 */
ul,ol,li,dl,dt,dd{ list-style: none; }
ul:after{ content: ''; clear: both; display: block; }
/* 重置文本格式元素 */
a{ color: #acacac; text-decoration: none; transition-duration: .3s; }
a:hover{ color: #b50000; text-decoration: none; transition-duration: .3s; }
abbr[title],acronym[title]{ border-bottom: 1px dotted; cursor: help; }
q:before,q:after{ content: ''; }
sup{ vertical-align: super; }
sub{ vertical-align: sub; }
/* 重置表单元素 */
legend{ color: #000; }
fieldset,img{ border: none; display: block; }
input,select,textarea{ font-size: 100%; }
button{ cursor: pointer; }
/* 重置表格元素 */
table{border-collapse:collapse;border-spacing:0;margin:10px 0;display:table;width:100%!important;}
table td,table th{padding:10px;border:1px solid #dedede;color:#333333;vertical-align:middle;width:1%!important;}
/* 重置 hr */
hr{border:none;height:1px;}
/* 清除浮动 */
.cl,.clear{display:block;float:none;clear:both;overflow:hidden;visibility:hidden;width:0;height:0;background:none;border:0;font-size:0;}
/*end Reset css*/

/*web*/
html,body{width: 100%;height: 100%;font-family: '微软雅黑';font-size: 14px;background: #ffffff;}
.BODYCENTER{width: 1200px;margin: auto;position: relative;}
.fl{float: left;}
.fr{float: right;}
em{color: #b50000;}
.wow{visibility: visible!important;}
.content:after{content: '';clear: both;display: block;}
.content img{max-width: 100%;display: inline-block;}
/*end web*/

/*分页*/
.mc_pager{font-family:'Arial';text-align:center;padding:50px 0;}
.mc_pager a,.mc_pager span{background:#202020;color:#fff;width:30px;height:30px;line-height:30px;margin:3px;display:inline-block;}
.mc_pager a:hover,.mc_pager a.Ahover{background:#b50000;}
.mc_pager a.firstPage,.mc_pager a.lastPage{width:40px;font-weight:bold;}
.mc_pager .PreSpan,.mc_pager .NextSpan,.mc_pager a.PreA,.mc_pager a.NextA{width:50px;font-size: 0;}
.mc_pager .PreSpan:before,.mc_pager a.PreA:before{content:'◀';font-size:14px;}
.mc_pager .NextSpan:before,.mc_pager a.NextA:before{content:'▶';font-size:14px;}
.mc_pager .PageText,.mc_pager #metPageT,.mc_pager #metPageB{display:none}
/*end 分页*/

/*二维码显示*/
.pro2wm{position:relative;display:inline-block;cursor:pointer;}
.pro2wm:before{opacity:0;content:'';border-top:8px solid transparent;border-right:8px solid #fff;border-bottom:8px solid transparent;position:absolute;top:7px;right:-14px;z-index:1001;transition-duration:.3s;}
.pro2wm:after{opacity:0;content:'';width:5px;height:10px;box-shadow:-3px 0 10px rgba(0, 0, 0, .2);position:absolute;top:10px;right:-14px;z-index:1000;transition-duration:.3s;}
.pro2wm:hover:before,.pro2wm:hover:after{opacity:1;}
.pro2wm .wxewm{opacity:0;width:0;height:200px;padding:8px 0;background:#fff;box-shadow:0 0 10px rgba(0, 0, 0, .2);border-radius:5px;position:absolute;left:60px;bottom:-88px;z-index:999;transition-duration:.3s;}
.pro2wm:hover .wxewm{opacity:1;width:200px;padding:8px;}
/*end 二维码显示*/

/*css3*/
/* Grow */
.grow {
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    transition-property: transform;
    transition: all 0.36s ease;
}
a:hover .grow {
    transform: scale(1.08);
}
/* float-shadow */
.float-shadow {
    display: block;
    position: relative;
    transition-property: transform;
    transition-duration: 0.36s;
}
.float-shadow:before {
    content: '';
    width: 90%;
    height: 10px;
    pointer-events: none;
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 5%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .1) 0%,rgba(0, 0, 0, 0) 80%);
    transition-property: transform;
    transition-duration: 0.36s;
}
.float-shadow:hover {
    transform: translateY(-5px);
}
.float-shadow:hover:before {
    opacity: 1;
    transform: translateY(5px);
}
/*显示隐藏时间*/
.fadeIn{
    -webkit-animation-name: fadeIn; /*动画名称*/
    -webkit-animation-duration: 0.36s; /*动画持续时间*/
    -webkit-animation-iteration-count: 1; /*动画次数*/
    -webkit-animation-delay: 0s; /*延迟时间*/
}
@-webkit-keyframes fadeIn{
    0% {
        opacity: 0;
    }
    20% {
        opacity: .2;
    }
    50% {
        opacity: .5;
    }
    70% {
        opacity: .7;
    }
    100% {
        opacity: 1;
    }
}
/*end css3*/



/*header*/
#header{
    width: 100%;
    background: #ffffff;
    box-shadow: 0 0 0 1px #f0f0f0;
    position: fixed;
    z-index: 10000;
    top: 0;
}
#header .logo{
    height: 80px;
    padding: 10px 0 10px 50px;
}
#header .logo img{
    float: left;
    height: 100%;
}
#header .logo p{
    float: left;
    color: #0d0d0d;
    font-size: 24px;
    line-height: 60px;
    padding-left: 20px;
}
#header .lang{
    padding-right: 120px;
}
#header .lang .pro2wm{
    font-size: 24px;
    margin: 28px 20px 28px 0;
}
#header .lang .pro2wm:before{
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #fff;
    top: 30px;
    right: 50%;
    margin-right: -8px;
}
#header .lang .pro2wm:after{
    width: 10px;
    height: 5px;
    top: 40px;
    right: 3px;
}
#header .lang .pro2wm .wxewm{
    width: 140px;
    height: 0;
    padding: 0 5px;
    top: 46px;
    left: 50%;
    margin-left: -70px;
}
#header .lang .pro2wm:hover .wxewm{
    height: 140px;
    padding: 5px;
}
#header .lang a{
    color: #888888;
}
#header .lang a:hover{
    color: #b50000;
}
#header .lang a.langen{
    font-size: 15px;
    position: relative;
    top: -3px;
}
#header .headnav{
    padding: 15px 0;
}
@media ( max-width: 1420px){
    #header .logo{
        padding-left: 20px;
    }
    #header .lang{
        padding-right: 20px;
    }
    #header .headnav #cssmenu > ul > li{
        margin-right: 30px;
    }
}
@media ( max-width: 1200px){
    #header .logo p{
        font-size: 18px;
        padding-left: 8px;
    }
    #header .lang .pro2wm{
        margin-right: 8px;
    }
    #header .headnav #cssmenu > ul > li{
        margin-right: 10px;
    }
    #header .headnav #cssmenu > ul > li > a{
        font-size: 14px;
    }
}
/*banner*/
.met-banner{
    padding-top: 45px;
}
.met-banner .carousel-indicators{
    bottom: 30px;
}
.met-banner .carousel-indicators li{
    transform: translate(0,0);
    background: #000;
}
.met-banner .carousel-indicators li:hover,
.met-banner .carousel-indicators li.active{
    background: #fff;
}
.met-banner .carousel-indicators li:after{
    display: none;
}
.met-banner .carousel-control:hover{
    opacity: 1;
}
.met-banner .carousel-control .icon{
    width: 60px;
    height: 60px;
    margin-top: -30px;
    border-radius: 100%;
    background: rgba(255, 255, 255, .2);
    border: 2px solid rgba(255, 255, 255, .8);
    font: 35px/55px '宋体';
    color: #ffffff;
}
#headbanner{
    padding-top: 80px;
    overflow: hidden;
}
#headbanner img{
    width: 100%;
}
/*header*/

/*index*/
.more{
    display: inline-block;
    padding: 10px 30px;
    text-align: center;
    color: #9b9b9b;
    border: 1px solid transparent;
    overflow: hidden;
    position: relative;
}
.more:hover,
a:hover .more{
    color: #fff !important;
    border: 1px solid #333 !important;
}
.more:before{
    content: '';
    width: 0;
    height: 100%;
    background: #333;
    position: absolute;
    top: 0;
    left: 0;
}
.more:hover:before,
a:hover .more:before{
    width: 100%;
    transition-duration: .5s;
}
.more p{
    position: relative;
    z-index: 1;
}

#main{
    position: relative;
    z-index: 2;
}
.inad{
    padding: 50px 0;
    text-align: center;
    overflow: hidden;
}
.inad .namemark{
    color: #000000;
    font-size: 42px;
    font-weight: 100;
    margin-bottom: 40px;
}
.inad .description{
    color: #a4a4a4;
    font-size: 15px;
    line-height: 28px;
}
.inabout{
    background: #f2f2f2;
    overflow: hidden;
    position: relative;
}
.inabout .inabouttext{
    width: 100%;
    position: absolute;
    top: 50px;
    left: 0;
}
.inabout .inabouttext:before{
    content: '';
    width: 2000px;
    height: 100%;
    background: #ffffff;
    position: absolute;
    top: 0;
    right: 50%;
    margin-right: -90px;
}
.inabout .inabouttext .name{
    color: #646464;
    font-size: 20px;
    padding: 80px 0 0 60px;
    position: absolute;
    z-index: 1;
}
.inabout .inabouttext .namemark{
    display: inline-block;
    color: #a0a0a0;
    font-size: 15px;
    border-bottom: 2px solid #bfbfbf;
    padding: 10px 0 20px 60px;
    position: absolute;
    top: 100px;
    z-index: 1;
}
.inabout .inabouttext a{
    width: 690px;
    padding: 180px 55px 80px 20px;
    display: block;
    background: #ffffff;
}
.inabout .inabouttext .columnimg img{
    border: 1px solid #f2f2f2;
    padding: 3px;
}
.inabout .inabouttext .webname{
    color: #6b6b6b;
    font-size: 22px;
    font-weight: bold;
    padding: 40px 0 20px;
}
.inabout .inabouttext .description{
    color: #999999;
    font-size: 13px;
    line-height: 28px;
    letter-spacing: 1px;
}
@media ( max-width: 1080px){
    .inabout .inabouttext{
        width: 690px;
        background: #fff;
        left: 50%;
        margin-left: -345px;
    }
    .inabout .inabouttext:before{
        display: none;
    }
    .inabout .inabouttext a{
        padding: 180px 30px 80px;
    }
}
.innews{
    padding: 50px 2%;
    overflow: hidden;
}
.innews ul li{
    float: left;
    width: 25%;
    padding: 0 .5%;
}
.innews ul li .newsnamemark{
    color: #000000;
    font-size: 42px;
    padding: 6vw 0 3vw;
}
.innews ul li .newsdescription{
    color: #000000;
    font-size: 24px;
    line-height: 42px;
    font-weight: 100;
}
.innews ul li .newsdescription p:nth-child(2){
    font-weight: bold;
}
.innews ul li a{
    display: block;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
}
.innews ul li a .imgurl{
    overflow: hidden;
}
.innews ul li a .imgurl:before{
    content: '';
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .2);
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
    transition-duration: .5s;
}
.innews ul li a:hover .imgurl:before{
    top: -100%;
}
.innews ul li a .imgurl img{
    width: 100%;
}
.innews ul li a .newsbottom{
    width: 100%;
    padding: 20px;
    background: #f5f5f5;
    position: absolute;
    bottom: -150px;
    transition-duration: .3s;
}
.innews ul li a:hover .newsbottom{
    bottom: 0;
}
.innews ul li a .newsbottom .title{
    color: #000000;
    font-size: 18px;
    margin-bottom: 10px;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.innews ul li a .newsbottom .description{
    color: #959595;
    line-height: 26px;
    height: 52px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
@media ( max-width: 1350px){
    .innews ul li .newsnamemark{
        font-size: 25px;
    }
    .innews ul li .newsdescription{
        font-size: 15px;
        line-height: 2;
    }
}
.inpro{
    padding: 50px 5%;
    background: #f8f8f8;
    overflow: hidden;
}
.inpro .namemark{
    color: #5a5a5a;
    font-size: 30px;
}
.inpro .description{
    color: #9b9b9b;
    font-size: 12px;
    padding: 10px 0 50px;
}
.inpro ul li{
    float: left;
    width: 25%;
    padding-right: 1%;
}
.inpro ul li a{
    display: block;
    text-align: center;
}
.inpro ul li a .proimg{
    overflow: hidden;
}
.inpro ul li a .proimg img{
    width: 100%;
}
.inpro ul li a .title{
    color: #555555;
    font-size: 20px;
    margin: 20px 0;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.inpro ul li a:hover .title{
    color: #b50000;
}
.inconbanner{
    overflow: hidden;
}
/*index*/

/*foot*/
#footer{
    padding-top: 50px;
    background: #ffffff;
    position: relative;
    z-index: 2;
}
#footer .footcon{
    padding: 0 10% 50px;
}
#footer .footcon .footadd .webname{
    color: #222222;
    font-size: 20px;
    letter-spacing: 2px;
    padding-bottom: 30px;
}
#footer .footcon .footadd p{
    color: #acacac;
    font-size: 15px;
    line-height: 32px;
}
#footer .footcon .footadd .footfx{
    padding-top: 20px;
}
#footer .footcon .footadd .footfx a{
    display: inline-block;
    color: #696969;
    font-size: 20px;
    padding: 4px 24px 0 0;
}
#footer .footcon .footfeed{
    width: 55%;
}
#footer .footcon .footfeed .ftype_input{
    float: left;
    width: 33.33%;
    padding: 0 20px 20px 0;
}
#footer .footcon .footfeed .ftype_input input{
    width: 100%;
    height: 50px;
    color: #888888;
    border: 0;
    border-bottom: 1px solid #cfcfcf;
    outline: 0;
}
#footer .footcon .footfeed .ftype_textarea{
    width: 100%;
    padding: 0 20px 20px 0;
}
#footer .footcon .footfeed .ftype_textarea textarea{
    width: 100%;
    line-height: 15px;
    height: 120px;
    color: #888888;
    border: 0;
    border-bottom: 1px solid #cfcfcf;
    outline: 0;
}
#footer .footcon .footfeed .submit{
    width: 100px;
    height: 38px;
    background: #383838;
    color: #ffffff;
    border: 0;
    outline: 0;
}
#footer .tail{
    color: #646464;
    background: #f8fafb;
    line-height: 22px;
    padding: 20px 10%;
}
#footer .tail a{
    color: #646464;
}
#footer .tail .tail_a{
    position: relative;
    left: 0;
}
#footer .tail .tail_a:hover{
    left: -5px;
}
/*foot*/

/*product*/
.product{
    padding-bottom: 30px;
}
.product .inpronav .more.hover{
    color: #fff;
    background: #333;
    border: 1px solid #333;
}
/*showproduct*/
.showproduct{
    padding-top: 50px;
    border-bottom: 1px solid #f8f8f8;
}
.showproduct .proname{
    color: #4b4b4b;
    font-size: 35px;
    font-weight: bold;
    padding: 0 0 25px 50px;
    position: relative;
}
.showproduct .proname:before{
    content: '';
    width: 34px;
    height: 4px;
    background: #4b4b4b;
    position: absolute;
    top: 18px;
    left: 0;
}
/*<!--第一部分-->*/
.one{  padding-bottom: 80px;  }
.one .proimgurl{  float: left;  width: 500px;  }
.one .proimgurl .prodetailmain{  box-shadow: 0 0 0 2px #f5f5f5;  }
.one .proimgurl .prodisplayimg{  width: 400px;  margin: 25px 50px 0;  position: relative;  }
.one .protitle{  float: right;  width: 620px;  }
.one .protitle .title{  color: #2a2a2a;  font-size: 28px;  font-weight: bold;  padding-bottom: 30px;  position: relative;  }
.one .protitle .title:before{  content: '';  width: 34px;  height: 4px;  background: #4b4b4b;  position: absolute;  top: 15px;  left: -50px;  }
.one .protitle .contit{  color: #2a2a2a;  font-size: 20px;  padding-bottom: 20px;  border-bottom: 1px dotted #a3a3a3;  }
.one .protitle .content{  color: #2a2a2a;  font-size: 16px;  line-height: 32px;  padding: 20px 0;  }
.one .protitle .prolist{  padding: 20px 0;  border-top: 1px dotted #a3a3a3;  border-bottom: 1px dotted #a3a3a3;  }
.one .protitle .prolist ul li{  float: left;  width: 15%;  margin-left: 2%;  }
.one .protitle .prolist ul li:nth-child(1){  margin-left: 0;  }
.one .protitle .prolist ul li a{  display: block;  border: 2px solid #f5f5f5;  overflow: hidden;  }
.one .protitle .prolist ul li a:hover{  border: 2px solid #b50000;  }
.one .protitle .prolist ul li a img{  width: 100%;  }
.one .protitle .inquire{  display: block;  width: 150px;  line-height: 45px;  text-align: center;  background: #333333;  color: #ffffff;  font-size: 15px;  margin-top: 30px;  }
.one .protitle .inquire:hover{  background: #424242;  }
/*product*/

/*news*/
.news{
    padding-bottom: 30px;
}
.news .inpronav .more.hover{
    color: #fff;
    background: #333;
    border: 1px solid #333;
}
.news .newslist ul li{
    padding-bottom: 2%;
}
.news .newslist ul li a{
    padding: 10px;
    text-align: left;
    background: #ffffff;
    border-radius: 10px;
}
.news .newslist ul li a:hover{
    background: #cdcfcd;
}
.news .newslist ul li a .newsimg{
    height: 12vw;
    overflow: hidden;
}
.news .newslist ul li a .newsimg img{
    width: 100%;
    position: relative;
    top: 50%;
    margin-top: -15vw;
}
.news .newslist ul li a .newstitle{
    color: #000000;
    font-size: 16px;
    margin: 20px 10px 10px;
    line-height: 20px;
    height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news .newslist ul li a:hover .newstitle{
    color: #ffffff;
}
.news .newslist ul li a .newsdescription{
    color: #959595;
    margin: 0 10px 10px;
    line-height: 22px;
    height: 44px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news .newslist ul li a:hover .newsdescription{
    color: #ffffff;
}
/*shownews*/
.shownews{
    padding-top: 50px;
    border-bottom: 1px solid #f8f8f8;
}
.shownews .title{
    color: #000000;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}
.shownews .time{
    color: #959595;
    text-align: center;
    padding: 10px 0 20px;
    border-bottom: 1px solid #cfcfcf;
}
.shownews .content{
    color: #959595;
    font-size: 14px;
    line-height: 2;
    padding: 20px 0;
}
.shownews .detailpage{
    color: #959595;
    line-height: 30px;
    padding: 30px 0 50px;
    border-top: 1px solid #cfcfcf;
}
.shownews .detailpage p a{
    color: #959595;
    position: relative;
    left: 0;
}
.shownews .detailpage p a:hover{
    color: #b50000;
    text-decoration: underline;
    left: 10px;
}
.shownews .detailpage .more{
    float: right;
    line-height: 20px;
    border: 1px solid #9b9b9b;
}
/*news*/

/*about*/
.aboutnav{
    background: #f8f8f8;
    text-align: center;
}
.aboutnav a{
    float: left;
    width: 50%;
    color: #666666;
    font-size: 20px;
    font-weight: 100;
    line-height: 80px;
    border-right: 1px solid #ececec;
    position: relative;
}
.aboutnav a:nth-child(1){
    border-left: 1px solid #ececec;
}
.aboutnav a:hover,
.aboutnav a.hover{
    background: #ffffff;
}
.aboutnav a:before{
    content: '';
    border-top: 8px solid #b50000;
    border-left: 8px solid transparent;
    border-right: 8px solid transparent;
    position: absolute;
    top: 0;
    left: 50%;
    margin-left: -8px;
    opacity: 0;
    transition-duration: .3s;
}
.aboutnav a:hover:before,
.aboutnav a.hover:before{
    opacity: 1;
}
/*企业简介*/
.qyjj{
    display: flex;
    overflow: hidden;
}
.qyjj:after{
    content: '';
    clear: both;
    display: block;
}
.qyjj .inaboutimg{
    width: 50%;
    overflow: hidden;
}
.qyjj .inaboutimg .image{
    width: 100%;
    height: 100%;
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    -webkit-transition: .8s all ease-in-out;
    transition: .8s all ease-in-out;
}
.qyjj:hover .inaboutimg .image{
    -webkit-transform: scale(1.2);
    transform: scale(1.2);
}
.qyjj .inaboutimg .image img{
    display: none;
}
.qyjj .inabouttext{
    width: 50%;
    padding: 100px;
    background: #ffffff;
}
.qyjj .inabouttext h1{
    color: #000000;
    font-size: 42px;
    font-weight: 100;
    margin-bottom: 50px;
}
.qyjj .inabouttext p{
    color: #a4a4a4;
    font-size: 15px;
    line-height: 2;
}
.qyjj .inabouttext h5{
    display: inline-block;
    background: #b50000;
    padding: 0 30px;
    line-height: 50px;
    color: #ffffff;
    font-size: 24px;
    font-weight: 100;
}
.qyjj .inabouttext h6{
    display: inline-block;
    color: #6c6c6c;
    border-bottom: 1px solid #6c6c6c;
}
/*生产环境*/
ul.schj{
    padding: 1%;
}
ul.schj li{
    float: left;
    width: 25%;
    padding: 1%;
}
/*about*/
@media ( max-width: 1200px){
    .BODYCENTER{
        width: 100%;
    }
    .showproduct{
        padding: 50px 10% 0;
    }
    .one .proimgurl{
        float: none;
        margin: auto;
    }
    .one .protitle{
        float: none;
        width: 100%;
        margin-top: 80px;
    }
    .shownews{
        padding: 50px 10% 0;
    }
}
/*手机版*/
#header .menubutton{  display: none;  padding: 12px;  cursor: pointer;  }
#header .menubutton .menuicon{  width: 26px;  height: 2px;  background: #b50000;  margin: 5px 0;  }
#header .menubutton .menuicon.middle{  width: 20px;  margin-left: 6px;  }
/*导航*/
.menumain{  display: none;  background: #9e0606;  width: 100%!important;  height: 100%;  overflow: auto;  position: fixed;  top: 0;  left: 0;  z-index: 999;  opacity: 1!important;  }
.menumain .menubox{  margin: 50px 4% 80px;  padding-top: 1px;  }
.menumain .menubox .menunav .menuone a{  display: block;  color: #fff;  font-size: 14px;  margin: 30px 5px 0;  }
.menumain .menubox .menunav .menuone.home a{  padding-bottom: 20px;  border-bottom: 1px solid rgba(255, 255, 255, .5);  }
.menumain .menubox .menunav .menuone .menutwo{  float: left;  width: 33.33%;  }
.menumain .menubox .menunav .menuone .menutwo.bai{  width: 100%;  }
.menumain .menubox .menunav .menuone .menutwo a{  color: #bbb;  font-size: 13px;  margin: 30px 10px 0;  height: 15px;  line-height: 15px;  overflow: hidden;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree{  float: left;  width: 33.33%;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree a{  color: #888;  font-size: 12px;  margin: 20px 15px 0;  }
.menumain .menubox .menunav a.hover{  color: #fff !important;  }
/*语言*/
.menumain .menubox .lang{  margin-top: 30px;  text-align: center;  }
.menumain .menubox .lang a{  display: inline-block;  width: 43%;  height: 40px;  line-height: 40px;  border: 1px solid rgba(255, 255, 255, .5);  margin: 3%;  border-radius: 5px;  box-sizing: border-box;  }
.menumain .menubox .lang a img{  display: inline-block;  padding-right: 5px;  position: relative;  top: -3px;  }
.menumain .menubox .lang a span{  display: inline-block;  color: #fff;  font-size: 14px;  position: relative;  top: -1px;  }
/*底部菜单*/
#mobtool{  display: none;  width: 100%;  height: 50px;  background: #b50000;  position: fixed;  left: 0;  bottom: 0;  z-index: 1001;  }
#mobtool ul li{  float: left;  width: 20%;  text-align: center;  border-left: 1px solid #a20000;  box-sizing: border-box;  }
#mobtool ul li:nth-child(1){  border: none;  }
#mobtool ul li a.menubutton{  background: #a20000;  }
#mobtool ul li a{  display: block;  width: 100%;  height: 50px;  color: #fff;  padding-top: 10px;  }
#mobtool ul li a p{  height: 25px;  line-height: 25px;  overflow: hidden;  }
/*ios下载到桌面*/
.u-layer-ath{display: none;background:url(/skin/images/ath.png) no-repeat;z-index:9999999;width:200px;height:75px;position:fixed;bottom:0;left:50%;margin-left:-100px;background-size:contain;transform:translate3D(0,0,0);transition:2s all;perspective:400px;}
.u-layer-ath.u-ani-ath{transform:rotateY(360deg) translateZ(100px);}
.u-layer-ath .ath_addhome{position:absolute;left:0;top:0;width:140px;height:60px;}
.u-layer-ath .ath_close{position:absolute;right:0;top:0;width:30px;height:30px;}
/*index*/
.mobprodisplayimg{  display: none;  }
.mobprodisplayimg .swiper-pagination-bullet-active{  background: #b50000;  }
.mobweb{  display: none;  }
@media ( max-width: 920px){
  	.pcweb{  display: none;  }
  	.mobweb{  display: block;  }
    #header .logo{
        height: 50px;
        padding: 5px 0 5px 10px;
    }
    #header .logo p{
        font-size: 15px;
        padding-left: 10px;
        line-height: 40px;
    }
    #header .lang,
    #header .headnav{
        display: none;
    }
    #header .menubutton,
    #mobtool,
    .u-layer-ath{
        display: block;
    }
    .inad .namemark{
        font-size: 30px;
    }
    .inad .description{
        font-size: 14px;
        padding: 0 5%;
    }
    .inad .description br{
        display: none;
    }
    .inabout .inaboutimg{
        float: none;
    }
    .inabout .inaboutimg img{
        width: 100%;
    }
    .inabout .inabouttext{
        width: 100%;
        position: unset;
        margin: 0;
    }
    .inabout .inabouttext .name{
        position: unset;
        padding: 50px 0 0 50px;
    }
    .inabout .inabouttext .namemark{
        position: unset;
        padding: 15px 0 20px 50px;
    }
    .inabout .inabouttext a{
        width: 100%;
        padding: 50px 5%;
        border-bottom: 1px solid #eaeaea;
    }
    .inabout .inabouttext .columnimg img{
        width: 100%;
    }
    .innews{
        padding: 20px 5% 0;
    }
    .innews ul li{
        float: none;
        width: 100%;
        padding: 0 0 10% 0;
    }
    .innews ul li .newsnamemark{
        padding-bottom: 30px;
    }
    .innews ul li a .imgurl{
        height: 300px;
    }
    .innews ul li a .imgurl img{
        position: relative;
        top: 50%;
        margin-top: -250px;
    }
    .inpro .inpronav{
        display: none;
    }
    .inpro ul li{
        width: 50%;
        padding: 0 2%;
    }
    #footer .footcon .footadd,
    #footer .footcon .footfeed{
        float: none;
        width: 100%;
        padding: 20px 0;
    }
    #footer .tail{
        padding-bottom: 70px;
        text-align: center;
    }
    #footer .tail .fl,
    #footer .tail .fr{
        float: none;
    }
    #footer .tail .tail_a img{
        margin: 20px auto 0;
    }
    .onlineservice{
        width: 30px!important;
    }
    .onlineservice ul li a{
        height: 31px!important;
    }
    .onlineservice ul li a span{
        display: none;
    }
    .onlineservice ul li a i{
        width: 30px!important;
        height: 30px!important;
        line-height: 30px!important;
        font-size: 14px!important;
    }
    .popup-wechat img{
        width: 200px;
    }
    #headbanner{
        padding-top: 50px;
    }
    .qyjj{
        display: block;
        margin-bottom: 10px;
        padding-bottom: 10px;
        border-bottom: 1px solid #eaeaea;
    }
    .qyjj .inaboutimg{
        float: none;
        width: 100%;
    }
    .qyjj .inaboutimg .image img{
        width: 100%;
        display: block;
    }
    .qyjj .inabouttext{
        float: none;
        width: 100%;
        padding: 5%;
    }
    .qyjj .inabouttext h1{
        font-size: 30px;
        margin-bottom: 30px;
    }
    .qyjj .inabouttext p{
        font-size: 14px;
    }
    .qyjj .inabouttext h5{
        padding: 0 20px;
        font-size: 20px;
    }
    ul.schj li{
        width: 100%;
        padding: 2%;
    }
    .product .inpronav,
    .news .inpronav{
        float: none;
        display: block;
        margin-bottom: 50px;
    }
    .inpro .inpronav:after{
        content: '';
        clear: both;
        display: block;
    }
    .product .inpronav .more,
    .news .inpronav .more{
        float: left;
        width: 33.33%;
        padding: 10px 0;
    }
    .showproduct{
        padding: 50px 5% 0;
    }
    .one .proimgurl{
        width: 100%;
    }
    .one .proimgurl .prodetailmain,
    .one .proimgurl .prodisplayimg{
        display: none;
    }
    .mobprodisplayimg{
        display: block;
    }
    .one .protitle .title:before{
        display: none;
    }
    .news .newslist ul li{
        float: none;
        width: 100%;
        padding: 0 0 30px 0;
    }
    .news .newslist ul li a .newsimg{
        height: 300px;
    }
    .news .newslist ul li a .newsimg img{
        position: relative;
        top: 50%;
        margin-top: -250px;
    }
    .shownews .detailpage .more{
        display: none;
    }
}