.faq-container {
  display: flex;
  gap: 40px;
  max-width: 1200px;
  margin: 0 auto;
  flex-wrap: wrap;
  align-items: center;
}
.faq-left {
  flex: 1;
  min-width: 280px;
}
.faq-left h1 {
  font-size: 2.4rem;
  font-weight: bold;
  margin-bottom: 20px;
}
.faq-left p {
  font-size: 1rem;
  line-height: 1.6;
  margin-bottom: 20px;
}
.faq-left a {
  color: #007bff;
  text-decoration: none;
}
.faq-left img {
  width: 100%;
  max-width: 400px;
}
.faq-right {
  flex: 1;
  min-width: 300px;
}
/* 打开和关闭手风琴面板的样式 */
.accordion {
  background-color: #03020e;
  color: #ffffff;
  cursor: pointer;
  padding: 18px;
  width: 100%;
  text-align: left;
  border: none;
  outline: none;
  transition: 0.4s;
  font-size: 18px;
}
/* 设置点击和鼠标移到选项上面时（悬停）的样式 */
.faq-right .active,
.accordion:hover {
  background-color: #444141;
}
/* 为手风琴面板设计样式。 默认隐藏 */
.panel {
  padding: 0 18px;
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.2s ease-out;
  border-bottom: 1px solid #ffffff;
}
.panel p {
  padding: 10px;
  text-align: left;
}
/* 设置 +、- 标志 */
.accordion:after {
  content: '\002B';
  /* Unicode 字符 + 号 */
  color: #ffffff;
  font-weight: bold;
  float: right;
  margin-left: 5px;
}
.faq-right .active:after {
  content: "\2212";
  /* Unicode 字符 - 号 */
}
@media (max-width: 768px) {
  .faq-container {
    flex-direction: column;
  }
  .faq-left,
  .faq-right {
    width: 100%;
  }
  .faq-left img {
    margin-top: 20px;
  }
}
/*# sourceMappingURL=problem.css.map */