/*轮播视频  */
:root {
    --banner-min: 60px;
    --banner-max: 100px;
    --banner-scale: 12vw;
    --banner-height-scale: 8vw;
}

.video_box_container {
    /* width: 1440px; */
    margin: 0 auto;
}

.lbsp {
    width: 100%;
    height: 800px;
    position: relative;
    font-size: 0;
}

.lbsp>video {
    width: 100%;
    height: 100%;
    position: relative;
    z-index: 1;
    /* 降低视频层级 */
}

.lbsp>.module {
    width: 100%;
   text-align:center;
    position: absolute;
    bottom: 0px;
    left: 0;
    padding: 20px;
    box-sizing: border-box;
    z-index: 99;
}

.module img {
    width: 140px;
    height: 80px;
    border-radius: 6px;
    z-index: inherit;
    margin: 0 10px;
    background-image: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.3));
    cursor: pointer;
}

.module img:hover {
    transform: scale(1.05);

}

.lbsp>.play {
    background: rgba(0, 0, 0, .2);
    position: absolute;
    width: 100%;
    height: 100%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 2;
}

.lbsp>.play>img {
    position: absolute;
    width: 50px;
    height: 50px;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    cursor: pointer;
    pointer-events: auto;
    pointer-events: auto;
    z-index: 3;
}

@media (max-width: 992px) {
    .lbsp>.module {
        padding: 10px;
    }

    .module img {
        height: clamp(var(--banner-min), var(--banner-height-scale), var(--banner-max));
        width: clamp(var(--banner-min), var(--banner-scale), var(--banner-max));
        border-radius: 10px;
        z-index: inherit;
        margin: 0 4px;
        background-image: linear-gradient(rgba(0, 0, 0, 0.01), rgba(0, 0, 0, 0.3));
        cursor: pointer;
    }
}