.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 .active{
  color: #333;
}
.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{
  display: none;
  font-weight: 500;
  font-size: 16px;
  color: #A1ADB9;
  text-align: center;
  margin: 42px auto 0;
}
.list-wrap .bg-text{
  position: absolute;
  top: 0;
  left: -702px;
  font-weight: 800;
  font-size: 240px;
  color: rgba(88, 107, 127, 0.03);
  line-height: 281px;
  overflow: hidden;
}
.list-wrap .wrap-container{
  padding-top: 148px;
  font-size: 0;
}
.list-wrap .list-item{
  position: relative;
  display: inline-block;
  width: 440px;
  height: 330px;
  top: 0;
  margin-right: 60px;
  margin-bottom: 60px;
  box-shadow: 0px 12px 16px 0px rgba(218,224,229,0.25);
  border-radius: 16px;
  cursor: pointer;
  overflow: hidden;
  transition: all .5s ease-in-out;
}
.list-wrap .list-item:hover{
  top: -20px;
}
.list-wrap .list-item:nth-of-type(3n){
  margin-right: 0;
}
.list-wrap .list-item>img{
  width: 100%;
  height: 100%;
}
.list-wrap .list-item .icon{
  position: absolute;
  top: 12px;
  right: 4px;
  z-index: 8;
  width: 72px;
  height: 72px;
}
.list-wrap .list-item .mask{
  position: absolute;
  inset: 0;
  z-index: 1;
  width: 100%;
  height: 100%;
  opacity: 0;
  transition: all 0.3s ease-in-out;
  background: linear-gradient( 180deg, rgba(0,65,53,0) 0%, rgba(0,44,36,0.6) 100%);
}
.list-wrap .list-item:hover .mask{
  opacity: 1;
}
.list-wrap .list-item .content{
  position: absolute;
  bottom: 28px;
  left: 0;
  z-index: 2;
  box-sizing: border-box;
  width: 100%;
  padding: 0 36px;
  font-weight: bold;
  font-size: 32px;
  color: #FFFFFF;
  text-align: center;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}