.video-player-container {
    display: none;
    width: 100%;
    height: 100vh;
    position: fixed;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    overflow: hidden;
    z-index: 10000;
    background-color: rgba(0,0,0, 0.5);
}
.video-player {
    width: 100%;
    height: 100%;

}
.video-player-bg {
    width: 100%;
    height: 100%;
    filter: blur(1.25rem);
}
.mask {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(125,125,125,0.5);
    box-sizing: border-box;
    display: flex;
    z-index: 10001;
}
.close-btn {
    position: absolute;
    transform: translate(1rem,1rem);
    width: 3.5rem;
    height: 3.5rem;
    cursor: pointer;
    transition-duration: 300ms;
    z-index: 10002;
}
.close-btn:hover {
    transform: translate(1rem,1rem) scale(1.1);
    transition-duration: 300ms;
    position: absolute;
}
.video {
    width: auto;
    height: 100%;
    z-index:10000;
    margin: 0 auto;
}
.forward-btn {
    cursor: pointer;
    width: 4rem;
    height: 4rem;
    border-radius: 50%;
    background: rgba(0,0,0,0.2);
    border: 1px solid rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
    justify-content: center;
    position: absolute;
    bottom: 10rem;
    right: 2.5rem;
    z-index: 10002;
    transition-duration: 300ms;
}
.forward {
    width: 2rem;
    height: 2rem;
}
.forward-btn:hover {
    transform: scale(1.1);
    transition-duration: 300ms;
}
.operation {
    position: absolute;
    right: 2.5rem;
    bottom: 7rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
}

.operation-item {
    cursor: pointer;
    font-weight: bold;
    font-size: 0.75rem;
    color: #FFFFFF;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    transition-duration: 300ms;
}
.operation-img {
    width: 4rem;
    height: 4rem;
}
.operation-img2 {
    display: none;
    width: 4rem;
    height: 4rem;
}
.operation-img3 {
    width: 4rem;
    height: 4rem;
}
.operation-item:hover {
    transform: scale(1.1);
    transition-duration: 300ms;
}
