@charset "utf-8";

/*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,button,input,select,textarea{ font: 14px/1 '微软雅黑'; }
h1,h2,h3,h4,h5,h6{ font-size: 100%; font-weight: normal; }
address,cite,dfn,em,var{ font-style: normal; }
code,kbd,pre,samp,tt{ font-family: '微软雅黑'; }
small{ font-size: 14px; }
/* 重置列表元素 */
ul,ol,li,dl,dt,dd{ list-style: none; }
ul:after{ content: ''; clear: both; display: block; }
/* 重置文本格式元素 */
a{ color: #383838; text-decoration: none; transition-duration: .3s; }
a:hover{ color: #0393d9; text-decoration: none; transition-duration: .3s; }
abbr[title],acronym[title]{ border-bottom: 1px dotted; cursor: help; }
q:before,q:after{ content: ''; }
sup{ vertical-align: super; }
sub{ vertical-align: sub; }
/* 重置表单元素 */
legend{ color: #000; }
fieldset,img{ border: none; display: block; }
input,select,textarea{ font-size: 100%; }
button{ cursor: pointer; }
/* 重置表格元素 */
table{border-collapse:collapse;border-spacing:0;margin:10px 0;display:table;width:100%!important;}
table td,table th{padding:10px 5%;border:1px solid #e0e0e0;color:#393939;vertical-align:middle;width:1%!important;}
/* 重置 hr */
hr{border:none;height:1px;}
/* 清除浮动 */
.cl,.clear{display:block;float:none;clear:both;overflow:hidden;visibility:hidden;width:0;height:0;background:none;border:0;font-size:0;}
/*end Reset css*/

/*web*/
html,body{width: 100%;height: 100%;font-family: '微软雅黑';font-size: 14px;background: #ffffff;}
.fl{float: left;}
.fr{float: right;}
em{color: #0393d9;}
.mobileweb{display: none;}
.wow{visibility: visible!important;}
.content:after{content: '';clear: both;display: block;}
.content img{max-width: 100%;display: inline-block;}
/*end web*/

/*分页*/
.mc_pager{font-family:'Arial';text-align:center;padding:50px 0;}
.mc_pager ul{font-size: 0;}
.mc_pager ul li{background:#7d7d7d;color:#fff;font-size:14px;width:30px;height:30px;line-height:30px;margin:3px;display:inline-block;}
.mc_pager ul li.active{background:#0393d9;}
.mc_pager ul li a{color:#fff;display:block;}
.mc_pager ul li .current{background:#0393d9;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{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:.3s;}
.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:.3s;}
.pro2wm:hover:before,.pro2wm:hover:after{opacity:1;}
.pro2wm .wxewm{opacity:0;width:0;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:.3s;}
.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 0.7s ease;
}
a:hover .grow {
    transform: scale(1.08);
}
/* float-shadow */
.float-shadow {
    display: block;
    position: relative;
    transition-property: transform;
    transition-duration: 0.35s;
}
.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: 0.35s;
}
.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%;
    background: #fff;
    box-shadow: 0 0 10px rgba(0, 0, 0, .1);
    position: fixed;
    z-index: 10000;
    top: 0;
}
#header .logo{
    height: 100px;
    background: #0266c3;
    padding: 20px 3.5%;
}
#header .logo img{
    height: 100%;
}
#header .headline{
    margin: 40px 0 0 40px;
    cursor: pointer;
}
#header .headline i{
    display: block;
    width: 30px;
    height: 3px;
    background: #3a5ed6;
    margin-top: 8px;
    position: relative;
    transition-duration: .5s;
}
#header .headline i:nth-child(1){
    margin: 0;
}
#header .headline i:before{
    content: '';
    width: 3px;
    height: 3px;
    background: #3a5ed6;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: -6px;
}
#header .headline.headlinecss i:nth-child(1){
    transform: rotate(45deg);
    top: 11px;
}
#header .headline.headlinecss i:nth-child(2){
    opacity: 0;
    transition-duration: 1s;
}
#header .headline.headlinecss i:nth-child(3){
    transform: rotate(-45deg);
    top: -11px;
}
#header .headline.headlinecss i:before{
    display: none;
}
#header .head2wm{
    width: 50px;
    margin: 25px 10% 0 0;
}
#header .head2wm img{
    width: 100%;
}
#header .headnav{
    padding: 25px 50px 0 0;
}
/*banner*/
#mcbanner{
    padding-top: 45px;
    overflow: hidden;
}
/*indexbanner*/
.indexbanner .swiper-pagination .swiper-pagination-bullet{
    width: 12px;
    height: 12px;
    margin: 0 8px 20px;
    background: rgba(0, 0, 0, .5);
    opacity: 1;
}
.indexbanner .swiper-pagination .swiper-pagination-bullet-active{
    background: #0393d9;
}
.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 20px;
    color: #bfbfbf;
    border: 1px solid #bfbfbf;
    border-radius: 5px;
    overflow: hidden;
    position: relative;
    transition-duration: 1s;
}
.more:hover,
a:hover .more{
    color: #fff !important;
    border: 1px solid #0393d9;
}
.more:before{
    content: '';
    width: 120%;
    height: 100%;
    background: #0393d9;
    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;
}

.inabout{
    background: #fafafa url(../img/inaboutbj.jpg) left bottom no-repeat;
    padding: 50px 0;
    overflow: hidden;
}
.inabout .inaboutfl{
    width: 35%;
    padding-top: 5%;
}
.inabout .inaboutfl .namemark{
    color: #1d2830;
    font-size: 70px;
    font-family: cursive;
    font-weight: bold;
    position: relative;
    padding-top: 50px;
}
.inabout .inaboutfl .namemark:before{
    content: '';
    width: 120px;
    height: 2px;
    background: #2a333b;
    position: absolute;
    top: 0;
    left: 0;
}
.inabout .inaboutfl .name{
    color: #1d2830;
    font-size: 46px;
    letter-spacing: 3px;
    margin: 10px 0 30px;
}
.inabout .inaboutfl .description{
    color: #555555;
    font-size: 16px;
    line-height: 36px;
    margin-bottom: 30px;
}
.inabout .inaboutfl a{
    display: inline-block;
}
.inabout .inaboutimg{
    width: 55%;
}
.inabout .inaboutimg img{
    width: 100%;
}
.inglzj{
    text-align: center;
    padding-bottom: 80px;
    overflow: hidden;
}
.inglzj .namemark{
    color: #7d7d7d;
    font-size: 44px;
    font-weight: 100;
    margin-top: 50px;
}
.inglzj .keywords{
    color: rgba(125, 125, 125, .5);
    font-size: 15px;
    letter-spacing: 2px;
    margin: 20px 0 30px;
}
.inglzj .inglzjbj{
    background: url(../img/inglzjbj.jpg) center no-repeat;
    background-size: cover;
    padding-top: 100px;
}
.inglzj .inglzjbj img{
    display: block;
    margin: auto;
}
.inglzj .inglzjbj ul{
    background: #ffffff;
    box-shadow: 5px 5px 10px rgba(0, 0, 0, .1);
    position: relative;
    top: 70px;
}
.inglzj .inglzjbj ul li{
    float: left;
    width: 25%;
    padding: 30px 0;
}
.inglzj .inglzjbj ul li a{
    display: block;
    border-right: 1px solid #eef1f4;
}
.inglzj .inglzjbj ul li a .img1{
    display: none;
}
.inglzj .inglzjbj ul li a:hover .img1{
    display: block;
}
.inglzj .inglzjbj ul li a .img2{
    display: block;
}
.inglzj .inglzjbj ul li a:hover .img2{
    display: none;
}
.inglzj .inglzjbj ul li a p{
    color: #0393d9;
    font-size: 18px;
    letter-spacing: 2px;
    padding: 10px 0;
}
.inglzj .inglzjbj ul li a:hover p{
    color: #323232;
}
.inkytd{
    padding: 50px 0 25px;
    overflow: hidden;
}
.inkytd .namemark{
    color: #7d7d7d;
    font-size: 44px;
    font-weight: 100;
    text-align: center;
}
.inkytd .keywords{
    color: rgba(125, 125, 125, .5);
    font-size: 15px;
    letter-spacing: 2px;
    margin: 20px 0 30px;
    text-align: center;
}
.inkytd .inkytdlist{
    width: 278px;
}
.inkytd .inkytdlist li{
    margin-top: 10px;
    cursor: pointer;
    position: relative;
}
.inkytd .inkytdlist li:nth-child(1){
    margin-top: 0;
}
.inkytd .inkytdlist li:before{
    content: '';
    width: 100%;
    height: 100%;
    border: 3px solid transparent;
    position: absolute;
    top: 0;
    left: 0;
    z-index: 1;
}
.inkytd .inkytdlist li:hover:before,
.inkytd .inkytdlist li.hover:before{
    border: 3px solid #0393d9;
}
.inkytd .inkytdlist li img{
    width: 100%;
}
.inkytd .inkytdtit{
    display: none;
    width: calc(62% - 278px);
    min-height: 446px;
    background: #f6f6f6;
    padding: 0 3%;
}
.inkytd .inkytdtit#inkytdtit1{
    display: block;
}
.inkytd .inkytdtit .name1{
    color: #292929;
    font-size: 28px;
    margin: 15% 0 8%;
}
.inkytd .inkytdtit p{
    color: #383838;
    font-size: 15px;
    line-height: 35px;
}
.inkytd .inkytdimg{
    width: 38%;
    padding: 4px;
    background: #0393d9;
    text-align: center;
}
.inkytd .inkytdimg .title1{
    color: #ffffff;
    font-size: 25px;
    line-height: 40px;
}
.inryzz{
    padding-top: 25px;
    overflow: hidden;
}
.inryzz .namemark{
    color: #7d7d7d;
    font-size: 44px;
    font-weight: 100;
    text-align: center;
}
.inryzz .keywords{
    color: rgba(125, 125, 125, .5);
    font-size: 15px;
    letter-spacing: 2px;
    margin: 20px 0 40px;
    text-align: center;
}
.inryzz .inryzzbj{
    background: url(../img/inryzzbj.jpg) center no-repeat;
    background-size: cover;
    padding: 40px 0;
}
.inryzz .inryzzbj li{
    float: left;
    width: 20%;
    padding: 40px 1%;
}
.inryzz .inryzzbj li a{
    display: block;
    position: relative;
    top: 0;
}
.inryzz .inryzzbj li a:hover{
    top: -10px;
}
.inryzz .inryzzbj li img{
    width: 100%;
}
.inconus{
    padding: 50px 0;
    overflow: hidden;
}
.inconus .namemark{
    color: #7d7d7d;
    font-size: 44px;
    font-weight: 100;
    text-align: center;
}
.inconus .keywords{
    color: rgba(125, 125, 125, .5);
    font-size: 15px;
    letter-spacing: 2px;
    margin: 20px 0 40px;
    text-align: center;
}
.inconus ul li{
    float: left;
    width: 30%;
    margin-left: 5%;
}
.inconus ul li:nth-child(1){
    margin-left: 0;
}
.inconus ul li a{
    display: block;
    background: #0393d9;
    border-radius: 10px;
    text-align: center;
    padding-bottom: 20px;
}
.inconus ul li a .img{
    border-radius: 10px 10px 0 0;
    overflow: hidden;
}
.inconus ul li a .img img{
    width: 100%;
}
.inconus ul li a .mane1{
    color: #ffffff;
    font-size: 24px;
    font-weight: 100;
    border-top: 3px solid #fcfcfc;
    padding: 20px 0 5px;
}
.inconus ul li a .mane2{
    color: rgba(255, 255, 255, .5);
    font-size: 12px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.inconus ul li a .mane3{
    width: 138px;
    height: 38px;
    line-height: 34px;
    text-align: center;
    color: #ffffff;
    font-size: 13px;
    font-weight: 100;
    border: 2px solid #a4d8f1;
    border-radius: 50px;
    margin: 10px auto 0;
}
/*index*/

/*foot*/
#footer{
    position: relative;
    z-index: 2;
}
#footer .footcon{
    padding: 50px 0 30px;
    background: #fcfcfc;
    color: #383838;
}
#footer .footcon .footcon1{
    width: 52%;
    border-right: 1px solid #ebebeb;
}
#footer .footcon .footcon1 ul li{
    float: left;
    width: 20%;
}
#footer .footcon .footcon1 ul li .namemark{
    color: #0082c1;
    font-size: 15px;
    font-weight: bold;
    margin-bottom: 15px;
}
#footer .footcon .footcon1 ul li dl{
    width: 100%;
}
#footer .footcon .footcon1 ul li dl a{
    display: inline-block;
    color: #383838;
    font-size: 12px;
    line-height: 30px;
    position: relative;
}
#footer .footcon .footcon1 ul li dl a:hover{
    color: #0393d9;
}
#footer .footcon .footcon1 ul li dl a:before{
    content: '';
    width: 10px;
    height: 1px;
    background: #0393d9;
    position: absolute;
    top: 15px;
    left: 0;
    opacity: 0;
    transition-duration: .3s;
}
#footer .footcon .footcon1 ul li dl a:hover:before{
    opacity: 1;
}
#footer .footcon .footcon1 ul li dl a p{
    position: relative;
    left: 0;
    transition-duration: .3s;
}
#footer .footcon .footcon1 ul li dl a:hover p{
    left: 15px;
}
#footer .footcon .footcon2{
    width: 34%;
    padding: 0 3%;
}
#footer .footcon .footcon2 .namemark i{
    color: #0393d9;
    font-size: 20px;
    padding-right: 8px;
    position: relative;
    top: 4px;
}
#footer .footcon .footcon2 .footman{
    display: block;
    color: #0393d9;
    font-size: 32px;
    font-weight: bold;
    font-family: 'Arial';
    padding: 15px 0 10px;
}
#footer .footcon .footcon2 p{
    line-height: 32px;
}
#footer .footcon .footcon2 .footconfx{
    padding-top: 10px;
}
#footer .footcon .footcon2 .footconfx a{
    float: left;
    width: 25px;
    height: 25px;
    line-height: 25px;
    text-align: center;
    background: #0393d9;
    border-radius: 50%;
    color: #fff;
    font-size: 12px;
    margin-right: 15px;
}
#footer .footcon .foot2wm{
    width: 14%;
}
#footer .footcon .foot2wm img{
    width: 100%;
}
#footer .footcon .foot2wm p{
    text-align: center;
    padding-top: 20px;
}
#footer .foottail{
    color: #ffffff;
    line-height: 20px;
    padding: 20px 0;
    background: #0266c3;
}
#footer .foottail a{
    color: #ffffff;
}
#footer .foottail .tailimg{
    position: relative;
    left: 0;
}
#footer .foottail .tailimg:hover{
    left: -5px;
}
/*foot*/

/*product*/
.indexnav1{
    width: 100%;
    background: rgba(255, 255, 255, .95);
    border-bottom: 1px solid #f0f3fa;
    overflow: hidden;
    position: absolute;
    margin-top: -100px;
}
.indexnav1 ul li{
    float: left;
    width: 25%;
}
.indexnav1 ul li a{
    display: block;
    padding: 10px 0;
    text-align: center;
}
.indexnav1 ul li a:hover,
.indexnav1 ul li a.hover{
    background: #0393d9;
}
.indexnav1 ul li a img{
    margin: auto;
}
.indexnav1 ul li a .indeximg{
    display: none;
}
.indexnav1 ul li a:hover .columnimg,
.indexnav1 ul li a.hover .columnimg{
    display: none;
}
.indexnav1 ul li a:hover .indeximg,
.indexnav1 ul li a.hover .indeximg{
    display: block;
}
.indexnav1 ul li a .name{
    color: #0393d9;
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.indexnav1 ul li a:hover .name,
.indexnav1 ul li a.hover .name{
    color: #fff;
}
.product{
    overflow: hidden;
}
.product .keywords{
    color: #081842;
    font-size: 36px;
    font-weight: 100;
    letter-spacing: 4px;
    text-align: center;
    margin-top: 40px;
}
.product .namemark{
    color: #909090;
    font-size: 16px;
    font-weight: 100;
    letter-spacing: 8px;
    text-align: center;
    margin: 10px 0;
}
.product ul li{
    float: left;
    width: 33.33%;
    padding-top: 50px;
}
.product ul li a{
    display: block;
    text-align: center;
}
.product ul li a .imgurl{
    overflow: hidden;
    border-left: 1px solid #efefef;
    border-right: 1px solid transparent;
}
.product ul li:nth-child(3n) a .imgurl{
    border-right: 1px solid #efefef;
}
.product ul li a .imgurl img{
    width: 100%;
}
.product ul li a .protitle{
    padding: 20px 0;
    margin-top: 20px;
    transition-duration: .3s;
}
.product ul li a:hover .protitle{
    background: #0393d9;
}
.product ul li a .protitle .title,
.product ul li a .protitle .name{
    color: #1c1c1c;
    font-size: 16px;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.product ul li a:hover .protitle .title,
.product ul li a:hover .protitle .name{
    color: #fff;
}
/*showproduct*/
.showproduct{
    padding: 50px 0;
    overflow: hidden;
}
/*<!--第一部分-->*/
.showproduct .proone{
    padding-bottom: 40px;
    position: relative;
}
.showproduct .proone .navinfo{
    font: 50px/1 '宋体';
    position: absolute;
    top: 40%;
    left: 5%;
}
.showproduct .proone .nextinfo{
    left: auto;
    right: 5%;
}
.showproduct .proone .proonetitle2{
    color: #1c1c1c;
    font-size: 30px;
}
.showproduct .proone .proonetitle1{
    color: #464646;
    font-size: 18px;
    margin: 20px 0 10px;
}
.showproduct .proone .proimgurl{
    width: 500px;
    margin: auto;
}
.showproduct .proone .prodisplayimg{
    width: 400px;
    margin: 20px auto 0;
    position: relative;
}
/*<!--第二部分-->*/
.showproduct .protwo .protwolist li{
    float: left;
    width: 50%;
    line-height: 40px;
    text-align: center;
    color: #ffffff;
    font-size: 18px;
    background: #0393d9;
    cursor: pointer;
}
.showproduct .protwo .protwolist li#protwolist2{
    background: #0089cc;
}
.showproduct .protwo .content{
    color: #393939;
    line-height: 2;
    margin-top: 30px;
}
.showproduct .protwo .content#content2{
    display: none;
}
/*product*/

/*news*/
.news{
    overflow: hidden;
}
.news .keywords{
    color: #292929;
    font-size: 38px;
    text-align: center;
    margin-top: 40px;
}
.news .namemark{
    color: #9e9e9e;
    text-align: center;
    padding: 15px 0 20px;
    position: relative;
}
.news .namemark:before{
    content: '';
    width: 40px;
    height: 4px;
    background: #616161;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -20px;
}
.news ul li{
    float: left;
    width: 31.33%;
    margin: 3% 3% 0 0;
}
.news ul li:nth-child(3n){
    margin-right: 0;
}
.news ul li a{
    display: block;
}
.news ul li a .imgurl{
    overflow: hidden;
}
.news ul li a .imgurl img{
    width: 100%;
}
.news ul li a .title{
    color: #292929;
    font-size: 17px;
    border-bottom: 1px solid #eeeff3;
    position: relative;
    line-height: 60px;
    height: 60px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.news ul li a:hover .title{
    color: #0393d9;
}
.news ul li a .title:before{
    content: '';
    width: 12px;
    height: 1px;
    background: #333333;
    position: absolute;
    left: 0;
    bottom: 0;
    transition-duration: 1s;
}
.news ul li a:hover .title:before{
    width: 100%;
    background: #0393d9;
}
.news ul li a .description{
    color: #808080;
    font-size: 14px;
    margin-top: 20px;
    line-height: 24px;
    height: 72px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.news ul li a:hover .description{
    color: #0393d9;
}
/*shownews*/
.shownews{
    padding-top: 50px;
    overflow: hidden;
}
.shownews .title{
    color: #292929;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}
.shownews .updatetime{
    color: #808080;
    font-size: 14px;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #ececec;
}
.shownews .content{
    color: #808080;
    font-size: 14px;
    line-height: 2;
    padding: 20px 0;
}
.shownews .detailpage{
    color: #808080;
    padding: 30px 0 50px;
    border-top: 1px solid #ececec;
}
.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: #808080;
    position: relative;
    left: 0;
}
.shownews .detailpage p a:hover{
    color: #0393d9;
    text-decoration: underline;
    left: 10px;
}
.shownews .detailpage .more{
    float: right;
    padding: 4px 30px;
}
/*news*/

/*img*/
.indexnav2{
    width: 240px;
}
.indexnav2 .keywords{
    color: #323232;
    font-size: 30px;
    font-weight: 100;
    letter-spacing: 4px;
    border-left: 4px solid #0393d9;
    padding-left: 15px;
    margin-left: 10px;
}
.indexnav2 .namemark{
    color: rgba(50, 50, 50, .35);
    font-size: 14px;
    letter-spacing: 12px;
    padding: 10px 0 20px 30px;
}
.indexnav2 ul{
    border-top: 1px solid #efeeed;
}
.indexnav2 ul li{
    border-bottom: 1px solid #efeeed;
}
.indexnav2 ul li a{
    display: block;
    color: #868686;
    font-size: 15px;
    line-height: 50px;
    background: url(../img/pronavicon1.jpg) 25px center no-repeat;
    padding-left: 60px;
}
.indexnav2 ul li a:hover,
.indexnav2 ul li a.hover{
    color: #0393d9;
    background: url(../img/pronavicon2.jpg) 25px center no-repeat;
}
.mcimg{
    padding-top: 50px;
    overflow: hidden;
}
.mcimg .mcimgfr{
    width: calc(100% - 280px);
    padding-top: 2%;
}
.mcimg .mcimgfr ul li{
    float: left;
    width: 32.66%;
    margin: 1% 1% 0 0;
}
.mcimg .mcimgfr ul li:nth-child(3n){
    margin-right: 0;
}
.mcimg .mcimgfr ul li a{
    display: block;
    text-align: center;
}
.mcimg .mcimgfr ul li a .imgurl{
    overflow: hidden;
}
.mcimg .mcimgfr ul li a .imgurl img{
    width: 100%;
}
.mcimg .mcimgfr ul li a .protitle{
    padding: 20px 0;
    margin-top: 3px;
    transition-duration: .3s;
}
.mcimg .mcimgfr ul li a:hover .protitle{
    background: #0393d9;
}
.mcimg .mcimgfr ul li a .protitle .title,
.mcimg .mcimgfr ul li a .protitle .para{
    color: #909090;
    line-height: 30px;
    height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.mcimg .mcimgfr ul li a:hover .protitle .title,
.mcimg .mcimgfr ul li a:hover .protitle .para{
    color: #fff;
}
/*showimg*/
.showimg{
    width: calc(100% - 280px);
    padding-top: 2%;
}
.showimg .title{
    color: #292929;
    font-size: 20px;
    line-height: 30px;
    text-align: center;
}
.showimg .updatetime{
    color: #808080;
    font-size: 14px;
    text-align: center;
    padding: 20px 0;
    border-bottom: 1px solid #ececec;
}
.showimg ul{
    padding-top: 20px;
}
.showimg ul li{
    padding-bottom: 20px;
}
.showimg ul li img{
    max-width: 100%;
}
.showimg .detailpage{
    color: #808080;
    padding: 30px 0 50px;
    border-top: 1px solid #ececec;
}
.showimg .detailpage p{
    height: 30px;
    line-height: 30px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 1;
    -webkit-box-orient: vertical;
}
.showimg .detailpage p a{
    color: #808080;
    position: relative;
    left: 0;
}
.showimg .detailpage p a:hover{
    color: #0393d9;
    text-decoration: underline;
    left: 10px;
}
/*img*/

/*about*/
.about{
    padding: 50px 0;
    overflow: hidden;
}
/*gsjj*/
.gsjj h1{
    color: #0393d9;
    font-size: 36px;
    font-weight: 100;
    padding-bottom: 50px;
}
.gsjj p{
    color: #4f4f4f;
    font-size: 16px;
    line-height: 42px;
}
.gsjj p .gsjjimg{
    float: left;
    padding-right: 50px;
}
.gsjj ul{
    padding: 50px 0;
}
.gsjj ul li{
    float: left;
    width: 22%;
    text-align: center;
    border: 1px solid #ededed;
    border-radius: 10px;
    margin-right: 4%;
    padding: 30px 0;
    transition-duration: .5s;
}
.gsjj ul li:hover{
    border: 1px solid #0393d9;
}
.gsjj ul li:nth-child(1){
    background: url(../img/aboutlist1.jpg) center no-repeat;
    background-size: cover;
}
.gsjj ul li:nth-child(2){
    background: url(../img/aboutlist2.jpg) center no-repeat;
    background-size: cover;
}
.gsjj ul li:nth-child(3){
    background: url(../img/aboutlist3.jpg) center no-repeat;
    background-size: cover;
}
.gsjj ul li:nth-child(4){
    background: url(../img/aboutlist4.jpg) center no-repeat;
    background-size: cover;
    margin-right: 0;
}
.gsjj ul li p{
    color: #5c5c5c;
}
.gsjj ul li p:nth-child(1){
    color: #0393d9;
}
.gsjj .aboutbj{
    background: url(../img/aboutbj.jpg) center no-repeat;
    background-size: cover;
    text-align: center;
    padding: 100px 0;
}
.gsjj .aboutbj h2{
    color: #ffffff;
    font-size: 38px;
    padding-bottom: 50px;
}
.gsjj .aboutbj p{
    color: #ffffff;
    font-size: 20px;
    line-height: 50px;
}
.gsjj .aboutbj span{
    display: block;
    color: #ffffff;
    font-size: 30px;
    font-family: '楷体';
    line-height: 80px;
}
.gsjj h3{
    color: #313131;
    font-size: 35px;
    text-align: center;
    padding-top: 50px;
}
.gsjj h4{
    width: 200px;
    color: #ffffff;
    font-size: 12px;
    letter-spacing: 12px;
    background: #0393d9;
    padding: 1px 0 2px 8px;
    margin: 10px auto;
}
.gsjj ol li{
    float: left;
    width: 20%;
    text-align: center;
    padding: 20px 0 0;
}
/*ryzz*/
.ryzz{
    padding-top: 50px;
}
.ryzz h1{
    color: #0393d9;
    font-size: 35px;
    font-weight: 100;
    letter-spacing: 5px;
    text-align: center;
    padding-bottom: 15px;
    position: relative;
}
.ryzz h1:before{
    content: '';
    width: 100px;
    height: 3px;
    background: #0393d9;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -50px;
}
.ryzz ul{
    padding: 20px 0 50px;
}
.ryzz ul li{
    float: left;
    width: 15.8%;
    margin: 1% 1% 0 0;
}
.ryzz ul li:nth-child(6n){
    margin-right: 0;
}
.ryzz ul li a{
    display: block;
    text-align: center;
    line-height: 40px;
    position: relative;
    top: 0;
}
.ryzz ul li a:hover{
    top: -5px;
}
.ryzz ul li a img{
    width: 100%;
}
/*yftt*/
.yftt li{
    border-bottom: 1px dashed #ececec;
    margin-bottom: 30px;
    padding-bottom: 30px;
}
.yftt li:after{
    content: '';
    clear: both;
    display: block;
}
.yftt li .img{
    float: left;
    padding: 0 50px 20px 0;
}
.yftt li .fl{
    width: calc(100% - 320px);
}
.yftt li .name1{
    color: #0393d9;
    font-size: 30px;
}
.yftt li p{
    color: #666;
    font-size: 15px;
    line-height: 2;
    padding-top: 10px;
}
/*gszs*/
.gszs li{
    float: left;
    width: 23.5%;
    margin: 2% 2% 0 0;
}
.gszs li:nth-child(4n){
    margin-right: 0;
}
.gszs li a{
    display: block;
    text-align: center;
    line-height: 40px;
    position: relative;
    top: 0;
}
.gszs li a:hover{
    top: -5px;
}
.gszs li a img{
    width: 100%;
}
/*about*/

/*contact*/
.contact{
    padding: 50px 0;
    overflow: hidden;
}
.contact .namemark{
    color: #292929;
    font-size: 38px;
    font-weight: 100;
    text-align: center;
}
.contact .keywords{
    color: #9e9e9e;
    text-align: center;
    position: relative;
    padding: 15px 0 20px;
    margin-bottom: 40px;
}
.contact .keywords:before{
    content: '';
    width: 40px;
    height: 4px;
    background: #616161;
    position: absolute;
    left: 50%;
    bottom: 0;
    margin-left: -20px;
}
.contact .contactbj{
    border: 1px solid #ececec;
    border-radius: 10px;
    overflow: hidden;
}
.contact .contactl{
    width: 480px;
    padding: 50px 30px 30px;
    background: #2a9cce;
    color: #ffffff;
}
.contact .contactl > p{
    color: #ffffff;
    line-height: 30px;
}
.contact .contactl > p > a{
    color: #ffffff;
}
.contact .contactl .conewm{
    display: inline-block;
    width: 120px;
    text-align: center;
    margin-right: 20px;
}
.contact .contactl .conewm img{
    width: 100%;
}
.contact .contactl .conewm p{
    padding: 10px 0;
}
.contact .contactr{
    width: calc(100% - 480px);
    padding: 4% 0 0 3%;
}
/*contact*/

/*join*/
.join{
    padding: 50px 0;
    overflow: hidden;
}
.join .joinfr{
    width: calc(100% - 280px);
    padding-top: 2%;
}
.join .joinfr .content{
    color: #110908;
    font-size: 15px;
    line-height: 40px;
}
/*joinylfx*/
.joinylfx h2{
    color: #666;
    font-size: 20px;
    padding-bottom: 10px;
}
.joinylfx ul li{
    padding: 30px 0 40px;
    border-bottom: 1px dashed #ececec;
}
.joinylfx ul li p:nth-child(1){
    float: left;
    padding-right: 20px;
}
.joinylfx ul li p:nth-child(2){
    color: #888;
    font-size: 14px;
    line-height: 28px;
}
/*joinyjmys*/
.joinyjmys .jointit{
    width: 888px;
    height: 37px;
    background: url(../img/joinline.jpg) center no-repeat;
    font-size: 30px;
    line-height: 37px;
    text-align: center;
    margin: 0 auto 30px;
}
.joinyjmys ul li{
    float: left;
    width: 50%;
    text-align: center;
}
/*joinjmfc*/
.joinjmfc li{
    border-bottom: 1px dashed #ececec;
    margin-bottom: 20px;
    padding-bottom: 20px;
}
.joinjmfc li .name{
    color: #666;
    font-size: 18px;
}
.joinjmfc li p{
    color: #888;
    font-size: 14px;
    line-height: 28px;
    padding-top: 20px;
}
/*joinjmzc*/
.joinjmzc .name{
    color: #666;
    font-size: 18px;
}
.joinjmzc p{
    color: #888;
    font-size: 14px;
    line-height: 28px;
    padding-top: 20px;
}
.joinjmzc .name1{
    border-top: 1px dashed #ececec;
    margin-top: 20px;
    padding-top: 20px;
}
.joinjmzc table tr td{
    padding: 10px;
    width: 0!important;
    text-align: center;
}
/*joinjmsq*/
.joinjmsq h1{
    font-size: 30px;
    text-align: center;
}
.joinjmsq h2{
    color: #979797;
    text-align: center;
    margin: 10px 0 20px;
}
.joinjmsq form .fl{
    width: 33.33%;
}
.joinjmsq form .fl input{
    width: 90%;
    height: 40px;
    line-height: 40px;
    margin: 0 10% 20px 0;
    border: 0;
    border-bottom: 1px solid #a9a9a9;
    outline: 0;
}
.joinjmsq form textarea{
    width: 97%;
    height: 120px;
    line-height: 40px;
    margin: 0 3% 20px 0;
    border: 0;
    border-bottom: 1px solid #a9a9a9;
    outline: 0;
}
.joinjmsq form .fcode{
    position: relative;
}
.joinjmsq form .fcode img{
    width: 100px;
    position: absolute;
    top: 10px;
    right: 10%;
}
.joinjmsq form .fsubmit{
    text-align: center;
}
.joinjmsq form .fsubmit .submit{
    width: 140px;
    height: 40px;
    line-height: 40px;
    color: #fff;
    background: #595959;
    border: 0;
    outline: 0;
}
/*join*/

/*glzj*/
.glzj{
    padding: 50px 0;
    overflow: hidden;
}
.glzj .indexnav1{
    margin-top: -150px;
}
.glzj .indexnav1 ul li{
    width: 33.33%;
}
/*snkqjc*/
.snkqjc h1{
    color: #2f2f2f;
    font-size: 35px;
    text-align: center;
}
.snkqjc h2{
    color: rgba(134, 134, 134, .7);
    margin: 20px 0 40px;
    text-align: center;
}
.snkqjc .snkqjc1{
    text-align: center;
}
.snkqjc .snkqjc1 p{
    color: #6f6f6f;
    font-size: 16px;
    line-height: 40px;
}
.snkqjc .snkqjc1 .more{
    padding: 4px 50px;
    margin: 30px 0 10px;
}
.snkqjc .snkqjc1 .more:hover p{
    color: #fff;
}
.snkqjc .snkqjc2{
    background: #f9f9f9;
    padding: 50px 0 30px;
    text-align: center;
}
.snkqjc .snkqjc2 ul li{
    float: left;
    width: 24.25%;
    margin-left: 1%;
}
.snkqjc .snkqjc2 ul li:nth-child(1){
    margin-left: 0;
}
.snkqjc .snkqjc2 ul li img{
    width: 100%;
    border: 3px solid #f3f3f3;
}
.snkqjc .snkqjc2 ul li p:nth-child(2){
    color: #868686;
    font-size: 18px;
    margin: 20px 0 10px;
}
.snkqjc .snkqjc2 ul li:hover p:nth-child(2){
    color: #0393d9;
}
.snkqjc .snkqjc2 ul li p:nth-child(3){
    color: #868686;
    font-size: 15px;
    line-height: 2;
    transition-duration: .5s;
}
.snkqjc .snkqjc2 ul li:hover p:nth-child(3){
    color: #fff;
    background: #0393d9;
}
.snkqjc .snkqjc3{
    padding: 50px 0;
}
.snkqjc .snkqjc3 .snkqjc3fl{
    width: 40%;
    border: 3px solid #efefef;
}
.snkqjc .snkqjc3 .snkqjc3fl img{
    width: 100%;
}
.snkqjc .snkqjc3 .snkqjc3fr{
    width: 55%;
}
.snkqjc .snkqjc3 .snkqjc3fr li{
    margin-bottom: 20px;
    padding: 15px 0;
    transition-duration: .5s;
}
.snkqjc .snkqjc3 .snkqjc3fr li:hover{
    background: #0393d9;
}
.snkqjc .snkqjc3 .snkqjc3fr li p{
    color: #868686;
    font-size: 14px;
    line-height: 2;
}
.snkqjc .snkqjc3 .snkqjc3fr li p:nth-child(1){
    float: left;
    width: 80px;
    font-size: 22px;
    line-height: 60px;
    text-align: center;
    border-right: 1px solid #e2e2e2;
    margin-right: 20px;
}
.snkqjc .snkqjc3 .snkqjc3fr li:hover p{
    color: #f4fcff;
}
.snkqjc .snkqjc4{
    background: #f9f9f9;
    padding: 50px 0 30px;
    text-align: center;
}
.snkqjc .snkqjc4 ul li{
    float: left;
    width: 33.33%;
    padding: 0 2%;
}
.snkqjc .snkqjc4 ul li img{
    width: 100%;
    border-radius: 10px;
    position: relative;
    top: 0;
    transition-duration: .5s;
}
.snkqjc .snkqjc4 ul li:hover img{
    top: -4px;
}
.snkqjc .snkqjc4 ul li:hover img{
    box-shadow: 4px 4px 4px rgba(52, 152, 192, .1);
}
.snkqjc .snkqjc4 ul li p:nth-child(2){
    color: #353535;
    font-size: 15px;
    padding: 20px 0;
}
.snkqjc .snkqjc4 ul li:hover p:nth-child(2){
    color: #0393d9;
}
.snkqjc .snkqjc5{
    padding: 50px 0;
}
.snkqjc .snkqjc5 .snkqjc5fl{
    width: 42%;
}
.snkqjc .snkqjc5 .snkqjc5fl img{
    width: 100%;
}
.snkqjc .snkqjc5 .snkqjc5fr{
    width: 52%;
    padding-top: 2%;
}
.snkqjc .snkqjc5 .snkqjc5fr p{
    color: #868686;
    font-size: 15px;
    line-height: 38px;
    padding-top: 10px;
}
.snkqjc .snkqjc5 .snkqjc5fr p strong{
    color: #0393d9;
}
.snkqjc .snkqjc6{
    background: url(../img/snkqjc6.jpg) center no-repeat;
    background-size: cover;
    padding: 80px 0;
}
.snkqjc .snkqjc6 .snkqjc6fl{
    width: 50%;
}
.snkqjc .snkqjc6 .snkqjc6fl p{
    color: #353535;
    font-size: 15px;
    line-height: 2;
    padding-top: 8%;
}
.snkqjc .snkqjc6 .snkqjc6fr{
    width: 44%;
    border: 10px solid #f9f9f9;
}
.snkqjc .snkqjc6 .snkqjc6fr img{
    width: 100%;
}
.snkqjc .snkqjc7{
    padding-top: 50px;
    text-align: center;
}
.snkqjc .snkqjc7 ul li{
    float: left;
    width: 15.8%;
    margin-left: 1%;
}
.snkqjc .snkqjc7 ul li:nth-child(1){
    margin-left: 0;
}
.snkqjc .snkqjc7 ul li p:nth-child(1){
    background: #f6f6f6;
    border-radius: 10px;
    padding: 20% 0;
}
.snkqjc .snkqjc7 ul li p:nth-child(2){
    color: #1f1f1f;
    font-size: 17px;
    padding-top: 20px;
}
/*snkqzl*/
.snkqzl h1{
    color: #2f2f2f;
    font-size: 35px;
    text-align: center;
}
.snkqzl h2{
    color: rgba(134, 134, 134, .7);
    margin: 20px 0 40px;
    text-align: center;
}
.snkqzl .snkqzl1{
    text-align: center;
}
.snkqzl .snkqzl1 p{
    color: #6f6f6f;
    font-size: 16px;
    line-height: 40px;
}
.snkqzl .snkqzl1 .more{
    padding: 4px 50px;
    margin: 30px 0 10px;
}
.snkqzl .snkqzl1 .more:hover p{
    color: #fff;
}
.snkqzl .snkqzl2{
    padding: 50px 0;
    position: relative;
}
.snkqzl .snkqzl2:before{
    content: '';
    width: 100%;
    height: 300px;
    background: #2588d9;
    position: absolute;
    left: 0;
    bottom: 0;
}
.snkqzl .snkqzl2 ul{
    position: relative;
    z-index: 1;
}
.snkqzl .snkqzl2 ul li{
    float: left;
    width: 24.25%;
    margin-left: 1%;
    padding-bottom: 20px;
    transition-duration: .5s;
}
.snkqzl .snkqzl2 ul li:nth-child(1){
    margin-left: 0;
}
.snkqzl .snkqzl2 ul li:hover{
    background: #fff;
}
.snkqzl .snkqzl2 ul li img{
    width: 100%;
    border: 3px solid #f3f3f3;
}
.snkqzl .snkqzl2 ul li p:nth-child(2){
    display: inline-block;
    color: #fff;
    font-size: 18px;
    margin: 20px 20px 10px;
    border-bottom: 2px solid transparent;
    transition-duration: .5s;
}
.snkqzl .snkqzl2 ul li:hover p:nth-child(2){
    color: #333;
    border-bottom: 2px solid #2588d9;
}
.snkqzl .snkqzl2 ul li p:nth-child(3){
    color: #9ed3ff;
    font-size: 15px;
    line-height: 2;
    margin: 0 20px;
    transition-duration: .5s;
}
.snkqzl .snkqzl2 ul li:hover p:nth-child(3){
    color: #888;
}
.snkqzl .snkqzl3{
    padding: 50px 0;
}
.snkqzl .snkqzl4{
    padding: 50px 0;
    background: #f9f9f9;
}
.snkqzl .snkqzl4 .snkqzl4fl{
    width: 42%;
}
.snkqzl .snkqzl4 .snkqzl4fl img{
    width: 100%;
}
.snkqzl .snkqzl4 .snkqzl4fr{
    width: 52%;
}
.snkqzl .snkqzl4 .snkqzl4fr li{
    color: #888;
    font-size: 18px;
    line-height: 2;
    margin: 30px 0;
}
.snkqzl .snkqzl4 .snkqzl4fr li em{
    color: #2588d9;
    font-size: 44px;
    font-style: italic;
}
.snkqzl .snkqzl5{
    padding: 50px 0 30px;
    text-align: center;
}
.snkqzl .snkqzl5 ul li{
    float: left;
    width: 33.33%;
    padding: 0 2%;
}
.snkqzl .snkqzl5 ul li p:nth-child(1){
    padding: 10% 0;
    border: 1px solid #ccc;
    transition-duration: .5s;
}
.snkqzl .snkqzl5 ul li:hover p:nth-child(1){
    box-shadow: 0 0 10px rgba(0, 0, 0, .25);
}
.snkqzl .snkqzl5 ul li img{
    max-width: 100%;
}
.snkqzl .snkqzl5 ul li p:nth-child(2){
    color: #353535;
    font-size: 15px;
    padding: 20px 0;
}
.snkqzl .snkqzl5 ul li:hover p:nth-child(2){
    color: #0393d9;
}
.snkqzl .snkqzl6{
    background: url(../img/snkqzl6bj.png) center no-repeat;
    background-size: cover;
    padding: 50px 0 150px;
    text-align: center;
}
.snkqzl .snkqzl6 ul li{
    float: left;
    width: 20%;
}
.snkqzl .snkqzl7{
    background: #2588d9;
    padding: 0 50px;
    position: relative;
    top: -80px;
}
.snkqzl .snkqzl7:after{
    display: table;
    clear: both;
    content: '';
}
.snkqzl .snkqzl7 .snkqzl7fl{
    width: 48%;
}
.snkqzl .snkqzl7 .snkqzl7fl .name1{
    color: #fff;
    font-size: 30px;
    font-weight: bold;
    margin-top: 50px;
}
.snkqzl .snkqzl7 .snkqzl7fl .name2{
    color: #fff;
    font-size: 16px;
    margin-top: 20px;
}
.snkqzl .snkqzl7 .snkqzl7fl .name3{
    color: #fff;
    font-size: 14px;
    line-height: 24px;
    margin-top: 40px;
}
.snkqzl .snkqzl7 .snkqzl7fr{
    width: 50%;
    text-align: right;
    position: relative;
    top: -50px;
}
/*cnkqzl*/
.cnkqzl h1{
    color: #2f2f2f;
    font-size: 35px;
    text-align: center;
}
.cnkqzl h2{
    color: rgba(134, 134, 134, .7);
    margin: 20px 0 40px;
    text-align: center;
}
.cnkqzl .cnkqzl1{
    text-align: center;
}
.cnkqzl .cnkqzl1 p{
    color: #6f6f6f;
    font-size: 16px;
    line-height: 40px;
}
.cnkqzl .cnkqzl1 .more{
    padding: 4px 50px;
    margin: 30px 0 10px;
}
.cnkqzl .cnkqzl1 .more:hover p{
    color: #fff;
}
.cnkqzl .cnkqzl2{
    text-align: center;
    padding-top: 50px;
    position: relative;
}
.cnkqzl .cnkqzl2:before{
  	display: none;
    content: '';
    width: 100%;
    height: 220px;
    background: #2588d9;
    position: absolute;
    left: 0;
    bottom: 0;
}
.cnkqzl .cnkqzl2 img{
    position: relative;
    z-index: 1;
}
/*glzj*/

/*jjfa*/
.jjfa{
    overflow: hidden;
}
.jjfa h1{
    color: #0266c3;
    font-size: 30px;
    font-weight: 100;
    letter-spacing: 2px;
    position: relative;
}
.jjfa h1:before{
    content: '';
    width: 80%;
    height: 1px;
    background: #e8e8e8;
    position: absolute;
    top: 20px;
    right: 0;
}
.jjfa h2{
    color: #0266c3;
    font-size: 30px;
    font-weight: 100;
    letter-spacing: 2px;
}
.jjfa h3{
    color: #1568b5;
    font-size: 35px;
    font-weight: 100;
    letter-spacing: 2px;
    text-align: center;
}
.jjfa h4{
    color: #303030;
    font-size: 14px;
    line-height: 2;
    text-align: center;
    margin: 20px 0;
}
.jjfa .jjfa5{
    padding: 50px 0 30px;
    text-align: center;
}
.jjfa .jjfa6{
    background: #fafafa;
    padding: 50px 0;
}
.jjfa .jjfa6 .namemark{
    color: #50779b;
    font-size: 22px;
    font-weight: 100;
    letter-spacing: 5px;
    text-align: center;
    margin: 20px 0 40px;
}
.jjfa .jjfa6 .jjfa6fl{
    width: 130px;
}
.jjfa .jjfa6 .jjfa6fl li{
    width: 130px;
    height: 122px;
    background: url(../img/jjfa6bj1.jpg);
    color: #000;
    font-size: 16px;
    line-height: 28px;
    text-align: center;
    margin-bottom: 20px;
    padding: 30px 20px 0 12px;
    cursor: pointer;
}
.jjfa .jjfa6 .jjfa6fl li:hover,
.jjfa .jjfa6 .jjfa6fl li.hover{
    background: url(../img/jjfa6bj2.jpg);
    color: #fff;
}
.jjfa .jjfa6 .jjfa6fr{
    width: calc(100% - 150px);
    border: 1px dashed #0c8e92;
}
.jjfa .jjfa6 .jjfa6fr .jjfa6nr{
    display: none;
}
.jjfa .jjfa6 .jjfa6fr .jjfa6nr#jjfanr1{
    display: block;
}
.jjfa .jjfa6 .jjfa6fr .jjfa6nr > img{
    display: block;
    margin: auto;
}
.jjfa .jjfa7{
    padding: 50px 0;
    text-align: center;
}
.jjfa .jjfa7 img{
    padding: 2% 1% 0;
}
.jjfa .jjfa8{
    background: #f9f9f9;
    padding: 50px 0;
    text-align: center;
}
.jjfa .jjfa9{
    padding: 50px 0;
}
.jjfa .jjfa9 ul{
    padding-top: 50px;
}
.jjfa .jjfa9 ul li{
    float: left;
    width: 30%;
    margin-left: 5%;
}
.jjfa .jjfa9 ul li:nth-child(1){
    margin-left: 0;
}
/*jjfa*/
@media ( max-width: 1600px){
    #header .logo{
        padding: 20px;
    }
    #header .headline, #header .head2wm{
        display: none;
    }
    #header .headnav{
        padding-right: 20px;
    }
    #header .headnav #cssmenu > ul > li > a{
        padding-left: 20px;
    }
    .inkytd .inkytdlist{
        width: 250px;
    }
    .inkytd .inkytdtit{
        width: calc(62% - 250px);
        min-height: 405px;
    }
    .showproduct .proone .proimgurl .cloud-zoom-big{
        left: auto!important;
        right: 0!important;
    }
}
@media ( max-width: 1200px){
    #header .logo{
        height: 80px;
        padding: 20px 10px;
    }
    #header .headnav{
        padding: 15px 0 0;
    }
    #header .headnav #cssmenu > ul > li{
        margin-right: 15px;
    }
    #header .headnav #cssmenu > ul > li > a{
        padding-left: 0;
        background: 0;
    }
    .inabout .inaboutfl{
        padding-top: 0;
    }
    .inkytd .inkytdlist{
        width: 215px;
    }
    .inkytd .inkytdtit{
        width: calc(62% - 215px);
        min-height: 350px;
    }
    .inkytd .inkytdtit p{
        font-size: 14px;
        line-height: 30px;
    }
    .inconus ul li{
        width: 32%;
        margin-left: 2%;
    }
    .inconus ul li a .mane1{
        font-size: 20px;
    }
    .jjfa .jjfa7 img{
        width: 49%;
    }
}
/*手机版*/
#header .menubutton{  display: none;  width: 30px;  height: 30px;  cursor: pointer;  margin: 14px 14px 0 0;  }
#header .menubutton .menuicon{  height: 2px;  margin-bottom: 8px;  background: #0393d9;  }
#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: 999;  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: #4d4d4d;  font-size: 14px;  margin: 30px 0 0;  }
.menumain .menubox .menunav .menuone.home a{  padding-bottom: 20px;  border-bottom: 1px solid rgba(0, 0, 0, .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(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: #0393d9 !important;  }
/*语言*/
.menumain .menubox .lang{  margin-top: 30px;  text-align: center;  }
.menumain .menubox .lang a{  display: inline-block;  width: 94%;  height: 40px;  line-height: 40px;  border: 1px solid rgba(0, 0, 0, .2);  margin: 3%;  border-radius: 5px;  box-sizing: border-box;  }
.menumain .menubox .lang a img{  display: inline-block;  padding-right: 5px;  position: relative;  top: -2px;  }
.menumain .menubox .lang a span{  display: inline-block;  color: #4d4d4d;  font-size: 14px;  position: relative;  top: -1px;  }
/*底部菜单*/
#mobtool{  display: none;  width: 100%;  height: 50px;  background: #0393d9;  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:9999999;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 #0393d9;  overflow: hidden;  }
#sortpro .sortpro_left{  float: left;  width: 65%;  color: #fff;  font-size: 14px;  background: #0393d9;  }
#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: 10000;  -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: #0393d9;  }
.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 #0393d9;  }
.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: #0393d9;  }
/*手机版*/
@media ( max-width: 992px){
    #header .menubutton, #mobtool, .u-layer-ath{  display: block;  }
    .onlineservice{  top: 55%!important;  width: 30px!important;  }
    .onlineservice ul li a{  height: 31px!important;  }
    .onlineservice ul li a span{  display: none;  }
    .onlineservice ul li a i{  width: 30px!important;  height: 30px!important;  line-height: 30px!important;  font-size: 14px!important;  }
    .onlineservice ul li a i.fa-mobile{  font-size: 20px!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 .logo{
        height: 50px;
        padding: 10px;
    }
    #header .headnav{
        display: none;
    }
    #mcbanner{
        padding-top: 50px;
    }
    #mcbanner .indexbanner .swiper-pagination .swiper-pagination-bullet{
        width: 10px;
        height: 10px;
        margin: 0 5px;
    }
    .inabout .inaboutfl{
        width: 100%;
        padding: 0 0 50px;
    }
    .inabout .inaboutfl .namemark{
        font-size: 50px;
        padding-top: 30px;
    }
    .inabout .inaboutfl .name{
        font-size: 30px;
    }
    .inabout .inaboutimg{
        width: 100%;
    }
    .inglzj{
        padding-bottom: 50px;
    }
    .inglzj .namemark,
    .inkytd .namemark,
    .inryzz .namemark,
    .inconus .namemark{
        font-size: 30px;
    }
    .inglzj .keywords,
    .inkytd .keywords,
    .inryzz .keywords,
    .inconus .keywords{
        font-size: 14px;
    }
    .inglzj .inglzjbj{
        padding-top: 50px;
    }
    .inglzj .inglzjbj > img{
        width: 80%;
    }
    .inglzj .inglzjbj ul{
        top: 40px;
    }
    .inglzj .inglzjbj ul li{
        width: 50%;
        padding: 15px 0;
    }
    .inglzj .inglzjbj ul li a p{
        font-size: 14px;
    }
    .inkytd .inkytdlist{
        width: 100%;
    }
    .inkytd .inkytdlist li{
        float: left;
        width: 33.33%;
        margin: 0;
    }
    .inkytd .inkytdtit{
        width: 100%;
        min-height: unset;
        padding: 0 30px 30px;
    }
    .inkytd .inkytdimg{
        width: 100%;
    }
    .inryzz .inryzzbj{
        padding: 10px 0;
    }
    .inryzz .inryzzbj li{
      	padding: 30px 1%;
    }
    .inconus ul li{
        width: 100%;
        margin: 20px 0;
    }
    #footer .footcon{
        display: none;
    }
    #footer .foottail{
        text-align: center;
        padding: 30px 0 80px;
    }
    #footer .foottail a{
        display: block;
    }
    #footer .foottail .footright, #footer .foottail .tailimg{
        width: 100%;
    }
    #footer .foottail .tailimg img{
        margin: 15px auto 0;
    }
    .indexnav1{
        display: none;
    }
    .gsjj h1{
        font-size: 22px;
      	padding-bottom: 30px;
    }
    .gsjj p{
        font-size: 14px;
        line-height: 30px;
    }
  	.gsjj p .gsjjimg{
        float: none;
        padding: 0 0 30px;
  	}
    .gsjj ul li{
        width: 48%;
        margin: 2% 4% 2% 0;
    }
    .gsjj ul li:nth-child(2n){
        margin-right: 0;
    }
    .gsjj .aboutbj{
        padding: 50px 0;
    }
    .gsjj .aboutbj h2{
        font-size: 30px;
        padding-bottom: 30px;
    }
    .gsjj .aboutbj p{
        font-size: 16px;
        line-height: 40px;
    }
    .gsjj .aboutbj span{
        font-size: 18px;
        line-height: 2;
        padding-top: 30px;
    }
    .gsjj h3{
        font-size: 30px;
        padding-bottom: 10px;
    }
    .gsjj ol li{
    	width: 50%;
    }
    .ryzz ul li{
        width: 100%;
        margin: 20px 0 0;
    }
    .about .zsxg{
    	height: 400px!important;
    }
    .yftt li .img{
        float: none;
        padding: 0 0 20px;
    }
    .yftt li .fl{
        width: 100%;
    }
    .gszs li{
        width: 100%;
        margin: 10px 0;
    }
    .product ul li{
        width: 100%;
    }
    .product ul li a .imgurl{
        border: 0;
    }
    .product ul li a .protitle{
        background: #0393d9;
    }
    .product ul li a .protitle .title,
    .product ul li a .protitle .name{
        color: #fff;
    }
    .showproduct .proone .navinfo{
        display: none;
    }
    .showproduct .proone .proimgurl, .showproduct .proone .prodisplayimg{
        display: none;
    }
    .showproduct .proone .mobprodisplayimg .swiper-pagination-bullet-active{
        background: #0393d9;
    }
    .glzj{
        padding-top: 0;
    }
    .glzj .content{
        padding-top: 50px;
    }
    .snkqjc .snkqjc2 ul li{
        width: 100%;
        margin: 0 0 30px;
    }
    .snkqjc .snkqjc3 .snkqjc3fl{
        width: 100%;
    }
    .snkqjc .snkqjc3 .snkqjc3fr{
        width: 100%;
        padding-top: 30px;
    }
    .snkqjc .snkqjc3 .snkqjc3fr li p:nth-child(1){
        line-height: 120px;
    }
    .snkqjc .snkqjc4 ul li{
        width: 100%;
    }
    .snkqjc .snkqjc5 .snkqjc5fl{
        width: 100%;
    }
    .snkqjc .snkqjc5 .snkqjc5fr{
        width: 100%;
        padding-top: 30px;
    }
    .snkqjc .snkqjc6 .snkqjc6fl{
        width: 100%;
        padding-bottom: 50px;
    }
    .snkqjc .snkqjc6 .snkqjc6fr{
        width: 100%;
    }
    .snkqjc .snkqjc7 ul li{
        width: 48%;
        margin: 2% 4% 2% 0;
    }
    .snkqjc .snkqjc7 ul li:nth-child(2n){
        margin-right: 0;
    }
    .snkqzl .snkqzl2:before{
        height: 100%;
    }
    .snkqzl .snkqzl2 ul li{
        width: 48%;
        margin: 2% 4% 2% 0;
    }
    .snkqzl .snkqzl2 ul li:nth-child(2n){
        margin-right: 0;
    }
    .snkqzl .snkqzl4 .snkqzl4fl{
        width: 100%;
    }
    .snkqzl .snkqzl4 .snkqzl4fr{
        width: 100%;
    }
    .snkqzl .snkqzl5 ul li{
        width: 100%;
    }
    .snkqzl .snkqzl6{
        padding: 50px 0;
    }
    .snkqzl .snkqzl6 ul li{
        width: 33.33%;
    }
    .snkqzl .snkqzl7{
        padding: 30px;
        top: 0;
    }
    .snkqzl .snkqzl7 .snkqzl7fl{
        width: 100%;
        padding-bottom: 40px;
    }
    .snkqzl .snkqzl7 .snkqzl7fl .name1{
        margin: 0;
    }
    .snkqzl .snkqzl7 .snkqzl7fr{
        width: 100%;
        top: 0;
    }
    .cnkqzl .cnkqzl2{
        padding-bottom: 20px;
    }
    .jjfa .jjfa6 .namemark{
        line-height: 30px;
    }
    .jjfa .jjfa6 .jjfa6fl{
        display: none;
    }
    .jjfa .jjfa6 .jjfa6fr{
        width: 100%;
        border: 0;
    }
    .jjfa .jjfa6 .jjfa6fr .jjfa6nr{
        display: block!important;
        border: 1px dashed #0c8e92;
        margin-top: 30px;
    }
    .jjfa .jjfa7 img{
        width: 100%;
        padding-top: 30px;
    }
    .jjfa .jjfa9 ul li{
        width: 90%;
        margin: 10px 5%!important;
    }
    .jjfa h1{
        text-align: center;
    }
    .jjfa h1:before{
        display: none;
    }
    .mcimg{
        padding-top: 20px;
    }
    .indexnav2{
        display: none;
    }
    .mcimg .mcimgfr{
        width: 100%;
        padding-top: 20px;
    }
    .mcimg .mcimgfr ul li{
        width: 48%;
        margin: 4% 4% 0 0!important;
    }
    .mcimg .mcimgfr ul li:nth-child(2n){
        margin-right: 0!important;
    }
    .showimg{
        width: 100%;
        padding-top: 30px;
    }
    .join{
        padding-top: 20px;
    }
    .join .joinfr{
        width: 100%;
        padding-top: 30px;
    }
    .joinyjmys ul li{
        width: 100%;
    }
    .joinjmsq form .fl{
        width: 100%;
    }
    .joinjmsq form .fl input,
    .joinjmsq form textarea{
        width: 100%;
        margin: 0 0 20px;
    }
    .joinjmsq form .fcode img{
        right: 0;
    }
    .news ul li{
        width: 100%;
        margin-top: 50px;
    }
    .shownews .detailpage .more{
        display: none;
    }
    .contact .contactl{
        width: 100%;
    }
    .contact .contactl img{
        width: 100%;
    }
    .contact .contactr{
        width: 100%;
        padding: 30px 10px 10px 20px;
    }
    .contact .contactr #feedback dl{
        padding-bottom: 20px;
    }
}