/* 视频窗口 */
.video-play-container {
  position: fixed;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  background: black;
  z-index: 999999;
}
.video-play-container video {
  display: inline-block;
  width: 80%;
  height: auto;
  object-fit: inherit;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* transition: all 2s; */
}
.video-play-container .close-video {
  position: absolute;
  right: 40px;
  top: 20px;
  width: 40px;
  height: 40px;
  z-index: 9999;
  cursor: pointer;
  color: #ffffff;
  opacity: 0.7;
  transition: all 0.2s;
}
.video-play-container .close-video svg {
  width: 100%;
  height: 100%;
}
.video-play-container .close-video:hover {
  opacity: 1;
  transform: scale(1.2);
}
.video-play-container iframe {
  display: inline-block;
  width: 1044px;
  height: 675px;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  /* transition: all 2s; */
}

/* 查看高清版 */
.video-play-container .hd-more {
  position: absolute;
  right: 115px;
  top: 23px;
  /* width: 150px; */
  height: 35px;
  line-height: 33px;
  z-index: 9999;
  padding: 0 10px;
  border-radius: 5px;
  text-align: center;
  cursor: pointer;
  color: #ffffff;
  opacity: 0.8;
  border: 1px solid #ffffff;
  transition: all 0.2s;
}
.video-play-container .hd-more:hover {
  opacity: 1;
}

@media screen and (max-width: 959px) { 
  .video-play-container iframe {
    width: 638px;
    height: 447px;
  }
}

@media screen and (max-width: 638px) {
  .video-play-container iframe {
    width: 100%;
    height: 50%;
  }
}