@charset "utf-8";

@font-face{
    font-family: 'Roboto Regular';
    src: url('../fonts/Roboto Regular.eot');
    src: url('../fonts/Roboto Regular.eot?#iefix') format('embedded-opentype'),
    url('../fonts/Roboto Regular.woff2') format('woff2'),
    url('../fonts/Roboto Regular.woff') format('woff'),
    url('../fonts/Roboto Regular.ttf') format('truetype'),
    url('../fonts/Roboto Regular.svg#NeuesBauenDemo') format('svg');
    font-weight:normal;
    font-style:normal
}
.font1{font-family: 'Roboto Regular';}

/*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: #141414; text-decoration: none; transition-duration: 1s; }
a:hover,a:focus{ color: #006fbc; 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: 1650px){.container{width: 1650px;padding: 0;}}
.fl{float: left;}
.fr{float: right;}
.mobileweb{display: none;}
.wow{visibility: visible!important;}
/*end web*/

/*分页*/
.mc_pager{font-family:'Arial';text-align:center;padding:50px 0;}
.mc_pager ul{font-size: 0;}
.mc_pager ul li{background:#030f19;color:#fff;font-size:14px;width:30px;height:30px;line-height:30px;margin:3px;display:inline-block;}
.mc_pager ul li.active{background:#006fbc;}
.mc_pager ul li a{color:#fff;display:block;}
.mc_pager ul li .current{background:#006fbc;display:block;}
.mc_pager ul li:nth-child(1),.mc_pager ul li:nth-last-child(1){width:50px;font-size: 0;}
.mc_pager ul li:nth-child(1) a:before,.mc_pager ul li:nth-child(1) .disabled:before{content:'◀';font-size:14px;}
.mc_pager ul li:nth-last-child(1) a:before,.mc_pager ul li:nth-last-child(1) .disabled:before{content:'▶';font-size:14px;}
/*end 分页*/

/*二维码显示*/
.pro2wm{display:inline-block;position:relative;cursor:pointer;}
.pro2wm:before{opacity:0;content:'';border-top:8px solid transparent;border-right:8px solid #fff;border-bottom:8px solid transparent;position:absolute;top:7px;right:-14px;z-index:1001;transition-duration:1s;}
.pro2wm:after{opacity:0;content:'';width:5px;height:10px;box-shadow:-3px 0 10px rgba(0, 0, 0, .2);position:absolute;top:10px;right:-14px;z-index:1000;transition-duration:1s;}
.pro2wm:hover:before,.pro2wm:hover:after{opacity:1;}
.pro2wm .wxewm{opacity:0;width:0;max-width:none;height:120px;padding:5px 0;background:#fff;box-shadow:0 0 10px rgba(0, 0, 0, .2);border-radius:5px;position:absolute;left:60px;bottom:-45px;z-index:999;transition-duration:1s;}
.pro2wm:hover .wxewm{opacity:1;width:120px;padding:5px;}
/*end 二维码显示*/

/*css3*/
/* Grow */
.grow{
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    -webkit-tap-highlight-color: rgba(0, 0, 0, 0);
    transition-property: transform;
    transition: all .8s ease;
}
a:hover .grow{
    transform: scale(1.08);
}
/* float-shadow */
.float-shadow{
    display: block;
    position: relative;
    transition-property: transform;
    transition-duration: .5s;
}
.float-shadow:before{
    content: '';
    width: 90%;
    height: 10px;
    pointer-events: none;
    position: absolute;
    z-index: -1;
    top: 100%;
    left: 5%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .1) 0%,rgba(0, 0, 0, 0) 80%);
    transition-property: transform;
    transition-duration: .5s;
}
.float-shadow:hover{
    transform: translateY(-5px);
}
.float-shadow:hover:before{
    opacity: 1;
    transform: translateY(5px);
}
/*显示隐藏时间*/
.fadeIn{
    -webkit-animation-name: fadeIn; /*动画名称*/
    -webkit-animation-duration: 1.5s; /*动画持续时间*/
    -webkit-animation-iteration-count: 1; /*动画次数*/
    -webkit-animation-delay: 0s; /*延迟时间*/
}
@-webkit-keyframes fadeIn{
    0% {
        opacity: 0;
    }
    20% {
        opacity: .2;
    }
    50% {
        opacity: .5;
    }
    70% {
        opacity: .7;
    }
    100% {
        opacity: 1;
    }
}
/*end css3*/



/*header*/
#header{
    width: 100%;
    position: fixed;
    z-index: 10000;
    top: 0;
}
#header .headerbj{
    background: rgba(0, 0, 0, 0);
    transition-duration: 1s;
}
#header.height .headerbj{
    background: rgba(0, 0, 0, .8);
}
#header .headerbj .headlogo{
    height: 160px;
    padding: 20px 40px;
}
#header.height .headerbj .headlogo{
    height: 70px;
    padding: 5px 40px;
}
#header .headerbj .headlogo img{
    height: 100%;
}
#header .headerbj .head1688{
    height: 150px;
    padding: 60px 20px 60px 0;
}
#header.height .headerbj .head1688{
    height: 70px;
    padding: 20px 20px 20px 0;
}
#header .headerbj .head1688 img{
    height: 100%;
}
#header .headerbj .headnav{
    display: block;
}
#header .headerbj .headnav > ul > li{
    margin-right: 50px;
}
#header .headerbj .headnav > ul > li .overflow{
    height: 50px;
    line-height: 50px;
    overflow: hidden;
    margin: 50px 0;
    position: relative;
    transition-duration: 1s;
}
#header.height .headerbj .headnav > ul > li .overflow{
    margin: 10px 0;
}
#header .headerbj .headnav > ul > li .overflow:before{
    content: '';
    width: 100%;
    height: 2px;
    background: #fff;
    position: absolute;
    left: 0;
    bottom: 0;
    transform: scale(0,1);
    transition-duration: 1s;
}
#header .headerbj .headnav > ul > li.hover .overflow:before,
#header .headerbj .headnav > ul > li:hover .overflow:before{
    transform: scale(1,1);
}
#header .headerbj .headnav > ul > li .overflow a{
    display: block;
    color: #fff;
    font-size: 16px;
    position: relative;
    top: -50px;
    transition-duration: 1s;
}
#header .headerbj .headnav > ul > li.hover .overflow a,
#header .headerbj .headnav > ul > li:hover .overflow a{
    top: 0;
}
#header .headerbj .headnav > ul > li .headnavlist{
    width: 100%;
    background: rgba(255, 255, 255, .95);
    box-shadow: 0 0 2px rgba(0, 0, 0, .1);
    max-height: 0;
    overflow: hidden;
    position: absolute;
    left: 0;
    transition-duration: 1s;
}
#header .headerbj .headnav > ul > li:hover .headnavlist{
    max-height: 300px;
}
#header .headerbj .headnav > ul > li .headnavlist ul{
    max-width: 1200px;
    margin: auto;
    padding: 15px 30px;
    text-align: right;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li{
    display: inline-block;
    margin: 15px 0 15px 70px;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li:nth-child(1){
    margin-left: 0;
}
#header .headerbj .headnav > ul > li .headnavlist ul > li a{
    display: block;
    color: #000;
    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: #006fbc;
    border-bottom: 2px solid #006fbc;
}
/*banner*/
#mcbanner{
    overflow: hidden;
    position: relative;
    z-index: 1;
}
/*indexbanner*/
.indexbanner{
    width: 100%;
}
.indexbanner img{
    max-width: none;
}
.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 #006fbc;
}
.more:before{
    content: '';
    width: 180%;
    height: 100%;
    background: #006fbc;
    transform: skew(-30deg);
    position: absolute;
    top: 0;
    left: -200%;
    transition-duration: 1s;
}
.more:hover:before,
a:hover .more:before{
    left: -40%;
}
.more p{
    position: relative;
    z-index: 1;
}

#main{
    position: relative;
    z-index: 2;
}

.inabout{
    padding: 70px 0 50px;
}
.inabout .inaboutfl{
    width: 47%;
    position: relative;
}
.inabout .inaboutfl img{
    max-width: unset;
    position: absolute;
    top: -150px;
    right: 0;
}
.inabout .inaboutfr{
    width: 46%;
}
.inabout .inaboutfr .inname{
    display: table;
    color: #071119;
    text-align: right;
}
.inabout .inaboutfr .inname .name1{
    font-size: 18px;
}
.inabout .inaboutfr .inname .name2{
    font-size: 48px;
    margin: 15px 0 30px;
}
.inabout .inaboutfr .indesc{
    max-width: 620px;
    color: #626a70;
    line-height: 24px;
}
.inabout .inaboutfr .more{
    margin-top: 30px;
    padding: 8px 24px;
    color: #006fbc;
    font-size: 14px;
    border: 1px solid #006fbc;
    border-radius: 0;
}
.inabout .inaboutfr .more i{
    padding-left: 10px;
}
.inhonor{
    background: url(../img/inhonorbj.jpg) fixed center / cover no-repeat;
    padding: 100px 0;
    overflow: hidden;
}
.inhonor .inhonorfl{

}
.inhonor .inhonorfl .inname{
    width: 200px;
    display: table;
    color: #fff;
    text-align: right;
    padding-bottom: 200px;
}
.inhonor .inhonorfl .inname .name1{
    font-size: 18px;
    margin-bottom: 15px;
}
.inhonor .inhonorfl .inname .name2{
    font-size: 48px;
}
.inhonor .inhonorfr{

}
.inhonor .inhonorfr .inname{
    color: #fff;
    text-align: right;
    padding-top: 70px;
}
.inhonor .inhonorfr .inname .name1{
    font-size: 40px;
    line-height: 50px;
}
.inhonor .inhonorfr .inname .name2{
    font-size: 24px;
    line-height: 40px;
    padding-bottom: 20px;
}
.inhonor .inhonorfr .inname .name3{
    font-size: 30px;
    line-height: 40px;
}
.inhonor .inhonorfr .inname .name4{
    font-size: 16px;
    line-height: 30px;
}
.inying{
    background: url(../img/inying.jpg) fixed center / cover no-repeat;
    padding: 100px 0;
    overflow: hidden;
}
.inying .inyingfl{
    width: 40%;
}
.inying .inyingfr{
    width: 50%;
    padding-top: 15vw;
}
.inying .inyingfr .name1{
    color: #071119;
    font-size: 18px;
}
.inying .inyingfr .name2{
    color: #071119;
    font-size: 48px;
    margin: 15px 0 50px;
}
.inying .inyingfr .name3{
    color: #071119;
    font-size: 16px;
    line-height: 30px;
}
.inying .inyingfr .more{
    margin-top: 50px;
    padding: 8px 24px;
    color: #006fbc;
    font-size: 14px;
    border: 1px solid #006fbc;
    border-radius: 0;
}
.inying .inyingfr .more i{
    padding-left: 10px;
}
.inying .swiper-button-prev{
    width: 90px;
    height: 55px;
    background: url(../img/inying1_1.png);
    opacity: 1;
    top: 55px;
    left: auto;
    right: 210px;
    margin: 0;
}
.inying .swiper-button-prev:hover{
    background: url(../img/inying1_2.png);
}
.inying .swiper-button-next{
    width: 90px;
    height: 55px;
    background: url(../img/inying2_1.png);
    opacity: 1;
    top: 0;
    left: auto;
    right: 120px;
    margin: 0;
}
.inying .swiper-button-next:hover{
    background: url(../img/inying2_2.png);
}
.inpro{
    background: url(../img/inprobj.jpg) fixed center / cover no-repeat;
    padding: 80px 0;
    overflow: hidden;
}
.inpro .inprofl{
    width: 400px;
}
.inpro .inprofl .inname{
    display: table;
    color: #071119;
    text-align: right;
}
.inpro .inprofl .inname .name1{
    font-size: 18px;
}
.inpro .inprofl .inname .name2{
    font-size: 48px;
    margin: 15px 0 80px;
}
.inpro .inprofl .inpronav{
    height: 230px;
    overflow: auto;
}
.inpro .inprofl .inpronav a{
    display: table;
    padding: 17px 60px;
    font-size: 14px;
    margin: 20px 0 20px 150px;
}
.inpro .inprofl .inpronav::-webkit-scrollbar{width:5px; border-radius:50px;}
.inpro .inprofl .inpronav::-webkit-scrollbar-track{background-color:#d3dadf; border-radius:50px;}
.inpro .inprofl .inpronav::-webkit-scrollbar-thumb{background-color:#d3dadf; border-radius:50px; border: 5px solid #006fbc;}
.inpro .inprofl .inpronav::-webkit-scrollbar-thumb:hover{background-color:#d3dadf; border-radius:50px; border: 5px solid #006fbc;}
.inpro .inprofl .inpronav::-webkit-scrollbar-thumb:active{background-color:#d3dadf; border-radius:50px; border: 5px solid #006fbc;}
.inpro .inprofl .inprolb{
    padding-top: 160px;
}
.inpro .inprofl .inprolb a{
    display: table;
    color: #141414;
    font-size: 16px;
    border-bottom: 1px solid #141414;
    padding-bottom: 5px;
}
.inpro .inprofl .inprolb a:hover{
    color: #006fbc;
    border-bottom: 1px solid #006fbc;
}
.inpro .inprofl .inprolb a i{
    padding-left: 10px;
}
.inpro .inprofr{
    width: calc(100% - 400px);
    padding-left: 5%;
}
.inpro .inprofr a{
    display: block;
    background: #fff;
}
.inpro .inprofr a .imgurl{
    overflow: hidden;
}
.inpro .inprofr a .imgurl img{
    width: 100%;
}
.inpro .inprofr a .title{
    color: #071119;
    font-size: 16px;
    line-height: 80px;
    text-align: center;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.inpro .inprofr a:hover .title{
    color: #006fbc;
}
.inpro .inprofr .swiper-container{
    padding-bottom: 80px;
}
.inpro .inprofr .swiper-button-prev{
    width: 30px;
    height: 30px;
    color: #051929;
    font: bold 20px/26px '宋体';
    text-align: center;
    background: 0;
    border: 2px solid #051929;
    border-radius: 100%;
    opacity: 1;
    top: auto;
    left: 0;
    bottom: 0;
}
.inpro .inprofr .swiper-button-prev:hover{
    color: #006fbc;
    border: 2px solid #006fbc;
}
.inpro .inprofr .swiper-button-next{
    width: 30px;
    height: 30px;
    color: #051929;
    font: bold 20px/26px '宋体';
    text-align: center;
    background: 0;
    border: 2px solid #051929;
    border-radius: 100%;
    opacity: 1;
    top: auto;
    left: 50px;
    bottom: 0;
}
.inpro .inprofr .swiper-button-next:hover{
    color: #006fbc;
    border: 2px solid #006fbc;
}
.innews{
    background: url(../img/innewsbj.jpg);
    padding: 80px 0;
    overflow: hidden;
}
.innews .inname{
    display: table;
    color: #071119;
    text-align: right;
}
.innews .inname .name1{
    font-size: 18px;
}
.innews .inname .name2{
    font-size: 48px;
    margin: 15px 0 40px;
}
.innews .innewsfl{
    width: 33%;
    overflow: hidden;
}
.innews .innewsfl img{
    max-width: unset;
}
.innews .innewsfr{
    width: 67%;
}
.innews .innewsfr .innews1{
    width: 50%;
}
.innews .innewsfr .innews1 a{
    display: block;
    position: relative;
}
.innews .innewsfr .innews1 a .imgurl{
    overflow: hidden;
}
.innews .innewsfr .innews1 a .imgurl img{
    max-width: unset;
}
.innews .innewsfr .innews1 a .title{
    width: 100%;
    color: #fff;
    line-height: 60px;
    background: rgba(7, 17, 25, .5);
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
    padding: 0 30px;
    position: absolute;
    bottom: 0;
}
.innews .innewsfr .innews2 a{
    display: block;
    overflow: hidden;
}
.innews .innewsfr .innews2 a .innews2fl{
    width: 65%;
    min-height: 295px;
    background: #fff;
    padding: 50px 50px 0;
}
.innews .innewsfr .innews2 a .innews2fl .title{
    width: calc(100% - 80px);
    color: #071119;
    font-size: 16px;
    line-height: 50px;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.innews .innewsfr .innews2 a:hover .innews2fl .title{
    color: #006fbc;
}
.innews .innewsfr .innews2 .innews2fl .updatetime{
    width: 40px;
    color: #6e747a;
    line-height: 50px;
}
.innews .innewsfr .innews2 .innews2fl .line{
    border-top: 1px solid #071119;
    padding-top: 20px;
    margin-top: 10px;
}
.innews .innewsfr .innews2 .innews2fl .description{
    color: #32393e;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.innews .innewsfr .innews2 .innews2fr{
    width: 35%;
    overflow: hidden;
}
.innews .innewsfr .innews2 .innews2fr img{
    max-width: unset;
}
.incon{
    background: url(../img/inconbj.jpg) top right / cover no-repeat;
    padding: 80px 0 200px;
    position: relative;
    overflow: hidden;
}
.incon .inconmap{
    position: absolute;
    top: 320px;
    right: 230px;
}
.incon .inconmap img{
    animation: myfirst 2s infinite;
}
@keyframes myfirst{0%{transform: translate(0px, 0px);}50%{transform: translate(0px, -10px);}100%{transform: translate(0px, 0px);}}
.incon .inname{
    display: table;
    color: #071119;
    text-align: right;
}
.incon .inname .name1{
    font-size: 18px;
}
.incon .inname .name2{
    font-size: 48px;
    margin: 15px 0 100px;
}
.incon .content{
    width: 400px;
    border-bottom: 1px solid #141414;
    padding-bottom: 20px;
}
.incon .content p{
    color: #141414;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}
.incon .content ul{
    display: none;
}
.incon .content h2{
    color: #006fbc;
    font-size: 36px;
    border-bottom: 1px solid #141414;
    padding: 10px 0 30px;
}
.incon .content h4{
    color: #006fbc;
    font-size: 16px;
    padding: 30px 0 20px;
}
/*index*/

/*foot*/
#footer{
    background: #030f19;
    position: relative;
    z-index: 2;
}
#footer .footcon{
    padding: 50px 0;
}
#footer .footcon .namemark{
    color: #fff;
    padding-bottom: 20px;
}
#footer .footcon .footconfl{
    width: calc(100% - 220px);
}
#footer .footcon .footnav{
    width: 25%;
}
#footer .footcon .footnav dl a{
    display: inline-block;
    color: #636d76;
    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 .footshare{
    width: 220px;
}
#footer .footcon .footshare a{
    display: inline-block;
    width: 30px;
    color: #fff;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    border: 1px solid #fff;
    border-radius: 50%;
    margin-right: 10px;
}
#footer .footcon .footshare .pro2wm:before{
    border-right: 8px solid transparent;
    border-left: 8px solid #fff;
    right: 40px;
}
#footer .footcon .footshare .pro2wm img{
    left: auto;
    right: 55px;
}
#footer .foottail{
    border-top: 1px solid #1d2730;
    padding: 50px 0;
}
#footer .foottail .footright{
    color: #636d76;
    line-height: 20px;
}
#footer .foottail .footright a{
    color: #636d76;
}
#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: #636d76;
    line-height: 20px;
    margin-top: 10px;
}
#footer .foottail .footother a{
    color: #636d76;
}
#footer .foottail .footother a:hover{
    color: #fff;
}
/*foot*/

/*product*/
.navpro{
    padding: 50px 0 20px;
    background: #f1f4f6;
    text-align: center;
    position: relative;
    z-index: 10;
}
.navpro ul li{
    display: inline-block;
    position: relative;
}
.navpro ul li > a.more{
    color: #0b131b;
    font-size: 14px;
    margin: 0 10px;
    padding: 15px 45px;
}
.navpro ul li > a.more.hover{
    color: #fff;
    background: #006fbc;
    border: 1px solid #006fbc;
}
.navpro ul li dl{
    width: 100%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    border-radius: 10px;
    overflow: hidden;
    position: absolute;
    display: none;
}
.navpro ul li:hover dl{
    display: block;
}
.navpro ul li dl a{
    display: block;
    line-height: 29px;
    border-bottom: 1px solid #efefef;
}
.navpro ul li dl a.hover{
    color: #006fbc;
}
.product{
    background: #f1f4f6;
}
.product ul li{
    width: 23.5%;
    margin: 30px 2% 0 0;
}
.product ul li:nth-child(4n){
    margin-right: 0;
}
.product ul li a{
    display: block;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
}
.product ul li a .imgurl{
    border-bottom: 1px solid #b1bbc2;
    overflow: hidden;
}
.product ul li a .title{
    color: #071119;
    font-size: 16px;
    line-height: 80px;
    padding: 0 30px;
    height: 80px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.product ul li a:hover .title{
    color: #006fbc;
}
/*showproduct*/
.showproduct{
    background: #f1f4f6;
    padding: 30px 0 50px;
    overflow: hidden;
}
/*<!--第一部分-->*/
.showproduct .proone{
    background: #fff;
    padding: 50px;
    border-radius: 10px;
}
.showproduct .proone .prodisplayimg{
    width: 130px;
    margin-right: 20px;
    position: relative;
}
.showproduct .proone .proimgurl{
    width: 635px;
    margin: auto;
}
.showproduct .proone .proonefr{
    width: calc(100% - 900px);
}
.showproduct .proone .proonefr .proonetitle{
    color: #071119;
    font-size: 16px;
    line-height: 30px;
    border-bottom: 1px solid #ccc;
    padding-bottom: 10px;
}
.showproduct .proone .proonefr .proonecon{
    height: 360px;
    margin: 30px 0;
    overflow: auto;
}
.showproduct .proone .proonefr .proonecon .contenttitle{
    color: #006fbc;
    font-size: 20px;
    margin-bottom: 20px;
}
.showproduct .proone .proonefr .proonecon .content{
    color: #000;
    font-size: 15px;
    line-height: 30px;
}
.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: #1d1b1b;  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: #006fbc;  }
.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 .proone .proonefr .proonethis{
    padding-top: 30px;
    overflow: hidden;
}
.showproduct .proone .proonefr .proonethis .this1{
    color: #000;
    font-size: 18px;
    line-height: 36px;
}
.showproduct .proone .proonefr .proonethis .this2 a{
    display: inline-block;
    width: 36px;
    color: #787878;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    border: 1px solid #2b2b2b;
    border-radius: 5px;
    margin-left: 15px;
}
.showproduct .proone .proonefr .proonethis .this2 a:hover{
    color: #fff;
    background: #006fbc;
    border: 1px solid #006fbc;
}
/*<!--第二部分-->*/
.showproduct .protwo{
    padding: 0 0 30px;
}
.showproduct .protwo .contenttitle{
    color: #006fbc;
    font-size: 24px;
    padding: 40px 0;
}
.showproduct .protwo .content{
    color: #000;
    font-size: 14px;
    line-height: 36px;
}
.showproduct .protwo .content ul li{
    float: left;
    width: 48%;
}
.showproduct .protwo .content ul li:nth-child(2n){
    float: right;
}
.showproduct .protwo .content1 ul li{
    line-height: 50px;
    border-bottom: 1px solid #d8dbdd;
}
/*product*/

/*news*/
.navnews{
    padding: 50px 0 0;
    text-align: center;
}
.navnews a.more{
    color: #0b131b;
    font-size: 14px;
    margin: 0 10px;
}
.navnews a.more.hover{
    color: #fff;
    background: #006fbc;
    border: 1px solid #006fbc;
}
.news{
    overflow: hidden;
}
.news ul li{
    padding: 80px 0 0;
}
.news ul li a{
    display: block;
    overflow: hidden;
}
.news ul li a .imgurl{
    width: 385px;
    border-radius: 5px;
    overflow: hidden;
}
.news ul li a .newstit{
    width: calc(100% - 485px);
    padding: 0 10% 0 2%;
}
.news ul li a .newstit .title{
    color: #000;
    font-size: 18px;
    line-height: 50px;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news ul li a:hover .newstit .title{
    color: #006fbc;
}
.news ul li a .newstit .description{
    color: #4a5158;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news ul li a .newstit .name{
    color: #787e82;
    margin-top: 70px;
}
.news ul li a:hover .newstit .name{
    color: #006fbc;
}
.news ul li a .newstime{
    width: 100px;
    border-left: 1px solid #ccc;
    padding: 20px 0 20px 20px;
}
.news ul li a .newstime .updatetime{
    color: #051929;
    font-size: 28px;
    font-weight: 100;
    padding-bottom: 130px;
}
.news ul li a .newstime .newsicon{
    width: 30px;
    height: 30px;
    color: #a1a5a8;
    font-size: 20px;
    line-height: 24px;
    text-align: center;
    border: 2px solid #a1a5a8;
    border-radius: 50%;
    opacity: 0;
    position: relative;
    left: -30px;
    transition-duration: 1s;
}
.news ul li a:hover .newstime .newsicon{
    color: #006fbc;
    border: 2px solid #006fbc;
    opacity: 1;
    left: 0;
}
/*shownews*/
.shownews{
    padding: 80px 0 100px;
    overflow: hidden;
}
.shownews .shownewsfl{
    width: 400px;
}
.shownews .title{
    color: #000;
    font-size: 18px;
    line-height: 30px;
}
.shownews .updatetime{
    color: #051929;
    font-size: 16px;
    border-bottom: 1px solid #cdcfd1;
    padding: 50px 0 20px;
    margin-bottom: 20px;
}
.shownews .name{
    color: #787e82;
}
.shownews .shownewsfr{
    width: calc(100% - 400px);
    padding-left: 5%;
}
.shownews .content{
    color: #4a5158;
    line-height: 24px;
}
/*news*/

/*mcimg*/
.mcimg{
    padding: 20px 0 0;
    overflow: hidden;
}
.mcimg ul li{
    width: 23.5%;
    margin: 20px 2% 0 0;
}
.mcimg ul li:nth-child(4n){
    margin-right: 0;
}
.mcimg ul li a{
    display: block;
}
.mcimg ul li a .imgurl{
    position: relative;
    border-radius: 5px;
    overflow: hidden;
}
.mcimg ul li a .imgurl > img{
    width: 100%;
}
.mcimg ul li a .imgurl .incaseicon{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .6);
    position: absolute;
    top: 0;
    left: 0;
    transform: scale(0);
    transition-duration: 1s;
}
.mcimg ul li a:hover .imgurl .incaseicon{
    transform: scale(1);
}
.mcimg ul li a .imgurl .incaseicon img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.mcimg ul li a .title{
    padding: 0 10px;
    color: #000;
    font-size: 16px;
    line-height: 60px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.mcimg ul li a:hover .title{
    color: #006fbc;
}
/*mcimg*/

/*about*/
.aboutnav{
    padding: 50px 0;
    text-align: center;
}
.aboutnav a.more{
    color: #0b131b;
    font-size: 14px;
    margin: 0 10px;
}
.aboutnav a.more.hover{
    color: #fff;
    background: #006fbc;
    border: 1px solid #006fbc;
}
.about{
    overflow: hidden;
}
.about .aboutgsjj{
    border-bottom: 1px solid #d9d9d9;
    padding-bottom: 70px;
    overflow: hidden;
}
.about .aboutgsjj .aboutimg{
    padding: 0 50px 20px 0;
}
.about .aboutgsjj .inname{
    display: table;
    color: #071119;
    text-align: right;
    padding: 20px 0 50px;
}
.about .aboutgsjj .inname .name1{
    font-size: 18px;
    margin-bottom: 15px;
}
.about .aboutgsjj .inname .name2{
    font-size: 48px;
}
.about .aboutgsjj .content{
    color: #626a70;
    line-height: 24px;
}
.about .aboutculture{
    border-bottom: 1px solid #d9d9d9;
    padding: 50px 0 70px;
    overflow: hidden;
}
.about .aboutculture .inname{
    display: table;
    color: #071119;
    text-align: right;
    padding-bottom: 40px;
}
.about .aboutculture .inname .name1{
    font-size: 18px;
    margin-bottom: 15px;
}
.about .aboutculture .inname .name2{
    font-size: 48px;
}
.about .aboutculture ul li{
    float: left;
    width: 48%;
    color: #626a70;
    line-height: 25px;
    padding: 12px 0;
    border-bottom: 1px dashed;
}
.about .aboutculture ul li:nth-child(2n){
    float: right;
}
.about .aboutculture ul li span{
    color: #006fbc;
}
.about .aboutculture .qywhfoot{
    font-size: 18px;
    line-height: 40px;
    text-align: right;
}
.about .abouthonor{
    border-bottom: 1px solid #d9d9d9;
    padding: 30px 0 40px;
    overflow: hidden;
}
.about .abouthonor .abouthonorfr{
    position: relative;
    margin: 30px 0 0;
}
.about .abouthonor .abouthonorfr .inname{
    color: #071119;
    text-align: right;
    position: absolute;
    top: 40px;
    left: 0;
}
.about .abouthonor .abouthonorfr .inname .name1{
    font-size: 18px;
    margin-bottom: 15px;
}
.about .abouthonor .abouthonorfr .inname .name2{
    font-size: 48px;
}
.about .aboutadv{
    padding: 50px 0;
    overflow: hidden;
}
.about .aboutadv .inname{
    display: table;
    color: #071119;
    text-align: right;
    padding-bottom: 80px;
}
.about .aboutadv .inname .name1{
    font-size: 18px;
    margin-bottom: 15px;
}
.about .aboutadv .inname .name2{
    font-size: 48px;
}
.about .aboutadv .aboutadvbj{
    background: url(../img/aboutadv.jpg) top center no-repeat;
    overflow: hidden;
}
.about .aboutadv .aboutadvbj ul li{
    width: 490px;
    background: #fff;
    border: 2px solid #0370bc;
    border-radius: 5px;
    padding: 25px;
    margin-bottom: 30px;
}
.about .aboutadv .aboutadvbj ul li .title1{
    color: #0370bc;
    font-size: 20px;
    line-height: 30px;
    padding-bottom: 10px;
}
.about .aboutadv .aboutadvbj ul li .title2{
    color: #071119;
    line-height: 24px;
}
/*about*/

/*application*/
.application{
    overflow: hidden;
}
.application .applist{
    border-bottom: 1px solid #b5b4b7;
    padding-bottom: 100px;
    margin-bottom: 50px;
    overflow: hidden;
}
.application .applist:nth-last-child(1){
    border: 0;
    margin: 0;
}
.application .applist .applist1{
    width: 48%;
}
.application .applist .applist2{
    width: 48%;
}
.application .applist h4{
    color: #071119;
    font-size: 18px;
}
.application .applist h2{
    color: #071119;
    font-size: 48px;
    border-bottom: 1px solid #cececf;
    padding: 15px 0 30px;
    margin-bottom: 30px;
}
.application .applist h3{
    color: #006fbc;
    font-size: 24px;
    font-weight: bold;
    padding: 60px 0 30px;
}
.application .applist p{
    color: #1b242b;
    font-size: 16px;
    line-height: 25px;
}
/*application*/

/*contact*/
.contact{
    background: #f5f6f8;
    padding: 70px 0;
    overflow: hidden;
}
.contact .contactfl{
    width: 47%;
    position: relative;
}
.contact .contactfl .content p{
    color: #141414;
    font-size: 14px;
    line-height: 24px;
    margin: 0;
}
.contact .contactfl .content h2{
    color: #006fbc;
    font-size: 36px;
    border-bottom: 1px solid #bebfc1;
    padding: 10px 0 20px;
}
.contact .contactfl .content h4{
    color: #006fbc;
    font-size: 16px;
    padding: 20px 0;
}
.contact .contactfl .content ul{
    border-top: 1px solid #bebfc1;
    padding: 20px 0;
}
.contact .contactfl .content ul:nth-last-child(2){
    margin-top: 20px;
}
.contact .contactfl .content ul li{
    float: left;
    width: 50%;
}
.contact .contactfl .footshare{
    position: absolute;
    top: 25px;
    right: 0;
}
.contact .contactfl .footshare a{
    display: inline-block;
    width: 36px;
    color: #848484;
    font-size: 20px;
    line-height: 34px;
    text-align: center;
    border: 1px solid #2c2c2c;
    border-radius: 5px;
    margin-left: 15px;
}
.contact .contactfl .footshare a:hover{
    color: #fff;
    background: #006fbc;
    border: 1px solid #006fbc;
}
.contact .contactfl .footshare .pro2wm img{
    left: 65px;
}
.contact .contactfeed{
    width: 47%;
}
/*contact*/
@media (max-width: 1650px){
    .inhonor .inhonorfl{
        width: 48%;
    }
    .inhonor .inhonorfl .inname{
        padding-bottom: 150px;
    }
    .inhonor .inhonorfr{
        width: 48%;
    }
    .inpro .inprofl .inprolb{
        padding-top: 80px;
    }
    .about .aboutgsjj .aboutimg{
        width: 50%;
    }
    .about .abouthonor .abouthonorfl{
        width: 30%;
    }
    .about .abouthonor .abouthonorfr{
        width: 65%;
    }
    .about .aboutadv .aboutadvbj ul li{
        width: 400px;
    }
    .showproduct .proone .proonefr{
        width: calc(100% - 850px);
    }
}
@media (max-width: 1600px){
    .showproduct .proone .proonefr{
        width: 100%;
        padding-top: 30px;
    }
    .showproduct .proone .proonefr .proonecon{
        height: auto;
    }
}
@media (max-width: 1200px){
    #header .headerbj .headlogo,
    #header.height .headerbj .headlogo{
        height: 70px;
        padding: 5px 20px;
    }
    #header .headerbj .headnav > ul > li .overflow,
    #header.height .headerbj .headnav > ul > li .overflow{
        margin: 10px 0;
    }
    #header .headerbj .head1688,
    #header.height .headerbj .head1688{
        height: 70px;
        padding: 20px 20px 20px 0;
    }
    .about .abouthonor .abouthonorfr .inname{
        top: 0;
    }
    .about .aboutadv .aboutadvbj{
        background: 0;
    }
    .showproduct .proone .proimgurl .cloud-zoom-big{
        display: none !important;
    }
    .contact .contactfl .footshare{
        display: none;
    }
}
/*手机版*/
#header .menubutton{  display: none;  width: 30px;  height: 30px;  cursor: pointer;  margin: 14px 12px 6px 0;  }
#header .menubutton .menuicon{  height: 2px;  margin-bottom: 8px;  background: #fff;  }
#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: #006fbc;  width: 100%!important;  height: 100%;  overflow: auto!important;  position: fixed;  top: 0;  left: 0;  z-index: 1000;  opacity: 1!important;  }
.menumain .menubox{  margin: 50px 5% 80px;  padding: 1px 0;  }
.menumain .menubox .menunav{  overflow: hidden;  }
.menumain .menubox .menunav .menuone a{  display: block;  color: #fff;  font-size: 16px;  line-height: 20px;  margin: 30px 0 0;  }
.menumain .menubox .menunav .menuone.home a{  padding-bottom: 20px;  border-bottom: 1px solid rgba(255, 255, 255, .2);  }
.menumain .menubox .menunav .menuone .menutwo{  float: left;  position: relative;  }
.menumain .menubox .menunav .menuone .menutwo.bai{  width: 100%;  }
.menumain .menubox .menunav .menuone .menutwo:before{  content: '';  width: 3px;  height: 3px;  background: rgba(255, 255, 255, .5);  border-radius: 50%;  position: absolute;  left: -8px;  bottom: 8px;  }
.menumain .menubox .menunav .menuone .menutwo a{  color: rgba(255, 255, 255, .5);  font-size: 15px;  margin: 30px 20px 0 5px;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree{  float: left;  position: relative;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree:before{  content: '';  width: 3px;  height: 3px;  background: rgba(255, 255, 255, .5);  border-radius: 50%;  position: absolute;  left: -6px;  bottom: 8px;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree a{  color: rgba(255, 255, 255, .5);  font-size: 14px;  margin: 20px 20px 0 10px;  }
.menumain .menubox .menunav a.hover{  color: #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: #006fbc;  border-top: 1px solid rgba(255, 255, 255, .2);  position: fixed;  left: 0;  bottom: 0;  z-index: 1001;  }
#mobtool ul li{  float: left;  width: 20%;  text-align: center;  border-left: 1px solid rgba(255, 255, 255, .2);  box-sizing: border-box;  }
#mobtool ul li:nth-child(1){  border: none;  }
#mobtool ul li a.menubutton{  background: rgba(255, 255, 255, .2);  }
#mobtool ul li a{  display: block;  width: 100%;  height: 50px;  color: #fff;  padding-top: 10px;  }
#mobtool ul li a p{  height: 25px;  line-height: 25px;  overflow: hidden;  font-size: 12px;  text-transform: uppercase;  }
/*ios下载到桌面*/
.u-layer-ath{display: none;background:url(/michuanimg/ath.png) no-repeat;z-index:99999999;width:200px;height:75px;position:fixed;bottom:0;left:50%;margin-left:-100px;background-size:contain;transform:translate3D(0,0,0);transition:2s all;perspective:400px;}
.u-layer-ath.u-ani-ath{transform:rotateY(360deg) translateZ(100px);}
.u-layer-ath .ath_addhome{position:absolute;left:0;top:0;width:140px;height:60px;}
.u-layer-ath .ath_close{position:absolute;right:0;top:0;width:30px;height:30px;}
/*list分类*/
#sortpro{  height: 40px;  line-height: 40px;  text-align: center;  background: #fff;  border-bottom: 1px solid #006fbc;  overflow: hidden;  }
#sortpro .sortpro_left{  float: left;  width: 65%;  color: #fff;  font-size: 14px;  background: #006fbc;  }
#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: #006fbc;  }
.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 #006fbc;  }
.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: #006fbc;  }
/*手机版*/
@media (max-width: 992px){
    #header .menubutton, #mobtool, .u-layer-ath{  display: block;  }
    .mfp-zoom-out-cur, .mfp-wrap{  width: 100% !important;  height: 100% !important;  overflow: hidden;  }
    .mfp-wrap .mfp-arrow-left{  margin-left: -47%;  }
    .mfp-wrap .mfp-arrow-right{  margin-right: -47%;  }
    .pcweb{  display: none;  }
    .mobileweb{  display: block;  }
    /*index*/
    .menumain .menubox .menunav .menuone:nth-child(2) .menuone_two,
    .menumain .menubox .menunav .menuone:nth-child(5) .menuone_two{
        display: none;
    }
    #header .headerbj,
    #header.height .headerbj{
        background: rgba(0, 0, 0, .8);
    }
    #header .headerbj .headlogo,
    #header.height .headerbj .headlogo{
        height: 50px;
        padding: 5px;
    }
    #header .headerbj .head1688,
    #header.height .headerbj .head1688{
        height: 50px;
        padding: 15px 25px;
    }
    #header .headerbj .headnav{
        display: none;
    }
    #mcbanner{
        padding-top: 50px;
    }
    #mcbanner .indexbanner .swiper-button-prev,
    #mcbanner .indexbanner .swiper-button-next{
        display: none;
    }
    #mcbanner .indexbanner .swiper-pagination .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    .inabout{
        padding: 50px 0;
    }
    .inabout .inaboutfl{
        width: 100%;
    }
    .inabout .inaboutfl img{
        width: 100%;
        position: unset;
    }
    .inabout .inaboutfr{
        width: 100%;
        padding-top: 30px;
    }
    .inhonor{
        background: url(../img/inhonorbj.jpg) center / cover no-repeat;
        padding: 50px 0;
    }
    .inhonor .inhonorfl{
        width: 100%;
    }
    .inhonor .inhonorfl .inname{
        padding-bottom: 30px;
    }
    .inhonor .inhonorfr{
        width: 100%;
        padding-top: 50px;
    }
    .inhonor .inhonorfr .inname{
        padding-top: 30px;
    }
    .inying{
        background: url(../img/inying.jpg) center / cover no-repeat;
        padding: 50px 0;
    }
    .inying .inyingfl{
        width: 100%;
        padding: 0 20%;
    }
    .inying .inyingfr{
        width: 100%;
        padding-top: 50px;
    }
    .inying .inyingfr .name1{
        line-height: 24px;
    }
    .inying .inyingfr .name2{
        font-size: 30px;
        line-height: 40px;
        margin: 10px 0 30px;
    }
    .inying .swiper-button-prev,
    .inying .swiper-button-next{
        display: none;
    }
    .inpro{
        background: url(../img/inprobj.jpg) center / cover no-repeat;
        padding: 50px 0;
    }
    .inpro .inprofl{
        width: 100%;
    }
    .inpro .inprofl .inname .name2{
        margin: 15px 0 50px;
    }
    .inpro .inprofl .inpronav,
    .inpro .inprofl .inprolb{
        display: none;
    }
    .inpro .inprofr{
        width: 100%;
        padding: 0;
    }
    .innews{
        padding: 50px 0;
    }
    .innews .innewsfl{
        display: none;
    }
    .innews .innewsfr{
        width: 100%;
    }
    .innews .innewsfr .innews1{
        width: 100%;
        margin-top: 10px;
    }
    .innews .innewsfr .innews1 a .imgurl img{
        width: 100%;
    }
    .innews .innewsfr .innews2{
        display: none;
    }
    .incon{
        background: url(../img/inconbj.jpg) center / cover no-repeat;
        padding: 50px 0;
    }
    .incon .inconmap{
        display: none;
    }
    .incon .inname .name2{
        margin: 15px 0 50px;
    }
    #footer .footcon{
        display: none;
    }
    #footer .foottail{  padding: 30px 0 80px;  text-align: center;  }
    #footer .foottail .footright{  width: 100%;  }
    #footer .foottail .footright br{  display: block;  }
    #footer .foottail .footright a:nth-last-child(1){  display: block;  }
    #footer .foottail .tailimg{  width: 100%;  }
    #footer .foottail .tailimg img{  margin: 15px auto 0;  }
    #footer .foottail .footother{  display: none;  }

    .navpro{
        display: none;
    }
    .product ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .showproduct .proone{
        padding: 20px;
    }
    .showproduct .proone .proimgurl, .showproduct .proone .prodisplayimg{
        display: none;
    }
    .showproduct .proone .mobprodisplayimg .swiper-pagination-bullet-active{
        background: #006fbc;
    }
    .showproduct .proone .proonefr .prooneshare .pro2wm:nth-child(4){
        display: none;
    }
    .showproduct .protwo{
        padding: 0;
    }
    .showproduct .protwo .content ul li{
        width: 100%;
    }
    #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;  }

    .aboutnav{
        display: none;
    }
    .about .aboutgsjj{
        padding: 50px 0;
    }
    .about .aboutgsjj .aboutimg{
        width: 100%;
        padding: 0;
    }
    .about .aboutgsjj .inname{
        padding: 30px 0;
    }
    .about .aboutculture{
        padding: 50px 0;
    }
    .about .aboutculture ul li{
        width: 100%;
    }
    .about .aboutculture .qywhfoot{
        padding: 50px 0 0;
    }
    .about .abouthonor{
        padding: 30px 0;
    }
    .about .abouthonor .abouthonorfl{
        width: 100%;
    }
    .about .abouthonor .abouthonorfr{
        width: 100%;
    }
    .about .abouthonor .abouthonorfr .inname{
        display: none;
    }
    .about .aboutadv .inname{
        padding-bottom: 20px;
    }
    .about .aboutadv .aboutadvbj ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .navnews{
        display: none;
    }
    .news ul li{
        padding: 30px 0 0;
    }
    .news ul li a .imgurl{
        width: 100%;
    }
    .news ul li a .newstit{
        width: 100%;
        padding: 10px 0 0;
    }
    .news ul li a .newstit .name,
    .news ul li a .newstime{
        display: none;
    }
    .shownews{
        padding: 30px 0 50px;
    }
    .shownews .shownewsfl{
        width: 100%;
    }
    .shownews .updatetime{
        padding: 20px 0;
    }
    .shownews .name{
        display: none;
    }
    .shownews .shownewsfr{
        width: 100%;
        padding: 0;
    }
    .application .applist{
        padding: 50px 0;
        margin: 0;
    }
    .application .applist .applist1{
        width: 100%;
    }
    .application .applist h4{
        line-height: 24px;
    }
    .application .applist h2{
        font-size: 30px;
        line-height: 40px;
    }
    .application .applist .applist2{
        width: 100%;
        padding-top: 50px;
    }
    .mcimg ul li{
        width: 100%;
        margin: 20px 0 0;
    }
    .contact{
        padding: 50px 0;
    }
    .contact .contactfl{
        width: 100%;
    }
    .contact .contactfl .content ul li{
        width: 100%;
    }
    .contact .contactfeed{
        width: 100%;
        padding-top: 50px;
    }
}