@-webkit-keyframes ball {
	0% {
		transform: scale(1.3)
	}

	50% {
		transform: scale(1)
	}

	100% {
		transform: scale(1.3)
	}
}

@keyframes ball {
	0% {
		transform: scale(1.3)
	}

	50% {
		transform: scale(1)
	}

	100% {
		transform: scale(1.3)
	}
}

@-webkit-keyframes ball-reverse {
	0% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.3)
	}

	100% {
		transform: scale(1)
	}
}

@keyframes ball-reverse {
	0% {
		transform: scale(1)
	}

	50% {
		transform: scale(1.3)
	}

	100% {
		transform: scale(1)
	}
}

@-webkit-keyframes line {
	0% {
		top: 15%
	}

	100% {
		top: 30%
	}
}

@keyframes line {
	0% {
		top: 15%
	}

	100% {
		top: 30%
	}
}

@-webkit-keyframes robot {
	0% {
		top: 20%
	}

	50% {
		top: 25%
	}

	100% {
		top: 20%
	}
}

@keyframes robot {
	0% {
		top: 20%
	}

	50% {
		top: 25%
	}

	100% {
		top: 20%
	}
}

.banner-wrap {
	width: 100%;
	height: 550px;
	background: url("/assets/images/index_banner.png") no-repeat left top/cover
}

.banner-wrap .banner-box {
	height: 100%;
	display: flex;
	align-items: center;
	position: relative
}

.banner-wrap .banner-box h1 {
	font-size: 36px;
	color: #fff
}

.banner-wrap .banner-box p {
	font-size: 18px;
	line-height: 1.7;
	letter-spacing: 1px;
	color: #fff;
	opacity: .8
}

.banner-wrap .banner-box .banner-right {
	width: 550px;
	height: 100%;
	position: absolute;
	right: 0;
	top: 0;
	text-align: center
}

.banner-wrap .banner-box .banner-right .banner-right-ball1 {
	width: 55px;
	position: absolute;
	top: 30%;
	left: 0;
	-webkit-animation: ball-reverse 2.5s ease-in-out infinite;
	animation: ball-reverse 2.5s ease-in-out infinite
}

.banner-wrap .banner-box .banner-right .banner-right-ball2 {
	width: 55px;
	position: absolute;
	top: 45%;
	left: 10%;
	-webkit-animation: ball 2.5s ease-in-out infinite;
	animation: ball 2.5s ease-in-out infinite
}

.banner-wrap .banner-box .banner-right .banner-right-ball3 {
	width: 55px;
	position: absolute;
	top: 17%;
	left: 66%;
	-webkit-animation: ball-reverse 2.5s ease-in-out infinite;
	animation: ball-reverse 2.5s ease-in-out infinite
}

.banner-wrap .banner-box .banner-right .banner-right-ball4 {
	width: 55px;
	position: absolute;
	top: 26%;
	left: 90%;
	-webkit-animation: ball 2.5s ease-in-out infinite;
	animation: ball 2.5s ease-in-out infinite
}

.banner-wrap .banner-box .banner-right .banner-right-line {
	position: absolute;
	top: 30%;
	left: 0;
	-webkit-animation: line 1s ease-in-out 1;
	animation: line 1s ease-in-out 1
}

.banner-wrap .banner-box .banner-right .banner-right-robot {
	width: 70%;
	position: absolute;
	top: 20%;
	left: 20%;
	-webkit-animation: robot 2.5s ease-in-out infinite;
	animation: robot 2.5s ease-in-out infinite
}

.banner-wrap .banner-box .banner-apply {
	display: block;
	width: 200px;
	height: 50px;
	line-height: 50px;
	margin-top: 30px;
	border-radius: 10px;
	font-size: 18px;
	text-align: center;
	color: #fff;
	transition: all .3s ease-in-out;
	background: linear-gradient(90deg, #fc354c 0%, #ff4e4e 100%)
}

.banner-wrap .banner-box .banner-apply:hover {
	box-shadow: 0 10px 15px 0 rgba(238,77,45,.2)
}

.banner-article-wrap {
	width: 100%;
	height: 100px;
	padding: 28px 0;
	display: flex;
	position: absolute;
	left: 0;
	bottom: -50px;
	z-index: 10;
	border-radius: 10px;
	background-color: #fff;
	box-shadow: 0px 3px 10px rgba(0,0,0,.2)
}

.banner-article-wrap .banner-article {
	flex: 1;
	display: flex;
	align-items: center
}

.banner-article-wrap .banner-article a {
	display: block;
	max-width: 70%;
	margin-left: 18%;
	text-align: center
}

.banner-article-wrap .banner-article a h3 {
	font-size: 18px;
	line-height: 1;
	margin-bottom: 10px;
	color: #333;
	transition: all .1s ease-in-out
}

.banner-article-wrap .banner-article a p {
	font-size: 14px;
	color: #666;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap
}

.banner-article-wrap .banner-article a:hover h3 {
	color: #fc354c
}

.banner-article-wrap .banner-article:nth-child(2) {
	border-left: 1px solid #d5dbe2;
	border-right: 1px solid #d5dbe2
}

.product-wrap {
	overflow: hidden;
	padding-top: 50px;
	background: #f9fafc url("/assets/images/product_wrap_bg.png") no-repeat left top/cover
}

.product-wrap .product-box {
	margin-bottom: 0;
	background-color: #fff;
	box-shadow: 0px 10px 18px rgba(29,63,128,.08)
}

.product-wrap .product-box .product-tab-wrap {
	box-shadow: 0px 10px 18px rgba(26,38,100,.08)
}

.product-tab-box {
	width: 80%;
	margin: 0 auto
}

.product-tab-box .product-tab {
	width: 20%;
	height: 38px;
	line-height: 38px;
	font-size: 16px;
	text-align: center;
	cursor: pointer
}

.product-tab-box .active {
	color: #fff;
	background: linear-gradient(90deg, #fc354c 0%, #ff4e4e 100%)
}

.product-con-wrap {
	padding: 5% 10%
}

.product-con-wrap .product-right {
	width: 50%
}

.product-left {
	width: 50%
}

.product-left .product-left-img {
	width: 35px;
	margin-right: 15px
}

.product-left .product-left-item {
	justify-content: flex-start;
	margin-bottom: 40px
}

.product-left .product-left-item:hover {
	color: #fc354c
}

.product-left .product-left-item h4 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 10px;
	transition: all .1s ease-in-out
}

.product-left .product-left-item p {
	font-size: 14px;
	color: #999
}

.product-left .product-left-item:last-child {
	margin-bottom: 0
}

.product-left a {
	color: #f54c49
}

.product-left a i {
	vertical-align: middle;
	font-size: 14px;
	margin-left: 2px;
	transition: all .3s ease-in-out
}

.product-left a:hover i {
	margin-left: 8px
}

.webchat-wrap {
	background: #fff url("/assets/images/index_webchat_bg.png") no-repeat left top/cover
}

.webchat-wrap .webchat-box {
	max-width: 1080px;
	margin-bottom: 0;
	display: flex;
	justify-content: space-between;
	align-items: center
}

.webchat-wrap .webchat-box .webchat-left {
	width: 44%
}

.webchat-wrap .webchat-box .webchat-center {
	width: 14%
}

.webchat-wrap .webchat-box .webchat-right {
	width: 39%
}

.webchat-left {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}

.webchat-left a {
	position: relative;
	z-index: 9;
	font-size: 18px;
	width: 48%;
	height: 92px;
	line-height: 85px;
	text-indent: 45%;
	transition: all .3s ease-in-out
}

.webchat-left a .webchat-bg {
	position: absolute;
	top: 23.5px;
	left: 65px;
	width: 0;
	z-index: -1;
	height: 40px;
	transition: all .3s ease-in-out
}

.webchat-left a:nth-child(1) {
	background: url("/assets/images/index_webchat_bg1.png") no-repeat center center/cover
}

.webchat-left a:nth-child(1) .webchat-bg-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: url("/assets/images/index_webchat_bg1t.png") no-repeat center center/cover
}

.webchat-left a:nth-child(1):hover .webchat-bg {
	background: #5382ff
}

.webchat-left a:nth-child(2) {
	background: url("/assets/images/index_webchat_bg2.png") no-repeat center center/cover
}

.webchat-left a:nth-child(2) .webchat-bg-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: url("/assets/images/index_webchat_bg2t.png") no-repeat center center/cover
}

.webchat-left a:nth-child(2):hover .webchat-bg {
	background: #f85a51
}

.webchat-left a:nth-child(3) {
	background: url("/assets/images/index_webchat_bg3.png") no-repeat center center/cover
}

.webchat-left a:nth-child(3) .webchat-bg-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: url("/assets/images/index_webchat_bg3t.png") no-repeat center center/cover
}

.webchat-left a:nth-child(3):hover .webchat-bg {
	background: #5382ff
}

.webchat-left a:nth-child(4) {
	background: url("/assets/images/index_webchat_bg4.png") no-repeat center center/cover
}

.webchat-left a:nth-child(4) .webchat-bg-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: url("/assets/images/index_webchat_bg4t.png") no-repeat center center/cover
}

.webchat-left a:nth-child(4):hover .webchat-bg {
	background: #f85a51
}

.webchat-left a:nth-child(5) {
	background: url("/assets/images/index_webchat_bg5.png") no-repeat center center/cover
}

.webchat-left a:nth-child(5) .webchat-bg-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: url("/assets/images/index_webchat_bg5t.png") no-repeat center center/cover
}

.webchat-left a:nth-child(5):hover .webchat-bg {
	background: #24d191
}

.webchat-left a:nth-child(6) {
	background: url("/assets/images/index_webchat_bg6.png") no-repeat center center/cover
}

.webchat-left a:nth-child(6) .webchat-bg-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: url("/assets/images/index_webchat_bg6t.png") no-repeat center center/cover
}

.webchat-left a:nth-child(6):hover .webchat-bg {
	background: #edaf35
}

.webchat-left a:nth-child(7) {
	background: url("/assets/images/index_webchat_bg7.png") no-repeat center center/cover
}

.webchat-left a:nth-child(7) .webchat-bg-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: url("/assets/images/index_webchat_bg7t.png") no-repeat center center/cover
}

.webchat-left a:nth-child(7):hover .webchat-bg {
	background: #24d191
}

.webchat-left a:nth-child(8) {
	background: url("/assets/images/index_webchat_bg8.png") no-repeat center center/cover
}

.webchat-left a:nth-child(8) .webchat-bg-top {
	position: absolute;
	top: 0;
	left: 0;
	width: 100%;
	height: 100%;
	z-index: 10;
	background: url("/assets/images/index_webchat_bg8t.png") no-repeat center center/cover
}

.webchat-left a:nth-child(8):hover .webchat-bg {
	background: #edaf35
}

.webchat-left a:hover {
	color: #fff
}

.webchat-left a:hover .webchat-bg {
	border-radius: 0 99px 99px 0;
	width: 148px
}

@-webkit-keyframes tpm-solution__nav-icon-enter {
	0% {
		background-position: 0 0
	}

	to {
		background-position: 0 -800px
	}
}

@keyframes tpm-solution__nav-icon-enter {
	0% {
		background-position: 0 0
	}

	to {
		background-position: 0 -800px
	}
}

@-webkit-keyframes tpm-solution__nav-icon-leave {
	0% {
		background-position: 0 -800px
	}

	to {
		background-position: 0 0
	}
}

@keyframes tpm-solution__nav-icon-leave {
	0% {
		background-position: 0 -800px
	}

	to {
		background-position: 0 0
	}
}

.strong-wrap {
	background: #f9fafc url("/assets/images/index_strong_bg.png") no-repeat left top/cover
}

.strong-wrap .strong-box {
	display: flex;
	flex-wrap: wrap;
	justify-content: space-between
}

.strong-wrap .strong-box .strong .strong-img {
	width: 50px;
	height: 50px;
	margin-bottom: 30px;
	overflow: hidden;
	background-repeat: no-repeat;
	background-size: 100% auto;
	background-position: top
}

.strong-wrap .strong-box .strong:hover .strong-img {
	-webkit-animation: tpm-solution__nav-icon-enter .3s steps(16) forwards;
	animation: tpm-solution__nav-icon-enter .3s steps(16) forwards
}

.strong-wrap .strong-box .strong:first-child .strong-img {
	background-image: url("/assets/images/index_strong1.png")
}

.strong-wrap .strong-box .strong:nth-child(2) .strong-img {
	background-image: url("/assets/images/index_strong2.png")
}

.strong-wrap .strong-box .strong:nth-child(3) .strong-img {
	background-image: url("/assets/images/index_strong3.png")
}

.strong-wrap .strong-box .strong:nth-child(4) .strong-img {
	background-image: url("/assets/images/index_strong4.png")
}

.strong-wrap .strong-box .strong:nth-child(5) .strong-img {
	background-image: url("/assets/images/index_strong5.png")
}

.strong-wrap .strong-box .strong:nth-child(6) .strong-img {
	background-image: url("/assets/images/index_strong6.png")
}

.strong-wrap .strong-box .strong:nth-child(7) .strong-img {
	background-image: url("/assets/images/index_strong7.png")
}

.strong-wrap .strong-box .strong:nth-child(8) .strong-img {
	background-image: url("/assets/images/index_strong8.png")
}

.strong-img.is-enter {
	-webkit-animation: tpm-solution__nav-icon-enter .3s steps(16) forwards;
	animation: tpm-solution__nav-icon-enter .3s steps(16) forwards
}

.strong-img.is-leave {
	-webkit-animation: tpm-solution__nav-icon-leave .3s steps(16) forwards;
	animation: tpm-solution__nav-icon-leave .3s steps(16) forwards
}

.strong {
	width: 23.5%;
	margin-bottom: 2%;
	display: flex;
	align-items: center;
	flex-direction: column;
	justify-content: center;
	padding: 40px 0;
	background: #fff;
	box-shadow: 0px 8px 10px rgba(100,115,155,.2);
	transition: all .3s ease-in-out
}

.strong:hover {
	transform: translatey(-5px);
	box-shadow: 0px 20px 10px rgba(100,115,155,.2)
}

.strong:hover h4 {
	color: #fc354c
}

.strong h4 {
	font-size: 18px;
	font-weight: bold;
	margin-bottom: 5px;
	transition: all .1s ease-in-out
}

.strong p {
	font-size: 14px;
	color: #999
}

.solve-wrap {
	overflow: hidden;
	background: #fff url("/assets/images/index_solve_bg.png") no-repeat left top/cover
}

.solve-wrap .solve-box {
	background-color: #fff;
	box-shadow: 0px 10px 18px rgba(29,63,128,.08)
}

.solve-tab-box {
	width: 100%;
	padding: 0 10%;
	position: relative;
	z-index: 9;
	box-shadow: 10px 10px 18px rgba(29,63,128,.08)
}

.solve-tab-box .solve-tab {
	width: 20%;
	height: 38px;
	line-height: 38px;
	font-size: 16px;
	text-align: center;
	cursor: pointer
}

.solve-tab-box .active {
	color: #fff;
	background: linear-gradient(90deg, #fc354c 0%, #ff4e4e 100%)
}

.solve-con-wrap {
	width: 100%
}

.solve-con-wrap .solve-con-box {
	padding: 8% 10%
}

.solve-con-wrap .solve-con-box:nth-child(1) {
	background: url("/assets/images/index_solve_con_bg1.png") no-repeat left top/cover
}

.solve-con-wrap .solve-con-box:nth-child(2) {
	background: url("/assets/images/index_solve_con_bg2.png") no-repeat left top/cover
}

.solve-con-wrap .solve-con-box:nth-child(3) {
	background: url("/assets/images/index_solve_con_bg3.png") no-repeat left top/cover
}

.solve-con-wrap .solve-con-box:nth-child(4) {
	background: url("/assets/images/index_solve_con_bg4.png") no-repeat left top/cover
}

.solve-con-wrap .solve-con-box:nth-child(5) {
	background: url("/assets/images/index_solve_con_bg5.png") no-repeat left top/cover
}

.solve-con-wrap .solve-con-box:nth-child(6) {
	background: url("/assets/images/index_solve_con_bg6.png") no-repeat left top/cover
}

.solve-con-wrap .solve-con-box:nth-child(7) {
	background: url("/assets/images/index_solve_con_bg7.png") no-repeat left top/cover
}

.solve-left {
	width: 100%
}

.solve-left .solve-left-img {
	width: 35px;
	margin-right: 15px
}

.solve-left .solve-left-item {
	justify-content: flex-start
}

.solve-left .solve-left-item:hover {
	color: #fc354c
}

.solve-left .solve-left-item h4 {
	font-size: 16px;
	font-weight: bold;
	line-height: 1;
	margin-bottom: 10px;
	transition: all .2s ease-in-out
}

.solve-left .solve-left-item p {
	font-size: 14px;
	color: #999;
	width: 52%
}

.solve-left .solve-bottom {
	width: -webkit-fit-content;
	width: -moz-fit-content;
	width: fit-content;
	height: 34px;
	margin: 60px 0 0;
	background-color: #fff;
	border: 1px solid #ccd2e5
}

.solve-left .solve-bottom a {
	border-right: 1px solid #ccd2e5;
	text-align: center;
	height: 100%;
	line-height: 34px;
	font-size: 14px;
	padding: 0 20px;
	transition: all .3s ease-in-out
}

.solve-left .solve-bottom a i {
	font-size: 14px;
	margin-left: 3px;
	transition: all .3s ease-in-out;
	display: inline-block
}

.solve-left .solve-bottom a:hover {
	color: #fc354c
}

.solve-left .solve-bottom a:last-child {
	font-weight: 500;
	color: #fc354c;
	border-right: 0
}

.solve-left .solve-bottom a:last-child:hover i {
	transform: translateX(5px)
}

.custom-wrap {
	background-color: #f9fafc
}

.custom-box {
	margin-top: -10px
}

.custom-box .custom-swiper {
	padding: 10px 75px 30px
}

.custom-box .custom-swiper .swiper-slide {
	width: 320px;
	box-shadow: 0px 10px 18px rgba(29,63,128,.08);
	transition: all .1s ease-in-out
}

.custom-box .custom-swiper .swiper-slide:hover {
	transform: translateY(-5px)
}

.custom-box .custom-swiper .swiper-button-prev {
	top: 0;
	left: -15px;
	height: 440px;
	width: 75px;
	font-weight: bolder;
	color: #b6bac3;
	background-color: #f9fafc;
	transition: all .3s ease-in-out
}

.custom-box .custom-swiper .swiper-button-prev:hover {
	color: #fd4b4e
}

.custom-box .custom-swiper .swiper-button-next {
	top: 0;
	right: -15px;
	height: 440px;
	width: 75px;
	font-weight: bolder;
	color: #b6bac3;
	background-color: #f9fafc;
	transition: all .3s ease-in-out
}

.custom-box .custom-swiper .swiper-button-next:hover {
	color: #fd4b4e
}

.swiper-slide-box {
	padding: 6%
}

.swiper-slide-box h4 {
	font-size: 16px;
	font-weight: bold
}

.swiper-slide-box p {
	font-size: 14px;
	color: #999;
	margin: 10px 0 12%
}

.swiper-slide-box .swiper-slide-bottom .swiper-slide-flag {
	width: 48px;
	height: 20px;
	line-height: 20px;
	text-align: center;
	color: #fff;
	background-color: #fd4b4e
}

.swiper-slide-box .swiper-slide-bottom a {
	color: #fd4b4e
}

.swiper-slide-box .swiper-slide-bottom a i {
	font-size: 14px;
	margin-left: 10px;
	display: inline-block;
	transition: all .3s ease-in-out
}

.swiper-slide-box .swiper-slide-bottom a:hover i {
	transform: translateX(5px)
}

.custom-logo-box {
	padding: 0 75px;
	display: flex;
	justify-content: space-between;
	align-items: center;
	flex-wrap: wrap
}

.custom-logo-box .custom-logo {
	width: 19%;
	margin-bottom: 1%;
	border: 1px dashed #d5dbe2;
	transition: all .3s ease-in-out
}

.custom-logo-box .custom-logo:hover {
	box-shadow: 0px 10px 18px rgba(29,63,128,.08)
}

.custom-logo-box .custom-logo img {
	width: 100%
}

.why-wrap {
	background: url("/assets/images/index_why_bg.png") no-repeat left top/cover
}

.why-wrap .why {
	width: 18.5%;
	padding: 4% 2%;
	background-color: #fff;
	text-align: center
}

.why-wrap .why img {
	width: 50px
}

.why-wrap .why h3 {
	font-size: 18px;
	margin-top: 15%;
	color: #fc444d;
	font-weight: bold
}

.why-wrap .why h4 {
	font-size: 18px
}

.why-wrap .why p {
	font-size: 14px;
	margin-top: 15%;
	line-break: anywhere
}

.why-wrap .why-bot-box {
	display: flex;
	align-items: center;
	justify-content: space-evenly;
	margin-top: 4%
}

.why-wrap .why-bot {
	width: 18%;
	display: flex;
	align-items: center
}

.why-wrap .why-bot:nth-child(1) {
	width: 12%
}

.why-wrap .why-bot:nth-child(2) {
	width: 21%
}

.why-wrap .why-bot img {
	height: 55px;
	margin-right: 15px
}

.why-wrap .why-bot p {
	color: #fff
}

.news-wrap {
	background-color: #f9fafc;
	padding-bottom: 40px
}

.news-box {
	background-color: #fff;
	box-shadow: 0px 10px 18px rgba(29,63,128,.08)
}

.news-box .news-tab-box {
	display: flex;
	align-items: center;
	height: 38px;
	line-height: 38px;
	padding: 0 2%;
	box-shadow: 0px 10px 18px rgba(29,63,128,.08)
}

.news-box .news-tab-box .news-tab {
	height: 100%;
	padding: 0 4%
}

.news-box .news-tab-box .active {
	color: #fff;
	background: linear-gradient(90deg, #fc354c 0%, #ff4e4e 100%)
}

.news-box .news-con-wrap {
	padding: 2%;
	min-height: 294px
}

.news-con {
	display: flex;
	justify-content: space-between
}

.news-con .news-con-img {
	width: 40%
}

.news-con .news-con-img img {
	width: 100%;
	height: 254px
}

.news-con .news-con-right {
	width: 58%;
	margin-top: -8px
}

.news-con .news-con-right a {
	display: block
}

.news-con .news-con-right a div {
	width: 100%;
	border-bottom: 1px solid #e8eaed
}

.news-con .news-con-right a h3 {
	max-width: 60%;
	font-size: 16px;
	line-height: 2;
	overflow: hidden;
	text-overflow: ellipsis;
	white-space: nowrap;
	transition: all .1s ease-in-out
}

.news-con .news-con-right a span {
	font-weight: normal;
	color: #666
}

.news-con .news-con-right a p {
	height: 0;
	overflow: hidden;
	padding: 0 10px;
	font-size: 14px;
	font-weight: light;
	color: #666;
	background-color: #f7f9fd;
	transition: all .2s ease-in-out
}

.news-con .news-con-right a .active {
	height: 58px;
	padding: 8px 10px;
	overflow: hidden;
	text-overflow: ellipsis;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 2;
	white-space: normal
}

.news-con .news-con-right a:hover h3 {
	transform: translateX(-1px);
	color: #f54c49
}

.news-con .news-con-right a:hover h3 span {
	color: #f54c49
}

.news-con .news-con-right .news-con-more {
	margin-top: 10px;
	color: #f54c49
}

.news-con .news-con-right .news-con-more i {
	display: inline-block;
	font-size: 16px;
	line-height: 21px;
	font-weight: bold;
	margin-left: 5px;
	transition: all .3s ease-in-out
}

.news-con .news-con-right .news-con-more:hover i {
	transform: translateX(5px)
}

.bottom-apply-wrap {
	padding-top: 40px
}

.bottom-apply-wrap .bottom-apply-box {
	background: url("/assets/images/index_bottom_apply.png") no-repeat left top/100% 100%;
	border-radius: 14px;
	display: flex;
	flex-direction: column;
	align-items: center;
	justify-content: center;
	padding: 3% 0
}

.bottom-apply-wrap .bottom-apply-box h4 {
	color: #fff;
	font-size: 18px;
	line-height: 1;
	margin-bottom: 20px
}

.bottom-apply-wrap .bottom-apply-box .bottom-apply {
	display: flex;
	justify-content: space-between;
	/*width: 10%;*/
	height: 38px;
	line-height: 38px;
	padding: 2px;
	overflow: hidden;
	background: #ff4c50;
	box-shadow: 0px 9px 6px rgba(52,16,16,.19);
	opacity: 1;
	border-radius: 10px
}

.bottom-apply-wrap .bottom-apply-box .bottom-apply input {
	flex: 1;
	text-indent: 25px;
	height: 100%;
	line-height: 34px;
	outline: none;
	padding: 0;
	border: none
}

.bottom-apply-wrap .bottom-apply-box .bottom-apply input:active,.bottom-apply-wrap .bottom-apply-box .bottom-apply input:focus {
	box-shadow: none
}

.bottom-apply-wrap .bottom-apply-box .bottom-apply .bottom-apply-btn {
	text-align: center;
	padding: 0 20px;
	border-radius: 8px;
	height: 100%;
	line-height: 34px;
	font-size: 16px;
	font-weight: bold;
	cursor: pointer;
	color: #fff;
	background-color: #fd4040
}

@media screen and (min-width: 992px)and (max-width: 1199px) {
	.why-box {
		align-items: stretch
	}

	.swiper-slide-box p {
		height: 63px
	}
}

@media screen and (min-width: 768px)and (max-width: 991px) {
	.banner-wrap {
		height: 450px
	}

	.banner-wrap .banner-box h1 {
		font-size: 24px
	}

	.banner-wrap .banner-box p {
		font-size: 16px
	}

	.banner-wrap .banner-box .banner-right {
		width: 40%
	}

	.banner-wrap .banner-box .banner-right .banner-right-ball1 {
		width: 45px
	}

	.banner-wrap .banner-box .banner-right .banner-right-ball2 {
		width: 45px
	}

	.banner-wrap .banner-box .banner-right .banner-right-ball3 {
		width: 45px
	}

	.banner-wrap .banner-box .banner-right .banner-right-ball4 {
		width: 45px
	}

	.banner-wrap .banner-box .banner-right .banner-right-line {
		position: absolute;
		top: 40%;
		left: 5%
	}

	.banner-wrap .banner-box .banner-right .banner-right-robot {
		width: 70%
	}

	.banner-wrap .banner-box .banner-apply {
		display: block;
		width: 120px;
		height: 40px;
		line-height: 40px;
		font-size: 16px
	}

	.banner-article-wrap {
		height: 70px;
		bottom: -35px
	}

	.banner-article-wrap .banner-article a {
		max-width: 90%
	}

	.banner-article-wrap .banner-article a h3 {
		font-size: 16px;
		margin-bottom: 0
	}

	.banner-article-wrap .banner-article a p {
		display: none
	}

	.product-wrap {
		padding-top: 30px
	}

	.product-wrap .product-box {
		margin-bottom: 40px
	}

	.product-tab-box {
		width: 100%
	}

	.product-tab-box .product-tab {
		padding: 0 2%
	}

	.product-con-wrap {
		padding: 5% 2%
	}

	.webchat-wrap .webchat-box {
		margin-bottom: 40px
	}

	.webchat-wrap .webchat-box .webchat-slide {
		display: none
	}

	.webchat {
		width: 100%
	}

	.webchat .webchat-left {
		width: 32%;
		height: auto;
		min-height: 335px
	}

	.webchat .webchat-center {
		width: 40%;
		position: relative;
		display: flex;
		flex-direction: column;
		justify-content: space-between
	}

	.webchat .webchat-right {
		width: 28%
	}

	.webchat .webchat-right .webchat-right-top {
		height: 34px
	}

	.webchat .webchat-right .webchat-right-top .webchat-right-top-item {
		font-size: 12px;
		transform: scale(0.9);
		line-height: 1.3
	}

	.webchat .webchat-right .webchat-right-img {
		position: absolute;
		top: 34px
	}

	.webchat .webchat-right .webchat-right-img img {
		transform: translateX(-100%)
	}

	.webchat-left {
		padding-bottom: 10%
	}

	.webchat-left .webchat-left-item {
		padding: 10px 5px;
		transition: all .3s ease-in-out
	}

	.webchat-left .webchat-left-item .webchat-left-img {
		width: 20px;
		height: 20px;
		margin-right: 10px;
		transition: all .3s ease-in-out
	}

	.webchat-left .webchat-left-item .webchat-left-con h4 span {
		display: none
	}

	.webchat-left .webchat-left-item .webchat-left-con .webchat-left-long {
		width: 55px;
		height: 5px
	}

	.webchat-left .webchat-left-item .webchat-left-con .webchat-left-short {
		width: 35px;
		height: 5px
	}

	.webchat-left .active .webchat-left-con h4 {
		height: 12px
	}

	.webchat-left .active .webchat-left-con .webchat-left-long {
		height: 0
	}

	.webchat-left .active .webchat-left-con .webchat-left-short {
		width: 55px;
		height: 5px
	}

	.webchat-center-box {
		position: absolute;
		overflow: hidden
	}

	.webchat-center-box .webchat-center-img {
		height: auto
	}

	.webchat-center-box .webchat-center-img img {
		transform: translateX(-100%)
	}

	.webchat-center-box .webchat-center-bot {
		width: 100%;
		height: auto;
		overflow: hidden;
		border-top: 1px solid #ccd5e5
	}

	.webchat-center-box .webchat-center-bot .webchat-center-bot-con {
		padding: 5px;
		transform: translateX(-100%)
	}

	.webchat-center-box .webchat-center-bot img {
		display: block;
		height: 8px;
		margin: 0
	}

	.webchat-center-box .webchat-center-bot .webchat-center-bot-button {
		width: 53px;
		height: 18px;
		line-height: 18px;
		margin-top: 25px;
		margin-left: auto;
		font-size: 12px;
		color: #fff;
		text-align: center;
		background-color: #dfe4ed;
		border-radius: 4px
	}

	.webchatCenterActive .webchat-center-img img {
		transform: translateX(0);
		transition: all .3s ease-in-out
	}

	.webchatCenterActive .webchat-center-bot .webchat-center-bot-con {
		transform: translateX(0);
		transition: all .3s ease-in-out
	}

	.strong p {
		max-width: 90%;
		text-align: center
	}

	.solve-tab-box {
		padding: 0 2%
	}

	.solve-con-wrap .solve-con-box {
		padding: 8% 2%
	}

	.custom-box .custom-swiper .swiper-slide {
		box-shadow: 0px 10px 18px rgba(29,63,128,.08);
		transition: all .1s ease-in-out
	}

	.swiper-slide-box h4 {
		height: 63px;
		font-size: 14px;
		font-weight: bold
	}

	.swiper-slide-box p {
		font-size: 12px;
		height: 54px
	}

	.why-box {
		align-items: stretch
	}

	.why-bot {
		width: 18%
	}

	.why-bot:nth-child(1) {
		width: 12%
	}

	.why-bot:nth-child(2) {
		width: 21%
	}

	.why-bot p {
		display: none
	}

	.bottom-apply-wrap {
		padding-top: 20px
	}

	.bottom-apply-wrap .bottom-apply-box h4 {
		font-size: 14px
	}

	.bottom-apply-wrap .bottom-apply-box .bottom-apply {
		width: 45%;
		height: 38px;
		line-height: 38px;
		border-radius: 8px
	}

	.bottom-apply-wrap .bottom-apply-box .bottom-apply .bottom-apply-btn {
		padding: 0 15px;
		font-size: 14px
	}
}

@media screen and (max-width: 768px) {
	.banner-wrap {
		height: 400px
	}

	.banner-wrap .banner-box .banner {
		margin-top: -40%
	}

	.banner-wrap .banner-box h1 {
		font-size: 24px;
		text-align: center
	}

	.banner-wrap .banner-box p {
		font-size: 14px;
		text-align: center
	}

	.banner-wrap .banner-box .banner-right {
		width: 60%;
		height: 50%;
		right: 20%;
		top: 45%
	}

	.banner-wrap .banner-box .banner-right .banner-right-ball1 {
		width: 25px
	}

	.banner-wrap .banner-box .banner-right .banner-right-ball2 {
		width: 25px;
		left: 10%
	}

	.banner-wrap .banner-box .banner-right .banner-right-ball3 {
		width: 25px
	}

	.banner-wrap .banner-box .banner-right .banner-right-ball4 {
		width: 25px
	}

	.banner-wrap .banner-box .banner-right .banner-right-line {
		top: 35%
	}

	.banner-wrap .banner-box .banner-apply {
		width: 102px;
		height: 34px;
		line-height: 34px;
		border-radius: 4px;
		font-size: 14px;
		margin: 15px auto 0
	}

	.banner-article-wrap {
		height: 50px;
		padding: 10px 0;
		bottom: -25px;
		border-radius: 4px
	}

	.banner-article-wrap .banner-article {
		justify-content: center;
		align-items: center
	}

	.banner-article-wrap .banner-article a {
		max-width: 100%;
		width: 100%;
		margin: 0
	}

	.banner-article-wrap .banner-article a h3 {
		max-width: 80%;
		margin: 0 auto;
		font-size: 12px;
		text-align: center;
		line-height: 1.7
	}

	.banner-article-wrap .banner-article a p {
		display: none
	}

	.product-wrap {
		padding-top: 30px
	}

	.product-wrap .product-box {
		margin-bottom: 40px
	}

	.product-tab-box {
		width: 100%
	}

	.product-tab-box .product-tab {
		display: flex;
		align-items: center;
		height: 45px;
		padding: 0 2%;
		font-size: 13px;
		line-height: 1.3
	}

	.product-con-wrap {
		padding: 5% 2%
	}

	.product-con-wrap .product-right {
		width: 50%
	}

	.product-left {
		width: 50%
	}

	.product-left .product-left-img {
		width: 35px;
		margin-right: 5px
	}

	.product-left .product-left-item {
		margin-bottom: 20px
	}

	.product-left .product-left-item h4 {
		font-size: 14px;
		margin-bottom: 5px
	}

	.product-left .product-left-item p {
		font-size: 12px
	}

	.webchat-wrap .webchat-box {
		margin-bottom: 0
	}

	.webchat-wrap .webchat-box .webchat-left {
		width: 100%;
		height: auto;
		display: flex;
		flex-wrap: wrap;
		justify-content: space-between
	}

	.webchat-wrap .webchat-box .webchat-left a {
		position: relative;
		z-index: 9;
		font-size: 14px;
		width: 48%;
		height: 60px;
		line-height: 56px;
		text-indent: 45%;
		transition: all .3s ease-in-out
	}

	.webchat-wrap .webchat-box .webchat-left a .webchat-bg {
		position: absolute;
		top: 23.5px;
		left: 65px;
		width: 0;
		z-index: -1;
		height: 40px;
		transition: all .3s ease-in-out
	}

	.webchat-wrap .webchat-box .webchat-left a:hover {
		color: #444
	}

	.webchat-wrap .webchat-box .webchat-left a .webchat-bg-top {
		display: none
	}

	.strong-wrap .strong-box .strong .strong-img {
		width: 40px;
		height: 40px;
		margin-bottom: 10px
	}

	.strong {
		width: 32%;
		padding: 10px 0
	}

	.strong h4 {
		font-size: 14px
	}

	.strong p {
		width: 90%;
		margin: 0 auto;
		font-size: 12px;
		text-align: center
	}

	.strong:nth-last-child(2) {
		margin-left: auto
	}

	.strong:last-child {
		margin-left: 2%;
		margin-right: auto
	}

	.solve-tab-box {
		width: 100%;
		padding: 0
	}

	.solve-tab-box .solve-tab {
		width: 20%;
		display: flex;
		justify-content: center;
		align-items: center;
		height: 45px;
		line-height: 1.5;
		font-size: 12px
	}

	.solve-con-wrap {
		width: 100%
	}

	.solve-con-wrap .solve-con-box {
		padding: 5% 0
	}

	.solve-con-wrap .solve-con-box:nth-child(1) {
		background: url("/assets/images/index_solve_con_bg1.png") no-repeat right top/100% auto
	}

	.solve-con-wrap .solve-con-box:nth-child(2) {
		background: url("/assets/images/index_solve_con_bg2.png") no-repeat right top/100% auto
	}

	.solve-con-wrap .solve-con-box:nth-child(3) {
		background: url("/assets/images/index_solve_con_bg3.png") no-repeat right top/100% auto
	}

	.solve-con-wrap .solve-con-box:nth-child(4) {
		background: url("/assets/images/index_solve_con_bg4.png") no-repeat right top/100% auto
	}

	.solve-con-wrap .solve-con-box:nth-child(5) {
		background: url("/assets/images/index_solve_con_bg5.png") no-repeat right top/100% auto
	}

	.solve-con-wrap .solve-con-box:nth-child(6) {
		background: url("/assets/images/index_solve_con_bg6.png") no-repeat right top/100% auto
	}

	.solve-con-wrap .solve-con-box:nth-child(7) {
		background: url("/assets/images/index_solve_con_bg7.png") no-repeat right top/100% auto
	}

	.solve-left {
		width: 100%
	}

	.solve-left .solve-left-img {
		min-width: 35px;
		margin-right: 10px;
		margin-left: 15px
	}

	.solve-left .solve-left-item {
		justify-content: flex-start
	}

	.solve-left .solve-left-item:hover {
		color: #fc354c
	}

	.solve-left .solve-left-item h4 {
		font-size: 14px
	}

	.solve-left .solve-left-item p {
		font-size: 13px
	}

	.solve-left .solve-bottom {
		height: 45px;
		margin: 20px auto 0
	}

	.solve-left .solve-bottom a {
		height: 100%;
		display: flex;
		align-items: center;
		line-height: 1.5;
		font-size: 12px;
		padding: 0 2%
	}

	.solve-left .solve-bottom a i {
		font-size: 12px
	}

	.custom-box {
		margin-top: -10px
	}

	.custom-box .custom-swiper {
		padding: 10px 0
	}

	.custom-box .swiper-slide-box {
		padding: 3%
	}

	.custom-box .swiper-slide-box h4 {
		font-size: 14px;
		font-weight: bold
	}

	.custom-box .swiper-slide-box p {
		font-size: 12px;
		margin: 5px 0 3%
	}

	.custom-box .swiper-slide-box .swiper-slide-bottom .swiper-slide-flag {
		font-size: 13px
	}

	.custom-box .swiper-slide-box .swiper-slide-bottom a {
		color: #fd4b4e
	}

	.custom-box .swiper-slide-box .swiper-slide-bottom a i {
		font-size: 13px
	}

	.custom-box .swiper-button-prev {
		display: none
	}

	.custom-box .swiper-button-next {
		display: none
	}

	.swiper-slide-box {
		padding: 6%
	}

	.swiper-slide-box h4 {
		font-size: 14px;
		font-weight: bold
	}

	.swiper-slide-box p {
		font-size: 12px
	}

	.swiper-slide-box .swiper-slide-bottom a {
		font-size: 12px
	}

	.swiper-slide-box .swiper-slide-bottom a i {
		font-size: 12px
	}

	.custom-logo-box {
		padding: 0
	}

	.custom-logo-box .custom-logo {
		width: 33%
	}

	.why-wrap .why-box {
		flex-wrap: wrap;
		align-items: stretch
	}

	.why-wrap .why {
		width: 33%;
		padding: 2% 1%;
		margin-bottom: .7%
	}

	.why-wrap .why img {
		width: 40px
	}

	.why-wrap .why h3 {
		font-size: 14px;
		margin-top: 10%
	}

	.why-wrap .why h4 {
		font-size: 14px
	}

	.why-wrap .why p {
		font-size: 12px;
		margin-top: 5%
	}

	.why-wrap .why:nth-last-child(2) {
		margin-left: auto
	}

	.why-wrap .why:last-child {
		margin-left: .5%;
		margin-right: auto
	}

	.why-wrap .why-bot-box {
		margin-top: 8%
	}

	.why-wrap .why-bot {
		width: 18%;
		display: flex;
		align-items: center
	}

	.why-wrap .why-bot:nth-child(1) {
		width: 12%
	}

	.why-wrap .why-bot:nth-child(2) {
		width: 21%
	}

	.why-wrap .why-bot img {
		height: 55px;
		margin-right: 15px
	}

	.why-wrap .why-bot p {
		color: #fff;
		display: none
	}

	.news-con .news-con-img {
		display: none
	}

	.news-con .news-con-right {
		width: 100%
	}

	.news-con .news-con-right a h3 {
		max-width: 60%;
		font-size: 13px
	}

	.news-con .news-con-right a p {
		font-size: 13px
	}

	.news-con .news-con-right .news-con-more {
		margin-top: 10px;
		color: #f54c49
	}

	.news-con .news-con-right .news-con-more i {
		font-size: 13px;
		line-height: 21px
	}

	.news-wrap {
		padding-bottom: 20px
	}

	.news-box .news-con-wrap {
		padding: 2%;
		min-height: auto
	}

	.bottom-apply-wrap {
		padding-top: 20px
	}

	.bottom-apply-wrap .bottom-apply-box {
		background: url("/assets/images/index_bottom_apply.png") no-repeat left top/cover;
		border-radius: 8px;
		padding: 10% 0
	}

	.bottom-apply-wrap .bottom-apply-box h4 {
		font-size: 14px
	}

	.bottom-apply-wrap .bottom-apply-box .bottom-apply {
		width: 90%;
		height: 38px;
		line-height: 38px;
		border-radius: 8px
	}

	.bottom-apply-wrap .bottom-apply-box .bottom-apply .bottom-apply-btn {
		padding: 0 15px;
		font-size: 14px
	}

	.footer-wrap .navb-box {
		justify-content: center
	}

	.footer-wrap .navb-box ul {
		display: none
	}

	.footer-wrap .navb-box .navb-box-tel {
		display: flex;
		flex-direction: column;
		justify-content: center;
		align-items: center
	}
}/*# sourceMappingURL=index.css.map */