
  .bella-faq-wrapper {
    max-width: 1000px;
    margin: 30px auto;
    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
    color: #2b2b2b;
  }
  .bella-faq-item {
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    margin-bottom: 14px;
    background-color: #ffffff;
    overflow: hidden;
    transition: all 0.2s ease-in-out;
  }
  .bella-faq-item[open] {
    border-color: #c5a059; /* 优雅医美金系微调边框，可按需修改 */
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  }
  .bella-faq-question {
    padding: 16px 20px;
    font-size: 16px;
    font-weight: 600;
    color: #1a1a1a;
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    user-select: none;
    background-color: #fcfcfc;
    transition: background-color 0.2s ease;
  }
  .bella-faq-question::-webkit-details-marker {
    display: none;
  }
  .bella-faq-question:hover {
    background-color: #f4f6f8;
  }
  .bella-faq-icon {
    font-size: 18px;
    font-weight: 400;
    color: #666;
    margin-left: 15px;
    transition: transform 0.2s ease;
  }
  .bella-faq-item[open] .bella-faq-icon {
    transform: rotate(45deg); /* 打开时转动为关闭图标 */
    color: #c5a059;
  }
  .bella-faq-answer {
    padding: 16px 20px 20px 20px;
    font-size: 14px;
    line-height: 1.6;
    color: #4a5568;
    background-color: #ffffff;
    border-top: 1px solid #f0f0f0;
  }
