@charset "utf-8";

/*!
 * animate.css -http://daneden.me/animate
 * Version - 3.5.2
 * Licensed under the MIT license - http://opensource.org/licenses/MIT
 *
 * Copyright (c) 2017 Daniel Eden
 */

.animated {
  animation-duration: 1s;
  animation-fill-mode: both;
}

/*短距位移*/
@keyframes fadeIn {
  from { transform: translateY(-5%);}
  to { transform: translateY(0);}
}
.fadeIn {
  animation-name: fadeIn;
  animation-duration: 1s;
}

@keyframes fadeIn2 {
  from { transform: translateY(5%);}
  to { transform: translateY(0);}
}
.fadeIn2 {
  animation-name: fadeIn2;
  animation-duration: 1s;
}


@keyframes zoomIn {
  from { opacity: 0; background-size: 110%;}
  to   { opacity: 1; background-size: 100%;}
}
.zoomIn {
  animation-name: zoomIn;
  animation-duration: 1s;
}
