<html><head><meta name="color-scheme" content="light dark"></head><body><pre style="word-wrap: break-word; white-space: pre-wrap;">/*
    .realtime.realtime .realtime-article-visits{
        display: none;
    }
    .realtime {
        counter-reset: section;
    }
    .realtime-article{
        position: relative;
    }
    .realtime-article::before {
        counter-increment: section;
        content: counter(section);
        position: absolute;
        background-color: rgba(0,122,255,.8);
        color: #fafafa;
        z-index: 10;
        font-weight: 700;
        font-size: 14px;
        width: 35px;
        height: 35px;
        display: flex;
        align-items: center;
        justify-content: center;
    }


    @media (min-width: 768px){
        .realtime-article::before {
            background-color: rgba(3,12,38,.8);
            font-size: 20px;
            width: 45px;
            height: 45px;
        }
    }
    */</pre></body></html>