

@font-face{
    font-family: 'Roboto Regular';
    src: url('/skin/fonts/robotoregular.eot');
    src: url('/skin/fonts/robotoregular.eot#iefix') format('embedded-opentype'),
    url('/skin/fonts/robotoregular.woff2') format('woff2'),
    url('/skin/fonts/robotoregular.woff') format('woff'),
    url('/skin/fonts/robotoregular.ttf') format('truetype'),
    url('/skin/fonts/roboto regular.svg#neuesbauendemo') format('svg');
    font-weight:normal;
    font-style:normal
}
.font1{font-family: 'Roboto Regular';}
@font-face{
    font-family: 'Roboto BoldCondensed';
    src: url('/skin/fonts/robotoboldcondensed.eot');
    src: url('/skin/fonts/robotoboldcondensed.eot#iefix') format('embedded-opentype'),
    url('/skin/fonts/robotoboldcondensed.woff2') format('woff2'),
    url('/skin/fonts/robotoboldcondensed.woff') format('woff'),
    url('/skin/fonts/robotoboldcondensed.ttf') format('truetype'),
    url('/skin/fonts/roboto boldcondensed.svg#neuesbauendemo') format('svg');
    font-weight:normal;
    font-style:normal
}
.font2{font-family: 'Roboto BoldCondensed';}

/*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: #4e4e4f; text-decoration: none; transition-duration: 1s; }
a:hover,a:focus{ color: #005ba2; text-decoration: none; transition-duration: 1s; }
q:before,q:after{ content: ''; }
sup{ vertical-align: super; }
sub{ vertical-align: sub; }
/* 重置图片元素 */
img{ display: block; max-width: 100%; }
.content:after{ content: ''; clear: both; display: block; }
.content img{ display: inline-block; }
button{ cursor: pointer; }
/* 重置表格元素 */
table{border-collapse:collapse;border-spacing:0;margin:10px 0;display:table;width:100%!important;}
table td,table th{padding:10px;border:1px solid #ddd;color:#333;vertical-align:middle;word-break:normal!important;width:1%!important;}
/* 清除浮动 */
.cl,.clear{display:block;float:none;clear:both;overflow:hidden;visibility:hidden;width:0;height:0;background:0;border:0;font-size:0;}
/*end Reset css*/

/*web*/
html,body{width: 100%;height: 100%;font-family: '微软雅黑';font-size: 14px;background: #fff;}
@media(min-width: 1200px){.container{width: 1200px;padding: 0;}}
em{color: #005ba2;}
.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:#2b2c2d;color:#fff;width:30px;height:30px;line-height:30px;margin:3px;display:inline-block;}
.met_pager a:hover,.met_pager a.Ahover{background:#005ba2;}
.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{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: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: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:1s;}
.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: .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: #fff;
    box-shadow: 0 0 5px rgba(0, 0, 0, .1);
}
#header .headerbj .headlogo{
    height: 80px;
    padding: 24px 20px 24px 40px;
}
#header .headerbj .headlogo img{
    height: 100%;
}
#header .headerbj .headnav ul li{
    padding: 25px 20px;
    position: relative;
}
#header .headerbj .headnav ul li:before{
    content: '';
    width: 1px;
    height: 12px;
    background: #a8abb1;
    position: absolute;
    top: 35px;
    left: 0;
}
#header .headerbj .headnav ul li:nth-child(1):before{
    display: none;
}
#header .headerbj .headnav ul li .overflow{
    height: 30px;
    line-height: 30px;
    overflow: hidden;
}
#header .headerbj .headnav ul li .overflow a{
    display: block;
    color: #404143;
    position: relative;
    top: -30px;
}
#header .headerbj .headnav ul li:hover .overflow a,
#header .headerbj .headnav ul li.hover .overflow a{
    color: #005ba2;
    top: 0;
}
#header .headerbj .headright{
    padding: 30px 50px 30px 0;
}
#header .headerbj .headright .headsearch{
    margin-right: 20px;
}
#header .headerbj .headright .headsearch .input-text{
    float: left;
    width: 0;
    height: 20px;
    padding: 0;
    font-size: 12px;
    border: 1px solid transparent;
    outline: 0;
    transition-duration: 1s;
}
#header .headerbj .headright .headsearch:hover .input-text{
    width: 80px;
    padding: 0 5px;
    border: 1px solid #ccc;
}
#header .headerbj .headright .headsearch .input-submit{
    float: left;
    width: 25px;
    height: 20px;
    color: #999;
    font-size: 16px;
    background: 0;
    outline: 0;
    border: 0;
    position: relative;
    top: -2px;
}
#header .headerbj .headright .pro2wm a{
    color: #999;
    font-size: 18px;
}
#header .headerbj .headright .pro2wm:before{
    border-right: 8px solid transparent;
    border-left: 8px solid transparent;
    border-bottom: 8px solid #fff;
    top: 24px;
    right: 50%;
    margin-right: -8px;
}
#header .headerbj .headright .pro2wm:after{
    height: 5px;
    top: 35px;
    right: 35%;
}
#header .headerbj .headright .pro2wm .wxewm{
    width: 100px;
    height: 0;
    padding: 0 5px;
    top: 40px;
    left: 50%;
    margin-left: -50px;
}
#header .headerbj .headright .pro2wm:hover .wxewm{
    height: 100px;
    padding: 5px;
}
/*banner*/
#mcbanner{
    padding-top: 80px;
    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: 12px 25px;
    color: #525252;
    font-size: 16px;
    border: 1px solid #8d8d8d;
    overflow: hidden;
    position: relative;
    transition-duration: 1s;
}
.more:hover,
a:hover .more{
    color: #fff !important;
    border: 1px solid #005ba2;
}
.more:before{
    content: '';
    width: 120%;
    height: 100%;
    background: #005ba2;
    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;
}

.inentrance{
    position: relative;
    top: -55px;
}
.inentrance a{
    width: 25%;
}
.inentrance a img{
    width: 100%;
}
.inabout{
    padding: 0 2% 70px;
    overflow: hidden;
}
.inabout .inaboutfl{
	width: 54.98%;
}
.inabout .inaboutfl .swiper-button-prev,
.inabout .inaboutfl .swiper-button-next{
    width: 80px;
    height: 60px;
    padding: 19px 29px;
    background: #005ba2;
    top: auto;
    left: auto;
    right: 0;
    bottom: 0;
}
.inabout .inaboutfl .swiper-button-prev{
    right: 80px;
    background: #fff;
}
.inabout .inaboutfl .swiper-button-prev span,
.inabout .inaboutfl .swiper-button-next span{
    display: inline-block;
    width: 22px;
    height: 22px;
    color: #fff;
    font: 15px/22px '宋体';
    text-align: center;
    background: #005ba2;
    border-radius: 50%;
}
.inabout .inaboutfl .swiper-button-next span{
    color: #005ba2;
    background: #fff;
}
.inabout .inaboutfr{
    width: 42%;
}
.inabout .inaboutfr .inhotline{
    background: url(/skin/images/inhotlinebj.png) right bottom no-repeat;
    border-bottom: 1px solid #dbdbdb;
    padding: 20px 0 40px;
}
.inabout .inaboutfr .inhotline img{
    margin: 0 25px 0 5px;
}
.inabout .inaboutfr .inhotline .inhotlinename1{
    color: #000;
    font-size: 30px;
}
.inabout .inaboutfr .inhotline .inhotlinename1 span{
    font-size: 18px;
    padding-left: 10px;
}
.inabout .inaboutfr .inhotline .inhotlinename2{
    display: block;
    color: #005ba2;
    font-size: 40px;
    margin-top: 10px;
}
.inabout .inaboutfr .inaboutbj{
    padding: 3vw 10px 0;
}
.inabout .inaboutfr .inaboutbj .namemark{
    color: #212122;
    font-size: 22px;
}
.inabout .inaboutfr .inaboutbj .namemark span{
    color: #bbbbbb;
    font-size: 14px;
    padding-left: 20px;
}
.inabout .inaboutfr .inaboutbj .description{
    color: #7a7a7b;
    font-size: 18px;
    line-height: 28px;
    margin: 30px 0 50px;
}
.inabout .inaboutfr .inaboutbj .more{
    padding: 12px 40px;
    color: #7a7a7b;
    font-size: 14px;
}
.inabout .container-fluid{
    position: relative;
}
.inabout .inaboutfr .inaboutbj .inhzfwcx{
    position: absolute;
    right: 3%;
    bottom: 5%;
}
.inabout .inaboutfr .inaboutbj .inhzfwcx .inhzfwcxname1{
    color: #c7cacf;
    font-size: 16px;
    line-height: 24px;
}
.inabout .inaboutfr .inaboutbj .inhzfwcx .inhzfwcxname2{
    color: #e2e2e2;
    font-size: 12px;
    line-height: 24px;
    letter-spacing: -2px;
}
.inservice{
    background: url(/skin/images/inservicebj.jpg) center / cover no-repeat;
    text-align: center;
    padding: 40px 0 80px;
    overflow: hidden;
}
.inservice .name1{
    color: rgba(255, 255, 255, .08);
    font-size: 60px;
}
.inservice .name2{
    color: #fff;
    font-size: 30px;
    margin-bottom: 50px;
    position: relative;
    top: -25px;
}
.inservice .name2:before{
    content: '';
    width: 36px;
    height: 8px;
    background: #fff;
    position: absolute;
    left: 50%;
    bottom: -30px;
    margin-left: -18px;
}
.inservice .inserviceimg img{
    margin: auto;
}
.incolumn{
    overflow: hidden;
}
.incolumn .incolumnfl{
    padding: 50px 0 0 50px;
    border-bottom: 1px solid #d9dde0;
}
.incolumn .incolumnfl .name1{
    color: #1955a4;
    font-size: 20px;
    line-height: 24px;
}
.incolumn .incolumnfl .name2{
    color: #999da3;
    font-size: 14px;
    line-height: 24px;
}
.incolumn .incolumnfr{
    color: #fff;
    background: #1955a4;
    padding: 8px 25px;
    margin: 60px 60px 0 0;
}
.incolumn .incolumnlist{
    padding: 50px 75px;
}
.incolumn .incolumnlist a{
    display: block;
    text-align: center;
    position: relative;
}
.incolumn .incolumnlist a:before{
    content: '';
    border: 1px solid #050405;
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition-duration: 1s;
}
.incolumn .incolumnlist a:hover:before{
    top: 10px;
    left: 15px;
    right: 15px;
    bottom: 10px;
    opacity: 1;
}
.incolumn .incolumnlist .swiper-slide:nth-child(2n-1) a .show1{
    display: none;
}
.incolumn .incolumnlist .swiper-slide:nth-child(2n) a .show2{
    display: none;
}
.incolumn .incolumnlist a .list1{
    padding: 25px 0 35px;
}
.incolumn .incolumnlist a .list3{
    padding: 35px 0 25px;
}
.incolumn .incolumnlist a .list1 .name1{
    color: #ababab;
    line-height: 25px;
    position: relative;
    top: 0;
    transition-duration: 1s;
}
.incolumn .incolumnlist a:hover .list1 .name1{
    color: #005ba2;
    font-size: 25px;
    top: -5px;
}
.incolumn .incolumnlist a:hover .list3 .name1{
    top: 5px;
}
.incolumn .incolumnlist a .list1 .name2{
    color: #383838;
    line-height: 25px;
    position: relative;
    transition-duration: 1s;
}
.incolumn .incolumnlist a:hover .list1 .name2{
    color: #005ba2;
    font-size: 15px;
}
.incolumn .incolumnlist a .list1 .name2:before{
    content: '';
    width: 20px;
    height: 2px;
    background: #b2b2b2;
    position: absolute;
    left: 50%;
    bottom: -10px;
    margin-left: -10px;
    transition-duration: 1s;
}
.incolumn .incolumnlist a:hover .list1 .name2:before{
    background: #005ba2;
}
.incolumn .incolumnlist a .list3 .name2:before{
    top: -10px;
}
.incolumn .incolumnlist .swiper-container{
    padding-bottom: 80px;
}
.incolumn .incolumnlist .swiper-container .swiper-pagination-bullet{
    width: 16px;
    height: 16px;
    margin: 0 10px;
    background: #c8c8c8;
    opacity: 1;
}
.incolumn .incolumnlist .swiper-container .swiper-pagination-bullet-active{
    background: #005ba2;
}
.incase{
    padding-top: 20px;
    text-align: center;
    overflow: hidden;
}
.incase .incasename1{
    color: rgba(5, 4, 5, .08);
    font-size: 60px;
}
.incase .incasename2{
    color: #1955a4;
    font-size: 30px;
    margin-bottom: 50px;
    position: relative;
    top: -25px;
}
.incase .incasename2:before{
    content: '';
    width: 36px;
    height: 8px;
    background: #1955a4;
    position: absolute;
    left: 50%;
    bottom: -30px;
    margin-left: -18px;
}
.incase .incaselist{
    padding: 20px 12% 0;
}
.incase .incaselist .swiper-container{
    overflow: unset;
}
.incase .incaselist .swiper-button-prev,
.incase .incaselist .swiper-button-next{
    width: 50px;
    height: 50px;
    color: #fff;
    font: 25px/50px '宋体';
    text-align: center;
    background: rgba(0, 0, 0, .2);
    border-radius: 100%;
}
.incase .incaselist .swiper-button-prev{
    left: 5%;
}
.incase .incaselist .swiper-button-next{
    right: 5%;
}
.incase .incaselist a{
    display: block;
    margin: 0 1%;
    position: relative;
}
.incase .incaselist a:before{
    content: '';
    width: 100%;
    height: 0;
    background: rgba(5, 4, 5, .6);
    position: absolute;
    top: 0;
    left: 0;
    transition-duration: 2s;
}
.incase .incaselist a:hover:before{
    height: 100%;
    transition-duration: 1s;
}
.incase .incaselist a .incasename{
    width: 100%;
    position: absolute;
    top: 150%;
    left: 50%;
    transform: translate(-50%, -50%);
    transition-duration: 1s;
}
.incase .incaselist a:hover .incasename{
    top: 50%;
    transition-duration: 2s;
}
.incase .incaselist a .incasename .title{
    color: #fff;
    font-size: 36px;
}
.incase .incaselist a .incasename .keywords{
    color: #fff;
    font-size: 18px;
    margin: 20px 0 30px;
}
.incase .incaselist a .incasename img{
    margin: auto;
}
.innews{
    padding: 80px 0 100px;
    overflow: hidden;
}
.innews .innewsfl .namemark1{
    color: #252525;
    font-size: 24px;
}
.innews .innewsfl .namemark2{
    color: #adadad;
    padding-top: 5px;
}
.innews .innewsfr a{
    display: inline-block;
    color: #474747;
    background: #fff;
    padding: 10px 20px;
    margin-left: 5px;
}
.innews .innewsfr a:hover,
.innews .innewsfr a.hover{
    color: #fff;
    background: #005ba2;
}
.innews ul li{
    width: 32.5%;
    margin: 50px 1.2% 0 0;
}
.innews ul li:nth-child(3){
    margin-right: 0;
}
.innews ul li a{
    display: block;
    background: #f4f4f4;
}
.innews ul li a .newslist1{
    background: url(/skin/images/innewsbj.jpg) center / cover no-repeat;
    background-size: 0 0;
    padding: 60px 30px 70px;
    transition-duration: 1s;
}
.innews ul li a:hover .newslist1{
    background-size: 100% 100%;
}
.innews ul li a .newslist1 .time1{
    width: 60px;
    color: #6f6f6f;
    font-size: 24px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    margin-right: 10px;
}
.innews ul li a .newslist1 .time2{
    width: 40px;
    color: #6f6f6f;
    font-size: 14px;
    line-height: 35px;
    height: 35px;
    overflow: hidden;
}
.innews ul li a .newslist1 .time2 p{
    position: relative;
    top: -35px;
}
.innews ul li a .newslist1 .title{
    margin: 5px 0 10px;
    color: #282828;
    font-size: 16px;
    line-height: 50px;
    height: 50px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.innews ul li a .newslist1 .description{
    color: #595959;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.innews ul li a .newslist{
    border-top: 1px solid #dedede;
    margin: 0 20px;
}
.innews ul li a .newslist img{
    padding: 44.5px 10px;
    padding-right: 30px;
    opacity: 0;
    transition-duration: 1s;
}
.innews ul li a:hover .newslist img{
    padding-right: 10px;
    opacity: 1;
}
.innews ul li a .newslist .more2{
    color: #282828;
    line-height: 100px;
    padding: 0 10px;
}
/*index*/

/*foot*/
#footer{
    background: #101418;
    position: relative;
    z-index: 2;
}
#footer .footlogo{
    width: 100%;
    height: 130px;
    background: url(/skin/images/footlogo.jpg) center;
}
#footer .footlogo .footlogofl{
    padding: 42px 0;
}
#footer .footlogo .footlogofl .name1{
    color: #fff;
    font-size: 26px;
    padding-bottom: 6px;
}
#footer .footlogo .footlogofl .name2{
    color: #fff;
    font-size: 12px;
    letter-spacing: 0.2px;
}
#footer .footlogo .footlogofr{
    width: 36%;
    padding: 28px 0;
}
#footer .footlogo .footlogofr .name1{
    color: #fff;
    font-size: 24px;
    padding-bottom: 10px;
}
#footer .footlogo .footlogofr .name1 span{
    font-size: 14px;
    padding-left: 10px;
}
#footer .footlogo .footlogofr .name2{
    display: block;
    color: #fff;
    font-size: 40px;
}
#footer .footcon .footadd{
    padding: 50px 0;
    border-bottom: 1px solid #181e23;
}
#footer .footcon .footadd li{
    width: 25%;
}
#footer .footcon .footadd li .namemark1{
    color: #fff;
    font-size: 24px;
    margin: 5px 0;
}
#footer .footcon .footadd li .namemark2{
    color: #adadad;
}
#footer .footcon .footadd li p{
    color: #6b7177;
    line-height: 30px;
}
#footer .footcon .footadd li p a{
    color: #6b7177;
}
#footer .footcon .footadd li p a:hover{
    color: #fff;
}
#footer .footcon .footshare{
    text-align: center;
    padding: 50px 0;
}
#footer .footcon .footshare a{
    display: inline-block;
    width: 32px;
    height: 32px;
    color: #3f4b57;
    line-height: 30px;
    text-align: center;
    background: #0c1014;
    border: 1px solid #14191e;
    border-radius: 50px;
    margin: 0 5px;
}
#footer .footcon .footshare .pro2wm:before{
    right: -10px;
}
#footer .footcon .footshare .pro2wm .wxewm{
    height: 100px;
    padding: 5px 0;
    left: 52px;
    bottom: -35px;
}
#footer .footcon .footshare .pro2wm:hover .wxewm{
    width: 100px;
    padding: 5px;
}
#footer .foottail{
    padding: 30px 0;
    background: #0d1014;
}
#footer .foottail .footright,
#footer .foottail .footother{
    color: #3f4b57;
    line-height: 20px;
}
#footer .foottail .footright a{
    color: #3f4b57;
}
#footer .foottail .footother a{
    display: inline-block;
    color: #3f4b57;
    margin-top: 10px;
}
#footer .foottail .tailimg{
    position: relative;
    left: 0;
}
#footer .foottail .tailimg:hover{
    left: -5px;
}
/*foot*/

/*about*/
.about{
    padding: 60px 0 100px;
    overflow: hidden;
}
.about .content{
    color: #7a7a7b;
    font-size: 14px;
    line-height: 26px;
}
.about .content .namemark{
    color: #212122;
    font-size: 22px;
}
.about .content .namemark span{
    color: #bbbbbb;
    font-size: 14px;
    padding-left: 20px;
}
.about .aboutwork{
    border-bottom: 1px solid #cecece;
    padding: 20px 0 50px;
    margin-bottom: 50px;
}
.about .aboutwork li{
    float: left;
    width: 33.33%;
    padding: 2%;
}
.about .aboutwork li img{
    width: 100%;
    background: #fff;
    padding: 10px 10px 30px;
    box-shadow: 0 0 30px rgba(162, 172, 177, .3);
    border-radius: 5px;
}
.about .aboutgszs li{
    float: left;
    width: 30.66%;
    margin: 4% 4% 0 0;
}
.about .aboutgszs li:nth-child(3n){
    margin-right: 0;
}
.about .aboutgszs li img{
    width: 100%;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .2);
}
/*about*/

/*product*/
.product{
    overflow: hidden;
}
.product .pronav{
    width: 220px;
    margin: 50px 0;
}
.product .pronav ul li a{
    display: block;
    color: #525252;
    border-bottom: 1px solid #e5e5e5;
    background: url(/skin/images/pronav.jpg) 10px center no-repeat;
    line-height: 19px;
    padding: 10px 0 10px 30px;
}
.product .pronav ul li a:hover,
.product .pronav ul li.hover a{
    color: #005ba2;
}
.product .pronav ul li .navdown{
    display: none;
}
.product .pronav ul li.hover .navdown{
    display: block;
}
.product .pronav ul li .navdown a{
    color: #525252;
    border-bottom: 1px dotted #e5e5e5;
    background: 0;
    padding-left: 40px;
}
.product .pronav ul li .navdown a:hover,
.product .pronav ul li .navdown a.hover{
    color: #005ba2;
}
.product .prolist{
    width: calc(100% - 270px);
    padding-top: 20px;
}
.product .prolist ul li{
    width: 31.33%;
    margin: 3% 3% 0 0;
}
.product .prolist ul li:nth-child(3n){
    margin-right: 0;
}
.product .prolist ul li a{
    display: block;
    border-bottom: 1px solid #f5f5f5;
}
.product .prolist ul li a .imgurl{
    height: 220px;
    overflow: hidden;
}
.product .prolist ul li a .indexicon{
    padding: 34.5px 0;
    padding-right: 30px;
    opacity: 0;
    transition-duration: 1s;
}
.product .prolist ul li a:hover .indexicon{
    padding-right: 10px;
    opacity: 1;
}
.product .prolist ul li a .title{
    margin: 15px 5px 0;
    color: #0f293d;
    font-size: 16px;
    line-height: 25px;
    height: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.product .prolist ul li a:hover .title{
    color: #005ba2;
}
.product .prolist ul li a .name{
    margin: 0 5px 15px;
    color: #a3a3a3;
    font-size: 14px;
    line-height: 25px;
    height: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
/*showproduct*/
.showproduct{  width: calc(100% - 270px);  padding: 50px 0 100px;  }
/*<!--第一部分-->*/
.showproduct .proone{  padding-bottom: 50px;  }
.showproduct .proone .proonefr{  border-bottom: 1px solid #dbdbdb;  padding-bottom: 20px;  }
.showproduct .proone .proonefr .proonetitle{  color: #0f293d;  font-size: 16px;  line-height: 22px;  padding-left: 15px;  }
.showproduct .proone .proonefr .proonename{  color: #a3a3a3;  font-size: 14px;  line-height: 22px;  padding-left: 15px;  }
.showproduct .proone .proonefr .prooneshare a{  display: inline-block;  color: #fff;  font-size: 14px;  background: #a7adb1;  width: 44px;  line-height: 44px;  text-align: center;  border-radius: 5px;  overflow: hidden;  margin-left: 5px;  }
.showproduct .proone .proonefr .prooneshare a.procon{  width: 130px;  background: #005ba2;  }
.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{  height: 120px;  padding: 5px 0;  left: auto;  right: 54px;  bottom: -38px;  }
.showproduct .proone .proonefr .prooneshare .pro2wm:hover .wxewm{  width: 120px;  padding: 5px;  }
.showproduct .proone .proonefr .prooneshare .pro2wm .wxewm img{  width: 100%;  height: 100%;  }
.showproduct .proone .proimgurl{  padding: 30px 0;  }
.showproduct .proone .prodisplayimg{  border-top: 1px solid #cfcfcf;  border-bottom: 1px solid #cfcfcf;  padding: 10px 50px;  position: relative;  }
.showproduct .content{  line-height: 30px;  padding-bottom: 50px;  }
/*<!--第二部分-->*/
.showproduct .protwo{  font-family: 'Arial';  padding: 10px 0;  position: relative;  border-top: 1px dotted #eee;  border-bottom: 1px dotted #eee;  }
.showproduct .protwo:before{  content: '';  width: 1px;  height: 60px;  background: #dfdfdf;  position: absolute;  top: 50%;  left: 50%;  margin-top: -30px;  }
.showproduct .protwo .page_left,
.showproduct .protwo .page_right{  width: 50%;  }
.showproduct .protwo .page_left a,
.showproduct .protwo .page_right a{  display: block;  padding: 20px;  border-radius: 5px;  }
.showproduct .protwo .page_left a{  margin-right: 30px;  text-align: left;  }
.showproduct .protwo .page_right a{  margin-left: 30px;  text-align: right;  }
.showproduct .protwo .page_left a:hover,
.showproduct .protwo .page_right a:hover{  background: #005ba2;  }
.showproduct .protwo .page_left a .page1,
.showproduct .protwo .page_right a .page1{  color: #393939;  border: 1px solid #393939;  width: 40px;  height: 40px;  line-height: 40px;  text-align: center;  font-size: 20px;  }
.showproduct .protwo .page_left a .page1{  margin-right: 20px;  }
.showproduct .protwo .page_right a .page1{  margin-left: 20px;  }
.showproduct .protwo .page_left a:hover .page1,
.showproduct .protwo .page_right a:hover .page1{  color: #fff;  border: 1px solid #fff;  }
.showproduct .protwo .page_left a .page2,
.showproduct .protwo .page_right a .page2{  font-size: 16px;  color: #434343;  padding: 3px;  }
.showproduct .protwo .page_left a:hover .page2,
.showproduct .protwo .page_right a:hover .page2{  color: #fff;  }
.showproduct .protwo .page_left a .page3,
.showproduct .protwo .page_right a .page3{  font-size: 14px;  color: #434343;  padding: 3px;  }
.showproduct .protwo .page_left a:hover .page3,
.showproduct .protwo .page_right a:hover .page3{  color: #fff;  }
/*product*/

/*news*/
.newsnav{
    padding: 50px 0 70px;
    text-align: center;
}
.newsnav a{
    margin: 0 3px;
}
.newsnav a.hover{
    color: #fff;
    background: #005ba2;
    border: 1px solid #005ba2;
}
.news{
    overflow: hidden;
}
.news .newslist{
    width: 65%;
}
.news .newslist .newstop{
    display: block;
}
.news .newslist .newstop .newstopfl{
    width: calc(100% - 80px);
}
.news .newslist .newstop .newstopfl .title{
    border-bottom: 1px solid #dddddd;
    color: #5c5c5c;
    font-size: 16px;
    line-height: 50px;
    height: 55px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news .newslist .newstop .newstopfl:hover .title{
    color: #005ba2;
}
.news .newslist .newstop .newstopfl .description{
    margin: 15px 0;
    color: #828181;
    font-size: 14px;
    line-height: 24px;
    height: 48px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news .newslist .newstop .newstopfr{
    text-align: center;
}
.news .newslist .newstop .newstopfr .time1{
    width: 70px;
    color: #828181;
    font-size: 50px;
    height: 50px;
    overflow: hidden;
}
.news .newslist .newstop .newstopfr .time1 p{
    position: relative;
    top: -250px;
}
.news .newslist .newstop .newstopfr .time2{
    width: 52px;
    color: #575757;
    font-size: 14px;
    word-break: break-all;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    margin: auto;
}
.news .newslist .newstop .newstopfr .icon{
    color: #5c5c5c;
    font-size: 20px;
}
.news ul.newsall li a{
    display: block;
    border-bottom: 1px solid #dddddd;
    position: relative;
    top: 0;
}
.news ul.newsall li a:hover{
    top: -5px;
}
.news ul.newsall li a .title{
    width: calc(100% - 100px);
    color: #777777;
    line-height: 60px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news ul.newsall li a:hover .title{
    color: #005ba2;
}
.news ul.newsall li a .updatetime{
    color: #575757;
    line-height: 60px;
}
.news .newsbar{
    width: 32%;
    padding-bottom: 50px;
}
.news .newsbar .newshot{
    color: #212122;
    font-size: 22px;
    padding: 0 0 30px 45px;
    position: relative;
}
.news .newsbar .newshot:before{
    content: '';
    width: 30px;
    height: 8px;
    background: #005ba2;
    position: absolute;
    top: 8px;
    left: 0;
}
/*shownews*/
.shownews .title{
    color: #5c5c5c;
    font-size: 16px;
    line-height: 30px;
}
.shownews .updatetime{
    color: #575757;
    font-size: 14px;
    border-bottom: 1px solid #dddddd;
    padding: 15px 0 20px;
}
.shownews .content{
    color: #828181;
    font-size: 14px;
    line-height: 24px;
    padding: 20px 0;
}
.shownews .detailpage{
    color: #575757;
    padding: 30px 0 50px;
    border-top: 1px solid #dddddd;
}
.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: #575757;
    position: relative;
    left: 0;
}
.shownews .detailpage p a:hover{
    color: #005ba2;
    text-decoration: underline;
    left: 10px;
}
.shownews .detailpage .more2{
    color: #fff;
    background: #005ba2;
    padding: 5px 20px;
}
.shownews .detailpage .more2 i{
    color: #fff;
    padding-right: 10px;
}
/*news*/

/*job*/
.mcjob{
    padding-top: 60px;
    overflow: hidden;
}
.mcjob .mcjobtitle{
    color: #fff;
    background: #005ba2;
    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(/skin/images/jobicon1.jpg) center no-repeat;
}
.mcjob .mcjoblist ul li:hover dl.jobicon{
    background: url(/skin/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: #005ba2;
    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;
}
/*job*/

/*catalog*/
.catalog iframe{
    display: block;
    width: 100%;
    height: 800px;
    border: 0;
}
/*catalog*/

/*mcimg*/
.mcimg{
    padding-top: 30px;
    overflow: hidden;
}
.mcimg ul li{
    width: 31.33%;
    margin: 3% 3% 0 0;
}
.mcimg ul li:nth-child(3n){
    margin-right: 0;
}
.mcimg ul li a{
    display: block;
    border-bottom: 1px solid #f5f5f5;
}
.mcimg ul li a .imgurl{
    overflow: hidden;
}
.mcimg ul li a .indexicon{
    padding: 34.5px 0;
    padding-right: 30px;
    opacity: 0;
    transition-duration: 1s;
}
.mcimg ul li a:hover .indexicon{
    padding-right: 10px;
    opacity: 1;
}
.mcimg ul li a .title{
    margin: 15px 5px 0;
    color: #0f293d;
    font-size: 16px;
    line-height: 25px;
    height: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.mcimg ul li a:hover .title{
    color: #005ba2;
}
.mcimg ul li a .keywords{
    margin: 0 5px 15px;
    color: #a3a3a3;
    font-size: 14px;
    line-height: 25px;
    height: 25px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
/*mcimg*/

/*contact*/
.contactmap{
    width: 100%;
    height: 400px;
}
.contact{
    padding: 50px 0;
}
.contact .contactname{
    width: 32%;
}
.contact .contactname .webname{
    color: #005ba2;
    font-size: 18px;
    margin: 40px 0 30px;
}
.contact .contactname .footshare a{
    display: inline-block;
    width: 32px;
    height: 32px;
    color: #868686;
    line-height: 30px;
    text-align: center;
    background: #e4e4e4;
    border: 1px solid #d3d3d3;
    border-radius: 50px;
    margin: 0 5px;
}
.contact .contactname .footshare .pro2wm:before{
    right: -10px;
}
.contact .contactname .footshare .pro2wm .wxewm{
    height: 100px;
    padding: 5px 0;
    left: 52px;
    bottom: -35px;
}
.contact .contactname .footshare .pro2wm:hover .wxewm{
    width: 100px;
    padding: 5px;
}
.contact .contactadd{
    width: 26%;
    padding-top: 30px;
}
.contact .contactadd p{
    color: #4e4e4f;
    line-height: 30px;
}
.contact .contactadd .con2wm{
    width: 120px;
    border: 4px solid #d6d6d6;
    margin-top: 30px;
}
.contact .contactimg{
    width: 42%;
}
.contactfeedback{
    background: #f7f7f7;
}
/*contact*/
@media (max-width: 1400px){
    .inabout .inaboutfr .inaboutbj .inhzfwcx{
        bottom: 0;
    }
    .catalog iframe{
        height: 500px;
    }
    .mfp-wrap .mfp-arrow-left{
        margin-left: -48%;
    }
    .mfp-wrap .mfp-arrow-right{
        margin-right: -48%;
    }
    .showproduct .proone .proimgurl .cloud-zoom-big{
        left: auto!important;
        right: 0!important;
    }
}
@media (max-width: 1200px){
    #header .headerbj .headright{
        display: none;
    }
    .inabout .inaboutfr .inaboutbj .inhzfwcx{
        display: none;
    }
    .incolumn .incolumnlist{
        padding: 50px 20px;
    }
    #footer .footlogo .footlogofl .name1{
        font-size: 20px;
        padding-top: 5px;
    }
    #footer .footlogo .footlogofl .name2{
        letter-spacing: -1.1px;
    }
    .product .prolist ul li a .imgurl{
        height: 160px;
    }
}
/*手机版*/
#header .menubutton{  display: none;  width: 30px;  height: 30px;  cursor: pointer;  margin: 14px 12px 6px 0;  }
#header .menubutton .menuicon{  height: 2px;  margin-bottom: 8px;  background: #005ba2;  }
#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: #005ba2 !important;  }
/*语言*/
.menumain .menubox .lang{  margin-top: 30px;  text-align: center;  overflow: hidden;  }
.menumain .menubox .lang a{  float: left;  width: 98%;  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: #005ba2;  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 #005ba2;  overflow: hidden;  }
#sortpro .sortpro_left{  float: left;  width: 65%;  color: #fff;  font-size: 14px;  background: #005ba2;  }
#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: #005ba2;  }
.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 #005ba2;  }
.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: #005ba2;  }
/*手机版*/
@media (max-width: 992px){
    #header .menubutton, #mobtool, .u-layer-ath{  display: block;  }
    .onlineservice ul li{  width: 30px!important;  height: 31px!important;  }
    .onlineservice ul li i{  width: 30px!important;  line-height: 30px!important;  font-size: 14px!important;  }
    .onlineservice ul li i.fa-mobile{  font-size: 20px!important;  }
    .onlineservice ul li span{  display: none;  }
    .onlineservice ul li.morelist .list a{  line-height: 30px!important;  }
    .popup-wechat img{  width: 200px;  }
    .mfp-zoom-out-cur, .mfp-wrap{  width: 100% !important;  height: 100% !important;  overflow: hidden;  }
    .mfp-wrap .mfp-arrow-left{  margin-left: -47%;  }
    .mfp-wrap .mfp-arrow-right{  margin-right: -47%;  }
    .pcweb{  display: none;  }
    .mobileweb{  display: block;  }
    /*index*/
    #header .headerbj .headnav{
        display: none;
    }
    #header .headerbj .headlogo{
        height: 50px;
        padding: 10px 0;
    }
    #mcbanner{
        padding-top: 50px;
    }
    #mcbanner .indexbanner .swiper-button-prev,
    #mcbanner .indexbanner .swiper-button-next{
        display: none;
    }
    #mcbanner .indexbanner .swiper-pagination .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    .inentrance{
        top: -30px;
    }
    .inentrance a{
        width: 50%;
    }
    .inabout{
        padding: 0 0 50px;
    }
    .inabout .inaboutfl{
        width: 100%;
    }
    .inabout .inaboutfr{
        width: 100%;
    }
    .inabout .inaboutfr .inhotline{
        background: 0;
        padding: 50px 0 25px;
    }
    .inabout .inaboutfr .inhotline img{
        width: 50px;
        margin: 5px 20px 0 10px;
    }
    .inabout .inaboutfr .inhotline .inhotlinename1{
        font-size: 25px;
    }
    .inabout .inaboutfr .inhotline .inhotlinename2{
        font-size: 30px;
    }
    .inabout .inaboutfr .inaboutbj{
        padding: 30px 10px 0;
    }
    .inservice{
        padding: 50px 0;
    }
    .inservice .name1,
    .incase .incasename1{
        font-size: 40px;
    }
    .inservice .name2,
    .incase .incasename2{
        font-size: 20px;
        top: -15px;
    }
    .inservice .mobileweb img{
        float: left;
        width: 30%;
        margin: 5% 5% 0 0;
    }
    .inservice .mobileweb img:nth-child(3n){
        margin-right: 0;
    }
    .incolumn .incolumnfr{
        display: none;
    }
    .incolumn .incolumnlist .swiper-container .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    .incase .incaselist{
        padding: 0 10%;
    }
    .incase .incaselist .swiper-button-prev,
    .incase .incaselist .swiper-button-next{
        display: none;
    }
    .incase .incaselist a .incasename{
        display: none;
    }
    .innews{
        padding: 50px 0;
    }
    .innews .innewsfr{
        display: none;
    }
    .innews ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    #footer .footlogo .footlogofl,
    #footer .footlogo .footlogofr{
        display: none;
    }
    #footer .footcon{
        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;
    }
    #footer .foottail .footother{
        display: none;
    }
    .about{
        padding: 50px 0;
    }
    .about .aboutwork li{
        width: 100%;
    }
    .about .aboutgszs li{
        width: 100%;
        margin: 30px 0 0;
    }
    .newsnav{
        display: none;
    }
    .news .newslist{
        width: 100%;
        padding-top: 30px;
    }
    .news .newsbar{
        display: none;
    }
    .shownews .detailpage .more2{
        display: none;
    }
    .product .container{
        padding: 0;
    }
    .product .pronav{
        display: none;
    }
    .product .prolist{
        width: 100%;
        padding: 0;
    }
    .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: #005ba2;
    }
    .showproduct .proone .proonefr{
        padding-top: 30px;
    }
    .showproduct .proone .proonefr .proonetitle,
    .showproduct .proone .proonefr .proonename{
        padding-left: 5px;
    }
    .showproduct .proone .proonefr .prooneshare{
        width: 100%;
        padding-top: 20px;
    }
    .showproduct .proone .proonefr .prooneshare .pro2wm:nth-child(4){
        display: none;
    }
    .showproduct .protwo .page_left a .page1,
    .showproduct .protwo .page_left a .page3,
    .showproduct .protwo .page_right a .page1,
    .showproduct .protwo .page_right a .page3{
        display: none;
    }
    #message #center{  width: 90%!important;  margin-top: 15%;  }
    #message #center #feedback{  padding: 20px 0 20px 20px;  margin-bottom: 15%;  }
    #message #center #feedback .pro{  width: calc(100% - 10%);  }
    #message #center #feedback dl{  width: 100%;  padding-right: 10%;  }
    .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;
    }
    .catalog iframe{
        height: 400px;
    }
    .mcimg{
        padding: 0;
    }
    .mcimg ul li{
        width: 100%;
        margin: 30px 0 0;
    }
    .contactmap{
        height: 200px;
    }
    .contact{
        padding-top: 0;
    }
    .contact .contactname{
        width: 100%;
    }
    .contact .contactadd{
        width: 100%;
    }
    .contact .contactimg{
        width: 100%;
        padding-top: 30px;
    }
    #feedback.contactfeedback{
        padding: 50px 0;
    }
    #feedback.contactfeedback dl{
        width: 100%;
        padding-bottom: 10px;
    }
  .product .prolist ul li a .imgurl{
    height: unset;
  }
}