.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%;
}

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

.noticeList {
  display: flex;
  flex-direction: column;
  gap: .37rem;
}

.noticeItem {
  width: 100%;
  height: 2.54rem;
  display: flex;
  align-items: center;
  position: relative;
  overflow: hidden;
  border: .01rem solid #edf1f3;
  background: #fff;
  color: inherit;
  transition: transform .25s ease, box-shadow .25s ease;
}

.noticeItem time {
  width: 1.62rem;
  height: 1.82rem;
  margin-left: .35rem;
  flex: 0 0 auto;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #f9f9f9;
  color: #707070;
  transition: background .25s ease;
}

.noticeItem time b {
  font-family: Arial, sans-serif;
  color: inherit;
  font-size: clamp(48px, .6rem, 60px);
  line-height: 1;
  font-weight: 700;
}

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

.noticeInfo {
  min-width: 0;
  padding: 0 .38rem 0 .6rem;
  display: block;
}

.noticeInfo strong {
  display: block;
  overflow: hidden;
  color: #111725;
  font-size: clamp(18px, .24rem, 24px);
  line-height: 1.35;
  font-weight: 500;
  text-overflow: ellipsis;
  white-space: nowrap;
  transition: color .25s ease;
}

.noticeInfo em {
  margin-top: .29rem;
  display: -webkit-box;
  overflow: hidden;
  color: #707070;
  font-family: 'Source Han Sans CN', 'PingFang SC', sans-serif;
  font-size: clamp(14px, .16rem, 16px);
  font-style: normal;
  line-height: 1.625;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
}

.noticeItem:hover {
  transform: translateY(-.04rem);
  box-shadow: 0 .08rem .18rem rgba(0, 54, 153, .12);
}

.noticeItem:hover time {
  background: #f1f5f8;
  color: var(--blue);
}

.noticeItem:hover .noticeInfo strong {
  color: var(--blue);
  font-weight: 700;
}

@media (max-width: 768px) {
  .noticeListSection { padding: .5rem 0 .65rem; }
  .noticeList { gap: .18rem; }
  .noticeItem { height: auto; min-height: 1.85rem; }
  .noticeItem time { width: 1rem; height: 1.28rem; margin-left: .16rem; }
  .noticeItem time b { font-size: clamp(27px, .34rem, 34px); }
  .noticeItem time small { margin-top: .07rem; font-size: clamp(10px, .12rem, 12px); }
  .noticeInfo { padding: .14rem .15rem .14rem .18rem; }
  .noticeInfo strong { white-space: normal; font-size: clamp(15px, .19rem, 19px); }
  .noticeInfo em { margin-top: .1rem; font-size: clamp(12px, .14rem, 14px); line-height: 1.55; }
}
