
  /* 评价模块专属 CSS，防止污染整站样式 */
  .flo-reviews-section {
    max-width: 1200px;
    margin: 50px auto;
    font-family: inherit; /* 继承你网站原有的字体 */
    padding: 0 15px;
  }
  .flo-reviews-title {
    text-align: center;
    font-size: 32px;
    font-weight: 700;
    color: #333333;
    margin-bottom: 40px;
  }
  .flo-reviews-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 24px;
    justify-content: center;
  }
  .flo-review-card {
    /* 基础宽度为33.33%，减去间距 */
    flex: 1 1 calc(33.333% - 24px);
    min-width: 320px;
    max-width: 380px;
    /* 采用与 Why Choose 模块匹配的红色边框 */
    border: 1px solid #ef4444; 
    border-radius: 8px;
    padding: 30px 24px;
    background-color: #ffffff;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
  }
  .flo-review-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 20px rgba(239, 68, 68, 0.1);
  }
  .flo-review-quote {
    font-size: 48px;
    color: #ef4444;
    font-family: Georgia, serif;
    line-height: 0;
    margin-bottom: 25px;
    display: block;
  }
  .flo-review-text {
    color: #555555;
    font-size: 15px;
    line-height: 1.6;
    margin-bottom: 25px;
    flex-grow: 1;
    font-style: italic;
  }
  .flo-review-author {
    display: flex;
    align-items: center;
    border-top: 1px dashed #e5e7eb;
    padding-top: 15px;
  }
  .flo-review-avatar {
    width: 42px;
    height: 42px;
    background-color: #fef2f2;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: bold;
    color: #ef4444;
    margin-right: 12px;
    font-size: 16px;
  }
  .flo-review-info h4 {
    margin: 0 0 4px 0;
    font-size: 16px;
    color: #222222;
    font-weight: 700;
  }
  .flo-review-info p {
    margin: 0;
    font-size: 13px;
    color: #777777;
  }
