.pop_dim {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #222;
  z-index: 99991;
}

.pop_video {
  position: fixed;
  top: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  width: 100%;
  height: 100%;
  text-align: center;
  background: #000;
  z-index: 9999;
}

.pop_slide {
  position: absolute;
  left: 0;
  top: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 100%;
}

.pop_video .top,
.pop_video .bottom {
  display: flex;
  height: 50%;
  background: #000;
  z-index: 50;
}

.pop_video .top {
  align-items: flex-end;
  animation: slide_motion_l 3s linear forwards 3s;
}

.pop_video .bottom {
  animation: slide_motion_r 3s linear forwards 3s;
}

.pop_video .video_contents {
  position: relative;
  width: 100%;
  height: 832px;
}

.pop_video .video_wrap {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  background: #000;
}

.pop_video .top_video {
  width: 100%;
  height: 832px;
}

.pop_video .video_contents::after {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  line-height: normal;
  font-size: 0;
  background: url(https://xcdn.home-learn.com/sigongweb/nhome/front/event/2023/campaign3.0/homepage/imgs/bg_pop1.png) bottom;
  background-size: auto;
  opacity: 0.5;
  z-index: 10;
}

.pop_video .btn_wrap {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  max-width: 1280px;
  margin: 0 auto;
  text-align: right;
  z-index: 40;
}

.pop_video button {
  color: #fff;
  font-size: 16px;
  text-align: right;
}

.pop_video .btn_delete {
  padding-left: 30px;
  margin-left: 30px;
  border-left: 1px solid #fff;
}

.pop_video .btn_delete2 {
  position: absolute;
  top: 50px;
  right: 50px;
  z-index: 40;
}

.pop_video .btn_move {
  position: absolute;
  top: 50%;
  right: 100px;
  transform: translateY(-50%);
  z-index: 40;
}

.pop_video .slick-slide {
  height: auto;
  font-size: 0;
  white-space: nowrap;
}

.show-mo {
  display: none !important;
}

@keyframes slide_motion_l {
  0% {
    transform: translateY(0);
    z-index: 50;
  }
  100% {
    transform: translateY(-1000%);
    opacity: 0;
    z-index: 10;
  }
}
@keyframes slide_motion_r {
  0% {
    transform: translateY(0);
    z-index: 50;
  }
  100% {
    transform: translateY(1000%);
    opacity: 0;
    z-index: 10;
  }
}
@media (min-width: 1024px) {
  .pop_video .video_wrap {
    height: 100%;
  }
  .pop_video .video_contents {
    height: 100%;
  }
  .pop_video .top_video {
    height: 100%;
    -o-object-fit: cover;
       object-fit: cover;
  }
}
@media (max-width: 1023px) {
  .show-pc {
    display: none !important;
  }
  .show-mo {
    display: block !important;
  }
  .pop_video .video_wrap {
    align-items: flex-start;
  }
  .pop_video .video_contents {
    height: 822px;
  }
  .pop_video .video_contents::after {
    display: none;
  }
  .pop_video .top_video {
    opacity: 1;
    height: 452px;
  }
  .pop_video .btn_wrap {
    bottom: 0;
    max-width: 720px;
    text-align: center;
  }
  .pop_video button {
    opacity: 0.4;
    font-size: 24px;
  }
  .pop_video .btn_move {
    top: auto;
    bottom: 150px;
    left: 50%;
    right: auto;
    transform: translateX(-50%);
    z-index: 40;
  }
  .pop_video .btn_delete2 {
    top: -100px;
  }
}
@media (max-width: 767px) {
  .pop_video .video_contents {
    height: 450px;
  }
  .pop_video .top_video {
    height: 300px;
  }
  .pop_video button {
    font-size: 16px;
  }
  .pop_video .btn_wrap {
    bottom: -100px;
  }
  .pop_video .btn_move {
    bottom: 0px;
    width: 300px;
  }
  .pop_video .btn_delete2 {
    top: -60px;
    right: 10px;
    width: 55px;
  }
}