﻿/* 自訂動畫效果 */
.wow {
	-webkit-animation: fadeInDown 1s ease both;
	animation: fadeInDown 1s ease both;
}

.zoomIn1 {
	-webkit-animation: zoomIn 1s ease both;
	animation: zoomIn 1s ease both;
}

.zoomIn2 {
	-webkit-animation: zoomIn 1.5s ease both;
	animation: zoomIn 1.5s ease both;
}