.faq-section {
  width: 80%;
  margin: 20px auto; /* 水平居中，上下留间距 */
  padding: 15px;
  background-color: #f9f9f9;
  border-radius: 8px;
}
/* 区块标题 */
.faq-section h6 {
  font-size: 30px;
  text-align: center;
  color: #333;
  margin-bottom: 20px;
  font-size: 20px;
}
/* 问题列表 */
.faq-list {
  list-style-type: decimal; /* 显示数字序号 */
  padding-left: 20px;
}
/* 单个问题项 */
.faq-item {
  margin-bottom: 15px;
  padding-bottom: 10px;
  border-bottom: 1px dashed #ddd;
}
/* 问题标题 */
.faq-item h7 {
  color: #555;
  font-weight: bold;
  margin-bottom: 8px;
  font-size: 20px;
}
/* 问题回答 */
.faq-item p {
  font-size: 25px;
  color: #666;
  line-height: 1.6; /* 调整行高，提升可读性 */
  /* 控制换行：如果有长单词或URL，也能合理换行 */
  word-break: break-word;
}/* CSS Document */

