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

.focusVideoSection {
  padding: .88rem 0 1.23rem;
}

.focusVideoGrid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  column-gap: .55rem;
  row-gap: .93rem;
}

.focusVideoItem {
  min-width: 0;
  color: inherit;
  background: #F1F5F8;
}

.focusCover {
  height: 2.5rem;
  display: block;
  position: relative;
  overflow: hidden;
  background: #e9edf0;
}

.focusCover::after {
  position: absolute;
  inset: 0;
  content: '';
  background: rgba(0, 0, 0, .08);
  transition: background .25s ease;
}

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

.playButton {
  width: .5rem;
  height: .5rem;
  position: absolute;
  top: 50%;
  left: 50%;
  z-index: 1;
  transform: translate(-50%, -50%);
  border: .02rem solid #fff;
  border-radius: 50%;
  transition: transform .25s ease, background .25s ease;
}

.playButton::after {
  width: 0;
  height: 0;
  position: absolute;
  top: .12rem;
  left: .175rem;
  content: '';
  border-top: .11rem solid transparent;
  border-bottom: .11rem solid transparent;
  border-left: .15rem solid #fff;
}

.focusTitle {
  height: .67rem;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #111725;
  font-size: clamp(16px, .2rem, 20px);
  font-weight: 500;
  transition: color .25s ease;
}

.focusVideoItem:hover .focusCover img {
  transform: scale(1.06);
}

.focusVideoItem:hover .focusCover::after {
  background: rgba(0, 54, 153, .15);
}

.focusVideoItem:hover .playButton {
  background: rgba(0, 54, 153, .8);
  transform: translate(-50%, -50%) scale(1.08);
}

.focusVideoItem:hover .focusTitle {
  color: var(--blue);
  font-weight: 700;
}

.focusPager {
  margin-top: .93rem;
  display: flex;
  justify-content: center;
  gap: .15rem;
}

.focusPager button {
  width: .4rem;
  height: .4rem;
  border: .01rem solid #dcdcdc;
  background: #fff;
  color: #777;
  font-size: clamp(13px, .16rem, 16px);
}

.focusPager button:hover,
.focusPager button.active {
  border-color: var(--blue);
  background: var(--blue);
  color: #fff;
}

@media (max-width: 768px) {
  .focusVideoSection { padding: .5rem 0 .65rem; }
  .focusVideoGrid { grid-template-columns: 1fr; gap: .22rem; }
  .focusCover { height: 2.6rem; }
  .focusTitle { height: .58rem; }
  .focusPager { margin-top: .42rem; }
}
