@charset "utf-8";
/* CSS Document */
.animated {
	animation-duration: 2s;
	animation-fill-mode: both;
  }
  

  
  .animated.infinite {
	animation-iteration-count: infinite;
  }
  
  
  .animated.hinge {
	animation-duration: 2s;
  }
  
  .animated.fast{
	animation-duration: 0.5s;
  }
  


  
  @keyframes zoomIn {
   from {
     opacity: 0;
     transform: scale3d(.3, .3, .3);
   }
 
   50% {
     opacity: 1;
   }
 }
 
 .zoomIn {
   animation-name: zoomIn;
   animation-duration:1.5s;
   animation-fill-mode: both;
   animation-duration: .8s; /* 動畫持續時間：2秒 */
   animation-delay:.2s;
   /* animation-iteration-count: infinite; 無限重複 */
   
 }
