@charset "utf-8";
@import "classes";

/**
 * @module other
 * @description 定义闪烁动画
 * @method flash
 */
@-webkit-keyframes flash {
	0%,
	50%,
	100% {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}
@keyframes flash {
	0%,
	50%,
	100% {
		opacity: 1;
	}
	25%,
	75% {
		opacity: 0;
	}
}

.ani.flash {
	-webkit-animation-name: flash;
	animation-name: flash;
}