

@font-face{
    font-family: 'Roboto BoldCondensed';
    src: url('../fonts/roboto boldcondensed.eot');
    src: url('../fonts/roboto boldcondensed.eot#iefix') format('embedded-opentype'),
    url('../fonts/roboto boldcondensed.woff2') format('woff2'),
    url('../fonts/roboto boldcondensed.woff') format('woff'),
    url('../fonts/roboto boldcondensed.ttf') format('truetype'),
    url('../fonts/roboto boldcondensed.svg#neuesbauendemo') format('svg');
    font-weight:normal;
    font-style:normal
}
.font1{font-family: 'Roboto BoldCondensed';}

/*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,h1,h2,h3,h4,h5,h6,button,input,select,textarea,code,kbd,pre,samp,tt,small,address,cite,dfn,em,var{font: normal 14px/1 '微软雅黑';}
/* 重置列表元素 */
ul,ol,li,dl,dt,dd{ list-style: none; }
ul:after{ content: ''; clear: both; display: block; }
/* 重置文本格式元素 */
a{ color: #333333; text-decoration: none; transition-duration: 1s; }
a:hover,a:focus{ color: #fb5d26; text-decoration: none; transition-duration: 1s; }
q:before,q:after{ content: ''; }
sup{ vertical-align: super; }
sub{ vertical-align: sub; }
/* 重置图片元素 */
img{ display: block; max-width: 100%; }
.content:after{ content: ''; clear: both; display: block; }
.content img{ display: inline-block; }
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 #ddd;color:#333;vertical-align:middle;word-break:normal!important;width:1%!important;}
/* 清除浮动 */
.cl,.clear{display:block;float:none;clear:both;overflow:hidden;visibility:hidden;width:0;height:0;background:0;border:0;font-size:0;}
/*end Reset css*/

/*web*/
html,body{width: 100%;height: 100%;font-family: '微软雅黑';font-size: 14px;background: #fff;}
::-webkit-input-placeholder{opacity: 1;}::-moz-placeholder{opacity: 1;}:-ms-input-placeholder{opacity: 1;}
@media(min-width: 1200px){.container{width: 1200px;padding: 0;}}
.fl{float: left;}
.fr{float: right;}
.mobileweb{display: none;}
.wow{visibility: visible!important;}
/*end web*/

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

/*二维码显示*/
.pro2wm{display:inline-block;position:relative;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:1s;}
.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:1s;}
.pro2wm:hover:before,.pro2wm:hover:after{opacity:1;}
.pro2wm .wxewm{opacity:0;width:0;max-width:none;height:120px;padding:5px 0;background:#fff;box-shadow:0 0 10px rgba(0, 0, 0, .2);border-radius:5px;position:absolute;left:60px;bottom:-45px;z-index:999;transition-duration:1s;}
.pro2wm:hover .wxewm{opacity:1;width:120px;padding:5px;}
/*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 .8s ease;
}
a:hover .grow {
    transform: scale(1.08);
}
/* float-shadow */
.float-shadow {
    display: block;
    position: relative;
    transition-property: transform;
    transition-duration: .5s;
}
.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: .5s;
}
.float-shadow:hover {
    transform: translateY(-5px);
}
.float-shadow:hover:before {
    opacity: 1;
    transform: translateY(5px);
}
/*显示隐藏时间*/
.fadeIn{
    -webkit-animation-name: fadeIn; /*动画名称*/
    -webkit-animation-duration: 1.5s; /*动画持续时间*/
    -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%;
    position: fixed;
    z-index: 10000;
    top: 0;
}
#header .headerbj{
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
#header .headerbj .headlogo{
    height: 110px;
    padding: 5px 0 5px 50px;
}
#header.height .headerbj .headlogo{
    height: 70px;
}
#header .headerbj .headlogo img{
    height: 100%;
}
#header .headerbj .headnav{
    display: block;
}
#header .headerbj .headnav ul li{
    padding: 35px 0;
    margin-right: 30px;
    transition-duration: 1s;
}
#header.height .headerbj .headnav ul li{
    padding: 15px 0;
}
#header .headerbj .headnav ul li a{
    display: block;
    color: #292929;
    font-size: 16px;
    line-height: 40px;
    background: #fff;
    border-radius: 50px;
    padding: 0 30px;
}
#header .headerbj .headnav ul li:hover a,
#header .headerbj .headnav ul li.hover a{
    color: #fff;
    background: #fb5d26;
}
/*banner*/
#mcbanner{
    padding-top: 110px;
    overflow: hidden;
}
/*indexbanner*/
.indexbanner .swiper-wrapper{
    transition: 2s cubic-bezier(0.68, -0.4, 0.27, 1.34) 0.2s;
}
.indexbanner .swiper-pagination .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    margin: 0 10px 10px;
    background: rgba(255, 255, 255, .5);
    opacity: 1;
}
.indexbanner .swiper-pagination .swiper-pagination-bullet-active{
    background: transparent;
    border: 2px solid #fff;
}
.indexbanner .swiper-button-prev,
.indexbanner .swiper-button-next{
    width: 50px;
    height: 50px;
    color: #fff;
    font: 25px/50px '宋体';
    text-align: center;
    background: rgba(0, 0, 0, .2);
    border-radius: 100%;
}
.indexbanner .swiper-button-prev{
    left: 5%;
}
.indexbanner .swiper-button-next{
    right: 5%;
}
/*otherbanner*/
.otherbanner img{
    width: 100%;
}
/*header*/

/*index*/
.more{
    display: inline-block;
    padding: 15px 30px;
    color: #000;
    font-size: 16px;
    border: 1px solid #bbb;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    transition-duration: 1s;
}
.more:hover,
a:hover .more{
    color: #fff !important;
    border: 1px solid #fb5d26;
}
.more:before{
    content: '';
    width: 120%;
    height: 100%;
    background: #fb5d26;
    transform: skew(-30deg);
    position: absolute;
    top: 0;
    left: -150%;
    transition-duration: 1s;
}
.more:hover:before,
a:hover .more:before{
    left: -10%;
}
.more p{
    position: relative;
    z-index: 1;
}

#main{
    position: relative;
    z-index: 2;
}

.incolumn{
    padding: 50px 0;
    overflow: hidden;
}
.incolumn .incolumnfl .title1{
    color: #323232;
    font-size: 30px;
    font-weight: 100;
}
.incolumn .incolumnfl .title2{
    color: #7e7e7e;
    margin-top: 15px;
}
.incolumn .incolumnfr{
    color: #7e7e7e;
    font-size: 15px;
    line-height: 50px;
}
.incolumn .incolumnfr:hover{
    color: #fb5d26;
}
.incolumn ul li{
    width: 30.66%;
    margin: 4% 4% 0 0;
}
.incolumn ul li:nth-child(3n){
    margin-right: 0;
}
.incolumn ul li a{
    display: block;
    padding-bottom: 10px;
}
.incolumn ul li a:hover{
    box-shadow: 0 5px 20px rgba(8, 6, 7, .1);
}
.incolumn ul li a .columnimg{
    overflow: hidden;
    position: relative;
}
.incolumn ul li a .columnimg .icon{
    width: 100%;
    height: 100%;
    background: rgba(43, 43, 43, .8);
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    transition-duration: 1s;
}
.incolumn ul li a:hover .columnimg .icon{
    transform: scale(1);
}
.incolumn ul li a .columnimg .icon p{
    color: #fff;
    font-size: 50px;
    font-weight: 100;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.incolumn ul li a .name{
    color: #292929;
    font-size: 18px;
    line-height: 20px;
    margin: 20px 20px 10px;
}
.incolumn ul li a:hover .name{
    color: #fb5d26;
}
.incolumn ul li a .namemark{
    margin: 0 20px;
    color: #818181;
    line-height: 20px;
    height: 40px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.inadvantages{
    padding: 100px 0;
    background: #f6f6f6;
    overflow: hidden;
}
.inadvantages .incolumnfl .title1{
    color: #404040;
    font-size: 30px;
    font-weight: 100;
}
.inadvantages .incolumnfl .title2{
    color: rgba(64, 64, 64, .5);
    margin-top: 15px;
}
.inadvantages .incolumnfr{
    color: #939393;
    line-height: 50px;
}
.inadvantages .incolumnfr:hover{
    color: #fb5d26;
}
.inadvantages ul li{
    width: 31.33%;
    margin: 50px 3% 0 0;
    background: #fff;
    border-radius: 12px;
    text-align: center;
    padding: 30px;
    position: relative;
    top: 0;
    transition-duration: 1s;
}
.inadvantages ul li:nth-child(3){
    margin-right: 0;
}
.inadvantages ul li:hover{
    top: -10px;
}
.inadvantages ul li img{
    margin: auto;
}
.inadvantages ul li .list1{
    color: #404040;
    font-size: 24px;
    font-weight: 100;
    padding-bottom: 20px;
    margin: 30px 0;
    position: relative;
}
.inadvantages ul li .list1:before{
    content: '';
    width: 30px;
    height: 1px;
    background: #a2a2a2;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -15px;
}
.inadvantages ul li .list2{
    color: #6c6c6c;
    line-height: 32px;
}
.inadvantages ul li .list3{
    width: 47px;
    height: 47px;
    color: #fff;
    font-size: 30px;
    font-weight: 100;
    line-height: 45px;
    background: #b7b7b7;
    border-radius: 50%;
    margin: 30px auto 0;
}
.inabout{
    padding-bottom: 70px;
    border-bottom: 1px solid #e6e5e5;
    overflow: hidden;
}
.inabout .inaboutfl{
    width: 46%;
    padding-top: 80px;
}
.inabout .inaboutfl .namemark{
    color: #585858;
    font-size: 50px;
    text-align: right;
    position: relative;
}
.inabout .inaboutfl .namemark:before{
    content: '';
    width: 45px;
    height: 7px;
    background: #585858;
    position: absolute;
    top: 24px;
    right: 240px;
}
.inabout .inaboutfl .description{
    color: #585858;
    line-height: 30px;
    margin: 40px 0;
}
.inabout .inaboutfl .inaboutmore{
    display: block;
    color: #fb5d26;
    text-align: right;
}
.inabout .inaboutfl .inaboutmore img{
    display: inline-block;
    position: relative;
    left: -40px;
    opacity: .1;
    transition-duration: 1s;
}
.inabout .inaboutfl .inaboutmore:hover img{
    left: -20px;
    opacity: 1;
}
.inabout .inaboutfr{
    width: 50%;
}
.innews{
    padding: 70px 0 50px;
    overflow: hidden;
}
.innews ul li{
    width: 29.33%;
    margin-right: 6%;
}
.innews ul li:nth-child(3n){
    margin-right: 0;
}
.innews ul li a{
    display: block;
}
.innews ul li a .imgurl{
    overflow: hidden;
}
.innews ul li a .imgurl img{
    width: 100%;
}
.innews ul li a .title{
    margin: 30px 0 20px;
    color: #212121;
    font-size: 18px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.innews ul li a:hover .title{
    color: #fb5d26;
}
.innews ul li a .description{
    color: #939393;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.infeed{
    background: url(../images/infeedbj.jpg) top center no-repeat;
    padding: 100px 0;
    overflow: hidden;
}
.infeed .infeedbj{
    background: #fff;
    box-shadow: 0 5px 30px rgba(8, 6, 7, .1);
    border-radius: 12px;
    text-align: center;
    padding: 80px 100px;
}
.infeed .infeedbj .title1{
    color: #2d2d2d;
    font-size: 25px;
    font-weight: 100;
}
.infeed .infeedbj .title2{
    color: #a5a5a5;
    font-size: 16px;
    line-height: 24px;
    margin: 30px 0 50px;
}
.infeed .infeedbj .ftype_input{
    padding-bottom: 20px;
}
.infeed .infeedbj .ftype_input input{
    display: block;
    width: 32%;
    margin-right: 2%;
    height: 40px;
    color: #acacac;
    padding: 0 20px;
    background: 0;
    outline: 0;
    border: 1px solid #e1e7ee;
}
.infeed .infeedbj .ftype_input input:nth-child(3){
    margin-right: 0;
}
.infeed .infeedbj .ftype_textarea{
    padding-bottom: 40px;
}
.infeed .infeedbj .ftype_textarea textarea{
    display: block;
    width: 100%;
    height: 90px;
    color: #acacac;
    line-height: 30px;
    padding: 20px;
    background: 0;
    outline: 0;
    border: 1px solid #e1e7ee;
}
.infeed .infeedbj .submit{
    display: block;
    width: 225px;
    height: 55px;
    color: #fff;
    border-radius: 50px;
    margin: auto;
    background: #fb5d26;
    outline: 0;
    border: 0;
}
/*index*/

/*foot*/
#footer{
    position: relative;
    z-index: 2;
}
#footer .footcon{
    background: #fafafa;
    padding: 100px 0 50px;
}
#footer .footcon .footnav{
    width: 30%;
}
#footer .footcon .footnav dl{
    width: 50%;
    background: url(../images/footnav.jpg) left center no-repeat;
    padding-left: 25px;
}
#footer .footcon .footnav a{
    color: #505050;
    line-height: 30px;
}
#footer .footcon .footnav a:hover{
    color: #fb5d26;
}
#footer .footcon .footadd{
    width: 30%;
    padding-left: 3%;
}
#footer .footcon .footadd p{
    background: url(../images/footnav.jpg) left center no-repeat;
    padding-left: 25px;
    color: #505050;
    font-size: 14px;
    line-height: 40px;
    margin: 0;
}
#footer .footcon .footfx{
    width: calc(40% - 188px);
    padding-top: 110px;
}
#footer .footcon .footfx a{
    display: block;
    margin-right: 10px;
}
#footer .footcon .foot2wm{
    width: 188px;
}
#footer .foottail{
    padding: 30px 0;
    background: #fafafa;
    border-top: 1px solid #eaeaea;
}
#footer .foottail .footright,
#footer .foottail .footother{
    color: #2d2d2d;
    line-height: 20px;
}
#footer .foottail .footright a{
    color: #2d2d2d;
}
#footer .foottail .footother a{
    display: inline-block;
    color: #2d2d2d;
    margin-top: 10px;
}
#footer .foottail .tailimg{
    position: relative;
    left: 0;
}
#footer .foottail .tailimg:hover{
    left: -5px;
}
/*foot*/

/*about*/
.about{
    overflow: hidden;
}
.about .namemark{
    color: #585858;
    font-size: 50px;
    font-weight: 100;
    letter-spacing: 5px;
    text-align: center;
    padding: 50px 0 25px;
    position: relative;
}
.about .namemark:before{
    content: '';
    width: 100px;
    height: 4px;
    background: #585858;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -50px;
}
.about .content{
    color: #585858;
    font-size: 18px;
    line-height: 40px;
    margin: 40px 0 20px;
}
.about .aboutqywh{
    background: #fbfbfb;
    text-align: center;
    padding: 50px 0 70px;
    overflow: hidden;
}
.about .aboutqywh .qywhtitle1{
    color: #404040;
    font-size: 28px;
    font-weight: 100;
}
.about .aboutqywh .qywhtitle2{
    color: #939393;
    padding: 30px 0 50px;
}
.about .aboutqywh ul li{
    width: 31.33%;
    margin-right: 3%;
    box-shadow: 0 5px 20px rgba(8, 6, 7, .1);
    border-radius: 10px;
    overflow: hidden;
    min-height: 420px;
}
.about .aboutqywh ul li:nth-child(3n){
    margin-right: 0;
}
.about .aboutqywh ul li img{
    width: 100%;
}
.about .aboutqywh ul li .title1{
    color: #404040;
    font-size: 24px;
    font-weight: 100;
    padding: 30px 0;
}
.about .aboutqywh ul li .title2{
    color: #6c6c6c;
    line-height: 25px;
    padding: 0 20px;
}
.about .aboutwork{
    padding: 0 0 50px;
    text-align: center;
}
.about .aboutwork ul{
    padding: 20px 0 0;
}
.about .aboutwork ul li{
    width: 24.25%;
    margin: 20px 1% 0 0;
}
.about .aboutwork ul li:nth-child(4n){
    margin-right: 0;
}
.about .aboutwork ul li .imgurl{
    border-radius: 10px;
    overflow: hidden;
}
.about .aboutwork ul li .imgurl img{
    width: 100%;
}
.about .aboutwork ul li .title{
    color: #000;
    font-size: 20px;
    padding: 20px 0 10px;
}
/*about*/

/*product*/
.navpro{
    border-bottom: 1px solid #e6e5e5;
    text-align: center;
}
.navpro ul li{
    display: inline-table;
    margin: 0 20px;
    padding: 20px 0;
    position: relative;
}
.navpro ul li:before{
    content: '';
    width: 100%;
    height: 5px;
    background: #fb5d26;
    position: absolute;
    left: 0;
    bottom: -3px;
    transform: scale(0,1);
    transition-duration: 1s;
}
.navpro ul li.hover:before,
.navpro ul li:hover:before{
    transform: scale(1,1);
}
.navpro ul li .overflow{
    height: 40px;
    line-height: 40px;
    overflow: hidden;
}
.navpro ul li .overflow a{
    display: block;
    color: #353535;
    font-size: 16px;
    position: relative;
    top: -40px;
    transition-duration: 1s;
}
.navpro ul li:hover .overflow a,
.navpro ul li.hover .overflow a{
    color: #fb5d26;
    top: 0;
}
.product{
    overflow: hidden;
}
.product ul li{
    width: 30.66%;
    margin: 4% 4% 0 0;
}
.product ul li:nth-child(3n){
    margin-right: 0;
}
.product ul li a{
    display: block;
    box-shadow: 0 0 20px rgba(8, 6, 7, .1);
    border-radius: 12px;
    padding: 10px;
    text-align: center;
    overflow: hidden;
}
.product ul li a .imgurl{
    border-bottom: 1px solid #efefef;
    overflow: hidden;
}
.product ul li a .line{
    position: relative;
}
.product ul li a .line:before{
    content: '';
    width: 70px;
    height: 5px;
    background: #fb5d26;
    position: absolute;
    top: -3px;
    left: 50%;
    margin-left: -35px;
}
.product ul li a .title{
    margin: 20px 0 0;
    color: #353535;
    font-size: 20px;
    line-height: 50px;
    height: 50px;
    overflow: unset;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.product ul li a:hover .title{
    color: #fb5d26;
}
.product ul li a .text{
    margin: 0 0 10px;
    color: #353535;
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
/*showproduct*/
.showproduct{  padding: 50px 0;  }
/*<!--第一部分-->*/
.showproduct .proone{  border: 1px solid #eee;  border-radius: 5px;  padding: 30px;  }
.showproduct .proone .proimgurl{  width: 440px;  }
.showproduct .proone .prodisplayimg{  width: 90px;  margin-left: 20px;  position: relative;  }
.showproduct .proone .proonefr{  width: calc(100% - 600px);  }
.showproduct .proone .proonefr .proonetitle{  color: #333;  line-height: 30px;  padding-top: 20px;  }
.showproduct .proone .proonefr .proonename{  color: #333;  line-height: 30px;  border-bottom: 1px solid #eee;  padding-bottom: 20px;  }
.showproduct .proone .proonefr .content{  color: #333;  line-height: 30px;  border-bottom: 1px solid #eee;  padding: 20px 0;  }
.showproduct .proone .proonefr .content p br{  display: none;  }
.showproduct .proone .proonefr .prooneshare{  margin-top: 30px;  }
.showproduct .proone .proonefr .prooneshare a{  display: inline-block;  color: #fff;  font-size: 18px;  background: #333;  width: 50px;  line-height: 50px;  text-align: center;  border-radius: 5px;  overflow: hidden;  margin: 0 5px 5px 0;  }
.showproduct .proone .proonefr .prooneshare a.procon{  width: 180px;  }
.showproduct .proone .proonefr .prooneshare a.procon i{  width: 60px;  line-height: 50px;  border-right: 1px solid #888;  }
.showproduct .proone .proonefr .prooneshare .pro2wm:before{  border-left: 8px solid #fff;  border-right: 0;  top: 15px;  left: -5px;  right: auto;  }
.showproduct .proone .proonefr .prooneshare .pro2wm:after{  box-shadow: 3px 0 10px rgba(0, 0, 0, .2);  top: 18px;  left: -5px;  right: auto;  }
.showproduct .proone .proonefr .prooneshare .pro2wm .wxewm{  left: auto;  right: 60px;  bottom: -25px;  }
.showproduct .proone .proonefr .prooneshare .pro2wm .wxewm img{  width: 100%;  height: 100%;  }
/*<!--第二部分-->*/
.showproduct .protwo{  font-family: 'Arial';  margin-top: 50px;  padding: 10px 0;  position: relative;  border-top: 1px dotted #ccc;  border-bottom: 1px dotted #ccc;  }
.showproduct .protwo:before{  content: '';  width: 1px;  height: 60px;  background: #ccc;  position: absolute;  top: 50%;  left: 50%;  margin-top: -30px;  }
.showproduct .protwo .page_left,
.showproduct .protwo .page_right{  width: 50%;  }
.showproduct .protwo .page_left a,
.showproduct .protwo .page_right a{  display: block;  padding: 20px;  border-radius: 5px;  }
.showproduct .protwo .page_left a{  margin-right: 30px;  text-align: left;  }
.showproduct .protwo .page_right a{  margin-left: 30px;  text-align: right;  }
.showproduct .protwo .page_left a:hover,
.showproduct .protwo .page_right a:hover{  background: #fb5d26;  }
.showproduct .protwo .page_left a .page1,
.showproduct .protwo .page_right a .page1{  color: #393939;  border: 1px solid #393939;  width: 40px;  height: 40px;  line-height: 40px;  text-align: center;  font-size: 20px;  }
.showproduct .protwo .page_left a .page1{  margin-right: 20px;  }
.showproduct .protwo .page_right a .page1{  margin-left: 20px;  }
.showproduct .protwo .page_left a:hover .page1,
.showproduct .protwo .page_right a:hover .page1{  color: #fff;  border: 1px solid #fff;  }
.showproduct .protwo .page_left a .page2,
.showproduct .protwo .page_right a .page2{  font-size: 16px;  color: #434343;  padding: 3px;  }
.showproduct .protwo .page_left a:hover .page2,
.showproduct .protwo .page_right a:hover .page2{  color: #fff;  }
.showproduct .protwo .page_left a .page3,
.showproduct .protwo .page_right a .page3{  font-size: 14px;  color: #434343;  padding: 3px;  }
.showproduct .protwo .page_left a:hover .page3,
.showproduct .protwo .page_right a:hover .page3{  color: #fff;  }
/*product*/

/*news*/
.navnews .navtitle{
    color: #353535;
    font-size: 28px;
    font-weight: 100;
    line-height: 80px;
}
.news.innews{
    padding: 0;
    overflow: hidden;
}
.news ul li{
    margin: 50px 6% 0 0;
}
/*shownews*/
.shownews{
    padding-top: 50px;
    overflow: hidden;
}
.shownews .title{
    color: #333;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}
.shownews .updatetime{
    color: #888;
    text-align: center;
    border-bottom: 1px solid #ccc;
    padding: 20px 0;
}
.shownews .content{
    color: #333;
    font-size: 14px;
    line-height: 24px;
    padding: 20px 0;
}
.shownews .detailpage{
    color: #333;
    padding: 30px 0 50px;
    border-top: 1px solid #ccc;
}
.shownews .detailpage p{
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.shownews .detailpage p a{
    color: #333;
    position: relative;
    left: 0;
}
.shownews .detailpage p a:hover{
    color: #fb5d26;
    text-decoration: underline;
    left: 10px;
}
.shownews .detailpage .more2{
    color: #fff;
    background: #fb5d26;
    border-radius: 5px;
    padding: 15px 30px;
}
/*news*/

/*contact*/
.contact{
    padding: 80px 0;
    overflow: hidden;
}
.contact .contactadd{
    width: 42%;
    box-shadow: 5px 5px 15px rgba(8, 6, 7, .1);
    padding: 66px 20px;
    font-weight: 100;
}
.contact .contactadd .webname{
    color: #8a8a8a;
    font-size: 34px;
    padding: 0 25px 50px;
}
.contact .contactadd .content{
    border-top: 1px solid #ededed;
}
.contact .contactadd .content p{
    color: #333333;
    font-size: 20px;
    line-height: 30px;
    padding: 15px 50px;
    border-bottom: 1px solid #ededed;
    margin: 0;
}
.contact .contactadd .qgfwrx{
    color: #8a8a8a;
    font-size: 20px;
    text-align: center;
    padding: 50px 0 25px;
}
.contact .contactadd .qgfwrx a{
    color: #8a8a8a;
}
.contact .contactadd .gxgjtitle{
    color: #8a8a8a;
    font-size: 24px;
    text-align: center;
    letter-spacing: 8px;
}
.contact .map{
  
    height: 580px;
    border: 2px solid #fff;
    border-radius: 12px;
    overflow: hidden;
}
/*contact*/
@media (max-width: 1400px){
    #header .headerbj .headlogo,
    #header.height .headerbj .headlogo{
        height: 70px;
    }
    #header .headerbj .headnav ul li,
    #header.height .headerbj .headnav ul li{
        padding: 15px 0;
    }
    #mcbanner{
        padding-top: 70px;
    }
}
@media (max-width: 1200px){
    #header .headerbj .headlogo,
    #header.height .headerbj .headlogo{
        padding: 5px 0 5px 10px;
    }
    #header .headerbj .headnav ul li,
    #header.height .headerbj .headnav ul li{
        margin-right: 25px;
    }
    #header .headerbj .headnav ul li a{
        font-size: 14px;
        padding: 0 25px;
    }
    .navpro ul li{
        margin: 0 10px;
    }
    .contact .contactadd,
    .contact .map{
        width: 48%;
    }
    .showproduct .proone .proimgurl .cloud-zoom-big{
        display: none !important;
    }
}
/*手机版*/
#header .menubutton{  display: none;  width: 30px;  height: 30px;  cursor: pointer;  margin: 14px 12px 6px 0;  }
#header .menubutton .menuicon{  height: 2px;  margin-bottom: 8px;  background: #fb5d26;  }
#header .menubutton .menuicon.top{ animation:icon01 linear infinite 2s; }
#header .menubutton .menuicon.middle{ animation:icon02 linear infinite 2s; }
#header .menubutton .menuicon.bottom{ animation:icon03 linear infinite 2s; }
@keyframes icon01{ 0%{ width:100%;} 25%{ width:25%;} 100%{ width:100%;} }
@keyframes icon02{ 0%{ width:100%;} 50%{ width:25%;} 100%{ width:100%;} }
@keyframes icon03{ 0%{ width:100%;} 75%{ width:25%;} 100%{ width:100%;} }
/*导航*/
.menumain{  display: none;  background: #fff;  width: 100%!important;  height: 100%;  overflow: auto!important;  position: fixed;  top: 0;  left: 0;  z-index: 1000;  opacity: 1!important;  }
.menumain .menubox{  margin: 50px 5% 80px;  padding: 1px 0;  }
.menumain .menubox .menunav{  overflow: hidden;  }
.menumain .menubox .menunav .menuone a{  display: block;  color: #333;  font-size: 16px;  line-height: 20px;  margin: 30px 0 0;  }
.menumain .menubox .menunav .menuone.home a{  padding-bottom: 20px;  border-bottom: 1px solid #f1f1f1;  }
.menumain .menubox .menunav .menuone .menutwo{  float: left;  position: relative;  }
.menumain .menubox .menunav .menuone .menutwo.bai{  width: 100%;  }
.menumain .menubox .menunav .menuone .menutwo:before{  content: '';  width: 3px;  height: 3px;  background: rgba(0, 0, 0, .2);  border-radius: 50%;  position: absolute;  left: -8px;  bottom: 8px;  }
.menumain .menubox .menunav .menuone .menutwo a{  color: #888;  font-size: 15px;  margin: 30px 20px 0 5px;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree{  float: left;  position: relative;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree:before{  content: '';  width: 3px;  height: 3px;  background: rgba(0, 0, 0, .2);  border-radius: 50%;  position: absolute;  left: -6px;  bottom: 8px;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree a{  color: #bbb;  font-size: 14px;  margin: 20px 20px 0 10px;  }
.menumain .menubox .menunav a.hover{  color: #fb5d26 !important;  }
/*语言*/
.menumain .menubox .lang{  margin-top: 30px;  text-align: center;  overflow: hidden;  }
.menumain .menubox .lang a{  float: left;  width: 98%;  height: 40px;  line-height: 40px;  border: 1px solid #f1f1f1;  margin: 2% 1%;  border-radius: 5px;  box-sizing: border-box;  }
.menumain .menubox .lang a img{  display: inline-block;  width: 25px;  margin-right: 10px;  position: relative;  top: -2px;  }
.menumain .menubox .lang a span{  display: inline-block;  color: #333;  font-size: 15px;  position: relative;  top: -1px;  }
/*底部菜单*/
#mobtool{  display: none;  width: 100%;  height: 50px;  background: #fb5d26;  position: fixed;  left: 0;  bottom: 0;  z-index: 1001;  }
#mobtool ul li{  float: left;  width: 20%;  text-align: center;  border-left: 1px solid rgba(255, 255, 255, .2);  box-sizing: border-box;  }
#mobtool ul li:nth-child(1){  border: none;  }
#mobtool ul li a.menubutton{  background: rgba(255, 255, 255, .2);  }
#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;  font-size: 12px;  text-transform: uppercase;  }
/*ios下载到桌面*/
.u-layer-ath{display: none;background:url(../images/ath.png) no-repeat;z-index:99999999;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;}
/*list分类*/
#sortpro{  height: 40px;  line-height: 40px;  text-align: center;  background: #fff;  border-bottom: 1px solid #fb5d26;  overflow: hidden;  }
#sortpro .sortpro_left{  float: left;  width: 65%;  color: #fff;  font-size: 14px;  background: #fb5d26;  }
#sortpro .sortpro_right{  float: right;  width: 35%;  color: #000;  font-size: 14px;  }
#sort_content{  width: 100%;  height: 100%;  overflow: hidden;  background: #eee;  position: fixed;  top: 0;  left: 0;  z-index: 10001;  -webkit-transform: translate3d(0px, 100%, 0px);  -moz-transform: translate3d(0px, 100%, 0px);  transform: translate3d(0px, 100%, 0px);  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);  -moz-transition: -moz-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);  -o-transition: -o-transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19);  transition: transform 0.3s cubic-bezier(0.55, 0.055, 0.675, 0.19)  }
#sort_content.show{  -webkit-transform: translate3d(0px, 0%, 0px);  -moz-transform: translate3d(0px, 0%, 0px);  transform: translate3d(0px, 0%, 0px);  -webkit-transition: -webkit-transform 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000);  -moz-transition: -moz-transform 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000);  -o-transition: -o-transform 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000);  transition: transform 0.3s cubic-bezier(0.165, 0.840, 0.440, 1.000)  }
#sort_content .asort{  height: 100%;  }
.asort .hd{  height: 60px;  background: #fb5d26;  }
.asort .hd .fl{  color: #fff;  font-size: 18px;  line-height: 60px;  padding: 0 20px;  }
.asort .hd .fr{  width: 30px;  height: 30px;  margin: 15px;  background: url(../images/proclose.jpg);  background-size: cover;  }
.asort .ct{  height: calc(100% - 60px);  padding: 2%;  overflow: auto;  }
.asort .ct ul{  background: #fff;  border-top: 1px solid #eee;  }
.asort .ct ul li{  padding: 0 15px;  border-bottom: 1px solid #eee;  }
.asort .ct ul li a{  display: block;  }
.asort .ct ul li a p{  display: inline-block;  width: calc(100% - 30px);  height: 58px;  line-height: 58px;  overflow: hidden;  color: #333;  font-size: 14px;  text-align: left;  }
.asort .ct ul li a i{  float: right;  width: 15px;  height: 15px;  border: 3px solid #ddd;  background: #fff;  border-radius: 50%;  margin-top: 22px;  }
.asort .ct ul li a.hover i{  border: 3px solid #fb5d26;  }
.asort .ct ul .navdown li{  padding: 0 20px;  border-bottom: 1px dotted #eee;  }
.asort .ct ul .navdown li a p{  display: block;  width: 100%;  height: 50px;  line-height: 50px;  color: #aaa;  }
.asort .ct ul li a.hover p{  color: #fb5d26;  }
/*手机版*/
@media (max-width: 992px){
    #header .menubutton, #mobtool, .u-layer-ath{  display: block;  }
    .onlineservice ul li{  width: 30px!important;  height: 31px!important;  }
    .onlineservice ul li i{  width: 30px!important;  line-height: 30px!important;  font-size: 14px!important;  }
    .onlineservice ul li i.fa-mobile{  font-size: 20px!important;  }
    .onlineservice ul li span{  display: none;  }
    .onlineservice ul li.morelist .list a{  line-height: 30px!important;  }
    .popup-wechat img{  width: 200px;  }
    .mfp-zoom-out-cur, .mfp-wrap{  width: 100% !important;  height: 100% !important;  overflow: hidden;  }
    .mfp-wrap .mfp-arrow-left{  margin-left: -47%;  }
    .mfp-wrap .mfp-arrow-right{  margin-right: -47%;  }
    .pcweb{  display: none;  }
    .mobileweb{  display: block;  }
    /*index*/
    #header .headerbj .headnav{
        display: none;
    }
    #header .headerbj .headlogo,
    #header.height .headerbj .headlogo{
        height: 50px;
        padding: 5px 0;
    }
    #mcbanner{
        padding-top: 50px;
    }
    #mcbanner .indexbanner .swiper-button-prev,
    #mcbanner .indexbanner .swiper-button-next{
        display: none;
    }
    #mcbanner .indexbanner .swiper-pagination .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    .incolumn ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .incolumn ul li a{
        box-shadow: 0 5px 20px rgba(8, 6, 7, .1);
    }
    .inadvantages{
        padding: 50px 0;
    }
    .inadvantages .incolumnfr{
        display: none;
    }
    .inadvantages ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .inabout{
        padding: 50px 0;
    }
    .inabout .inaboutfl{
        width: 100%;
        padding: 0 0 50px;
    }
    .inabout .inaboutfr{
        width: 100%;
    }
    .innews{
        padding: 20px 0 50px;
    }
    .innews ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .infeed{
        padding: 50px 0;
    }
    .infeed .infeedbj{
        padding: 50px 30px;
    }
    .infeed .infeedbj .title2{
        margin: 30px 0;
    }
    .infeed .infeedbj .ftype_input input{
        width: 100%;
        margin: 20px 0 0;
    }
    #footer .footcon{
        display: none;
    }
    #footer .foottail{  padding: 30px 0 80px;  text-align: center;  }
    #footer .foottail a{  display: block;  }
    #footer .foottail .footright,
    #footer .foottail .tailimg{  width: 100%;  }
    #footer .foottail .tailimg img{  margin: 15px auto 0;  }
    #footer .foottail .footother{  display: none;  }

    .about .namemark{
        font-size: 30px;
        padding: 40px 0 20px;
    }
    .about .content{
        font-size: 16px;
        line-height: 2;
    }
    .about .aboutqywh{
        padding: 50px 0 20px;
    }
    .about .aboutqywh ul li{
        width: 100%;
        margin: 0 0 30px;
        min-height: unset;
        padding-bottom: 30px;
    }
    .about .aboutwork ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .navpro{
        display: none;
    }
    .product ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .showproduct{
        padding: 20px 0 40px;
    }
    .showproduct .proone{
        padding: 20px;
    }
    .showproduct .proone .proimgurl, .showproduct .proone .prodisplayimg{
        display: none;
    }
    .showproduct .proone .mobprodisplayimg .swiper-pagination-bullet-active{
        background: #fb5d26;
    }
    .showproduct .proone .proonefr{
        width: 100%;
    }
    .showproduct .proone .proonefr .prooneshare .pro2wm:nth-child(4){
        display: none;
    }
    .showproduct .protwo .page_left a .page1,
    .showproduct .protwo .page_left a .page3,
    .showproduct .protwo .page_right a .page1,
    .showproduct .protwo .page_right a .page3{
        display: none;
    }
    #message.show #center{  width: 90%;  top: 50px;  transform: translate(-50%, 0);  }
    #message #center #feedback{  padding: 20px 0 20px 20px;  margin-bottom: 50px;  }
    #message #center #feedback .pro{  width: calc(100% - 30px);  margin-bottom: 15px;  }
    #message #center #feedback dl{  width: 100%;  padding: 0 30px 15px 0;  }

    .shownews .detailpage .more2{
        display: none;
    }
    .contact{
        padding: 30px 0;
    }
    .contact .contactadd{
        width: 100%;
        padding: 40px 20px;
        margin-bottom: 30px;
    }
    .contact .contactadd .webname{
        font-size: 28px;
        padding: 0 0 30px 15px;
    }
    .contact .contactadd .content p{
        font-size: 18px;
        padding: 15px;
    }
    .contact .contactadd .qgfwrx{
        font-size: 18px;
        padding: 30px 0;
    }
    .contact .contactadd .gxgjtitle{
        font-size: 20px;
        letter-spacing: 5px;
    }
    .contact .map{
        width: 100%;
        height: 300px;
    }
}