.r1 {
  padding: 0.8rem 2.4rem;
}
.r1 .list {
  display: flex;
  flex-wrap: wrap;
  gap: 0.24rem;
}
.r1 .list .item {
  width: calc(33.33% - 0.16rem);
  border-radius: 4px;
  background: linear-gradient(270deg, #FFFFFF 0%, #F6F9FC 100%);
  box-sizing: border-box;
  border: 2px solid #FFFFFF;
  box-shadow: 6px 6px 20px 0px rgba(55, 99, 170, 0.1);
  padding: 0.24rem 0.24rem 0.32rem;
}
.r1 .list .item .name {
  font-family: Source Han Sans;
  font-size: var(--font16);
  font-weight: 500;
  line-height: var(--font24);
  color: #181818;
  margin-top: 0.36rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.r1 .list .item .name .right {
  width: 16px;
  height: 16px;
}
.r1 .list .item .info .infoItem {
  margin-top: 0.1rem;
  font-family: Source Han Sans;
  font-size: var(--font14);
  line-height: 0.2rem;
  color: #6B7280;
  width: 100%;
  overflow: hidden;
  /*内容超出后隐藏*/
  text-overflow: ellipsis;
  /*超出内容显示为省略号*/
  display: -webkit-box;
  /*将对象作为弹性伸缩盒子模型显示*/
  -webkit-box-orient: vertical;
  /*从上到下垂直排列子元素（设置伸缩盒子的子元素排列方式）*/
  -webkit-line-clamp: 2;
  white-space: break-spaces;
}
.r1 .list .item .imgBox {
  height: 1.86rem;
  width: 100%;
  position: relative;
}
.r1 .list .item .imgBox::after {
  position: absolute;
  content: '';
  display: inline-block;
  height: 1.2rem;
  left: 0;
  right: 0;
  background: rgba(241, 243, 247, 0.8);
  bottom: 0;
}
.r1 .list .item .imgBox .img {
  width: 3.1rem;
  height: auto;
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  object-fit: cover;
  z-index: 9;
}
@media screen and (orientation: portrait) {
  .r1 {
    padding: 0.8rem 0.24rem;
  }
  .r1 .list .item {
    width: 100%;
  }
  .r1 .list .item .info .infoItem {
    line-height: normal;
  }
}
