
  @import url('https://fonts.googleapis.com/css2?family=Rajdhani:wght@600&display=swap');

  .herbal-stats-wrapper {
    background-color: #eef2ee;
    padding: 20px 20px 0 20px;
    margin: 20px auto 0 auto;
  }

  .herbal-stats-box {
    max-width: 980px;
    margin: 0 auto;
    padding: 40px 24px;
    position: relative;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    background-color: #ffffff;
  }

  .herbal-stats-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: url('//ueeshop.ly200-cdn.com/u_file/UPBE/UPBE027/2504/08/photo/2-750-290.jpg') center/cover no-repeat;
    opacity: 0.25;
    z-index: 0;
    pointer-events: none;
  }

  .herbal-stats-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    text-align: center;
    gap: 30px;
    animation: fadeInUp 1.2s ease-out both;
    color: #1b4332;
  }

  .stat {
    flex: 1 1 200px;
    min-width: 180px;
  }

  .stat-number {
    font-family: 'Rajdhani', sans-serif;
    font-size: 2.8em;
    font-weight: 600;
    color: #bfa360;
    margin-bottom: 8px;
    animation: countFade 1s ease-in-out;
  }

  .stat-label {
    font-size: 1.1em;
    letter-spacing: 0.5px;
  }

  /* 新增引导文案样式 */
  .stats-caption {
    max-width: 720px;
    margin: 40px auto 0 auto;
    font-size: 1.05em;
    color: #2d6a4f;
    text-align: center;
    line-height: 1.6;
    padding: 0 16px;
  }

  @media (max-width: 768px) {
    .herbal-stats-box {
      padding: 40px 16px;
    }

    .herbal-stats-content {
      flex-direction: row;
      flex-wrap: wrap;
      gap: 16px;
    }

    .stat {
      width: 48%;
      min-width: auto;
    }

    .stat-number {
      font-size: 2em;
    }

    .stat-label {
      font-size: 1em;
    }

    .stats-caption {
      font-size: 0.95em;
      margin-top: 32px;
    }

    /* 手机端背景图更新 */
    .herbal-stats-bg {
      background: url('//ueeshop.ly200-cdn.com/u_file/UPBE/UPBE027/2504/08/photo/3.jpg') center/cover no-repeat;
    }
  }

  @keyframes fadeInUp {
    from {
      transform: translateY(30px);
      opacity: 0;
    }
    to {
      transform: translateY(0);
      opacity: 1;
    }
  }

  @keyframes countFade {
    from {
      opacity: 0;
    }
    to {
      opacity: 1;
    }
  }
