/* ========================================
   详情页 Banner 自动缩放样式
   与主页 .mbanner .mbanner-v 效果一致
   ======================================== */

/* Banner 容器 */
.detail-banner {
    position: relative;
	width: 100%;
    max-width: 1920px;
    margin: 0 auto;
    /* 高度由 JS 动态设置（按窗口宽度等比缩放），maxHeight 上限 */
    overflow: hidden;
    background-repeat: no-repeat !important;
    background-position: center center !important;
	background-size: cover !important;
}

/* 内容区域 */
.detail-banner-inner {
    position: relative;
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 15px;
    box-sizing: border-box;
    z-index: 10;
}

/* 画中画视频容器 - 相对定位作为 pip-video 的定位基准 */
.detail-banner .test-video {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 20;
}
