.video_box {
    width: 100%;
    background-color: #d6ebff;
    padding: 40px 20px;
}

.video_box_content {
    max-width: 1440px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
}

.video_box_content_item {
    width: 330px;
    height: 180px;
    border-radius: 6px;
    background-color: #fff;
    position: relative;
    cursor: pointer;
}

.bg_box_img img {
    width: 330px;
    height: 180px;
    border-radius: 6px;
    object-fit: cover;
}

.video_box_content_title {
    width: 100%;
    padding: 0 12px;
    box-sizing: border-box;
    color: #fff;
    position: absolute;
    bottom: 8px;
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

@media (max-width: 992px) {
    .video_box_content {
        width: 100%;
        display: block;
        margin: 0 auto;
    }

    .video_box_content_item {
        width: 100%;
        margin-top: 24px;
    }

    .bg_box_img img {
        width: 100%;
    }

    .video_box {
        padding: 10px 20px;
    }
}