.carousel-stage {
  overflow: hidden;
  position: relative;
}

.carousel-inner {
  display: flex;
  width: 400%;
  transition: transform 1s ease;
}

.carousel-item {
  flex-basis: 100vw;
}

.carousel-item img {
  width: 100%;
  height: 100%;
  user-select: none;
  transition: all 2s ease-in-out;
}

.carousel-item img:hover {
  transform: scale(1.1);
}

.carousel-dots {
  position: absolute;
  bottom: 54px;
  display: flex;
  gap: 20px;
  left: 50%;
  transform: translate(-50%, 0);
  cursor: pointer;
}

.carousel-dot {
  width: 33px;
  height: 33px;
  background-image: url('/img/carousel-dot.png');
  opacity: 0.7;
  cursor: pointer;
  background-size: contain;
  background-position: center;
  background-repeat: no-repeat;
}

.carousel-dot.active {
  opacity: 1;
}

.news-stage {
  margin-top: 100px;
}

.news-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

.news-title {
  font-size: 44px;
  color: rgb(6, 51, 145);
  font-weight: bold;
  padding-bottom: 12px;
  display: inline-block;
  position: relative;
}

.news-title::after {
  content: '';
  display: block;
  background-image: url('/img/news-title-underline.png');
  height: 40px;
  width: 150%;
  position: absolute;
  background-repeat: no-repeat;
  background-size: contain;
  top: 100%;
  left: 50%;
  transform: translateX(-45%);
}

.news-content {
  margin-top: 45px;
  display: grid;
  grid-template-columns: 66fr 34fr;
  grid-template-rows: 1fr 1fr;
  grid-template-areas: "left topRight" "left bottomRight";
  column-gap: 35px;
}

.left-news {
  grid-area: left;
}

.left-news .news-text {
  background-image: url('/img/new1-bg.jpg');
  padding: 35px 40px;
  color: white;
}

.news-text {
  position: relative;
  z-index: 1;
}

.left-news .news-date {
  font-size: 28px;
  font-weight: bold;
}

.news-date {
  font-size: 20px;
}

.news-date span {
  font-size: 1.2em;
}

.news-introduce {
  font-size: 22px;
  margin-top: 13px;
}

.top-right-news .news-date, .bottom-right-news .news-date {
  color: rgb(5, 51, 145);
  margin-top: 24px;
}

.top-right-news .news-introduce, .bottom-right-news .news-introduce {
  margin-top: 8px;
}

.top-right-news {
  grid-area: topRight;
}

.bottom-right-news {
  grid-area: bottomRight;
}

.news-content > div {
  overflow: hidden;
}

.news-content img {
  transition: all .5s ease;
}

.news-content > div:hover img {
  transform: scale(1.1);
}

hr.wrap {
  margin-top: 100px;
  margin-bottom: 100px;
}

.centers-stage {
  margin-top: 100px;
  margin-bottom: 100px;
}