.faq-container {
  display: flex;
  max-width: 1200px;
  margin: 0 auto;
  gap: 80px;
  padding: 0 40px;
}
.faq-header {
  flex: 1;
}
.faq-header h1 {
  font-size: 3rem;
  margin-bottom: 20px;
}
.faq-header p {
  color: #888;
  line-height: 1.6;
}
.faq-accordion {
  flex: 1.5;
}
.faq-item {
  border-bottom: 1px solid #222;
  margin-bottom: 15px;
  background-color: #111;
  border-radius: 12px;
}
.faq-question {
  width: 100%;
  padding: 24px 30px;
  background: none;
  border: none;
  color: #fff;
  font-size: 1.15rem;
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
/* 改名为 icons */
.icons {
  font-size: 1.8rem;
  transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1);
  font-weight: 200;
  color: #666;
}
/* 核心动画区域：高度设为 0，且过渡动画平滑 */
.faq-answer {
  height: 0;
  overflow: hidden;
  transition: height 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}
.faq-answer-content {
  padding: 0 30px 24px 30px;
  color: #999;
  line-height: 1.8;
  font-size: 1rem;
}
/* 激活状态 */
.faq-item.active .icons {
  transform: rotate(45deg);
  /* 旋转 45 度变成叉号 */
  color: #fff;
}
/* 手机屏幕（小于768px） */
@media screen and (max-width: 767px) {
  .faq-container {
    flex-direction: column;
  }
}
/* 平板屏幕（768px 至 1024px） */
/* 桌面屏幕（大于1024px） */
/*# sourceMappingURL=style.css.map */