

/*Reset css*/
/* 清除内外边距 */
body,h1,h2,h3,h4,h5,h6,div,hr,p,blockquote,dl,dt,dd,ul,ol,li,pre,form,fieldset,legend,button,input,textarea,th,td{margin:0;padding:0;}
/* 设置默认字体 */
body,h1,h2,h3,h4,h5,h6,button,input,select,textarea,code,kbd,pre,samp,tt,small,address,cite,dfn,em,var{font: normal 14px/1 '微软雅黑';}
/* 重置列表元素 */
ul,ol,li,dl,dt,dd{ list-style: none; }
ul:after{ content: ''; clear: both; display: block; }
/* 重置文本格式元素 */
a{ color: #828282; text-decoration: none; transition-duration: .5s; }
a:hover{ color: #5d82a6; text-decoration: none; transition-duration: .5s; }
q:before,q:after{ content: ''; }
sup{ vertical-align: super; }
sub{ vertical-align: sub; }
/* 重置图片元素 */
img{ display: block;  }
.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: #ffffff;}
@media(min-width: 1200px){.container{width: 1200px;padding: 0;}}
em{color: #5d82a6;}
.fl{float: left;}
.fr{float: right;}
.mobileweb{display: none;}
.wow{visibility: visible!important;}
/*end web*/

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

/*二维码显示*/
.pro2wm{position:relative;display:inline-block;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:.5s;}
.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:.5s;}
.pro2wm:hover:before,.pro2wm:hover:after{opacity:1;}
.pro2wm .wxewm{opacity:0;width:0;max-width:none;height:200px;padding:8px 0;background:#fff;box-shadow:0 0 10px rgba(0, 0, 0, .2);border-radius:5px;position:absolute;left:60px;bottom:-88px;z-index:999;transition-duration:.5s;}
.pro2wm:hover .wxewm{opacity:1;width:200px;padding:8px;}
/*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: .4s;
}
.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: .4s;
}
.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: -100px;
}
#header .headertop{
    background: #fff;
    border-bottom: 1px solid #ededed;
}
#header .headertop .logo{
    height: 100px;
    padding: 20px 0;
}
#header .headertop .logo img{
    float: left;
    height: 100%;
}
#header .headertop .logo .webname{
    float: left;
    color: #01437d;
    font-size: 24px;
    font-weight: bold;
    line-height: 60px;
    padding-left: 20px;
}
#header .headertop .lang{
    border-left: 1px solid #ededed;
    margin: 35px 0 0 25px;
}
#header .headertop .lang img{
    float: left;
    padding: 0 20px;
}
#header .headertop .lang p{
    float: left;
    color: #505050;
    font-size: 16px;
    line-height: 30px;
}
#header .headertop .headsearch{
    border: 1px solid #e3e3e3;
    border-radius: 10px;
    margin: 33px 0;
}
#header .headertop .headsearch .name{
    width: 150px;
    height: 32px;
    padding: 0 15px;
    background: 0;
    outline: 0;
    border: 0;
}
#header .headertop .headsearch .submit{
    color: #a1a1a1;
    font-size: 16px;
    padding: 8px 15px;
    background: 0;
    outline: 0;
    border: 0;
}
#header .headerbj{
    background: #fff;
    box-shadow: 0 5px 5px rgba(0, 0, 0, .03);
}
/*banner*/
#mcbanner{
    padding-top: 140px;
    overflow: hidden;
}
/*indexbanner*/
.indexbanner .swiper-pagination .swiper-pagination-bullet{
    width: 15px;
    height: 15px;
    margin: 0 10px 20px;
    background: rgba(255, 255, 255, .5);
    opacity: 1;
}
.indexbanner .swiper-pagination .swiper-pagination-bullet-active{
    background: transparent;
    border: 2px solid #fff;
}
.indexbanner .swiper-button-prev,
.indexbanner .swiper-button-next{
    width: 50px;
    height: 50px;
    color: #fff;
    font: 25px/50px '宋体';
    text-align: center;
    background: rgba(0, 0, 0, .2);
    border-radius: 100%;
}
.indexbanner .swiper-button-prev{
    left: 5%;
}
.indexbanner .swiper-button-next{
    right: 5%;
}
/*otherbanner*/
.otherbanner img{
    width: 100%;
}
/*header*/

/*index*/
.more{
    display: inline-block;
    padding: 15px 30px;
    color: #000;
    font-size: 16px;
    border: 1px solid #bbb;
    border-radius: 50px;
    overflow: hidden;
    position: relative;
    transition-duration: 1s;
}
.more:hover,
a:hover .more{
    color: #fff !important;
    border: 1px solid #5d82a6;
}
.more:before{
    content: '';
    width: 120%;
    height: 100%;
    background: #5d82a6;
    transform: skew(-30deg);
    position: absolute;
    top: 0;
    left: -150%;
    transition-duration: 1s;
}
.more:hover:before,
a:hover .more:before{
    left: -10%;
}
.more p{
    position: relative;
    z-index: 1;
}

#main{
    position: relative;
    z-index: 2;
}

.news {
    background: #fff;
    padding-bottom: 50px;
    overflow: hidden;
}
.news .news_title {
    color: #4d4d4d;
    font-size: 24px;
    padding: 50px 15px;
}
.news .news_title span {
    color: #c3c3c3;
    font-size: 15px;
    font-family: 'Arial';
    padding-left: 20px;
}
.news .news_list ul li {
    float: left;
    width: 33.33%;
    height: 280px;
    overflow: hidden;
}
.news .news_list ul li a{
    display: block;
    padding: 15px;
    position: relative;
    top: 0;
}
.news .news_list ul li a:hover{
    background: #bfc3c8;
    top: -250px;
}
.news .news_list ul li a .innews1{
    height: 250px;
}
.news .news_list ul li a .innews1 img{
    width: 100%;
    border-radius: 5px;
}
.news .news_list ul li a .innews1 .title{
    color: #424242;
    font-size: 16px;
    font-weight: bold;
    line-height: 50px;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news .news_list ul li a .innews1 .description{
    color: #949494;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news .news_list ul li a .innews2{
    height: 250px;
    padding-top: 30px;
}
.news .news_list ul li a .innews2 .title{
    color: #fff;
    font-size: 16px;
    font-weight: bold;
    line-height: 50px;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news .news_list ul li a .innews2 .updatetime{
    color: #fff;
    padding: 15px 0 30px;
}
.news .news_list ul li a .innews2 .description{
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.invideo{
    background: url(/skin/images/invideobj.jpg) center / cover no-repeat;
    text-align: center;
    padding: 120px 0;
    overflow: hidden;
    cursor: pointer;
}
.invideo img{
    margin: auto;
}
.invideo .namemark1{
    color: #ffffff;
    font-size: 24px;
    font-weight: 100;
    letter-spacing: 4px;
    margin: 30px 0 20px;
}
.invideo .namemark2{
    color: #ffffff;
    font-size: 28px;
    letter-spacing: 2px;
}
.videoshow{
    display: none;
    width: 100%;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    z-index: 100000000000000;
}
.videoshow .videogb{
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, .8);
}
.videoshow video{
    width: 800px;
    height: 500px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    -webkit-transform: translate(-50%, -50%);
}
.countup{
    padding: 70px 0 40px;
    border-top: 1px solid #f4f4f4;
    border-bottom: 1px solid #f4f4f4;
    overflow: hidden;
}
.countup ul li{
    float: left;
    width: 25%;
    text-align: center;
    border-left: 1px solid #ebebeb;
}
.countup ul li:nth-child(1){
    border-left: 0;
}
.countup ul li .shuzi{
    color: #696969;
    font-size: 42px;
    font-weight: 100;
    position: relative;
}
.countup ul li .shuzi sup{
    color: #989898;
    font-size: 14px;
    position: absolute;
    top: 5px;
    margin-left: 5px;
}
.countup ul li .countupname{
    color: #989898;
    font-size: 14px;
    padding: 10px 0;
}
.inabout{
    padding: 60px 0 20px;
    text-align: center;
    overflow: hidden;
}
.inabout .description{
    display: block;
    color: #31302e;
    font-size: 15px;
    line-height: 35px;
    padding-bottom: 70px;
    background: url(/skin/images/inabouticon.png) center 80% no-repeat;
}
.inabout ul li{
    float: left;
    width: 32%;
    margin-left: 2%;
}
.inabout ul li:nth-child(1){
    margin-left: 0;
}
.inabout ul li img{
    width: 100%;
    border-radius: 10px;
}
.inabout ul li p{
    color: #31302e;
    font-size: 15px;
    line-height: 70px;
}
/*index*/

/*foot*/
#footer{
    position: relative;
    z-index: 2;
}
#footer .footcon{
    padding: 50px 0;
    border-top: 2px solid #ececec;
}
#footer .footcon .footadd{
    width: 400px;
}
#footer .footcon .footadd ul li{
    float: left;
    width: 100%;
    padding-top: 40px;
}
#footer .footcon .footadd ul li:nth-child(1){
    padding-top: 0;
}
#footer .footcon .footadd ul li img{
    float: left;
    border-right: 2px solid #ececec;
    padding-right: 20px;
    margin-right: 20px;
}
#footer .footcon .footadd ul li p{
    color: #828282;
    line-height: 22px;
}
#footer .footcon .map{
    width: calc(100% - 400px);
    height: 300px;
    border: 0px solid #ccc;
}
#footer .footfeed{
    padding: 20px 0 50px;
}
#footer .footfeed .input{
    width: calc(50% - 150px);
}
#footer .footfeed .input .ftype_input{
    padding: 0 20px 10px 0;
}
#footer .footfeed .input .ftype_input input{
    width: 100%;
    height: 50px;
    padding: 0 20px;
    background: #f5f5f5;
    outline: 0;
    border: 0;
}
#footer .footfeed .yzm{
    width: calc(50% - 20px);
}
#footer .footfeed .yzm .ftype_textarea{
    padding: 0 20px 10px 0;
}
#footer .footfeed .yzm .ftype_textarea textarea{
    width: 100%;
    height: 108px;
    line-height: 30px;
    padding: 20px;
    background: #f5f5f5;
    outline: 0;
    border: 0;
}
#footer .footfeed .yzm .ftype_code{
    padding: 0 20px 10px 0;
    position: relative;
}
#footer .footfeed .yzm .ftype_code input{
    width: 100%;
    height: 50px;
    padding: 0 20px;
    background: #f5f5f5;
    outline: 0;
    border: 0;
}
#footer .footfeed .yzm .ftype_code img{
    width: 80px;
    position: absolute;
    top: 15px;
    right: 35px;
}
#footer .footfeed .code{
    width: 167px;
}
#footer .footfeed .submit{
    width: 180px;
    height: 50px;
    background: #fff;
    border: 1px solid #ccc;
    border-radius: 50px;
    color: #828282;
    display: block;
    margin: 0px auto 0;
    outline: 0;
}
#footer .foottail{
    padding: 30px 0;
    background: #e1e1e1;
}
#footer .foottail .footright{
    color: #4b4a4a;
    line-height: 20px;
}
#footer .foottail .footright a{
    color: #4b4a4a;
}
#footer .foottail .tailimg{
    position: relative;
    left: 0;
}
#footer .foottail .tailimg:hover{
    left: -5px;
}
/*foot*/

/*about*/
.about{
    overflow: hidden;
}
.about .content{
    color: #31302e;
    font-size: 15px;
    line-height: 35px;
    padding: 50px 0 30px;
}
.about .content h1{
    color: #31302e;
    font-size: 50px;
    font-weight: 100;
    text-align: center;
    padding-bottom: 40px;
}
.about .content ul li{
    float: left;
    width: 22.75%;
    margin: 0 3% 30px 0;
}
.about .content ul li:nth-child(4){
    margin-right: 0;
}
.about .content ul li img{
    width: 100%;
}
.about .homework{
    padding: 50px 0 25px;
    text-align: center;
}
.about .homework li{
    float: left;
    width: 32%;
    margin-right: 2%;
}
.about .homework li:nth-child(3n){
    margin-right: 0;
}
.about .homework li a{
    display: block;
    position: relative;
    top: 0;
}
.about .homework li a:hover{
    top: -5px;
}
.about .homework li a img{
    width: 100%;
    border-radius: 10px;
}
.about .homework li p{
    color: #989898;
    font-size: 14px;
    line-height: 70px;
}
/*about*/

/*search*/
.productsearch .notitle{
    color: #333;
    font-size: 16px;
    line-height: 30px;
    text-align: center;
    border: 1px solid transparent;
    border-radius: 10px;
    padding: 20px 0;
}
/*search*/

/*product*/
.pro{
    overflow: hidden;
}
.pro .pronav .news_title{
    color: #4d4d4d;
    font-size: 24px;
    padding: 50px 0 20px;
}
.pro .pronav .news_title span{
    color: #c3c3c3;
    font-size: 15px;
    font-family: 'Arial';
    padding-left: 20px;
}
.pro .pronav .news_nav{
    padding: 45px 0 0;
}
.pro .pronav .news_nav ul li{
    float: left;
}
.pro .pronav .news_nav ul li a{
    display: block;
    color: #4d4d4d;
    line-height: 40px;
    margin: 0 20px;
    padding: 0 10px;
}
.pro .pronav .news_nav ul li a:hover,
.pro .pronav .news_nav ul li a.hover{
    color: #ffffff;
    background: #5d82a6;
}
.pro .pro_list ul li{
    float: left;
    width: 22.75%;
    margin: 3% 3% 0 0;
    border: 2px solid #ededed;
    text-align: center;
    line-height: 30px;
}
.pro .pro_list ul li:nth-child(4n){
    margin-right: 0;
}
.pro .pro_list ul li a{
    display: block;
}
.pro .pro_list ul li a img{
    width: 100%;
    padding: 20px;
}
.pro .pro_list ul li a .name,
.pro .pro_list ul li a .title{
    color: #2e2e2e;
    font-size: 15px;
}
.pro .pro_list ul li a .ckxq{
    border: 1px solid #dedede;
    margin: 20px 40px;
}
.pro .pro_list ul li a:hover .ckxq{
    color: #fe940c;
}
/*showproduct*/
.proshow.pro .pronav .news_title{
    display: none;
}
.proshow.pro .pronav .news_nav{
    float: left;
}
.showproduct{
    overflow: hidden;
}
.showproduct .proonetitle{
    font-size: 30px;
    color: #2e2e2e;
    padding: 50px 0 30px 20px;
}
.showproduct .proone{
    padding-bottom: 50px;
}
.showproduct .proone .proimgurl{
    width: 500px;
    margin: auto;
}
.showproduct .proone .prodisplayimg{
    width: 500px;
    margin: 10px auto 0;
    position: relative;
}
.showproduct .protwo{
    padding-bottom: 50px;
}
.showproduct .protwo .mailto{
    display: block;
    width: 150px;
    background: #545454;
    color: #FFFFFF;
    font-size: 15px;
    line-height: 30px;
    text-align: center;
    margin-bottom: 50px;
}
/*product*/

/*mcimg*/
.mcimg{
    padding: 100px 0;
    text-align: center;
}
.mcimg video{
    width: 800px;
    height: 500px;
}
/*mcimg*/

/*news*/
.newslist.news{
    padding: 0;
}
/*shownews*/
.newsdetail .newsdetail_title {
    text-align: center;
    font-size: 22px;
    padding: 50px;
    border-bottom: 1px dashed #CCCCCC;
}
.newsdetail .newsdetail_title .time {
    font-size: 13px;
    color: #949494;
    padding-top: 20px;
}
.newsdetail .newsdetail_text {
    padding: 50px 10px;
    line-height: 35px;
    font-size: 14px;
}
.newsdetail .newsdetail_text img{
    display: inline-block;
}
.newsdetail  .newsdetail_paging {
    padding: 0 10px 50px;
    line-height: 50px;
}
/*news*/
@media (max-width: 1200px){
    #header .headerbj .headnav #cssmenu > ul > li{
        margin-right: 50px;
    }
    .showproduct .proone .proimgurl .cloud-zoom-big{
        left: auto!important;
        right: 0!important;
    }
}
/*手机版*/
#header .menubutton{  display: none;  width: 30px;  height: 30px;  cursor: pointer;  margin: 14px 12px 6px 0;  }
#header .menubutton .menuicon{  height: 2px;  margin-bottom: 8px;  background: #01437d;  }
#header .menubutton .menuicon.top{ animation:icon01 linear infinite 2s; }
#header .menubutton .menuicon.middle{ animation:icon02 linear infinite 2s; }
#header .menubutton .menuicon.bottom{ animation:icon03 linear infinite 2s; }
@keyframes icon01{ 0%{ width:100%;} 25%{ width:25%;} 100%{ width:100%;} }
@keyframes icon02{ 0%{ width:100%;} 50%{ width:25%;} 100%{ width:100%;} }
@keyframes icon03{ 0%{ width:100%;} 75%{ width:25%;} 100%{ width:100%;} }
/*导航*/
.menumain{  display: none;  background: #fff;  width: 100%!important;  height: 100%;  overflow: auto!important;  position: fixed;  top: 0;  left: 0;  z-index: 1000;  opacity: 1!important;  }
.menumain .menubox{  margin: 50px 5% 80px;  padding-top: 1px;  }
.menumain .menubox .menunav{  overflow: hidden;  }
.menumain .menubox .menunav .menuone a{  display: block;  color: #333;  font-size: 14px;  margin: 30px 0 0;  }
.menumain .menubox .menunav .menuone.home a{  padding-bottom: 20px;  border-bottom: 1px solid #f1f1f1;  }
.menumain .menubox .menunav .menuone .menutwo{  float: left;  position: relative;  }
.menumain .menubox .menunav .menuone .menutwo.bai{  width: 100%;  }
.menumain .menubox .menunav .menuone .menutwo:before{  content: '';  width: 3px;  height: 3px;  background: rgba(0, 0, 0, .2);  border-radius: 50%;  position: absolute;  left: -8px;  bottom: 5px;  }
.menumain .menubox .menunav .menuone .menutwo a{  color: #888;  font-size: 13px;  margin: 30px 20px 0 5px;  height: 15px;  line-height: 15px;  overflow: hidden;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree{  float: left;  position: relative;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree:before{  content: '';  width: 3px;  height: 3px;  background: rgba(0, 0, 0, .2);  border-radius: 50%;  position: absolute;  left: -6px;  bottom: 5px;  }
.menumain .menubox .menunav .menuone .menutwo .menuthree a{  color: #bbb;  font-size: 12px;  margin: 20px 20px 0 10px;  }
.menumain .menubox .menunav a.hover{  color: #5d82a6 !important;  }
/*语言*/
.menumain .menubox .lang{  margin-top: 30px;  text-align: center;  overflow: hidden;  }
.menumain .menubox .lang a{  float: left;  width: 48%;  height: 40px;  line-height: 40px;  border: 1px solid #f1f1f1;  margin: 2% 1%;  border-radius: 5px;  box-sizing: border-box;  }
.menumain .menubox .lang a img{  display: inline-block;  width: 30px;  padding-right: 10px;  position: relative;  top: -3px;  }
.menumain .menubox .lang a span{  display: inline-block;  color: #333;  font-size: 14px;  position: relative;  top: -1px;  }
/*底部菜单*/
#mobtool{  display: none;  width: 100%;  height: 50px;  background: #5d82a6;  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(/skin/images/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 #5d82a6;  overflow: hidden;  }
#sortpro .sortpro_left{  float: left;  width: 65%;  color: #fff;  font-size: 14px;  background: #5d82a6;  }
#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: #5d82a6;  }
.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(/skin/images/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 #5d82a6;  }
.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: #5d82a6;  }
/*手机版*/
@media (max-width: 992px){
    #header .menubutton, #mobtool, .u-layer-ath{  display: block;  }
    .onlineservice ul li a{  width: 30px!important;  height: 31px!important;  }
    .onlineservice ul li a span{  display: none;  }
    .onlineservice ul li a i,.onlineservice ul li.morelist i{  width: 30px!important;  line-height: 30px!important;  font-size: 14px!important;  }
    .onlineservice ul li a i.fa-mobile{  font-size: 20px!important;  }
    .onlineservice ul li.morelist .list a{  width: 100%!important;  line-height: 30px!important;  }
    .popup-wechat img{  width: 200px;  }
    .mfp-zoom-out-cur, .mfp-wrap{  width: 100% !important;  height: 100% !important;  overflow: hidden;  }
    .mfp-wrap .mfp-arrow-left{  margin-left: -47%;  }
    .mfp-wrap .mfp-arrow-right{  margin-right: -47%;  }
    .pcweb{  display: none;  }
    .mobileweb{  display: block;  }
    /*index*/
    #header .headertop .lang,
    #header .headertop .headsearch,
    #header .headerbj{
        display: none;
    }
    #header.height{
        top: 0;
    }
    #header .headertop .logo{
        height: 50px;
        padding: 10px 0;
    }
    #header .headertop .logo .webname{
        font-size: 15px;
        line-height: 30px;
        padding-left: 10px;
    }
    #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;
    }
    .news .news_title{
        padding: 50px 0 10px;
    }
    .news .news_list ul li{
        width: 100%;
        height: auto;
        margin-top: 30px;
    }
    .news .news_list ul li a,
    .news .news_list ul li a:hover{
        background: #fff;
        padding: 0;
        top: 0;
    }
    .news .news_list ul li a .innews1{
        height: auto;
    }
    .news .news_list ul li a .innews2{
        display: none;
    }
    .invideo{
        padding: 50px 0;
    }
    .videoshow video{
        width: 350px;
        height: 220px;
    }
    .countup{
        padding: 50px 0 20px;
    }
    .countup ul li{
        width: 50%;
        margin-bottom: 30px;
    }
    .countup ul li:nth-child(3){
        border-left: 0;
    }
    .inabout{
        padding: 50px 0 20px;
    }
    .inabout .description{
        background: url(/skin/images/inabouticon.png) center 92% no-repeat;
    }
    .inabout ul li{
        width: 100%;
        margin: 0;
    }
    #footer .footcon,#footer .footfeed{
        display: none;
    }
    #footer .foottail{
        padding: 30px 0 80px;
        text-align: center;
    }
    #footer .foottail a{
        display: block;
    }
    #footer .foottail .footright, #footer .foottail .tailimg{
        width: 100%;
    }
    #footer .foottail .tailimg img{
        margin: 15px auto 0;
    }
    .about .content ul li{
        width: 47.5%;
        margin: 0 5% 5% 0;
    }
    .about .content ul li:nth-child(2n){
        margin-right: 0;
    }
    .about .homework li{
        width: 100%;
        margin: 0;
    }
    .pro .pronav{
        display: none;
    }
    .pro .pro_list ul li{
        width: 48%;
        margin: 4% 4% 0 0;
    }
    .pro .pro_list ul li:nth-child(2n){
        margin-right: 0;
    }
    .showproduct .proonetitle{
        font-size: 20px;
        font-weight: bold;
        padding: 50px 0 30px;
    }
    .showproduct .proone .proimgurl, .showproduct .proone .prodisplayimg{
        display: none;
    }
    .showproduct .proone .mobprodisplayimg .swiper-pagination-bullet-active{
        background: #5d82a6;
    }
    .mcimg{
        padding: 50px 0;
    }
    .mcimg video{
        width: 350px;
        height: 220px;
    }
    .newsdetail .newsdetail_title{
        padding: 50px 0 30px;
    }
    .newsdetail .newsdetail_title .time{
        height: 20px;
        line-height: 20px;
        overflow: hidden;
        padding: 0;
        margin-top: 20px;
    }
    #footer .footcon .footadd{
        width: 100%;
    }
    #footer .footcon .map{
        width: 100%;
        height: 200px;
        margin-top: 50px;
    }
    #footer .footfeed .input{
        width: 100%;
    }
    #footer .footfeed .yzm{
        width: 100%;
    }
    #footer .footfeed .code{
        display: none;
    }
	#footer .foottail .footbeian{
		width: 100%;
		padding: 10px 0 0 !important;
	}
}