
  /* 基础容器 */
  .qsr-feedback-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    font-family: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    color: #333;
    padding: 20px 10px;
  }

  /* 头部数据汇总区 - 增强B2B信任感 */
  .qsr-feedback-hero {
    text-align: center;
    padding: 40px 20px;
    background: #e6f4ea; /* 统一采用浅绿色背景 */
    border-radius: 8px;
    margin-bottom: 40px;
  }
  .qsr-feedback-hero h1 {
    font-size: 32px;
    color: #008a3e; /* 品牌主色：绿色 */
    margin-bottom: 10px;
    font-weight: 700;
  }
  .qsr-feedback-hero p {
    font-size: 16px;
    color: #555;
    max-width: 700px;
    margin: 0 auto 20px;
  }
  .qsr-trust-badges {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
  }
  .qsr-badge {
    background: #fff;
    padding: 10px 20px;
    border-radius: 50px;
    font-weight: 600;
    color: #222;
    box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 8px;
  }
  .qsr-star-color {
    color: #ff9900;
    font-size: 18px;
  }

  /* 评价卡片网格布局 */
  .qsr-reviews-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr));
    gap: 25px;
  }

  /* 独立卡片设计 */
  .qsr-review-card {
    background: #fff;
    border: 1px solid #eaeaea;
    border-radius: 8px;
    padding: 25px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.02);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
  }
  .qsr-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.08);
  }

  /* 客户信息区 */
  .qsr-customer-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 15px;
    padding-bottom: 15px;
    border-bottom: 1px dashed #f0f0f0;
  }
  .qsr-customer-name {
    font-weight: bold;
    color: #222;
    font-size: 15px;
    display: flex;
    align-items: center;
    gap: 6px;
  }
  .qsr-verified-tag {
    font-size: 11px;
    background: #e6f4ea; /* 标签底色：浅绿 */
    color: #008a3e; /* 标签文字：绿色 */
    padding: 3px 8px;
    border-radius: 12px;
    font-weight: normal;
  }
  .qsr-rating {
    color: #ff9900;
    letter-spacing: 2px;
    font-size: 14px;
  }

  /* 评价文字内容 */
  .qsr-review-text {
    font-size: 15px;
    line-height: 1.6;
    color: #444;
    margin-bottom: 20px;
    font-style: italic;
  }
  .qsr-review-text span {
    color: #008a3e; /* 重点高亮色：绿色 */
    font-weight: 600;
  }

  /* 购买产品标签 */
  .qsr-product-purchased {
    font-size: 13px;
    color: #777;
    background: #f9f9f9;
    padding: 10px 12px;
    border-radius: 4px;
    border-left: 3px solid #008a3e; /* 左侧边框高亮色：绿色 */
  }

  /* 移动端适配 */
  @media (max-width: 768px) {
    .qsr-feedback-hero h1 { font-size: 26px; }
    .qsr-trust-badges { flex-direction: column; gap: 10px; align-items: center; }
  }
