.news {
  position: relative;
  z-index: 1;
  padding-top: 4.53vw;
  padding-bottom: 5.89vw;
  background-color: #fff;
}

.news .header {
  line-height: 1;
}

.news .header .title {
  font-size: 2.29vw;
  font-weight: 700;
}

.news .header .en {
  font-size: 1.98vw;
  margin-top: 1.04vw;
  font-family: Airal;
  text-transform: uppercase;
  color: #d7dfe2;
  font-weight: 700;
}

/* grid */
.news .news-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 3.54vw 1.46vw;
  margin-top: 4.06vw;
  --news-featured-height: 34.58vw;
}

/* featured banner */
.news .news-featured {
  grid-column: span 2;
  position: relative;
  height: var(--news-featured-height);
  overflow: hidden;
}

.news .news-featured-swiper,
.news .news-featured .swiper-container {
  width: 100%;
  height: 100%;
}

.news .news-featured .swiper-slide {
  height: 100%;
  overflow: hidden;
}

.news .news-featured .slide-link {
  display: block;
  position: relative;
  width: 100%;
  height: 100%;
  text-decoration: none;
  color: #fff;
  overflow: hidden;
}

.news .news-featured .slide-bg {
  position: absolute;
  inset: 0;
  overflow: hidden;
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
  -moz-backface-visibility: hidden;
  -ms-backface-visibility: hidden;
}

.news .news-featured .slide-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  display: block;
}

.news .news-featured .slide-mask {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(to top, rgba(0, 0, 0, 0.78) 0%, rgba(0, 0, 0, 0.35) 45%, transparent 72%);
  pointer-events: none;
}

.news .news-featured .slide-info {
  position: absolute;
  left: 2.86vw;
  right: 2.86vw;
  bottom: 6.25vw;
  z-index: 2;
}

.news .news-featured .slide-info .title {
  font-size: 1.15vw;
  font-weight: 700;
  line-height: 1;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
}

.news .news-featured .slide-info .title span {
  display: block;
}

.news .news-featured .slide-info .desc {
  margin-top: 1.3vw;
  font-size: .83vw;
  line-height: 1.75;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.news .news-featured .slide-info .desc span {
  display: block;
}

.news .news-featured .featured-controls {
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  z-index: 3;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 2.86vw 2.45vw;
  pointer-events: none;
}

.news .news-featured .featured-controls > * {
  pointer-events: auto;
}

/* 仅一条轮播时隐藏分页器与左右箭头 */
.news .news-featured:has(.swiper-slide:only-child) .featured-controls {
  display: none;
}

.news .news-featured:has(.swiper-slide:only-child) .slide-info {
  bottom: 2.45vw;
}

.news .news-featured .news-featured-pagination {
  position: static;
  display: flex;
  gap: 0 .52vw;
  width: auto;
}

.news .news-featured .news-featured-pagination .swiper-pagination-bullet {
  width: 3.59vw;
  height: .21vw;
  border-radius: 0;
  background-color: #dbdbdb;
  opacity: 1;
  margin: 0;
}

.news .news-featured .news-featured-pagination .swiper-pagination-bullet-active {
  background-color: #fa9130;
}

.news .news-featured .featured-nav {
  display: flex;
  gap: 0 .78vw;
}

.news .news-featured-prev,
.news .news-featured-next {
  width: 6.04vw;
  height: 2.19vw;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
  cursor: pointer;
  transition: all 0.3s ease;
  border-radius: .42vw;
  background-color: #fff;
}

.news .news-featured-prev:not(.swiper-button-disabled):hover,
.news .news-featured-next:not(.swiper-button-disabled):hover {
  background-color: #2D77D9;
}

.news .news-featured-prev::after,
.news .news-featured-next::after {
  content: '';
  width: .63vw;
  aspect-ratio: 12 / 20;
  -webkit-mask: url(../images/arrow-right-icon.svg) no-repeat center / contain;
  mask: url(../images/arrow-right-icon.svg) no-repeat center / contain;
  background-color: #333;
  transition: all .3s;
}

.news .news-featured-prev::after {
  transform: rotate(180deg);
}

.news .news-featured-prev:not(.swiper-button-disabled):hover::after,
.news .news-featured-next:not(.swiper-button-disabled):hover::after {
  background-color: #fff;
}

.news .news-featured-prev.swiper-button-disabled,
.news .news-featured-next.swiper-button-disabled {
  opacity: 0.35;
  cursor: not-allowed;
}

/* news item */
.news .news-list .item {
  display: flex;
  flex-direction: column;
  height: 31.25vw;
  overflow: hidden;
  text-decoration: none;
  color: inherit;
}

.news .news-list .news-featured + .item {
  height: var(--news-featured-height);
}

.news .news-list .item .cover {
  flex-shrink: 0;
  height: 16.88vw;
  width: 100%;
  overflow: hidden;
}

.news .news-list .item .cover img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.4s linear;
}

.news .news-list .item:hover .cover img {
  transform: scale(1.05);
}

.news .news-list .item .info {
  position: relative;
  flex: 1;
  min-height: 0;
  background-color: #f1f2f4;
  padding: 1.82vw 1.77vw 2.76vw;
  overflow: hidden;
}

.news .news-list .news-featured + .item .info {
  display: flex;
  flex-direction: column;
  padding-bottom: 1.56vw;
}

.news .news-list .item .info::before {
  position: absolute;
  top: 50%;
  left: 50%;
  width: 50vw;
  height: 50vw;
  margin: 0;
  transform: translate(-50%, -50%);
  content: '';
  border-radius: 50%;
  display: block;
  box-shadow: inset 0 0 0 0 #2d77d9;
  transition: box-shadow 0.6s cubic-bezier(0.3, 0, 0.2, 1);
  z-index: 0;
}

.news .news-list .item:hover .info::before {
  box-shadow: inset 0 0 0 25vw #2d77d9;
}

.news .news-list .item .info .date {
  position: relative;
  z-index: 1;
  font-size: 1.88vw;
  font-family: Arial;
  color: #2D77D9;
  line-height: 1;
  font-weight: 700;
  padding-bottom: 1.25vw;
  border-bottom: 1px solid #bfbfbf;
  transition: color 0.3s 0.1s ease-out, border-color 0.3s 0.1s ease-out;
}

.news .news-list .item:hover .info .date {
  color: #fff;
  border-bottom-color: #71a3e5;
}

.news .news-list .item .info .year {
  font-size: .94vw;
  font-family: Arial;
  line-height: 1;
  margin-left: .36vw;
  color: #333;
  font-weight: 400;
  transition: color 0.3s 0.1s ease-out;
}

.news .news-list .item:hover .info .year {
  color: #fff;
}

.news .news-list .item .info .title {
  position: relative;
  z-index: 1;
  font-size: 1.15vw;
  font-weight: 700;
  line-height: 1.4;
  min-height: 1.4em;
  margin-top: 1.3vw;
  color: #333;
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  transition: color 0.3s 0.1s ease-out;
}

.news .news-list .news-featured + .item .info .date,
.news .news-list .news-featured + .item .info .title {
  flex-shrink: 0;
}

.news .news-list .item:hover .info .title {
  color: #fff;
}

.news .news-list .item .info .desc {
  position: relative;
  z-index: 1;
  font-size: .83vw;
  line-height: 1.75;
  margin-top: 1.2vw;
  color: #666;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
  transition: color 0.3s 0.1s ease-out;
}

.news .news-list .news-featured + .item .info .desc {
  flex-shrink: 0;
}

.news .news-list .item:hover .info .desc {
  color: #fff;
}

.news .news-list .news-featured + .item .info .more {
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  gap: .42vw;
  margin-top: auto;
  padding-top: 1.35vw;
  font-size: .83vw;
  color: #2d77d9;
  transition: color 0.3s 0.1s ease-out;
}

.news .news-list .news-featured + .item:hover .info .more {
  color: #fff;
}

.news .news-list .news-featured + .item .info .more::after {
  content: '';
  width: .42vw;
  aspect-ratio: 12 / 20;
  flex-shrink: 0;
  -webkit-mask: url(../images/arrow-right-icon.svg) no-repeat center / contain;
  mask: url(../images/arrow-right-icon.svg) no-repeat center / contain;
  background-color: #333;
  transition: background-color 0.35s linear;
  transform: translateY(.05vw);
}

.news .news-list .news-featured + .item:hover .info .more::after {
  background-color: #fff;
}

.pagination {
  position: relative;
  z-index: 1;
  background-color: #fff;
}

@media screen and (max-width: 1020px) {
  .news {
    padding-top: var(--m-section-py);
    padding-bottom: 0;
  }

  .news .header .title {
    font-size: var(--m-font-h1);
    line-height: 1.3;
  }

  .news .header .en {
    margin-top: var(--m-space-xs);
    font-size: var(--m-font-h3);
    line-height: 1.4;
  }

  .news .news-list {
    grid-template-columns: 1fr;
    width: 100vw;
    max-width: 100vw;
    margin-left: calc(50% - 50vw);
    padding: 0 var(--m-space-md);
    box-sizing: border-box;
    gap: var(--m-space-md);
    margin-top: var(--m-gap-block);
  }

  .news .news-featured {
    grid-column: span 1;
    width: calc(100% + var(--m-space-md) * 2);
    max-width: 100vw;
    margin-left: calc(-1 * var(--m-space-md));
    height: auto;
    aspect-ratio: 375 / 280;
    min-height: 17.5rem;
  }

  .news .news-featured .slide-info {
    left: var(--m-space-md);
    right: var(--m-space-md);
    bottom: 22vw;
  }

  .news .news-featured .slide-info .title {
    font-size: var(--m-font-h2);
    line-height: 1.4;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
  }

  .news .news-featured .slide-info .desc {
    margin-top: var(--m-space-xs);
    font-size: var(--m-font-body);
    line-height: 1.75;
    -webkit-line-clamp: 2;
  }

  .news .news-featured:has(.swiper-slide:only-child) .slide-info {
    bottom: var(--m-space-md);
  }

  .news .news-featured .featured-controls {
    padding: 0 var(--m-space-md) var(--m-space-md);
    justify-content: flex-end;
  }

  .news .news-featured .news-featured-pagination {
    display: none;
  }

  .news .news-featured .featured-nav {
    gap: var(--m-space-xs);
  }

  .news .news-featured-prev,
  .news .news-featured-next {
    width: 22vw;
    height: 8vw;
    min-height: 2rem;
    border-radius: 1.067vw;
  }

  .news .news-featured-prev::after,
  .news .news-featured-next::after {
    width: 1.6vw;
  }

  .news .news-list .item {
    flex-direction: row;
    align-items: stretch;
    height: auto;
  }

  .news .news-list .news-featured + .item {
    height: auto;
  }

  .news .news-list .item .cover {
    flex-shrink: 0;
    width: 28vw;
    height: auto;
    max-height: none;
    aspect-ratio: 4 / 3;
  }

  .news .news-list .item .info {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: var(--m-space-xs) var(--m-space-sm);
  }

  .news .news-list .item .info::before {
    width: 90vw;
    height: 90vw;
  }

  .news .news-list .item:hover .info::before {
    box-shadow: inset 0 0 0 45vw #2d77d9;
  }

  .news .news-list .item .info .date {
    font-size: 3.733vw;
    padding-bottom: var(--m-space-3xs);
    border-bottom: none;
  }

  .news .news-list .item .info .year {
    font-size: 2.933vw;
    margin-left: 1.067vw;
  }

  .news .news-list .item .info .title {
    min-height: 0;
    margin-top: 0;
    font-size: 3.467vw;
    font-weight: 700;
    white-space: normal;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    line-height: 1.45;
  }

  .news .news-list .item .info .desc {
    margin-top: var(--m-space-3xs);
    font-size: 2.933vw;
    line-height: 1.6;
    -webkit-line-clamp: 2;
  }

  .news .news-list .news-featured + .item .info .more {
    display: none;
  }
}
