/*头部导航*/
header {
	height: 72px;
	line-height: 72px;
	background: rgba(255,255,255,.4);
	/* position: fixed; */
	width: 100%;
	z-index: 99;
}
header a {
	font-size: 16px;
}
header .container {
	height: inherit;
}
header .logo {
	width: 200px;
	height: 72px;
}
header nav li {
	float: left;
	position: relative;
}
header nav li a {
	display: block;
	padding: 0 28px;
	transition: all 200ms ease-in;	
	-webkit-transition: all 200ms ease-in;	
}
/*hover li 样式*/
header nav li:hover a {
	color: #6F76F0;
}
header nav li span {
	position: absolute;
	left: 50%;
	bottom: 17px;
	margin-left: -7px;
	width: 14px;
	height: 2px;
	background: #6F76F0;
	opacity: 0;
	transition: all 200ms ease-in;
	-webkit-transition: all 200ms ease-in;
}
header nav li.active span, header nav li.active a {
	opacity: 1;
	color: #6F76F0;
}
header nav li.act span, header nav li.act a {
	opacity: 1;
	color: #6F76F0;
}
header nav li.act span {
	width: 28px;
	margin-left: -14px;
}

header nav li:hover span {
	opacity: 1;
	transform: scaleX(2);	
	-webkit-transform: scaleX(2);	
}
header nav li:first-child:hover span {
	opacity: 1;
	transform: scaleX(1);	
	-webkit-transform: scaleX(1);	
}
header nav li.act:hover span {
	transform: scaleX(1);
	-webkit-transform: scaleX(1);
}
header .control {
	padding-right: 50px;
}
header .control a {
	display: inline-block;
	width: 100px;
	height: 32px;
	font-size: 14px;
	line-height: 32px;
	text-align: center;
	border-radius: 20px;
	border: 1px solid #6F76F0;
	transition: all 200ms ease-in;
	-webkit-transition: all 200ms ease-in;
}
header .control a:last-child {
	margin-left: 14px;	
}
header .control .current {
	background: #6F76F0;
	color: #fff;
}
header .control .online {
	position: relative;
	top: 1px;
	height: 30px;
	line-height: 30px;
	margin-right: 12px;
	border: 1px transparent solid;
	background: #fff;

}
header .control .online:after {
   content:'';
   position: absolute;
   top: -2px; bottom: -2px;
   left: -2px; right: -2px;
   background: linear-gradient(135deg,#75c9ff, #6f76f0);
   border-radius: 30px;
   z-index: -1;
 
}
header .control .online img {
	position: absolute;
	top: -8px;
	right: -8px;
}
header .control .online:hover {
	background: transparent;
}
/*header end*/ 

/*footer start*/
footer {
	padding-top: 34px;
	height: 266px;
	font-size: 12px;
	color: #999a9a;
	background: #343359;
}
footer .contact {
	margin: 0 auto;
}
footer .contact .phone-num {
	box-sizing: border-box;
	padding: 30px 0 0 50px;
}
footer .contact .phone-num p {
	margin-top: 10px;
	font-size: 36px;
	font-style: italic;
	color: #1ca1ff;
}
footer .contact .address {
	padding: 6px 0 30px;
	border-left: 1px solid #999a9a;
	border-right: 1px solid #999a9a;
}
footer .contact .address p {
	line-height: 2.4em;
}
footer .contact .address h3 {
	margin-bottom: 8px;
}
footer .contact .sao-qr > div {
	float: left;
	margin: 6px 26px 0;
	text-align: center;
}
footer .contact .sao-qr > div p {
	margin-top: 8px;
}
footer .contact li {
	float: left;
	width: 33%;
}

footer .us-link {
	margin: 32px 0 20px 0;
	color: #fff;
}
footer .us-link a {
	padding: 0 20px;
	font-size: 12px;
	color: #fff;
	transition: all 200ms ease-in;
	-webkit-transition: all 200ms ease-in;
}
footer .us-link a:hover {
	color: #6F76F0;
}
footer .us-link a:not(:first-child) {
	border-left: 1px solid #fff;
}
/*返回顶部*/
.back-top {
	position: fixed;
	z-index: 999;
	right: 40px;
	bottom: 60px;
	width: 40px;
	height: 40px;
	font-size: 30px;
	line-height: 26px;
	border-radius: 4px;
	text-align: center;
	background: url(../img/resource/backTop.png)no-repeat center;
	cursor: pointer;
	display: none;
}
