:root {
  --icon-bg: #f8af1d;
  --hover-color: #f8af1d;
  --text-highlight-color: #FA2A73;
}
.faq-list {
  margin: 0 auto;
  width: 92%;
  max-width: 984px;
  margin: 64px auto 0;
  text-align: left;
}
.faq-list .list {
  padding: 32px 25px;
  transition: 0.3s;
  border-bottom: 1px solid #f0eeee;
}
.faq-list .list .title {
  padding-left: 39px;
  font-size: 20px;
  line-height: 28px;
  cursor: pointer;
  position: relative;
  font-weight: bold;
  transition: 0.2s;
  text-align: left;
}
.faq-list .list .title:hover {
  color: var(--hover-color);
}
.faq-list .list .title::before {
  width: 22px;
  height: 22px;
  background: var(--icon-bg);
  border-radius: 50%;
  position: absolute;
  left: 0;
  top: 3px;
  content: "Q";
  text-align: center;
  color: #fff;
  font-size: 11px;
  line-height: 22px;
  font-weight: bold;
}
.faq-list .list .desc {
  display: none;
  padding-top: 8px;
  padding-left: 39px;
}
.faq-list .list .desc p {
  margin-top: 8px;
  font-size: 16px;
  color: rgba(53, 48, 48, 0.7);
  line-height: 24px;
  max-width: 856px;
}
.faq-list .list .desc p a {
  color: var(--text-highlight-color);
  cursor: pointer;
}
.faq-list .list .desc p a:hover {
  text-decoration: underline;
}
.faq-list .list.active {
  background-color: #fff;
  border-radius: 16px;
}
