.video-list-out {
  margin-bottom: 20%;
}
.video-list-out .video-list-name {
  margin-top: 20px;
  text-align: center;
}

.video-list {
  overflow: hidden;
  position: relative;
  -webkit-border-radius: 5px;
  border: 1px solid rgba(255, 255, 255, 0.9);
  box-shadow: 0px 0px 16px -5px rgba(0, 0, 0, 0.7);
}
.video-list a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.video-list .video-list-pic {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 62%;
}
.video-list .video-list-pic .img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  align-items: center;
}
.video-list img {
  max-height: 100%;
  transition: all 0.5s ease-in-out;
}
.video-list:hover img {
  transform: scale(1.1);
}
.video-list .video-icon {
  position: absolute;
  top: calc(50% - 36.5px);
  left: calc(50% - 32px);
  color: #fff;
  opacity: 1;
  transition: all 1s;
  filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
}
.video-list .video-icon:before {
  content: "";
  display: block;
  background: url(icons/icon-video.svg) no-repeat;
  padding: 33px;
  transition: all 1s;
}
.video-list:hover .video-icon {
  opacity: 1;
  transform: scale(0.9);
}
.video-list:hover .video-icon:before {
  background: url(icons/icon-video.svg) no-repeat;
}