.banner {
  background: linear-gradient(180deg, #ffd6d6 0%, rgba(253, 244, 244, 0) 100%);
}
.banner_main {
  padding: 0.8rem 0 0.6rem 0;
  text-align: center;
}

h1 {
  font-weight: 700;
  font-size: 48px;
  color: #000;
  margin-bottom: 10px;
}

.banner p {
  max-width: 1080px;
  margin: 10px auto;
  font-size: clamp(14px, 0.2rem, 20px);
  font-weight: 500;
}

.features {
  display: flex;
  flex-wrap: wrap;
  flex-direction: row;
  justify-content: space-evenly;
  align-items: stretch;
  gap: 0.3rem;
}
.features_items {
  width: 31%;
  border-radius: 20px;
  border-width: 1px;
  padding: 0.32rem;

  background: rgba(255, 255, 255, 0.6);
  border: 1px solid #ffe9e2;
}
.features_items b {
  font-weight: 600;
  font-size: clamp(16px, 0.18rem, 18px);

  vertical-align: middle;
  display: flex;
  align-items: center;
  gap: 0.16rem;
}
.features_items p {
  margin-top: 0.2rem;
  font-weight: 500;
  font-size: 14px;
  color: #333;
}

h2 {
  margin: 0.8rem auto;
  font-weight: 700;
  font-size: 0.48rem;
  text-align: center;
}
.reviews_contents {
  display: flex;
  align-items: stretch;
  justify-content: space-between;
}

.reviews_items {
  width: 32%;
  border-radius: 0.3rem;
  padding: 0.3rem;
  border: 1px solid rgba(0, 0, 0, 0.1);
}

.reviews_items_title {
  display: flex;
  align-items: center;
  gap: 0.15rem;
}
.reviews_items_title b {
  display: block;
  margin-bottom: 5px;
  font-weight: 600;
  font-size: clamp(14px, 0.16rem, 16px);
}

.reviews_items_content {
  margin-top: 0.24rem;
  font-weight: 500;
  font-size: 14px;
}

.steps {
  margin-top: 0.8rem;
  padding: 0 0.6rem 0.6rem 0.6rem;
  border-radius: 0.32rem;
  background: #fff0f0;
  overflow: hidden;
}

.steps_block {
  margin-top: 0.24rem;
  border-radius: 0.2rem;
  padding: 0.24rem;
  background: rgba(255, 255, 255, 0.8);
  box-shadow: 0px 6px 12px 0px rgba(94, 32, 21, 0.03);
}

.steps_block h3 {
  font-weight: 600;
  font-size: clamp(16px, 0.24rem, 24px);
}
.steps_block img {
  vertical-align: middle;
}

.steps_block p {
  margin-top: 0.15rem;
  font-weight: 500;
  font-size: clamp(14px, 0.18rem, 18px);
  color: #555;
}

.steps_block_download {
  background: rgba(255, 255, 255, 0.5);
  margin-top: 0.48rem;
  display: flex;
  gap: 24px;
  align-items: center;
  justify-content: space-between;
}

.steps_block_download > div {
  width: 76%;
}

.steps_block_download button {
  background: #e50914;
  padding: 0.14rem 0.2rem;
  border-radius: 12px;
  color: #fff;
  font-size: clamp(14px, 0.18rem, 18px);
}
.steps_block_download p {
  margin-top: 0.1rem;
}
.steps_block_download h3 {
  font-size: clamp(18px, 0.26rem, 26px);
}

.faq_block {
  margin-top: 0.24rem;
  padding: 0.36rem 0.32rem;
  border-radius: 0.2rem;
  border: 1px solid rgba(224, 224, 224, 1);
  cursor: pointer;
  position: relative;
}
.faq_block:hover {
  border-color: #e50914;
}
.faq_block:hover::after {
  color: #e50914;
}
.faq_block::after {
  content: '\e901';
  font-family: 'iconfont';
  top: 0.36rem;
  right: 0.3rem;
  position: absolute;
}

.faq_block h3 {
  font-weight: 500;
  font-size: clamp(14px, 0.2rem, 20px);
}

.faq_block p {
  font-weight: 500;
  font-size: clamp(12px, 0.16rem, 16px);
  color: #333;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.faq_active::after {
  content: '\e900';
}
.faq_active p {
  margin-top: 0.2rem;
  height: auto;
}

.product_download {
  margin-top: 0.8rem;
  display: flex;
  align-items: center;
  gap: 64px;
  border-radius: 0.32rem;
  padding: 0.32rem;
  background: #fff0f0;
}

.product_download h3 {
  font-weight: 700;
  font-size: clamp(20px, 0.36rem, 36px);
}
.product_download p {
  font-weight: 500;
  font-size: clamp(14px, 0.18rem, 18px);
  margin: 0.24rem 0 0.48rem 0;
}

.btns button {
  background-color: #000;
  color: #fff;
  margin-right: 20px;
}

@media screen and (max-width: 1400px) {
  h1 {
    font-size: clamp(26px, 0.42rem, 48px);
  }
  h2 {
    font-size: clamp(22px, 0.4rem, 48px);
  }
}
@media screen and (max-width: 768px) {
  .features_items {
    width: 45%;
  }
  .features_items b {
    display: block;
  }
  .features_items img {
    display: block;
    margin-bottom: 10px;
  }

  .reviews_contents {
    display: block;
  }
  .reviews_items {
    width: 100%;
    margin-top: 0.2rem;
  }

  .steps {
    padding: 0 0.4rem 0.4rem 0.4rem;
  }
  .steps_block_download {
    display: block;
    text-align: center;
  }

  .steps_block_download > div {
    width: 100%;
    margin: 20px auto;
  }
  .faq_block {
    padding: 0.36rem 0.6rem 0.36rem 0.32rem;
  }
  .faq_block::after {
    font-size: 0.8em;
  }

  .product_download {
    display: block;
    text-align: center;
  }

  .btns button {
    width: 100%;
    display: block;
    margin: 10px auto;
  }

  .steps_block_download button {
    width: 100%;
  }
}
@media screen and (max-width: 576px) {
  .features_items {
    width: 100%;
    text-align: center;
  }
  .features_items img {
    margin: 0 auto 10px auto;
  }
}

@media screen and (max-width: 375px) {
  .features_items {
    width: 90%;
  }
}
