.scenario-card:hover .scenario-image img {
  transition: transform 0.5s ease;

  transform: scale(1.05);
}

/* 原有CSS保持不变 */
/* banner样式 */
.su-banner {
  width: 100%;
  position: relative;
  /* height: 480px; */

}

.su-banner-img {
  width: 100%;
  height: 100%;
  /* object-fit: cover; */
}


/* 确保动画元素初始状态不可见（配合wow.js） */
.wow {
  visibility: hidden;
}



.su-scenarios-container {
  width: 100%;
  background: #FFFFFF;


}

.scenarios-title {

  font-weight: bold;
  font-size: 24px;
  color: #1B1C35;
  margin: 0px 0 49px 17px;
}
.scenarios-title1{
 margin-top: 41px;
}


.scenarios-grid {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
  box-sizing: border-box;
  /* padding: 80px 0 58px 0; */
  /* margin-bottom: 104px; */
}


.scenario-card {
  width: calc(33.33% - 0px);
  cursor: pointer;
  /* 鼠标悬浮显示手型 */
  transition: transform 0.3s ease;
  /* 添加点击反馈动画 */
  margin-bottom: 70px;
  box-sizing: border-box;
  padding: 0 17px;
  /* margin-top: 82px; */
  /* 27px×2 是 3 列的总间距（2 个间隙） */

}


.scenario-image {
  width: 100%;
  height: 221px;
  background: #44619A;
  border-radius: 10px;
  overflow: hidden;

}

.scenario-image img {
  width: 100%;
  height: 100%;
}


.scenario-desc {
  width: 100%;
  display: flex;
  align-items: center;
  font-weight: bold;
  font-size: 20px;
  color: #1B1C35;
  margin-top: 28px;


}

.scenario-desc p {
  font-size: 20px;
  color: #333;
  margin: 0;
  line-height: 1.5;
}

/* 1. 1200px ~ 1440px 范围（中等大屏幕） */
@media (max-width: 1440px) {



 

}


/* 1. 1200px ~ 1440px 范围（中等大屏幕） */
@media (max-width: 767px) {

  /* banner样式 */
  .su-banner {
    height: auto;

  }

  .scenarios-title {
    width: 100%;
    text-align: center;
    font-weight: bold;
    font-size: 24px;
    color: #1B1C35;
    margin: 55px 0 44px 0;
  }

  .scenario-card {
    width: 100%;
  }

  .scenario-image {
    width: 100%;
    height: calc((100vw - 48px) * 221 / 366);
  }

  .scenario-desc {
    font-weight: bold;
    font-size: 17px;
    color: #1B1C35;
    margin-top: 23px;
  }

  .scenarios-grid {
    gap: 0px
  }

  .scenario-card {
    margin-bottom: 33px;
    padding: 0px;
  }

  .scenarios-grid {
    margin-bottom: 30px;

  }
  .scenarios-title1{
    margin-top: 55px;
   }
   .su-banner-img {
 
    /* object-fit: none; */
  }
}