@charset "utf-8";


body {
	margin: 0px;
	padding: 0px;
	background-color: #ffffff;
}

#header{
	background-color: #3f8dbf;
	float: left;
	width: 100%;
	height: 50px;
	color: rgba(255,255,255,1);
	line-height: 50px;
	position: fixed;
	left: 0px;
	top: 0px;
	z-index: 1;
}
#header a {
	color: rgba(255,255,255,1);
	text-decoration: none;
	display: block;
	font-size: 15px;
}
#header-left{
	float: left;
	height: 50px;
}
#header-left:hover #header-left-icon{
	background-color: #3F8DBF;
}
#header-left:hover #header-left-text{
	background-color: #599BC8;
}
#header-left-icon{
	float: left;
	height: 50px;
	width: 50px;
	text-align: center;
	background-color: #35759F;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
#header-left-icon a {
	font-size: 25px;
}

#header-left-text{
	float: left;
	height: 50px;
		-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
#header-left-text a {
	padding-left: 20px;
	padding-right: 20px;
}
#header-right{
	float: right;
	height: 50px;
}
#header-right:hover #header-right-icon{
	background-color: #3F8DBF;
	}
#header-right:hover #header-right-text{
	background-color: #599BC8;
	}
#header-right-icon{
	float: right;
	height: 50px;
	width: 50px;
	text-align: center;
	background-color: #35759F;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
#header-right-text{
	float: right;
	height: 50px;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
#header-right-text a {
	padding-right: 20px;
	padding-left: 20px;
}
.wrapper{
	width: 100%;
	float: left;
	margin-top: 50px;
	margin-bottom: 150px;
}
.wrapper-inner{
	width: 1100px;
	margin-right: auto;
	margin-left: auto;
	 -webkit-touch-callout: none; /* iOS Safari */
  -webkit-user-select: none;   /* Chrome/Safari/Opera */
  -khtml-user-select: none;    /* Konqueror */
  -moz-user-select: none;      /* Firefox */
  -ms-user-select: none;       /* IE/Edge */
  user-select: none;           /* non-prefixed version, currently
                                  not supported by any browser */
}
.wrapper-inner-buttons{
	width: 100%;
	float: left;
	margin-top:50px;
	text-align: center;
}
.wrapper-inner-buttons a{
	background-color: #3f8dbf;
	line-height: 35px;
	padding-right: 15px;
	padding-left: 15px;
	margin: 10px;
	display: inline-block;
	text-align: center;
	text-decoration: none;
	color: #FFFFFF;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
	border-radius: calc(35px / 2);
}
.wrapper-inner-buttons a.current{
	background-color: #f5d76e;
	color: #d35400;
}
.wrapper-inner-buttons a:hover{
	background-color: #35759F;
	color: #fff;
}
.mobile{
	width: 100%;
	float: left;
}
.mobile-inner{
	width: 100%;
	margin-right: auto;
	margin-left: auto;
	background-color: #fafafa;
	position: relative;
}
.mobile-inner img{
}
.mobile-inner-header-icon-out i{display:block;width:70px;height:70px;background:url(../images/icon_zd.png) no-repeat center center;}
.mobile-inner-header-icon-click i{display:block;width:70px;height:70px;background:url(../images/icon_cl.png) no-repeat center center;}
.mob-logo img{margin-top:10px;}
.mobile-inner p{
	color: #676767;
	line-height: 25px;
	font-size: 16px;
	padding-bottom: 30px;
	padding-right: 30px;
	padding-left: 30px;
	margin:0px;
}
.mobile-inner-header{
	background-color: rgba(255,255,255,0.7);
	width: 100%;
	height: 70px;
	position: absolute;
	top: 0px;
	left: 0px;
}
.mobile-inner-header-icon{
	color: #ffffff;
	height: 70px;
	font-size:25px;
	text-align: center;
	float:right;
	width: 70px;
	position: relative;
	-webkit-transition: background 0.5s;
	-moz-transition: background 0.5s;
	-o-transition: background 0.5s;
	transition: background 0.5s;
}
.mobile-inner-header-icon:hover{
	cursor: pointer;
}
.mobile-inner-header-icon span{
	position: absolute;
	left: calc((100% - 25px) / 2);
	top: calc((100% - 1px) / 2);
	width: 25px;
	height: 1px;
	background-color: rgba(0,0,0,1);
}
.mobile-inner-header-icon span:nth-child(1){
transform: translateY(4px) rotate(0deg);
	}
.mobile-inner-header-icon span:nth-child(2){
transform: translateY(-4px) rotate(0deg);
	}
	



	
.mobile-inner-header-icon-click span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clickfirst;
	}		
.mobile-inner-header-icon-click span:nth-child(2){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: clicksecond;
	}
	


@keyframes clickfirst {
  0% {
	  transform: translateY(4px) rotate(0deg);
	  
  }

  100% {
    transform: translateY(0) rotate(45deg);
  }
}	



@keyframes clicksecond {
  0% {
	  transform: translateY(-4px) rotate(0deg);
  }

  100% {
    transform: translateY(0) rotate(-45deg);
  }
}	

.mobile-inner-header-icon-out span:nth-child(1){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outfirst;
	}		
.mobile-inner-header-icon-out span:nth-child(2){
	animation-duration: 0.5s;
	animation-fill-mode: both;
	animation-name: outsecond;
	}

@keyframes outfirst {
  0% {
    transform: translateY(0) rotate(-45deg);
  }

  100% {
    transform: translateY(-4px) rotate(0deg);
  }
}	



@keyframes outsecond {
  0% {
    transform: translateY(0) rotate(45deg);
  }

  100% {
    transform: translateY(4px) rotate(0deg);
  }
}

.mobile-inner-nav{
	background-color: rgba(255,255,255,0.9);
	width: 100%;
	position: absolute;
	top: 70px;
	left: 0px;
	padding-top: 0px;
	padding-bottom: 50px;
	display: none;
	z-index:999;
}
.mobile-inner-nav > a{
	display: inline-block;
	line-height: 50px;
	text-decoration: none;
	width: 90%;
	margin-left: 5%;
	color: #000;
	border-bottom: solid 1px rgba(255,255,255,0.3);
	-webkit-transition: all 0.5s;
	-moz-transition: all 0.5s;
	-o-transition: all 0.5s;
	transition: all 0.5s;
	font-weight:300;
}
.mobile-inner-nav a:hover{
	color: #d02227;
	border-bottom: solid 1px rgba(255,255,255,0.2);
}






.mobile-inner-nav > a{
	position: relative;
	display: block;
	
	border: none !important;
}
.mobile-inner-nav a:after{
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	width: 100%;
	height: 1px;
	z-index: 1;
	background-color: rgba(0,0,0,0.3);
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: slideInBorder;
	animation-name: slideInBorder;
}
@-webkit-keyframes slideInBorder {
0%{
	-webkit-transform: translate(-52%, -24px) scaleY(0.07) rotate(90deg);
	transform: translate(-52%, -24px) scaleY(0.07) rotate(90deg);
	}
100%{
	-webkit-transform: translate(0, 0) scaleY(1) rotate(0deg);
	transform: translate(0, 0) scaleY(1) rotate(0deg);
	}	

}

@keyframes slideInBorder {
0%{
	-webkit-transform: translate(-52%, -24px) scaleY(0.07) rotate(90deg);
	transform: translate(-52%, -24px) scaleY(0.07) rotate(90deg);
	}
100%{
	-webkit-transform: translate(0, 0) scaleY(1) rotate(0deg);
	transform: translate(0, 0) scaleY(1) rotate(0deg);
	}	  
}


	.mobile-inner-nav a{
		  -webkit-animation-duration: 0.8s;
		  animation-duration: 0.8s;
		  -webkit-animation-fill-mode: both;
		  animation-fill-mode: both;
		  -webkit-animation-name: bounceInLeft;
		  animation-name: bounceInLeft;
		}

			
		@-webkit-keyframes bounceInLeft {
		  from, 60%, 75%, 90%, to {
		    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		  }

		  from {
		    opacity: 0;
		    -webkit-transform: translate3d(-3000px, 0, 0);
		    transform: translate3d(-3000px, 0, 0);
		  }

		  60% {
		    opacity: 1;
		    -webkit-transform: translate3d(25px, 0, 0);
		    transform: translate3d(25px, 0, 0);
		  }

		  75% {
		    -webkit-transform: translate3d(-10px, 0, 0);
		    transform: translate3d(-10px, 0, 0);
		  }

		  90% {
		    -webkit-transform: translate3d(5px, 0, 0);
		    transform: translate3d(5px, 0, 0);
		  }

		  to {
		    -webkit-transform: none;
		    transform: none;
		  }
		}

		@keyframes bounceInLeft {
		  from, 60%, 75%, 90%, to {
		    -webkit-animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		    animation-timing-function: cubic-bezier(0.215, 0.610, 0.355, 1.000);
		  }

		  from {
		    opacity: 0;
		    -webkit-transform: translate3d(-3000px, 0, 0);
		    transform: translate3d(-3000px, 0, 0);
		  }

		  60% {
		    opacity: 1;
		    -webkit-transform: translate3d(25px, 0, 0);
		    transform: translate3d(25px, 0, 0);
		  }

		  75% {
		    -webkit-transform: translate3d(-10px, 0, 0);
		    transform: translate3d(-10px, 0, 0);
		  }

		  90% {
		    -webkit-transform: translate3d(5px, 0, 0);
		    transform: translate3d(5px, 0, 0);
		  }

		  to {
		    -webkit-transform: none;
		    transform: none;
		  }
		}



.menu_list{width:100%;margin:0 auto;}
.menu_head{
	height: 47px;
	line-height: 47px;
	padding-left: 18px;
	font-size: 14px;
	color: #525252;
	cursor: pointer;
	border-left: 1px solid #e1e1e1;
	border-right: 1px solid #e1e1e1;
	border-bottom: 1px solid #e1e1e1;
	border-top: 1px solid #F1F1F1;
	position: relative;
	margin: 0px;
	font-weight: bold;
	background: #f1f1f1 url(../images/pro_left.png) center right no-repeat;
}
.menu_list .current{background:#f1f1f1 url(../images/pro_down.png) center right no-repeat;}
.menu_body{
	line-height: 38px;
	border-left: 1px solid #e1e1e1;
	backguound: #fff;
	border-right: 1px solid #e1e1e1;
	
}
.menu_body a{display:block;height:38px;line-height:38px;padding-left:28px;color:#777777;background:#fff;text-decoration:none;border-bottom:1px solid #e1e1e1;}
.menu_body a:hover{text-decoration:none;}





.m-ins-navbox{
	width: 100%;
	height: 38px;
	background-color: #fff;
	display: none;
	position: relative;
	z-index: 11;
}
.m-ins-navbox.fixed{
	position: fixed;
	top: 0;
	left: 0;
	z-index: 11;
}
.m-ins-navbox .left{
	width: 15%;
	cursor: pointer;
}
.m-ins-navbox .left .ico{
	display: block;
	width: 100%;
	height: 38px;
	background: url("../images/ico_35.png") no-repeat center #b084b7;
	background-size: auto 50%;
}
.m-ins-navbox .ret-subbox{
	position: absolute;
	top: 38px;
	width: 100%;
	background-color: #b084b7;
	left: 0;
	z-index: 2;
	display: none;
}
.m-ins-navbox .ret-subbox a{
	display: block;
	width: 95%;
	padding-left: 5%;
	height: 38px;
	line-height: 38px;
	border-bottom: 1px solid #fff;
	color: #fff;
	font-size: 14px;
	background: url("../images/ico_38.png") no-repeat 92% center;
	background-size: auto 35%;
}
.m-ins-navbox .right{
	width: 85%;
	position: relative;
}
.m-ins-navbox .right .tit{
	display: block;
	width: 95%;
	padding-left: 5%;
	font-size: 14px;
	color: #b084b7;
	line-height: 38px;
	background: url("../images/ico_36.png") no-repeat 93% center;
	background-size: auto 50%;
	cursor: pointer;
}
.m-ins-navbox .right .subbox{
	width: 100%;
	position: absolute;
	top: 38px;
	background-color: #fff;
	z-index: 2;
	display: none;
	left: 0;
}
.m-ins-navbox .right .subbox a{
	display: block;
	width: 95%;
	padding-left: 5%;
	line-height: 38px;
	height: 38px;
	border-top: 1px solid #e5e5e5;
	background: url("../images/ico_37.png") no-repeat 92% center;
	background-size: auto 35%;
	/*border-left: 1px solid #fff;
	margin-left: -1px;*/
}




.accordion {
 	width: 100%;
 	background: #FFF;
 	-webkit-border-radius: 4px;
 	-moz-border-radius: 4px;
 	border-radius: 4px;
 }

.accordion .link {
	height:42px;
	line-height:42px;
	padding:0 15px;
	cursor: pointer;
	display: block;
	color: #4D4D4D;
	font-size: 14px;
	font-weight: 400;
	border-bottom: 1px solid #e6e6e6;
	position: relative;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.accordion li:last-child .link {
	border-bottom: 0;
}

.accordion li i {
	position: absolute;
	top: 8px;
	left: 12px;
	font-size: 18px;
	color: #595959;
	-webkit-transition: all 0.4s ease;
	-o-transition: all 0.4s ease;
	transition: all 0.4s ease;
}

.accordion li i.fa-chevron-down {
	right: 15px;
	left: auto;
	top:12px;
	font-size: 16px;
}

.accordion li.open .link {
	color: #1a3968;
}

.accordion li.open i {
	color: #1a3968;
}
.accordion li.open i.fa-chevron-down {
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	-o-transform: rotate(180deg);
	transform: rotate(180deg);
}

/**
 * Submenu
 -----------------------------*/
 .submenu {
    padding:5px 0;
 	display: none;
 	font-size: 14px;
 }

 .submenu li {
 	line-height:34px;
 }

 .submenu a {
 	display: block;
 	text-decoration: none;
 	color: #666;
 	padding-left: 25px;
 	-webkit-transition: all 0.25s ease;
 	-o-transition: all 0.25s ease;
 	transition: all 0.25s ease;
 }

 .submenu a:hover {
 	background: #1a3968;
 	color: #FFF;
 }











h3{
	font-size:16px;
	font-weight:100;
	margin-bottom:10px;
}
h3 a{
	color:#6582b2;
}
.more a{
	display:inline-block;
	width:64px;
	line-height:27px;
	border-radius:5px;
	background:#6582b2;
	color:#fff;
	text-align:center;
}
.joinxp-main{
	padding-bottom:100px;
}
.top_1{
	padding-bottom:20px;
}
#box{
	width:370px;
	height:370px;
	border: 1px solid #8b7e87;
	margin: 0 auto;
	position: relative;
	overflow: hidden;
}
#box>img{
	width:100%;
	display: none;
}

#box ul{
	width:100%;
	list-style-type: none;
	position: absolute;
	bottom: 10px;
	left:0;
	margin-left:0px;
	text-align:center;
}
#box ul li{
	display:inline-block;
	width:20px; height:20px;
	border-radius: 10px;
	background: #56515b;
	text-align: center;
	line-height: 20px;
	color: #fff;
	margin-left: 3px;
}
#box ul li.cur{
	background:#2a7aff;
}
#box a{
	width:370px;
	height:370px;
	opacity:0;
	position:absolute;
	left:0; top:0;
	transition-duration:.5s;
}
#box a:nth-of-type(1){
	opacity:1;
}

.join-text p{
	line-height:30px;
	font-size:14px;
	color:#666666;
	margin-top:20px;
}
.join-text .td{
	margin:15px 0;
	font-size:14px;
}
@media(max-width:920px){
	.join-text .td{
		margin:5px 0;
	}
	.join-text p{
		line-height:25px;
	}
	.join-text{
		padding-top:20px;
	}	
}
.more_2{
	float:right;
	margin:10px 20px 20px;
}
@media(min-width:1200px){
	.more_2{
		float:right;
		margin:10px 100px 30px;
	}
}

.job-list{
	border-bottom:1px dashed #898989;
	padding-top:35px;
}
.e-content{
	overflow:hidden;
}
.e-content p{
	font-size:14px;
	color:#666666;
	line-height:30px;
	text-indent:2em;
}
.e-content h3{
	font-size:14px;
	color:#333333;
	font-weight:700;
	text-indent:2em;
}
.pagination{font:12px;overflow:hidden;width:100%;padding:10px 0 10px;text-align:center;}
.pagination a{font-size:12px;line-height:22px;display:inline-block;height:22px;padding:0 8px;text-align:center;color:#333;border:1px solid #e3e3e3;background:#fff;}
.pagination a.active{line-height:22px;height:22px;margin-top:0;padding:0 12px;}
.pagination a:hover{text-decoration:none;color:#000;background:#f1f1f1;}
.pagination span{line-height:22px;display:inline-block;height:22px;padding:0 8px;text-align:center;color:#fff;border:1px solid #df4c18;background:#df4c18;}


.big-title{
	text-align:center;
	border-bottom:1px dashed #e7e7e7;
}
.big-title h3{
	color:#6582b2;
	font-size:24px;
	font-weight:100;
}
.big-title .data{
	color:#999999;
	font-size:12px;
	line-height:50px;
}
.fx p{
	line-height:32px;
}
.fx p:nth-of-type(1){
	margin-bottom:15px;
}



