/**
 * 色彩
 * 深蓝：#034091
 * 群青：#0050D6
 * 群青：#0A4592
 * 群青：#0074D6
 * 深色字：#333
 * 浅色字：#6D6D6D
 * 浅色字：#717171
 * 深灰线色：#CFCFCF
 * 浅灰底色：#F2F2F2
 * 浅灰底色：#F5F5F5
 * 浅黑底色：#333
 * 深黑底色：#2C2C2C
 * 链接link：#4A4A4A
 * 链接hover蓝：#0074D6
 * 链接hover红：#C90005
 * 高亮黄：#F7DE07
 */
html, body {
	margin: 0; padding: 0;
	font: 14px/22px Microsoft YaHei; color: #333;
}
p, h1, h2, h3, h4, h5, h6, form, input {
	margin: 0; padding: 0;
}
ul, li {
	margin: 0; padding: 0;
	list-style: none;
}
a {
	color: #666;
	text-decoration: none;
}
a:hover {
	color: #034091;
}
.dn {
	display: none !important;
}

/**
 * Loading加载
 */
.pageLoading {
	position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
	display: flex; justify-content: center; align-items: center;
	background-color: #FFF;
}
.pageLoading .loadingBox {
	position: relative;
	width: 0; height: 0;
	transform: translateY(-10rem);
}
.pageLoading .loadingBox .loadingBig {
	position: absolute; top: -2rem; left: -5rem;
	width: 6rem; height: 6rem;
	font-size: 6rem; color: #034091;
	animation: loadingBig 3s linear infinite;
}
@keyframes loadingBig {
	0% {transform: rotate(0deg);}
	100% {transform: rotate(360deg);}
}
.pageLoading .loadingBox .loadingBig:before {
	display: block;
	width: 6rem; height: 6rem;
	display: flex; justify-content: center; align-items: center;
}
.pageLoading .loadingBox .loadingSmall {
	position: absolute; top: 0.8rem; left: 0.2rem;
	width: 4rem; height: 4rem;
	font-size: 4rem; color: #034091;
	transform: rotate(22.5deg);
	animation: loadingSmall 3s linear infinite;
}
@keyframes loadingSmall {
	0% {transform: rotate(22.5deg);}
	100% {transform: rotate(-337.5deg);}
}
.pageLoading .loadingBox .loadingSmall:before {
	display: block;
	width: 4rem; height: 4rem;
	display: flex; justify-content: center; align-items: center;
}
.pageLoading .loadingBox .loadingText {
	position: absolute; top: 6rem; left: 0;
	white-space: nowrap;
	transform: translateX(-50%);
}

/**
 * 不兼容
 */
.unSupport {
	display: none;
	position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 1;
	background-color: #FFF;
}
.unSupport .unSupportBox {
	width: 300px;
	margin: 300px auto; padding: 20px;
	background-color: #F2F2F2;
	border: 1px #D1D1D1 solid;
	text-indent: 2em;
}

/**
 * 页面body体
 */
.body {
	position: fixed; top: 0; left: 0; right: 0; bottom: 0; z-index: 0;
	overflow-x: hidden; overflow-y: auto;
}

/**
 * 头部
 */
header {

}
.topBg {
	height: 38px;
	background-color: #F2F2F2;
}
.top {
	width: 1035px; height: 38px;
	margin: 0 auto;
	color: #6D6D6D;
	display: flex; justify-content: space-between; align-items: center;
}
.top nav a {
	display: inline-block;
	margin: 0 10px;
}
.logo {
	width: 1035px; height: 139px;
	margin: 0 auto;
	display: flex; justify-content: space-between; align-items: center;
}
.logo .phone {
	height: 43px;
	padding-left: 53px;
	background: url(/images/icon/phone.png?v=v1.0.2) no-repeat left;
	display: flex; flex-direction: column; justify-content: space-between; align-items: flex-start;
	line-height: 14px;
}
.logo .phone p:last-child {
	font-size: 28px; color: #034091; font-weight: bold; line-height: 28px;
}
.nav {
	height: 57px;
	background: url(/images/navbg.jpg?v=v1.0.2);
}
.nav .navUl {
	width: 1035px; height: 57px;
	margin: 0 auto;
	display: flex; justify-content: space-between; align-items: center;
}
.nav .navUl > li {
	flex-grow: 1;
	height: 57px;
	position: relative;
}
.nav .navUl > li:first-child {
	background: url(/images/icon/homepage.png?v=v1.0.2) no-repeat 5px;
}
.nav .navUl > li:not(:last-child):after {
	content: "";
	width: 6px;
	height: 0;
	border-bottom: 1px #FFF solid;
	position: absolute; right: -3px; top: 50%;
}
.nav .navUl > li > a {
	width: 100%; height: 57px;
	display: flex; justify-content: center; align-items: center;
	font-size: 16px; color: #FFF; font-weight: 400;
	transition: all 300ms ease-in-out; -webkit-transition: all 300ms ease-in-out;
}
.nav .navUl > li:hover > a {
	color: #87BEFF; font-weight: bold;
}
.nav .navUl .navChildren {
	position: absolute; top: 100%; left: -3px; right: -3px;
	background-color: #0A4592;
	display: none;
}
.nav .navUl .navChildren li {
	height: 50px;
}
.nav .navUl .navChildren li a {
	height: 50px;
	display: flex; justify-content: center; align-items: center;
	font-size: 16px; color: #FFF; font-weight: 400; white-space: nowrap;
	transition: all 500ms ease-in-out; -webkit-transition: all 500ms ease-in-out;
}
.nav .navUl .navChildren li a:hover {
	background-color: #0050D6;
}

/**
 * Banner
 */
.banner {
	background-repeat: no-repeat;
	background-position: center;
	background-size: auto 100%;
	display: flex; justify-content: center; align-items: flex-end;
	transition: background-image 800ms ease-in-out; -webkit-transition: background-image 800ms ease-in-out;
}
.banner mark {
	width: 18px; height: 18px;
	margin: 0 2px 10px 2px;
	border-radius: 50%;
	background-color: #FFF;
	cursor: pointer;
}
.banner mark.current {
	background-color: #F7DE07;
}
/**
 * footer
 */
footer {
	height: 203px;
	background-color: #333;
}
.bottom {
	width: 1035px; height: 203px;
	margin: 0 auto;
	display: flex; justify-content: space-between; align-items: center;
}
.bottom .logo {
	width: 108px; height: 137px;
	background: url(/images/footer_logo.jpg?v=v1.0.2) no-repeat;
}
.bottom .line {
	width: 1px; height: 172px;
	margin-left: 50px;
	background: url(/images/footer_line.jpg?v=v1.0.2) no-repeat;
}
.bottom .footer {
	width: 781px;
	padding: 0 25px;
	font-size: 12px; color: #DFDFDF; line-height: 30px;
	box-sizing: border-box;
}
.bottom .footer a {
	color: #DFDFDF;
}
.bottom .footer a:hover {
	color: #FFF;
}
.bottom .qrcode {
	width: 95px; height: 95px;
}
.bottom .qrcode img {
	display: block;
	width: 100%; height: 100%;
}
/**
 * 客服悬浮窗
 */
.service {
	position: absolute; top: 100px; right: 25px;
	width: 136px;
	background-color: #FFF;
	border-top: 3px #428ADD solid;
	border-radius: 5px;
	box-shadow: 0 0 5px rgba(0,0,0,0.4);
	transition: all 300ms ease-in-out; -webkit-transition: all 300ms ease-in-out;
}
.service.closed {
	right: -136px;
}
.service .bar {
	position: absolute; top: 32px; left: -30px;
	width: 30px; height: 142px;
	padding: 34px 5px 0 5px;
	background: url(/images/service/bar.png?v=v1.0.2) no-repeat;
	font-size: 13px; color: #FFF; text-align: center; line-height: 18px;
	box-sizing: border-box;
	cursor: pointer;
}
.service .bar:after {
	content: "";
	display: block;
	position: absolute; top: 114px; left: 9px;
	width: 12px; height: 12px;
	background: url(/images/service/close.png?v=v1.0.2) no-repeat;
	transition: background-image 300ms ease-in-out; -webkit-transition: background-image 300ms ease-in-out;
}
.service.closed .bar:after {
	background-image: url(/images/service/open.png?v=v1.0.2);
}
.service .services {
	margin: 5px 1px; padding-bottom: 8px;
	background-image: -moz-linear-gradient(top,#EEE 0%,#FFF 100%); 
	background-image: -webkit-gradient(linear,left top,left bottom,color-stop(0%,#EEE),color-stop(100%,#FFF));
	background-image: -webkit-linear-gradient(top,#EEE 0%,#FFF 100%);
	background-image: -o-linear-gradient(top,#EEE 0%,#FFF 100%);
	filter:progid:DXImageTransform.Microsoft.Gradient(GradientType=0,StartColorStr="#EEEEEE",EndColorStr="#FFFFFF");
	background-image: linear-gradient(to bottom,#EEE 0%,#FFF 100%);
	border-top: 1px #E1E1E1 solid;
	border-bottom: 1px #CCC solid;
}
.service .services .qq {
	width: 120px; height: 24px;
	margin: 6px auto 0 auto;
	background: url(/images/service/qq_bg.jpg?v=v1.0.2) no-repeat;
}
.service .services .qq a {
	display: block;
	height: 24px;
	padding-left: 45px;
	background: url(/images/service/qq.png?v=v1.0.2) no-repeat 9px;
	font-size: 12px; line-height: 24px;
}
.service .services .feedback {
	width: 123px; height: 30px;
	margin: 6px auto 0 auto;
	background: #459AFA url(/images/service/message.png?v=v1.0.2) no-repeat left bottom;
	border-radius: 2px;
}
.service .services .feedback:hover {
	background-color: #FB9108;
}
.service .services .feedback a {
	display: block;
	height: 30px;
	padding-left: 42px;
	font-size: 14px; color: #FFF; font-weight: bold; line-height: 30px;
}
.service .services .share {
	width: 123px; height: 30px;
	margin: 6px auto 0 auto;
	background: #459AFA url(/images/service/air.png?v=v1.0.2) no-repeat left bottom;
	border-radius: 2px;
}
.service .services .share:hover,
.service .services .share.current {
	background-color: #FB9108;
}
.service .services .share a {
	display: block;
	height: 30px;
	padding-left: 42px;
	font-size: 14px; color: #FFF; font-weight: bold; line-height: 30px;
}
.service .qrcode {
	padding: 8px;
	text-align: center;
}
.service .qrcode img {
	display: block;
	width: 100px; height: 100px;
	margin: 0 auto;
}
.service .qrcode:after {
	content: "扫描二维码";
	font-size: 12px; color: #333; line-height: 30px;
}
.service .shares {
	display: none;
	position: absolute; top: 32px; left: -90px;
	width: 60px;
	padding: 3px;
	background-color: #FFF;
	border: 1px #E9E9E9 solid;
	box-sizing: border-box;
}
.service .shares .shareTitle {
	height: 46px;
	padding: 0 5px;
	background-color: #F6F6F6;
	border-bottom: 1px #E9E9E9 solid;
	display: flex; justify-content: space-between; align-items: center;
	font-size: 12px; color: #666; font-weight: bold;
}
.service .shares .shareTitle span {
	font-size: 18px; color: #666; font-weight: bold;
	transform: rotate(45deg); -webkit-transform: rotate(45deg);
	cursor: pointer;
}
.service .shares .shareList {
	padding: 10px 6px;
	display: flex; flex-wrap: wrap; justify-content: space-between; align-items: flex-start;
}
.service .shares .shareList a {
	margin: 4px 0; padding-left: 16px;
}