iframe {
    width: 100%;
    height: 100%;
}

/* 设置包装元素的宽度和高度，并设置宽度为100%以适应父元素的宽度 */
.video-box {
    position: relative;
    width: 100%;
    height: 100%;
    padding-bottom: 56.25%; /* 设置宽高比为16:9，可根据需要更改 */
    overflow: hidden;
}

    /* 使iframe相对于包装元素定位，以保持宽高比 */
    .video-box iframe {
        position: absolute;
        top: 0;
        left: 0;
    }

.video-box_div {
    width: 541px;
    left: calc(50% - 612px/2);
}

@media screen and (min-width: 414px) and (max-width: 1024px) {

    .video .container
    {
        max-width:unset;
    }

    .video-box_div {
        width: unset;
        left: unset;
    }
}


