@import "product-common.css";
img {
  max-width: 100%;
}
.banner {
  color: #fff;
  background: url("/static/img/faqs-guide/guide-banner-bg.png") no-repeat center center;
  height: 198px;
}
.banner .flex-box {
  display: flex;
  align-items: center;
  height: 100%;
}
.banner .flex-box .banner-words {
  flex: 0 0 66%;
}
.banner .flex-box .banner-pic {
  flex: 0 0 34%;
}
.banner h1 {
  font-size: 36px;
  font-weight: bold;
}
.banner p {
  font-size: 18px;
  margin: 20px 0 0 0;
}
.faq-content {
  padding: 40px 0;
}
.faq-content .item {
  padding: 5px 0;
}
.faq-content .question {
  color: #555a6b;
  font-size: 18px;
  font-weight: 800;
  line-height: 40px;
  position: relative;
  padding-left: 40px;
  padding-right: 75px;
  display: inline-block;
  cursor: pointer;
}
.faq-content .question::before {
  content: '';
  width: 22px;
  height: 22px;
  position: absolute;
  background: url("/static/img/faqs-guide/next.svg") no-repeat center center;
  background-size: 50%;
  border-radius: 50%;
  box-shadow: 0 0 5px #e2e2e2;
  top: 50%;
  margin-top: -11px;
  left: 8px;
}
.faq-content .question.choose {
  background-color: rgba(45, 140, 250, 0.5);
  border-radius: 8px;
  color: #35486b;
}
.faq-content .question.choose::before {
  background: url("/static/img/faqs-guide/show.svg") no-repeat center center;
  background-color: #fff;
  background-size: 80%;
  box-shadow: 0 0 5px #80a9da;
}
.faq-content .answer {
  color: #7a7a7a;
  font-size: 16px;
  margin-top: 15px;
  padding-left: 35px;
  display: none;
}
#my-nav {
  width: 100%;
  height: 70px;
  line-height: 65px;
  position: relative;
  color: #595757;
  padding-top: 2px;
  background: #fff;
  border-top: 1px solid #efefef;
  border-bottom: 1px solid #efefef;
  z-index: 10;
  margin-bottom: 50px;
  border-top-right-radius: unset;
  border-top-left-radius: unset;
  display: none;
}
#my-nav.my-nav-fixed {
  background: #fff !important;
  display: block;
}
#my-nav ul {
  text-transform: none;
  margin: 0;
}
#my-nav ul > li {
  width: auto;
}
#my-nav ul > li > a {
  color: #595757;
  height: 70px;
  line-height: 68px;
}
#my-nav ul > li.active,
#my-nav ul > li:hover {
  background-color: transparent;
  color: #595757;
  font-size: 16px;
  margin-top: -2px;
  height: 68px;
  line-height: 68px;
  border-width: 0px;
  border-color: transparent;
  border-bottom: 3px solid #2d8cff;
}
#my-nav .buttons-area {
  margin-top: 0;
  text-align: right;
}
@media screen and (max-width: 768px) {
  #my-nav .buttons-area {
    display: none;
  }
}
.buttons-area {
  margin-top: 30px;
}
.buttons-area .button {
  display: none;
  vertical-align: middle;
  width: 155px;
  height: 34px;
  border: 1px solid;
  font-size: 16px;
  text-align: center;
  line-height: 32px;
  border-radius: 4px;
  transition: 0.4s;
}
.buttons-area .button.download {
  width: 155px;
  background-color: #fff;
  color: #000;
  margin-left: 30px;
  border: 2px solid #dcdddd;
}
.buttons-area .button.download:hover {
  border-color: #000;
  color: #000;
}
.buttons-area .button.buy {
  background-color: #2d8cff;
  border-color: #2d8cff;
  color: #fff;
}
.buttons-area .button.buy:hover {
  background-color: #067DF4;
  color: #fff;
}
.buttons-area .button i {
  position: relative;
  margin-left: 5px;
  font-size: 14px;
}
@media (max-width: 1079px) {
  #my-nav.my-nav-fixed {
    display: none;
  }
}
@media (max-width: 1024px) and (min-width: 501px) {
  .banner {
    background-size: 175% 105%;
    height: auto;
  }
  .banner .flex-box .banner-words {
    margin: 20px 0;
    flex: 0 0 60%;
  }
  .banner .flex-box .banner-words h1 {
    font-size: 32px;
    line-height: 36px;
  }
  .banner .flex-box .banner-words p {
    font-size: 16px;
  }
  .faq-content .question {
    padding-right: 10px;
    font-size: 18px;
  }
}
@media (max-width: 768px) {
  #my-nav ul > li {
    border-top: none;
    margin-top: 10px;
    background-color: #fff;
  }
}
@media (max-width: 500px) {
  .banner {
    background: url("/static/img/faqs-guide/banner-bg.png") no-repeat left 0;
  }
  .banner .flex-box {
    align-items: flex-start;
  }
  .banner .flex-box .banner-words {
    flex: 0 0 95%;
    margin: 0 auto;
  }
  .banner .flex-box .banner-words h1 {
    font-size: 25px;
    margin-top: 40px;
  }
  .banner .flex-box .banner-words p {
    font-size: 14px;
    margin: 20px 0 0 0;
  }
  .banner .flex-box .banner-pic {
    display: none;
  }
  .faq-content {
    padding: 0;
    margin-top: 20px;
  }
  .faq-content .item {
    padding: 0;
    margin-bottom: 5px;
  }
  .faq-content .question {
    width: 100%;
    font-size: 12px;
    padding-right: 0;
    padding-left: 34px;
    line-height: 28px;
  }
  .faq-content .question::before {
    width: 16px;
    height: 16px;
    margin-top: -8px;
  }
  .faq-content .answer {
    font-size: 12px;
    line-height: 22px;
    color: #666;
    width: 82%;
    margin: 10px auto;
    padding-left: 0;
  }
}
@media (max-width: 320px) {
  .banner {
    background: url("/static/img/faqs-guide/s-guider-banner.png") no-repeat center center;
    height: 450px;
  }
}
