.video-list-out {
  margin-top: 10%;
}
.video-list-out .video-list-name {
  margin-top: 10px;
  font-weight: bold;
  text-align: center;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.video-list {
  overflow: hidden;
  position: relative;
}
.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: 75%;
}
.video-list .video-list-pic .img-center {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
      flex-wrap: wrap;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}
.video-list .video-icon {
  position: absolute;
  top: calc(50% - 36.5px);
  left: calc(50% - 32px);
  color: #fff;
  -webkit-transition: all 1s;
  transition: all 1s;
  -webkit-filter: drop-shadow(1px 1px 2px rgba(0, 0, 0, 0.3));
          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;
  -webkit-transition: all 1s;
  transition: all 1s;
}
.video-list:hover .video-icon {
  -webkit-transform: scale(0.9);
          transform: scale(0.9);
}