@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@700&display=swap');

.qq-news-wrapper{
width:100%;
overflow:hidden;
}

.qq-news-track{
display:inline-flex;
align-items:center;
white-space:nowrap;
animation:qqticker 250s linear infinite;
}

.qq-news-item{
display:inline-block;
margin-right:40px;
}

.qq-news-item a{
font-family:'Poppins',sans-serif;
font-weight:700;
font-size:15px;
color:#ffffff;
text-decoration:none;
}

.qq-sep{
margin-left:12px;
}

@keyframes qqticker{
0%{transform:translateX(0);}
100%{transform:translateX(-50%);}
}

@media (max-width:768px){

.qq-news-track{
animation-duration:145s;
}

.qq-news-item{
margin-right:30px;
}

.qq-news-item a{
font-size:14px;
}

}
.qq-news-wrapper:hover .qq-news-track{
animation-play-state:paused;
}

.qq-news-wrapper:active .qq-news-track{
animation-play-state:paused;
}