/* 首页 css */

/* banner */
.banner{
	position: relative;
}
.banner .swiper-slide{
	height: 920px;
}
.banner .swiper-slide .info{
	width: 710px;
	padding-top: 275px;
}
.banner .swiper-slide .info .info_top h4{
	font-size: 80px;
	line-height: 76px;
	letter-spacing: 0.05em;
}
.banner .swiper-slide .info .info_top h4 i{
	font-style: normal;
}
.banner .swiper-slide .info .info_top h4 i:first-child{
	margin-right: 38px;
}
.banner .swiper-slide .info .info_top p{
	margin-top: 16px;
}
.banner .swiper-slide .info .info_top p span{
	/*font-size: 28px;*/
	font-size: 26px;
	line-height: 39px;
	letter-spacing: 0.52em;
}
.banner .swiper-slide .info .info_top p span:first-child+span{
	margin-left: 38px;
	letter-spacing: 0.69em;
}
.banner .swiper-slide .info .info_text{
	width: 600px;
	margin-top: 40px;
}
.banner .swiper-slide .info .info_text span{
	font-size: 18px;
	line-height: 25px;
	margin-right: 16px;
	position: relative;
	padding-left: 10px;
	margin-bottom: 10px;
}
.banner .swiper-slide .info .info_text span::before{
	content: " ";
	display: block;
	width: 6px;
	height: 6px;
	background: #0067ED;
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: 50%;
	margin-top: -3px;
}
.banner .swiper-slide .info a.more{
	display: block;
	width: 218px;
	height: 64px;
	background: url(../image/zx.png) no-repeat center;
	background-size: 100%;
	margin-top: 60px;
}
.banner_box{
	position: absolute;
	width: 1300px;
	height: 80px;
	left: 50%;
	margin-left: -650px;
	background: rgba(255, 255, 255, 0.8);
	border-radius: 12px;
	bottom: 30px;
	z-index: 2;
	align-items: center;
	border: 1px solid #fff;
	box-sizing: border-box;
	justify-content: space-around;
}
.banner_box li{
	font-size: 22px;
	line-height: 31px;
	position: relative;
	padding-left: 38px;
}
.banner_box li::before{
	content: " ";
	display: block;
	width: 32px;
	height: 32px;
	position: absolute;
	left: 0;
	top: 0;
}
.banner_box li:first-child::before{
	background: url(../image/index-ico.png) no-repeat -50px 0;
	background-size: 250px;
}
.banner_box li:first-child+li::before{
	background: url(../image/index-ico.png) no-repeat -98px 0;
	background-size: 250px;
}
.banner_box li:first-child+li+li::before{
	background: url(../image/index-ico.png) no-repeat -146px 0;
	background-size: 250px;
}
.banner_box li:first-child+li+li+li::before{
	background: url(../image/index-ico.png) no-repeat -194px 0;
	background-size: 250px;
}
.banner_box li::after{
	content: " ";
	display: block;
	width: 1px;
	height: 40px;
	background: #E4E7ED;
	position: absolute;
	right: -44px;
	top: -5px;
}
.banner .swiper-pagination{
	bottom: 137px;
}
.banner .swiper-pagination-bullet{
	width: 16px;
	height: 16px;
	box-sizing: border-box;
	position: relative;
	background: none;
	opacity: 1;
}
.banner .swiper-pagination-bullet::after{
	content: " ";
	width: 8px;
	height: 8px;
	opacity: 0.3;
	background: #303133;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -4px;
	margin-top: -4px;
	border-radius: 100%;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active{
	border: 1px solid #0067ED;
}
.banner .swiper-pagination-bullet.swiper-pagination-bullet-active::after{
	opacity: 1;
	background: #0067ED;
}
.flash{
	position: absolute;
	width: 720px;
	height: 580px;
	/*background: rgba(0,0,0,.2);*/
	left: 50%;
	margin-left: 100px;
	bottom: 100px;
}
.flash img{
	display: block;
	position: absolute;
}
.flash .f1{
	width: 855.5px;
	left: -30px;
	bottom: -54px;
}
.flash .f2{
	bottom: 210px;
	left: 2px;
	
	/*动画名称*/
	animation-name: f2;
	/*设置秒数*/
	animation-duration: 1.6s;
	/*速度曲线*/
	animation-timing-function: linear;
	/*播放次数*/
	animation-iteration-count: infinite;
	/*逆向播放*/
	animation-direction: alternate;
	/*正在运行*/
	animation-play-state: running;
}
@keyframes f2 {
	0%{
		bottom: 210px;
	}
	100%{
		bottom: 230px;
	}
}
.flash .f3{
	width: 72.5px;
	bottom: 340px;
	left: 50px;

	animation-name: f3;
	animation-duration: 1.6s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-play-state: running;
}
@keyframes f3 {
	0%{
		bottom: 340px;
	}
	100%{
		bottom: 320px;
	}
}
.flash .f4{
	width: 166.5px;
	bottom: 330px;
	left: 450px;
	z-index: 6;

	animation-name: f4;
	animation-duration: 1.6s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-play-state: running;
}
@keyframes f4 {
	0%{
		bottom: 330px;
	}
	100%{
		bottom: 300px;
	}
}
.flash .f5{
	width: 435.5px;
	left: 62px;
	bottom: 305px;
	z-index: 5;

	animation-name: f5;
	animation-duration: 3.2s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-play-state: running;
}
@keyframes f5 {
	0%{
		bottom: 305px;
	}
	100%{
		bottom: 255px;
	}
}
.flash .f6{
	width: 84.5px;
	left:620px;
	bottom: 520px;
	
	animation-name: f6;
	animation-duration: 1.6s;
	animation-timing-function: linear;
	animation-iteration-count: infinite;
	animation-direction: alternate;
	animation-play-state: running;
}
@keyframes f6 {
	0%{
		bottom: 520px;
	}
	100%{
		bottom: 535px;
	}
}
























/* index_solve */
.index_tit{
	text-align: center;
}
.index_tit span{
	display: inline-block;
	font-size: 40px;
	line-height: 56px;
	position: relative;
	padding: 0 46px;
}
.index_tit span::before,.index_tit span::after{
	content: " ";
	display: block;
	width: 30px;
	height: 3px;
	background: #0067ED;
	position: absolute;
	top: 50%;
}
.index_tit span::before{
	left: 0;
}
.index_tit span::after{
	right: 0;
}
.index_tit p{
	font-size: 18px;
	line-height: 25px;
	margin-top: 8px;
	color: #606266;
}

.index_solve{
	margin-top: 100px;
	padding-bottom: 70px;
}
.index_solve ul{
	justify-content: space-between;
	margin-top: 48px;
}
.index_solve ul li{
	width: 415px;
	height: 310px;
	border-radius: 4px;
	box-sizing: border-box;
	padding-top: 180px;
	position: relative;
	transition: .3s ease-out;
	overflow: hidden;
	margin-bottom: 27px;
}
.index_solve ul li:first-child{
	background: url(../image/index-solve-1.png) no-repeat center/cover;
}
.index_solve ul li:first-child+li{
	background: url(../image/index-solve-2.png) no-repeat center/cover;
}
.index_solve ul li:first-child+li+li{
	background: url(../image/index-solve-3.png) no-repeat center/cover;
}
.index_solve ul li:first-child+li+li+li{
	background: url(../image/index-solve-4.png) no-repeat center/cover;
}
.index_solve ul li:first-child+li+li+li+li{
	background: url(../image/index-solve-5.png) no-repeat center/cover;
}
.index_solve ul li:first-child+li+li+li+li+li{
	background: url(../image/index-solve-6.png) no-repeat center/cover;
}
.index_solve ul li p{
	font-size: 24px;
	color: #fff;
	line-height: 34px;
	position: relative;
	padding-top: 56px;
	z-index: 2;
	padding-left: 30px;
}
.index_solve ul li p::before{
	content: " ";
	display: block;
	width: 48px;
	height: 48px;
	position: absolute;
	left: 30px;
	top: 0;
}

.index_solve ul li:hover p{
	padding-bottom: 15px;
	margin-bottom: 30px;
	text-align: center;
	padding-left: 0 !important;
}
.index_solve ul li:first-child p::before{
	background: url(../image/index-solve-ico.png) no-repeat 0 0;
	background-size: 388px;
}
.index_solve ul li:first-child+li p::before{
	background: url(../image/index-solve-ico.png) no-repeat -68px 0;
	background-size: 388px;
}
.index_solve ul li:first-child+li+li p::before{
	background: url(../image/index-solve-ico.png) no-repeat -272px 0;
	background-size: 388px;
}
.index_solve ul li:first-child+li+li+li p::before{
	background: url(../image/index-solve-ico.png) no-repeat -136px 0;
	background-size: 388px;
}
.index_solve ul li:first-child+li+li+li+li p::before{
	background: url(../image/index-solve-ico.png) no-repeat -203px 0;
	background-size: 388px;
}
.index_solve ul li:first-child+li+li+li+li+li p::before{
	background: url(../image/index-solve-ico.png) no-repeat -340px 0;
	background-size: 388px;
}
.index_solve ul li:hover p::before{
	left: 50%;
	margin-left: -24px;
}
.index_solve ul li .box{
	opacity: 0;
	transition: .3s ease-out;
	z-index: 2;
	position: relative;
	padding: 0 25px;
	justify-content: space-between;
}
.index_solve ul li .box::after{
	content: " ";
	width: 110px;
}
.index_solve ul li .box a{
	color: #fff;
	font-size: 15px;
	width: 110px;
	display: block;
	text-align: center;
	border-radius: 4px;
	line-height: 36px;
}
.index_solve ul li::after{
	content: " ";
	display: block;
	width: 100%;
	height: 100%;
	background: rgba(0, 103, 237, 0.85);
	position: absolute;
	left: 0;
	top: 0;
	z-index: 1;
	transition: .3s ease-out;
	opacity: 0;
}
.index_solve ul li:hover{
	padding-top: 44px;
}
.index_solve ul li:hover::after{
	opacity: 1;
}
.index_solve ul li:hover .box{
	opacity: 1;
}
.index_solve ul li .box a:hover{
	background: rgba(255, 255, 255, 0.2);
}

.index_pro{
	height: 830px;
	background: url(../image/probg.jpg) no-repeat center;
	box-sizing: border-box;
	padding-top: 100px;
}
.index_pro .box{
	background: rgba(255, 255, 255, 0.45);
	border-radius: 4px;
	margin-top: 50px;
	border: 1px solid #fff;
	overflow: hidden;
	height: 485px;
	backdrop-filter: blur(4px);
	-webkit-backdrop-filter: blur(4px);
}
.index_pro .box .item{
	width: 272px;
	text-align: center;
	box-sizing: border-box;
	padding: 0 20px;
	padding-top: 65px;
	padding-bottom: 35px;
	border-left: 1px solid #fff;
	transition: .3s ease-out;
	overflow: hidden;
}
.index_pro .box .item:first-child{
	border-left: 0;
}
.index_pro .box .item .item_top{
	margin-bottom: 12px;
}
.index_pro .box .item .item_top p{
	font-size: 24px;
	line-height: 34px;
	padding-bottom: 24px;
	position: relative;
	padding-top: 62px;
}
.index_pro .box .item .item_top p::before{
	content: " ";
	display: block;
	width: 50px;
	height: 50px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -25px;
}
.index_pro .box .item:first-child .item_top p::before{
	background: url(../image/index-pro-ico.png) no-repeat 3px -50px;
	background-size: 104px;
}
.index_pro .box .item:first-child+.item .item_top p::before{
	background: url(../image/index-pro-ico.png) no-repeat 3px 2px;
	background-size: 104px;
}
.index_pro .box .item:first-child+.item+.item .item_top p::before{
	background: url(../image/index-pro-ico.png) no-repeat 3px -104px;
	background-size: 104px;
}
.index_pro .box .item:first-child+.item+.item+.item .item_top p::before{
	background: url(../image/index-pro-ico.png) no-repeat 3px -158px;
	background-size: 104px;
}
.index_pro .box .item .item_top p::after{
	content: " ";
	display: block;
	width: 97px;
	height: 1px;
	background: #0067ED;
	position: absolute;
	bottom: 0;
	left: 50%;
	margin-left: -48px;
}
.index_pro .box .item ul li a span{
	display: inline-block;
	font-size: 18px;
	line-height: 44px;
	margin: 4px 0;
	position: relative;
}
.index_pro .box .item ul li.hot a span::after{
	content: " ";
	display: block;
	width: 20px;
	height: 20px;
	background: url(../image/hot.png) no-repeat center;
	background-size: 100%;
	position: absolute;
	top: 11px;
	right: -26px;
}
.index_pro .box .item ul li a p{
	width: 440px;
	display: none;
	font-size: 14px;
	line-height: 20px;
	margin-top: 4px;
	color: #909399;
	margin-left: 36px;
	white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
}
.index_pro .box .item ul li a:hover p{
	color: #0067ED;
}

.index_pro .box .item.on{
	width: 482px;
	padding: 0;
	text-align: left;
}
.index_pro .box .item.on .item_top{
	background: #0067ED;
	height: 90px;
}
.index_pro .box .item.on .item_top p{
	color: #FFFFFF;
	padding: 0;
	line-height: 90px;
	padding-left: 52px;
	margin-left: 24px;
}
.index_pro .box .item.on .item_top p::after{
	width: 119px;
	height: 90px;
	background: url(../image/logo-bg.png) no-repeat center;
	background-size: 100%;
	right: 0;
	left: auto;
}
.index_pro .box .item.on .item_top p::before{
	width: 44px;
	height: 44px;
	left: 0;
	margin-left: 0;
	top: 22px;
}
.index_pro .box .item:first-child.on .item_top p::before{
	background: url(../image/index-pro-ico.png) no-repeat -60px -50px;
	background-size: 104px;
}
.index_pro .box .item:first-child+.item.on .item_top p::before{
	background: url(../image/index-pro-ico.png) no-repeat -60px 2px;
	background-size: 104px;
}
.index_pro .box .item:first-child+.item+.item.on .item_top p::before{
	background: url(../image/index-pro-ico.png) no-repeat -60px -104px;
	background-size: 104px;
}
.index_pro .box .item:first-child+.item+.item+.item.on .item_top p::before{
	background: url(../image/index-pro-ico.png) no-repeat -60px -158px;
	background-size: 104px;
}
.index_pro .box .item.on ul{
	margin-top: 30px;
}
.index_pro .box .item.on ul li{
	margin-bottom: 20px;
}
.index_pro .box .item.on ul li a span{
	line-height: 25px;
	margin: 0;
	padding-left: 16px;
	margin-left: 20px;
}
.index_pro .box .item.on ul li a span::before{
	content: " ";
	display: block;
	width: 8px;
	height: 2px;
	background: #0067ED;
	position: absolute;
	left: 0;
	top: 50%;
}
.index_pro .box .item.on ul li.hot a span::after{
	top: 4px;
}
.index_pro .box .item.on ul li a p{
	display: block;
}
.index_pro .more{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	font-size: 20px;
	color: #FFFFFF;
	background: #0067ED;
	width: 170px;
	height: 52px;
	border-radius: 4px;
	align-items: center;
	justify-content: center;
	margin: 0 auto;
	margin-top: 50px;
}
.index_pro .more::after{
	content: " ";
	display: block;
	width: 24px;
	height: 24px;
	background: url(../image/index-ico.png) no-repeat -31px -66px;
	background-size: 250px;
	margin-left: 5px;
}

.case_bg{
	background: url(../image/case-bg.png) no-repeat center top;
}
.case .tabs{
	justify-content: space-between;
	margin-bottom: 40px;
	margin-top: 40px;
}
.case .tabs a{
	font-size: 18px;
	line-height: 25px;
	position: relative;
	padding-top: 48px;
	color: #303133;
}
.case .tabs a::before{
	content: " ";
	display: block;
	width: 40px;
	height: 40px;
	position: absolute;
	top: 0;
	left: 50%;
	margin-left: -20px;
}
.case .tabs a:first-child::before{
	background: url(../image/case-tabs.png) no-repeat 0 0;
	background-size: 460px;
}
.case .tabs a:first-child+a::before{
	background: url(../image/case-tabs.png) no-repeat -60px 0;
	background-size: 460px;
}
.case .tabs a:first-child+a+a::before{
	background: url(../image/case-tabs.png) no-repeat -120px 0;
	background-size: 460px;
}
.case .tabs a:first-child+a+a+a::before{
	background: url(../image/case-tabs.png) no-repeat -180px 0;
	background-size: 460px;
}
.case .tabs a:first-child+a+a+a+a::before{
	background: url(../image/case-tabs.png) no-repeat -240px 0;
	background-size: 460px;
}
.case .tabs a:first-child+a+a+a+a+a::before{
	background: url(../image/case-tabs.png) no-repeat -300px 0;
	background-size: 460px;
}
.case .tabs a:first-child+a+a+a+a+a+a::before{
	background: url(../image/case-tabs.png) no-repeat -360px 0;
	background-size: 460px;
}
.case .tabs a:first-child+a+a+a+a+a+a+a::before{
	background: url(../image/case-tabs.png) no-repeat -420px 0;
	background-size: 460px;
}

.case .tabs a.active{
	color: #0067ED;
}
.case .tabs a:first-child.active::before{
	background: url(../image/case-tabs.png) no-repeat 0 -60px;
	background-size: 460px;
}
.case .tabs a:first-child+a.active::before{
	background: url(../image/case-tabs.png) no-repeat -60px -60px;
	background-size: 460px;
}
.case .tabs a:first-child+a+a.active::before{
	background: url(../image/case-tabs.png) no-repeat -120px -60px;
	background-size: 460px;
}
.case .tabs a:first-child+a+a+a.active::before{
	background: url(../image/case-tabs.png) no-repeat -180px -60px;
	background-size: 460px;
}
.case .tabs a:first-child+a+a+a+a.active::before{
	background: url(../image/case-tabs.png) no-repeat -240px -60px;
	background-size: 460px;
}
.case .tabs a:first-child+a+a+a+a+a.active::before{
	background: url(../image/case-tabs.png) no-repeat -300px -60px;
	background-size: 460px;
}
.case .tabs a:first-child+a+a+a+a+a+a.active::before{
	background: url(../image/case-tabs.png) no-repeat -360px -60px;
	background-size: 460px;
}
.case .tabs a:first-child+a+a+a+a+a+a+a.active::before{
	background: url(../image/case-tabs.png) no-repeat -420px -60px;
	background-size: 460px;
}

/* index_partner */
.index_partner{
	padding-bottom: 110px;
}
.partner_swiper{
	height: 296px;
	margin-top: 40px;
}
.partner_swiper .swiper-slide img{
	display: block;
	width: 169px;
	height: 68px;
}
.partner_swiper .swiper-slide {
    text-align: center;
    height: 68px;
    display: -webkit-box;
    display: -ms-flexbox;
    display: -webkit-flex;
    display: flex;
    -webkit-box-pack: center;
    -ms-flex-pack: center;
    -webkit-justify-content: center;
    justify-content: center;
    -webkit-box-align: center;
    -ms-flex-align: center;
    -webkit-align-items: center;
    align-items: center;
}
.index_partner .swiper-pagination{
	bottom: 0 !important;
}
.index_partner .swiper-pagination .swiper-pagination-bullet{
	width: 16px;
	height: 16px;
	box-sizing: border-box;
	opacity: 0.3;
	background: none;
	position: relative;
}
.index_partner .swiper-pagination .swiper-pagination-bullet::after{
	content: " ";
	display: block;
	width: 8px;
	height: 8px;
	border-radius: 100%;
	background: #303133;
	position: absolute;
	left: 50%;
	top: 50%;
	margin-left: -4px;
	margin-top: -4px;
}
.index_partner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active{
	border: 1px solid #0067ED;
	opacity: 1;
}
.index_partner .swiper-pagination .swiper-pagination-bullet.swiper-pagination-bullet-active::after{
	background: #0067ED;
}
.index_partner a.more{
	color: #0067ED;
	font-size: 16px;
	line-height: 22px;
	align-items: center;
	border: 1px solid #0067ED;
	border-radius: 4px;
	width: 129px;
	height: 40px;
	justify-content: center;
	margin: 0 auto;
	margin-top: 40px;
}
.index_partner a.more::after{
	content: " ";
	display: block;
	width: 16px;
	height: 16px;
	background: url(../image/index-ico.png) no-repeat -160px -68px;
	background-size: 250px;
	margin-left: 3px;
}

/* index_about */
.index_about{
	height: 678px;
	background: url(../image/ab-bg.jpg) no-repeat center;
	box-sizing: border-box;
	padding-top: 96px;
}
.index_about .index_tit p,.index_about .index_tit span{
	color: #fff;
}
.index_about .index_tit span::before, .index_about .index_tit span::after{
	background: #fff;
}
.index_about .info{
	margin-top: 30px;
}
.index_about .info p{
	font-size: 16px;
	color: #fff;
	text-align: center;
	line-height: 186%;
}
.index_about ul{
	width: 656px;
	justify-content: space-between;
	margin: 0 auto;
	color: #fff;
	text-align: center;
	height: 138px;
	border-top: 1px solid rgba(255, 255, 255, 0.2);
	border-bottom: 1px solid rgba(255, 255, 255, 0.2);
	margin-top: 36px;
	box-sizing: border-box;
	padding-top: 20px;
}
.index_about li p{
	font-size: 50px;
	line-height: 64px;
}
.index_about li p small{
	font-size: 20px;
	line-height: 28px;
	margin-left: 5px;
}
.index_about li span{
	display: block;
	font-size: 16px;
	line-height: 22px;
	margin-top: 8px;
}
.index_about a.more{
	margin: 0 auto;
	color: #fff;
	font-size: 16px;
	line-height: 22px;
	width: 129px;
	height: 40px;
	border: 1px solid #FFFFFF;
	border-radius: 4px;
	align-items: center;
	justify-content: center;
	margin-top: 32px;
}
.index_about a.more::after{
	content: " ";
	display: block;
	width: 16px;
	height: 16px;
	background: url(../image/index-ico.png) no-repeat -186px -68px;;
	background-size: 250px;
	margin-left: 3px;
}

/* index_news */
.index_news{
	margin-top: 100px;
}
.index_news .new_img{
	margin-top: 50px;
	margin-bottom: 50px;
	border-radius: 4px 4px 0px 0px;
}
.index_news .new_img a:first-child{
	margin-left: 0;
}
.index_news .new_img a{
	display: block;
	width: 410px;
	border-radius: 4px;
	overflow: hidden;
	margin-left: 35px;
}
.index_news .new_img a img{
	width: 410px;
	height: 230px;
}
.index_news .new_img .info{
	padding: 16px;
	height: 136px;
	border: 1px solid #EBEEF5;
	border-radius: 0px 0px 4px 4px;
	box-sizing: border-box;
}
.index_news .new_img .info .info_tit{
	height: 62px;
	align-items: center;
}
.index_news .new_img .info h3{
	font-size: 18px;
	line-height: 31px;
	font-weight: normal;
	display: -webkit-box;
	-webkit-box-orient: vertical;
	-webkit-line-clamp: 1;
	overflow: hidden;
	color: #303133;
}
.index_news .new_img p{
	color: #909399;
	height: 40px;
	border-top: 1px solid #EBEEF5;
	align-items: center;
	margin-top: 16px;
	justify-content: space-between;
}
.index_news .new_img p::after{
	content: " ";
	display: block;
	width: 14px;
	height: 14px;
	background: url(../image/index-ico.png) no-repeat -103px -70px;
	background-size: 250px;
}
.index_news .new_img a:hover p{
	color: #0067ED;
}
.index_news .new_img a:hover p::after{
	background: url(../image/index-ico.png) no-repeat -131px -70px;
	background-size: 250px;
}
.index_news .new_img a:hover .info p{
    border-top: 1px solid #0067ED;
}
.index_list{
	justify-content: space-between;
}
.index_list .item{
	width: 410px;
}
.index_list .item .item_tit{
	align-items: center;
	justify-content: space-between;
	margin-bottom: 8px;
}
.index_list .item .item_tit span{
	font-size: 24px;
	line-height: 41px;
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
}
.index_list .item .item_tit span::before{
	content: " ";
	display: block;
	width: 11px;
	height: 24px;
	background: url(../image/index-ico.png) -220px -66px;
	background-size: 250px;
	margin-right: 6px;
}
.index_list .item .item_tit a{
	font-size: 16px;
	line-height: 27px;
	color: #0067ED;
	align-items: center;
}
.index_list .item .item_tit a::after{
	content: " ";
	display: block;
	width: 14px;
	height: 14px;
	background: url(../image/index-ico.png) no-repeat -133px -71px;
	background-size: 250px;
	margin-left: 2px;
}
.index_list .item li{
	display: -webkit-flex;
	display: -moz-flex;
	display: -ms-flex;
	display: -o-flex;
	display: flex;
	align-items: center;
	height: 48px;
	border-top: 1px solid #EBEEF5;
	justify-content: space-between;
}
.index_list .item li a{
	font-size: 15px;
	line-height: 22px;
	overflow: hidden;
	text-overflow:ellipsis;
	white-space: nowrap;
	position: relative;
	padding-left: 8px;
	flex:.9;
}
.index_list .item li a::before{
	content: " ";
	display: block;
	width: 4px;
	height: 4px;
	background: #0067ED;
	border-radius: 100%;
	position: absolute;
	left: 0;
	top: 50%;
}
.index_list .item li span{
	color: #909399;
}


/* 集团新闻 */
.home_news{
	background: url(../home_image/home_news.jpg) no-repeat center;
	background-size: cover;
	height:775px;
	padding:100px 0;
}
.home_news_span{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.home_news_span span{
	color: #303133;
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.571px;
}
.home_news_span p{
	margin-top:12px;
	color:#606266;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.36px;
}
.home_news_more{
	display:flex;
	align-items: center;
	justify-content: center;
	width:112px;
	height:36px;
	border-radius: 30px;
	border: 1px solid #0067ED;
	background: #FFF;
	color:#0067ED;
	font-size: 15px;
	font-style: normal;
	font-weight: 400;
	line-height: 145%;
	letter-spacing: 0.3px;
	position: relative;
}
.home_news_more:hover{
	background: #0067ED;
	color:#ffffff;
}
.home_news_more::after{
	content: '';
	width:5px;
	height:10px;
	background: url(../home_image/news_disc.svg) no-repeat center;
	background-size: cover;
	margin-left:4px;
}
.home_news_more:hover::after{
	background: url(../home_image/news_disc1.svg) no-repeat center;
	background-size: cover;
}
.home_news_top{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.home_news_main{
	display: flex;
	justify-content: space-between;
	padding-top: 40px;
}
.home_news_side{
	width:400px;
	height:442px;
	overflow: hidden;
	border-radius: 12px;
	border-right: 1px solid  #E4E7ED;
	border-bottom: 1px solid #E4E7ED;
	border-left: 1px solid #E4E7ED;
	background: #FFF;
	-webkit-border-radius: 12px;
	-moz-border-radius: 12px;
	-ms-border-radius: 12px;
	-o-border-radius: 12px;
}
.home_news_sell{
	width:400px;
	height: 266px;
	overflow: hidden;
	position: relative;
	border-radius: 12px 12px 0px 0px;
	-webkit-border-radius: 12px 12px 0px 0px;
	-moz-border-radius: 12px 12px 0px 0px;
	-ms-border-radius: 12px 12px 0px 0px;
	-o-border-radius: 12px 12px 0px 0px;
}
.home_news_sell img{
	max-width:100%;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
}
.home_news_sell:hover img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}
.home_news_link{
	width:100%;
	height:50px;
	background: rgba(0, 0, 0, 0.45);
	backdrop-filter: blur(2px);
	position: absolute;
	left:0;
	bottom: 0;
	padding:0 20px;
	color:#FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height:50px; 
	letter-spacing: 0.72px;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.home_news_tag:hover,
.home_news_link:hover{
	color:#ffffff;
}
.home_news_tag{
	width: 104px;
	height: 36px;
	display: flex;
	align-items: center;
	justify-content: center;
	position: absolute;
	background:url(../home_image/home_news_tag.svg) no-repeat center;
	background-size: cover;
	left:0px;
	top:20px;
	z-index: 222;
	color: #FFF;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.36px;
}
.home_news_side ul{
	padding:12px 16px;
}
.home_news_side ul li{
	display: flex;
	align-items: center;
	justify-content: space-between;
	margin:20px 0;
}
.home_news_side ul li a{
	color: #303133;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 150%;
	letter-spacing: 0.32px;
	width:260px;
	padding-left:10px;
	position: relative;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.home_news_side ul li a:hover{
	color:#0067ED;
}
.home_news_side ul li a::after{
	content: '';
	position: absolute;
	left:0px;
	top:50%;
	width:4px;
	height:4px;
	background: #0067ED;
	border-radius: 50%;
	-webkit-border-radius: 50%;
	-moz-border-radius: 50%;
	-ms-border-radius: 50%;
	-o-border-radius: 50%;
}
.home_news_side ul li span{
	color:#909399;
	text-align: right;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 145%;
	letter-spacing: 0.28px;
}

/* 经典案例 */
.home_case{
	height:1090px;
	background: url(../home_image/home_case.jpg) no-repeat center;
	background-size: cover;
	padding-top:100px;
}
.home_case_logo{
	padding-top:80px;
}
#case_logo_swiper3,
#case_logo_swiper2,
#case_logo_swiper1{
	/* height:260px; */
	filter: drop-shadow(0px 4px 25px rgba(3, 26, 107, 0.10));
}
.case_logo img{
	width: 169px;
	height: 68px;
	margin:10px 7px;
}


/* #case_logo_swiper .swiper-slide {
	height: calc((100% - 30px) / 3) !important;
} */
.home_case_logo .swiper-wrapper{
	-webkit-transition-timing-function: linear;
    -moz-transition-timing-function: linear;
    -ms-transition-timing-function: linear;
    -o-transition-timing-function: linear;
    transition-timing-function: linear;
}
.home_case_top{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.home_case_top span{
	color:#303133;
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.8px;
}
.home_case_top p{
	margin-top:12px;
	color: #606266;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.36px;
}
.home_case_tag{
	display: flex;
	align-items: center;
	justify-content: space-between;
	padding-top:40px;
}
.home_case_tag ul{
	display: flex;
}
.home_case_tag ul li{
	margin-right:36px;
	position: relative;
	padding:8px 0;
	color: #303133;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 145%;
	letter-spacing: 0.36px;
	cursor: pointer;
}
.home_case_tag ul li.active{
	color:#0067ED;
}
.home_case_tag ul li.active::after{
	content: '';
	width:100%;
	height:2px;
	background: #0067ED;
	position: absolute;
	left:0;
	bottom: 0;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
}
.home_case_main{
	display: flex;
}
.home_case_sider{
	width:400px;
	margin-right:50px;
	display: flex;
	flex-direction: column;
	align-items: flex-start;
	padding-top: 40px;
}
.home_case_sider:nth-child(3){
	margin-right:0;
}
.home_case_sider>a{
	position: relative;
	color:#303133;
	font-size: 20px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.4px;
	display: block;
	width:100%;
	margin-bottom:16px;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 1;
	-webkit-box-orient: vertical;
}
.home_case_sider>a::after{
	content: '';
	width:24px;
	height:24px;
	background: url(../home_image/case_sider.svg) no-repeat center;
	background-size: cover;
	position: absolute;
	right:0;
	top:50%;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.home_case_sider p{
	min-height: 70px;
	padding-top: 12px;
	border-top: 1px solid #E4E7ED;
	color: #606266;
	text-align: justify;
	font-size: 14px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
	word-break: break-all;
	text-overflow: ellipsis;
	overflow: hidden;
	display: -webkit-box;
	-webkit-line-clamp: 2;
	-webkit-box-orient: vertical;
}
.case_sider_pic{
	margin-top:20px;
	width:100%;
	height:225px;
	overflow: hidden;
	border-radius: 10px;
	box-shadow: 0px 4px 25px 0px rgba(3, 26, 107, 0.10);
}
.case_sider_pic img{
	max-width: 100%;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
}
.home_case_sider:hover .case_sider_pic img{
	transform: scale(1.1);
	-webkit-transform: scale(1.1);
	-moz-transform: scale(1.1);
	-ms-transform: scale(1.1);
	-o-transform: scale(1.1);
}
.home_serve{
	background: url(../home_image/home_serve.jpg) no-repeat center;
	background-size: cover;
	height:764px;
	padding-top: 120px;
}
.home_serve_name{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.home_serve_name span{
	color:#303133;
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.8px;
}
.home_serve_name p{
	margin-top:10px;
	color: #606266;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.36px;
}
.home_serve_top{
	display: flex;
	align-items: flex-start;
	justify-content: space-between;
}
.home_serve_main{
	display: flex;
	align-items: flex-start;
	justify-content: flex-start;
	padding-top:42px;
	position: relative;
}
.home_serve_slick{
	margin-right:20px;
	width: 236px;
	height: 388px;
	padding:26px 0;
	border-radius: 8px;
	border: 2px solid #FFF;
	background: rgba(255, 255, 255, 0.60);
	box-shadow: 0px 4px 25px 0px rgba(3, 26, 107, 0.10);
	backdrop-filter: blur(2px);
}
.serve_slick_name{
	padding-left:26px;
	color:#303133;
	font-size: 24px;
	font-style: normal;
	font-weight: 500;
	line-height: 145%;
	letter-spacing: 0.48px;
}
.home_serve_slick ul{
	margin-top:18px;
}
.home_serve_slick ul li{
	padding:10px 20px 10px 24px;
	cursor: pointer;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
}
.home_serve_slick ul li a{
	color:#303133;
	font-size: 17px;
	font-style: normal;
	font-weight: 500;
	line-height: 150%;
	letter-spacing: 0.34px;
	display: flex;
	align-items: center;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
}
.home_serve_slick ul li a img{
	margin-right:8px;
	width:26px;
	height:26px;
}
.home_serve_slick ul li p{
	padding:4px 0 0 34px;
	display: none;
	color:#606266;
	font-size: 11px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.24px;
	transition: all .3s;
	-webkit-transition: all .3s;
	-moz-transition: all .3s;
	-ms-transition: all .3s;
	-o-transition: all .3s;
}
.home_serve_slick ul li.active p{
	display: block;
}
.home_serve_slick ul li.active{
	width: calc(100% + 4px);
	margin-left:-2px;
	background: rgba(0, 103, 237, 0.10);
}
.home_serve_slick ul li.active a{
	color:#0067ED;
}
.serve_main_logo img,
.serve_main_logo{
	width: 692px;
	height: 620px;
}
.serve_main_logo{
	position: absolute;
	top:-140px;
	right:-90px;
	animation: rotate 3s linear infinite;
	-webkit-animation: rotate 3s linear infinite;
}

@keyframes rotate {
	0% {
		top:-140px;
	}
	50% {
		top:-120px;
	}
	100% {
		top:-140px;
	}
}

/* 解决方案 */
.home_plan{
	height:730px;
	background: url(../home_image/home_plan.jpg) no-repeat center;
	background-size: cover;
	padding-top:120px;
}
.home_plan .container{
	position: relative;
}
.home_plan_top{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.home_plan_top span{
	color: #303133;
	font-size: 40px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.8px;
}
.home_plan_top p{
	margin-top:12px;
	color:#606266;
	font-size: 18px;
	font-style: normal;
	font-weight: 400;
	line-height: normal;
	letter-spacing: 0.36px;
}
.home_plan_tag{
	width:660px;
	margin-top:40px;
	position: relative;
}
.home_plan_tag .swiper-slide a{
	position: relative;
	display: block;
	padding:8px 0;
	color: #303133;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: 145%;
	letter-spacing: 0.36px;
	text-align: center;
}
.home_plan_tag .swiper-wrapper .swiper-slide:nth-child(4),
.home_plan_tag .swiper-wrapper .swiper-slide:nth-child(1){
	max-width: 100px;
}
.home_plan_tag .swiper-wrapper .swiper-slide:nth-child(3),
.home_plan_tag .swiper-wrapper .swiper-slide:nth-child(2){
	max-width: 80px;
}
.home_plan_tag .swiper-wrapper .swiper-slide:nth-child(6){
	max-width: 120px;
}
.home_plan_tag .swiper-slide{
	max-width:140px;
}
.home_plan_tag .swiper-button-next{
	right:-40px;
	top:50%;
	width:24px;
	height:24px;
	background: url(../home_image/button-next.svg) no-repeat center;
	background-size: cover;
	margin-top:0;
	transform: translateY(-50%);
	-webkit-transform: translateY(-50%);
	-moz-transform: translateY(-50%);
	-ms-transform: translateY(-50%);
	-o-transform: translateY(-50%);
}
.home_plan_tag .swiper-button-next::after{
	content: '';
}
.home_plan_tag .swiper-slide a.active{
	color: #0067ED;
}
.home_plan_tag .swiper-slide a.active::after{
	content: '';
	width:100%;
	height:2px;
	background: #0067ED;
	position: absolute;
	left:0;
	bottom: 0;
}
.home_plan_slider{
	display: flex;
	flex-direction: column;
	align-items: flex-start;
}
.home_plan_slider span{
	color: #303133;
	font-size: 28px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.56px;
}
.home_plan_slider p{
	margin-top:16px;
	max-width: 480px;
	color:#606266;
	text-align: justify;
	font-size: 16px;
	font-style: normal;
	font-weight: 400;
	line-height: 200%;
}
.home_plan_main{
	padding-top: 48px;
	width:600px;
}
.home_plan_bottom{
	padding-top:50px;
	display: flex;
}
.home_plan_bottom a{
	display: flex;
	align-items: center;
	justify-content: center;
	margin-right:21px;
	width: 182px;
	height: 52px;
	border-radius: 6px;
	border: 1px solid #0067ED;
	background: #0067ED;
	box-shadow: 0px 4px 30px 0px rgba(0, 103, 237, 0.30);
	color:#FFF;
	text-align: justify;
	font-size: 20px;
	font-style: normal;
	font-weight: 400;
	line-height: 180%; /* 36px */
}
.home_plan_bottom a:last-child{
	background:#FFF;
	color:#0067ED;
	border:none;
}
.home_play{
	width:784px;
	height:270px;
	overflow: hidden;
	position: absolute;
	top:50%;
	right:-200px;
	transform: translateY(-30%);
	-webkit-transform: translateY(-30%);
	-moz-transform: translateY(-30%);
	-ms-transform: translateY(-30%);
	-o-transform: translateY(-30%);
}

#certify {
	position: relative;
	width: 784px;
}
#certify .swiper-wrapper{
	transition-duration:50ms !important;
}
#certify .swiper-slide {
	width: 405px;
	height: 270px;
	cursor: pointer;
	overflow: hidden;
	border-radius: 10px;
	-webkit-border-radius: 10px;
	-moz-border-radius: 10px;
	-ms-border-radius: 10px;
	-o-border-radius: 10px;
	filter: blur(1.5px);
	-webkit-filter: blur(1.5px);
}
#certify  .swiper-slide.swiper-slide-active{
	filter: blur(0px);
	-webkit-filter: blur(0px);
}
#certify  .swiper-slide img{
	display:block;
	width: 405px;
	height: 270px;
}
#certify  .swiper-slide p {
	position: absolute;
	bottom: 24px;
	width:100%;
	text-align: center;
	color:#FFF;
	text-align: center;
	font-size: 18px;
	font-style: normal;
	font-weight: 500;
	line-height: normal;
	letter-spacing: 0.36px;
}



