/* 容器样式 */
.faq-container {
  max-width: 100%;
  margin: 20px auto;
  color: #fff;
}

/* 单个FAQ项 */
.faq-item {
  background-color: #f8f9fa;
  margin-bottom: 10px;
  border: 1px solid #fff;
}

/* 问题栏样式 */
.faq-question {
  padding: 15px;
  background-color:#008040;
  cursor: pointer;
  font-size: 14px;
  position: relative;
  font-weight: normal;
}
/* 右侧箭头 */
.faq-question::after {
  content: "▲";
  position: absolute;
  right: 15px;
    font-size: 10px!important;
  transition: transform 0.3s;
}
/* 展开时箭头旋转 */
.faq-item.active .faq-question::after {
  transform: rotate(180deg);
}

/* 回答栏样式（默认隐藏） */
.faq-answer {
  padding: 0 15px;
  max-height: 0;
  overflow: hidden;
  color: #008040;
  transition: max-height 0.3s, padding 0.3s;
}
/* 展开时显示回答 */
.faq-item.active .faq-answer {
  padding: 15px;
  max-height: 200px; /* 足够容纳内容的高度 */
}