@keyframes ticker {
    0% { transform: translate3d(-100%, 0, 0); }
    100% { transform: translate3d(0, 0, 0); }
}
.tcontainer{
    width: 100%;
    overflow: hidden;
    direction: ltr;
}
.ticker-wrap {
    width: 100%;
    padding-left: 60%;
    background-color: #000;
    height: 40px;
    line-height: 40px;
}
.ticker-move {
    display: inline-block;
    white-space: nowrap;
    padding-right: 100%;
    animation-iteration-count: infinite;
    animation-timing-function: linear;
    animation-name: ticker;
    animation-duration: 30s;
}
.ticker-move a
{
    text-decoration: none;
    color: #fff;
}
.ticker-move:hover{
    animation-play-state: paused;

}
.ticker-item{
    display: inline-block;
    padding: 0 2rem;
    font-size: 18px;
    color: #fff;
}
.ticker-item:hover
{
    color: #fbc128;
}