.video-container {
  width: 100%;
  position: relative;
  padding-bottom: 40px;
}
.video-container .video-item {
  position: relative;
  width: 100%;
  height: 100%;
  cursor: pointer;
  overflow: hidden;
  border-radius: 4px;
}
.video-container .video-item * {
  transition: all 350ms;
}
.video-container .video-item:hover .video-item-poster:after {
  background: rgba(73, 80, 87, 0.25);
}
.video-container .video-item:hover .video-item-poster img {
  transform: scale(1.05);
}
.video-container .video-item:hover .video-item-play-control {
  color: #fff;
  transform: scale(1.05) translateX(-50%) translateY(-50%);
}
.video-container .video-item .video-item-play-control {
  position: absolute;
  width: 64px;
  height: 64px;
  overflow: hidden;
  left: 50%;
  top: 50%;
  transform: translateX(-50%) translateY(-50%);
  z-index: 9;
  border-radius: 100%;
  color: #ced4da;
}
.video-container .video-item .video-item-play-control svg {
  width: 100%;
  height: 100%;
}
.video-container .video-item .video-item-poster {
  width: 100%;
  overflow: hidden;
  position: relative;
}
.video-container .video-item .video-item-poster:after {
  background: rgba(73, 80, 87, 0.65);
  content: ' ';
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.video-container .video-item .video-item-poster img {
  width: 100%;
  height: 100%;
  display: block;
}
.video-container .video-item svg {
  position: absolute;
}
.video-container .swiper-pagination {
  display: flex;
  justify-content: center;
  align-items: center;
}
.video-container .swiper-pagination span.swiper-pagination-bullet {
  width: 32px;
  height: 6px;
  border-radius: 6px;
  background: #e9ecef;
}
.video-player-modal {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 500;
  display: flex;
  align-items: center;
  justify-content: center;
  display: none;
}
.video-player-modal .video-player-modal-mask {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(73, 80, 87, 0.65);
  z-index: 501;
}
.video-player-modal .video-player-modal-body {
  width: 1200px;
  margin: 0 auto;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 502;
}
.video-player-modal .video-player-modal-body .video-player-modal-close-control {
  width: 40px;
  height: 40px;
  color: #fff;
  position: absolute;
  right: 7.5%;
  top: -64px;
  cursor: pointer;
  transition: all 300ms;
}
.video-player-modal .video-player-modal-body .video-player-modal-close-control:hover {
  transform: rotate(180deg);
}
.video-player-modal .video-player-modal-body .video-js {
  width: 85%;
}