/**
  * 动画CSS
 */
.animated{
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
	animation-fill-mode: both;
	-webkit-animation-fill-mode: both;
}

.animated.infinite{
	-webkit-animation-iteration-count: infinite;
	animation-iteration-count: infinite;
}

.animated.dialog{
	-webkit-animation-duration: 0.3s;
	animation-duration: 0.3s;
}

.move{
	animation-name:move;
	-webkit-animation-name:move;
}

.pulse{
	animation-name:pulse;
	-webkit-animation-name:pulse;
}
@keyframes pulse{
	0%{
		transform:scale(0.8,0.8);
		-webkit-transform:scale(0.8,0.8);
		opacity:1;
	}
	100%{
		-webkit-transform:sclae(1,1);
		transform:sclae(1,1);
		opacity:1;
	}
}
@-webkit-keyframes pulse{
	0%{
		transform:scale(0.8,0.8);
		-webkit-transform:scale(0.8,0.8);
		opacity:1;
	}
	100%{
		-webkit-transform:sclae(1,1);
		transform:sclae(1,1);
		opacity:1;
	}
}
@-moz-keyframes pulse{
	0%{
		transform:scale(0.8,0.8);
		-moz-transform:scale(0.8,0.8);
		opacity:1;
	}
	100%{
		-moz-transform:sclae(1,1);
		transform:sclae(1,1);
		opacity:1;
	}
}
@-o-keyframes pulse{
	0%{
		transform:scale(0.8,0.8);
		-o-transform:scale(0.8,0.8);
		opacity:1;
	}
	100%{
		-o-transform:sclae(1,1);
		transform:sclae(1,1);
		opacity:1;
	}
}

.img_rotate.active{
	transition:transform 0.2s linear;
	transition:-ms-transform 0.2s linear;
	-webkit-transition:-webkit-transform 0.2s linear;
	-moz-transition:-moz-transform 0.2s linear;
	-o-transition:-o-transform 0.2s linear;
	transform:rotate(180deg);
	-webkit-transform:rotate(180deg);
	-moz-transform:rotate(180deg);
	-o-transform:rotate(180deg);
	display:inline-block;
}

.input_rg{
	-webkit-animation-duration: 0.5s;
	animation-duration: 0.5s;
	animation-name:slide;
	-webkit-animation-name:slide;
	animation-timing-function:ease;
	-webkit-animation-timing-function:ease;
}
@keyframes slide{
	0%{
		width:0%;
	}
	100%{
		width:75%;
	}
}
@-webkit-keyframes slide{
	0%{
		width:0%;
	}
	100%{
		width:75%;
	}
}
@-moz-keyframes slide{
	0%{
		width:0%;
	}
	100%{
		width:75%;
	}
}
@-o-keyframes slide{
	0%{
		width:0%;
	}
	100%{
		width:75%;
	}
}