.float-l {
  float: left;
}
.float-r {
  float: right;
}
.clear {
  clear: both;
}
.center {
  margin: 0 auto;
}
.ft-wei {
  font-weight: 600;
}
.hide-excess-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.v-center {
  display: flex;
  justify-content: center;
  align-items: Center;
}
@keyframes imgHover {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
.imgHover {
  animation: imgHover 1s forwards;
}
.video-list .figure {
  display: block;
  padding: 5px 5px;
}
.video-list .figure:hover {
  box-shadow: 2px 6px 8px -2px;
}
.video-list .figure .video-link {
  overflow: hidden;
  width: 100%;
}
.video-list .figure .video-link a {
  display: block;
  width: 100%;
  height: 100%;
}
.video-list .figure .video-link video {
  width: 100%;
  height: 100%;
}
.video-list .figure .video-link iframe {
  width: 100%;
  height: 100%;
}
.video-list .figure .video-link .image {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: Center;
}
.video-list .figure .video-link .image img {
  max-width: 100%;
  max-height: 100%;
}
.video-list .figure .desc .name {
  font-weight: 600;
  text-align: center;
  padding-left: 10%;
  padding-right: 10%;
  font-family: Arial;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.video-play video {
  max-width: 100%;
}
.video-play .video-detail {
  word-break: break-all;
}
@media (max-width: 767px) {
  .video-list .figure .video-link {
    height: 150px;
    text-align: center;
  }
  .video-list .figure .video-link a {
    display: block;
    width: 100%;
    height: 100%;
  }
  .video-list .figure .desc .name {
    margin-top: 10px;
    font-size: 21px;
  }
}
@media (min-width: 768px) {
  .video-list .figure .video-link {
    height: 150px;
  }
  .video-list .figure .desc .name {
    margin-top: 24px;
    font-size: 21px;
  }
  .video-play iframe {
    height: 500px;
  }
}
