body {
	min-width: 1200px;
	background-color: #fff;
	margin: 0px;
	padding: 0px;
	color: rgb(102, 102, 102);
	font-family: "Helvetica Neue", "PingFangSC-regular", "Hiragino Sans GB", "Arial", "Times New Roman", "Microsoft YaHei", "WenQuanYi Micro Hei", " sans-serif";
	font-size: 14px;
}

* {
	padding: 0;
	margin: 0;
	box-sizing: border-box;
	text-decoration: none;
	list-style: none;
}

a {
	cursor: pointer;
	color: initial;
}

/*region 按钮*/
[class*='wbtn-'] {
	height: 32px;
	line-height: 30px;
	padding: 0 18px;
	border-radius: 3px;
	font-size: 14px;
	border-color: transparent;
	border-style: solid;
	border-width: 1px;
	background-color: transparent;
	display: inline-block;
	cursor: pointer;
	text-align: center;
	min-width: 74px;
}

.wbtn-blue {
	background-color: #366CB3;
	border-color: #366CB3;
	color: #ffffff;
}

.wbtn-aaa {
	background-color: #fff;
	border-color: #fff;
	color: #366CB3;
}

.wbtn-blue2 {
	background-color: #fff;
	border-color: #366cb3;
	color: #366CB3;
}

.wbtn-green {
	background-color: #fff;
	border-color: #fff;
	color: #366CB3;
}

.wbtn-white {
	border-color: #ffffff;
	color: #ffffff;
}

/*endregion*/
/*region 顶部header*/
.header {
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	right: 0;
	width: 100%;
	padding: 10px 60px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: space-between;
}

.header .head-left {
	width: 128px;
	height: 32px;
	display: inline-block;
	background: url("../images/logo.png")center center no-repeat;
	background-size: 128px 32px;
}

.header .head-right {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: flex-end;
	flex: 1;
}

.header .head-right .head-nav {
	display: -webkit-box;
	overflow-x: auto;
	max-width: calc(100% - 290px);
}

/*滚动条样式*/
.header .head-right .head-nav::-webkit-scrollbar {
	height: 7px;
	width: 7px;
	background-color: #F6F6F6;
}

.header .head-right .head-nav::-webkit-scrollbar-thumb {
	width: 7px;
	height: 7px;
	border-radius: 3px;
	background-color: #E9E9E9;
}

.header .head-right .head-nav::-webkit-scrollbar {
	background-color: transparent;
}

.header .head-right .head-nav li {
	display: flex;
	display: -webkit-flex;
	line-height: 40px;
	height: 40px;
	align-items: center;
	justify-content: center;
	cursor: pointer;
	font-size: 15px;
	font-weight: bold;
	position: relative;
	margin: 0 20px;
	float: left;
}

.header .head-right .head-nav li a {
	color: #ffffff;
}

.header .head-right .head-nav li.active:after {
	position: absolute;
	z-index: 1;
	bottom: 0;
	left: calc(50% - 12px);
	width: 24px;
	height: 2px;
	background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(255, 255, 255, 1) 100%);
	content: '';
}

.header .head-right .head-login {
	padding-left: 10px;
}

.header .head-right .head-login .wbtn-green {
	margin-right: 15px;
}

.header .head-right .head-login .wbtn-green:last-child {
	margin-right: 0;
}

.header.skin-white {
	background-color: #ffffff;
}

.header.skin-2 {
	background-color: #ffffff;
	box-shadow: rgba(69, 71, 77, 0.2) 0px 1px 10px 0px;
}

.header.skin-2 .head-login .wbtn-white{
	border-color: #366CB3;
	color: #366CB3;
}

.header.skin-2 .head-login .wbtn-aaa{
	background-color: #366CB3;
	    border-color: #366CB3;
	    color: #ffffff;
}

.header.skin-2 .head-left,
.header.skin-white .head-left {
	background: url("../images/logo_2.png")center center no-repeat;
	background-size: 128px 32px;
}

.header.skin-2 .head-right .head-nav li a,
.header.skin-white .head-right .head-nav li a {
	color: #333;
}

.header.skin-2 .head-right .head-nav li.active a,
.header.skin-white .head-right .head-nav li.active a {
	color: #1A8FFC;
}

.header.skin-2 .head-right .head-nav li.active:after,
.header.skin-white .head-right .head-nav li.active:after {
	background: linear-gradient(270deg, rgba(255, 255, 255, 0) 0%, rgba(26, 143, 252, 1) 100%);
}

.index-mobile .header {
	display: none;
}

/*endregion*/
/*region 手机端显示header*/
.mobile-header {
	display: none;
	width: 100%;
	height: 2.5rem;
	align-items: center;
	justify-content: space-between;
	vertical-align: middle;
	position: fixed;
	z-index: 999;
	top: 0;
	left: 0;
	padding: 0 .75rem;
	background-color: #ffffff;
	box-shadow: rgba(69, 71, 77, 0.2) 0px 1px 10px 0px;
}

.mobile-header img {
	width: 4rem;
	vertical-align: middle;
}

.mobile-header a {
	width: 3rem;
	height: 1.5rem;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	font-size: .6rem;
	color: #FFFFFF;
	border-radius: .75rem;
	background-color: #1A8FFC;
}

.index-mobile .mobile-header {
	display: flex;
	display: -webkit-flex;
}

/*endregion*/
/*region 右侧公共客服列表*/
.right-service {
	position: fixed;
	z-index: 1000;
	right: 10px;
	top: calc(50% - 190px);
	width: 80px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
}

.right-service li {
	cursor: pointer;
	width: 100%;
}

.right-service li .float-div {
	background-color: #1A8FFC;
	border-radius: 4px;
	height: 90px;
	margin: 1px auto;
	width: 68px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
	position: relative;
}

.right-service li .float-div p {
	color: #ffffff;
	font-size: 14px;
	margin-top: 5px;
}

.right-service li [class*='rsicon-'] {
	display: inline-block;
	vertical-align: middle;
}

.rsicon-weixin {
	width: 34px;
	height: 28px;
	background: url("../images/weixin.png")center center no-repeat;
	background-size: 34px 28px;
}

.rsicon-app {
	width: 29px;
	height: 34px;
	background: url("../images/app.png")center center no-repeat;
	background-size: 29px 34px;
}

.rsicon-qq {
	width: 28px;
	height: 33px;
	background: url("../images/qq.png")center center no-repeat;
	background-size: 28px 33px;
}

.rsicon-jishu {
	width: 28px;
	height: 40px;
	background: url("../images/jishu.png")center center no-repeat;
	background-size: 28px 40px;
}

.right-service .float-layer {
	position: absolute;
	z-index: 1;
	background: rgba(255, 255, 255, 1);
	box-shadow: 0px 3px 6px rgba(0, 0, 0, 0.16);
	border-radius: 8px;
	display: none;
	width: 140px;
	right: 75px;
	text-align: center;
}

.right-service .float-layer:after {
	position: absolute;
	z-index: 1;
	content: '';
	background: url("../images/right_arrow.png")center center no-repeat;
	background-size: 23px 30px;
	width: 23px;
	height: 30px;
	right: -13px;
	top: calc(50% - 15px);
}

.right-service li:hover .float-layer {
	display: inline-block;
}

.right-service li .float-layer.qrcode {
	padding-top: 20px;
}

.right-service li .float-layer.qrcode img {
	width: 100px;
	height: 100px;
	display: inline-block;
	vertical-align: middle;
}

.right-service li .float-layer.qrcode p {
	color: #333333;
	font-size: 12px;
	padding: 10px 0;
	margin-top: 0;
}

.right-service li .float-layer.service {
	padding: 0 14px;
}

.right-service li .float-layer.service .t {
	padding: 12px 0;
	color: #666666;
	font-size: 14px;
	text-align: left;
}

.right-service li .float-layer.service .list a {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	padding-bottom: 10px;
	text-align: left;
}

.right-service li .float-layer.service .list a img {
	width: 19px;
	height: auto;
}

.right-service li .float-layer.service .list a span {
	color: #1A8FFC;
	font-size: 14px;
	margin-left: 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	width: calc(100% - 30px);
}

/*endregion*/
.common-container {
	width: 80%;
	margin: 0 auto;
}

/*region foot-index*/
.foot-index {
	background-color: #366CB3;
	vertical-align: middle;
	height: 348px;
	text-align: center;
	padding: 94px 0;
}

.foot-index .title {
	font-size: 34px;
	color: #FFFFFF;
	font-weight: bold;
}

.foot-index .wbtn-green {
	width: 200px;
	height: 60px;
	margin-top: 55px;
	font-size: 22px;
	border-radius: 35px;
	text-align: center;
	line-height: 59px;
}

/*region 手机端显示*/
.foot-index .title-mobile {
	display: none;
	font-size: 1.1rem;
	color: #ffffff;
	font-weight: bold;
	line-height: 1.55rem;
}

.index-mobile .foot-index .btn-mfsy,
.index-mobile .foot-index .title,
.foot-index .btn-xz {
	display: none;
}

.index-mobile .foot-index {
	height: initial;
	padding: 2rem 0 2.5rem 0;
	background-color: #1A8FFC;
}

.index-mobile .foot-index .title-mobile {
	display: inline-block;
}

.index-mobile .foot-index .btn-xz {
	display: block;
}

.index-mobile .foot-index .btn-xz a {
	background: rgba(255, 255, 255, .2);
	border: 1px solid #ffffff;
	font-size: .85rem;
	font-weight: normal;
	width: 12.5rem;
	height: 2.5rem;
	line-height: 2.5rem;
	margin-top: 1.5rem;
}

/*endregion*/
/*endregion*/
/*region foot-common*/
.foot-common {
	background-color: #35465B;
	vertical-align: middle;
	color: #ffffff;
	text-align: center;
}

.foot-common a {
	color: #ffffff;
}

.foot-common .f-container {
	width: 750px;
	margin: 0 auto;
	padding: 25px 0;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.foot-common .f-container .f-link4,
.foot-common .f-container .f-link3 {
	display: inline-block;
	width: 100%;
	padding: 15px 0;
}

.foot-common .f-container .f-link4 a,
.foot-common .f-container .f-link3 a {
	text-align: center;
	float: left;
}

.foot-common .f-container .f-link4 a {
	width: 25%;
}

.foot-common .f-container .f-link3 a {
	width: 33.33333%;
}

.foot-common .f-container .f-link3 a:first-child {
	text-align: left;
	padding-left: 5%;
}

.foot-common .f-container .f-link3 a:last-child {
	text-align: right;
	padding-right: 5%;
}

.foot-common .friends-copyright {
	border-top: 1px solid rgba(255, 255, 255, 0.5);
	height: 85px;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	flex-direction: column;
}

.foot-common .friends-copyright .f-friends a {
	margin: 0 3px;
	cursor: pointer;
}

.foot-common .friends-copyright .f-copyright {
	margin-top: 0px;
}

.foot-common .f-container .f-link4 a:hover,
.foot-common .friends-copyright .f-friends a:hover {
	font-weight: bold;
}

.index-mobile .foot-common {
	display: none;
}

/*endregion*/
/*region 手机端显示 foot-common*/
.foot-common-mobile {
	display: none;
}

.foot-common-mobile .f-container {
	background-color: #5E616F;
	padding: 1.5rem 1rem 1.7rem 1rem;
	text-align: left;
}

.foot-common-mobile .f-container .t {
	margin-bottom: .5rem;
}

.foot-common-mobile .f-container .t a {
	color: #FFFFFF;
	font-size: .85rem;
	font-weight: bold;
}

.foot-common-mobile .f-container .c a {
	color: #FFFFFF;
	font-size: .7rem;
	margin-right: 1.25rem;
}

.foot-common-mobile .f-container .c a:last-child {
	margin-right: 0;
}

.foot-common-mobile .f-copyright {
	background-color: #42444D;
	color: #ffffff;
	font-size: .55rem;
	line-height: .75rem;
	padding: .75rem 0;
}

.index-mobile .foot-common-mobile {
	display: block;
	text-align: center;
}

/*endregion*/
/*region 手机端显示*/
.html-font-20 {
	font-size: 20px;
}

.index-mobile {
	min-width: initial;
}

/*endregion*/
/*region 进度条*/
.loading-layer {
	background-color: #ffffff;
	position: fixed;
	z-index: 9999999999;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
}

@-webkit-keyframes scale {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	45% {
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
		opacity: 0.7;
	}

	80% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

@keyframes scale {
	0% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}

	45% {
		-webkit-transform: scale(0.1);
		transform: scale(0.1);
		opacity: 0.7;
	}

	80% {
		-webkit-transform: scale(1);
		transform: scale(1);
		opacity: 1;
	}
}

.loading-div>div:nth-child(0) {
	-webkit-animation: scale 0.75s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
	animation: scale 0.75s 0s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.loading-div>div:nth-child(1) {
	-webkit-animation: scale 0.75s 0.12s infinite cubic-bezier(.2, .68, .18, 1.08);
	animation: scale 0.75s 0.12s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.loading-div>div:nth-child(2) {
	-webkit-animation: scale 0.75s 0.24s infinite cubic-bezier(.2, .68, .18, 1.08);
	animation: scale 0.75s 0.24s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.loading-div>div:nth-child(3) {
	-webkit-animation: scale 0.75s 0.36s infinite cubic-bezier(.2, .68, .18, 1.08);
	animation: scale 0.75s 0.36s infinite cubic-bezier(.2, .68, .18, 1.08);
}

.loading-div>div {
	background-color: #1A8FFC;
	width: 15px;
	height: 15px;
	border-radius: 100%;
	margin: 2px;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	display: inline-block;
}

/*endregion*/
/*region 手机端下载页面*/
.body-mobile-download {
	text-align: center;
	min-width: initial;
	width: 100%;
}

.body-mobile-download .app-info {
	margin-top: 1.83rem;
}

.body-mobile-download .app-info .logo {
	width: 4.28rem;
}

.body-mobile-download .app-info .title {
	color: #666666;
	font-size: .85rem;
	margin: .3rem 0 .5rem 0;
}

.body-mobile-download .app-info .desc span {
	color: #999999;
	font-size: .6rem;
	padding: 0 .6rem;
	position: relative;
}

.body-mobile-download .app-info .desc span:after {
	position: absolute;
	z-index: 1;
	top: calc(50% - .3rem);
	width: 1px;
	height: .6rem;
	display: inline-block;
	background-color: #999999;
	content: '';
	right: 0;
}

.body-mobile-download .app-info .desc span:last-child:after {
	display: none;
}

.body-mobile-download .app-btn {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	padding: 1rem;
	margin: .7rem 0 .2rem 0;
}

.body-mobile-download .app-btn a {
	display: flex;
	display: -webkit-flex;
	align-items: center;
	justify-content: center;
	width: calc(50% - .38rem);
	max-width: 8rem;
	height: 2.5rem;
	background-color: #1A8FFC;
	border-radius: .25rem;
}

.body-mobile-download .app-btn a:nth-child(1) {
	margin-right: .38rem;
}

.body-mobile-download .app-btn a:nth-child(2) {
	margin-left: .38rem;
}

.body-mobile-download .app-btn a:nth-child(1) img {
	width: 1.18rem;
}

.body-mobile-download .app-btn a:nth-child(2) img {
	width: 1.12rem;
}

.body-mobile-download .app-btn a span {
	color: #ffffff;
	font-size: .75rem;
	margin-left: .5rem;
}

.body-mobile-download .app-desc-img img {
	width: 12.8rem;
}

/*endregion*/
/*region 右上角分享提示*/
.layer-shade {
	position: fixed;
	_position: absolute;
	z-index: 90;
	top: 0;
	right: 0;
	width: 100%;
	height: 100%;
	_height: expression(document.body.clientHeight);
	background: rgba(0, 0, 0, 0.65);
}

.share-top-tip-layer .share-fixed {
	position: fixed;
	z-index: 102;
	top: .5rem;
	right: 35px;
}

.share-top-tip-layer .share-fixed img {
	width: 282.5px;
}

/*endregion*/
.wxServer {
    height: 30px;
    width: 165px;
    bottom: 30px;
}

.foot-common .f-body {
    margin: 0 auto;
}

.f-body {
    width: 1098px;
	overflow: hidden;
	padding: 50px 0px;
}

.f-body .f-box {
    width: 225px;
	margin-right: 20px!important;
	float: left;
	text-align: left;
}

.f-body .f-box h3{
	font-size: 18px!important;
}

.f-body .f-box h3, .f-body .f-box p {
    color: #fff;
}

.f-body .f-box p {
    margin-top: 15px!important;
}

.mt20 {
    margin-top: 15px!important;
}

.f-body .f-box p a {
    color: #fff;
    opacity: .7;
    transition: .3s ease-out;
}

.f-body .code-div {
    margin-left: 10px;
    width: 108px;
	float: left;
}

.f-body .code-div img {
    width: 108px;
    height: 108px;
}

.f-body .code-div .codeText {
    text-align: center;
    font-size: 13px;
    line-height: 20px;
    margin-top: 10px;
    color: #fff;
    opacity: .5;
}