@charset "utf-8";

@font-face{
    font-family: 'Helvetica Condensed';
    src: url('../fonts/Helvetica Condensed.eot');
    src: url('../fonts/Helvetica Condensed.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Helvetica Condensed.woff2') format('woff2'),
    url('../fonts/Helvetica Condensed.woff') format('woff'),
    url('../fonts/Helvetica Condensed.ttf') format('truetype'),
    url('../fonts/Helvetica Condensed.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 'Helvetica Condensed';}
/* 重置列表元素 */
ul,ol,li,dl,dt,dd{ list-style: none; }
ul:after{ content: ''; clear: both; display: block; }
/* 重置文本格式元素 */
a{ color: #464646; text-decoration: none; transition-duration: 1s; }
a:hover,a:focus{ color: #bb3744; 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: 'Helvetica Condensed';font-size: 14px;background: #fff;}
::-webkit-input-placeholder{opacity: 1;}::-moz-placeholder{opacity: 1;}:-ms-input-placeholder{opacity: 1;}
@media(min-width: 1600px){.container{width: 1600px;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 ul{font-size: 0;}
.mc_pager ul li{background:#333;color:#fff;font-size:14px;width:30px;height:30px;line-height:30px;margin:3px;display:inline-block;}
.mc_pager ul li.active{background:#bb3744;}
.mc_pager ul li a{color:#fff;display:block;}
.mc_pager ul li .current{background:#bb3744;display:block;}
.mc_pager ul li:nth-child(1),.mc_pager ul li:nth-last-child(1){width:50px;font-size: 0;}
.mc_pager ul li:nth-child(1) a:before,.mc_pager ul li:nth-child(1) .disabled:before{content:'◀';font-size:14px;}
.mc_pager ul li:nth-last-child(1) a:before,.mc_pager ul li:nth-last-child(1) .disabled:before{content:'▶';font-size:14px;}
/*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%;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    position: fixed;
    z-index: 10000;
    top: 0;
    transition-duration: 1s;
}
#header.height{
    top: -70px;
}
@media(min-width: 1400px){#header .container{width: 1400px;}}
#header .headertop{
    background: #fff;
    border-bottom: 1px solid #e7e7e7;
}
#header .headertop .headlogo{
    height: 69px;
    padding: 14.5px 0;
}
#header .headertop .headlogo img{
    height: 100%;
}
#header .headertop .headsearch{
    border: 1px solid #e3e3e3;
    margin: 13.5px 0;
}
#header .headertop .headsearch .input-text{
    width: 200px;
    height: 40px;
    color: #b3b2b1;
    font-size: 16px;
    padding: 0 15px;
    background: 0;
    outline: 0;
    border: 0;
}
#header .headertop .headsearch .input-submit{
    width: 50px;
    height: 40px;
    color: #202020;
    font-size: 20px;
    background: 0;
    outline: 0;
    border: 0;
}
#header .headertop .headlang{
    padding: 24.5px 0;
}
#header .headertop .headlang a{
    display: inline-block;
    color: #b3b2b1;
    font-size: 16px;
    line-height: 20px;
}
#header .headertop .headlang .footemail{
    color: #13283e;
    border-left: 1px solid #d2d2d2;
    padding-left: 10px;
    margin: 0 20px 0 10px;
}
#header .headertop .headlang a:hover{
    color: #bb3744;
}
#header .headerbj{
    background: #fff;
}
#header .headerbj .headnav{
    display: block;
    text-align: center;
}
#header .headerbj .headnav > ul > li{
    display: inline-block;
    padding: 0 11px;
}
#header .headerbj .headnav > ul > li .overflow{
    height: 70px;
    line-height: 70px;
    overflow: hidden;
    position: relative;
}
#header .headerbj .headnav > ul > li .overflow:before{
    content: '';
    width: 100%;
    height: 2px;
    background: #cbcbcb;
    position: absolute;
    top: 0;
    left: 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: #424242;
    font-size: 16px;
    position: relative;
    top: -70px;
    transition-duration: 1s;
}
#header .headerbj .headnav > ul > li.hover .overflow a,
#header .headerbj .headnav > ul > li:hover .overflow a{
    color: #bb3744;
    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;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li{
    display: inline-block;
    margin: 15px 30px;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li a{
    display: block;
    color: #424242;
    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: #bb3744;
    border-bottom: 2px solid #bb3744;
}
/*banner*/
#mcbanner{
    padding-top: 140px;
    overflow: hidden;
}
/*indexbanner*/
.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 #bb3744;
}
.more:before{
    content: '';
    width: 180%;
    height: 100%;
    background: #bb3744;
    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;
}

.inabout{
    text-align: center;
    padding: 50px 0;
    overflow: hidden;
}
.inabout .intitle{
    color: #9199a1;
    font-size: 48px;
    font-weight: bold;
}
.inabout .webname{
    color: #a6a8ab;
    font-size: 16px;
    font-style: italic;
    padding: 20px 0;
}
.inabout ul li{
    width: 25%;
    margin: 30px 0 0;
    position: relative;
}
.inabout ul li:before{
    content: '';
    width: 1px;
    height: 65%;
    background: #e8eaeb;
    position: absolute;
    top: 30%;
    left: 0;
}
.inabout ul li:nth-child(1):before{
    display: none;
}
.inabout ul li a{
    display: block;
    box-shadow: 10px 10px 30px rgba(0, 0, 0, 0);
    padding: 15px 10% 30px;
    margin: 0 5%;
}
.inabout ul li a:hover{
    box-shadow: 10px 10px 30px rgba(0, 0, 0, .1);
}
.inabout ul li a img{
    margin: auto;
}
.inabout ul li a .title1{
    color: #212f3c;
    font-size: 22px;
    line-height: 30px;
    padding-bottom: 30px;
    text-transform: uppercase;
}
.inabout ul li a .title2{
    color: #697179;
    font-size: 16px;
    line-height: 24px;
    text-align: left;
    min-height: 96px;
}
.incolumn{
    overflow: hidden;
}
.incolumn ul li{
    width: 24.25%;
    margin-right: 1%;
}
.incolumn ul li:nth-child(4){
    margin-right: 0;
}
.incolumn ul li a{
    display: block;
    overflow: hidden;
    position: relative;
}
.incolumn ul li a img{
    width: 100%;
}
.incolumn ul li a .name{
    width: 100%;
    height: 12%;
    background: rgba(0, 0, 0, .5);
    position: absolute;
    left: 0;
    bottom: 0;
    transition-duration: 1s;
}
.incolumn ul li a:hover .name{
    height: 100%;
}
.incolumn ul li a .name p{
    width: 100%;
    color: #fff;
    font-size: 25px;
    text-align: center;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
/*index*/

/*foot*/
#footer{
    position: relative;
    z-index: 2;
}
#footer .footadd{
    background: url(../img/footaddbj.jpg);
    padding: 80px 0 30px;
    overflow: hidden;
}
#footer .footadd ul li{
    width: 22%;
}
#footer .footadd ul li:nth-child(1){
    width: 34%;
}
#footer .footadd ul li img{
    padding: 0 30px 0 0;
}
#footer .footadd ul li .title1{
    color: #484848;
    font-size: 18px;
    padding: 4px 0 2px;
}
#footer .footadd ul li .title2{
    color: #adadad;
    font-size: 16px;
    line-height: 20px;
}
#footer .footadd ul li .title2 a{
    color: #adadad;
}
#footer .footadd ul li .title2 a:hover{
    color: #bb3744;
}
#footer .footbody{
    background: url(../img/footbody.jpg) center / cover no-repeat;
    text-align: center;
    padding: 80px 0 50px;
    overflow: hidden;
}
#footer .footbody .indesc{
    color: #fff;
    font-size: 42px;
    font-weight: bold;
    padding-bottom: 30px;
}
#footer .footbody .more{
    padding: 10px 30px;
    color: #fff;
    font-size: 24px;
    font-weight: bold;
    border: 2px solid #b2b2b2;
    border-radius: 0;
}
#footer .footcon{
    padding: 50px 0;
}
#footer .footcon ul li{
    width: 22%;
    margin-right: 4%;
}
#footer .footcon ul li:nth-child(4){
    margin-right: 0;
}
#footer .footcon ul li .namemark{
    color: #bb3744;
    font-size: 22px;
    font-weight: bold;
    border-bottom: 1px solid #c9cbcc;
    padding-bottom: 20px;
    margin-bottom: 10px;
}
#footer .footcon ul li dl a{
    display: table;
    font-size: 18px;
    line-height: 38px;
}
#footer .footcon ul li .foot2wm div{
    width: 45%;
}
#footer .footcon ul li .foot2wm div img{
    width: 100%;
}
#footer .footcon ul li .foot2wm div p{
    color: #000;
    font-size: 18px;
    text-align: center;
    padding-top: 5px;
}
#footer .footcon .footconimg img{
    margin: 20px auto 0;
}
#footer .foottail{
    padding: 30px 0;
    border-top: 1px solid #f4f4f4;
}
#footer .foottail .footright{
    color: #757575;
    line-height: 20px;
}
#footer .foottail .footright a{
    color: #757575;
}
#footer .foottail .footright a:hover{
    color: #bb3744;
}
#footer .foottail .footright br{
    display: none;
}
#footer .foottail .tailimg{
    position: relative;
    left: 0;
}
#footer .foottail .tailimg:hover{
    left: -5px;
}
#footer .foottail .footother{
    color: #757575;
    line-height: 20px;
    margin-top: 10px;
}
#footer .foottail .footother a{
    color: #757575;
}
#footer .foottail .footother a:hover{
    color: #bb3744;
}
/*foot*/

/*product*/
.product{
    padding: 70px 0 0;
    overflow: hidden;
}
@media(min-width: 1400px){.product .container{width: 1400px;}}
.product .protitle{
    color: #535c66;
    font-size: 50px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
}
.product .webname{
    color: #bababa;
    font-size: 16px;
    text-align: center;
    text-transform: uppercase;
    letter-spacing: 2px;
    padding: 10px 0 0;
}
.product ul li{
    width: 46%;
    margin: 50px 8% 0 0;
}
.product ul li:nth-child(2n){
    margin-right: 0;
}
.product ul li a{
    display: block;
}
.product ul li a .imgurl{
    box-shadow: 10px 10px 20px rgba(0, 0, 0, 0);
    border: 1px solid #eee;
    border-radius: 10px;
    overflow: hidden;
    transition-duration: 1s;
}
.product ul li a:hover .imgurl{
    box-shadow: 10px 10px 20px rgba(0, 0, 0, .1);
}
.product ul li a .imgurl img{
    width: 100%;
}
.product ul li a .title{
    margin-top: 30px;
    width: calc(100% - 100px);
    color: #8d8d8d;
    font-size: 24px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.product ul li a:hover .title{
    color: #bb3744;
}
.product ul li a .inquire{
    color: #8d8d8d;
    font-size: 16px;
    margin: 40px 0 20px;
    position: relative;
}
.product ul li a .inquire:before{
    content: '';
    width: 14px;
    height: 14px;
    border: 1px solid #4e4e4e;
    border-radius: 2px;
    position: absolute;
    top: 1px;
    left: -25px;
}
/*showproduct*/
.showproduct{
    overflow: hidden;
}
.showproduct .showprotit{
    color: #b5b5b5;
    font-size: 18px;
    line-height: 24px;
    background: #f7f7f7;
    text-align: center;
    padding: 10px;
}
/*<!--第一部分-->*/
.showproduct .proone{
    padding: 30px 0 50px;
}
.showproduct .proone .proimgurl{
    width: 600px;
    margin: auto;
}
.showproduct .proone .prodisplayimg{  width: 100px;  margin-left: 40px;  position: relative;  }
.showproduct .proone .proonefr{
    width: calc(100% - 840px);
    padding: 30px 0 0;
}
.showproduct .proone .proonefr .proonetitle{
    color: #16385e;
    font-size: 32px;
}
.showproduct .proone .proonefr .content{
    color: #3c3c3c;
    font-size: 20px;
    line-height: 35px;
    padding: 50px 0 0;
}
.showproduct .proone .proonefr .content p br{  display: none;  }
.showproduct .proone .proonefr .prooneshare{  padding: 50px 0;  }
.showproduct .proone .proonefr .prooneshare a{  display: inline-block;  color: #414d55;  font-size: 15px;  background: #f3f3f3;  width: 44px;  line-height: 44px;  text-align: center;  border-radius: 5px;  overflow: hidden;  margin: 0 5px 5px 0;  }
.showproduct .proone .proonefr .prooneshare a.procon{  width: 130px;  color: #fff;  background: #3a6483;  }
.showproduct .proone .proonefr .prooneshare a.procon i{  padding-right: 10px;  }
.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: 54px;  bottom: -30px;  }
.showproduct .proone .proonefr .prooneshare .pro2wm .wxewm img{  width: 100%;  height: 100%;  }
/*<!--第二部分-->*/
.showproduct .protwo{  font-family: 'Arial';  padding: 10px 0;  position: relative;  border-top: 1px dotted #ccc;  border-bottom: 1px dotted #ccc;  }
.showproduct .protwo:before{  content: '';  width: 1px;  height: 60px;  background: #ddd;  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: #333;  }
.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;  }
/*<!--第三部分-->*/
.showproduct .prothree .prothree1{
    background: #f7f8f8;
    overflow: hidden;
}
.showproduct .prothree .prothree1 .prothree1fl .prothree1fl1{
    color: #a0a0a0;
    font-size: 60px;
    padding-top: 100px;
}
.showproduct .prothree .prothree1 .prothree1fl .prothree1fl2{
    color: #a0a0a0;
    font-size: 18px;
    line-height: 40px;
    padding-top: 50px;
}
.showproduct .prothree .prothree1 .prothree1fl .prothree1fl3{
    padding-top: 50px;
}
.showproduct .prothree .prothree2{
    overflow: hidden;
}
.showproduct .prothree .prothree2 .prothree2fr{
    width: 55%;
    padding-top: 100px;
}
.showproduct .prothree .prothree2 .prothree2fr table tr td{
    color: #a0a0a0;
    font-size: 18px;
    line-height: 30px;
    border: 1px solid #ededed;
}
.showproduct .prothree .prothree3{
    background: #f7f8f8;
    overflow: hidden;
}
.showproduct .prothree .prothree3 .prothree3fr{
    width: 55%;
}
.showproduct .prothree .prothree3 .prothree3fr .prothree3fr1{
    color: #a0a0a0;
    font-size: 60px;
    padding-top: 100px;
}
.showproduct .prothree .prothree3 .prothree3fr .prothree3fr2{
    color: #a0a0a0;
    font-size: 18px;
    line-height: 40px;
    padding-top: 50px;
}
.showproduct .prothree .prothree3 .prothree3fr .prothree3fr3{
    padding-top: 50px;
}
.showproduct .prothree .prothree4{
    overflow: hidden;
}
.showproduct .prothree .prothree4 .prothree4fl .prothree4fl1{
    color: #a0a0a0;
    font-size: 60px;
    padding-top: 100px;
}
.showproduct .prothree .prothree4 .prothree4fl .prothree4fl2{
    color: #a0a0a0;
    font-size: 18px;
    line-height: 40px;
    padding-top: 50px;
}
.showproduct .prothree .prothree4 .prothree4fl .prothree4fl3{
    padding-top: 50px;
}
.showproduct .prothree .content{
    color: #a0a0a0;
    font-size: 18px;
    line-height: 30px;
    overflow: auto;
}
.showproduct .prothree .content table tr td{
    color: #a0a0a0;
    font-size: 18px;
    line-height: 30px;
    border: 1px solid #ededed;
}
/*product*/

/*news*/
.news{
    padding-top: 50px;
    overflow: hidden;
}
@media(min-width: 1200px){.news .container{width: 1200px;}}
.news .newstitle{
    color: #2c2c2c;
    font-size: 38px;
    font-weight: bold;
    line-height: 30px;
    border-left: 5px solid #bb3744;
    padding-left: 30px;
    text-transform: uppercase;
}
.news ul li{
    width: 30.66%;
    margin: 50px 4% 0 0;
}
.news ul li:nth-child(3n){
    margin-right: 0;
}
.news ul li a{
    display: block;
    border-bottom: 2px solid #a8a8a9;
    padding-bottom: 30px;
}
.news ul li a:hover{
    border-bottom: 2px solid #bb3744;
}
.news ul li a .imgurl{
    overflow: hidden;
}
.news ul li a .imgurl img{
    width: 100%;
}
.news ul li a .title{
    margin: 30px 0 20px;
    color: #252527;
    font-size: 25px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news ul li a:hover .title{
    color: #bb3744;
}
.news ul li a .description{
    color: #252527;
    font-size: 16px;
    line-height: 30px;
    height: 90px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news ul li a:hover .description{
    color: #bb3744;
}
/*shownews*/
.shownews{
    padding-top: 50px;
    overflow: hidden;
}
@media(min-width: 1200px){.shownews .container{width: 1200px;}}
.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: 16px;
    line-height: 30px;
    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: #bb3744;
    text-decoration: underline;
    left: 10px;
}
.shownews .detailpage .more2{
    color: #fff;
    background: #bb3744;
    border-radius: 5px;
    padding: 15px 30px;
}
/*news*/

/*about*/
.about{
    padding: 50px 0;
    overflow: hidden;
}
@media(min-width: 1200px){.about .container{width: 1200px;}}
.about .abouttitle{
    color: #13283e;
    font-size: 30px;
    font-weight: bold;
    line-height: 30px;
    border-left: 5px solid #bb3744;
    padding-left: 30px;
    text-transform: uppercase;
}
.about .content{
    color: #000;
    font-size: 18px;
    line-height: 38px;
    padding-top: 40px;
}
.about .aboutwork ul li{
    width: 24.25%;
    margin-right: 1%;
}
.about .aboutwork ul li:nth-child(4n){
    margin-right: 0;
}
.about .aboutwork ul li img{
    width: 100%;
}
.about .aboutwork ul li p{
    color: #000;
    font-size: 20px;
    text-align: center;
    padding: 20px 0;
}
.about .abouttitle2{
    color: #13283e;
    font-size: 42px;
    font-weight: bold;
    text-align: center;
    text-transform: uppercase;
    padding: 40px 0 0;
}
.about .abouttitle3{
    color: #535353;
    font-size: 18px;
    line-height: 28px;
    text-align: center;
    padding: 10px 0 40px;
}
.about .aboutzs img{
    margin: auto;
}
/*about*/

/*contact*/
.contact{
    padding: 50px 0;
    overflow: hidden;
}
@media(min-width: 1400px){.contact .container{width: 1400px;}}
.contact .contactfl{
    width: 600px;
}
.contact .contactfl .contacttitle{
    color: #2c2c2c;
    font-size: 38px;
    font-weight: bold;
    line-height: 30px;
    border-left: 5px solid #bb3744;
    padding-left: 30px;
    text-transform: uppercase;
}
.contact .contactfl .webname{
    color: #131313;
    font-size: 20px;
    font-weight: bold;
    padding: 50px 10px 30px;
}
.contact .contactfl .content p{
    color: #131313;
    font-size: 20px;
    line-height: 40px;
    margin: 0;
}
.contact .contactfl .content ul li{
    border-bottom: 1px solid #e7e7e7;
    padding: 10px 0;
}
.contact .contactfl .content ul li img{
    padding-right: 10px;
}
.contact .contactfl .content h2{
    color: #131313;
    font-size: 24px;
    font-weight: bold;
    padding: 30px 0 20px;
}
.contact .confeed{
    width: 48%;
    padding-top: 100px;
}
.contact .confeed input{
    width: 100%;
    height: 40px;
    color: #c2c2c2;
    font-size: 16px;
    border: 1px solid #e3e3e3;
    padding: 0 20px;
    margin-bottom: 20px;
    outline: 0;
}
.contact .confeed textarea{
    width: 100%;
    height: 90px;
    color: #c2c2c2;
    font-size: 16px;
    line-height: 30px;
    border: 1px solid #e3e3e3;
    padding: 10px 20px;
    outline: 0;
}
.contact .confeed .submit{
    width: 140px;
    height: 40px;
    color: #fff;
    font-size: 16px;
    background: #6d7175;
    border: 0;
    outline: 0;
    margin-top: 40px;
}
.contact .confeed .submit:hover{
    background: #bb3744;
}
/*contact*/
@media (max-width: 1600px){
    .showproduct .proone .proonefr{
        width: calc(100% - 780px);
    }
    .showproduct .protwo .page_left a .page1,
    .showproduct .protwo .page_right a .page1,
    .showproduct .protwo .page_left a .page3,
    .showproduct .protwo .page_right a .page3{
        display: none;
    }
}
@media (max-width: 1440px){
    .contact .confeed{
        width: 40%;
    }
}
@media (max-width: 1280px){
    #header .headerbj .headnav > ul > li{
        padding: 0 12px;
    }
    #header .headerbj .headnav > ul > li .overflow a{
        font-size: 18px;
    }
    .incolumn ul li a .name p{
        font-size: 20px;
    }
    #footer .footadd{
        padding: 70px 0 20px;
    }
    #footer .footadd ul li,
    #footer .footadd ul li:nth-child(1){
        width: 50%;
        padding-bottom: 30px;
    }
    #footer .footbody .indesc{
        font-size: 30px;
    }
    .showproduct .proone .proimgurl .cloud-zoom-big{
        display: none !important;
    }
    .showproduct .proone .proonefr{
        width: 100%;
        padding: 50px 0 0;
    }
    .contact .confeed{
        width: 30%;
    }
}
/*手机版*/
#header .menubutton{  display: none;  width: 30px;  height: 30px;  cursor: pointer;  margin: 14px 12px 6px 0;  }
#header .menubutton .menuicon{  height: 2px;  margin-bottom: 8px;  background: #bb3744;  }
#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: #bb3744;  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, .8);  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: #fff !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: #bb3744;  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 #bb3744;  overflow: hidden;  }
#sortpro .sortpro_left{  float: left;  width: 65%;  color: #fff;  font-size: 14px;  background: #bb3744;  }
#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: #bb3744;  }
.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 #bb3744;  }
.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: #bb3744;  }
/*手机版*/
@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*/
    .menumain .menubox .menunav .menuone:nth-child(2) .menuone_two{
        display: none;
    }
    #header,
    #header.height{
        top: 0;
    }
    #header .headertop .headsearch,
    #header .headertop .headlang,
    #header .headerbj{
        display: none;
    }
    #header .headertop .headlogo{
        height: 50px;
        padding: 10px 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;
    }
    .inabout .intitle{
        font-size: 40px;
    }
    .inabout ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .inabout ul li:before{
        display: none;
    }
    .inabout ul li a{
        box-shadow: 10px 10px 30px rgba(0, 0, 0, .1);
    }
    .incolumn ul li{
        width: 100%;
        margin: 0 0 10px;
    }
    #footer .footadd{
        display: none;
    }
    #footer .footbody .indesc{
        font-size: 20px;
        line-height: 30px;
    }
    #footer .footcon{
        display: none;
    }
    #footer .foottail{  padding: 30px 0 80px;  text-align: center;  }
    #footer .foottail .footright{  width: 100%;  }
    #footer .foottail .footright br{  display: block;  }
    #footer .foottail .footright a:nth-last-child(1){  display: block;  }
    #footer .foottail .tailimg{  width: 100%;  }
    #footer .foottail .tailimg img{  margin: 15px auto 0;  }
    #footer .foottail .footother{  display: none;  }

    .about .aboutwork ul li{
        width: 100%;
        margin: 0;
    }
    .product{
        padding: 0;
    }
    .product .protitle,
    .product .webname{
        display: none;
    }
    .product ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .product ul li a .title{
        width: 100%;
    }
    .product ul li a .inquire{
        display: none;
    }
    .showproduct .proone .proimgurl, .showproduct .proone .prodisplayimg{
        display: none;
    }
    .showproduct .proone .mobprodisplayimg .swiper-pagination-bullet-active{
        background: #bb3744;
    }
    .showproduct .proone .proonefr .prooneshare .pro2wm:nth-child(5){
        display: none;
    }



    .showproduct .prothree .prothree1 .prothree1fl .prothree1fl1{
        font-size: 40px;
        padding-top: 50px;
    }
    .showproduct .prothree .prothree1 .prothree1fr{
        padding-top: 50px;
    }
    .showproduct .prothree .prothree2 .prothree2fr{
        width: 100%;
        padding: 0 0 50px;
        overflow: auto;
    }
    .showproduct .prothree .prothree3 .prothree3fr{
        width: 100%;
    }
    .showproduct .prothree .prothree3 .prothree3fr .prothree3fr1{
        font-size: 40px;
        padding-top: 50px;
    }
    .showproduct .prothree .prothree4 .prothree4fl .prothree4fl1{
        font-size: 40px;
        padding-top: 50px;
    }
    .showproduct .prothree .prothree4 .prothree4fr{
        padding-top: 50px;
    }


    
    #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 ul li{
        width: 100%;
        margin: 50px 0 0;
    }
    .shownews .detailpage .more2{
        display: none;
    }
    .contact .contactfl{
        width: 100%;
    }
    .contact .contactfl .webname{
        padding: 30px 0;
    }
    .contact .confeed{
        width: 100%;
        padding: 50px 0 0;
    }
}