.qicheng-asked-questions {
  --label-font-size: 60px;
  --label-color: rgba(204, 204, 204, 1);
  --column-gap: max(20px, 1.11111111rem);
  padding-top: var(--title-font-padding-top);
  padding-bottom: calc(max(40px, 2.5rem) + var(--border-radius-lg));
  position: relative;
  z-index: 9;
  background-color: #e1e1e1;
}

/* 标题部分 */
.qicheng-asked-questions_header {
  text-align: center;
  margin-bottom: max(60px, 3.33333333rem);
}

.qicheng-asked-questions_title {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--title-font-size-xl);
  font-weight: var(--title-font-weight);
  line-height: 1.3333;
  letter-spacing: -0.9px;
  margin: 0 0 max(12px, 0.66666667rem) 0;
}

.qicheng-asked-questions_subtitle {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--text-font-size-xxl);
  font-weight: 500;
  line-height: 124%;
  margin-top: max(20px, 1.11111111rem);
  margin-bottom: 0;
}

/* FAQ 列表 */
.qicheng-asked-questions_list {
  margin-bottom: max(60px, 3.33333333rem);
}

/* 按钮区域 */
.qicheng-asked-questions_button-wrap {
  text-align: center;
  margin-top: max(60px, 3.33333333rem);
}

/* FAQ 项 */
.qicheng-asked-questions_item {
  --item-padding-x: max(1.388889rem, 30px);
  --item-padding-y: max(1.388889rem, 24px);
  background-color: #f5f5f7;
  border-radius: var(--border-radius-md);
  margin-bottom: max(16px, 0.88888889rem);
  overflow: hidden;
  display: flex;
  transition: all 0.3s ease;
}

.qicheng-asked-questions_item:last-child {
  margin-bottom: 0;
}

/* 问题头部 */
.qicheng-asked-questions_item-header {
  background-color: transparent;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 33.333%;
  flex-shrink: 0;
  flex-grow: 0;
  border: none;
  border-radius: var(--border-radius-md);
  padding: var(--item-padding-y) var(--item-padding-x);
}

.qicheng-asked-questions_item-question {
  display: flex;
  align-items: center;
  gap: var(--column-gap);
}

.question-text {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--text-font-size-xxl);
  font-weight: 500;
  line-height: 1.24;
  flex: 1;
  text-align: left;
  transition: color 0.3s ease;
}

.question-label {
  color: var(--label-color);
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  display: inline-block;
  font-size: var(--label-font-size);
}

.qicheng-asked-questions_item-answer_label {
  color: var(--label-color);
  font-family: var(--font-family);
  font-weight: 700;
  line-height: 1;
  text-align: center;
  display: inline-block;
  vertical-align: top;
  font-size: var(--label-font-size);
}

.qicheng-asked-questions_item-answer_text {
  display: inline-block;
  font-size: var(--text-font-size-xxl);
  font-weight: 400;
  line-height: 1.24;
  flex: 1;
}

.qicheng-asked-questions_item-answer {
  color: var(--text-color-black);
  font-family: var(--font-family);
  font-size: var(--text-font-size-lg);
  padding: var(--item-padding-y) var(--item-padding-x);
  gap: var(--column-gap);
  font-weight: 400;
  line-height: 1.6;
  word-break: break-word;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--border-radius-md);
  background: #fff;
}

/* 响应式设计 */
@media screen and (max-width: 1024px) {
  .qicheng-asked-questions_item {
    flex-direction: column;
  }
  .qicheng-asked-questions_item-header {
    width: 100%;
  }
}

@media screen and (max-width: 992px) {
  .qicheng-asked-questions_header {
    margin-bottom: max(40px, 2.22222222rem);
  }

  .qicheng-asked-questions_list {
    max-width: 100%;
  }
}

@media screen and (max-width: 768px) {
  .qicheng-asked-questions {
    --label-font-size: 48px;
  }
  .qicheng-asked-questions_header {
    margin-bottom: max(30px, 1.66666667rem);
  }

  .qicheng-asked-questions_list {
    margin-bottom: max(40px, 2.22222222rem);
  }

  .qicheng-asked-questions_button-wrap {
    margin-top: max(40px, 2.22222222rem);
  }
}

@media screen and (max-width: 552px) {
  .qicheng-asked-questions {
    --label-font-size: 40px;
  }

  .qicheng-asked-questions_list {
    margin-bottom: max(30px, 1.66666667rem);
  }

  .qicheng-asked-questions_button-wrap {
    margin-top: max(30px, 1.66666667rem);
  }
}
