.faq-module {
  background-color: var(--module-bg2);
}
.faq-module .fold-panel .fold-item {
  margin-bottom: 18px;
  padding: 20px 38px 1px;
  background-color: var(--module-bg1);
}
.faq-module .fold-panel .fold-item .fold-tit {
  padding-bottom: 20px;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.faq-module .fold-panel .fold-item .fold-tit h6 {
  line-height: 1;
  color: var(--module-con-text-color1);
  width: calc(100% - 55px);
}
.faq-module .fold-panel .fold-item .fold-tit .icons-box {
  border-radius: 50%;
  border: 1px solid var(--module-con-text-color2);
  width: 40px;
  height: 40px;
  cursor: pointer;
  color: var(--module-con-text-color2);
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.faq-module .fold-panel .fold-item .fold-tit .icons-box::before {
  transform: rotate(90deg);
}
.faq-module .fold-panel .fold-item .fold-con {
  margin-bottom: 0;
  height: 0;
  overflow: hidden;
  transition: height 0.35s ease-in-out, margin-bottom 0.35s ease-in-out;
}
.faq-module .fold-panel .fold-item .fold-con .fold-hei {
  padding: 18px 15px;
  background-color: var(--module-bg2);
}
.faq-module .fold-panel .fold-item .fold-con .fold-hei .rich-box {
  padding: 0;
}
.faq-module .fold-panel .fold-item.open .fold-tit .icons-box::before {
  transform: rotate(-90deg);
}
.faq-module .fold-panel .fold-item.open .fold-con {
  margin-bottom: 20px;
}
