html {
  scroll-behavior: smooth;
}
section {
  scroll-margin-top: 80px;
  /* 这里 80px 替换成你的导航高度 */
}
.header__logo .logo-images {
  transform: translateX(-17px);
  width: 100px;
}
.product .article__col .img {
  display: flex;
  gap: 15px;
  flex-wrap: wrap;
  margin-top: 15px;
}
.product .article__col .img img {
  width: 160px;
  height: 45px;
}
.product .article__col .iconImages {
  border-radius: 175px;
}
.title-p a {
  text-decoration: none;
}
.txt-title h2 {
  text-align: center;
  font-size: 40px;
  padding: 50px 0;
}
.txt-title p {
  padding: 0 8%;
}
.accordionBox {
  margin-top: 20px;
  /* 设置点击和鼠标移到选项上面时（悬停）的样式 */
  /* 为手风琴面板设计样式。 默认隐藏 */
  /* 设置 +、- 标志 */
}
.accordionBox .cardBox {
  width: 100%;
  margin-bottom: 40px;
}
.accordionBox .accordion {
  background-color: #ffffff;
  color: #595959 !important;
  cursor: pointer;
  padding: 10px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  border-radius: 0 !important;
  background-image: none !important;
  font-weight: bold;
}
.accordionBox .cardBox .active,
.accordionBox .accordion:hover {
  background-color: #f8f8f8;
}
.accordionBox .panel {
  padding: 0 18px;
  background-color: white;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-bottom: 2px solid #595959;
}
.accordionBox .panel p {
  color: #595959;
}
.accordionBox .accordion:after {
  content: '\002B';
  color: #595959;
  font-weight: bold;
  float: right;
  margin-left: 5px;
  font-size: 25px;
}
.accordionBox .cardBox .active:after {
  content: "\2212";
}
/* 手机屏幕（小于768px） */
@media screen and (max-width: 767px) {
  .header__logo .logo-images {
    transform: translateX(0px);
    width: 130px;
  }
  .product .article__col .iconImages {
    border-radius: 80px !important;
    width: auto;
    height: 100%;
    display: block;
    padding: 20px;
  }
  .header__bg {
    height: 88px;
    width: 100%;
    position: fixed;
    left: 0;
    background-color: #fff;
    box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.1);
  }
  .hero__title.aos-init.aos-animate {
    font-size: 25rem;
  }
  .txt-title {
    margin-top: 80px;
  }
}
/*# sourceMappingURL=style.css.map */