/* 评论和正文中的视频时间戳 */
.bili-timecode {
    position: relative;
    display: inline-block;
    margin: 0 8px 0 1px;
    padding: 0 1px;
    border: 0;
    border-radius: 3px;
    color: #168ddd;
    background: transparent;
    font-weight: 600;
    line-height: inherit;
    text-decoration: none;
    white-space: nowrap;
    transition: color .18s ease, background-color .18s ease;
    -webkit-tap-highlight-color: transparent;
}

.bili-timecode:hover,
.bili-timecode:focus {
    color: #0876bd;
    background: rgba(22, 141, 221, .09);
    text-decoration: none;
}

.bili-timecode:active {
    color: #075f98;
    background: rgba(22, 141, 221, .16);
}


.bili-timecode::after {
    content: "导航";
    position: absolute;
    top: -.72em;
    right: -.5em;
    z-index: 2;
    padding: 0 2px;
    border-radius: 4px 4px 4px 1px;
    color: #fff;
    background: #fb7299;
    font-size: .42em;
    font-weight: 600;
    line-height: 1.45;
    white-space: nowrap;
    pointer-events: none;
}

video.is-bili-timecode-seeking {
    animation: bili-timecode-seek-flash .65s ease;
}

@keyframes bili-timecode-seek-flash {
    0%, 100% { filter: none; }
    35% { filter: brightness(1.15) saturate(1.08); }
}

.dark-theme .bili-timecode {
    color: #4da9ee;
}

@media (max-width: 640px) {
    .bili-timecode {
        margin-right: 8px;
        font-size: .96em;
    }


    .bili-timecode::after {
        top: -.68em;
        right: -.42em;
        font-size: .48em;
    }

    .douyin-comment-text .bili-timecode {
        color: #42a5ef;
    }
}