#services .swiper2{
    margin-top: -10px;
   }

   #services .swiper2 .swiper-slide img{
    transition: transform 0.8s; /* 添加过渡效果 */
   }
   
   #services .swiper2 .swiper-slide:hover img{
    transform: scale(1.03) translateY(-3px); /* 放大并上浮 */
   } 
   #services .swiper2 .swiper-slide:hover .lunbofas{
    transform: translateX(300px);    /* 右移 */
    color: #0e3db1;
   } 

   #services .swiper2 .swiper-slide:hover .lunbofas i{
    color: #0e3db1;
   }

   #services .swiper2 .swiper-slide{
    display: flex;
  align-items: center;
  justify-content: space-between;
   }

   #services .swiper2 .swiper-slide img {
  width: 100%; /* 图片占一半宽度 */
  height: 100%;
}


#services .swiper2 .swiper-slide #imgt1box{
    width: 65%; /* 图片占一半宽度 */
  height: 100%;
  overflow: hidden;
}

#services .swiper2 .swiper-slide .slide-content {
  width: 35%; /* 文字内容占一半宽度 */
  box-sizing: border-box;
  text-align: center;
  height: 100%;
}




#services .swiper2 .swiper-slide .slide-content {
    display: flex;
    flex-direction: column; /* 垂直排列 */
    align-items: flex-start; /* 左对齐 */
    background: linear-gradient(to bottom, rgb(130, 184, 231), rgba(166, 175, 184, 0.8)); /* 垂直渐变色背景 */
    padding: 20px; /* 内边距 */
    max-width: 600px; /* 最大宽度 */
}

#services .swiper2 .swiper-slide .title {
    margin-bottom: 20px; /* 标题与描述之间的间距 */
    margin-top: 30px;
}

#services .swiper2 .swiper-slide .title h2 {
    font-size: 30px; /* 标题字体大小 */
    margin: 0; /* 重置外边距 */
    text-align: justify;
}

#services .swiper2 .swiper-slide .title h3 {
    color: #4d8fad;
    font-size: 25px; /* 副标题字体大小 */
    margin: 5px 0 0; /* 重置外边距并添加上边距 */
    text-align: justify;
    overflow: hidden; /* 隐藏溢出的部分 */
     text-overflow: ellipsis; /* 使用省略号表示溢出部分 */
     -webkit-box-orient: vertical;
    -webkit-line-clamp: 2; /* 显示的行数 */
     display: -webkit-box;
     word-wrap: break-word; /* 允许长单词换行 */
  overflow-wrap: break-word; /* 允许在单词内换行 */
  white-space: normal; /* 允许换行 */
  word-break: break-all;
}

#services .swiper2 .swiper-slide .slide-content .description p {
    text-align: left; /* 描述文本左对齐 */
    color: #5f5b5b;
    font-size: 16px; /* 描述文本字体大小 */
    line-height: 1.5; /* 行高 */
    overflow: hidden; /* 隐藏溢出的部分 */
      text-overflow: ellipsis; /* 使用省略号表示溢出部分 */
     -webkit-box-orient: vertical;
     -webkit-line-clamp: 7; /* 显示的行数 */
     display: -webkit-box;
}

#services .swiper2 .swiper-slide .slide-content .lunbofas{
    font-size: 30px;
    /* color: #0e3db1; */
    color: #94a7af;
    transition: color 0.8s; /* 添加 CSS 过渡效果 */
    transition: transform 0.8s ease; /* 平滑过渡效果 */
}