.faqList .toggleOpen::after {
  transition: all 0.5s ease-in-out;
}

.faqList {
  width: 100%;
}
.faqList .faqItem {
  margin-bottom: 15px;
  padding: 5px;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}
.faqList .title {
  position: relative;
  padding: 10px 5px;
  font-weight: 400;
  font-size: 15px;
  color: #474747;
  cursor: pointer;
  display: flex;
  align-items: flex-start;
  line-height: 30px;
}
@media (max-width: 640px) {
  .faqList .title {
    padding-right: 40px;
  }
}
.faqList .title .num {
  display: block;
  flex-shrink: 0;
  min-width: 30px;
  line-height: 30px;
  text-align: center;
  padding: 0 5px;
  background-color: #D1A73C;
  color: #fff;
  border-radius: 3px;
  margin-right: 10px;
}
.faqList .accordionTitle {
  position: relative;
}
.faqList .accordionTitle.open .toggleOpen::after {
  transform: translate(-50%, -50%) scaleY(0);
}
.faqList .toggleOpen {
  position: absolute;
  right: 5px;
  top: 27px;
  display: block;
  margin-top: -13px;
  padding: 4px 8px;
  border-radius: 3px;
  font-size: 13px;
  color: #fff;
  background-color: #D1A73C;
  width: 24px;
  height: 24px;
  cursor: pointer;
}
.faqList .toggleOpen::before {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 12px;
  height: 1px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
.faqList .toggleOpen::after {
  content: "";
  position: absolute;
  content: "";
  position: absolute;
  left: 50%;
  top: 50%;
  width: 1px;
  height: 12px;
  background-color: #fff;
  transform: translate(-50%, -50%);
}
.faqList .definition {
  display: none;
  margin-top: 10px;
  padding: 15px;
  font-size: 14px;
  line-height: 1.8;
  background-color: #f5f5f5;
}