.bodyoverflow {
  overflow: hidden;
}
.banner-section {
  width: 100%;
  margin-bottom: 60px;
}
@media screen and (max-width: 1024px) {
  .banner-section {
    margin-bottom: 10px;
  }
}
.banner-section .banner-viewport {
  overflow: hidden;
  width: 100%;
  opacity: 0;
}
.banner-section.is-visible .banner-viewport {
  opacity: 1;
  transition: opacity 1s ease;
}
.banner-section .homebanner {
  display: flex;
  gap: 15px;
  will-change: transform;
  transition: transform 1s ease;
}
.banner-section .homebanner .banner {
  position: relative;
  width: 600px;
  height: 272px;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: #f7f7f7;
  overflow: hidden;
}
.banner-section .homebanner .banner > a,
.banner-section .homebanner .banner > img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}
@media screen and (max-width: 768px) {
  .banner-section .homebanner .banner {
    width: 300px;
    height: 136px;
  }
}
.banner-section .homebanner .banner .contact {
  position: absolute;
  z-index: 2;
  bottom: 10px;
  left: 10px;
}
@media screen and (max-width: 768px) {
  .banner-section .homebanner .banner .contact {
    bottom: 2px;
    left: 6px;
  }
}
.banner-section .homebanner .banner .contact .qrcode-box {
  width: 90px;
  height: 90px;
  padding: 4px;
  background-color: #fff;
  border-radius: 10px;
}
.banner-section .homebanner .banner .contact .qrcode-box img {
  width: 100%;
}
@media screen and (max-width: 768px) {
  .banner-section .homebanner .banner .contact .qrcode-box {
    width: 50px;
    height: 50px;
    border-radius: 4px;
    padding: 2px;
  }
}
.banner-section .homebanner .banner .contact .line {
  color: #fff;
  font-size: 28px;
  font-weight: 900;
  font-style: italic;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
@media screen and (max-width: 768px) {
  .banner-section .homebanner .banner .contact .line {
    font-size: 16px;
  }
}
@keyframes banner-section-show {
  from {
    opacity: 0;
    transform: translateX(-50px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}
