.wrap-container{
  width: 1440px;
  margin: 0 auto;
}
a{
  color: inherit;
}
/* 筛选栏 */
.filter-wrap{
  width: 100%;
  background-color: #fff;
} 
.filter-wrap .wrap-container{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  padding-top: 154px;
  padding-bottom: 34px;
}
.filter-wrap.filter-fixed{
  position: fixed;
  top: 80px;
  left: 0;
  z-index: 99;
  border-top: 1px solid #F3F3F3;
}
.filter-wrap.filter-fixed .wrap-container{
  padding-top: 34px;
}
.filter-wrap .filter-item{
  display: flex;
  justify-content: flex-start;
  align-items: center;
  margin-right: 100px;
}
.filter-wrap .filter-item .icon{
  width: 20px;
  height: 20px;
}
.filter-wrap .filter-item .label{
  font-size: 22px;
  font-weight: 500;
  color: rgba(11,27,59,0.7);
  line-height: 22px;
  margin-left: 15px;
  margin-right: 20px;
}
.filter-wrap .filter-item .select-wrap{
  position: relative;
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 352px;
  height: 56px;
  padding: 0 24px 0 34px;
  background: rgba(247,249,250,0.75);
  border-radius: 12px;
  border: 2px solid rgba(212,223,231,0.5);
  cursor: pointer;
  transition: all .2s;
}
.filter-wrap .filter-item .select-wrap:hover{
  border-color: #36A687;
}
.filter-wrap .filter-item .select-wrap:hover .select-box{
  height: auto;
  max-height: 364px;
  padding: 16px;
  border-width: 2px;
  overflow-y: scroll;
}
.filter-wrap .filter-item .select-wrap .content{
  flex: 1;
  font-size: 22px;
  color: #A1ADB9;
  line-height: 22px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.filter-wrap .filter-item .select-wrap .arrow{
  width: 24px;
  min-width: 24px;
  height: 24px;
  margin-left: 24px;
}
.filter-wrap .filter-item .select-wrap .select-box{
  position: absolute;
  top: 60px;
  left: 0;
  z-index: 9;
  box-sizing: border-box;
  width: 352px;
  height: 0px;
  background: #FFFFFF;
  padding: 0;
  box-shadow: 0px 12px 16px 0px rgba(144,149,153,0.2);
  border-radius: 12px;
  border: 0px solid #36A687;
  overflow: hidden;
  transition: all .3s;
}
.filter-wrap .filter-item .select-wrap .select-box .select-item{
  box-sizing: border-box;
  display: block;
  height: 60px;
  line-height: 60px;
  font-size: 20px;
  font-weight: 500;
  color: rgba(11,27,59,0.7);
  text-align: left;
  padding: 0 34px;
  margin-bottom: 8px;
  text-overflow: ellipsis;
  white-space: nowrap;
  background-color: rgba(242,246,247,0.75);
  border-radius: 12px;
  overflow: hidden;
  transition: height 0.3s;
}

.filter-wrap .filter-item .select-wrap .select-box .select-item:hover{
  background-color: rgba(225,231,235,0.75);
  cursor: pointer;
}

/* 内容区 */
.list-wrap{
  position: relative;
  width: 100%;
  padding-bottom: 42px;
  background-color: #FAFBFC;
}
.list-wrap .nomore{
  font-weight: 500;
  font-size: 16px;
  color: #A1ADB9;
  text-align: center;
  margin: 42px auto 0;
}
.list-wrap .bg-text{
  position: absolute;
  top: 0;
  left: -1094px;
  font-weight: 800;
  font-size: 240px;
  color: rgba(88, 107, 127, 0.03);
  line-height: 281px;
  white-space: nowrap;
  overflow: hidden;
}
.list-wrap .wrap-container{
  padding-top: 148px;
  font-size: 0;
}
.list-wrap .list-item{
  position: relative;
  display: inline-block;
  width: 694px;
  height: 430px;
  top: 0;
  font-size: 0;
  margin-right: 52px;
  margin-bottom: 52px;
  box-shadow: 0px 12px 16px 0px rgba(218,224,229,0.25);
  border-radius: 16px;
  cursor: pointer;
  background-color: #fff;
  overflow: hidden;
  transition: all .5s ease-in-out;
}
.list-wrap .list-item:hover{
  top: -20px;
}
.list-wrap .list-item:nth-of-type(2n){
  margin-right: 0;
}
.list-wrap .video-item .left{
  position: relative;
  display: inline-block;
  width: 322px;
  height: 100%;
  border-radius: 16px;
  overflow: hidden;
}
.list-wrap .video-item .left>video{
  width: 100%;
  height: 100%;
}
.list-wrap .video-item .left>img{
  width: 100%;
  height: 100%;
}
.list-wrap .video-item .left .play{
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 92px;
  height: 92px;
  margin: auto;
}
.list-wrap .video-item .info-wrap{
  box-sizing: border-box;
  display: inline-block;
  width: 372px;
  height: 100%;
  padding: 0 28px;
  overflow: hidden;
}
.list-wrap .video-item .info-wrap .title{
  font-size: 32px;
  font-weight: 500;
  color: #13161B;
  line-height: 44px;
  text-align: left;
  margin-top: 39px;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-wrap .video-item .info-wrap .desc{
  font-size: 18px;
  color: rgba(11,27,59,0.7);
  line-height: 24px;
  text-align: left;
  margin-top: 24px;
  display: -webkit-box;
  -webkit-line-clamp: 3;
  -webkit-box-orient: vertical;
  overflow: hidden;
  text-overflow: ellipsis;
}
.list-wrap .video-item .info-wrap .set{
  font-size: 18px;
  color: #36A687;
  line-height: 21px;
  text-align: left;
  margin-top: 80px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list-wrap .video-item .info-wrap .other-info{
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 55px;
}
.list-wrap .list-item .info-wrap .other-info>div{
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.list-wrap .list-item .info-wrap .other-info>div>img{
  width: 20px;
  height: 20px;
  margin-right: 6px;
}
.list-wrap .list-item .info-wrap .other-info>div>span{
  font-size: 16px;
  color: rgba(11,27,59,0.7);
  text-align: left;
  white-space: nowrap;
}
.list-wrap .img-item .top{
  display: flex;
  justify-content: center;
  align-items: flex-start;
  width: 100%;
  height: 290px;
  border-radius: 16px;
  overflow: hidden;
}

.list-wrap .img-item .top>img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list-wrap .img-item .info-wrap .title{
  box-sizing: border-box;
  width: 100%;
  font-size: 32px;
  font-weight: 500;
  color: #13161B;
  line-height: 38px;
  text-align: left;
  padding: 26px 30px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.list-wrap .img-item .info-wrap .other-info{
  box-sizing: border-box;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 30px;
}
.list-wrap .img-item .info-wrap .other-info .set{
  font-size: 18px;
  color: #36A687;
  line-height: 21px;
  text-align: left;
}