.video{
  padding: 2rem 10%;
  background-color: #fff;
}

.video-tabs{
  display: flex;
  align-items: center;
  justify-content: center;
}
.video-tab{
  position: relative;
  font-size: 1rem;
  font-weight: 500;
  color: #000000;
  line-height: calc(56rem / 40);
  padding-bottom: 0.7rem;
  cursor: pointer;
  transition: 0.3s all;
}
.video-tab:hover {
  color: rgba(192, 25, 31, 1);
}
.video-tab:not(:first-child) {
  margin-left: 3rem;
}
.video-tab.active::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 1.5rem;
  height: 0.2rem;
  border-radius: 0.1rem;
  background-color: #C0191F;
  transition: 0.3s all;
}

.video-list{
  display: flex;
  flex-wrap: wrap;
  margin-top: -1.5rem;
  padding-top: 1.5rem;
}
.video-item{
  position: relative;
  display: block;
  width: 32%;
  margin-top: 1.5rem;
}
.video-item-box::after {
  position: absolute;
  z-index: 10;
  content: '';
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 2rem;
  height: 2rem;
  background-image: url(/sannuo/templates/web/img/video/play.png);
  background-repeat: no-repeat;
  background-size: contain;
  background-position: center center;
}
.video-item:hover .video-item-title{
  transform: translateY(-0.05rem);
  color: #C0191F;;
}
.video-item:hover .video-item-image{
  transform: scale(1.2);
}

.video-item:not(:nth-child(3n)) {
  margin-right: calc(4% / 2);
}
.video-item-box{
  position: relative;
  width: 100%;
  border-radius: 0.4rem;
  line-height: 0;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.video-item-video{
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 0.3s all;
}
.video-item-title{
  margin-top: 0.4rem;
  font-size: 0.5rem;
  font-weight: 700;
  color: #1A1A1A;
  line-height: calc(40rem / 40);
  white-space: normal;
  overflow: hidden;
  text-overflow: ellipsis;
  text-align: center;
}

@media screen and (max-width: 1000px) {
  .video-item{
    width: 48%;
  }
  .video-item:not(:nth-child(3n)) {
    margin-right: 0;
  }
  .video-item:nth-child(even) {
    margin-left: 4%;
  }
}

@media screen and (max-width: 500px) {
  .video {
    padding: 1rem 5%;
  }
  .video-item{
    width: 100%;
  }
  .video-item:nth-child(even) {
    margin-left: 0;
  }
}<!--ºÄÊ±1764521055.3026Ãë-->