.list_data_view .list {
  margin-top: 58px;
  display: flex;
  flex-wrap: wrap;
}
.list_data_view .list .item {
  width: 19.0625vw;
  margin-right: calc((100% - 1px - 19.0625vw * 4) / 3);
  margin-top: 58px;
  display: block;
}
.list_data_view .list .item .img {
  font-size: 0;
  width: 100%;
  height: 11.4583vw;
  border-radius: 10px;
  overflow: hidden;
}
.list_data_view .list .item .img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.list_data_view .list .item .date {
  font-size: 18px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
  line-height: 1;
  margin-top: 28px;
}
.list_data_view .list .item .title1 {
  margin-top: 28px;
  font-size: 24px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #111111;
  line-height: 30px;
  height: calc(30px * 2);
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 这里是超出几行省略 */
  overflow: hidden;
}
.list_data_view .list .item .title2 {
  margin-top: 28px;
  font-size: 14px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #999999;
  line-height: 24px;
  height: calc(24px * 2);
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 这里是超出几行省略 */
  overflow: hidden;
}
@media (min-width: 1280px) {
  .list_data_view .list .item:nth-of-type(4n) {
    margin-right: 0;
  }
  .list_data_view .list .item:nth-of-type(-n + 4) {
    margin-top: 0;
  }
  .list_data_view .list .item:hover .title1 {
    color: #a0151a;
  }
}
.list_data_view .more_btn {
  width: 160px;
  height: 48px;
  background: #F2F2F2;
  border-radius: 10px;
  font-size: 16px;
  font-family: Microsoft YaHei;
  font-weight: 400;
  color: #111111;
  text-align: center;
  line-height: 48px;
  margin: 60px auto 0;
  cursor: pointer;
  display: none;
}
@media (min-width: 1280px) {
  .list_data_view .more_btn:hover {
    background-color: #a0151a;
    color: #fff;
  }
}
@media (max-width: 1280px) {
  .list_data_view .list {
    margin-top: 1.75rem;
  }
  .list_data_view .list .item {
    width: calc((100% - 1px - 1.25rem) / 2);
    margin-right: 1.25rem;
    margin-top: 2.5rem;
  }
  .list_data_view .list .item .img {
    height: 26.13vw;
    border-radius: 0.625rem;
  }
  .list_data_view .list .item .date {
    font-size: 1.5rem;
    font-family: Source Han Sans CN;
    margin-top: 1.75rem;
  }
  .list_data_view .list .item .title1 {
    margin-top: 1.75rem;
    font-size: 1.875rem;
    font-family: Source Han Sans CN;
    line-height: 3rem;
    height: calc(3rem * 2);
  }
  .list_data_view .list .item .title2 {
    margin-top: 1.75rem;
    font-size: 1.25rem;
    font-family: Source Han Sans CN;
    line-height: 1.875rem;
    height: calc(1.875rem * 2);
  }
  .list_data_view .list .item:nth-of-type(2n) {
    margin-right: 0;
  }
  .list_data_view .list .item:nth-of-type(-n + 2) {
    margin-top: 0;
  }
  .list_data_view .more_btn {
    width: 11.25rem;
    height: 4rem;
    border-radius: 0.625rem;
    text-align: center;
    line-height: 4rem;
    font-size: 1.5rem;
    font-family: Source Han Sans CN;
    font-weight: 400;
    color: #111111;
    margin-top: 3.75rem;
  }
}
.list_data_view .list .item {
  display: none;
}
.list_data_view .list .item.active {
  display: block;
}