.scroll-container {width: 100%; height: 30px; line-height: 30px; overflow: hidden; position: relative;}
.scroll-content {display: inline-block; white-space: nowrap; position: absolute;left: 100%; animation: scroll 20s linear infinite; }@keyframes scroll {0% {left: 100%;}100% {left: -100%; }}
.scroll-content img {width: 30px;vertical-align: middle; margin-right: 8px; }