.faqs {
  margin-top: 120px;
}
.faqs .l-inner {
  width: 40%;
}
@media screen and (max-width: 1024px) {
  .faqs .l-inner {
    width: 88%;
    max-width: 800px;
  }
}
.faqs .faq-title {
  text-align: center;
  font-weight: 500;
  margin-bottom: 40px;
  font-size: 35px;
}
.faqs .question {
  width: 100%;
  max-width: 800px;
  margin: 0 auto;
}
@media screen and (max-width: 800px) {
  .faqs .question {
    width: 100%;
  }
}
.faqs .question .item {
  width: 100%;
  font-size: 14px;
  overflow: hidden;
  position: relative;
  margin-bottom: 30px;
  transition-duration: 0.3s;
  border-bottom: 1px solid #999;
  cursor: pointer;
  padding-bottom: 15px;
}
.faqs .question .item .q-title {
  position: relative;
  color: #000;
  font-size: 18px;
  user-select: none;
  display: flex;
}
.faqs .question .item .q-title .s1 {
  margin-right: 4px;
}
.faqs .question .item .q-title .s2 {
  padding-right: 34px;
}
.faqs .question .item .q-title i {
  margin-top: 0.1em;
  position: absolute;
  right: 0;
  top: 0;
  transition: all 0.3s ease;
}
.faqs .question .item.active .q-title i {
  transform: rotate(90deg);
}
.faqs .question .item .q-desc {
  font-size: 15px;
  padding-left: 24px;
  height: 0;
  overflow: hidden;
  transition: all 0.3s ease;
}
.faqs .question .item .q-desc span {
  padding-top: 10px;
  display: block;
}
.faqs .question .item .q-icon {
  position: absolute;
  right: 12px;
  top: 3px;
  color: #000;
}
/*# sourceMappingURL=faq.css.map */