
  .faq-item {
    margin-bottom: 10px;
    border: 1px solid #eee;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .faq-item h2, .faq-item h3 {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 10px 15px;
    margin: 0;
    background-color: #f5f5f5;
    cursor: pointer;
  }
  
  .toggle-icon {
    font-size: 16px;
    transition: transform 0.3s ease;
  }
  
  .faq-answer {
    padding: 0 15px;
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
	line-height: 1.8;
  }
  
  .faq-item.active .faq-answer {
    padding: 15px;
    max-height: 2000px; /* 足够大的值以容纳内容 */
  }
  
  .faq-item.active .toggle-icon {
    transform: rotate(180deg);
  }
    .faq-item.active .faq-answer-img {
    padding: 15px;
    max-height: 2000px; /* 足够大的值以容纳内容 */
  }
  
  
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out;
  }
  
  /* 展开状态样式 */
  .faq-item.active .faq-answer {
    max-height: 3000px; /* 足够大的值容纳内容 */
    transition: max-height 0.6s ease-in;
  }
  
  /* 图片容器样式 */
  .image-container {
    margin: 15px 0;
    text-align: center;
  }
  
  .faq-image {
    max-width: 100%;
    height: auto;
    border: 1px solid #eee;
    border-radius: 4px;
  }
  
  /* 切换图标样式 */
  .toggle-icon {
    cursor: pointer;
    display: inline-block;
    transition: transform 0.3s ease;
  }
  
  .faq-item.active .toggle-icon {
    transform: rotate(180deg);
  }
 .table-container {
    width: 100%;
    overflow-x: auto; /* 确保在小屏幕上可横向滚动 */
    margin: 10px 0;
  }
  
  .custom-table {
    width: 100%;
    min-width: 600px; /* 确保表格有足够宽度展示内容 */
    border-collapse: collapse; /* 合并边框 */
    border-spacing: 0;
  }
  
  .custom-table td {
    border: 1px solid #ddd; /* 表格边框 */
    padding: 10px 12px;
    vertical-align: middle;
    word-wrap: break-word; /* 长文本自动换行 */
  }
  
  .custom-table tr:first-child td {
    background-color: #f5f5f5; /* 表头背景色 */
    font-weight: bold;
    text-align: center;
  }
  
  .custom-table tr:not(:first-child) td {
    text-align: left;
  }
  
  .custom-table tr:nth-child(even) {
    background-color: #fafafa; /* 隔行变色 */
  }
  /* 所有FAQ标题样式 */
  
  .heading-1.ace-line {
    font-size: 22px;
    font-weight: bold;
}
.heading-2.ace-line {
    font-size: 18px;
    font-weight: bold;
}

.heading-2 {
    font-size: 18px;
    font-weight: bold;
}
.heading-3.ace-line {
    font-size: 16px;
    font-weight: bold;
}
/* 所有FAQ答案内容样式 */
.faq-answer .ace-line {
    font-size: 14px;
}
  
  /* 响应式调整 */
  @media (max-width: 768px) {
    .custom-table td {
      padding: 8px 6px;
      font-size: 14px;
    }
  }
