:root {
  --list-img-width: 250px;
  --list-gap: 30px;
}



.news-swiper {
  margin-bottom: 30px;
}

.news-swiper .item {
  display: flex;
  gap: var(--page-body-gap);
  align-items: center;
  padding: 0 1px;
}

.news-swiper .img {
  position: relative;
  z-index: 2;
  width: var(--sider-width);
}

.news-swiper .img img {
  display: block;
  width: calc(100% + var(--page-body-gap) + 180px);
  margin-right: calc((var(--page-body-gap) + 180px) * -1);
}

.news-swiper .meta {
  width: 100%;
  height: 413px;
  flex: 1;
  display: block;
  padding: 90px 90px 150px calc(var(--list-img-width) + var(--list-gap));
  color: var(--white);
  background: var(--primary-color) url(../image/bg-event-card-3@3x.png) no-repeat right 40px bottom 0 / 345px auto;
}

.news-swiper .meta .title {
  margin-bottom: 20px;
  font-size: var(--font-size-xxl);
  font-weight: 500;

  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  text-overflow: ellipsis;
}

.news-swiper .meta .text {
  font-size: var(--font-size-l);
  font-weight: 300;

  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  display: -webkit-box;
  text-overflow: ellipsis;
}


.news-swiper-ctrl {
  position: absolute;
  z-index: 2;
  right: 90px;
  bottom: 70px;
  left: calc(var(--sider-width) + var(--page-body-gap) + var(--list-img-width) + var(--list-gap));
  display: flex;
  justify-content: space-between;
}

.news-swiper-ctrl .btn-group {
  display: flex;
}

.news-swiper-ctrl .prev,
.news-swiper-ctrl .next {
  display: inline-block;
  height: 40px;
  width: 40px;
  background: url(../image/icon-player.png) no-repeat 50% 50% / cover;
  cursor: pointer;
}

.news-swiper-ctrl .prev:hover,
.news-swiper-ctrl .next:hover {
  background-image: url(../image/icon-player-on.png);
}

.news-swiper-ctrl .prev {
  margin-right: 8px;
  transform: rotate(180deg);
}

.news-swiper-ctrl .next {}

.news-swiper-ctrl .swiper-button-disabled {
  opacity: 0.2;
  cursor: default;
}



.news-swiper-ctrl .pagination {
  width: auto;
}

.news-swiper-ctrl .pagination .swiper-pagination-bullet {
  width: 10px;
  height: 10px;
  opacity: 1;
  background: var(--white-40);
}

.news-swiper-ctrl .pagination .swiper-pagination-bullet-active {
  background: var(--color-grey-900);
}

/* animate */
.news-swiper .item .img {
  transform: translateY(-100%);
  opacity: 0;
  transition: all .3s ease;
}

.news-swiper .ani-slide .img {
  transform: translateY(0);
  opacity: 1;
}




.news-list .item {
  min-height: 140px;
  display: flex;
  gap: 30px;
  margin-bottom: 30px;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--line-color);
}

.news-list .img {
  width: var(--list-img-width);
  overflow: hidden;
}

.news-list .img img {
  width: 100%;
  display: block;
  transition: all .3s ease;
}

.news-list .item:hover .img img {
  transform: scale(1.05);
}

.news-list .meta {
  flex: 1;
}

.news-list .meta .date {
  margin-bottom: 10px;
  color: var(--color-grey-100);
  font-size: var(--font-size-m);
}

.news-list .meta .title {
  color: var(--color-grey-100);
  font-size: var(--font-size-xxl);
  font-weight: 500;

  overflow: hidden;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  display: -webkit-box;
  text-overflow: ellipsis;
}

.news-list .item:hover .meta .title {
  color: var(--primary-color);
}


@media screen and (max-width: 1400px) {
  :root {
    --list-img-width: 180px;
  }

  .news-swiper .meta {
    padding-right: 30px;
  }

  .news-list .meta .title {
    font-size: 20px;
  }
}


@media screen and (max-width: 992px) {
  .news-swiper {
    margin-left: -16px;
    margin-right: -16px;
  }

  .news-swiper .item {
    flex-direction: column;
    gap: 0;
    padding: 0;
  }

  .news-swiper .img {
    margin: 0 16px -40px;
    width: calc(100% - 32px);
  }

  .news-swiper .img img {
    width: 100%;
    margin: 0;
  }

  .news-swiper .meta {
    height: 294px;
    flex: auto;
    padding: 56px 16px 90px;
    background-size: 130px auto;
    background-position: right 16px bottom 0;
  }

  .news-swiper .meta .title {
    margin-bottom: 16px;
    font-size: 20px;
  }

  .news-swiper .meta .text {
    font-size: 16px;
  }

  .news-swiper-ctrl {
    right: 16px;
    bottom: 26px;
    left: 16px;
  }

  .news-swiper-ctrl .pagination .swiper-pagination-bullet {
    width: 8px;
    height: 8px;
  }


  /* animate */
  .news-swiper .item .img {
    transform: translateY(0);
    opacity: 1;
    transition: none;
  }



}

@media screen and (max-width: 768px) {
  .news-list .img {
    width: 100%;
  }

  .news-list .item {
    min-height: 0;
    gap: 12px;
    flex-direction: column;
    margin-bottom: 24px;
    padding-bottom: 24px;
  }

  .news-list .meta .date {
    margin-bottom: 8px;
  }

  .news-list .meta .title {
    font-size: 20px;
  }
}