.news-wrapper .list {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  height: auto;
  box-sizing: border-box;
  padding-right: 55px;
}
.list .list-item {
  width: 305px;
  position: relative;
  font-size: 0;
  box-shadow: 0px 2px 2px 1px rgba(111, 111, 111, 0.2);
  margin-top: 55px;
  background-color: #fff;
  opacity: 0;
  transition: opacity linear .5s;
}
.list .list-item.move-in {
  opacity: 1;
}
.list .list-item:not(:nth-child(3n + 1)) {
  margin-left: 30px;
}
.list .list-item .pic {
  width: 305px;
  height: 305px;
}
.list .list-item .category-time {
  position: absolute;
  top: 140px;
  right: 10px;
  z-index: 2;
  color: #fff;
}
.list .list-item .category-time .category {
  font-size: 16px;
  text-align: right;
  text-shadow: 2px 2px 2px #5b0085;
}
.list .list-item .category-time .time {
  font-size: 20px;
  text-align: right;
  margin-top: 5px;
  text-shadow: 2px 2px 2px #5b0085;
}
.list .list-item .text {
  box-sizing: border-box;
  /* padding: 50px 35px 50px 50px; */
  padding: 0 20px;
  height: 120px;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  /* height: 200px; */
  display: flex;
  align-items: center;
}
.list .list-item .text .brief {
  font-size: 20px;
  color: #5c5c5c;
  line-height: 36px;
}
.more {
  width: 100%;
  text-align: center;
  font-size: 25px;
  font-weight: 500;
  color: #e85555;
  cursor: pointer;
  margin-top: 50px;
}

@media (min-width: 1200px) and (max-width: 1530px) {
  .list .list-item {
    width: 250px;
  }
  .list .list-item .pic {
    width: 250px;
    height: 250px;
  }
  .list .list-item:not(:nth-child(3n + 1)) {
    margin-left: 25px;
  }
  .list .list-item .text {
    padding: 40px 35px 40px 50px;
  }
  .list .list-item .text .brief {
    flex: 1;
    text-align: center;
  }
}

@media (min-width: 769px) and (max-width: 1199px) {
  .list .list-item {
    width: 190px;
  }
  .list .list-item .pic {
    width: 190px;
    height: 190px;
  }
  .list .list-item:not(:nth-child(3n + 1)) {
    margin-left: 22px;
  }
}



@media (width: 640px) {
  .list .list-item .pic {
    width: 150px;
    height: 150px;
  }
  .list .list-item {
    width: 150px;
  }
  .list .list-item:not(:nth-child(3n + 1)) {
    margin-left: 10px;
  }
  .news-wrapper .list {
    padding-right: 20px;
  }
  .list .list-item .text .brief {
    font-size: 14px;
    line-height: 1.5;
  }
  .list .list-item .text {
    height: 80px;
  }
}

@media (max-width: 640px) {
  .body .news-wrapper .news-list .list {
    padding: 0 20px!important;
  }
  .body .news-wrapper .news-list .list .list-item {
    padding: 0!important;
  }
  .body .news-wrapper .news-list .list .list-item:first-child {
    margin-top: 0;
  }
}