.home-bg{
	-webkit-animation-duration: 5s;
	animation-duration: 5s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: homeBg;
	animation-name: homeBg;
}
@-webkit-keyframes homeBg{
	
	0%,10%{
		transform: translate3d(0,10%,0);
		-webkit-transform: translate3d(0,10%,0);
	}
	75%{
		filter: blur(0px);
		-webkit-filter: blur(0px);
		transform: translate3d(0,0,0);
		-webkit-transform: translate3d(0,0,0);
	}
	100%{
		filter: blur(10px);
		-webkit-filter: blur(10px);
	}
	
}
@keyframes homeBg{
	0%,10%{
		transform: translate3d(0,10%,0);
		-webkit-transform: translate3d(0,10%,0);
	}
	75%{
		filter: blur(0px);
		-webkit-filter: blur(0px);
		transform: translate3d(0,0,0);
		-webkit-transform: translate3d(0,0,0);
	}
	100%{
		filter: blur(10px);
		-webkit-filter: blur(10px);
	}
}


.item2 .content .img img{
	-webkit-animation-duration: 1.5s;
	animation-duration: 1s;
	transition-timing-function: cubic-bezier(.94,.8,1,.26);
	-webkit-transition-timing-function: cubic-bezier(.94,.8,1,.26);
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: iTwoAni;
	animation-name: iTwoAni;
}
@-webkit-keyframes iTwoAni{
	0%{
		filter: blur(5px);
		-webkit-filter: blur(5px);
		transform: scale3d(3,3,3);
		-webkit-transform: scale3d(3,3,3);
	}
	100%{
		filter: blur(0px);
		-webkit-filter: blur(0px);
		transform: scale3d(1,1,1);
		-webkit-transform: scale3d(1,1,1);
	}
}
@keyframes iTwoAni{
0%{
		filter: blur(5px);
		-webkit-filter: blur(5px);
		transform: scale3d(3,3,3);
		-webkit-transform: scale3d(3,3,3);
	}
	100%{
		filter: blur(0px);
		-webkit-filter: blur(0px);
		transform: scale3d(1,1,1);
		-webkit-transform: scale3d(1,1,1);
	}
}


.item8-2 .right .active .text{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: fadeIn;
	animation-name: fadeIn
}
.item8-2 .right .active .textImg{
	-webkit-animation-duration: 1s;
	animation-duration: 1s;
	-webkit-animation-fill-mode: both;
	animation-fill-mode: both;
	-webkit-animation-name: bounceInUp;
	animation-name: bounceInUp
}
