.swiper-contione {
  width: 100%;
  height: 400px;
  overflow: hidden;
  position: relative;
}
.swiper {
  width: 9999999px;
  height: 400px;
  transition: all 1s ease;
}
.swiper-item {
  width: 100%;
  float: left;
  position: relative;
}
.swiper-item img {
  width: 100%;
  height: auto;
}
.swiper-point {
  width: 100%;
  height: 40px;
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  /* margin-left: 50px; */
  justify-content: center;
  align-items: center;
  cursor: pointer;
}
.point {
  width: 30px;
  height: 10px;
  background: #0098FF;
  margin-right: 10px;
  float: left;
}

.point.active {
  background: #fff;
}
.swiper-left {
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  left: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.text_banner{
  position: absolute;
  z-index: 1;
  left: 308px;
  top: calc(50% - 110px);
  color: #fff;
}
.text_banner h3{
font-size: 40px;
font-weight: 400;
}
.line_banner{
width: 380px;
height: 3px;
background-color: #fff;
border-radius: 1.5px;
margin: 30px 0px;
}
.banner_btn{
width: 210px;
height: 60px;
border-radius: 52px;
background-color: #0098FF;
color: #fff;
line-height: 60px;
font-size: 24px;
text-align: center;
margin-top: 30px;
cursor: pointer;
}
.swiper-right {
  width: 60px;
  height: 100%;
  position: absolute;
  top: 0;
  right: -60px;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all 0.4s ease;
}
.swiper-left img,
.swiper-right img {
  cursor: pointer;
}
.swiper-contione:hover .swiper-left {
  left: 0;
}
.swiper-contione:hover .swiper-right {
  right: 0;
}