

/*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: 12px/1 Tahoma, Helvetica, Arial, "\5b8b\4f53", sans-serif; }
h1{ font-size: 18px; }
h2{ font-size: 16px; }
h3{ font-size: 14px; }
h4,h5,h6{ font-size: 100%; font-weight: normal; }
address,cite,dfn,em,var{ font-style: normal; }
code,kbd,pre,samp,tt{ font-family: "Courier New", Courier, monospace; }
small{ font-size: 12px; }
/* 重置列表元素 */
ul,ol,li,dl,dt,dd{ list-style: none; }
/* 重置文本格式元素 */
a{ color:#262b32;text-decoration:none; transition:all 0.2s; -o-transition:all 0.2s; -moz-transition:all 0.2s; -webkit-transition:all 0.2s; }
a:hover{ color:#13b6b1;text-decoration:none; transition:all 0.2s; -o-transition:all 0.2s; -moz-transition:all 0.2s; -webkit-transition:all 0.2s; }
abbr[title],acronym[title]{ border-bottom: 1px dotted; cursor: help; }
q:before,q:after{ content: ''; }
sup{ vertical-align: text-top; }
sub{ vertical-align: text-bottom; }
/* 重置表单元素 */
legend{ color: #000; }
fieldset,img{ border: none; }
button,input,select,textarea{ font-size: 100%; }
/* 重置表格元素 */
table{ border-collapse: collapse; border-spacing: 0; }
/* 重置 hr */
hr{ border: none; height: 1px; }
/* 清除浮动 */
.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*/

/*分页*/
.met_pager {text-align: center;padding: 50px 0}
.met_pager a {background: #3a3d46;color: #fff;height: 30px;line-height: 30px;min-width: 30px;_width: 30px;text-align: center;margin: 2px;display: inline-block}
.met_pager .PreSpan,.met_pager .NextSpan {background: #3a3d46;color: #fff;height: 30px;line-height: 27px;min-width: 50px;_width: 50px;text-align: center;display: inline-block;font-size: 18px;}
.met_pager .PreA,.met_pager .NextA {height: 30px;line-height: 27px;min-width: 50px;_width: 50px;color: #fff;font-size: 18px;}
.met_pager .PreSpan,.met_pager .PreA {margin-right: 5px}
.met_pager .NextSpan,.met_pager .NextA {margin-left: 5px}
.met_pager a:hover {background: #13b6b1;color: #fff}
.met_pager .Ahover {background: #13b6b1;color: #fff;font-weight: bold}
.met_pager .firstPage,.met_pager .lastPage {color: #fff;font-weight: bold;height: 30px;line-height: 30px;min-width: 40px;_width: 40px}
.met_pager .PageText{display: none}
.met_pager #metPageT{display: none}
.met_pager #metPageB{display: none}
/*end 分页*/

/*web*/
html,body {width: 100%;height: 100%;font-family:'微软雅黑';font-size: 14px;background: #f2f2f2;}
.BODYCENTER {width: 1200px;margin: auto;}
.mobile {display: none!important;}
.fl{float: left;}
.fr{float: right;}
em{color: #13b6b1;}
.content table{margin:10px 0;border-collapse:collapse;display:table;width:100%;}
.content td,.content th{padding: 15px;border: 1px solid #ececec;font-size:14px;width:1%;}
/*end web*/

/*css3*/
/* top */
@keyframes top {
    50% {
        transform: scale(1.2);
    }
    100% {
        transform: scale(1);
    }
}
.top {
    -webkit-tap-highlight-color: rgba(0,0,0,0);
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
}
.top:hover {
    animation-name: top;
    animation-duration: .3s;
    animation-timing-function: linear;
    animation-iteration-count: 1;
}
/* float-shadow */
.float-shadow {
    display: block;
    position: relative;
    transition-property: transform;
    transition-duration: .3s;
}
.float-shadow:before {
    pointer-events: none;
    position: absolute;
    z-index: -1;
    content: '';
    top: 100%;
    left: 5%;
    height: 10px;
    width: 90%;
    opacity: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, .08) 0%,rgba(0, 0, 0, 0) 80%);
    transition-property: transform;
    transition-duration: .3s;
}
.float-shadow:hover {
    transform: translateY(-5px);
}
.float-shadow:hover:before {
    opacity: 1;
    transform: translateY(5px);
}
/*end css3*/



/*header*/
#header{
    width: 100%;
    height: 75px;
    background: #ffffff;
    position: fixed;
    z-index: 10000;
    top: 0;
}
#header .logo{
	float: left;
    height: 75px;
    padding: 10px 15px;
    box-sizing: border-box;
}
#header .logo img{
    height: 100%;
  	display:block;
}
#header .pronav{float:left;}
.pronav ul li{display:table-cell;width:164px;height:75px;line-height:75px;text-align:center;position:relative;border-left: 1px solid #e6e6e6;}
.pronav ul li a{display:block;color:#262b32;font-size:16px;}
.pronav ul li a:hover,.pronav ul li a.hover{color:#13b6b1;}
.pronav ul li a i{padding-left: 15px;}
.pronav ul li .navdown{width:164px!important;height:0;line-height:35px;overflow:hidden;background:#ffffff;box-shadow: 0 1px 4px #e6e6e6;position:absolute;left:0;top:75px;transition:all 0.5s;-moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s;z-index:999;}
.pronav ul li .navdown a{font-size:14px;border-bottom:1px solid #e6e6e6;}
.pronav ul li .navdown a:hover{color:#13b6b1;}
.pronav ul li .navdown a p{display:block;padding:5px;}
.pronav ul li .navdown a:hover p{background:#ffffff;}

#header .headnav{float:right;}
.headnav ul li{display:table-cell;padding:0 30px;height:75px;line-height:75px;text-align:center;position:relative;border-right: 1px solid #e6e6e6;}
.headnav ul li a{display:block;color:#262b32;font-size:16px;}
.headnav ul li a:hover,.headnav ul li a.hover{color:#13b6b1;}
.headnav ul li a i{padding-left: 10px;}
.headnav ul li .navdown{width:148px!important;height:0;line-height:35px;overflow:hidden;background:#ffffff;box-shadow: 0 1px 4px #e6e6e6;position:absolute;left:0;top:75px;transition:all 0.5s;-moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s;z-index:999;}
.headnav ul li .navdown a{font-size:14px;border-bottom:1px solid #e6e6e6;}
.headnav ul li .navdown a:hover{color:#13b6b1;}
.headnav ul li .navdown a p{display:block;padding:5px;}
.headnav ul li .navdown a:hover p{background:#ffffff;}
.headnav .lang{background:#13b6b1;}
.headnav .lang a{color:#ffffff!important;}
/*banner*/
#inbanner{
    width: 100%;
    height: 100%;
}
#banner{
    padding-top: 75px;
}
#banner .flash img{
    width: 100%!important;
    height: auto!important;
    display: block;
}
/*header*/

/*index*/
.inabout .inabout1{
    background: #ffffff;
    margin-bottom: 30px;
}
.inabout .inabout1 .inaboutl{
    width: 470px;
    padding: 50px 65px;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.inabout .inabout1:hover .inaboutl{
    width: 520px;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.inabout .inabout1 .inaboutl h4{
    font-size: 30px;
    color: #393a3b;
    padding-bottom: 50px;
    position: relative;
}
.inabout .inabout1 .inaboutl h4:before{
    content: "";
    width: 50px;
    height: 5px;
    background: #c8c8c8;
    position: absolute;
    bottom: 30%;
    left: 0;
}
.inabout .inabout1 .inaboutl .inaboutde{
    color: #393a3b;
    line-height: 24px;
    padding-bottom: 30px;
}
.more{
    display: block;
    width: 130px;
    height: 40px;
    line-height: 40px;
    text-align: center;
    border: 1px solid #c6cac9;
    border-radius: 50px;
    color: #393a3b;
}
.more:hover{
    border: 1px solid #13b6b1;
}
.more i{
    position: relative;
    left: 0;
    transition:all 0.2s;
    -o-transition:all 0.2s;
    -moz-transition:all 0.2s;
    -webkit-transition:all 0.2s;
}
.more:hover i{
    color: #13b6b1;
    left: 10px;
    transition:all 0.2s;
    -o-transition:all 0.2s;
    -moz-transition:all 0.2s;
    -webkit-transition:all 0.2s;
}
.inabout .inabout1 .inaboutr{
    width: 600px;
    background: #333434;
    color: #ffffff;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.inabout .inabout1:hover .inaboutr{
    width: 550px;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.inabout .inabout1 .inaboutr .inaboutrtit{
    padding: 48px 50px;
}
.inabout .inabout1 .inaboutr .inaboutrtit h5{
    font-size: 30px;
    padding: 0 0 20px 10px;
}
.inabout .inabout1 .inaboutr .inaboutrtit p{
    color: #b4b4b4;
    border-bottom: 1px solid #595a59;
    padding: 0 0 20px 10px;
}
.inabout .inabout1 .inaboutr .inaboutrtit i{
    float: right;
    padding-top: 18px;
}
.inabout .inabout1 .inaboutr img{
    width: 100%;
    display: block;
}
.inabout .inabout2 .inaboutr{
    width: 736px;
}
.inabout .inabout2:hover .inaboutr{
    width: 700px;
}
.inabout .inabout2 .inaboutl{
    width: 400px;
    padding: 50px 30px;
}
.inabout .inabout2:hover .inaboutl{
    width: 436px;
}
.inabout .inabout2 .inaboutl .inaboutde p{
    padding-bottom: 10px;
}

.inpro{
    background: #ffffff;
    padding: 50px 70px;
    margin-bottom: 30px;
}
.inpro h4{
    font-size: 30px;
    color: #393a3b;
    padding-bottom: 50px;
    position: relative;
}
.inpro h4:before{
    content: "";
    width: 50px;
    height: 5px;
    background: #c8c8c8;
    position: absolute;
    bottom: 30%;
    left: 0;
}
.inpro h5{
    font-size: 12px;
    color: #393a3b;
}
.inpro .more{
    float: right;
    position: relative;
    top: 25px;
    z-index: 10;
}
.inpro ul li{
    float: left;
    width: 325px;
    padding-top: 40px;
}
.inpro ul li:nth-child(3n-1){
    padding: 40px 40px 0;
}
.inpro ul li a{
    display: block;
    border: 1px solid #e1e1e1;
    padding: 20px;
}
.inpro ul li a .proimg{
    overflow: hidden;
}
.inpro ul li a .proimg img{
    width: 100%;
    display: block;
}
.inpro ul li a .title{
    font-size: 16px;
    color: #393a3b;
    border-bottom: 1px solid #dedede;
    padding-bottom: 15px;
    margin-bottom: 15px;
    position: relative;
}
.inpro ul li a:hover .title{
    color: #13b6b1;
}
.inpro ul li a .title:before{
    content: "";
    width: 0;
    height: 1px;
    background: #dedede;
    position: absolute;
    bottom: -1px;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.inpro ul li a:hover .title:before{
    width: 100%;
    background: #13b6b1;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.inpro ul li a .promore .fl i{
    padding: 8px;
}
.inpro ul li a .promore .fr i{
    width: 30px;
    line-height: 30px;
    text-align: center;
    color: #3a3d3e;
    border: 1px solid #3a3d3e;
    margin-left: 10px;
}
.inpro ul li a .promore .fr i:hover{
    color: #ffffff;
    border: 1px solid #13b6b1;
    background: #13b6b1;
}

.innews{
    background: #ffffff;
    padding: 50px 70px;
    margin-bottom: 30px;
}
.innews h4{
    font-size: 30px;
    color: #393a3b;
    padding-bottom: 50px;
    position: relative;
}
.innews h4:before{
    content: "";
    width: 50px;
    height: 5px;
    background: #c8c8c8;
    position: absolute;
    bottom: 30%;
    left: 0;
}
.innews .more{
    float: right;
    position: relative;
    top: 18px;
    z-index: 10;
}
.innews ul li{
    float: left;
    width: 325px;
    padding-top: 40px;
}
.innews ul li:nth-child(3n-1){
    padding: 40px 40px 0;
}
.innews ul li a{
    display: block;
    border: 1px solid #e1e1e1;
}
.innews ul li a .newsimg{
    overflow: hidden;
}
.innews ul li a .newsimg img{
    width: 100%;
    display: block;
}
.innews ul li a .title{
    font-size: 16px;
    color: #393a3b;
    margin: 30px 10px 10px;
}
.innews ul li a:hover .title{
    color: #13b6b1;
}
.innews ul li a .description{
    color: #393a3b;
    line-height: 24px;
    border-bottom: 1px solid #dedede;
    margin: 10px;
    padding-bottom: 10px;
    position: relative;
}
.innews ul li a .description:before{
    content: "";
    width: 0;
    height: 1px;
    background: #dedede;
    position: absolute;
    bottom: -1px;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.innews ul li a:hover .description:before{
    width: 100%;
    background: #13b6b1;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.innews ul li a .time{
    margin: 10px;
    line-height: 30px;
    color: #929497;
}
.innews ul li a .time span{
    float: right;
    color: #393a3b;
}
.innews ul li a:hover .time span{
    color: #13b6b1;
    text-decoration: underline;
}
/*index*/

/*footer*/
#footer{
    background: #373737;
}
#footer .footerl{
    padding-top: 80px;
}
#footer .footerl ul li{
    float: left;
    padding-right: 138px;
}
#footer .footerl ul li h4{
    font-size: 18px;
    color: #ffffff;
}
#footer .footerl ul li p{
    color: #e3e3e3;
    padding-bottom: 20px;
}
#footer .footerl ul li p a{
    color: #e3e3e3;
}
#footer .footerl ul li p a:hover{
    color: #13b6b1;
    text-decoration: underline;
}
#footer .footerr{
    padding: 50px 0;
}
#footer .footerr .ewm{
    border: 1px solid #4c4c4c;
    padding: 8px;
    background: #212121;
}
#footer .tail{
    border-top: 1px solid #4b4b4b;
    color: #bfbfbf;
    padding: 30px 0;
}
#footer .tail a{
    color: #bfbfbf;
}
#footer .tail a:hover{
    color: #13b6b1;
    text-decoration: underline;
}
#footer .tail .tail_a{
    float: right;
}
/*footer*/

/*about*/
.about{
    padding: 30px 0 50px;
}
.about .inabout1 .inaboutl{
    width: 470px!important;
}
.about .inabout1 .inaboutl .inaboutde{
    padding: 0;
}
.about .inabout1 .inaboutr{
    width: 600px!important;
}
.about .inabout2 h5{
    font-size: 30px;
    color: #393a3b;
    padding: 30px 0 50px;
    text-align: center;
    position: relative;
}
.about .inabout2 h5:before{
    content: "";
    width: 40px;
    height: 4px;
    background: #c8c8c8;
    position: absolute;
    bottom: 30%;
    left: 50%;
    margin-left: -20px;
}
.about .inabout2 ul li{
    float: left;
    width: 373px;
    background: #ffffff;
    text-align: center;
}
.about .inabout2 ul li:nth-child(2){
    margin: 0 40px;
}
.about .inabout2 ul li .aboutimg{
    padding: 50px 0 10px;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.about .inabout2 ul li:hover .aboutimg{
    padding: 40px 0 20px;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.about .inabout2 ul li .abouthidden{
    height: 150px;
    overflow: hidden;
    position: relative;
}
.about .inabout2 ul li .abouthidden .abouttit{
    width: 100%;
    position: absolute;
    top: 0;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.about .inabout2 ul li:hover .abouthidden .abouttit{
    width: 100%;
    position: absolute;
    top: -150px;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.about .inabout2 ul li .abouttit1{
    min-height: 150px;
    background: #ffffff;
}
.about .inabout2 ul li .abouttit1 p{
    font-size: 24px;
    color: #393a3b;
    padding: 20px 0;
}
.about .inabout2 ul li .abouttit1 span{
    font-size: 16px;
    color: #616262;
    line-height: 24px;
}
.about .inabout2 ul li .abouttit2{
    min-height: 150px;
    background: #13b6b1;
}
.about .inabout2 ul li .abouttit2 p{
    font-size: 24px;
    color: #ffffff;
    padding: 20px 0;
}
.about .inabout2 ul li .abouttit2 span{
    font-size: 16px;
    color: #ffffff;
    line-height: 24px;
}
/*about*/

/*contact*/
.contact{
    padding: 30px 0 50px;
}
.contact .con{
    background: #ffffff;
    margin-bottom: 30px;
}
.contact .con .conl{
    width: 500px;
    padding: 50px;
}
.contact .con .conl .ewm{
    float: right;
    padding: 8px;
    background: #f2f2f2;
    border: 1px solid #e5e5e5;
    margin-top: 58px;
}
.contact .con .conl h4{
    font-size: 30px;
    color: #393a3b;
    padding-bottom: 50px;
    position: relative;
}
.contact .con .conl h4:before{
    content: "";
    width: 50px;
    height: 5px;
    background: #c8c8c8;
    position: absolute;
    bottom: 30%;
    left: 0;
}
.contact .con .conl h5{
    color: #393a3b;
    padding-bottom: 30px;
}
.contact .con .conl p{
    color: #393a3b;
    padding-bottom: 10px;
}
.contact .con .conr{
    width: 580px;
    border: 10px solid #fff;
}
/*contact*/

/*news*/
.news{
    padding: 30px 0 50px;
}
.news .innews{
    margin: 0;
    padding: 50px 70px 0;
}
.news .newsnav{
    float: right;
    position: relative;
    z-index: 10;
}
.news .newsnav a{
    display: inline-block;
    width: 148px;
    line-height: 48px;
    text-align: center;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    margin: 0 10px;
}
.news .newsnav a:hover,
.news .newsnav a.hover {
    color: #ffffff;
    background: #13b6b1;
    border: 1px solid #13b6b1;
}
.shownews{
    padding: 30px 0 50px;
}
.shownews .innews{
    margin: 0;
}
.shownews .newsnav{
    float: right;
    position: relative;
    z-index: 10;
}
.shownews .newsnav a{
    display: inline-block;
    width: 148px;
    line-height: 48px;
    text-align: center;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    margin: 0 10px;
}
.shownews .newsnav a:hover,
.shownews .newsnav a.hover {
    color: #ffffff;
    background: #13b6b1;
    border: 1px solid #13b6b1;
}
.shownews .title{
    text-align: center;
    border-top: 1px solid #b0b0b0;
    font-size: 24px;
    color: #393a3b;
    padding-top: 50px;
    margin-top: 20px;
}
.shownews .addtime{
    text-align: center;
    font-size: 14px;
    color: #929497;
    padding: 20px 0 30px;
}
.shownews .content{
    font-size: 14px;
    color: #393a3b;
    line-height: 24px;
}
.shownews .detailpage{
    border-top: 1px solid #b0b0b0;
    color: #393a3b;
    line-height: 30px;
    padding-top: 30px;
    margin-top: 30px;
}
.shownews .detailpage p a{
    color: #393a3b;
    position: relative;
    left: 0;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
.shownews .detailpage p a:hover{
    color: #13b6b1;
    text-decoration: underline;
    left: 10px;
    transition:all 0.5s;
    -o-transition:all 0.5s;
    -moz-transition:all 0.5s;
    -webkit-transition:all 0.5s;
}
/*news*/

/*pro*/
.search{
    padding: 30px 0 10px;
}
.search form{
    background: #ffffff;
    padding: 30px;
    font-size: 0;
}
.search form:after{
    content: "";
    display: block;
    clear: both;
}
.search form .navsearch_input{
    float: left;
}
.search form .navsearch_input input{
    width: 908px;
    line-height: 40px;
    border: 0;
    outline: 0;
    background: #ebebeb;
    padding: 0 50px;
    font-size: 14px;
    letter-spacing: 1px;
}
.search form .searchimage{
    float: left;
}
.pro .pronav{
    background: #ffffff;
    padding: 50px 70px 0;
}
.pro .pronav ul li{
    display: inline-block;
    border: 1px solid #cdcdcd;
    margin-right: 8px;
    width: 148px;
    height: 48px;
    line-height: 50px;
    border-radius: 5px;
}
.pro .pronav ul li .navdown{
    width: 148px!important;
    top: 50px;
}
.pro .inpro{
    padding: 6px 70px;
    margin-bottom: 50px;
}
/*showproduct*/
.prodetail{  width: 1120px;  padding: 40px;  background: #ffffff;  margin-bottom: 50px;  }
/*<!--第一部分-->*/
.one{  padding: 50px 0; border-top: 1px solid #c3c3c3;  }
.one .proimg1{  float: left;  padding: 0 30px;  }
.one .proimg2{  float: left;  width: 100px;  height: 370px;  padding: 0 30px;  border-left: 1px solid #e1e1e1;  }
.one .proimg3{  float: right;  width: 500px;  height: 370px;  position: relative;  }
.one .proimg3 .title{  border-bottom: 1px solid #cacaca;  margin-bottom: 50px;  }
.one .proimg3 .title h4{  font-size: 18px;  color: #13b6b1;  padding: 20px 5px 0;  }
.one .proimg3 .title h5{  font-size: 14px;  color: #333333;  padding: 15px 5px 20px;  }
.one .proimg3 .share{  position: absolute;  bottom: 0;  }
.one .proimg3 .share a{  display: inline-block;  background: #333333;  color: #a7a7a7;  width: 60px;  height: 60px;  line-height: 60px;  text-align: center;  font-size: 24px;  margin-right: 8px;  }
.one .proimg3 .share a:hover{  background: #13b6b1;  color: #ffffff;  }
.one .proimg3 .share a.con{  width: 222px;  height: 60px;  }
.one .proimg3 .share a.con i{  padding-right: 10px;  }
.pro2wm{position:relative;display: inline-block;}
.pro2wm a{margin:0!important;}
.pro2wm .wxewm{filter:Alpha(opacity=0);opacity:0;position: absolute;right: 72px;bottom:0;z-index: 99;transition:all 0.5s;-moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s; width:0;height:0;}
.pro2wm:hover .wxewm{filter:Alpha(opacity=100);opacity:1;transition:all 0.5s;-moz-transition:all 0.5s;-webkit-transition:all 0.5s;-o-transition:all 0.5s;width:280px;height:280px;}
/*<!--第二部分-->*/
.three{}
.three .three-title{  color: #13b6b1;  border-bottom: 1px solid #c3c3c3;  padding: 20px 5px;  font-size: 24px;  }
.three .content{  padding: 30px 10px 0;  }
.three .content p{  line-height: 28px;  color: #323232;  }
/*<!--第三部分-->*/
.two{  padding: 10px 0;  border-top: 1px dotted #1e1c1b;  border-bottom: 1px dotted #1e1c1b;  position: relative;  }
.two:before{  content: "";  width: 1px;  height: 78px;  background: #b7b7b7;  position: absolute;  left: 50%;  top: 10px;  }
.page_left{  float: left;  width: 50%;  }
.page_left a{  display: block;  padding: 18px;  margin-right: 30px;  }
.page_left a:hover{  background: #13b6b1;  }
.page_left a .page1{  width: 40px;  height: 40px;  line-height: 40px;  text-align: center;  color: #393939;  border: 1px solid #393939;  font-size: 21px;  float: left;  margin-right: 20px;  }
.page_left a:hover .page1{  color: #fff;  border: 1px solid #fff;  }
.page_left a .page2{  font-size: 16px;  color: #13b6b1;  padding: 3px;  }
.page_left a:hover .page2{  color: #fff;  }
.page_left a .page3{  font-size: 14px;  color: #434343;  padding: 3px;  }
.page_left a:hover .page3{  color: #fff;  }

.page_right {  float: right;  width: 50%;  }
.page_right a {  display: block;  padding: 18px;  margin-left: 30px;  text-align: right;  }
.page_right a:hover{  background: #13b6b1;  }
.page_right a .page1{  width: 40px;  height: 40px;  line-height: 40px;  text-align: center;  color: #393939;  border: 1px solid #393939;  font-size: 21px;  float: right;  margin-left: 20px;  }
.page_right a:hover .page1{  color: #fff;  border: 1px solid #fff;  }
.page_right a .page2{  font-size: 16px;  color: #13b6b1;  padding: 3px;  }
.page_right a:hover .page2{  color: #fff;  }
.page_right a .page3{  font-size: 14px;  color: #434343;  padding: 3px;  }
.page_right a:hover .page3{  color: #fff;  }
/*end showproduct*/
/*pro*/

/*job*/
.job{
    padding: 50px 0;
}
.job .jobnav{
    display: table;
    margin: 0 auto 40px;
}
.job .jobnav a{
    display: inline-block;
    width: 148px;
    line-height: 48px;
    text-align: center;
    border: 1px solid #cdcdcd;
    border-radius: 5px;
    margin: 0 10px;
}
.job .jobnav a:hover,
.job .jobnav a.hover{
    color: #ffffff;
    background: #13b6b1;
    border: 1px solid #13b6b1;
}
.job .joblist li{
    float: left;
    width: 322px;
    min-height: 180px;
    background: #ffffff;
    margin-bottom: 40px;
    padding: 30px 30px 0 20px;
}
.job .joblist li:nth-child(3n-1){
    margin: 0 40px;
}
.job .joblist li .jobimg{
    width: 100px;
}
.job .joblist li .jobtit{
    width: 210px;
}
.job .joblist li h4{
    font-size: 24px;
    color: #13b6b1;
    padding: 5px 0 15px;
}
.job .joblist li p{
    font-size: 14px;
    color: #4f5252;
    line-height: 21px;
}
.job #jobcv .jobcvjm{
    background: #ffffff;
    width: 500px;
    padding: 50px;
}
.job #jobcv .jobcvjm h4{
    font-size: 30px;
    color: #393a3b;
    padding-bottom: 43px;
    position: relative;
}
.job #jobcv .jobcvjm h4:before{
    content: "";
    width: 50px;
    height: 5px;
    background: #c8c8c8;
    position: absolute;
    bottom: 30%;
    left: 0;
}
.job #jobcv .jobcvsq{
    background: #13b6b1;
    width: 50%;
}
/*job*/
.mc_pager{text-align:center;padding:40px 0;}
.mc_pager a{font-size:16px;color:#fff;transition-duration: .2s;width:30px;height:30px;line-height:30px;margin-right:10px;background:#000000;display:inline-block;}
.mc_pager a.curpage,.paging a:hover{background:#BB171E;color:#fff;}
.mc_pager a.homepage,.paging a.endpage{width:50px;position:relative;text-indent:-9999px;}
.mc_pager a.homepage:before,.mc_pager a.endpage:before{font-family:'FontAwesome';content:"\f053";width:50px;text-align:center;position:absolute;text-indent:0;display:block;}
.mc_pager a.endpage:before{content:"\f054";}
.pageinfo,.nextpage,.nopage,.prepage{display:none !important;}