/*首页新闻效果*/
/* Scale */
[class*="am-animation-"] {
-webkit-animation-duration: 0.5s;
animation-duration: 0.5s;
-webkit-animation-timing-function: ease-out;
animation-timing-function: ease-out;
-webkit-animation-fill-mode: both;
animation-fill-mode: both;
}
/* Hide animated element if scrollSpy is used */
@media screen {
  .cssanimations [data-am-scrollspy*="animation"] {
    opacity: 0;
  }
}

/* Scale */
.am-animation-scale-up {
-webkit-animation-name: am-scale-up;
animation-name: am-scale-up;
}

/* Scale up */
@-webkit-keyframes am-scale-up {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}
@keyframes am-scale-up {
  0% {
    opacity: 0;
    -webkit-transform: scale(0.2);
            transform: scale(0.2);
  }
  100% {
    opacity: 1;
    -webkit-transform: scale(1);
            transform: scale(1);
  }
}