@charset "UTF-8";
html {
  scroll-behavior: smooth;
}

.main-kv {
  width: 100%;
  height: auto;
  overflow: hidden;
}
.main-kv img {
  width: 100%;
  height: auto;
}

.product-info {
  width: 100%;
  max-width: 970px;
  padding: 88px 20px 64px 90px;
  margin: 0 auto;
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
}
.product-info .heading-group .sub-title {
  font-size: 16px;
  line-height: 1em;
  font-weight: 500;
}
.product-info .heading-group .sub-title.en {
  line-height: 1.2em;
}
.product-info .heading-group h1 {
  margin-top: 22px;
}
.product-info .heading-group h1.en {
  line-height: 1.2em;
}
.product-info .product-intro {
  width: 430px;
  font-size: 15px;
  line-height: 1.6em;
}

@media screen and (max-width: 640px) {
  .product-info {
    width: calc(100% - 48px);
    padding: 48px 24px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .product-info .heading-group .sub-title {
    text-align: center;
  }
  .product-info .heading-group .sub-title.en {
    line-height: 1.2em;
  }
  .product-info .heading-group h1 {
    margin-top: 22px;
    text-align: center;
  }
  .product-info .heading-group h1.en {
    line-height: 1.2em;
  }
  .product-info .product-intro {
    width: 100%;
    margin: 24px 0;
    text-align: center;
  }
}
/******** 产品轮播图  ********/
.product-banner {
  width: 100%;
  height: auto;
  overflow: hidden;
  padding-bottom: 40px;
}
.product-banner .banner-wrapper {
  width: 1080px;
  margin: 0 auto;
  position: relative;
}
.product-banner .banner-wrapper .banner-container {
  width: 100%;
  overflow: hidden;
}
.product-banner .banner-wrapper .banner-container ul {
  display: flex;
  transition: all 0.5s ease;
}
.product-banner .banner-wrapper .banner-container li {
  width: 1080px;
  flex-shrink: 0;
}
.product-banner .banner-wrapper .banner-container li img {
  width: 100%;
  height: auto;
}
.product-banner .banner-wrapper .btn-wrapper {
  position: absolute;
  width: 26px;
  height: 26px;
  top: 45%;
  z-index: 10;
  cursor: pointer;
}
.product-banner .banner-wrapper .btn-wrapper.preview-wrapper {
  left: 24px;
}
.product-banner .banner-wrapper .btn-wrapper.next-wrapper {
  right: 24px;
}
.product-banner .banner-wrapper .btn {
  width: 100%;
  height: 100%;
  transition: transform 0.2s ease;
  background-repeat: no-repeat;
  background-size: contain;
}
.product-banner .banner-wrapper .preview {
  background-image: url(../img/icon-arrow-left.svg);
}
.product-banner .banner-wrapper .next {
  background-image: url(../img/icon-arrow-right.svg);
}
.product-banner .banner-wrapper .preview-wrapper:hover .preview:not(.disable) {
  transform: translateX(-8px);
}
.product-banner .banner-wrapper .next-wrapper:not(.disable):hover .next:not(.disable) {
  transform: translateX(8px);
}

@media screen and (max-width: 640px) {
  .product-banner .banner-wrapper {
    width: 100%;
    margin: 0 auto;
    position: relative;
  }
  .product-banner .banner-wrapper .banner-container {
    width: 100%;
    overflow: hidden;
  }
  .product-banner .banner-wrapper .banner-container li {
    width: 100%;
  }
  .product-banner .banner-wrapper .preview {
    left: 24px;
    top: 45%;
    z-index: 10;
  }
  .product-banner .banner-wrapper .next {
    right: 24px;
    top: 45%;
    z-index: 10;
  }
}
/******** 产品特点  ********/
.product-feature {
  width: 100%;
  height: auto;
  overflow: hidden;
  background: #F1F1F2;
  padding: 140px 0;
}
.product-feature .container-wrapper {
  width: 1080px;
  margin: 0 auto;
  display: flex;
}
.product-feature .container-wrapper .feature-pic {
  width: 520px;
  height: 640px;
}
.product-feature .container-wrapper .feature-pic ul li {
  display: none;
}
.product-feature .container-wrapper .feature-info {
  width: 100%;
  background-color: #ffffff;
  padding: 60px 0;
}
.product-feature .container-wrapper .feature-info .feature-list {
  width: 380px;
  margin: 0 70px 0 110px;
}
.product-feature .container-wrapper .feature-info .feature-list li {
  width: 100%;
  height: auto;
  box-sizing: border-box;
  border-bottom: 1px solid var(--black-2);
}
.product-feature .container-wrapper .feature-info .feature-list li .title {
  font-size: 16px;
  padding: 40px 24px 40px 0;
  font-weight: 600;
  line-height: 1em;
  background: url(../img/icon-show.svg) right center no-repeat;
  cursor: pointer;
}
.product-feature .container-wrapper .feature-info .feature-list li .title.show {
  background: url(../img/icon-hide.svg) right center no-repeat;
}
.product-feature .container-wrapper .feature-info .feature-list li .info {
  font-size: 14px;
  font-weight: 300;
  padding: 6px 0 32px;
  line-height: 1.6em;
}
.product-feature .container-wrapper .feature-info .feature-list li .info .tip {
  font-size: 11px;
}
.product-feature .container-wrapper .feature-info.en {
  padding-top: 32px;
}
.product-feature .container-wrapper .feature-info.en .feature-list li .title {
  line-height: 1.5em;
}
.product-feature .container-wrapper .feature-info.en .feature-list li .info {
  margin-top: 24px;
}

@media screen and (max-width: 640px) {
  .product-feature {
    padding: 0;
  }
  .product-feature .container-wrapper {
    width: 100%;
    flex-direction: column;
  }
  .product-feature .container-wrapper .feature-pic {
    width: 60%;
    height: auto;
    margin: 24px auto;
  }
  .product-feature .container-wrapper .feature-pic img {
    width: 100%;
  }
  .product-feature .container-wrapper .feature-info {
    padding-top: 32px;
  }
  .product-feature .container-wrapper .feature-info .feature-list {
    width: 100%;
    margin: 0 auto;
  }
  .product-feature .container-wrapper .feature-info .feature-list li {
    width: calc(100% - 48px);
    padding: 38px 24px;
  }
  .product-feature .container-wrapper .feature-info .feature-list li .info {
    margin-top: 32px;
  }
  .product-feature .container-wrapper .feature-info.en {
    padding-top: 32px;
  }
  .product-feature .container-wrapper .feature-info.en .feature-list li .title {
    line-height: 1.5em;
  }
  .product-feature .container-wrapper .feature-info.en .feature-list li .info {
    margin-top: 24px;
  }
}
/******** 产品参数 ********/
.specificate {
  width: 100%;
  padding: 116px 0;
}
.specificate .container-wrapper {
  width: 1080px;
  margin: 0 auto;
}
.specificate .container-wrapper .mod-title h1 {
  text-align: center;
}
.specificate .container-wrapper .spec-table {
  width: 1080px;
  margin: 58px auto 72px;
}
.specificate .container-wrapper .spec-table table {
  width: 100%;
  border-collapse: collapse;
  text-align: center;
  font-size: 14px;
}
.specificate .container-wrapper .spec-table table th,
.specificate .container-wrapper .spec-table table td {
  padding: 14px 0;
  border-bottom: 0.5px solid #e0e0e0;
}
.specificate .container-wrapper .spec-table table th {
  border-bottom: 2px solid #00D460;
}
.specificate .container-wrapper .spec-table table tr > th:first-child,
.specificate .container-wrapper .spec-table table tr > td:first-child {
  text-align: left;
  padding-left: 10px;
}
.specificate .container-wrapper .spec-tip {
  padding-left: 80px;
  color: #ACACAD;
}

@media screen and (max-width: 640px) {
  .specificate {
    padding: 96px 0 32px;
  }
  .specificate .container-wrapper {
    width: 100%;
    margin: 0 auto;
  }
  .specificate .container-wrapper .spec-table {
    width: 100%;
    margin: 58px auto 32px;
    overflow: auto;
  }
  .specificate .container-wrapper .spec-table table {
    width: 900px;
  }
  .specificate .container-wrapper .spec-table table tr > th:first-child,
  .specificate .container-wrapper .spec-table table tr > td:first-child {
    text-align: left;
    padding-left: 24px;
    position: sticky;
    left: 0;
    background-color: #fff;
  }
  .specificate .container-wrapper .spec-tip {
    width: calc(100% - 48px);
    padding: 0 24px;
  }
}/*# sourceMappingURL=page-product.css.map */