	.ani-scale {
		animation: scalse 0.2s linear;
	}
	
	// 选中时放大再变回原来的样子
	@keyframes scalse {
		0% {
			transform: scale(0.9);
		}

		50% {
			transform: scale(1.1);
		}

		100% {
			transform: scale(1);
		}
	}
	
	.ani_to_max_to_min {
		animation: ani_to_max_to_min 0.35s  ease-in-out;
	}
	
	
	@keyframes ani_to_max_to_min {
		0% {
			transform: scale(0.3);
			opacity:0.7;
		}
	
		50% {
			transform: scale(1.5)
		}
	
		100% {
			transform: scale(1);
			opacity:1;
		}
	}