.news-title{
  border-bottom: 1px solid #eee;
  padding-bottom: 1rem;
}
.news-title-label{
  font-size: 1.5rem;
  font-weight: 700;
  border-bottom: 4px solid #0E67CC;
  padding-bottom: 1rem;
}
.news-li{
  padding: 2.5rem 0;
  border-bottom: 1px solid #eee;
}
.news-li-img{
  height: 10rem;
}
.news-li-img > img{
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.news-li-text{
  flex: auto;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.news-li-title{
  font-size: 1.125rem;
  font-weight: 500;
  margin-bottom: .625rem;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
  overflow: hidden;
}
.news-li-label{
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  line-height: 1.8;
  font-size: .875rem;
}
.news-li-date{
  border: 2px solid #0E67CC;
  border-radius: 4px;
  color: #0E67CC;
  text-align: center;
  width: 6.25rem;
  height: 6.25rem;
  display: flex;
  flex-direction: column;
  justify-content: space-evenly;
  position: relative;
}
.news-li-date::before{
  content: '';
  position: absolute;
  width: 1rem;
  height: .1875rem;
  background-color: #0E67CC;
  top: 50%;
  left: 50%;
  transform: translate(-50%, 0);
}
.news-li-md{
  font-size: 1.25rem;
  font-weight: 700;
}
.news-li-y{
  font-size: .875rem;
  font-weight: 500;
}