
/* PC端 */
.hero-video-container-b {
  position: relative;
  width: 100%;
  height: 40vh; /* PC端高度，可调整 */
  overflow: hidden;
  background: #000;
  cursor: pointer; /* 鼠标悬停显示可点击 */
}

.hero-video-b {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 100%;
  height: 100%;
  object-fit: contain; /* 视频完整显示 */
  transform: translate(-50%, -50%);
  background: #000;
}

/* 移动端 */
@media (max-width: 768px) {
  .hero-video-container-b {
    height: 20vh; /* 移动端固定高度，可调整 */
  }
}
