@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{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: #575757; text-decoration: none; transition-duration: 1s; }
a:hover,a:focus{ color: #a41e23; 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: 'Helvetica Condensed';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 ul{font-size: 0;}
.mc_pager ul li{display: inline-block;font-size:14px;}
.mc_pager ul li a{background:#333;color:#fff!important;width:30px;height:30px;line-height:30px;margin:3px;display:inline-block;}
.mc_pager ul li.active a{background:#a41e23;}
.mc_pager ul li:nth-child(1) a,.mc_pager ul li:nth-last-child(1) a{width:50px;font-size: 0;}
.mc_pager ul li:nth-child(1) a:before{content:'◀';font-size:14px;}
.mc_pager ul li:nth-last-child(1) a: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 二维码显示*/




.tu1{ display: none !important;}
.tu2{display: block !important;}
.tu3{ display: none !important;}
@media (max-width: 992px){
.tu1{ display: none !important;}
.tu2{display: none !important;}
.tu3{ display: block !important;}
}

/*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;
    transition-duration: 1s;
}
#header.height{
    top: -45px;
}
#header .headertop{
    color: #fff;
    background: #a41e23;
    padding: 9px 0;
}
#header .headertop .fa{
    width: 27px;
    height: 27px;
    border: 2px solid #fff;
    border-radius: 50%;
    font-size: 12px;
    line-height: 24px;
    text-align: center;
    margin-right: 15px;
}
#header .headertop a{
    color: #fff;
}
#header .headerbj{
    background: #fafafa;
    border-bottom: 5px solid #a41e23;
}
#header .headerbj .headlogo{
    height: 150px;
    padding: 30px 0;
}
#header.height .headerbj .headlogo{
    height: 65px;
    padding: 12px 0;
}
#header .headerbj .headlogo img{
    height: 100%;
}
#header .headerbj .headfr{
    width: 72%;
}
#header .headerbj .headsearch{
    width: 50%;
    border: 1px solid #e8e8e8;
    border-radius: 5px;
    margin: 30px 0 10px;
    transition-duration: 1s;
}
#header.height .headerbj .headsearch{
    height: 0;
    border: 0;
    margin: 0;
    overflow: hidden;
}
#header .headerbj .headsearch .input-text{
    width: calc(100% - 80px);
    height: 43px;
    color: #a41e23;
    padding: 0 20px;
    background: 0;
    outline: 0;
    border: 0;
}
#header .headerbj .headsearch .input-submit{
    width: 80px;
    height: 43px;
    color: #fff;
    background: #a41e23;
    outline: 0;
    border: 0;
}
#header .headerbj .headnav{
    padding: 0;
}
#header .headerbj .headnav ul li{
    padding: 15px 20px;
    margin-right: 10px;
    position: relative;
}
#header .headerbj .headnav ul li:before{
    content: '';
    width: 100%;
    height: 0;
    background: #a41e23;
    position: absolute;
    left: 0;
    bottom: 0;
    transition-duration: 1s;
}
#header .headerbj .headnav ul li.hover:before,
#header .headerbj .headnav ul li:hover:before{
    height: 100%;
}
#header .headerbj .headnav ul li .overflow{
    height: 35px;
    line-height: 35px;
    overflow: hidden;
    position: relative;
}
#header .headerbj .headnav ul li .overflow a{
    display: block;
    color: #4e4e4e;
    font-size: 18px;
    position: relative;
    top: -35px;
    transition-duration: 1s;
}
#header .headerbj .headnav ul li:hover .overflow a,
#header .headerbj .headnav ul li.hover .overflow a{
    color: #fff;
    top: 0;
}
#header .headerbj .headlang{
    padding: 14px 0;
    cursor: pointer;
    position: relative;
    z-index: 1;
}
#header .headerbj .headlang .langtitle{
    color: #fff;
    font-size: 16px;
    line-height: 25px;
    background: #a41e23;
    border-radius: 50px;
    padding: 6px 15px 6px 20px;
}
#header .headerbj .headlang .langlist{
    display: none;
    width: 100%;
    background: #a41e23;
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
}
#header .headerbj .headlang:hover .langlist{
    display: block;
}
#header .headerbj .headlang .langlist a{
    display: block;
    color: #fff;
    line-height: 30px;
    text-align: center;
    border-top: 1px solid #bd474c;
    border-bottom: 1px solid #840308;
}
#header #headpronav{
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    position: absolute;
    z-index: -1;
    top: -300px;
    left: 0;
    transition-duration: 1s;
}
#header #headpronav.showpronav{
    top: 200px;
}
#header.height  #headpronav.showpronav{
    top: 115px;
}
#header #headpronav ul li{
    width: 20%;
    padding: 30px 1% 10px;
}
#header #headpronav ul li a{
    display: block;
    text-align: center;
}
#header #headpronav ul li a .columnimg{
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
    border-radius: 10px;
    overflow: hidden;
}
#header #headpronav ul li a .name{
    font-size: 16px;
    line-height: 50px;
}
#header #headpronav ul li a.hover .name{
    color: #a41e23;
}
/*banner*/
#mcbanner{
    padding-top: 200px;
    overflow: hidden;
}
/*indexbanner*/
.indexbanner .swiper-pagination .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    margin: 0 10px 20px;
    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 #a41e23;
}
.more:before{
    content: '';
    width: 120%;
    height: 100%;
    background: #a41e23;
    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;
}

.inchoose{
    padding: 50px 0;
    text-align: center;
    overflow: hidden;
}
.inchoose .title1{
    color: #393939;
    font-size: 30px;
    font-weight: bold;
}
.inchoose .title2{
    width: 720px;
    color: rgba(154, 154, 154, .5);
    line-height: 20px;
    margin: 20px auto 40px;
}
.inchoose .content .wow{
    float: left;
    width: 32%;
    margin-right: 2%;
}
.inchoose .content .wow:nth-child(3){
    margin-right: 0;
}
.inchoose .content .wow .float-shadow{
    padding: 17px 17px 30px;
    box-shadow: 0 0 15px rgba(0, 0, 0, .1);
    border-radius: 8px;
}
.inchoose .content .wow .float-shadow p img{
    width: 100%;
    border-radius: 8px;
}
.inchoose .content .wow .float-shadow p:nth-child(2){
    color: #161616;
    font-size: 15px;
    line-height: 30px;
    min-height: 60px;
    margin-top: 30px;
}
.inchoose .content .wow .float-shadow p a{
    display: inline-block;
    color: #fff;
    font-size: 17px;
    line-height: 32px;
    background: #9a9a9a;
    padding: 0 25px;
}
.inchoose .content .wow .float-shadow p a:hover{
    background: #ab171d;
}
.inabout{
    padding: 80px 0 50px;
    background: #f9f9f9;
    text-align: center;
    overflow: hidden;
}
.inabout .name{
    color: #2d2d2d;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}
.inabout .description{
    color: #070002;
    font-size: 16px;
    line-height: 38px;
    margin: 30px 0;
    text-align: left;
}
.inabout .countup{
    border-top: 1px solid #f1f1f1;
    border-bottom: 1px solid #f1f1f1;
}
.inabout .countup ul li{
    width: 25%;
    padding: 40px 0;
}
.inabout .countup ul li .shuzi{
    color: #666666;
    font-size: 40px;
    border-left: 1px solid #ebebeb;
    position: relative;
}
.inabout .countup ul li:nth-child(1) .shuzi{
    border: 0;
}
.inabout .countup ul li .shuzi sup{
    font-size: 15px;
    position: absolute;
    top: 0;
    margin-left: 5px;
}
.inabout .countup ul li .countupname{
    color: #979797;
    font-size: 13px;
    margin-top: 10px;
}
.inabout .inaboutimg{
    padding-top: 40px;
}
.inabout .inaboutimg li{
    width: 24.25%;
    margin-right: 1%;
}
.inabout .inaboutimg li:nth-child(4n){
    margin-right: 0;
}
.inabout .inaboutimg li img{
    width: 100%;
    border: 1px solid #c6c6c6;
    border-radius: 8px;
}
.inpro{
    padding: 20px 0 70px;
    overflow: hidden;
}
.inpro ul li{
    float: left;
    width: 24.25%;
    margin: 3% 1% 0 0;
}
.inpro ul li:nth-child(4n){
    margin-right: 0;
}
.inpro ul li a{
    display: block;
    border: 1px solid #ececec;
    border-radius: 10px;
    overflow: hidden;
    position: relative;
    top: 0;
}
.inpro ul li a:hover{
    top: -5px;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .05);
}
.inpro ul li a .imgurl{
    overflow: hidden;
}
.inpro ul li a .proicon{
    background: #464646;
    padding: 8px 12px;
    border-radius: 5px;
    margin: 30px 20px 0 0;
    transition-duration: 1s;
}
.inpro ul li a:hover .proicon{
    background: #c50c01;
}
.inpro ul li a .title{
    margin: 20px 20px 0;
    color: #595959;
    font-size: 18px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.inpro ul li a:hover .title{
    color: #a41e23;
}
.inpro ul li a .name{
    margin: 0 20px 30px;
    color: #595959;
    font-size: 20px;
    font-weight: bold;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
/*index*/

/*foot*/
#footer{
    position: relative;
    z-index: 2;
}
#footer .footlink{
    border-top: 1px solid #eeeeee;
    padding: 20px 0;
    position: relative;
}
#footer .footlink:before{
    content: '';
    width: 130px;
    height: 6px;
    background: #c50c01;
    position: absolute;
    top: -4px;
    left: 50%;
    margin-left: -65px;
}
#footer .footlink table{
    margin: 0;
}
#footer .footlink table tr td{
    padding: 0;
    border: 0;
}
#footer .footlink a{
    display: block;
}
#footer .footlink a img{
    max-width: none;
    height: 80px;
    padding: 0 50px;
}
#footer .footsearch{
    background: url(../img/footsearch.jpg) center / cover no-repeat;
    padding: 50px 0 20px;
}
#footer .footsearch .searchpro{
    width: 585px;
    margin: auto;
}
#footer .footsearch .searchpro .input-text{
    width: 480px;
    height: 70px;
    color: #b7b7b7;
    font-size: 18px;
    padding: 0 20px;
    background: #fff;
    border-radius: 5px;
    outline: 0;
    border: 0;
}
#footer .footsearch .searchpro .input-submit{
    width: 95px;
    height: 70px;
    color: #9b9b9b;
    font-size: 20px;
    background: #fff;
    border-radius: 5px;
    outline: 0;
    border: 0;
}
#footer .footsearch .searchpro .searchlist a{
    display: inline-block;
    color: #fff;
    font-size: 18px;
    text-transform: uppercase;
    margin: 20px 30px 0 0;
}
#footer .footcon{
    padding: 50px 0;
}
#footer .footcon .footconfl{
    width: 50%;
}
#footer .footcon .title{
    color: #000;
    font-size: 20px;
    font-weight: bold;
    text-transform: uppercase;
    padding-bottom: 20px;
}
#footer .footcon .helpful{
    width: 400px;
    padding-bottom: 20px;
}
#footer .footcon .helpful li{
    width: 50%;
    padding: 15px 0;
}
#footer .footcon .helpful li a{
    display: block;
    color: #a41e23;
    font-size: 20px;
    font-weight: bold;
}
#footer .footcon .helpful li a img{
    display: inline-block;
    padding-right: 20px;
}
#footer .footcon .footpro{
    width: 500px;
}
#footer .footcon .footpro li{
    width: 50%;
}
#footer .footcon .footpro li a{
    display: inline-block;
    color: #000;
    font-size: 18px;
    line-height: 28px;
}
#footer .footcon .footpro li a:hover{
    color: #a41e23;
}
#footer .footcon .footconfr{
    width: 50%;
}
#footer .footcon .footconfr .footfx{
    margin: 20px 0 50px;
}
#footer .footcon .footconfr .footfx a{
    display: inline-block;
    width: 47px;
    height: 47px;
    background: url(../img/footfx.jpg);
    margin-right: 10px;
}
#footer .footcon .footconfr .footfx a.connect2{
    background-position: -60px 0;
}
#footer .footcon .footconfr .footfx a.connect3{
    background-position: -120px 0;
}
#footer .footcon .footconfr .footfx a.connect4{
    background-position: -180px 0;
}
#footer .footcon .footconfr .footfx a.connect5{
    background-position: -240px 0;
}
#footer .footcon .footconfr .footfx a.connect6{
    background-position: -300px 0;
}
#footer .footcon .footconfr .description{
    color: #000;
    font-size: 18px;
    line-height: 30px;
}
#footer .footcon .footconfr .keywords{
    display: inline-block;
    color: #fff;
    font-size: 17px;
    background: #353535;
    padding: 5px 10px;
    margin-top: 20px;
}
#footer .foottail{
    padding: 30px 0;
    background: #ab171d;
}
#footer .foottail .footlogo{
    margin-top: 15px;
}
#footer .foottail .footright,
#footer .foottail .footother{
    color: #fff;
    font-size: 16px;
    line-height: 30px;
}
#footer .foottail .footright a{
    display: inline-block;
    color: #fff;
    margin-right: 10px;
}
#footer .foottail .footother a{
    display: inline-block;
    color: #fff;
    margin-top: 10px;
}
#footer .foottail .tailimg{
    display: inline-block;
    margin-top: 10px;
}
/*foot*/

/*about*/
.about{
    background: #fff;
    padding: 50px 0 0;
}
.about .aboutzs{
    background: url(../img/aboutzsbj.jpg) center / cover no-repeat;
    text-align: center;
    padding: 50px 0;
    margin-top: 50px;
}
.about .aboutzs h1{
    color: #fff;
    font-size: 30px;
}
.about .aboutzs h4{
    color: rgba(255, 255, 255, .7);
    line-height: 20px;
    margin: 20px 0 40px;
}
.about .aboutzs .aboutzsimg img{
    float: left;
    width: 20%;
    padding: 0 .5%;
}
.about .aboutwork{
    padding: 50px 0;
}
.about .aboutwork ul li{
    width: 32.66%;
    margin: 1% 1% 0 0;
    color: #3a3a3a;
    font-size: 20px;
    line-height: 50px;
}
.about .aboutwork ul li:nth-child(3n){
    margin-right: 0;
}
.about .aboutwork ul li img{
    width: 100%;
    border: 2px solid #eeeeee;
    border-radius: 8px;
}
/*about*/

/*product*/
.pronav{
    background: #272525;
}
.pronav ul li{
    width: 20%;
    padding: 28px 0;
    border-right: 1px solid #353232;
    transition-duration: 1s;
}
.pronav ul li:nth-child(1){
    border-left: 1px solid #353232;
}
.pronav ul li:hover,
.pronav ul li.hover{
    background: #ae1016;
}
.pronav ul li a{
    display: block;
    color: #fff;
    font-size: 20px;
    line-height: 44px;
    text-align: center;
    height: 44px;
}
.product{
    padding: 20px 0 0;
}
/*showproduct*/
.showproduct{  overflow: hidden;  }
/*<!--第一部分-->*/
.showproduct .proone{  padding: 50px 0;  }
.showproduct .proone .proimgurl{  width: 424px;  }
.showproduct .proone .prodisplayimg{  padding: 0 50px 0 20px;  border-right: 2px solid #f4f4f4;  position: relative;  }
.showproduct .proone .proonefr{  width: calc(100% - 600px);  }
.showproduct .proone .proonefr .proonename{  color: #212121;  font-size: 30px;  line-height: 50px;  font-weight: bold;  padding: 10px 0 0 40px;  }
.showproduct .proone .proonefr .proonetitle{  color: #212121;  font-size: 28px;  padding: 10px 0 30px 40px;  }
.showproduct .proone .proonefr .content{  color: #212121;  line-height: 24px;  }
.showproduct .proone .proonefr .content p br{  display: none;  }
/*<!--第二部分-->*/
.showproduct .protwo{  padding-bottom: 50px;  }
.showproduct .protwo .content{  color: #212121;  font-size: 17px;  line-height: 24px;  overflow: auto;  }
.showproduct .protwo .content p br{  display: none;  }
.showproduct .protwo .content table tr td{  color: #596670;  font-size: 17px;  text-align: center;  }
.showproduct .protwo .content table tr:nth-child(1) td,
.showproduct .protwo .content table tr:nth-child(2) td{  background: #596670;  color: #fff;  border: 1px solid #6a7680;  }
/*product*/

/*news*/
.newsnav{
    padding: 50px 0 20px;
}
.newsnav .newsnavtitle{
    color: #2c2a2d;
    font-size: 30px;
    font-weight: bold;
    text-transform: uppercase;
}
.newsnav .newsnavlist{
    padding: 5px 0;
}
.newsnav .newsnavlist a{
    color: #727270;
    font-size: 18px;
    margin-left: 50px;
}
.newsnav .newsnavlist a:hover,
.newsnav .newsnavlist a.hover{
    color: #b7111f;
}
.news{
    overflow: hidden;
}
.news ul li{
    width: 32%;
    margin: 2% 2% 0 0;
}
.news ul li:nth-child(3n){
    margin-right: 0;
}
.news ul li a{
    display: block;
    padding-bottom: 10px;
}
.news ul li a .imgurl{
    border-radius: 5px;
    overflow: hidden;
}
.news ul li a .imgurl img{
    width: 100%;
}
.news ul li a .title{
    margin-top: 10px;
    color: #808080;
    font-size: 20px;
    line-height: 50px;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news ul li a:hover .title{
    color: #b60d22;
}
.news ul li a .description{
    color: #808080;
    font-size: 15px;
    line-height: 25px;
    height: 75px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news ul li a:hover .description{
    color: #b60d22;
}
/*shownews*/
.shownews{
    padding-top: 30px;
}
.shownews .title{
    color: #333;
    font-size: 24px;
    line-height: 30px;
    text-align: center;
}
.shownews .updatetime{
    color: #888;
    font-size: 14px;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #ccc;
}
.shownews .content{
    color: #333;
    font-size: 14px;
    line-height: 28px;
    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: #a41e23;
    text-decoration: underline;
    left: 10px;
}
.shownews .detailpage .more2{
    color: #fff;
    background: #333;
    border-radius: 5px;
    padding: 15px 40px;
}
/*news*/

/*contact*/
.contact{
    padding: 50px 0 100px;
    overflow: hidden;
}
.contact .contacttel{
    color: #1e1e1e;
    font-size: 30px;
    font-weight: bold;
    text-align: center;
}
.contact .contacttel a{
    color: #1e1e1e;
}
.contact .contactadd{
    color: #000;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    margin: 30px 0;
}
.contact .contactadd a{
    color: #000;
}
.contact .contactfx{
    text-align: center;
}
.contact .contactfx a{
    display: inline-block;
    width: 48px;
    height: 48px;
    background: url(../img/contactfx.jpg);
    margin: 0 5px;
}
.contact .contactfx a.contactfx2{
    background-position: -69px 0;
}
.contact .contactfx a.contactfx3{
    background-position: -137px 0;
}
.contact .contactfx a.contactfx4{
    background-position: -206px 0;
}
.contact .contactfx .pro2wm a{
    display: table;
    color: #a0a0a0;
    font-size: 20px;
    line-height: 44px;
    border: 2px solid #d1d1d1;
    border-radius: 8px;
    background: 0;
}
.contact .contactfx .pro2wm:before{
    top: 17px;
}
.contact .contactfx .pro2wm:after{
    top: 20px;
}
.contact .contactfx .pro2wm .wxewm{
    left: 72px;
    bottom: -40px;
}
.contact .contactlist li{
    width: 48%;
    border: 1px solid #f5f5f5;
    box-shadow: 3px 3px 3px rgba(0, 0, 0, .03);
    border-radius: 5px;
    padding: 50px 30px 20px 50px;
    margin: 4% 4% 0 0;
    position: relative;
}
.contact .contactlist li:nth-child(2n){
    margin-right: 0;
}
.contact .contactlist li .contact2wm{
    width: 88px;
    position: absolute;
    top: 88px;
    right: 30px;
}
.contact .contactlist li p{
    color: #575757;
    font-size: 17px;
    line-height: 26px;
    margin-bottom: 20px;
    overflow: hidden;
}
.contact .contactlist li p:nth-child(1){
    color: #575757;
    font-size: 25px;
    font-weight: bold;
    margin-bottom: 30px;
}
.contact .contactlist li p img{
    margin-right: 20px;
}
.contact .contactlist li p i{
    width: 26px;
    height: 26px;
    color: #fff;
    line-height: 26px;
    text-align: center;
    background: #dbdbdb;
    border-radius: 50%;
    margin-right: 20px;
}
/*contact*/



.prosearch{
    display: none;
    padding: 9px;
    border: 1px solid rgba(255,255,255,.2);
    background-color: rgba(255,255,255,.3);
    border-radius: 5px;
    position: absolute;
    left: 50%;
    margin: -200px 0 0 -300px;
}
.prosearch form .input-lg{
    float: left;
    width: 470px;
    height: 60px;
    padding: 0 20px;
    color: #000;
    background: #fff;
    border-radius: 5px 0 0 5px;
    border: 0;
    outline: 0;
}
.prosearch form .input-search-btn{
    float: right;
    width: 110px;
    height: 60px;
    color: #fff;
    font-size: 20px;
    background: #a41e23;
    border-radius: 0 5px 5px 0;
    border: 0;
    outline: 0;
    position: unset;
}






/*download*/
.download{
    padding-top: 30px;
    overflow: hidden;
}
.download ul li{
    width: 32%;
    margin: 2% 2% 0 0;
}
.download ul li:nth-child(3n){
    margin-right: 0;
}
.download ul li a{
    display: block;
}
.download ul li .content{
    padding: 10px;
    box-shadow: 0 0 5px rgba(0, 0, 0, .2);
}
.download ul li .content img{
    width: 100%;
}
.download ul li .downicon{
    float: right;
    padding: 18px 10px 0;
}
.download ul li .title{
    color: #333;
    font-size: 16px;
    padding: 15px 5px 0;
}
.download ul li:hover .title{
    color: #a41e23;
}
.download ul li .updatetime{
    color: #888;
    font-size: 14px;
    padding: 10px 5px;
}
/*download*/

/*guide*/
.guidebj{
    width: 100%;
    height: 100%;
    background: url(/michuanimg/guide/guidebj.jpg) center / cover no-repeat;
    overflow: hidden;
    position: relative;
}
.guidebj .guidelogo{
    position: absolute;
    top: 8%;
    left: 5%;
}
.guidebj .guidelang{
    width: 100%;
    text-align: center;
    position: absolute;
    left: 0;
    bottom: 10%;
}
.guidebj .guidelang a{
    display: inline-block;
    width: 200px;
    line-height: 60px;
    color: #fff;
    font-size: 20px;
    background: #303030;
    border-radius: 10px;
    margin: 0 10px;
}
.guidebj .guidelang a:hover,
.guidebj .guidelang a.hover{
    background: #a41e23;
}
/*guide*/
@media (max-width: 1200px){
    #header .headerbj .headnav ul li{
        padding: 15px 15px;
        margin-right: 5px ;
    }
    #header .headerbj .headlang{
        display: none;
    }
    #footer .footcon .footpro{
        width: 400px;
    }
    .showproduct .proone .proimgurl .cloud-zoom-big{
        display: none !important;
    }
    .contact .contactlist li{
        padding: 40px 30px 20px;
    }
}
/*手机版*/
#header .menubutton{  display: none;  width: 30px;  height: 30px;  cursor: pointer;  margin: 14px 12px 6px 0;  }
#header .menubutton .menuicon{  height: 2px;  margin-bottom: 8px;  background: #a41e23;  }
#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: #a41e23 !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 #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: #a41e23;  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 #a41e23;  overflow: hidden;  }
#sortpro .sortpro_left{  float: left;  width: 65%;  color: #fff;  font-size: 14px;  background: #a41e23;  }
#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: #a41e23;  }
.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 #a41e23;  }
.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: #a41e23;  }
/*手机版*/
@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,
    #header.height{
        top: 0;
        box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    }
    #header .headertop,
    #header .headerbj .headfr,
    #header #headpronav{
        display: none;
    }
    #header .headerbj{
        border: 0;
    }
    #header .headerbj .headlogo,
    #header.height .headerbj .headlogo{
        height: 50px;
        padding: 8px 5px;
    }
    #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;
    }
    .inchoose{
        padding: 40px 0 20px;
    }
    .inchoose .title1{
        font-size: 25px;
    }
    .inchoose .title2{
        width: 100%;
    }
    .inchoose .content .wow{
        width: 100%;
        margin: 0 0 30px;
    }
    .inchoose .content .wow .float-shadow p:nth-child(2){
        min-height: unset;
        margin: 20px 0;
    }
    .inabout{
        padding: 40px 0 30px;
    }
    .inabout .name{
        font-size: 25px;
    }
    .inabout .description{
        font-size: 15px;
        line-height: 2;
    }
    .inabout .countup{
        border-bottom: 0;
    }
    .inabout .countup ul li{
        width: 100%;
        border-bottom: 1px solid #f1f1f1;
    }
    .inabout .countup ul li .shuzi{
        border: 0;
    }
    .inabout .inaboutimg li{
        width: 48%;
        margin: 0 4% 4% 0;
    }
    .inabout .inaboutimg li:nth-child(2n){
        margin-right: 0;
    }
    .inpro{
        padding: 0 0 50px;
    }
    .inpro ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    #footer .footsearch,
    #footer .footcon,
    #footer .foottail .footlogo{
        display: none;
    }
    #footer .foottail .footright a{
        display: inline-block;
    }

    #footer .foottail .tailimg{
        margin: 0;
    }
    #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{
        padding: 40px 0 0;
    }
    .about .aboutwork{
        padding: 40px 0 20px;
    }
    .about .aboutwork ul li{
        width: 100%;
        margin: 0 0 20px;
    }
    .pronav{
        display: none;
    }
    .product{
        padding: 0;
    }
    .product ul li {
        width: 100%;
        margin: 30px 0 0;
    }
    .showproduct .proone{
        padding: 20px 0 30px;
    }
    .showproduct .proone .mobprodisplayimg .swiper-wrapper{
        height: auto;
    }
    .showproduct .proone .proimgurl, .showproduct .proone .prodisplayimg{
        display: none;
    }
    .showproduct .proone .mobprodisplayimg .swiper-pagination-bullet-active{
        background: #a41e23;
    }
    .showproduct .proone .proonefr{
        width: 100%;
    }
    .showproduct .proone .proonefr .proonename{
        font-size: 25px;
        line-height: 30px;
        padding: 30px 0 0;
    }
    .showproduct .proone .proonefr .proonetitle{
        font-size: 25px;
        padding: 20px 0 40px;
    }
    .showproduct .protwo .content{
        overflow: auto;
    }
    #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;  }

    .newsnav{
        display: none;
    }
    .news ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .shownews .detailpage .more2{
        display: none;
    }
    .contact{
        padding: 50px 0;
    }
    .contact .contacttel{
        font-size: 25px;
    }
    .contact .contactfx{
        display: none;
    }
    .contact .contactlist li{
        width: 100%;
        margin: 0 0 30px;
    }
    .contact .contactlist li .contact2wm{
        position: unset;
        margin: 30px auto 10px;
    }
    .download{
        padding: 0;
    }
    .download ul li{
        width: 100%;
        margin: 30px 0 0;
    }







    .prosearch{
        display: block;
        margin: -160px 0 0 -150px;
    }
    .prosearch form .input-lg{
        width: 200px;
        height: 50px;
    }
    .prosearch form .input-search-btn{
        width: 80px;
        height: 50px;
        font-size: 20px;
    }









}