﻿.banner {
  width: 100%;
  height: 55rem;
  overflow: hidden;
}

.banner .swiper-container {
  width: 100%;
  height: 100%;
  overflow: hidden;
  position: relative;
}

.banner .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: 1s linear 2s;
  display: block;
  transform: scale(1.1, 1.1);
}

.banner .swiper-pagination {
  display: flex;
  justify-content: flex-end;
  padding-right: 7rem;
  bottom: 2rem;
}

.banner .swiper-slide-active img,
.banner .swiper-slide-duplicate-active img {
  transition: 6s linear;
  transform: scale(1, 1);
}

.banner .swiper-pagination-bullet {
  width: 1.6rem;
  height: 1.6rem;
}

.banner .swiper-pagination-bullet-active {
  background: #fff;
}

.banner .swiper-button-prev {
  width: 5.8rem;
  height: 5.8rem;
  left: 15rem;
}

.banner .swiper-button-prev::after {
  content: '';
  background: url(../images/banner_left.png) 0 0 no-repeat;
  width: 100%;
  height: 100%;
}

.banner .swiper-button-next {
  width: 5.8rem;
  height: 5.8rem;
  right: 15rem;
}

.banner .swiper-button-next::after {
  content: '';
  background: url(../images/banner_right.png) 0 0 no-repeat;
  width: 100%;
  height: 100%;
}

/* container */
.container {
  width: 100%;
  overflow: hidden;
  padding-bottom: 7rem;
}

.row-1 {
  width: 140rem;
  height: 46rem;
  overflow: hidden;
  margin: 8rem auto 0;
  display: flex;
  justify-content: space-between;
}

.news {
  width: 67rem;
   transform: translateY(10rem);
  opacity: 0;
  transition: 1s ease-in-out
}

.news-title {
  width: 100%;
  display: flex;
  border-bottom: 0.1rem solid #BBBBBB;
  height: 4.6rem;
  justify-content: space-between;
}

.news-title-left {
  height: 4.6rem;
  font-weight: 500;
  font-size: 2.2rem;
  padding: 0 2.7rem;
  color: #fff;
  background: var(--color);
  line-height: 4.6rem;
  border-radius: 1rem 1rem 0 0;
}

.news-title-right {
  display: block;
  height: 4.6rem;
  line-height: 4.6rem;
  font-size: 1.4rem;
  color: #333;
  transition: 0.5s all;
}

.news-title-right:hover {
  color: var(--color);
}

.news-con {
  width: 100%;
  padding-top: 2rem;
}

.news-item {
  width: 100%;
  height: 7.6rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  border-bottom: .1rem dashed #B1B1B1;
}

.news-item .title {
  width: 46rem;
  font-weight: 400;
  font-size: 1.8rem;
  color: #333333;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.news-item .time {
  font-weight: 400;
  font-size: 1.6rem;
  color: #666666;
}
.row-2{
   width: 140rem;
  /* height: 19rem; */
  overflow: hidden;
  margin: 7rem auto 0;
}
.links{
  width: 100%;
   transform: translateY(10rem);
  opacity: 0;
  transition: 1s ease-in-out
}
.links-list{
  padding-top: 3rem;
  display: grid;
  grid-template-columns: repeat(5,26.2rem);
  gap:2rem;
}
.links-item{
  width: 26.2rem;
  height: 9.2rem;
}
.links-item img{
  width: 100%;
  height: 100%;
  display: block;
}
.fadeInUp {
  transform: translateY(0px) !important;
  opacity: 1 !important;
}