.home-sec * {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.home-sec {
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
}

.inner-width {
	width: 1200px;
	margin: 0 auto;
}

.home-sec {
	margin: 0 auto;
}

.animate-item {
	transform: translateY(80px) scale(.96);
	opacity: 0;
	transition: all 1s ease .2s;
}

.animate-item.show {
	transform: translateY(0) scale(1);
	opacity: 1;
}

.animate-item.static-show {
	transform: translateY(0) scale(1);
	opacity: 1;
	transition: unset;
}

.home-sec-title {
	height: 42px;
	line-height: 42px;
	color: #3B426B;
	font-size: 30px;
	font-weight: bold;
	text-align: center;
}

.home-sec-desc {
	margin-top: 20px;
	height: 28px;
	line-height: 28px;
	font-size: 20px;
	text-align: center;
	color: #3B426B;
}/* 轮播 */a:hover {
	-webkit-transition: initial;
	-o-transition: initial;
	transition: initial
}

.swiper-container2 a {
	width: 100%;
	background-position: center !important;
}

.swiper-container2 a img {
	margin: 0 auto;
}/* 渠道/场景介绍 */.scenarios {
	height: 1009px;
	background: #F7FAFF;
	padding-top: 80px;
}

.scenarios .scenarios-desc {
	position: relative;
	margin-top: 70px;
	width: 100%;
}

.scenarios .scenarios-desc .img {
	display: block;
	margin: 0 auto;
}

.scenarios .scenarios-part {
	position: absolute;
	z-index: 10;
	width: 250px;
	height: 250px;
	background: rgba(255, 255, 255, 0.8);
	-webkit-box-shadow: 0px 8px 20px rgba(26, 58, 129, 0.1);
	box-shadow: 0px 8px 20px rgba(26, 58, 129, 0.1);
	border-radius: 10px;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	padding-top: 24px;
	padding-left: 24px;
	-webkit-animation: scenarios 2s infinite forwards alternate;
	animation: scenarios 2s infinite forwards alternate;
}

.scenarios .scenarios-part .part-title {
	height: 28px;
	line-height: 28px;
	font-weight: bold;
	font-size: 20px;
	color: #3B426B;
}

.scenarios .scenarios-part .part-desc {
	height: 20px;
	line-height: 20px;
	font-size: 14px;
	color: #3B426B;
	margin-top: 4px;
}

.scenarios .scenarios-part .part-ls {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	margin-top: 24px;
}

.scenarios .scenarios-part .part-item {
	position: relative;
	-webkit-box-sizing: border-box;
	box-sizing: border-box;
	width: 112px;
	height: 24px;
	line-height: 24px;
	padding-left: 20px;
	font-size: 14px;
	color: #585E81;
	font-weight: bold;
	margin-bottom: 10px;
}

.scenarios .scenarios-part .part-item::before {
	content: '';
	position: absolute;
	left: 0;
	top: 9px;
	width: 6px;
	height: 6px;
	border-radius: 6px;
	background: #FB6638;
}

.scenarios .scenarios-part.client {
	left: 0;
	top: 28px;
}

.scenarios .scenarios-part.operate {
	right: 0;
	top: 28px;
}

.scenarios .scenarios-part.join {
	left: 0;
	top: 420px;
}

.scenarios .scenarios-part.manage {
	right: 0;
	top: 420px;
}

@-webkit-keyframes scenarios {
	0% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	100% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
}

@keyframes scenarios {
	0% {
		-webkit-transform: translateY(-10px);
		transform: translateY(-10px);
	}

	100% {
		-webkit-transform: translateY(10px);
		transform: translateY(10px);
	}
}/* 多行业解决方案 */.business {
	padding-top: 86px;
	height: 720px;
	position: relative;
	overflow: hidden;
}

.business-bg {
	position: absolute;
	z-index: 0;
	width: 100vw;
	min-width: 1980px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.business .inner-width {
	position: relative;
	z-index: 1;
}

.business .home-sec-title {
	color: #ffffff;
	height: 54px;
	line-height: 54px;
}

.business-container {
	position: relative;
	margin-top: 56px;
}

.business-container .business-tabbar {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	border-bottom: 1px solid rgba(255, 255, 255, .2);
}

.business-container .tab-item {
	height: 60px;
	padding: 0 22px;
	position: relative;
	font-size: 16px;
	color: #ffffff;
	line-height: 60px;
	cursor: pointer;
	font-weight: bold;
	white-space: nowrap;
}

.business-container .tab-item::before {
	content: '';
	position: absolute;
	bottom: 0;
	left: 0;
	height: 4px;
	width: 0;
	background: #FB6638;
	-webkit-transition: width .2s ease;
	-o-transition: width .2s ease;
	transition: width .2s ease;
}

.business-container .tab-item.active::before {
	width: 100%;
}

.business-container .business-descbox {
	position: absolute;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	left: 0;
	top: 60px;
	width: 1200px;
	opacity: 0;
	padding-top: 60px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
	-webkit-transition: opacity .8s ease;
	-o-transition: opacity .8s ease;
	transition: opacity .8s ease;
}

.business-container .business-descbox.active {
	opacity: 1;
	z-index: 1;
	padding-top: 60px;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.business-container .business-descbox-info .business-title {
	height: 48px;
	line-height: 48px;
	font-size: 24px;
	color: #ffffff;
	margin-bottom: 18px;
}

.business-container .business-descbox-info .business-desc {
	line-height: 30px;
	font-size: 16px;
	color: #ffffff;
	width: 700px;
	margin-bottom: 22px;
}

.business-container .business-descbox-info .business-desc.wholesaler::first-line, .business-container .business-descbox-info .business-desc.group::first-line {
	font-weight: bold;
	font-size: 18px;
}

.business-container .business-descbox-info .business-desc.group {
	width: 760px;
}

.business-container .business-feat {
	margin-top: 60px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
}

.business-container .business-feat-item {
	margin-right: 30px;
	width: 115px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.business-container .business-feat-item .business-feat-iconbox {
	width: 50px;
	height: 50px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.business-container .business-feat-item .business-feat-icon {
	display: block;
}

.business-container .business-feat-item .business-feat-title {
	height: 26px;
	font-size: 14px;
	line-height: 26px;
	color: #fff;
	text-align: center;
	margin-top: 32px;
	white-space: nowrap;
}

.business-container .business-descbox-img {
	width: 360px;
	height: 290px;
	overflow: hidden;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	border-radius: 10px;
}

.business-container .business-descbox-img .img {
	display: block;
	-webkit-transition: -webkit-transform .6s ease;
	transition: -webkit-transform .6s ease;
	-o-transition: transform .6s ease;
	transition: transform .6s ease;
	transition: transform .6s ease, -webkit-transform .6s ease;
}

.business-container .business-descbox-img .img:hover {
	-webkit-transform: scale(1.04);
	-ms-transform: scale(1.04);
	transform: scale(1.04);
}/* 多终端 */.client {
	padding-top: 80px;
	height: 767px;
	position: relative;
	overflow: hidden;
	background: -webkit-gradient(linear, left top, left bottom, color-stop(65.56%, #F2F7FF), to(#fff));
	background: -webkit-linear-gradient(top, #F2F7FF 65.56%, #fff 100%);
	background: -o-linear-gradient(top, #F2F7FF 65.56%, #fff 100%);
	background: linear-gradient(to bottom, #F2F7FF 65.56%, #fff 100%);
}

.client .client-bg {
	position: absolute;
	z-index: 0;
	width: 100vw;
	min-width: 1980px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
}

.client .inner-width {
	position: relative;
	z-index: 1;
}

.client .client-img {
	display: block;
	margin: 80px auto 0;
}/* 特色功能 */.feature {
	padding-top: 40px;
	height: 864px;
	background: #ffffff;
}

.feature .feat-ls {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.feature .feat-ls:first-of-type {
	margin-top: 70px;
}

.feature .feat-item {
	width: 240px;
	text-align: center;
	margin-bottom: 50px;
}

.feature .feat-item .feat-icon {
	width: 132px;
	height: 160px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin: 0 auto;
}

.feature .feat-item .feat-icon .feat-img {
	display: block;
}

.feature .feat-item .feat-title {
	line-height: 30px;
	font-size: 20px;
	color: #3B426B;
	margin-top: 30px;
}

.feature .feat-item .feat-desc {
	line-height: 24px;
	font-size: 14px;
	color: #585E81;
	margin-top: 10px;
}/* 多业务场景 */.situation {
	padding-top: 40px;
	height: 796px;
	overflow-x: hidden;
}

.situation .swiper-tab {
	margin-top: 72px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.situation .swiper-tabitem {
	padding: 0 15px;
	line-height: 58px;
	margin: 0 41px;
	position: relative;
	font-size: 20px;
	font-weight: bold;
	color: #3B426B;
	cursor: pointer;
}

.situation .swiper-tabitem::before {
	content: '';
	width: 0;
	height: 3px;
	background: #fb6638;
	position: absolute;
	bottom: 0;
	left: 0;
	-webkit-transition: width .3s ease;
	-o-transition: width .3s ease;
	transition: width .3s ease;
}

.situation .swiper-tabitem.active::before {
	width: 100%;
}

.situation .swiper-box {
	position: relative;
	width: 1200px;
	height: 438px;
	margin: 50px auto 0;
}

.situation .swiper-box .before, .situation .swiper-box .after {
	height: 438px;
	width: 999em;
	content: '';
	position: absolute;
	top: 0;
	right: 1200px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	overflow: hidden;
	z-index: 20;
	cursor: pointer;
}

.situation .swiper-box .after {
	left: 1200px;
}

.situation .swiper-box .before::before, .situation .swiper-box .after::before {
	content: '';
	display: block;
	width: 1200px;
	height: 438px;
	background: -webkit-gradient(linear, left top, right top, from(rgba(255, 255, 255, 0)), color-stop(26.74%, #FFFFFF));
	background: -webkit-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #FFFFFF 26.74%);
	background: -o-linear-gradient(left, rgba(255, 255, 255, 0) 0%, #FFFFFF 26.74%);
	background: linear-gradient(to right, rgba(255, 255, 255, 0) 0%, #FFFFFF 26.74%);
}

.situation .swiper-box .before::after, .situation .swiper-box .after::after {
	content: '';
	display: block;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	height: 438px;
	background: #ffffff;
}

.situation .swiper-box .before::before {
	width: unset;
	-webkit-box-flex: 1;
	-webkit-flex: 1;
	-ms-flex: 1;
	flex: 1;
	background: #ffffff;
}

.situation .swiper-box .before::after {
	width: 1200px;
	-webkit-box-flex: unset;
	-webkit-flex: unset;
	-ms-flex: unset;
	flex: unset;
	background: -webkit-gradient(linear, right top, left top, from(rgba(255, 255, 255, 0)), color-stop(26.74%, #FFFFFF));
	background: -webkit-linear-gradient(right, rgba(255, 255, 255, 0) 0%, #FFFFFF 26.74%);
	background: -o-linear-gradient(right, rgba(255, 255, 255, 0) 0%, #FFFFFF 26.74%);
	background: linear-gradient(to left, rgba(255, 255, 255, 0) 0%, #FFFFFF 26.74%);
}

.situation .swiper-vessel {
	width: 3680px;
	height: 438px;
	-webkit-transition: left .8s ease;
	-o-transition: left .8s ease;
	transition: left .8s ease;
	position: absolute;
	top: 0;
	left: -1240px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.situation .occupy-item-right, .situation .occupy-item-left {
	position: absolute !important;
	top: 0;
	right: -1240px;
}

.situation .occupy-item-left {
	left: -1240px;
}

.situation .swiper-vessel-item {
	width: 1200px;
	height: 438px;
	position: relative;
	overflow: hidden;
	border-radius: 10px;
	padding: 53px 70px 0;
}

.situation .swiper-vessel-item .swiper-bg {
	position: absolute;
	display: block;
	top: 0;
	left: 0;
	z-index: 0;
}

.situation .swiper-vessel-item::before {
	content: '';
	z-index: 1;
	position: absolute;
	width: 1200px;
	height: 438px;
	background: rgba(251, 102, 56, 0.9);
	top: 0;
	left: 0;
}

.situation .situation-intro {
	position: relative;
	z-index: 10;
}

.situation .situation-title {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	height: 37px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 24px;
	color: #fff;
}

.situation .situation-title .situation-icon {
	display: block;
	margin-right: 16px;
}

.situation .situation-desc {
	margin-top: 20px;
	line-height: 28px;
	font-size: 16px;
	color: #fff;
}

.situation .situation-ls {
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 34px;
}

.situation .situation-item {
	line-height: 46px;
	font-size: 20px;
	color: #fff;
	width: 260px;
}

.situation .situation-more {
	position: absolute;
	z-index: 1;
	border-radius: 4px;
	background: #fff;
	bottom: 40px;
	right: 70px;
	width: 120px;
	height: 44px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 16px;
	font-weight: bold;
	color: #fb6638;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
}

.situation .situation-more:hover {
	background: #fff4f0;
}/* 营销活动 */.sales {
	padding-top: 80px;
	height: 819px;
	background: #F5F9FF;
	position: relative;
}

.sales .sales-bg-left {
	position: absolute;
	z-index: 0;
	left: 0;
	bottom: 0;
}

.sales .sales-bg-right {
	position: absolute;
	z-index: 0;
	right: 0;
	top: 0;
}

.sales .sales-box {
	width: 1200px;
	height: 453px;
	position: relative;
	z-index: 1;
	margin-top: 70px;
}

.sales .sales-box .sales-vessel {
	width: 1200px;
	height: 453px;
	position: absolute;
	top: 0;
	left: 0;
	opacity: 0;
	-webkit-transition: opacity .6s ease;
	-o-transition: opacity .6s ease;
	transition: opacity .6s ease;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-flex-wrap: wrap;
	-ms-flex-wrap: wrap;
	flex-wrap: wrap;
}

.sales .sales-box .sales-vessel.active {
	opacity: 1;
	z-index: 1;
}

.sales .sales-box .sales-item {
	width: 380px;
	height: 131px;
	border-radius: 10px;
	background: #fff;
	-webkit-transition: -webkit-box-shadow .2s ease;
	transition: -webkit-box-shadow .2s ease;
	-o-transition: box-shadow .2s ease;
	transition: box-shadow .2s ease;
	transition: box-shadow .2s ease, -webkit-box-shadow .2s ease;
	padding: 22px 20px;
	margin-bottom: 20px;
	margin-right: 30px;
}

.sales .sales-box .sales-item:nth-of-type(3n) {
	margin-right: 0;
}

.sales .sales-box .sales-item:hover {
	-webkit-box-shadow: 0px 8px 20px rgba(26, 58, 129, 0.1);
	box-shadow: 0px 8px 20px rgba(26, 58, 129, 0.1);
}

.sales .sales-box .sales-item .sales-title {
	height: 38px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	font-size: 20px;
	color: #3B426B;
}

.sales .sales-box .sales-item .sales-title .sales-iconbox {
	width: 38px;
	height: 38px;
	margin-right: 12px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
}

.sales .sales-box .sales-item .sales-title .sales-icon {
	display: block;
}

.sales .sales-box .sales-item .sales-desc {
	margin-top: 12px;
	line-height: 32px;
	color: #585E81;
	font-size: 14px;
}

.sales-btn {
	width: 40px;
	height: 80px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	opacity: 1;
	-webkit-transition: all .2s ease;
	-o-transition: all .2s ease;
	transition: all .2s ease;
	position: absolute;
	top: 180px;
	right: -60px;
	border-radius: 4px;
	cursor: pointer;
}

.sales-btn.sales-btn-left {
	left: -60px;
	-webkit-transform: rotate(180deg);
	-ms-transform: rotate(180deg);
	transform: rotate(180deg)
}

.sales-btn:hover {
	transform: scale(1.06);
}

.sales-btn.sales-btn-left:hover {
	transform: rotate(180deg) scale(1.06);
}

.sales-btn.forbid {
	opacity: 0;
	cursor: unset;
}

.sales-more-btn {
	width: 190px;
	height: 44px;
	border-radius: 4px;
	background: #fb6638;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	color: #ffffff;
	font-size: 16px;
	-webkit-transition: background .2s ease;
	-o-transition: background .2s ease;
	transition: background .2s ease;
	margin: 50px auto 0;
	position: relative;
	z-index: 10;
}

.sales-more-btn:hover {
	background: #FF774E;
	color: #fff;
}/* 服务 */.service {
	height: 647px;
	padding-top: 80px;
	position: relative;
	overflow: hidden;
}

.service-bg {
	position: absolute;
	z-index: 0;
	width: 100vw;
	min-width: 1980px;
	top: 50%;
	left: 50%;
	-webkit-transform: translate(-50%, -50%);
	-ms-transform: translate(-50%, -50%);
	transform: translate(-50%, -50%);
	-webkit-transition: all .5s ease;
	-o-transition: all .5s ease;
	transition: all .5s ease;
}

.service .inner-width {
	position: relative;
	z-index: 1;
}

.service .inner-width .home-sec-title {
	color: #fff;
}

.service-container {
	width: 1200px;
	height: 343px;
	position: relative;
}

.service-vessel {
	background: rgba(255, 255, 255, 0.15);
	width: 1200px;
	height: 343px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	margin-top: 70px;
}

.service-item {
	width: 300px;
	height: 343px;
	padding-top: 64px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-orient: vertical;
	-webkit-box-direction: normal;
	-webkit-flex-direction: column;
	-ms-flex-direction: column;
	flex-direction: column;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
}

.service-iconbox {
	height: 72px;
	width: 72px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	margin-bottom: 6px;
}

.service-iconbox .service-icon {
	display: block;
}

.service-title {
	height: 60px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	position: relative;
	font-size: 22px;
	color: #fff;
}

.service-title::before {
	content: '';
	position: absolute;
	width: 40px;
	height: 4px;
	background: #fb6638;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	bottom: -4px;
}

.service-desc {
	margin-top: 35px;
	line-height: 25px;
	font-size: 16px;
	color: #fff;
	width: 220px;
	text-align: center;
}

.service-active-vessel {
	background: #fb6638;
	margin-top: 0;
}

.service-active-vessel .service-title::before {
	background: #fff;
}

.service-slider {
	position: absolute;
	-webkit-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
	top: 0;
	left: 0;
	width: 300px;
	height: 343px;
	overflow: hidden;
}

.service-slider .service-active-vessel {
	position: absolute;
	top: 0;
	left: 0;
	-webkit-transition: all .8s ease;
	-o-transition: all .8s ease;
	transition: all .8s ease;
}/* 产品体验 */.exper {
	height: 594px;
	padding-top: 80px;
	position: relative;
	background: #F5F9FF;
}

.exper-bg-left {
	position: absolute;
	left: 0;
	top: 0;
}

.exper-bg-right {
	position: absolute;
	right: 0;
	bottom: 0;
}

.exper-container {
	padding-top: 68px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.exper-btnbox {
	padding-top: 32px;
}

.exper-btnbox .exper-btn {
	width: 220px;
	height: 50px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	background: #fb6638;
	border-radius: 4px;
	font-size: 16px;
	color: #ffffff;
	-webkit-transition: background .2s ease;
	-o-transition: background .2s ease;
	transition: background .2s ease;
	margin-bottom: 30px;
}

.exper-btnbox .exper-btn:hover {
	background: #FF774E;
}

.exper-btnbox .tips {
	line-height: 24px;
	font-size: 14px;
	color: #585E81;
}

.exper-qrcodebox {
	width: 784px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.exper-qrcodebox .exper-qrcode-box {
	width: 180px;
	height: 180px;
	border-radius: 20px;
	background: #ffffff;
	-webkit-box-shadow: 0px 8px 20px rgba(26, 58, 129, 0.1);
	box-shadow: 0px 8px 20px rgba(26, 58, 129, 0.1);
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	margin-bottom: 30px;
	overflow: hidden;
}

.exper-qrcodebox .exper-qrcode {
	display: block;
	width: 160px;
}

.exper-qrcode-name {
	width: 126px;
	height: 44px;
	border-radius: 100px;
	background: #FFE8E1;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	-webkit-box-pack: center;
	-webkit-justify-content: center;
	-ms-flex-pack: center;
	justify-content: center;
	font-size: 16px;
	font-weight: bold;
	color: #FB6638;
	margin: 0 auto;
}/* 技术支持 */.servicedata {
	padding-top: 80px;
	height: 655px;
	overflow: hidden;
	position: relative;
	background: -webkit-gradient(linear, left top, left bottom, from(#272336), color-stop(87.3%, #393949));
	background: -webkit-linear-gradient(top, #272336 0%, #393949 87.3%);
	background: -o-linear-gradient(top, #272336 0%, #393949 87.3%);
	background: linear-gradient(180deg, #272336 0%, #393949 87.3%);
}

.servicedata .servicedata-bg {
	position: absolute;
	top: 0;
	left: 50%;
	-webkit-transform: translateX(-50%);
	-ms-transform: translateX(-50%);
	transform: translateX(-50%);
	z-index: 0;
}

.servicedata .inner-width {
	position: relative;
	z-index: 1;
}

.servicedata .home-sec-title {
	color: #ffffff;
}

.servicedata-container {
	margin-top: 95px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-justify-content: space-around;
	-ms-flex-pack: distribute;
	justify-content: space-around;
	padding: 0 70px;
}

.service-data {
	width: 200px;
}

.service-data-num {
	font-size: 40px;
	font-weight: bold;
	line-height: 56px;
	color: #9AAFFF;
	margin-bottom: 30px;
}

.service-data-title {
	font-size: 20px;
	line-height: 24px;
	color: #ffffff;
}/* 咨询 */.news {
	height: 720px;
	padding-top: 80px;
}

.news-container {
	margin-top: 70px;
	display: -webkit-box;
	display: -webkit-flex;
	display: -ms-flexbox;
	display: flex;
	-webkit-box-pack: justify;
	-webkit-justify-content: space-between;
	-ms-flex-pack: justify;
	justify-content: space-between;
}

.news-ls {
	width: 370px;
}

.news-header {
	width: 370px;
	height: 160px;
	overflow: hidden;
	position: relative;
	border-radius: 4px;
	padding-left: 30px;
}

.news-header::before {
	content: '';
	width: 100%;
	height: 100%;
	background: -webkit-gradient(linear, left top, right top, color-stop(14.03%, rgba(0, 0, 0, 0.26)), to(rgba(0, 0, 0, 0)));
	background: -webkit-linear-gradient(left, rgba(0, 0, 0, 0.26) 14.03%, rgba(0, 0, 0, 0) 100%);
	background: -o-linear-gradient(left, rgba(0, 0, 0, 0.26) 14.03%, rgba(0, 0, 0, 0) 100%);
	background: linear-gradient(90deg, rgba(0, 0, 0, 0.26) 14.03%, rgba(0, 0, 0, 0) 100%);
	position: absolute;
	top: 0;
	left: 0;
	z-index: 1;
}

.news-header .news-header-bg {
	position: absolute;
	z-index: 0;
	top: 0;
	left: 0;
	-webkit-transition: -webkit-transform .6s ease;
	transition: -webkit-transform .6s ease;
	-o-transition: transform .6s ease;
	transition: transform .6s ease;
	transition: transform .6s ease, -webkit-transform .6s ease;
}

.news-ls:hover .news-header-bg {
	-webkit-transform: scale(1.06);
	-ms-transform: scale(1.06);
	transform: scale(1.06);
}

.news-header-title, .news-header-subtitle {
	position: relative;
	z-index: 2;
	color: #fff;
}

.news-header-title {
	margin-top: 52px;
	line-height: 31px;
	font-size: 22px;
}

.news-header-subtitle {
	margin-top: 6px;
	line-height: 22px;
	font-size: 16px;
}

.news-classify {
	margin-top: 30px;
	line-height: 28px;
	font-size: 20px;
	color: #3B426B;
	font-weight: bold;
}

.news-recommend {
	margin-top: 30px;
}

.news-recommend .news-title {
	height: 46px;
	position: relative;
	padding-left: 20px;
	width: 370px;
	font-weight: normal;
}

.news-recommend .news-title .arrow {
	position: absolute;
	top: 50%;
	-webkit-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	transform: translateY(-50%);
	left: 0;
	-webkit-transition: left .2s ease;
	-o-transition: left .2s ease;
	transition: left .2s ease;
}

.news-recommend .news-title .title-link {
	display: block;
	line-height: 46px;
	-webkit-box-align: center;
	-webkit-align-items: center;
	-ms-flex-align: center;
	align-items: center;
	width: 100%;
	height: 100%;
	overflow: hidden;
	-o-text-overflow: ellipsis;
	text-overflow: ellipsis;
	white-space: nowrap;
	font-size: 16px;
	color: #585E81;
	-webkit-transition: color .2s ease;
	-o-transition: color .2s ease;
	transition: color .2s ease;
}

.news-recommend .news-title:hover .title-link {
	color: #fb6638;
}

.news-recommend .news-title:hover .arrow {
	left: 4px;
}