@charset "utf-8";

/*垂直移动，开始位置为低端，移动到最顶端*/
@keyframes noticeFloatWin {
	from {bottom: -80% ;}
	to {bottom: 100%;}
}


@-moz-keyframes verticalDesc { /*firefox*/
	from {bottom: -80% ;}
	to {bottom: 100%;}
}

@-webkit-keyframes verticalDesc { /*Safari and Chrome*/
	from {bottom: -80% ;}
	to {bottom: 100%;}
}

@-o-keyframes verticalDesc {/* Opera */
	from {bottom: -80% ;}
	to {bottom: 100%;}
} 