

@font-face{
    font-family: 'Roboto Medium';
    src: url('../fonts/RobotoMedium.eot');
    src: url('../fonts/RobotoMedium.eot#iefix') format('embedded-opentype'),
    url('../fonts/RobotoMedium.woff2') format('woff2'),
    url('../fonts/RobotoMedium.woff') format('woff'),
    url('../fonts/RobotoMedium.ttf') format('truetype'),
    url('https://zheqi.com.cn/templates/miv6/michos/fonts/Roboto%20Medium.svg#NeuesBauenDemo') format('svg');
    font-weight:normal;
    font-style:normal
}
.font1{font-family: 'Roboto Medium';}

/*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 '微软雅黑';}
/* 重置列表元素 */
ul,ol,li,dl,dt,dd{ list-style: none; }
ul:after{ content: ''; clear: both; display: block; }
/* 重置文本格式元素 */
a{ color: #010103; text-decoration: none; transition-duration: 1s; }
a:hover,a:focus{ color: #cc2323; 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: '微软雅黑';font-size: 14px;background: #fff;}
::-webkit-input-placeholder{opacity: 1;}::-moz-placeholder{opacity: 1;}:-ms-input-placeholder{opacity: 1;}
@media(min-width: 1700px){.container{width: 1700px;padding: 0;}}
.fl{float: left;}
.fr{float: right;}
.mobileweb{display: none;}
.wow{visibility: visible!important;}
/*end web*/

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

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

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



/*header*/
#header{
    width: 100%;
    position: fixed;
    z-index: 10000;
    top: 0;
    transition-duration: 1s;
}
#header.height{
    top: -40px;
}
#header .headertop{
    background: #fff;
    border-bottom: 1px solid #dbdbdb;
}
#header .headertop .webname{
    color: #0f0f0f;
    line-height: 39px;
    margin-left: 190px;
}
#header .headertop .headlang{
    color: #0f0f0f;
    line-height: 39px;
}
#header .headertop .headlang a{
    margin-left: 10px;
}
#header .headertop .headlang a:nth-child(3){
    line-height: 13px;
    border-left: 1px solid #0f0f0f;
    border-right: 1px solid #0f0f0f;
    padding: 0 20px;
    margin: 13px 10px 13px 20px;
}
#header .headerbj{
    background: #fff;
    border-bottom: 5px solid #cc2323;
}
#header .headerbj .container{
    position: relative;
}
#header .headerbj .headlogo{
    width: 160px;
    height: 120px;
    padding: 20px 0;
    background: #fff;
    border-left: 1px solid #dbdbdb;
    border-right: 1px solid #dbdbdb;
    position: absolute;
    z-index: 1;
    left: 0;
    bottom: 0;
}
#header.height .headerbj .headlogo{
    height: 60px;
    padding: 5px 0;
}
#header .headerbj .headlogo img{
    height: 100%;
    margin: auto;
}
#header .headerbj .headnav{
    display: block;
    margin-left: 20px;
}
#header .headerbj .headnav > ul > li{
    margin-left: 50px;
}
#header .headerbj .headnav > ul > li .overflow{
    height: 40px;
    line-height: 40px;
    overflow: hidden;
    margin: 20px 0;
    transition-duration: 1s;
}
#header.height .headerbj .headnav > ul > li .overflow{
    margin: 10px 0;
}
#header .headerbj .headnav > ul > li .overflow a{
    display: block;
    color: #0f0f0f;
    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: #cc2323;
    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: fixed;
    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 38px 15px 0;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li:nth-last-child(1){
    margin-right: 0;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li a{
    display: block;
    color: #0f0f0f;
    font-size: 16px;
    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: #cc2323;
    border-bottom: 2px solid #cc2323;
}
#header .headerbj .pro2wm{
    color: #b7b7b7;
    font-size: 18px;
    line-height: 40px;
    margin: 20px 0;
    transition-duration: 1s;
}
#header.height .headerbj .pro2wm{
    margin: 10px 0;
}
#header .headerbj .pro2wm:before{
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #fff;
    top: 45px;
    right: 50%;
    margin-right: -8px;
}
#header .headerbj .pro2wm:after{
    height: 5px;
    top: 55px;
    right: 35%;
}
#header .headerbj .pro2wm .wxewm{
    width: 160px;
    height: 0;
    padding: 0 5px;
    top: 60px;
    left: 50%;
    margin-left: -80px;
}
#header .headerbj .pro2wm:hover .wxewm{
    height: 160px;
    padding: 5px;
}
/*banner*/
#mcbanner{
    padding-top: 120px;
    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 #cc2323;
}
.more:before{
    content: '';
    width: 180%;
    height: 100%;
    background: #cc2323;
    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;
}

.incolumn{
    padding: 50px 0 80px;
    overflow: hidden;
}
.incolumn ul li{
    width: 18.4%;
    margin: 30px 2% 0 0;
}
.incolumn ul li:nth-child(5){
    margin-right: 0;
}
.incolumn ul li a{
    display: block;
    text-align: center;
    border-bottom: 1px solid transparent;
}
.incolumn ul li a:hover{
    border-bottom: 1px solid #cfcfcf;
}
.incolumn ul li a .columnimg{
    padding: 20px 0;
    background: #fff;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    transition-duration: 1s;
}
.incolumn ul li a:hover .columnimg{
    background: #cc2323;
    border: 1px solid #cc2323;
}
.incolumn ul li a .columnimg img{
    margin: auto;
}
.incolumn ul li a .columnimg img:nth-child(2){
    display: none;
}
.incolumn ul li a:hover .columnimg img:nth-child(1){
    display: none;
}
.incolumn ul li a:hover .columnimg img:nth-child(2){
    display: block;
}
.incolumn ul li a .name{
    color: #0f0f0f;
    font-size: 16px;
    line-height: 70px;
    height: 70px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.incolumn ul li a:hover .name{
    color: #cc2323;
}
.inbrand{
    padding: 0 0 80px;
    overflow: hidden;
}
.inbrand ul li{
    width: 32%;
    margin-right: 2%;
}
.inbrand ul li:nth-child(3){
    margin-right: 0;
}
.inbrand ul li a{
    display: block;
}
.inbrand ul li a .imgurl{
    overflow: hidden;
}
.inbrand ul li a .imgurl img{
    width: 100%;
}
.inbrand ul li a .title{
    color: #0f0f0f;
    font-size: 18px;
    line-height: 80px;
    padding: 0 10px;
    border-bottom: 1px solid #cfcfcf;
}
.inbrand ul li a:hover .title{
    color: #cc2323;
}
.inbrand ul li a .inmore{
    color: #5f5f5f;
    padding: 20px 10px 0;
}
.inbrand ul li a:hover .inmore{
    color: #cc2323;
}
.inbrand ul li a .inmore img{
    opacity: 0;
    position: relative;
    left: -20px;
    transition-duration: 1s;
}
.inbrand ul li a:hover .inmore img{
    opacity: 1;
    left: 0;
}
.inaboutbj{
    background: url(../images/inaboutbj.jpg) fixed center / cover no-repeat;
    overflow: hidden;
}
.inaboutbj .inabout{
    padding: 0 0 80px;
    overflow: hidden;
}
.inaboutbj .inabout .inaboutfl{
    width: 40%;
    color: #fff;
    padding: 80px 0 0;
}
.inaboutbj .inabout .inaboutfl .webname{
    font-size: 30px;
}
.inaboutbj .inabout .inaboutfl .title1{
    font-size: 16px;
    margin: 15px 0 30px;
}
.inaboutbj .inabout .inaboutfl .title2{
    font-size: 16px;
    line-height: 30px;
}
.inaboutbj .inabout .inaboutvideo{
    position: relative;
}
.inaboutbj .inabout .inaboutvideo .videotit{
    color: #fff;
    font-size: 18px;
    line-height: 40px;
    position: absolute;
    left: 120px;
    bottom: 20px;
}
.inaboutbj .inabout .inaboutvideo .videotit span{
    display: inline-block;
    font-size: 14px;
    border-left: 1px solid #fff;
    padding-left: 20px;
    margin-left: 20px;
}
.inaboutbj .countup{
    border-top: 1px solid rgba(255, 255, 255, .2);
}
.inaboutbj .countup ul{
    width: 50%;
    background: #fff;
}
.inaboutbj .countup ul li{
    width: 33.33%;
    border-left: 1px solid #cfcfcf;
    padding-left: 50px;
    margin: 50px 0;
}
.inaboutbj .countup ul li:nth-child(1){
    border-left: 1px solid transparent;
}
.inaboutbj .countup ul li .shuzi{
    color: #0f0f0f;
    font-size: 36px;
}
.inaboutbj .countup ul li .countupname{
    color: #5c5c5c;
    padding-top: 10px;
}
.videos{
    display: none;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
    position: fixed;
    z-index: 1000000;
    top: 0;
    left: 0;
}
.videos .videoer{
    position: absolute;
    z-index: 10;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.videos .videoer #video{
    width: 600px;
    outline: 0;
}
.videos .videoer .vclose{
    cursor: pointer;
    position: absolute;
    z-index: 10;
    top: 0;
    right: 0;
}
@media (max-width: 992px){
    .videos .videoer{
        width: 90%;
    }
    .videos .videoer #video{
        width: 100%;
    }
}
.inwhy{
    padding: 80px 0;
    overflow: hidden;
}
.inwhy .intitle1{
    color: #cc2323;
    font-size: 30px;
    text-align: center;
}
.inwhy .intitle2{
    color: #0f0f0f;
    text-align: center;
    padding: 20px 0 80px;
}
.inwhy ul{
    background: url(../images/inwhybj.jpg) center no-repeat;
}
.inwhy ul li{
    width: 32%;
    padding: 50px 30px 40px;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0);
    border-radius: 10px;
    position: relative;
    transition-duration: 1s;
}
.inwhy ul li:hover{
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    z-index: 1;
}
.inwhy ul li.fr{
    text-align: right;
}
.inwhy ul li .text1{
    color: #cc2323;
    font-size: 72px;
    opacity: 0;
    position: absolute;
    z-index: 2;
    top: 0;
    right: 10px;
    transition-duration: 1s;
}
.inwhy ul li.fr .text1{
    left: 10px;
    right: auto;
}
.inwhy ul li:hover .text1{
    opacity: 1;
    top: -40px;
}
.inwhy ul li .text2{
    color: #cc2323;
    font-size: 18px;
}
.inwhy ul li .text3{
    color: #0f0f0f;
    line-height: 26px;
    border-bottom: 2px solid transparent;
    padding: 20px 0;
    transition-duration: 1s;
}
.inwhy ul li:hover .text3{
    border-bottom: 2px solid #cfcfcf;
}
.invideobj{
    position: relative;
    overflow: hidden;
}
.invideobj .invideo{
    width: 100%;
    color: #fff;
    position: absolute;
    top: 80px;
    left: 0;
}
.invideobj .invideo .webname{
    font-size: 16px;
}
.invideobj .invideo .namebj{
    width: 35px;
    height: 5px;
    background: #fff;
    margin: 30px 0 80px;
}
.invideobj .invideo .text1{
    font-size: 30px;
}
.invideobj .invideo .text2{
    font-size: 30px;
    margin: 20px 0 80px;
}
.inpro{
    padding: 80px 0;
    overflow: hidden;
}
.inpro .intitle1{
    color: #cc2323;
    font-size: 30px;
}
.inpro .inmore{
    line-height: 30px;
}
.inpro ul li{
    width: 23.5%;
    margin: 50px 2% 0 0;
}
.inpro ul li:nth-child(4n){
    margin-right: 0;
}
.inpro ul li a{
    display: block;
    border-bottom: 1px solid #ddd;
}
.inpro ul li a .imgurl{
    overflow: hidden;
}
.inpro ul li a .imgurl img{
    width: 100%;
}
.inpro ul li a .protitle{
    overflow: hidden;
}
.inpro ul li a .protitle .title{
    color: #0f0f0f;
    font-size: 16px;
    line-height: 80px;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.inpro ul li a:hover .protitle .title{
    color: #cc2323;
}
.inpro ul li a .protitle img{
    opacity: 0;
    position: relative;
    top: 35px;
    left: -20px;
    transition-duration: 1s;
}
.inpro ul li a:hover .protitle img{
    opacity: 1;
    left: 0;
}
.injob{
    background: url(../images/injob.jpg) center / cover no-repeat;
    padding: 80px 0 100px;
    overflow: hidden;
}
.injob .injobfl{
    color: #fff;
}
.injob .injobfl .text1{
    font-size: 30px;
    padding-bottom: 20px;
}
.injob .injobfl .text2{
    font-size: 30px;
}
.injob .injobfr{
    width: 58%;
    color: #fff;
}
.injob .injobfr .text1{
    font-size: 16px;
}
.injob .injobfr .text2{
    display: table;
    color: #fff;
    font-size: 30px;
    padding: 10px 0 30px;
}
.injob .injobfr .text3{
    display: table;
    color: #fff;
    font-size: 16px;
    border-bottom: 1px solid #fff;
    padding-bottom: 5px;
}
.injob .injobfr .text3 i{
    width: 16px;
    height: 16px;
    line-height: 14px;
    font-size: 14px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    margin: 0 40px 0 10px;
}
.innews{
    padding: 80px 0;
    overflow: hidden;
}
.innews .intitle1{
    color: #cc2323;
    font-size: 30px;
}
.innews .innewsnav dl{
    height: 20px;
    border-left: 1px solid #c9c9c9;
    padding-left: 10px;
    margin-left: 10px;
}
.innews .innewsnav dl:nth-child(1){
    border: 0;
    padding: 0;
    margin: 0;
}
.innews .innewsnav dl a{
    display: block;
    color: #000;
    font-size: 16px;
    background: #fff;
    padding: 8px 15px;
    position: relative;
    top: -5px;
}
.innews .innewsnav dl a:hover{
    color: #fff;
    background: #cc2323;
}
.innews ul li{
    width: 32%;
    margin: 50px 2% 0 0;
}
.innews ul li:nth-child(3n){
    margin-right: 0;
}
.innews ul li a{
    display: block;
}
.innews ul li a .imgurl{
    overflow: hidden;
}
.innews ul li a .imgurl img{
    width: 100%;
}
.innews ul li a .title{
    color: #010103;
    font-size: 18px;
    line-height: 80px;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.innews ul li a:hover .title{
    color: #cc2323;
}
.innews ul li a .description{
    color: #010103;
    font-size: 16px;
    line-height: 30px;
    height: 90px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.innews ul li a .updatetime{
    color: #999999;
    font-size: 24px;
    border-top: 1px solid #ced3d8;
    padding-top: 30px;
    margin-top: 30px;
}
.innews ul li a .updatetime img{
    opacity: 0;
    position: relative;
    top: 8px;
    left: -20px;
    transition-duration: 1s;
}
.innews ul li a:hover .updatetime img{
    opacity: 1;
    left: 0;
}
.inpartner{
    background: #f6f6f6;
    padding: 80px 0;
    overflow: hidden;
}
.inpartner .intitle{
    color: #cc2323;
    font-size: 30px;
    padding-bottom: 50px;
}
.inpartner table{
    margin: 0;
    background: #fff;
}
.inpartner table tr td{
    padding: 0;
    border: 1px solid #e5e5e5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0);
    filter: grayscale(1);
    position: relative;
    transition-duration: 1s;
}
.inpartner table tr td:hover{
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
    filter: grayscale(0);
    z-index: 1;
}
.inpartner table tr td img{
    margin: auto;
}
.inpartner table tr td a{
    display: block;
    font-size: 16px;
    text-align: center;
}
.inpartner table tr td a p{
    padding-top: 20px;
}
/*index*/

/*foot*/
#footer{
    background: #0f0f0f;
    position: relative;
    z-index: 2;
}
#footer .footcon{
    padding: 50px 0 80px;
    overflow: hidden;
}
#footer .footcon .footnav{
    width: calc(18% - 80px);
}
#footer .footcon .footnav .namemark{
    color: #fff;
    font-size: 16px;
    padding-bottom: 20px;
}
#footer .footcon .footnav dl a{
    display: inline-block;
    color: #b7b7b7;
    font-size: 16px;
    line-height: 30px;
    position: relative;
    transition-duration: .5s;
}
#footer .footcon .footnav dl a:hover{
    color: #fff;
}
#footer .footcon .footnav dl a:before{
    content: '';
    width: 10px;
    height: 1px;
    background: #fff;
    position: absolute;
    top: 15px;
    left: 0;
    opacity: 0;
    transition-duration: 1s;
}
#footer .footcon .footnav dl a:hover:before{
    opacity: 1;
}
#footer .footcon .footnav dl a p{
    position: relative;
    left: 0;
    transition-duration: 1s;
}
#footer .footcon .footnav dl a:hover p{
    left: 15px;
}
#footer .footcon .footadd{
    width: 400px;
    border-left: 1px solid #292929;
    padding-left: 50px;
}
#footer .footcon .footadd .title{
    color: #fff;
    font-size: 16px;
    padding-bottom: 20px;
}
#footer .footcon .footadd p{
    color: #b7b7b7;
    font-size: 16px;
}
#footer .footcon .footadd p a{
    color: #b7b7b7;
}
#footer .footcon .footadd p a:hover{
    color: #fff;
}
#footer .footcon .footadd .footaddmap{
    display: table;
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    background: #cc2323;
    padding: 10px 25px;
    margin: 30px 0;
}
#footer .footcon .footadd .footaddmap img{
    padding-right: 10px;
}
#footer .footshare{
    width: 100%;
    text-align: center;
    position: absolute;
    margin-top: -18px;
}
#footer .footshare a{
    display: inline-block;
    width: 36px;
    color: #fff;
    font-size: 16px;
    line-height: 34px;
    text-align: center;
    background: #0f0f0f;
    border: 1px solid #2b2b2b;
    border-radius: 5px;
    margin: 0 10px;
}
#footer .footshare a:hover{
    background: #cc2323;
    border: 1px solid #cc2323;
}
#footer .foottail{
    border-top: 1px solid #1d1d1d;
    padding: 50px 0;
}
#footer .foottail .footright{
    color: #747474;
    line-height: 20px;
}
#footer .foottail .footright a{
    color: #747474;
}
#footer .foottail .footright a:hover{
    color: #fff;
}
#footer .foottail .footright br{
    display: none;
}
#footer .foottail .tailimg{
    position: relative;
    left: 0;
}
#footer .foottail .tailimg:hover{
    left: -5px;
}
#footer .foottail .footother{
    color: #747474;
    line-height: 20px;
    margin-top: 10px;
}
#footer .foottail .footother a{
    color: #747474;
}
#footer .foottail .footother a:hover{
    color: #fff;
}
/*foot*/

/*search*/
.prosearch{
    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: -220px 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: #cc2323;
    border-radius: 0 5px 5px 0;
    border: 0;
    outline: 0;
    position: unset;
}
/*search*/

/*product*/
.product{
    overflow: hidden;
}
.product .pronav{
    width: 330px;
    margin: 50px 0;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
}
.product .pronav .pronavtitle{
    background: #cc2323;
    padding: 20px;
    position: relative;
}
.product .pronav .pronavtitle .title1{
    color: #b61b1b;
    font-size: 65px;
}
.product .pronav .pronavtitle .title2{
    color: #fff;
    font-size: 30px;
    position: absolute;
    bottom: 15px;
}
.product .pronav ul{
    padding: 10px 0 20px;
}
.product .pronav ul li > a{
    display: block;
    color: #010103;
    font-size: 16px;
    line-height: 25px;
    padding: 12px 20px;
    border-bottom: 1px solid #e5e5e5;
}
.product .pronav ul li > a i{
    line-height: 25px;
}
.product .pronav ul li > a:hover,
.product .pronav ul li.hover > a{
    color: #fff;
    background: #cc2323;
}
.product .pronav ul li .navdown{
    width: 100%!important;
    display: none;
}
.product .pronav ul li.hover .navdown{
    display: block;
}
.product .pronav ul li .navdown a{
    display: block;
    color: #010103;
    line-height: 25px;
    padding: 12px 20px;
    border-bottom: 1px dotted #e5e5e5;
}
.product .pronav ul li .navdown a:hover,
.product .pronav ul li .navdown a.hover{
    color: #cc2323;
}
.product .prolist{
    width: calc(100% - 400px);
}
.product .prolist ul li{
    width: 31.33%;
    margin: 50px 3% 0 0;
}
.product .prolist ul li:nth-child(3n){
    margin-right: 0;
}
.product .prolist ul li a{
    display: block;
    border-bottom: 1px solid #ddd;
}
.product .prolist ul li a .imgurl{
    overflow: hidden;
}
.product .prolist ul li a .imgurl img{
    width: 100%;
}
.product .prolist ul li a .protitle{
    overflow: hidden;
}
.product .prolist ul li a .protitle .title{
    color: #0f0f0f;
    font-size: 16px;
    line-height: 80px;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.product .prolist ul li a:hover .protitle .title{
    color: #cc2323;
}
.product .prolist ul li a .protitle img{
    opacity: 0;
    position: relative;
    top: 35px;
    left: -20px;
    transition-duration: 1s;
}
.product .prolist ul li a:hover .protitle img{
    opacity: 1;
    left: 0;
}
/*showproduct*/
.showproduct{  width: calc(100% - 400px);  padding: 50px 0 100px;  }
/*<!--第一部分-->*/
.showproduct .proone{  padding-bottom: 50px;  }
.showproduct .proone .proimgurl{  width: 508px;  margin: auto;  }
.showproduct .proone .prodisplayimg{  width: 80px;  margin-right: 10px;  position: relative;  }
.showproduct .proone .proonefr{  width: calc(100% - 630px);  }
.showproduct .proone .proonefr .proonetitle{  color: #071119;  font-size: 18px;  line-height: 28px;  border-bottom: 1px solid #ccc;  padding: 20px 0;  }
.showproduct .proone .proonefr .content{  line-height: 2;  height: 165px;  overflow: auto;  margin: 20px 0;  }
.showproduct .proone .proonefr .content p br{  display: none;  }
.showproduct .proone .proonefr .prooneshare{  border-top: 1px solid #ccc;  border-bottom: 1px solid #ccc;  padding: 30px 0 25px;  }
.showproduct .proone .proonefr .prooneshare a{  display: inline-block;  color: #fff;  font-size: 15px;  background: #0f0f0f;  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;  background: #cc2323;  }
.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{  padding-bottom: 50px;  }
.showproduct .protwo .page_left{  width: 50%;  background: #cc2323;  }
.showproduct .protwo .page_right{  width: 50%;  background: #0f0f0f;  }
.showproduct .protwo a{  display: block;  padding: 30px 50px;  }
.showproduct .protwo a .page1{  color: #fff;  font-size: 18px;  padding-bottom: 30px;  }
/*<!--第三部分-->*/
.showproduct .prothree .related{  position: relative;  }
.showproduct .prothree .related .title1{  color: #eeefef;  font-size: 90px;  }
.showproduct .prothree .related .title2{  color: #2b2c2d;  font-size: 30px;  position: absolute;  bottom: 10px;  }
.showproduct .prothree .prolist{  width: 100%;  }
/*product*/

/*news*/
.navnews{
    border-bottom: 1px solid #d5d5d5;
}
.navnews ul li{
    width: 170px;
    border-right: 1px solid #d5d5d5;
}
.navnews ul li:nth-child(1){
    border-left: 1px solid #d5d5d5;
}
.navnews ul li a{
    display: block;
    color: #2b2c2d;
    line-height: 30px;
    padding: 15px 10px;
}
.navnews ul li a:hover,
.navnews ul li a.hover{
    color: #fff;
    background: #cc2323;
}
.navnews ul li a img{
    height: 30px;
    margin-right: 10px;
}
.navnews ul li a img:nth-child(2),
.navnews ul li a:hover img:nth-child(1),
.navnews ul li a.hover img:nth-child(1){
    display: none;
}
.navnews ul li a:hover img:nth-child(2),
.navnews ul li a.hover img:nth-child(2){
    display: block;
}
.news{
    overflow: hidden;
}
.news ul li{
    width: 31.33%;
    margin: 50px 3% 0 0;
}
.news ul li:nth-child(3n){
    margin-right: 0;
}
.news ul li a{
    display: block;
}
.news ul li a .imgurl{
    overflow: hidden;
}
.news ul li a .imgurl img{
    width: 100%;
}
.news ul li a .title{
    margin: 20px 0 0;
    color: #0e0e0e;
    font-size: 18px;
    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: #cc2323;
}
.news ul li a .updatetime{
    color: #868686;
    border-bottom: 1px solid #cacaca;
    padding: 20px 0;
    margin-bottom: 30px;
}
.news ul li a .description{
    color: #676767;
    font-size: 16px;
    line-height: 30px;
    height: 90px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
/*shownews*/
.shownews{
    padding: 50px 0;
    overflow: hidden;
}
.shownews .shownewsfl{
    width: 420px;
}
.shownews .title{
    color: #000;
    font-size: 18px;
    line-height: 30px;
}
.shownews .imgurl{
    padding: 20px 0;
}
.shownews .updatetime{
    color: #051929;
    font-size: 16px;
    border-bottom: 1px solid #cdcfd1;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.shownews .name{
    color: #787e82;
}
.shownews .shownewsfr{
    width: calc(100% - 420px);
    padding-left: 5%;
}
.shownews .content{
    color: #2b2c2d;
    font-size: 16px;
    line-height: 30px;
}
.shownews .detailpage{
    color: #2b2c2d;
    padding: 30px 0 0;
    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: #2b2c2d;
    position: relative;
    left: 0;
}
.shownews .detailpage p a:hover{
    color: #cc2323;
    text-decoration: underline;
    left: 10px;
}
.shownews .detailpage .more2{
    color: #fff;
    background: #cc2323;
    border-radius: 5px;
    padding: 15px 30px;
}
/*news*/

/*mcjob*/
.mcjob{
    padding-top: 50px;
    overflow: hidden;
}
.mcjob .mcjobtitle{
    color: #fff;
    background: #cc2323;
    border-radius: 5px;
}
.mcjob .mcjobtitle ul li{
    float: left;
    width: 16.66%;
    line-height: 60px;
    text-align: center;
}
.mcjob .mcjobtitle ul li:nth-child(1){
    text-align: left;
    padding-left: 30px;
}
.mcjob .mcjoblist ul li{
    margin-top: 20px;
    background: #fff;
    border: 1px solid #d0d0d0;
    border-radius: 5px;
    cursor: pointer;
}
.mcjob .mcjoblist ul li dl{
    float: left;
    width: 16.66%;
    height: 50px;
    line-height: 50px;
    text-align: center;
    color: #464646;
}
.mcjob .mcjoblist ul li dl:nth-child(1){
    text-align: left;
    padding-left: 30px;
}
.mcjob .mcjoblist ul li dl.jobicon{
    background: url(../images/jobicon1.jpg) center no-repeat;
}
.mcjob .mcjoblist ul li:hover dl.jobicon{
    background: url(../images/jobicon2.jpg) center no-repeat;
}
.mcjob .mcjoblist ul li .jobcontent{
    border-top: 1px dotted #9c9c9c;
    margin: 0 10px;
    display: none;
}
.mcjob .mcjoblist ul li .jobcontent .content{
    color: #585858;
    font-size: 14px;
    line-height: 2;
    padding: 30px 20px;
}
.mcjob .mcjoblist ul li .jobcontent .card-body-footer .btn-squared{
    float: right;
    width: 115px;
    height: 115px;
    line-height: 115px;
    color: #fff;
    font-size: 24px;
    background: #cc2323;
    border-radius: 50%;
    margin: 5% 5% 0 0;
    padding: 0;
    border: 0;
}
.modal-backdrop{
    z-index: 10001;
}
.modal{
    z-index: 10002;
}
.modal .radio-custom{
    display: inline-block;
    line-height: 20px;
    margin-left: 20px;
}
.modal .met-getcode{
    max-width: none;
}
.modal .modal-dialog .modal-header{
    background: #cc2323;
}
.modal .modal-dialog .modal-body .btn-primary{
    border-color: #cc2323;
    background-color: #cc2323;
}
@media (max-width: 992px){
    .mcjob{
        padding: 0;
    }
    .mcjob .mcjobtitle,
    .mcjob .mcjoblist ul li dl{
        display: none;
    }
    .mcjob .mcjoblist ul li dl:nth-child(1){
        display: block;
        width: 100%;
    }
    .mcjob .mcjoblist ul li .jobcontent{
        display: block;
    }
    .mcjob .mcjoblist ul li .jobcontent .card-body-footer .btn-squared{
        width: 50px;
        height: 50px;
        line-height: 50px;
        font-size: 14px;
        margin: 10% 0 0;
    }
}
/*mcjob*/

/*download*/
#download1{
    padding: 70px 0 100px;
    overflow: hidden;
}
#download1 .downtitle{
    position: relative;
    margin-bottom: 20px;
}
#download1 .downtitle .title1{
    color: #eeefef;
    font-size: 90px;
}
#download1 .downtitle .title2{
    color: #2b2c2d;
    font-size: 30px;
    position: absolute;
    bottom: 10px;
}
#download1 ul li{
    width: 48%;
    border: 1px solid #d5d5d5;
    margin: 30px 4% 0 0;
}
#download1 ul li:nth-child(2n){
    margin-right: 0;
}
#download1 ul li .title{
    width: calc(100% - 160px);
    color: #2b2c2d;
    line-height: 30px;
    padding: 10px 30px;
}
#download1 ul li .title img{
    margin-right: 10px;
}
#download1 ul li .downloadurl{
    color: #2b2c2d;
    line-height: 30px;
    border-left: 1px solid #d5d5d5;
    padding: 10px 30px;
}
#download1 ul li .downloadurl img{
    margin-right: 10px;
}
#download2{
    background: url(../images/downloadbj.jpg) center / cover no-repeat;
    padding: 70px 0 100px;
    overflow: hidden;
}
#download2 .downtitle{
    position: relative;
    margin-bottom: 20px;
}
#download2 .downtitle .title1{
    color: rgba(255, 255, 255, .1);
    font-size: 90px;
}
#download2 .downtitle .title2{
    color: #fff;
    font-size: 30px;
    position: absolute;
    bottom: 10px;
}
#download2 ul li{
    width: 31.33%;
    margin: 30px 3% 0 0;
    background: #fff;
}
#download2 ul li:nth-child(3){
    margin-right: 0;
}
#download2 ul li img {
    width: 100%;
}
#download2 ul li p{
    color: #2b2c2d;
    font-size: 18px;
    line-height: 30px;
    text-align: center;
    padding: 25px 0;
}
#download3{
    padding: 70px 0 100px;
    overflow: hidden;
}
#download3 .downtitle{
    position: relative;
    margin-bottom: 20px;
}
#download3 .downtitle .title1{
    color: #eeefef;
    font-size: 90px;
}
#download3 .downtitle .title2{
    color: #2b2c2d;
    font-size: 30px;
    position: absolute;
    bottom: 10px;
}
#download3 ul li{
    width: 31.33%;
    margin: 30px 3% 0 0;
}
#download3 ul li:nth-child(3){
    margin-right: 0;
}
#download3 ul li video{
    width: 100%;
    display: block;
    outline: 0;
    object-fit: cover;
    cursor: pointer;
}
#download3 ul li .title{
    color: #2b2c2d;
    font-size: 18px;
    padding: 30px 0 10px;
}
/*download*/

/*about*/
.about1{
    padding: 50px 0 200px;
    overflow: hidden;
}
.about1 .about1img{
    width: 50%;
}
.about1 .content{
    width: 48%;
    color: #2b2c2d;
    font-size: 16px;
    line-height: 30px;
}
.about1 .content h2{
    color: #2b2c2d;
    font-size: 30px;
}
.about1 .content h3{
    color: #2b2c2d;
    font-size: 16px;
    padding: 15px 0 30px;
}
.about2{
    background: url(../images/inaboutbj.jpg) fixed center / cover no-repeat;
}
.about2 .about2fl{
    width: calc(100% - 425px);
    padding: 0 2% 50px 0;
}
.about2 .about2fl ul li{
    width: 48%;
    margin-top: 80px;
}
.about2 .about2fl ul li .title1{
    color: #fff;
    font-size: 18px;
    border-bottom: 1px solid #fff;
    padding-bottom: 20px;
    margin-bottom: 20px;
}
.about2 .about2fl ul li p{
    color: #fff;
    font-size: 16px;
    line-height: 30px;
}
.about2 .about2fr{
    width: 425px;
    height: 626px;
    background: url(../images/about2fr.png);
    padding: 30px 0 0 90px;
    position: relative;
    top: -140px;
}
.about2 .about2fr .abouttitle{
    position: relative;
}
.about2 .about2fr .abouttitle .title1{
    color: #eeefef;
    font-size: 90px;
}
.about2 .about2fr .abouttitle .title2{
    color: #2b2c2d;
    font-size: 30px;
    position: absolute;
    bottom: 10px;
}
.about2 .about2fr .abouttitle2{
    padding-top: 280px;
}
.about2 .about2fr .abouttitle2 p{
    display: table;
    color: #eeefef;
    font-size: 30px;
    line-height: 50px;
    border-bottom: 1px solid;
}
.about3{
    border-bottom: 1px solid #bfbfc0;
    padding: 50px 0;
    overflow: hidden;
}
.about3 .abouttitle{
    position: relative;
}
.about3 .abouttitle .title1{
    color: #eeefef;
    font-size: 90px;
}
.about3 .abouttitle .title2{
    color: #2b2c2d;
    font-size: 30px;
    position: absolute;
    bottom: 10px;
}
.about3 .about3tit2{
    color: #2f3031;
    font-size: 18px;
    padding: 40px 0 20px;
}
.about3 ul li{
    width: 31.33%;
    margin: 30px 3% 0 0;
}
.about3 ul li:nth-child(3){
    margin-right: 0;
}
.about3 ul li img{
    width: 100%;
}
.about3 ul li .text1{
    color: #2b2c2d;
    font-size: 18px;
    line-height: 80px;
    border-bottom: 1px solid #bfbfc0;
    margin-bottom: 20px;
}
.about3 ul li .text2{
    color: #2b2c2d;
    font-size: 16px;
    line-height: 30px;
}
.about4{
    border-bottom: 1px solid #bfbfc0;
    padding: 50px 0;
    overflow: hidden;
}
.about4 .abouttitle{
    position: relative;
    text-align: center;
}
.about4 .abouttitle .title1{
    color: #eeefef;
    font-size: 90px;
}
.about4 .abouttitle .title2{
    width: 100%;
    color: #2b2c2d;
    font-size: 30px;
    position: absolute;
    bottom: 10px;
}
.about4 .about4tit2{
    color: #0f0f0f;
    text-align: center;
    padding: 10px 0 50px;
}
.about4 .inwhy{
    padding: 0;
    overflow: unset;
}
.about5{
    padding: 50px 0 100px;
    overflow: hidden;
}
.about5 .abouttitle{
    position: relative;
}
.about5 .abouttitle .title1{
    color: #eeefef;
    font-size: 90px;
}
.about5 .abouttitle .title2{
    color: #2b2c2d;
    font-size: 30px;
    position: absolute;
    bottom: 10px;
}
.about5 table{
    margin: 50px 0 0;
}
.about5 table tr td{
    padding: 0;
    border: 1px solid #e5e5e5;
    box-shadow: 0 0 15px rgba(0, 0, 0, 0);
    filter: grayscale(1);
    position: relative;
    transition-duration: 1s;
}
.about5 table tr td:hover{
    box-shadow: 0 0 15px rgba(0, 0, 0, .15);
    filter: grayscale(0);
    z-index: 1;
}
.about5 table tr td img{
    margin: auto;
}
/*about*/

/*contact*/
.contact{
    padding: 50px 0 100px;
    overflow: hidden;
}
.contact .conadd{
    width: 500px;
}
.contact .conadd .contitle{
    position: relative;
}
.contact .conadd .contitle .title1{
    color: #eeefef;
    font-size: 90px;
}
.contact .conadd .contitle .title2{
    color: #2b2c2d;
    font-size: 30px;
    position: absolute;
    bottom: 10px;
}
.contact .conadd .context{
    color: #010103;
    font-size: 16px;
    padding: 20px 0 45px;
}
.contact .conadd .content p{
    color: #010103;
    font-size: 16px;
    line-height: 40px;
    border-bottom: 1px solid #c9c9ca;
    margin: 0;
}
.contact .conmap{
    width: calc(100% - 550px);
    margin-left: 50px;
    position: relative;
    overflow: hidden;
}
.contact .conmap .conmapimg{
    max-width: 1180px;
    position: relative;
    left: 50%;
    margin-left: -590px;
}
.contact .conmap .footaddmap{
    color: #fff;
    font-size: 16px;
    line-height: 24px;
    background: #cc2323;
    padding: 10px 25px;
    position: absolute;
    left: 20px;
    bottom: 30px;
}
.contact .conmap .footaddmap img{
    padding-right: 10px;
}
.confeed{
    background: #f4f4f4;
    padding: 50px 0;
    overflow: hidden;
}
.confeed .contitle{
    position: relative;
    margin-bottom: 50px;
}
.confeed .contitle .title1{
    color: #e5e5e5;
    font-size: 90px;
}
.confeed .contitle .title2{
    color: #2b2c2d;
    font-size: 30px;
    position: absolute;
    bottom: 10px;
}
.confeed .ftype_input{
    overflow: hidden;
}
.confeed .ftype_input input{
    width: 48%;
    height: 60px;
    color: #000;
    font-size: 16px;
    background: 0;
    outline: 0;
    border: 0;
    border-bottom: 1px solid #090810;
}
.confeed textarea{
    margin-top: 20px;
    width: 100%;
    height: 120px;
    color: #000;
    font-size: 16px;
    line-height: 30px;
    background: 0;
    outline: 0;
    border: 0;
    border-bottom: 1px solid #090810;
}
.confeed .submit{
    width: 180px;
    height: 50px;
    color: #eee;
    font-size: 16px;
    margin-top: 30px;
    background: #cc2323;
    outline: 0;
    border: 0;
}
/*contact*/
@media (max-width: 1700px){
    @media(min-width: 1600px){.container{width: 1600px;}}
}
@media (max-width: 1600px){
    @media(min-width: 1400px){.container{width: 1400px;}}
}
@media (max-width: 1400px){
    .incolumn ul li a .columnimg{
        padding: 0;
    }
    .inaboutbj .inabout .inaboutvideo{
        width: 50%;
    }
    .inaboutbj .inabout .inaboutvideo .videotit{
        left: 80px;
        bottom: 10px;
    }
    .invideobj .invideo .namebj,
    .invideobj .invideo .text2{
        margin: 20px 0 30px;
    }
    #footer .footcon .footnav{
        width: calc(20% - 80px);
    }
    .prosearch{
        margin: -150px 0 0 -300px;
    }
    .showproduct .proone .proonefr{
        width: 100%;
        padding: 20px 0 0;
    }
    .showproduct .proone .proonefr .content{
        height: unset;
    }
}
@media (max-width: 1200px){
    .navnews ul li{
        width: 150px;
    }
    .product .pronav{
        width: 220px;
    }
    .product .pronav .pronavtitle .title1{
        font-size: 42px;
    }
    .product .prolist,
    .showproduct{
        width: calc(100% - 250px);
    }
    .showproduct .proone .proimgurl .cloud-zoom-big{
        display: none !important;
    }
    .showproduct .prothree .related .title1{
        font-size: 80px;
    }
}
/*手机版*/
#header .menubutton{  display: none;  width: 30px;  height: 30px;  cursor: pointer;  margin: 14px 12px 6px 0;  }
#header .menubutton .menuicon{  height: 2px;  margin-bottom: 8px;  background: #cc2323;  }
#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: #cc2323;  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: #cc2323;  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(https://zheqi.com.cn/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 #cc2323;  overflow: hidden;  }
#sortpro .sortpro_left{  float: left;  width: 65%;  color: #fff;  font-size: 14px;  background: #cc2323;  }
#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: #cc2323;  }
.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 #cc2323;  }
.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: #cc2323;  }
/*手机版*/
@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,
    #header.height{
        top: 0;
    }
    #header .headertop,
    #header .headerbj .headnav,
    #header .headerbj .pro2wm{
        display: none;
    }
    #header .headerbj .headlogo,
    #header.height .headerbj .headlogo{
        width: auto;
        height: 50px;
        padding: 5px;
        border: 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;
    }
    .menumain .menubox .menunav .menuone:nth-child(2) .menuone_two,
    .menumain .menubox .menunav .menuone:nth-child(5) .menuone_two{
        display: none;
    }
    .incolumn{
        padding: 20px 0 50px;
    }
    .incolumn ul li{
        width: 48%;
        margin: 30px 4% 0 0;
    }
    .incolumn ul li:nth-child(2n){
        margin-right: 0;
    }
    .incolumn ul li:nth-child(n+5){
        display: none;
    }
    .incolumn ul li a{
        border-bottom: 1px solid #cfcfcf;
    }
    .inbrand{
        padding: 0 0 20px;
    }
    .inbrand ul li{
        width: 100%;
        margin: 0 0 30px;
    }
    .inaboutbj{
        background: url(../images/inaboutbj.jpg) center / cover no-repeat;
    }
    .inaboutbj .inabout{
        padding: 0 0 50px;
    }
    .inaboutbj .inabout .inaboutfl{
        width: 100%;
        padding: 50px 0;
    }
    .inaboutbj .inabout .inaboutvideo{
        width: 100%;
    }
    .inaboutbj .inabout .inaboutvideo .videotit{
        font-size: 14px;
        line-height: 20px;
        left: 60px;
        bottom: 10px;
    }
    .inaboutbj .countup ul{
        width: 100%;
    }
    .inaboutbj .countup ul li{
        padding-left: 20px;
        margin: 20px 0;
    }
    .inwhy{
        padding: 50px 0;
    }
    .inwhy ul{
        background: 0;
    }
    .inwhy ul li{
        width: 100%;
        box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    }
    .inwhy ul li .text1{
        opacity: 1;
        top: -40px;
    }
    .invideobj .invideo{
        display: none;
    }
    .inpro{
        padding: 50px 0;
    }
    .inpro ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .inpro ul li:nth-child(n+3){
        display: none;
    }
    .injob{
        background: url(../images/injobsj.jpg) bottom center / cover no-repeat;
        padding: 0;
    }
    .injob .container{
        padding: 0;
    }
    .injob .injobfl{
        width: 100%;
        background: #0f0f0f;
        padding: 30px 5%;
    }
    .injob .injobfr{
        width: 100%;
        padding: 50px 5%;
    }
    .innews{
        padding: 50px 0;
    }
    .innews .innewsnav dl{
        display: none;
    }
    .innews ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .innews ul li:nth-child(n+3){
        display: none;
    }
    .inpartner{
        padding: 50px 0;
    }
    .inpartner table tr td{
        display: inline-block;
        width: 50%!important;
    }
    .inpartner table tr:nth-child(2),
    .inpartner table tr:nth-child(3) td:nth-child(1),
    .inpartner table tr:nth-child(3) td:nth-child(2),
    .inpartner table tr:nth-child(3) td:nth-child(3),
    .inpartner table tr:nth-child(3) td:nth-child(4){
        display: none;
    }
    .inpartner table tr td a{
        padding: 20px 0;
    }
    #footer .footcon,
    #footer .footshare{
        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;  }

    .navnews{
        display: none;
    }
    .about1{
        padding: 50px 0;
    }
    .about1 .about1img{
        width: 100%;
        padding-bottom: 50px;
    }
    .about1 .content{
        width: 100%;
    }
    .about2{
        background: url(../images/inaboutbj.jpg) center / cover no-repeat;
    }
    .about2 .about2fl{
        width: 100%;
        padding: 0 0 50px;
    }
    .about2 .about2fl ul li{
        width: 100%;
        margin-top: 50px;
    }
    .about2 .about2fr{
        display: none;
    }
    .about3 .about3tit2{
        font-size: 16px;
        line-height: 24px;
    }
    .about3 ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .about4 .abouttitle .title1{
        font-size: 70px;
    }
    .about5{
        padding: 50px 0;
    }
    .about5 table tr td{
        display: inline-block;
        width: 50%!important;
    }
    .about5 table tr:nth-last-child(1) td:nth-child(2),
    .about5 table tr:nth-last-child(1) td:nth-child(3),
    .about5 table tr:nth-last-child(1) td:nth-child(4),
    .about5 table tr:nth-last-child(1) td:nth-child(5),
    .about5 table tr:nth-last-child(1) td:nth-child(6){
        display: none;
    }
    .prosearch{
        margin: -120px 0 0 -150px;
    }
    .prosearch form .input-lg{
        width: 200px;
        height: 50px;
    }
    .prosearch form .input-search-btn{
        width: 80px;
        height: 50px;
        font-size: 20px;
    }
    .product .container{
        padding: 0;
    }
    .product .pronav{
        display: none;
    }
    .product .prolist{
        width: 100%;
    }
    .product .prolist ul li{
        width: 90%;
        margin: 30px 5% 0;
    }
    .showproduct{
        width: 100%;
        padding: 30px 5% 50px;
    }
    .showproduct .proone .proimgurl, .showproduct .proone .prodisplayimg{
        display: none;
    }
    .showproduct .proone .mobprodisplayimg .swiper-pagination-bullet-active{
        background: #cc2323;
    }
    .showproduct .proone .proonefr .prooneshare .pro2wm:nth-child(4){
        display: none;
    }
    .showproduct .protwo a{
        padding: 30px;
    }
    .showproduct .prothree .related .title1{
        font-size: 40px;
    }
    .showproduct .prothree .prolist ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .showproduct .prothree .prolist ul li:nth-child(n+3){
        display: none;
    }
    #message.show #center{  width: 90%;  top: 50px;  transform: translate(-50%, 0);  }
    #message #center #feedback{  padding: 20px 0 20px 20px;  margin-bottom: 50px;  }
    #message #center #feedback .pro{  width: calc(100% - 30px);  margin-bottom: 15px;  }
    #message #center #feedback dl{  width: 100%;  padding: 0 30px 15px 0;  }
    .news ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .shownews .shownewsfl{
        width: 100%;
    }
    .shownews .imgurl,
    .shownews .name{
        display: none;
    }
    .shownews .updatetime{
        padding-top: 20px;
    }
    .shownews .shownewsfr{
        width: 100%;
        padding: 0;
    }
    .shownews .detailpage .more2{
        display: none;
    }
    #download1{
        padding: 50px 0;
    }
    #download1 .downtitle .title1{
        font-size: 60px;
    }
    #download1 ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    #download1 ul li .title{
        width: calc(100% - 100px);
        padding: 10px 20px;
    }
    #download1 ul li .title img{
        display: none;
    }
    #download1 ul li .downloadurl{
        padding: 10px 20px;
    }
    #download1 ul li .downloadurl img{
        display: none;
    }
    #download2{
        padding: 50px 0;
    }
    #download2 ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    #download3{
        padding: 50px 0;
    }
    #download3 ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .contact{
        padding: 50px 0;
    }
    .contact .conadd{
        width: 100%;
    }
    .contact .conmap{
        width: 100%;
        padding-top: 50px;
    }
    .contact .conmap .conmapimg{
        max-width: 100%;
        left: 0;
        margin: 0;
    }
    .confeed .contitle .title1{
        font-size: 80px;
    }
    .confeed .ftype_input input{
        width: 100%;
    }
}