/*新闻列表*/

.news_list li {
  transition: all 0.3s;
  margin-bottom: 2.5rem /* 40/16 */;
  border: 1px solid #efefef;
}
.news_list li .img_box {
  width: 20%;
}

.news_list li .news_type {
  position: absolute;
  top: 0;
  left: 0;
  background-color: rgba(33, 108, 181, 0.8);
  color: #ffffff;
  padding: 0.625rem /* 10/16 */ 1.25rem /* 20/16 */;
  font-size: 0.9375rem /* 15/16 */;
  z-index: 2;
}

.news_list li .cont_box {
  width: 100%;
  margin-top: 0;
  margin-left: 2rem;
  max-width: calc(80% - 2rem);
}
.news_list li .title {
  font-size: 1.25rem;
  line-height: 1.6;
  margin-bottom: 1rem;
  transition: all 0.3s;
  font-weight: bold;
}
.news_list li .content {
  font-size: 1rem;
  color: #666666;
  margin-bottom: 1rem;
  line-height: 1.8;
}
.news_list li .time {
  font-size: 0.875rem /* 14/16 */;
  color: var(--grey2);
}
.news_list li:hover {
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.1);
}
.news_list li:hover .title {
  font-weight: bold;
  color: var(--base_color);
}

/*新闻列表*/