.section5 {
  width: 100%;
  height: 100%;
  position: relative;
  overflow: hidden;
}

.section5 .section5_title {
  width: 3.89rem;
  height: 1.45rem;
  background: url(../image/section5/section5-title.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 50%;
  top: 1.18rem;
  margin-left: -1.9rem;
  z-index: 5;
}
.section5 .mySwiper5,
.section5 .swiper-wrapper,
.section5 .swiper-slide {
  width: 19.2rem;
  height: 10.8rem;
}

.section5 .swiper-slide {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
  overflow: hidden;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #000;
}

.section5 .btn-line {
  width: 19.2rem;
  height: 0.02rem;
  background: url(../image/section5/btn-line.png) no-repeat;
  background-size: 100%;
  position: absolute;
  top: 9.2rem;
  z-index: 5;
}

.section5 .swiper-slide .world-text1 {
  width: 9rem;
  height: 5.15rem;
  background: url(../image/section5/world-text1.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 50%;
  top: 4rem;
  margin-left: -4.45rem;
  z-index: 5;
}

.section5 .swiper-slide .world-text2 {
  width: 9rem;
  height: 5.15rem;
  background: url(../image/section5/world-text2.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 50%;
  top: 4rem;
  margin-left: -4.45rem;
  z-index: 5;
}

.section5 .swiper-slide .world-text3 {
  width: 9rem;
  height: 5.15rem;
  background: url(../image/section5/world-text3.png) no-repeat;
  background-size: 100%;
  position: absolute;
  left: 50%;
  top: 4rem;
  margin-left: -4.45rem;
  z-index: 5;
}

.section5 .swiper-slide .world-text1,
.section5 .swiper-slide .world-text2,
.section5 .swiper-slide .world-text3 {
  opacity: 0;
  transform: translateY(0.6rem);
  transition: none;
}

.section5 .swiper-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  display: block;
}

.section5 .swiper-pagination {
  position: relative;
  width: 100%;
  top: -0.1rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.section5 .swiper-pagination-bullet,
.section5 .swiper-pagination-bullet-active {
position: absolute;
border-radius: 0%;
opacity: 1;
}

.section5 .swiper-pagination-bullet:nth-of-type(1) {
  width: 0.62rem;
  height: 0.65rem;
  background: url(../image/section5/btn1.png) no-repeat;
  background-size: 100%;
  left: 6.3rem;
  bottom: 0.95rem;
}
.section5 .swiper-pagination-bullet:nth-of-type(2) {
  width: 0.62rem;
  height: 0.52rem;
  background: url(../image/section5/btn2.png) no-repeat;
  background-size: 100%;
  left: 9.24rem;
  bottom: 1.08rem;
}
.section5 .swiper-pagination-bullet:nth-of-type(3) {
  width: 0.30rem;
  height: 0.52rem;
  background: url(../image/section5/btn3.png) no-repeat;
  background-size: 100%;
  left: 12.3rem;
  bottom: 1.08rem;
}


.section5 .swiper-pagination-bullet-active:nth-of-type(1) {
  width: 0.73rem;
  height: 0.66rem;
  background: url(../image/section5/btn1-active.png) no-repeat;
  background-size: 100%;
  left: 6.25rem;
  bottom: 1.03rem;

}
.section5 .swiper-pagination-bullet-active:nth-of-type(2) {
  width: 0.72rem;
  height: 0.66rem;
  background: url(../image/section5/btn2-active.png) no-repeat;
  background-size: 100%;
  left: 9.19rem;
  bottom: 1.03rem;

}
.section5 .swiper-pagination-bullet-active:nth-of-type(3) {
  width: 0.40rem;
  height: 0.66rem;
  background: url(../image/section5/btn3-active.png) no-repeat;
  background-size: 100%;
  left: 12.25rem;
  bottom: 1.03rem;
}

@keyframes scaleIn {
  0% {
    transform: scale(1.2);
    opacity: 1;
  }
  100% {
    transform: scale(1);
    opacity: 1;
  }
}

.section5 .swiper-slide img.scale-in-animate {
  animation: scaleIn 3s cubic-bezier(0.4,0,0.2,1);
  animation-fill-mode: backwards;
}

@keyframes textFadeUpIn {
  0% {
    opacity: 0;
    transform: translateY(0.6rem);
  }
  100% {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes textFadeUpOut {
  0% {
    opacity: 1;
    transform: translateY(0);
  }
  100% {
    opacity: 0;
    transform: translateY(-0.6rem);
  }
}

.section5 .swiper-slide .world-text1.text-fade-in,
.section5 .swiper-slide .world-text2.text-fade-in,
.section5 .swiper-slide .world-text3.text-fade-in {
  animation: textFadeUpIn 1s cubic-bezier(0.4,0,0.2,1) forwards;
  opacity: 1;
}
.section5 .swiper-slide .world-text1.text-fade-out,
.section5 .swiper-slide .world-text2.text-fade-out,
.section5 .swiper-slide .world-text3.text-fade-out {
  animation: textFadeUpOut 1s cubic-bezier(0.4,0,0.2,1);
  opacity: 0;
}