.video-content {
  width: 7.04rem;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.video-content .common-top-panel {
  margin-top: .4rem;
}


.video_list {
  position: relative;
  margin-top: auto;
  width: 7.04rem;
  height: 4.24rem;
  z-index: 14;
}

.video_list ul {
  width: 7.04rem;
  height: 4.24rem;
  z-index: 4;
}

.video_list ul li {
  width: 7.04rem;
  height: 4.24rem;
}

.video_list ul li:nth-child(n+2) {
  display: none;
}

.video_list ul li .info {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: absolute;
  z-index: 4;
}

.video_list ul li .info img {
  /* position: absolute; */
  z-index: 16;
  width: 100%;
  height: 100%;
}

.video_list ul li .info:hover img {
  transform: scale(1.1);
}



.video_list ul li::after {
  content: '  ';
  width: 7.04rem;
  height: 4.24rem;
  background: rgba(244, 179, 88, 1);
  left: -.2rem;
  top: -.2rem;
  position: absolute;

  z-index: 2;
}


@media (max-width: 768px) {
  .video-content {
    width: 100%;
    height: 11rem;
    margin-top: 1rem;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .video_list {
    position: relative;
    margin-top: auto;
    width: 100%;
    height: auto;
    aspect-ratio: 2;
    z-index: 14;
  }

  .video_list ul {
    width: 100%;
    height: auto;
    aspect-ratio: 2;
    z-index: 4;
  }

  .video_list ul li {
    width: 100%;
    height: auto;
    aspect-ratio: 2;
  }

  .video_list ul li::after {
    display: none;
  }

}