@-webkit-keyframes imgAnimation {
	0% {
		left: -198px;
		top: 500px;
	}

	100% {
		top: 50px;
		left: 50%;
		margin-left: -95px;
	}
}


.feiru {

	animation-name: imgAnimation;
	animation: imgAnimation 2s alternate;
	-webkit-animation: imgAnimation 2s alternate;
	-moz-animation: imgAnimation 2s alternate infinite;

}

