.video-list-out {
  margin-bottom: 20%;
  padding: 15px 0;
  border-radius: 5px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  -webkit-box-shadow: 5px 5px 16px -5px rgba(0, 0, 0, 0.3);
          box-shadow: 5px 5px 16px -5px rgba(0, 0, 0, 0.3);
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  position: relative;
}
@media (max-width: 576px) {
  .video-list-out {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
        -ms-flex-direction: column;
            flex-direction: column;
  }
}
.video-list-out a {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1;
}
.video-list-out:hover .video-list img {
  -webkit-transform: scale(1.1);
          transform: scale(1.1);
}

.video-list {
  position: relative;
  overflow: hidden;
  width: 65%;
}
.video-list .video-list-pic {
  margin: 0;
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 0;
  padding-bottom: 62%;
}
@media (max-width: 576px) {
  .video-list .video-list-pic {
    padding-bottom: 76%;
  }
}
.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 img {
  max-height: 100%;
  -webkit-transition: all 0.5s ease-in-out;
  transition: all 0.5s ease-in-out;
}

.video-list-right {
  margin-left: 4%;
}
@media (max-width: 576px) {
  .video-list-right {
    margin-left: 0;
    margin-top: 10px;
  }
}
.video-list-right .video-list-name {
  font-size: 1.2rem;
  font-weight: bold;
  max-width: 140px;
}
.video-list-right .video-icon {
  text-align: center;
  margin-top: 20%;
}
.video-list-right .video-icon img {
  width: 60px;
  height: 60px;
}