/**
 * 视频背景响应式修复
 * 解决浏览器放大缩小时的显示兼容性问题
 */
.wpex-video-bg {
    width: auto !important;
    height: auto !important;
    min-width: 100% !important;
    min-height: 100% !important;
    max-width: none !important;
    object-fit: cover !important;
    object-position: center center !important;
    top: 50% !important;
    left: 50% !important;
    transform: translate(-50%, -50%) !important;
}
@media screen and (max-width: 768px) {
    .wpex-video-bg {
        object-fit: cover !important;
        object-position: center center !important;
    }
}
@media screen and (min-width: 1921px) {
    .wpex-video-bg {
        min-width: 100vw !important;
        min-height: 100vh !important;
    }
}
