.module-video-wrap .row {
  margin: 0 -15px;
}
.module-video-wrap .col .wrap {
  display: block;
  cursor: pointer;
  margin-bottom: 20px;
}
.module-video-wrap .col:hover .cover > img {
  transform: scale(1.1);
}
.module-video-wrap .col:hover .cover .hover > img {
  transform: scale(0.9);
}
.module-video-wrap .cover {
  height: 245px;
  position: relative;
  overflow: hidden;
}
.module-video-wrap .cover::after {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, .6);
}
.module-video-wrap .cover > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform .3s ease;
}
.module-video-wrap .cover .hover {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 60px;
  height: 60px;
  z-index: 1;
}
.module-video-wrap .cover .hover > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: transform .3s ease;
}
.module-video-wrap .wrap:hover .desc {
  color: var(--main-color);
  border-color: var(--main-color);
}
.module-video-wrap .desc {
  height: 172px;
  background: #fff;
  padding: 20px 30px 0;
  font-size: 18px;
  color: #333;
  transition: border-color .3s ease;
  border-bottom: 2px solid transparent;
  box-sizing: border-box;
}
.module-video-wrap .desc span {
  font-size: inherit;
  color: inherit;
}
.module-video-wrap .desc p {
  line-height: 1.6;
  margin: 15px 0 0;
}
.module-video-wrap .paging-wrap {
  margin-top: 40px;
}

.module-popup-video-wrap {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 1001;
  opacity: 0;
  pointer-events: none;
  transition: opacity .3s ease;
}
.module-popup-video-wrap.active {
  opacity: 1;
  pointer-events: all;
}
.module-popup-video-wrap .content {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%) scale(0);
  background: #fff;
  transition: transform .3s ease;
}
.module-popup-video-wrap.active .content {
  transform: translate(-50%, -50%) scale(1);
}
.module-popup-video-wrap .content .close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: #fff;
  border-radius: 50%;
  width: 50px;
  height: 50px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 46px;
  font-weight: 700;
  cursor: pointer;
}
.module-popup-video-wrap .content .close:hover {
  color: var(--main-color);
}
.module-popup-video-wrap .content .close span {
  line-height: 1;
  transform: translate(-2px, -2px) rotate(-45deg);
}
.module-popup-video-wrap .content video {
  display: block;
  width: 65vw;
  object-fit: contain;
}


@media screen and (max-width: 640px) {
  .module-video-wrap .cover {
    height: 200px;
  }
  .module-video-wrap .desc {
    height: unset;
    padding-bottom: 20px;
  }
  .module-popup-video-wrap .content video {
    width: 95vw;
  }
  .module-popup-video-wrap .content .close {
    width: 30px;
    height: 30px;
    font-size: 36px;
    top: 10px;
    right: 10px;
  }
  .module-video-wrap .paging-wrap {
    margin-top: unset;
    padding-bottom: unset;
  }
}
