﻿/* 自訂動畫效果 */
.wow {
    -webkit-animation: fadeInDown 0.8s ease both;
    animation: fadeInDown 0.8s ease both;
}

.zoomIn1 {
    -webkit-animation: zoomIn 0.8s ease both;
    animation: zoomIn 0.8s ease both;
}

.fadeInUp {
    -webkit-animation: fadeInUp 0.8s ease both;
    animation: fadeInUp 0.8s ease both;
}

.fadeInLeft {
    -webkit-animation: fadeInLeft 0.8s ease both;
    animation: fadeInLeft 0.8s ease both;
}

.fadeInRight {
    -webkit-animation: fadeInRight 0.8s ease both;
    animation: fadeInRight 0.8s ease both;
}

.flipInX {
    -webkit-animation: flipInX 1s ease both;
    animation: flipInX 1s ease both;
}

.shake {
    -webkit-animation: shake 1s ease both;
    animation: shake 1s ease both;
}

.flipInX {
    -webkit-animation: flipInX 1s ease both;
    animation: flipInX 1s ease both;
}
