
  /* 基础容器与全局排版 */
  .qsr-faq-container {
    max-width: 1000px;
    margin: 30px auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    line-height: 1.8;
    padding: 0 15px;
  }
  
  /* 页面大标题 */
  .qsr-faq-container h1 {
    text-align: center;
    color: #008a3e; /* 品牌绿 */
    font-size: 32px;
    margin-bottom: 10px;
    font-weight: 700;
  }
  .qsr-faq-subtitle {
    text-align: center;
    color: #666;
    font-size: 16px;
    margin-bottom: 40px;
  }

  /* FAQ 列表条目样式 */
  .qsr-faq-group {
    margin-bottom: 25px;
    background-color: #f9fcf9; /* 极浅绿底色 */
    border-left: 5px solid #008a3e; /* 左侧绿色主题条 */
    border-radius: 4px;
    padding: 20px 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.02);
  }
  
  /* 问题样式 */
  .qsr-faq-q {
    font-size: 16px;
    font-weight: 700;
    color: #222;
    margin-bottom: 10px;
    display: block;
  }
  
  /* 回答样式 */
  .qsr-faq-a {
    font-size: 15px;
    color: #555;
    text-align: justify;
  }
  
  .qsr-faq-a strong {
    color: #008a3e;
  }

  /* 移动端优化 */
  @media (max-width: 768px) {
    .qsr-faq-container h1 { font-size: 26px; }
    .qsr-faq-group { padding: 15px 18px; }
    .qsr-faq-q { font-size: 15px; }
    .qsr-faq-a { font-size: 14px; }
  }
