.page-home {
  width: 100vw;
  height: 100vh;
  overflow: hidden;
  background-color: #2d2620;
}
.header {
  position: fixed;
  left: 0;
  top: 0;
  right: 0;
  padding: 40px 0;
  z-index: 10;
}
@media screen and (max-width: 768px) {
  .header {
    padding: 40px 0;
  }
  .header .logo {
    text-align: center;
  }
  .header .logo img {
    height: 50px;
  }
}
.footer {
  position: fixed;
  left: 0;
  bottom: 0;
  right: 0;
  text-align: center;
  padding: 40px 0;
  z-index: 10;
}
.footer .qrcode {
  margin-bottom: 20px;
}
.footer .qrcode img {
  width: 140px;
  height: 140px;
}
@media screen and (max-width: 768px) {
  .footer .qrcode img {
    width: 100px;
    height: 100px;
  }
}
.footer .qrcode p {
  line-height: 30px;
  color: #fff;
}
.footer .copyright {
  line-height: 25px;
  color: #fff;
  opacity: 0.5;
}
.footer .copyright a {
  color: #fff;
}
.adv {
  width: 100vw;
  overflow: hidden;
  position: relative;
  z-index: 0;
}
.adv:hover .swiper-button-prev,
.adv:hover .swiper-button-next {
  opacity: 1;
}
@media screen and (max-width: 768px) {
  .adv:hover .swiper-button-prev,
  .adv:hover .swiper-button-next {
    opacity: 0;
  }
}
.adv .img {
  display: block;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .adv .img {
    display: none;
  }
}
.adv .img2 {
  display: none;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .adv .img2 {
    display: block;
  }
}
.adv .swiper-button-prev,
.adv .swiper-button-next {
  background: rgba(0, 0, 0, 0.3);
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transition: opacity 0.3s ease;
}
.adv .swiper-button-prev img,
.adv .swiper-button-next img {
  display: block;
  width: 40px;
  height: 40px;
  opacity: 0.6;
}
.adv .swiper-button-next img {
  transform: rotate(180deg);
}
