


  /* 五月云数据 */
  .hero-center {
    position: relative;

    width: 100%;
    height: 1080px;

    margin: 0 auto;
    /* padding-top: 40px; */
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  .bg-img {
    position: absolute;
    top: 0px;
    left: 0px;
    /* object-fit: cover; */
    width: 100%;
    height: 1080px;
    z-index: -1;
  }
  .hero-desc {
    color: #fff;
    font-size: 28px;
    font-weight: 400;
    margin-bottom: 40px;
    /* text-align: center; */
    text-shadow: 0 2px 8px rgba(0, 0, 0, 0.18);
  }
  .hero-stats {
    display: flex;
    justify-content: space-around;
    align-items: center;
    /* gap: 60px; */
    margin-bottom: 50px;
    background: rgba(255, 255, 255, 0.3);
    /* width: 950px; */
    padding: 20px 0;
    /* border-radius: 10px; */
  }
  .stat-item {
    width: 33.33%;
    /* background: rgba(255, 255, 255, 0.13); */
    /* border-radius: 10px; */
    /* padding: 24px 48px; */
    text-align: center;
    color: #fff;
    min-width: 180px;
    box-shadow: 0 2px 12px rgba(0, 0, 0, 0.06);
  }
  .stat-num {
    font-size: 32px;
    font-weight: bold;
    margin-bottom: 8px;
  }
  .stat-label {
    font-size: 16px;
    opacity: 0.92;
  }
  .hero-icons {
    display: flex;
    justify-content: space-between;
    align-items: center;
    /* gap: 60px; */
    margin-bottom: 30px;
    flex-wrap: wrap;
  }
  .icon-item {
    display: flex;
    /* flex-direction: column; */
    align-items: center;
    color: #fff;
    font-size: 16px;
    opacity: 0.95;
  }
  .icon-item img {
    width: 60px;
    height: 60px;
    margin-right: 10px;
    /* margin-bottom: 8px; */
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.1));
  }
  @media (max-width: 900px) {
    .hero-stats {
      gap: 20px;
    }
    .stat-item {
      padding: 16px 10px;
      min-width: 100px;
    }
    .hero-icons {
      gap: 20px;
    }
  }