﻿/*推荐页卡问句滚动*/
.items.scroll {
    animation-name: scroll;
    animation-duration: 5s;
    animation-delay: 500ms;
    animation-timing-function: linear;
    animation-iteration-count: infinite;
}
@keyframes scroll {
    0% {transform: translate(100%,0);}
    50% {transform: translate(0,0);}
    100% {transform: translate(-100%,0);}
}