.news-center-container {
  width: 100%;
}
.news-center-x {
  width: var(--max-width);
  margin: 0 auto;
  padding: 1rem var(--root-padding-x);
}
.sub-news_list .sub-news_li {
  padding: 2rem 0;
  border-bottom: 1px solid #eeeeee;
}
.sub-news_list .link {
  display: flex;
  width: 100%;
}
.sub-news_list .link:hover .img img {
  transform: scale(1.2);
}
.sub-news_list .link:hover .desc > h3 {
  color: #2a76bf;
}
.sub-news_list .img {
  width: 12rem;
  height: 7rem;
  flex-shrink: 0;
  margin-right: auto;
  overflow: hidden;
}
@media (min-width: 768px) {
  .sub-news_list .img {
    width: 15rem;
    height: 10rem;
  }
}
.sub-news_list .img img {
  width: 100%;
  max-height: 100%;
  object-fit: cover;
  transition: all 3s;
}
.sub-news_list .desc {
  width: calc(100% - 13.5rem);
  padding: 0.5rem 0;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  .sub-news_list .desc {
    padding: 1rem 0;
    width: calc(100% - 16.5rem);
  }
}
.sub-news_list .desc .truncate {
  font-size: 1.2rem;
}
.sub-news_list .desc > h3 {
  font-size: 1.1rem;
  font-weight: 400;
  color: #000;
}
.sub-news_list .desc > p {
  margin: auto 0;
  font-size: 1rem;
  color: #777;
  line-height: 1.3rem;
  font-weight: 400;
}
@media (min-width: 1024px) {
  .sub-news_list .desc > p {
    font-size: 0.75rem;
  }
}
.sub-news_list .desc > span {
  font-size: 1rem;
  font-weight: 400;
  color: #777;
}
@media (min-width: 1024px) {
  .sub-news_list .desc > span {
    font-size: 0.7rem;
  }
}
