@charset "UTF-8";

/*!
Animate.css - http://daneden.me/animate
Licensed under the MIT license - http://opensource.org/licenses/MIT

Copyright (c) 2014 Daniel Eden
*/

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

/* 自行加入需要的class */
@-webkit-keyframes fadeIn {
  0%{opacity:0 ;filter: blur(10px);}
  100%{opacity:1;filter: blur(0px);}
}
@keyframes fadeIn {
  0%{opacity:0;filter: blur(10px);}
  100%{opacity:1;filter: blur(0px);}
}
.fadeIn{-webkit-animation-name:fadeIn;animation-name:fadeIn;animation-duration: 1.2s;}
