/* */
.banner .news_images a {
    display: block;
    position: relative;
    overflow: hidden;}
.anima {
animation-name: likes; /* 动画名称 */
animation-direction: alternate; /* 动画在奇数次正向播放，在偶数次反向播放 */
animation-timing-function: linear; /* 动画执行方式，匀速 */
animation-delay: 0s; /* 动画延迟时间 */
animation-iteration-count: infinite; /* 动画播放次数，无限循环 */
animation-duration: 8s;}

@keyframes likes {
0% {
transform: scale(1.06);}
25% {
transform: scale(1.02);}
50% {
transform: scale(1);}
75% {
transform: scale(1.02);}
100% {
transform: scale(1.06);}
}

.closestyle1045725{ font-size:12px;color:#333333;text-decoration: none ;}

