body.sport-news-body .sn-follow-ticker {
    background: #fff;
    border: 1px solid #ececec;
    border-radius: 4px;
    box-sizing: border-box;
    height: 36px;
    margin-bottom: 10px;
    overflow: hidden;
    position: relative;
    width: 100%;
}

body.sport-news-body .sn-follow-ticker::before,
body.sport-news-body .sn-follow-ticker::after {
    content: "";
    height: 100%;
    pointer-events: none;
    position: absolute;
    top: 0;
    width: 36px;
    z-index: 1;
}

body.sport-news-body .sn-follow-ticker::before {
    background: linear-gradient(90deg, #fff 20%, rgba(255, 255, 255, 0));
    left: 0;
}

body.sport-news-body .sn-follow-ticker::after {
    background: linear-gradient(270deg, #fff 20%, rgba(255, 255, 255, 0));
    right: 0;
}

body.sport-news-body .sn-follow-ticker-viewport {
    height: 100%;
    overflow: hidden;
    width: 100%;
}

body.sport-news-body .sn-follow-ticker-track {
    align-items: center;
    display: flex;
    height: 100%;
    width: max-content;
    will-change: transform;
}

body.sport-news-body .sn-follow-ticker-track.is-ready {
    animation: snFollowTickerScroll var(--sn-follow-duration, 48s) linear infinite;
}

body.sport-news-body .sn-follow-ticker:hover .sn-follow-ticker-track.is-ready {
    animation-play-state: paused;
}

@keyframes snFollowTickerScroll {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

body.sport-news-body .sn-follow-item {
    align-items: center;
    display: inline-flex;
    flex-shrink: 0;
    font-size: 12px;
    gap: 6px;
    line-height: 36px;
    padding: 0 18px;
    white-space: nowrap;
}

body.sport-news-body .sn-follow-item + .sn-follow-item {
    border-left: 1px solid #f0f0f0;
}

body.sport-news-body .sn-follow-user {
    color: #666;
    font-weight: 600;
}

body.sport-news-body .sn-follow-rate {
    color: #999;
}

body.sport-news-body .sn-follow-rate-num {
    color: #f13131;
    font-weight: 600;
}

body.sport-news-body .sn-follow-game {
    color: #666;
}

body.sport-news-body .sn-follow-amount {
    color: #333;
    font-weight: 600;
}

body.sport-news-body .sn-follow-btn {
    background: #1d7ddf;
    border-radius: 3px;
    color: #fff;
    display: inline-block;
    font-size: 12px;
    height: 22px;
    line-height: 22px;
    margin-left: 2px;
    padding: 0 10px;
    text-align: center;
    text-decoration: none;
    transition: background .2s ease;
}

body.sport-news-body .sn-follow-btn:hover {
    background: #1568c0;
    color: #fff;
}
