.swiper {
  width: 100%;
  height: 300px;
  background-color: azure;
}

.swiper2{
  width: 100%;
  height: 300px;
  overflow: hidden;
  margin: 20px auto;
}

.swiper-slide {
  text-align: center;
  font-size: 18px;
  background: #fff;
  display: flex;
  justify-content: center;
  align-items: center;
}

.swiper-slide img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.swiper-pagination-bullet-active{
  background-color: #3390EE ;
}
.swiper-pagination-bullet{
  width: 10px;
  height: 10px;
}

.mySwiper2 .swiper-wrapper{
  transition-timing-function: linear !important;
}

.mySwiper2 .swiper-slide img{
  border-radius: 10px;
}

.mySwiper3 {
  margin-top: 10px;

}
.mySwiper3 .swiper-wrapper{
  display: flex;
  align-items: stretch;
}
.mySwiper3 .swiper-slide {
  display: block;
  text-align: left;
  cursor: pointer;
}

.mySwiper3 .pro_title {

  padding: 0 10px;
  margin: 10px 0;
  font-size: 14px;
  font-weight: 600;
  color: #d33a00;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 1;
  -webkit-box-orient: vertical;
}


.mySwiper3 .pro_text {
  margin: 0 10px;
  font-size: 13px;
  color: #000;
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 4;
  -webkit-box-orient: vertical;
  margin-bottom: 20px;
}

.mySwiper3 .line {
  height: 4px;
  width: 100%;
  background-color: #E2E2E2;
  border-radius: 5px;
  transition: all .5s;
  position: relative;
}

.mySwiper3 .line::before {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  height: 4px;
  width: 0%;
  transition: all .5s;
  border-radius: 5px;

}

.mySwiper3 .swiper-slide:hover .line::before {
  background-color: #d33a00;
  width: 100%;
}

.Industrial .pro_title{
  height: 38.4px;
  -webkit-line-clamp: 2 !important;
}