/*全屏弹出视频播放*/
body.scroll-bar-over {
  overflow: hidden;
}

.full-video-wrap {
  opacity: 0;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  background-color: rgba(0, 0, 0, 0.8);
  z-index: 11;
  transition: opacity 0.3s, overflow 0.3s;
  height: 0;
  pointer-events: none;
}

.full-video-wrap.full-show {
  opacity: 1;
  height: 100%;
  pointer-events: auto;
}

.full-play-box {
  width: 1000px;
  height: 563px;
  margin: 0 auto;
  opacity: 0;
  transform: translateY(-100px);
  transition: all 0.6s;
}

.full-show .full-play-box {
  opacity: 1;
  transform: translateY(30%);
}

.full-close-btn {
  position: absolute;
  right: -40px;
  top: 0;
  width: 30px;
  height: 30px;
  background-image: url(/Public/cn/ehangweb/image/drag_close.png);
  background-size: cover;
  cursor: pointer;
}

@media only screen and (max-width: 1440px) {
  .full-play-box {
    width: 800px;
    height: 450px;
    margin: 0 auto;
    opacity: 0;
    transform: translateY(-100px);
    transition: all 0.6s;
  }

  .full-show .full-play-box {
    opacity: 1;
    transform: translateY(30%);
  }
}

@media only screen and (max-width: 768px) {
  .full-play-box {
    width: 100%;
    height: 100px;
    margin: 0 auto;
    opacity: 0;
    /* transform: translateY(-100px); */
    transition: all 0.6s;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
  }
  .full-play-box video {
    width: 100%;
    height: auto;
    object-fit: cover;
  }
  .full-show .full-play-box {
    opacity: 1;
    /* transform: translateY(30%); */
    transform: translate(-50%, -50%);
  }
}<!--耗时1773905238.276秒-->