/* 主体内容 */

.video-card-wapper {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  width: 100%;
  height: auto;
  margin-top: 24px;
}

.content-wapper{
  /* margin-left: 268px; */
  /* width: 1588px; */
}

.video-card {
  box-sizing: border-box;
  width: calc((100% - (24px * 3)) / 4);
  /* height: 331px; */
  border-radius: 16px;
  margin-bottom: 24px;
  background: var(--color-100, #FFF);
  box-shadow: 0px 12px 40px 0px rgba(37, 37, 89, 0.12);
  overflow: hidden;
}

.video-card:hover {
  animation-duration: .5s;
  animation-name: heartBeat_hover;
  transform: scale(1.03);
}

.video-card.empty {
  height: 0px;
  background: transparent;
  box-shadow: none;
  margin-bottom: 0;
}

/* .video-card:nth-child(n+6) {
  margin-bottom: 0;
} */

.video-card .top-cover {
  position: relative;
  width: 100%;
  height: 170px;
  overflow: hidden;
  ;
}

.video-card .top-cover .play-btn {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 50px;
  height: 50px;
  background: #191f26;
  border-radius: 50%;
}

.video-card .top-cover .play-btn i {
  font-size: 45px;
  color: #fff;
}

.video-card .top-cover img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 110%;

}

.video-card .bottom-info {
  padding: 16px;
}

.video-card .bottom-info .info-wapper {
  position: relative;
  display: flex;
  justify-content: start;
  align-items: center;

}

.video-card .bottom-info .card-head {
  position: relative;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.video-card .bottom-info .card-head img {
  flex-shrink: 0;
  width: 64px;
  height: 64px;
  border: 1px solid #f5f6fa;
  border-radius: 50%;
}

.video-card .bottom-info .card-head .on-line {
  box-sizing: border-box;
  position: absolute;
  top: 50px;
  left: 52px;
  width: 12px;
  height: 12px;
  border: 3px solid #fff;
  border-radius: 10px;
  background: #05CC69;
}

.video-card .bottom-info .card-head .info-box {
  display: flex;
  width: 0px;
  flex: 1;
  flex-direction: column;
  justify-content: center;
  align-items: start;
  margin-left: 7px;
  margin-right: 8px;
}

.video-card .bottom-info .card-head .info-box .anchor-name-info {
  display: flex;
  width: 100%;
}

.video-card .bottom-info .card-head .info-box .anchor-name-info .anchor-name {
  color: #16172F;
  font-size: 16px;
  font-style: normal;
  font-weight: 600;
  line-height: 24px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.video-card .bottom-info .card-head .info-box .anchor-name-info .level-icon {
  display: flex;
  margin-left: 8px;
  padding: 3px 8px 2px 8px;
  justify-content: center;
  align-items: center;
  border-radius: 4px;
  background: #0C0E21;
  color: #C2A886;
  font-size: 10px;
  font-style: normal;
  font-weight: 600;
  line-height: 14px;
  white-space: nowrap;
}

.video-card .bottom-info .card-head .info-box .works-info {
  margin-top: 9px;
  width: 100%;
}

.video-card .bottom-info .card-head .info-box .works-info .works {
  height: 20px;
  color: #737482;
  font-size: 12px;
  font-style: normal;
  font-weight: 400;
  line-height: 20px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}


.video-card .bottom-info .card-head .contact {
  box-sizing: border-box;
  display: flex;
  flex-shrink: 0;
  justify-content: center;
  align-items: center;
  width: 84px;
  height: 40px;
  color: #6730FF;
  font-family: PingFang SC;
  font-size: 14px;
  font-style: normal;
  font-weight: 500;
  line-height: 22px;
  border-radius: 8px;
  border: 1px solid #6730FF;
  white-space: nowrap;
}

.video-card .bottom-info .card-head .contact:hover{
  -webkit-animation-name: updateBtnBackground;
  animation-name: updateBtnBackground;
  animation-duration: .5s;
  background: rgba(103, 48, 255, 0.10);
}

.video-card .bottom-info .card-head .contact>span {
  margin-left: 4px;
}

.video-card .bottom-info .line {
  width: 100%;
  height: 1px;
  margin-top: 16px;
  background: rgba(0, 0, 0, 0.06);
}

.video-card .bottom-info .price-box .price-right {
  margin-left: 16px;
}

.price-box {
  display: flex;
  justify-content: start;
  align-items: center;
  margin-top: 16px;
}

.price-box .price-left {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.price-box .price-right {
  display: flex;
  justify-content: center;
  align-items: baseline;
}

.price-box .collect {
  visibility: hidden;
  display: flex;
  flex: 1;
  justify-content: end;
  color: #737482;
}

.price-box span {
  display: flex;
  justify-content: center;
  align-items: center;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.price-box .cny {
  color: #E44A42;
  font-family: PingFang SC;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.price-box .price {
  color: #E44A42;
  font-family: PingFang SC;
  font-size: 24px;
  font-style: normal;
  font-weight: 500;
  line-height: 32px;
}

.price-box .units {
  color: #737482;
  font-family: PingFang SC;
  font-size: 16px;
  font-style: normal;
  font-weight: 400;
  line-height: 24px;
}

.price-box .price-right {
  margin-left: 13px;
}



/* 内容区域 */
@media screen and (max-width: 1903px) {
  /* .content-wapper {
    width: calc(100% - 312px);
  } */
  .video-card {
    width: calc((100% - (24px * 2)) /3);
  }
}

@media screen and (max-width: 1460px) {
  /* .content-wapper {
    width: calc(100% - 312px);
  } */
  .video-card {
    width: calc((100% - (24px * 1)) /2);
  }
}

@media screen and (max-width: 1145px) {
  .content {
    justify-content: center;
    display: flex;
  }

  .content-wapper {
    width: 0;
    margin: 0;
    flex: 1;
    padding: 0 3rem;
  }

}

@media screen and (max-width: 560px) {
  .sort-person-title-wapper .person-title {
    display: none;
  }
}

@media screen and (max-width: 475px) {
  .content-wapper .search-wapper .category-choose {
    width: 84px;
    height: 48px;
  }

  .top-search-category .category-btn {
    width: 40px;
    height: 48px;
  }
}

@media screen and (max-width: 420px) {
  .sort-person-title-wapper {
    display: none;
  }

  .filtration-info-wapper {
    display: none;
  }

  .category-drop {
    top: 140px;
  }
}







/* 卡片区域 */
/* @media screen and (max-width: 1903px) {
  .video-card {
    width: 19.7%;
  }
}

@media screen and (max-width: 1845px) {
  .video-card {
    width: 24%;
  }
}

@media screen and (max-width: 1565px) {
  .video-card {
    width: 24.5%;
  }
}

@media screen and (max-width: 1536px) {
  .video-card {
    width: 32%;
  }
}

@media screen and (max-width: 1340px) {
  .video-card {
    width: 33%;
  }
} */

@media screen and (max-width: 708px) {
  /* .video-card {
        width: 99%;
    } */
}

@media screen and (max-width: 1067px) {
  .video-card-wapper .video-card {
    width: calc((100% - 24px * 1) / 2);
  }

  .video-card-wapper .video-card .top-cover {
    height: 22.7rem !important;
  }

  .video-card-wapper .video-card .top-cover img {
    height: 22.7rem !important;
    padding-top: 0 !important;
  }

  .video-card-wapper .video-card .top-cover .play-btn {
    width: 5rem;
    height: 5rem;
  }

  .video-card-wapper .video-card .top-cover .play-btn i {
    font-size: 4.5rem;
  }

  .video-card-wapper .video-card .bottom-info {
    padding: 1.6rem;
  }

  .video-card-wapper .video-card .bottom-info .info-wapper .card-head .on-line {
    top: 5rem;
    left: 5.2rem;
    width: 1.2rem;
    height: 1.2rem;
    border: 0.3rem solid #fff;
  }

  .video-card-wapper .video-card .bottom-info .info-wapper .card-head img {
    width: 6.4rem;
    height: 6.4rem;
  }

  .video-card-wapper .video-card .bottom-info .info-wapper .card-head .info-box .anchor-name-info .anchor-name {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .video-card-wapper .video-card .bottom-info .info-wapper .card-head .info-box .anchor-name-info .level-icon {
    margin-left: 0.8rem;
    padding: 0.3rem 0.8rem 0.2rem 0.8rem;
    font-size: 1rem;
    line-height: 1.4rem;
  }

  .video-card-wapper .video-card .bottom-info .info-wapper .card-head .info-box .anchor-name-info .works-info .works {
    height: 2rem;
    margin-right: 0.6rem;
    font-size: 1.2rem;
    line-height: 2rem;
  }

  .video-card-wapper .video-card .bottom-info .info-wapper .card-head .contact {
    width: 8.4rem;
    height: 4rem;
    font-size: 1.4rem;
    line-height: 2.2rem;
  }

  .video-card-wapper .video-card .bottom-info .price-box .price-left .cny {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .video-card-wapper .video-card .bottom-info .price-box .price-left .price {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }

  .video-card-wapper .video-card .bottom-info .price-box .price-left .units {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .video-card-wapper .video-card .bottom-info .price-box .price-right .cny {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .video-card-wapper .video-card .bottom-info .price-box .price-right .price {
    font-size: 2.4rem;
    line-height: 3.2rem;
  }

  .video-card-wapper .video-card .bottom-info .price-box .price-right .units {
    font-size: 1.6rem;
    line-height: 2.4rem;
  }

  .video-card-wapper .video-card:nth-child(2n) {
    margin-right: 0;
  }

  .video-card-wapper .video-card:nth-child(2n + 1) {
    margin-right: 24px;
  }
}

@media screen and (max-width: 750px) {
  .video-card-wapper .video-card {
    width: 100%;
  }

  .video-card-wapper .video-card .top-cover {
    height: 38.6rem !important;
  }

  .video-card-wapper .video-card .top-cover img {
    height: 38.6rem !important;
    padding-top: 0 !important;
  }

  .video-card-wapper .video-card .top-cover .play-btn {
    width: 10rem;
    height: 10rem;
  }

  .video-card-wapper .video-card .top-cover .play-btn i {
    font-size: 9rem;
  }

  .video-card-wapper .video-card .bottom-info {
    padding: 3.2rem;
  }

  .video-card-wapper .video-card .bottom-info .info-wapper .card-head .on-line {
    top: 10rem;
    left: 10.4rem;
    width: 2.4rem;
    height: 2.4rem;
    border: 0.6rem solid #fff;
  }

  .video-card-wapper .video-card .bottom-info .info-wapper .card-head img {
    width: 12.8rem;
    height: 12.8rem;
  }

  .video-card-wapper .video-card .bottom-info .info-wapper .card-head .info-box .anchor-name-info .anchor-name {
    font-size: 3.2rem;
    line-height: 4.8rem;
  }

  .video-card-wapper .video-card .bottom-info .info-wapper .card-head .info-box .anchor-name-info .level-icon {
    margin-left: 1.6rem;
    padding: 0.6rem 1.6rem 0.4rem 1.6rem;
    font-size: 2rem;
    line-height: 2.8rem;
  }

  .video-card-wapper .video-card .bottom-info .info-wapper .card-head .info-box .anchor-name-info .works-info .works {
    height: 4rem;
    margin-right: 1.2rem;
    font-size: 2.4rem;
    line-height: 4rem;
  }

  .video-card-wapper .video-card .bottom-info .info-wapper .card-head .contact {
    width: 13.8rem;
    height: 8rem;
    font-size: 2.8rem;
    line-height: 4.4rem;
  }

  .video-card-wapper .video-card .bottom-info .info-wapper .card-head .contact i{
    display: none;
  }

  .video-card-wapper .video-card .bottom-info .price-box .price-left .cny {
    font-size: 2.4rem;
    line-height: 4.8rem;
  }

  .video-card-wapper .video-card .bottom-info .price-box .price-left .price {
    font-size: 4.8rem;
    line-height: 6.4rem;
  }

  .video-card-wapper .video-card .bottom-info .price-box .price-left .units {
    font-size: 2.4rem;
    line-height: 4.8rem;
  }

  .video-card-wapper .video-card .bottom-info .price-box .price-right .cny {
    font-size: 2.4rem;
    line-height: 4.8rem;
  }

  .video-card-wapper .video-card .bottom-info .price-box .price-right .price {
    font-size: 4.8rem;
    line-height: 6.4rem;
  }

  .video-card-wapper .video-card .bottom-info .price-box .price-right .units {
    font-size: 2.4rem;
    line-height: 4.8rem;
  }

  .video-card-wapper .video-card:nth-child(2n) {
    margin-right: 0;
  }

  .video-card-wapper .video-card:nth-child(2n + 1) {
    margin-right: 0;
  }

  .video-card:nth-child(n+6) {
    margin-bottom: 24px;
  }
}
