.bokai_faq_main {
  width: 100%;
  background-color: #ffffff;
  padding: var(--section-padding) 0;
}

.bokai_faq_header {
  text-align: left;
  margin-bottom: 5rem;
}

.bokai_faq_title {
  font-family: var(--title-font-family);
  font-size: var(--font-size-h1);
  font-weight: 700;
  line-height: 1.125;
  color: var(--title-text-color);
  margin: 0 0 1.25rem 0;
}

.bokai_faq_subtitle {
  font-family: var(--font-family);
  font-size: var(--font-size-h4);
  font-weight: 400;
  line-height: 1.25;
  color: #9b9b9b;
  margin: 0;
}

.bokai_faq_list {
  display: flex;
  flex-direction: column;
  /* gap: 20px; */
}

.bokai_faq_item {
}

.bokai_faq_question {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  padding: 1.25rem 0;
  /* margin-bottom: 1.25rem; */
  border-bottom: 1px solid rgba(155, 155, 155, 0.7);
  /* border-top: 1px solid var(--text-color); */
  cursor: pointer;
  transition: background-color 0.3s ease;
}

.bokai_faq_item:nth-of-type(1) .bokai_faq_question {
  border-top: none;
}

/* .bokai_faq_question:hover {
  background-color: rgba(0, 0, 0, 0.02);
} */

.bokai_faq_q_label {
  font-family: var(--title-font-family);
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: 1.5;
  color: var(--title-text-color);
}

.bokai_faq_question_text {
  flex: 1;
  font-family: var(--title-font-family);
  font-size: var(--font-size-md);
  font-weight: 700;
  line-height: 1.5;
  color: var(--title-text-color);
}

.bokai_faq_icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 24px;
  height: 24px;
  color: var(--title-text-color);
  transition: transform 0.3s ease;
}

.bokai_faq_item.active .bokai_faq_icon {
  transform: rotate(180deg);
}

.bokai_faq_answer {
  height: 0;
  overflow: hidden;
  transition: height 0.3s ease;
}

.bokai_faq_answer p {
  padding: 2.5rem;
}

.bokai_faq_item.active .bokai_faq_answer {
  /* 高度由 JS 动态设置 */
}

.bokai_faq_answer p {
  font-family: var(--font-family);
  font-size: var(--font-size-md);
  font-weight: 400;
  line-height: 1.5;
  color: var(--text-color);
  margin: 0;
}

@media screen and (max-width: 1400px) {
}

@media screen and (max-width: 1200px) {
}

@media screen and (max-width: 992px) {
}

@media screen and (max-width: 768px) {
}

@media screen and (max-width: 576px) {
  .bokai_faq_header {
    margin-bottom: 3rem;
  }
}
