.bodyoverflow {
  overflow: hidden;
}
.banner-section {
  width: 100%;
  overflow: hidden;
  /* opacity: 0; */
  /* transform: translateX(-50px);
    animation: banner-section-show 1.2s forwards; */
}
@media screen and (max-width: 1024px) {
  .banner-section {
    margin: 0 0 10px;
    padding: 10px 0 0;
  }
}
@media screen and (min-width: 1025px) {
  .banner-section {
    grid-column: 1 / -1;
    margin: 20px auto 0;
  }
}
.banner-section .homebanner {
  display: flex;
}
.banner-section .homebanner .banner {
  width: 600px;
  height: 272px;
  flex-shrink: 0;
  border-radius: 8px;
  background-color: #f7f7f7;
  overflow: hidden;
}
@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);
  }
}
.index-feature {
  margin-bottom: 20px;
}
.index-feature .index-feature-box {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  padding: 0 10px;
}
.index-feature .index-feature-box .index-feature-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.index-feature .index-feature-box .index-feature-item .index-icon {
  width: 32px;
  height: 32px;
  background: #000;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.index-feature .index-feature-box .index-feature-item .index-icon .i-index-feature {
  width: 50%;
  height: 50%;
  color: #ffcb00;
}
.index-feature .index-feature-box .index-feature-item .index-feature-name {
  font-size: 14px;
  font-weight: 700;
  color: #000;
}
.index-feature .index-feature-box .index-feature-item .index-feature-item-content {
  font-size: 11px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.5);
  text-wrap: balance;
  text-align: center;
}
