/*动画执行的时间*/
.animateslow {
    -webkit-animation-duration: 2s;
    -moz-animation-duration: 2s;
    animation-duration: 2s;
    
}
.animatefast{
    -webkit-animation-duration: 0.8s;
    -moz-animation-duration: 0.8s;
    animation-duration: 0.8s;
}
.animatenormal{
    -webkit-animation-duration: 1s;
    -moz-animation-duration: 1s;
    animation-duration: 1s;
}
/*标题上窜的动画*/
.bounceInUp{
	-webkit-animation-name: bounceInUp;
	-webkit-animation-fill-mode: both;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-direction: alternate;
	
	-moz-animation-name: bounceInUp;
	-moz-animation-fill-mode: both;
	-moz-animation-timing-function: ease-in-out;
	-moz-animation-direction: alternate;
	
	animation-name: bounceInUp;
	animation-fill-mode: both;
	animation-timing-function: ease-in-out;
	animation-direction: alternate;
}
@keyframes bounceInUp{
	0% {
	    -webkit-transform: translateY(50px);
	    -ms-transform: translateY(50px);
	    transform: translateY(50px);
	}
	20% {
	    -webkit-transform: translateY(-50px);
	    -ms-transform: translateY(-50px);
	    -moz-transform: translateY(-50px);
	    transform: translateY(-50px);
	}
	60% {
	    -webkit-transform: translateY(30px);
	    -ms-transform: translateY(30px);
	    -moz-transform: translateY(30px);
	    transform: translateY(30px);
	}
	80% {
	    -webkit-transform: translateY(-30px);
	    -ms-transform: translateY(-30px);
	    -moz-transform: translateY(-30px);
	    transform: translateY(-30px);
	}
	100% {
	    -webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	    -moz-transform: translateY(0);
	    transform: translateY(0);
	}
}

/*星星闪光的动画*/
@keyframes shining{
	0% {
	    opacity: 1;
	    transform: scale(1.1);
	    -webkit-transform: scale(1.1);
	    -moz-transform: scale(1.1);
	}
	50% {
		opacity: 0.3;
		transform: scale(0.6);
		-webkit-transform: scale(0.6);
		-moz-transform: scale(0.6);
	}
	100% {
		opacity: 1;
		transform: scale(1.1);
		-moz-transform: scale(1.1);
		-webkit-transform: scale(1.1);
	}
}

.shining{
	-webkit-animation-delay: 1s ;
	-webkit-animation-name: shining;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-fill-mode: both;
	
	-moz-animation-delay: 1s ;
	-moz-animation-name: shining;
	-moz-animation-timing-function:  ease-in-out;
	-moz-animation-iteration-count: infinite;
	-moz-animation-fill-mode: both;
	
	animation-delay: 1s ;
	animation-name: shining;
	animation-timing-function:  ease-in-out;
	animation-iteration-count: infinite;
	animation-fill-mode: both;
}

/*闪动的喇叭*/
@keyframes shine{
	0% {
	   	transform-origin: center center;
	    transform: scale(0.6);
	}
	100% {
		transform: scale(1.2);
	}
}

.shine{
	-webkit-animation-delay: 2s ;
	-webkit-animation-name: shine;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-iteration-count: infinite;
	-webkit-animation-fill-mode: both;
	
	-moz-animation-delay: 2s;
	-moz-animation-name: shine;
	-moz-animation-timing-function:  ease-in-out;
	-moz-animation-iteration-count: infinite;
	-moz-animation-fill-mode: both;
	
	animation-delay: 2s;
	animation-name: shine;
	animation-timing-function:  ease-in-out;
	animation-iteration-count: infinite;
	animation-fill-mode: both;
}

/*笔试划入*/
@keyframes ban_1{
  0% {
    opacity: 0;
    transform: translateX(-1000px);
  }
  45% {
    opacity: 1;
    transform: translateX(0) skewX(30deg);
  }
  50% {
    opacity: 1;
    transform: translateX(0) skewX(35deg);
  }
  65% {
    opacity: 1;
    transform: translateX(0) skewX(-10deg);
  }
  80% {
    opacity: 1;
    transform: translateX(0) skewX(10deg);
  }
  100% {transform:skewX(0deg);}
}

.ban_1{
	-webkit-transform-origin: center bottom;
	-webkit-animation-delay: 1.8s ;
	-webkit-animation-name: ban_1;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: both;
	
	-moz-animation-delay: 1.8s ;
	-moz-animation-name: ban_1;
	-moz-animation-timing-function:  ease-in-out;
	-moz-animation-fill-mode: both;
	
	animation-delay: 1.8s ;
	animation-name: ban_1;
	animation-timing-function:  ease-in-out;
	animation-fill-mode: both;
}

/*背景里面的东西出现*/
@keyframes slowIn{
  0%{
  	opacity: 0;
  }
  100%{
  	opacity: 1;
  }
}

.slowIn{
	-webkit-animation-delay: 3s ;
	-webkit-animation-name: slowIn;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: both;
	
	-moz-animation-delay: 3s;
	-moz-animation-name: slowIn;
	-moz-animation-timing-function:  ease-in-out;
	-moz-animation-fill-mode: both;
	
	animation-delay: 3s;
	animation-name: slowIn;
	animation-timing-function:  ease-in-out;
	animation-fill-mode: both;
}

/*文字摔下来的感觉*/
@keyframes dropDown{
	0% {
	    opacity: 0;
	    -webkit-transform: translateY(-500px);
	    -ms-transform: translateY(-500px);
	    transform: translateY(-500px);
	}
	
	100% {
		opacity: 1;
	    -webkit-transform: translateY(0);
	    -ms-transform: translateY(0);
	    transform: translateY(0);
	}
}

.dropDown{
	
	-webkit-animation-delay: 0.2s;
	-webkit-animation-duration: 0.5s;
	-webkit-animation-name: dropDown;
	-webkit-animation-timing-function: ease-in-out;
	-webkit-animation-fill-mode: both;
	
	-moz-animation-delay: 0.2s;
	-moz-animation-duration: 0.5s;
	-moz-animation-name: dropDown;
	-moz-animation-timing-function:  ease-in-out;
	-moz-animation-fill-mode: both;
	
	animation-delay: 0.2s;
	animation-duration: 0.5s;
	animation-name: dropDown;
	animation-timing-function:  ease-in-out;
	animation-fill-mode: both;
}

.delaytime1{
	-webkit-animation-delay: 0.8s;
	animation-delay: 0.8s;
}

.delaytime2{
	-webkit-animation-delay: 1.2s;
	animation-delay: 1.2s;
}

.delaytime3{
	-webkit-animation-delay: 1.6s;
	animation-delay: 1.6s;
}


/*入口跳动*/
@keyframes jump1{
	0% {
	    opacity: 0;
	    -webkit-transform: translateX(-2000px);
	    -ms-transform: translateX(-2000px);
	    transform: translateX(-2000px);
	}
	60% {
	    opacity: 1;
	    -webkit-transform: translateX(30px);
	    -ms-transform: translateX(30px);
	    transform: translateX(30px);
	}
	80% {
	    -webkit-transform: translateX(-10px);
	    -ms-transform: translateX(-10px);
	    transform: translateX(-10px);
	}
	100% {
	    -webkit-transform: translateX(0);
	    -ms-transform: translateX(0);
	    transform: translateX(0);
	}
}
.jump1{
	-webkit-animation-delay: 0.4s;
	-webkit-animation-name: jump1;
	-webkit-animation-fill-mode: both;
	
	-moz-animation-delay: 0.4s;
	-moz-animation-name: jump1;
	-moz-animation-fill-mode: both;
	
	animation-delay: 0.4s;
	animation-name: jump1;
	animation-fill-mode: both;
}

