#AlphaPlayer {
    width: 100%;
    height: 100vh;
}

body {
    padding: 0;
    margin: 0;
}

#player-shade {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 999;
    pointer-events: auto;
    display: none;
}

#right-menu {
    width: 300px;
    height: 100vh;
    background-color: #00000096;
    position: fixed;
    z-index: 11000;
    right: 0px;
    transform: translateX(310px);
    transition: transform .3s, -webkit-transform .3s;
}

#vod-title {
    text-align: center;
    color: white;
    padding: 0px 10px 0 10px;
    margin: 10px auto 15px auto;
}

#numberOfEpisode-box {
    width: 90%;
    max-height: calc(85vh);
    margin: 0 auto;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-content: space-between;
    gap: 5px;
    overflow-y: auto;
    overflow-x: hidden;
}

.numberOfEpisode {
    aspect-ratio: 4/1;
    background-color: #565656;
    color: #ffffff;
    text-align: center;
    padding: 10px;
    margin-bottom: 5px;
    white-space: nowrap;
    text-overflow: ellipsis;
    border-radius: 6px;
    cursor: pointer;
}

.numberOfEpisode-check {
    background-color: #10b7ff;
}

@media screen and (max-width: 500px) {
    .art-layer-danmuku-emitter {
        display: none !important;
    }

    .art-control-medias {
        display: none !important;
    }

    .art-control-screenshot {
        display: none !important;
    }

    .art-control-fullscreenWeb {
        display: none !important;
    }
}

#watermark {
    z-index: 11;
    width: 100px;
    height: 30px;
    position: absolute;
    top: 8px;
    right: 8px;
    font-size: 1rem;
    padding: 5px;
    color: #fff;
}

#top-time {
    position: absolute;
    right: 10px;
    line-height: 50px;
}

#top-title-button {
    position: absolute;
    line-height: 50px;
    left: 10px;
    display: flex;
    height: 100%;
    align-items: center;
}

#top-title {
    position: absolute;
    line-height: 50px;
    margin-left: 38px;
}

.skip_input::placeholder {
    color: #dfdede;
}

.skip_input[type="text"] {
    width: 90px;
    height: 24px;
    padding: 7px;
    border: 1px solid #ccc;
    border-radius: 6px;
    font-size: 14px;
    outline: none;
    background-color: #ffffff3b;
    color: #e5e5e5;
}

.skip_input[type="text"]:focus {
    border-color: #b1b1b1;
    box-shadow: 0 0 3px rgb(255 255 255 / 50%);
}

/*移动端 顶部视频尺寸大小显示*/
#top-info {
    position: absolute;
    line-height: 50px;
    right: 60px;
}

/*当播放器宽度小于此值时，弹幕发射器置于播放器底部 重写样式*/
.art-video-player > .artplayer-plugin-danmuku {
    padding: 0 10px 10px 10px !important;
    position: absolute !important;
    bottom: -45px !important;
    left: 0 !important;
    right: 0 !important;
    height: 40px !important;
}

/*黑色背景 不然弹幕发射器置于播放器底部的时候看不清*/
body {
    background-color: black !important;
}