.newsPageMain {
  background: #fff;
}

.newsPage .nav>a[href="/index.html#news"] {
  color: var(--blue);
  font-weight: 700;
}

.newsPage .nav>a[href="/index.html#news"]::after {
  width: 100%;
}

.newsListSection {
  padding: 1.02rem 0 1.23rem;
}

.newsList {
  display: flex;
  flex-direction: column;
  gap: .3rem;
}

.newsListItem {
  height: 2.62rem;
  display: flex;
  align-items: center;
  overflow: hidden;
  border: .01rem solid #edf1f3;
  background: #fff;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
  box-shadow: 0 0 10px rgba(0, 0, 0, 0.10);
}

.newsCover {
  width: 3.9rem;
  height: 100%;
  overflow: hidden;
  flex-shrink: 0;
}

.newsCover img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
  transition: transform .35s ease;
}

.newsInfo {
  width: 7.45rem;
  margin: .0rem 1.02rem 0 .71rem;
  display: block;
}

.newsInfo strong {
  display: block;
  color: #111725;
  font-size: clamp(18px, .24rem, 24px);
  line-height: 1.3;
  font-weight: 700;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.newsInfo em {
  margin-top: .28rem;
  display: -webkit-box;
  overflow: hidden;
  color: #7b7b7b;
  font-size: clamp(14px, .16rem, 16px);
  font-style: normal;
  line-height: 1.65;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.newsListItem time {
  display: flex;
  flex-direction: column;
  align-items: center;
  color: #707070;
}

.newsListItem time b {
  font-family: Arial, sans-serif;
  font-size: clamp(52px, .72rem, 72px);
  line-height: .95;
  font-weight: 400;
  color: #707070;
}

.newsListItem time small {
  margin-top: .08rem;
  font-family: Arial, sans-serif;
  font-size: clamp(16px, .2rem, 20px);
  line-height: 1;
  color: #707070; 
}

.newsListItem:hover {
  border-color: transparent;
}

.newsListItem:hover .newsInfo strong,
.newsListItem:hover time b,
.newsListItem:hover time small {
  color: var(--blue);
}

.newsListItem:hover {
  transform: translateY(-.04rem);
  box-shadow: 0 0 20px rgba(0, 0, 0, 0.30);
}

.newsListItem:hover .newsCover img {
  transform: scale(1.05);
}

@media (max-width: 768px) {
  .newsListSection { padding: .5rem 0 .65rem; }
  .newsList { gap: .18rem; }
  .newsListItem { height: auto; min-height: 2rem; align-items: stretch; }
  .newsCover { width: 1.8rem; height: auto; min-height: 2rem; }
  .newsInfo { width: auto; min-width: 0; margin: .2rem .15rem .16rem .18rem; flex: 1; }
  .newsInfo strong { white-space: normal; font-size: clamp(15px, .19rem, 19px); }
  .newsInfo em { margin-top: .1rem; font-size: clamp(12px, .14rem, 14px); line-height: 1.55; }
  .newsListItem time { width: .62rem; margin-right: .1rem; justify-content: center; }
  .newsListItem time b { font-size: clamp(25px, .32rem, 32px); }
  .newsListItem time small { font-size: clamp(10px, .12rem, 12px); white-space: nowrap; }
}
