
    .reviews-outer {
      width: 100%;
    }

    .reviews-container {
      display: flex;
      gap: 20px;
      overflow-x: auto;
      scrollbar-width: none;
      scroll-behavior: smooth;
      cursor: grab;
      justify-content: flex-start;
      padding: 20px 0 40px;
    }

    @media (min-width: 1280px) {
      .reviews-container::before,
      .reviews-container::after {
        content: "";
        flex: 1;
      }
    }

    .reviews-container::-webkit-scrollbar {
      display: none;
    }

    .review-card {
      flex: 0 0 350px;
      background: #f9fafb;
      border: 1px solid #eef0f2;
      border-radius: 16px;
      padding: 30px;
      display: flex;
      flex-direction: column;
      justify-content: space-between;
      min-height: 200px;
      box-shadow: 0 8px 24px rgba(0, 0, 0, 0.04);
      transition: all 0.3s ease;
      /* 去掉模糊值，大幅增加性能 */
      /* backdrop-filter: blur(2px); */
    }

    .review-card:hover {
      background: #ffffff;
      border-color: #000;
      box-shadow: 0 14px 36px rgba(0, 0, 0, 0.08);
    }

    /* 针对手机端优化卡片宽度 */
    @media (max-width: 768px) {
      .review-card {
        flex: 0 0 50vw;
        padding: 20px;
        min-height: 180px;
      }

      .reviews-container {
        padding: 20px 20px 40px;
        gap: 15px;
      }

      /* 核心修改：在手机端隐藏 Purchase */
      .vx-verified-badge .purchase-txt {
        display: none;
      }
    }

    .vx-verified-badge {
      display: inline-flex;
      align-items: center;
      gap: 2px;
      font-size: 8px;
      color: #27ae60;
      padding: 1px 6px;
      border-radius: 10px;
      font-weight: 600;
      text-transform: uppercase;
      /* 确保即使 Purchase 隐藏后，标签也不换行 */
      white-space: nowrap;
    }

    @media (max-width: 768px) {
      .vx-verified-badge {
        font-size: 7px;
      }
    }

    .review-stars-small,
    .trust-stars {
      position: relative;
      display: inline-block;
      color: #ccc;
      overflow: hidden;
    }

    .stars-gray {
      position: relative;
      z-index: 1;
    }

    .stars-gold {
      position: absolute;
      top: 0;
      left: 0;
      white-space: nowrap;
      color: #f39c12;
      z-index: 2;
      overflow: hidden;
    }

    .review-content {
      font-size: 14px;
      line-height: 1.6;
      color: #444;
      font-style: italic;
      margin: 0 0 25px;
      display: -webkit-box;
      -webkit-line-clamp: 6;
      -webkit-box-orient: vertical;
      overflow: hidden;
      min-height: 110px;
    }

    .review-footer {
      display: flex;
      justify-content: space-between;
      align-items: flex-end;
      border-top: 1px solid #f5f5f5;
      padding-top: 15px;
      margin-top: auto;
    }

    .author-country img.emoji {
      display: block;
      width: 18px !important;
      height: auto !important;
      margin-bottom: 4px;
    }

    .author-name {
      font-size: 13px;
      font-weight: 400;
    }

    .author-country {
      display: flex;
      flex-direction: column;
      align-items: center;
      line-height: 1.2;
      font-size: 11px;
      color: #999;
    }
  