.video-model {
  position: fixed;
  z-index: 9999;
  background: rgba(0, 0, 0, 0.8);
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  text-align: center;
  top: 0;
  left: 0;
  justify-content: center;
  align-items: center;
}

.video-model .close-btn {
  width: 60px;
  height: 60px;
  line-height: 60px;
  font-size: 40px;
  color: #fff;
  cursor: pointer;
  position: absolute;
  z-index: 5001;
  top: -30px;
  right: -30px;
  transition: all .4s;
}

.video-model .close-btn:hover {
  transform: scale(1.3);
}

/* @media screen and (max-width: 750px) {
  .close-btn {
    top: -46px;
  }
} */

.video-model .video-box {
    width: 70%;
    height: 64%;
    position: relative;

}
.video-model .video-box .video-content {
  width: 100%;
  height: 100%;
}

.video-model-close {
  display: flex;
  transform: scaleX(0);
  transition: transform 0.3s ease-in-out;
}

.video-model-open {
  transform: scaleX(1);
}