body {
  padding: 0;
  margin: 0;
  position: relative;
}
.bg {
  width: 100vw;
  height: auto;
}
.service {
  position: fixed;
  top: 78vw;
  right: 2vw;
  width: 16.5vw;
  height: auto;
  z-index: 100;
}
.download {
  position: absolute;
  top: 155vw;
  left: 21vw;
  margin-top: 3vw;
  width: 58vw;
}
.line-con {
  position: absolute;
  top: 216.5vw;
  left: 5vw;
  width: 90vw;
}
.line {
  display: flex;
  justify-content:space-evenly;
  align-items: center;
  margin-top: 4vw;
}
.line-icon {
  width: 10vw;
  height: auto;
}
.p {
  width: 47.6vw;
  height: 8vw;
  background-color: black;
  border-radius: 29.3vw;
  font-size: 2.8vw;
  line-height: 8vw;
  color: white;
  text-align: center;
  overflow: hidden;
  border: 1px solid #5E5E5E;
}
.p > .left {
  display: inline-block;
  width: 11.5vw;
  color: #7B1A12;
  background: linear-gradient(86.89deg, #E8DBA6 2.1%, #CDB378 97.9%);
}
.p > .right {
  display: inline-block;
  width: 35.4vw;  
}
.line-button {
  width: 24.6vw;
}
.swiper-container {
  position: absolute;
  top: 285vw;
  left: 0;
  width: 100vw;
  height: 60vw;
  color: white;
}
.swiper-pagination .swiper-pagination-bullet {
  background-color: #FDF6C9;
}
.swiper-pagination .swiper-pagination-bullet-active {
  background-color: #FDF6C9;
}
.swiper-slide {
  width: 100%;
  height: 100%;
}
.swiper-slide img {
  width: 100%;
  height: 100%;
}
.footer {
  position: fixed;
  bottom: 0;
  left: 0;
  width: 100vw;
  height: 18vw;
  background-image: url(./footer.png);
  background-size: 100% 100%;
  display: flex;
  justify-content: flex-end;
  align-items: center;
}
.footer-download {
  margin-right: 3vw;
  width: 29.5vw;
}
@keyframes donghua {
  0% {
      transform: scale(1);
  }
  50% {
    transform: scale(1.1);
  }
  100% {
      transform: scale(1);
  }
}
.animate-ping {
  animation: donghua 2.4s infinite;
}