@charset "utf-8";

@font-face{
    font-family: 'DIN1451MittelschriftRegular';
    src: url('../fonts/DIN1451MittelschriftRegular.eot');
    src: url('../fonts/DIN1451MittelschriftRegular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/DIN1451MittelschriftRegular.woff2') format('woff2'),
    url('../fonts/DIN1451MittelschriftRegular.woff') format('woff'),
    url('../fonts/DIN1451MittelschriftRegular.ttf') format('truetype'),
    url('../fonts/DIN1451MittelschriftRegular.svg#NeuesBauenDemo') format('svg');
    font-weight:normal;
    font-style:normal
}

/*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,figure{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 'DIN1451MittelschriftRegular';}
/* 重置列表元素 */
ul,ol,li,dl,dt,dd{ list-style: none; }
ul:after{ content: ''; clear: both; display: block; }
/* 重置文本格式元素 */
a{ color: #000000; text-decoration: none; transition-duration: 1s; }
a:hover,a:focus{ color: #0067b0; 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%; border: 0; }
.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: 'DIN1451MittelschriftRegular';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*/

/*分页*/
.mc_pager{font-family:'Arial';text-align:center;padding:50px 0;}
.mc_pager a{background:#333;color:#fff;width:30px;height:30px;line-height:30px;margin:3px;display:inline-block;}
.mc_pager a.curpage{background:#0067b0;}
.mc_pager a:nth-child(3),.mc_pager a:nth-last-child(2){width:50px;font-size: 0;}
.mc_pager a:nth-child(3):before{content:'◀';font-size:14px;}
.mc_pager a:nth-last-child(2):before{content:'▶';font-size:14px;}
.mc_pager .pageinfo,.mc_pager .homepage,.mc_pager .endpage{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: 70px;
    padding: 5px 0 5px 30px;
}
#header .headerbj .headlogo img{
    height: 100%;
}
#header .headerbj .headsearch{
    color: #000;
    font-size: 18px;
    line-height: 70px;
    cursor: pointer;
    margin: 0 20px 0 50px;
}
#header .headersearch{
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    position: fixed;
    z-index: 10000;
    top: 0;
    left: 0;
}
#header .headersearch.show{
    display: block;
}
#header .headersearch .proclose{
    cursor: pointer;
    position: absolute;
    top: 10%;
    right: 5%;
}
#header .headersearch form{
    width: 800px;
    position: absolute;
    top: 50%;
    left: 50%;
    -webkit-transform: translate(-50%, -50%);
    transform: translate(-50%, -50%);
}
#header .headersearch form .inputtext{
    width: 700px;
    height: 50px;
    padding: 0 20px;
    background: #fff;
    outline: 0;
    border: 0;
}
#header .headersearch form .inputsubmit{
    width: 100px;
    height: 50px;
    color: #fff;
    font-size: 20px;
    background: #0067b0;
    outline: 0;
    border: 0;
}
#header .headerbj .headmail{
    color: #94959b;
    font-size: 18px;
    line-height: 70px;
}
#header .headerbj .headmail i{
    padding-right: 10px;
}
#header .headerbj .headnav{
    display: block;
}
#header .headerbj .headnav > ul > li{
    margin-right: 50px;
}
#header .headerbj .headnav > ul > li .overflow{
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    margin: 15px 0;
    position: relative;
}
#header .headerbj .headnav > ul > li .overflow:before{
    content: '';
    width: 100%;
    height: 3px;
    background: #0067b0;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scale(0,1);
    transition-duration: 1s;
}
#header .headerbj .headnav > ul > li.hover .overflow:before,
#header .headerbj .headnav > ul > li:hover .overflow:before{
    transform: scale(1,1);
}
#header .headerbj .headnav > ul > li .overflow a{
    display: block;
    color: #403f40;
    font-size: 18px;
    position: relative;
    top: -40px;
    transition-duration: 1s;
}
#header .headerbj .headnav > ul > li.hover .overflow a,
#header .headerbj .headnav > ul > li:hover .overflow a{
    color: #0067b0;
    top: 0;
}
#header .headerbj .headnav > ul > li .headnavlist{
    width: 100%;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 0 2px rgba(0, 0, 0, .1);
    max-height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    transition-duration: 1s;
}
#header .headerbj .headnav > ul > li:hover .headnavlist{
    max-height: 300px;
}
#header .headerbj .headnav > ul > li .headnavlist ul{
    max-width: 1200px;
    margin: auto;
    padding: 15px 30px;
    text-align: right;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li{
    display: inline-block;
    margin: 15px 0 15px 70px;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li:nth-child(1){
    margin-left: 0;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li a{
    display: block;
    color: #403f40;
    font-size: 18px;
    line-height: 38px;
    border-bottom: 2px solid transparent;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li a.hover,
#header .headerbj .headnav > ul > li .headnavlist ul > li a:hover{
    color: #0067b0;
    border-bottom: 2px solid #0067b0;
}
/*header*/

/*mcbanner*/
#mcbanner{
    margin-top: 70px;
    position: relative;
    z-index: 1;
}
#mcbanner .indexbanner .swiper-pagination{
    bottom: 30px;
}
#mcbanner .indexbanner .swiper-pagination .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    margin: 0 10px;
    background: rgba(255, 255, 255, .5);
    opacity: 1;
}
#mcbanner .indexbanner .swiper-pagination .swiper-pagination-bullet-active{
    background: transparent;
    border: 2px solid #fff;
}
#mcbanner .indexbanner .swiper-button-prev,
#mcbanner .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%;
}
#mcbanner .indexbanner .swiper-button-prev{
    left: 5%;
}
#mcbanner .indexbanner .swiper-button-next{
    right: 5%;
}
/*mcbanner*/

/*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 #0067b0;
}
.more:before{
    content: '';
    width: 180%;
    height: 100%;
    background: #0067b0;
    transform: skew(-30deg);
    position: absolute;
    top: 0;
    left: -200%;
    transition-duration: 1s;
}
.more:hover:before,
a:hover .more:before{
    left: -40%;
}
.more p{
    position: relative;
    z-index: 1;
}

#main{
    position: relative;
    z-index: 2;
}

.inpro{
    background: #fafafa;
    padding: 40px 2%;
    overflow: hidden;
}
.inpro .inpronav{
    width: 350px;
    background: #fff;
    box-shadow: 10px 10px 10px rgba(0, 0, 0, .05);
}
.inpro .inpronav ul li{
    border-bottom: 1px solid #efefef;
}
.inpro .inpronav ul li a{
    display: block;
    overflow: hidden;
}
.inpro .inpronav ul li a .catname{
    color: #474747;
    font-size: 20px;
    line-height: 122px;
    padding-left: 70px;
}
.inpro .inpronav ul li a:hover .catname,
.inpro .inpronav ul li a.hover .catname,
.inpro .inpronav ul li.show a .catname{
    color: #0067b0;
}
.inpro .inpronav ul li a .shuzi{
    color: #f4f4f4;
    font-size: 120px;
    line-height: 100px;
    position: relative;
    top: 20px;
}
.inpro .inpronav ul li a:hover .shuzi,
.inpro .inpronav ul li a.hover .shuzi,
.inpro .inpronav ul li.show a .shuzi{
    color: #0067b0;
}
.inpro .inprolist{
    width: 100%;
    padding: 10px 0 0 2%;
}
.inpro .inprolist .inprotit{
    color: #252824;
    font-size: 20px;
    border-left: 4px solid;
    line-height: 16px;
    padding-left: 16px;
    margin-bottom: 30px;
}
.inpro .inprolist .inpromore{
    font-size: 15px;
}
.inpro .inprolist .inprourl table{
    margin: 0;
}
.inpro .inprolist .inprourl table td{
    padding: 0;
    border: 0;
}
.inpro .inprolist .inprourl ul{
    display: none;
}
.inpro .inprolist .inprourl ul.show{
    display: block;
}
.inpro .inprolist .inprourl ul li{
    width: 23.5%;
    margin-right: 2%;
}
.inpro .inprolist .inprourl ul li:nth-child(4){
    margin-right: 0;
}
.inpro .inprolist .inprourl a{
    display: block;
    background: #fff;
}
.inpro .inprolist .inprourl a .thumb{
    overflow: hidden;
}
.inpro .inprolist .inprourl a .inproname{
    border-top: 2px solid #f3f3f3;
    overflow: hidden;
}
.inpro .inprolist .inprourl a:hover .inproname{
    border-top: 2px solid #0067b0;
    background: #0067b0;
}
.inpro .inprolist .inprourl a .inproname .fa{
    margin: 30px 20px 0 0;
    color: #959595;
    font-size: 18px;
}
.inpro .inprolist .inprourl a:hover .inproname .fa{
    color: #fff;
}
.inpro .inprolist .inprourl a .inproname .title{
    margin: 20px 20px 0;
    color: #020202;
    font-size: 18px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.inpro .inprolist .inprourl a:hover .inproname .title{
    color: #fff;
}
.inpro .inprolist .inprourl a .inproname .name{
    margin: 0 20px 20px;
    color: #474747;
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.inpro .inprolist .inprourl a:hover .inproname .name{
    color: #fff;
}
.inabout{
    border-bottom: 1px solid #f2f2f2;
    padding: 50px 5%;
    overflow: hidden;
}
.inabout .inaboutfl{
    width: 44%;
    margin-top: 80px;
    position: relative;
}
.inabout .inaboutfl .inabout1{
    position: absolute;
    top: 0;
    left: 0;
}
.inabout .inaboutfl .inabout2{
    color: #232425;
    font-size: 60px;
    font-weight: bold;
}
.inabout .inaboutfl .inabout3{
    color: #232425;
    font-size: 36px;
    padding: 10px 0 50px;
}
.inabout .inaboutfl .inabout4{
    color: #4c4c4c;
    font-size: 17px;
    line-height: 34px;
    padding-bottom: 30px;
}
.inabout .inaboutfr{
    width: 47%;
}
.inaboutzs{
    padding: 50px 5%;
    overflow: hidden;
}
.inaboutzs ul li{
    width: 13.42%;
    margin-right: 1%;
}
.inaboutzs ul li:nth-child(7){
    margin-right: 0;
}
.inaboutzs ul li img{
    width: 100%;
}
.innews{
    padding: 50px 5% 80px;
    overflow: hidden;
    position: relative;
}
.innews:before{
    content: '';
    width: 100%;
    height: 50%;
    background: #fafafa;
    position: absolute;
    top: 0;
    left: 0;
}
.innews .innews1{
    color: #a3a3a3;
    font-size: 46px;
    text-align: center;
    position: relative;
    z-index: 1;
}
.innews .innews2{
    color: #e7e7e7;
    font-size: 16px;
    text-align: center;
    padding: 10px 0 50px;
    position: relative;
    z-index: 1;
}
.innews ul li{
    width: 24.25%;
    margin-right: 1%;
}
.innews ul li:nth-child(4){
    margin-right: 0;
}
.innews ul li a{
    display: block;
}
.innews ul li a .thumb{
    border-radius: 5px;
    overflow: hidden;
}
.innews ul li a .thumb img{
    width: 100%;
}
.innews ul li a .title{
    color: #6d6d6d;
    font-size: 18px;
    text-decoration: underline;
    line-height: 100px;
    height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.innews ul li a:hover .title{
    color: #0067b0;
}
.innews ul li a .newsmore{
    color: #b0b0b0;
}
.innews ul li a:hover .newsmore{
    color: #0067b0;
}
.inlink{
    padding: 0 5%;
    overflow: hidden;
}
.inlink ul{
    text-align: center;
    border-top: 1px solid #f3f3f3;
    border-bottom: 1px solid #f3f3f3;
}
.inlink ul li{
    display: inline-block;
    margin: 0 10px;
}
.inlink ul li img{
    max-width: unset;
    height: 120px;
}
/*index*/

/*footer*/
#footer{
    position: relative;
    z-index: 3;
}
#footer .footcon{
    padding: 50px 0;
}
#footer .footcon .footadd{
    width: 400px;
}
#footer .footcon .footadd p{
    color: #464646;
    font-size: 17px;
    line-height: 30px;
}
#footer .footcon .footadd .footshare{
    padding-top: 20px;
    position: relative;
    left: -5px;
}
#footer .footcon .footadd .footshare a{
    display: inline-block;
    width: 40px;
    color: #838383;
    font-size: 16px;
    line-height: 38px;
    text-align: center;
    border: 1px solid #838383;
    margin-left: 6px;
}
#footer .footcon .foot2wm{
    display: none;
    width: 210px;
    margin-left: 40px;
}
#footer .footcon .footfeed{
    width: calc(100% - 400px);
    padding-left: 50px;
}
#footer .footcon .footfeed .ftype_input{
    overflow: hidden;
}
#footer .footcon .footfeed .ftype_input input{
    width: 48%;
    height: 50px;
    color: #414141;
    font-size: 16px;
    outline: 0;
    border: 0;
    border-bottom: 1px solid #d9d9d9;
}
#footer .footcon .footfeed .ftype_textarea textarea{
    margin: 18px 0 20px;
    width: 100%;
    height: 80px;
    color: #414141;
    font-size: 16px;
    outline: 0;
    border: 0;
    border-bottom: 1px solid #d9d9d9;
}
#footer .footcon .footfeed .submit{
    width: 120px;
    height: 40px;
    color: #7f7f7f;
    font-size: 16px;
    background: 0;
    outline: 0;
    border: 1px solid #d9d9d9;
}
#footer .footcon .footfeed .submit:hover{
    color: #fff;
    background: #0067b0;
    border: 1px solid #0067b0;
}
#footer .foottail{
    padding: 30px 0;
    background: #151515;
}
#footer .foottail .footright{
    color: #fff;
    line-height: 20px;
}
#footer .foottail .footright a{
    color: #fff;
}
#footer .foottail .footright a:hover{
    color: #0067b0;
}
#footer .foottail .footbanquan{
    position: relative;
    left: 0;
}
#footer .foottail .footbanquan:hover{
    left: -5px;
}
@media(min-width: 1200px){
    #footer.infooter .container{
        width: 100%;
        padding: 0 calc(5% + .9375rem);
    }
    #footer.infooter .footcon .foot2wm{
        display: block;
    }
    #footer.infooter .footcon .footfeed{
        width: calc(100% - 650px);
    }
}
/*footer*/

/*product*/
.product{
    overflow: hidden;
}
.product .inpro{
    padding-bottom: 0;
}
.product .inpro .inpronav{
    margin-bottom: 80px;
}
.product .inpro .inprolist .inprotit{
    margin-bottom: 0;
}
.product .inpro .inprolist .inprourl ul{
    display: block;
}
.product .inpro .inprolist .inprourl ul li{
    width: 23.5%;
    margin: 30px 2% 0 0;
}
.product .inpro .inprolist .inprourl ul li:nth-child(4n){
    margin-right: 0;
}
.product .inpro .inprolist .inprourl ul li a{
    width: auto;
    margin: 0;
}
/*showproduct*/
.showproduct{  overflow: hidden;  }
.showproduct .showprowzdh{  color: #262626;  font-size: 16px;  line-height: 60px;  background: #f8f8f8;  }
.showproduct .showprowzdh .wzdhback{  color: #0067b0;  }
/*<!--第一部分-->*/
.showproduct .proone{  padding: 50px 0;  }
.showproduct .proone .proimgurl{  width: 480px;  margin: auto;  }
.showproduct .proone .prodisplayimg{  width: 100px;  margin-left: 20px;  position: relative;  }
.showproduct .proone .proonefr{  width: calc(100% - 650px);  }
.showproduct .proone .proonefr .proonetitle{  color: #585858;  font-size: 28px;  line-height: 30px;  }
.showproduct .proone .proonefr .proonename{  color: #585858;  font-size: 24px;  line-height: 30px;  border-bottom: 1px dotted #585858;  padding-bottom: 10px;  }
.showproduct .proone .proonefr .content{  color: #585858;  font-size: 18px;  line-height: 30px;  padding-top: 20px;  }
.showproduct .proone .proonefr .content p br{  display: none;  }
.showproduct .proone .proonefr .prooneshare{  padding-top: 30px;  }
.showproduct .proone .proonefr .prooneshare a{  display: inline-block;  color: #7c7c7c;  font-size: 20px;  border: 1px solid #7c7c7c;  width: 50px;  line-height: 48px;  text-align: center;  overflow: hidden;  margin: 0 5px 5px 0;  }
.showproduct .proone .proonefr .prooneshare a.procon{  width: 175px;  color: #fff;  background: #0067b0;  border: 1px solid #0067b0;  }
.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: -30px;  }
.showproduct .proone .proonefr .prooneshare .pro2wm .wxewm img{  width: 100%;  height: 100%;  }
/*<!--第二部分-->*/
.showproduct .protwo{  padding-bottom: 50px;  }
.showproduct .protwo .list{  border-bottom: 2px solid #0067b0;  padding-bottom: 1px;  }
.showproduct .protwo .list li{  width: 33.33%;  color: #fff;  font-size: 22px;  line-height: 55px;  text-align: center;  background: #0067b0;  cursor: pointer;  }
.showproduct .protwo .list li.show{  background: #0362a5;  }
.showproduct .protwo .details .content{  display: none;  color: #585858;  font-size: 18px;  line-height: 30px;  padding-top: 10px;  }
.showproduct .protwo .details .content.show{  display: block;  }
.showproduct .protwo .details .content h1{  color: #0067b0;  font-size: 22px;  border-left: 3px solid;  line-height: 22px;  padding-left: 10px;  margin: 30px 0;  }
.showproduct .protwo .details .product .inpro{
    background: 0;
    padding: 0;
}
.showproduct .protwo .details .product .inpro .inprolist{
    width: 100%;
    padding: 0;
}
.showproduct .protwo .details .product .inpro .inprolist ul li a{
    border: 1px solid #f3f3f3;
}
/*product*/

/*news*/
.news{
    overflow: hidden;
}
.news .newsnav{
    border-bottom: 1px solid #f6f6f6;
    text-align: center;
}
.news .newsnav ul li{
    display: inline-table;
    margin: 0 30px;
    padding: 20px 0;
    position: relative;
}
.news .newsnav ul li:before{
    content: '';
    width: 100%;
    height: 2px;
    background: #0067b0;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scale(0,1);
    transition-duration: 1s;
}
.news .newsnav ul li.hover:before,
.news .newsnav ul li:hover:before{
    transform: scale(1,1);
}
.news .newsnav ul li .overflow{
    height: 40px;
    line-height: 40px;
    overflow: hidden;
}
.news .newsnav ul li .overflow a{
    display: block;
    color: #828282;
    font-size: 18px;
    position: relative;
    top: -40px;
    transition-duration: 1s;
}
.news .newsnav ul li:hover .overflow a,
.news .newsnav ul li.hover .overflow a{
    color: #0067b0;
    top: 0;
}
.news .newslist ul li{
    width: 32%;
    margin: 50px 2% 0 0;
}
.news .newslist ul li:nth-child(3n){
    margin-right: 0;
}
.news .newslist ul li a{
    display: block;
}
.news .newslist ul li a .thumb{
    border-radius: 5px;
    overflow: hidden;
}
.news .newslist ul li a .thumb img{
    width: 100%;
}
.news .newslist ul li a .title{
    color: #6d6d6d;
    font-size: 18px;
    text-decoration: underline;
    line-height: 100px;
    height: 100px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news .newslist ul li a:hover .title{
    color: #0067b0;
}
.news .newslist ul li a .newsmore{
    color: #b0b0b0;
}
.news .newslist ul li a:hover .newsmore{
    color: #0067b0;
}
/*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: #0067b0;
    text-decoration: underline;
    left: 10px;
}
.shownews .detailpage .more2{
    color: #fff;
    background: #0067b0;
    border-radius: 5px;
    padding: 15px 30px;
}
/*news*/

/*about*/
.about{
    overflow: hidden;
}
.about .content{
    color: #4c4c4c;
    font-size: 18px;
    line-height: 30px;
    padding: 50px 0;
}
.about .content h2{
    color: #232425;
    font-size: 60px;
    font-weight: bold;
}
.about .content h3{
    color: #232425;
    font-size: 36px;
    padding: 10px 0 40px;
}
.about .content .aboutzs li{
    float: left;
    width: 22.75%;
    margin: 0 3% 30px 0;
}
.about .content .aboutzs li:nth-child(4n){
    margin-right: 0;
}
.about .content .aboutzs li img{
    width: 100%;
}
.fzlc{
    position: relative;
}
.fzlc:before{
    content: '';
    width: 1px;
    height: 100%;
    background: #f3f3f3;
    position: absolute;
    left: 50%;
    top: 0;
}
.fzlc li{
    width: 50%;
    padding-bottom: 80px;
    position: relative;
}
.fzlc li:nth-child(2n){
    margin-left: 50%;
    padding-left: 80px;
}
.fzlc li:before{
    content: '';
    width: 54px;
    height: 54px;
    background: url(../img/aboutfzlc.png);
    border-radius: 50%;
    position: absolute;
    right: -27px;
    top: 10px;
}
.fzlc li:nth-child(2n):before{
    left: -27px;
}
.fzlc li:after{
    content: '';
    clear: both;
    display: block;
}
.fzlc li p{
    float: left;
    width: 400px;
    line-height: 30px;
}
.fzlc li p strong{
    color: #0067b0;
    padding-right: 10px;
}
/*about*/

/*contact*/
.contact{
    padding: 50px 0;
    overflow: hidden;
}
.contact .content{
    width: 50%;
    padding-right: 4%;
    border-right: 1px solid #f3f3f3;
}
.contact .content ul li{
    border-bottom: 1px solid #e4e4e4;
    padding: 20px 0;
}
.contact .content ul li p{
    color: #8d8d8d;
    font-size: 18px;
    line-height: 30px;
}
.contact .content ul li p:nth-child(1){
    color: #464646;
    font-size: 20px;
}
.contact .content ul li p a{
    color: #8d8d8d;
}
.contact .content ul li p a:hover{
    color: #0067b0;
}
.contact .confeed{
    width: 45%;
}
.contact .confeed input{
    width: 100%;
    height: 100px;
    color: #414141;
    font-size: 16px;
    outline: 0;
    border: 0;
    border-bottom: 1px solid #d9d9d9;
}
.contact .confeed .submit{
    margin-top: 30px;
    width: 150px;
    height: 50px;
    color: #7f7f7f;
    font-size: 16px;
    background: 0;
    outline: 0;
    border: 1px solid #d9d9d9;
}
.contact .confeed .submit:hover{
    color: #fff;
    background: #0067b0;
    border: 1px solid #0067b0;
}
.contact .con2wm{
    width: 150px;
    margin: 50px auto 0;
}
.contact .con2wm p{
    color: #8d8d8d;
    font-size: 16px;
    text-align: center;
    padding-top: 10px;
}
/*contact*/
@media (max-width: 1600px){

}
@media (max-width: 1440px){
    #header .headerbj .headsearch{
        margin-left: 0;
    }
    #header .headerbj .headmail{
        display: none;
    }
    .inpro .inpronav ul li a .catname{
        line-height: 95px;
    }
    .inabout .inaboutfl{
        margin: 0;
    }
}
@media (max-width: 1280px){
    #header .headerbj .headlogo{
        padding: 10px 0;
    }
    .inpro .inpronav ul li a .catname{
        line-height: 86px;
    }
    .inlink ul li{
        margin: 0;
    }
}
@media (max-width: 1024px){
    #header .headerbj .headlogo{
        padding: 15px 0;
    }
    #header .headerbj .headnav > ul > li{
        margin-right: 30px;
    }
    .inpro .inpronav{
        width: 200px;
    }
    .inpro .inpronav ul li a .catname{
        font-size: 16px;
        line-height: 82px;
        padding-left: 20px;
    }
    .inpro .inprolist{
        width: calc(100% - 200px);
    }
    .inabout .inaboutfl{
        width: 100%;
    }
    .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: #0067b0;  }
#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: #333;  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: #fff;  font-size: 16px;  line-height: 20px;  margin: 30px 0 0;  }
.menumain .menubox .menunav .menuone.home a{  padding-bottom: 20px;  border-bottom: 1px solid rgba(255, 255, 255, .2);  }
.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(255, 255, 255, .5);  border-radius: 50%;  position: absolute;  left: -8px;  bottom: 8px;  }
.menumain .menubox .menunav .menuone .menutwo a{  color: rgba(255, 255, 255, .5);  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(255, 255, 255, .5);  border-radius: 50%;  position: absolute;  left: -6px;  bottom: 8px;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree a{  color: rgba(255, 255, 255, .5);  font-size: 14px;  margin: 20px 20px 0 10px;  }
.menumain .menubox .menunav a.hover{  color: #0067b0 !important;  }
/*语言*/
.menumain .menubox .lang{  margin-top: 30px;  text-align: center;  overflow: hidden;  }
.menumain .menubox .lang a{  float: left;  width: 48%;  height: 40px;  line-height: 40px;  border: 1px solid rgba(255, 255, 255, .2);  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: #fff;  font-size: 15px;  position: relative;  top: -1px;  }
/*底部菜单*/
#mobtool{  display: none;  width: 100%;  height: 50px;  background: #333;  border-top: 1px solid rgba(255, 255, 255, .2);  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(/michuanimg/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 #0067b0;  overflow: hidden;  }
#sortpro .sortpro_left{  float: left;  width: 65%;  color: #fff;  font-size: 14px;  background: #0067b0;  }
#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: #0067b0;  }
.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(../showproduct/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 #0067b0;  }
.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: #0067b0;  }
/*手机版*/
@media (max-width: 992px){
    #header .menubutton, #mobtool, .u-layer-ath{  display: block;  }
    .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 .headlogo{
        height: 50px;
        padding: 10px 0;
    }
    #header .headerbj .headsearch,
    #header .headerbj .headnav{
        display: none;
    }
    #mcbanner{  margin-top: 50px;  }
    #mcbanner .indexbanner .swiper-pagination{  bottom: 10px;  }
    #mcbanner .indexbanner .swiper-pagination .swiper-pagination-bullet{  width: 10px;  height: 10px;  margin: 0 5px;  }


.inaboutzs ul li{
     width: 49%;
    margin-right: 2%;
    margin-bottom: 20px;
}
.inaboutzs ul li:nth-child(2n){
    margin-right: 0;
}
.inaboutzs ul li:nth-child(7n){
   display: none;
}

    .inpro{
        padding: 50px 0;
    }
    .inpro .inpronav{
        display: none;
    }
    .inpro .inprolist{
        width: 100%;
        padding: 0;
    }
    .inpro .inprolist .inprotit{
        margin: 0;
    }
    .inpro .inprolist .inpromore{
        display: none;
    }
    .inpro .inprolist .inprourl ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .inabout{
        padding: 50px 0;
    }
    .inabout .inaboutfl{
        padding: 0;
        margin: 0;
    }
    .inabout .inaboutfl .inabout1{
        display: none;
    }
    .inabout .inaboutfl .inabout2{
        font-size: 50px;
        padding: 0;
    }
    .inabout .inaboutfl .inabout3{
        font-size: 22px;
        padding: 15px 0 30px;
    }
    .inabout .inaboutfr{
        width: 100%;
        padding-top: 50px;
    }
    .inaboutzs{
        padding: 50px 0;
    }
    .innews{
        padding: 50px 0;
    }
    .innews .innews2{
        padding: 10px 0 0;
    }
    .innews ul li{
        width: 100%;
        margin: 50px 0 0;
    }
    .inlink{
        display: none;
    }
    #footer .footcon{
        display: none;
    }
    #footer .foottail{  padding: 30px 0 80px;  text-align: center;  }
    #footer .foottail .footright{  width: 100%;  }
    #footer .foottail .footright a:nth-last-child(1){  display: block;  }
    #footer .foottail .footbanquan{  width: 100%;  }
    #footer .foottail .footbanquan img{  margin: 15px auto 0;  }

    .product .inpro .inprolist .inprourl ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .showproduct .showprowzdh{
        display: none;
    }
    .showproduct .proone .proimgurl, .showproduct .proone .prodisplayimg{  display: none;  }
    .showproduct .proone .mobprodisplayimg .swiper-pagination-bullet-active{  background: #0067b0;  }
    .showproduct .proone .proonefr .prooneshare .pro2wm:nth-child(4){  display: none;  }
    .showproduct .proone .proonefr{
        width: 100%;
        padding-top: 50px;
    }
    .showproduct .protwo .list li{
        font-size: 20px;
    }
    #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;  }

    .news .newsnav{
        display: none;
    }
    .news .newslist ul li{
        width: 100%;
        margin: 50px 0 0;
    }
    .shownews .detailpage .more2{
        display: none;
    }
    .about .content h2{
        font-size: 50px;
    }
    .about .content h3{
        font-size: 22px;
        padding: 15px 0 30px;
    }
    .fzlc:before,
    .fzlc li:before{
        display: none;
    }
    .fzlc li,
    .fzlc li:nth-child(2n){
        width: 100%;
        margin: 0;
        padding: 0 0 30px;
    }
    .fzlc li p{
        width: 100%;
    }
    .contact{
        padding: 30px 0 50px;
    }
    .contact .content{
        width: 100%;
        padding: 0;
        border: 0;
    }
    .contact .confeed{
        width: 100%;
        padding-top: 30px;
    }
    .contact .confeed input{
        height: 80px;
    }
}