/* 右侧视频容器：绝对定位悬浮，不影响左侧任何排版 */
.video-parent-container {
  width: 595px; /* 与PNG宽度一致 */
  height: 140px; /* 与PNG高度一致 */
  position: absolute;
  right: 0;
  top: 50%;
  transform: translateY(-50%); /* 垂直居中 */
  margin: 0;
  padding: 0;
  z-index: 1; /* 确保在左侧文字上方，不被遮挡 */
}

/* 核心包装器：精准匹配PNG尺寸，强制裁剪背景溢出 */
.video .wrapper {
  position: relative;
  width: 595px !important;
  height: 140px !important;
  display: block;
  overflow: hidden !important; /* 强制裁剪背景溢出，不超出PNG */
}

/* 背景图：1:1匹配PNG，无溢出、无拉伸 */
.video .image {
  position: absolute;
  top: 0;
  left: 0;
  width: 100% !important;
  height: 100% !important;
  background-size: cover !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
  z-index: 1;
  transition: transform 0.3s ease;
}

/* 前景PNG图：固定尺寸，覆盖背景 */
.video .wrapper img {
  position: relative;
  z-index: 2;
  width: 100% !important;
  height: 100% !important;
  object-fit: contain;
  cursor: pointer;
  padding: 0;
  margin: 0;
  display: block;
  border: none; /* 清除可能的默认边框 */
}

/* 响应式适配：小屏幕下居中显示，不遮挡左侧 */
@media screen and (max-width: 1200px) {
  .video-parent-container {
    position: relative;
    width: 100%;
    height: auto;
    margin: 30px auto 0; /* 与左侧上下排列，居中显示 */
    transform: none;
    right: auto;
    top: auto;
  }
  .video .wrapper {
    width: 100% !important;
    height: auto !important;
    aspect-ratio: 595/140; /* 保持PNG原始比例 */
    max-width: 595px; /* 最大宽度不超过PNG尺寸 */
    margin: 0 auto;
  }
}

/* 关键：清除父容器可能的影响，确保左侧排版不变 */
.about_index .container {
  position: relative; /* 仅为右侧绝对定位提供参考，无其他影响 */
  /* 移除所有可能影响左侧的样式（如padding-right、flex等） */
}