.home-index {
  position: relative;
  overflow: hidden;
}
.home-index .title {
  margin: 116px 0 80px;
  text-align: center;
  font-size: 40px;
  font-weight: 700;
}
.home-index .container-box {
  position: relative;
  height: 100vh;
  background: linear-gradient(90deg, #e7eefa, #e6eaf2 53%, #e3e7f1 100%);
}
.home-index .container-box .swiper-container {
  width: 100%;
  height: 100%;
  --swiper-pagination-color: #fff;
  /* 两种都可以 */
}
.home-index .container-box .swiper-container img {
  min-width: 100%;
  width: 100vw;
  height: 100vh;
  object-fit: cover;
}
.home-index .container-box .content-box {
  position: absolute;
  left: 50%;
  top: 0;
  z-index: 5;
  transform: translate(-50%, 0);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100%;
  width: 100%;
  pointer-events: none;
}
.home-index .container-box .content-box .sky-name {
  font-size: 60px;
  font-weight: 700;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
}
.home-index .container-box .content-box p {
  margin: 15px 0 30px;
  font-size: 24px;
  color: #fff;
  text-align: center;
  text-shadow: 0px 0px 12px rgba(0, 0, 0, 0.3);
}
.home-index .container-box .sky-btns {
  position: absolute;
  bottom: 50px;
  left: 0;
  z-index: 10;
  display: flex;
  justify-content: center;
  width: 100%;
}
.home-index .container-box .sky-btns .el-button--default {
  width: 170px;
  height: 48px;
  color: #fff;
  background: rgba(0, 0, 0, 0.4);
  border-radius: 6px;
  border: none;
  outline: none;
}
.home-index .container-box .zoomIn {
  animation-name: zoomIn;
}
.home-index .container-box .animated {
  animation-duration: 1.25s;
}
@keyframes zoomIn {
  0% {
    opacity: 0;
    transform: scale3d(0.3, 0.3, 0.3);
  }
  50% {
    opacity: 1;
  }
}
.home-index .remote-control .remote-control-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
}
.home-index .remote-control .remote-control-list .remote-control-list-one {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 220px;
}
.home-index .remote-control .remote-control-list .remote-control-list-one .control-img {
  width: 100%;
  margin-bottom: 20px;
}
.home-index .remote-control .remote-control-list .remote-control-list-one .control-img img {
  width: 100%;
}
.home-index .remote-control .remote-control-list .remote-control-list-one .desc-tit {
  font-size: 20px;
  font-weight: 700;
  color: #333;
}
.home-index .effect-point {
  position: relative;
}
.home-index .effect-point .bg {
  position: absolute;
  left: 50%;
  top: -110px;
  z-index: 1;
  transform: translate(-50%, 0);
  width: 1163px;
  max-width: 100%;
  height: 693px;
  background: url("../../assets/imgs/bg2.png") no-repeat center / cover;
}
.home-index .effect-point .effect-point-list {
  position: relative;
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 386px), 1fr));
  gap: 20px;
  z-index: 10;
}
.home-index .effect-point .effect-point-list .effect-point-list-one {
  display: flex;
  height: 187px;
  padding: 30px 10px;
  background-color: #fff;
  border-radius: 10px;
  box-shadow: 0px 1px 10px 0px rgba(157, 214, 255, 0.1);
}
.home-index .effect-point .effect-point-list .effect-point-list-one .point-icon img {
  width: 134px;
  height: 114px;
  margin-right: 7px;
}
.home-index .effect-point .effect-point-list .effect-point-list-one .point-desc .desc-tit {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 700;
}
.home-index .effect-point .effect-point-list .effect-point-list-one .point-desc p {
  font-size: 16px;
  color: #666666;
}
.home-index .application-scene .application-scene-list {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(min(100%, 580px), 1fr));
  gap: 40px;
}
.home-index .application-scene .application-scene-list .application-scene-list-one {
  display: flex;
  flex-direction: column;
  height: 468px;
  max-width: 100%;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.5s ease;
}
.home-index .application-scene .application-scene-list .application-scene-list-one .scene-img {
  height: 327px;
}
.home-index .application-scene .application-scene-list .application-scene-list-one .scene-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.home-index .application-scene .application-scene-list .application-scene-list-one .scene-desc {
  flex: 1;
  padding: 25px;
}
.home-index .application-scene .application-scene-list .application-scene-list-one .scene-desc .desc-tit {
  margin-bottom: 10px;
  font-size: 20px;
  font-weight: 700;
}
.home-index .application-scene .application-scene-list .application-scene-list-one .scene-desc p {
  font-size: 16px;
  color: #666666;
}
.home-index .application-scene .application-scene-list .application-scene-list-one:hover {
  transform: translateY(-10px);
}
.home-index .downLoad {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  min-height: 357px;
  margin-top: 80px;
  padding-top: 80px;
  background: url("../../assets/imgs/bg1.png") no-repeat center / cover;
}
.home-index .downLoad .title {
  margin: 0;
}
.home-index .downLoad p {
  margin: 20px 0;
  font-size: 20px;
  text-align: center;
  color: #333;
}
@media screen and (max-width: 800px) {
  .home-index .container-box .content-box .sky-name {
    font-size: 36px;
  }
  .home-index .container-box .content-box p {
    font-size: 20px;
  }
}
@media screen and (max-width: 400px) {
  .home-index .container-box .content-box .sky-name {
    font-size: 24px;
  }
  .home-index .container-box .content-box p {
    font-size: 16px;
  }
}
