.news {
  position: relative;
}

.news .title {
  padding: 22px 10px;
  display: block;
  font-size: 15px;
  font-weight: 500;
  text-align: left;
  background-color: #fff;
  border-bottom: 1px solid #dedede;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.news_list {
  height: calc(100vh - 163px);
  overflow: scroll;
}

.news_list .list_item {
  padding: 0px 10px;
  border-bottom: 1px solid #dedede;
}

.news_list .list_item a {
  padding: 15px 0;
  display: flex;
  justify-content: space-between;
  align-items: stretch;

  gap: 20px;
}

.news_list .list_item a > img {
  width: 40%;
  height: 100px;
  object-fit: cover;
}

.news_list .list_item .item_info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 68%;
}

.news_list .list_item .item_info > strong {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
  line-height: 1.55;
  font-size: 16px;
  font-weight: 400;
}

.news_list .list_item .item_info .info_detail {
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 13px;
  font-weight: 350;
  color: #a8a8a8;
}

@media (max-width: 640px) {
  .news_list {
    height: calc(100vh - 147px);
  }

  .news .title {
    padding: 15px 10px;
    font-size: 14px;
  }

  .news_list .list_item {
    padding: 0 5px;
  }

  .news_list .list_item a {
    padding: 10px 0;
    gap: 10px;
  }

  .news_list .list_item a > img {
    height: 80px;
  }

  .news_list .list_item .item_info > strong {
    line-height: 1.4;
    font-size: 14px;
  }

  .news_list .list_item .item_info .info_detail {
    padding: 0 10px 0 0;
    font-size: 12px;
  }
}
