/*************** 企业优势 文字部分 ***************/
.float-l {
  float: left;
}
.float-r {
  float: right;
}
.clear {
  clear: both;
}
.center {
  margin: 0 auto;
}
.ft-wei {
  font-weight: 600;
}
.hide-excess-text {
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.v-center {
  display: flex;
  justify-content: center;
  align-items: Center;
}
@keyframes imgHover {
  from {
    transform: scale(1);
  }
  to {
    transform: scale(1.2);
  }
}
.imgHover {
  animation: imgHover 1s forwards;
}
.home-spe {
  position: relative;
}
.home-spe .spe-text {
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: Center;
  color: #fff;
  text-align: center;
  font-weight: 600;
  text-transform:Uppercase;
  font-family:Arial;
  line-height:50px;
}
/*************** 导航栏跟随页面滚动 ***************/
@media (max-width: 767px) {
  .home-spe {
    position: relative;
  }
  .home-spe .spe-text {
    top: 0%;
    bottom: 0%;
    left: 10%;
    right: 10%;
    font-size: 3vw;
  }
}
@media (min-width: 768px) {
  .home-spe {
    position: relative;
  }
  .home-spe .spe-text {
    top: 0%;
    bottom: 0%;
    left: 10%;
    right: 10%;
    font-size: 1.3vw;
  }
}
