/*新闻列表*/
.news_list {
  margin: 2.5rem 0;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.news_list li {
  margin-bottom: 1.666667rem /* 40/24 */;
  border-bottom: 0;
  transition: all 0.3s ease;
}

.news_list li:last-child {
  border-bottom: none;
  margin-bottom: 0;
}

.news_list li a {
  display: block;
  transition: all 0.3s ease;
}

.news_list li:hover a {
  transform: translateX(10px);
}


.news_list li .news_title {
  font-size: 1.5rem /* 36/24 */;
  color: #202020;
  margin-bottom: 0.833333rem /* 20/24 */;
  font-weight: normal;
  transition: all 0.3s ease;
}

.news_list li .news_desc {
  font-size: 1.083333rem /* 26/24 */;
  color: #857f77;
  line-height: 1.8;
  margin-bottom: 0.833333rem /* 20/24 */;
}

.news_list li:hover .news_title {
  color: var(--base_color);
}

.news_list li .news_time {
  color: #888888;
  font-size: 1rem;
}

.news_list li .news_time i {
  font-size: 1.166667rem /* 28/24 */;
}

/*新闻列表*/