.home {
  width: 100%;
}
.home .banner {
  width: 100%;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide {
  position: relative;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .bg {
  width: 100%;
  height: 100vh;
  display: block;
  object-fit: cover;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .text {
  width: 80%;
  position: absolute;
  left: 10%;
  top: 50%;
  transform: translateY(-50%);
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .text .p1 {
  color: white;
  font-family: "SOURCEHANSANSCN-BOLD";
  font-size: 50px;
  line-height: 80px;
  transition: all 2s;
  transform: translateY(60px);
  opacity: 0;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .text .p1 span {
  color: #425CBB;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .text .des {
  color: white;
  font-size: 20px;
  margin: 20px 0;
  font-family: "SOURCEHANSANSCN-LIGHT";
  transition: all 2s;
  transform: translateY(60px);
  opacity: 0;
  transition-delay: 1s;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .text a {
  width: 157px;
  height: 45px;
  background: #425CBB;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin-top: 40px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  transition: all 2s;
  transform: translateY(60px);
  transition-delay: 2s;
  opacity: 0;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .text a img {
  margin-left: 10px;
  transition: all 600ms;
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide .text a:hover img {
  transform: translateX(10px);
}
.home .banner .swiper-container .swiper-wrapper .swiper-slide-active .text .p1, .home .banner .swiper-container .swiper-wrapper .swiper-slide-active .text .des, .home .banner .swiper-container .swiper-wrapper .swiper-slide-active .text a {
  transform: translateY(0);
  opacity: 1;
}
.home .banner .swiper-pagination {
  font-family: "ITCAvantGardeStd-Bk";
  color: white;
  position: absolute;
  width: 80%;
  left: 10%;
  bottom: 10%;
  display: flex;
  align-items: center;
}
.home .banner .swiper-pagination .swiper-pagination-current {
  font-size: 34px;
}
.home .banner .swiper-pagination .swiper-pagination-total {
  font-size: 18px;
}
.home .banner .prev {
  position: absolute;
  right: 14%;
  width: 45px;
  height: 45px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  bottom: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  outline: none;
  transition: all 600ms;
}
.home .banner .prev:hover {
  background: #425CBB;
  border-color: #425CBB;
}
.home .banner .next {
  position: absolute;
  right: 10%;
  width: 45px;
  height: 45px;
  border: 1px solid #FFFFFF;
  border-radius: 50%;
  bottom: 10%;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  outline: none;
  transform: rotateY(180deg);
  transition: all 600ms;
}
.home .banner .next:hover {
  background: #425CBB;
  border-color: #425CBB;
}
.home .service {
  width: 100%;
  margin: 60px auto;
}
.home .service .title {
  text-align: center;
  color: #272729;
}
.home .service .title p:nth-child(1) {
  font-size: 32px;
  font-family: "SOURCEHANSANSCN-BOLD";
}
.home .service .title p:nth-child(2) {
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin-top: 15px;
  color: #333333;
}
.home .service .allItems {
  width: 100%;
  display: flex;
  justify-content: space-between;
  margin: 60px auto;
}
.home .service .allItems .item {
  width: 25%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  background-color: #EEEEEE;
  padding: 60px 0;
  transition: all 600ms;
}
.home .service .allItems .item .pic {
  position: relative;
  display: inline-block;
  transform: translateY(60px);
  transition: all 600ms;
}
.home .service .allItems .item .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 600ms;
}
.home .service .allItems .item .pic img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.home .service .allItems .item p {
  color: #333333;
  font-size: 20px;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  margin: 20px 0;
  position: relative;
  padding-bottom: 40px;
  transition: all 600ms;
  transform: translateY(60px);
}
.home .service .allItems .item p::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: #333333;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: all 600ms;
}
.home .service .allItems .item .des {
  color: #FFFEFE;
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-LIGHT";
  width: 90%;
  margin: 30px auto;
  text-align: center;
  line-height: 30px;
  padding-bottom: 40px;
  transition: all 600ms;
  opacity: 0;
  position: relative;
  transform: translateY(60px);
}
.home .service .allItems .item .des::after {
  content: "";
  display: block;
  width: 40px;
  height: 1px;
  background: white;
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  bottom: 0;
  transition: all 600ms;
}
.home .service .allItems .item:hover {
  background-color: #425CBB;
}
.home .service .allItems .item:hover .pic {
  transform: translateY(0);
}
.home .service .allItems .item:hover .pic img:nth-child(1) {
  opacity: 0;
}
.home .service .allItems .item:hover .pic img:nth-child(2) {
  opacity: 1;
}
.home .service .allItems .item:hover p {
  color: white;
  transform: translateY(0);
}
.home .service .allItems .item:hover p::after {
  opacity: 0;
}
.home .service .allItems .item:hover .des {
  opacity: 1;
  transform: translateY(-50px);
}
.home .cases {
  width: 75%;
  margin: 60px auto;
}
.home .cases .title {
  text-align: center;
  color: #272729;
}
.home .cases .title p:nth-child(1) {
  font-size: 32px;
  font-family: "SOURCEHANSANSCN-BOLD";
}
.home .cases .title p:nth-child(2) {
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin-top: 15px;
  color: #333333;
}
.home .cases .allImgs {
  width: 100%;
  margin: 60px auto;
  position: relative;
}
.home .cases .allImgs .prev {
  position: absolute;
  left: -100px;
  width: 45px;
  height: 45px;
  border: 1px solid #333333;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  outline: none;
  transition: all 600ms;
}
.home .cases .allImgs .prev img {
  object-fit: contain;
  transition: all 600ms;
}
.home .cases .allImgs .prev img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home .cases .allImgs .prev:hover {
  background: #425CBB;
  border-color: #425CBB;
}
.home .cases .allImgs .prev:hover img:nth-child(1) {
  opacity: 0;
}
.home .cases .allImgs .prev:hover img:nth-child(2) {
  opacity: 1;
}
.home .cases .allImgs .next {
  position: absolute;
  right: -100px;
  width: 45px;
  height: 45px;
  border: 1px solid #333333;
  border-radius: 50%;
  top: 50%;
  transform: translateY(-50%) rotateY(180deg);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 100;
  cursor: pointer;
  outline: none;
  transition: all 600ms;
}
.home .cases .allImgs .next img {
  object-fit: contain;
  transition: all 600ms;
}
.home .cases .allImgs .next img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
}
.home .cases .allImgs .next:hover {
  background: #425CBB;
  border-color: #425CBB;
}
.home .cases .allImgs .next:hover img:nth-child(1) {
  opacity: 0;
}
.home .cases .allImgs .next:hover img:nth-child(2) {
  opacity: 1;
}
.home .cases .allImgs .swiper-container .swiper-wrapper .swiper-slide a {
  display: block;
  background-color: #EEEEEE;
  width: 100%;
  position: relative;
}
.home .cases .allImgs .swiper-container .swiper-wrapper .swiper-slide a .computer {
  position: absolute;
  max-width: 90%;
  left: 50%;
  transform: translateX(-50%);
  top: 50px;
  transition: all 600ms;
}
.home .cases .allImgs .swiper-container .swiper-wrapper .swiper-slide a .computer .pro {
  position: absolute;
  left: 10px;
  top: 12px;
  width: calc(100% - 20px);
  display: block;
  object-fit: cover;
  transition: all 600ms;
}
.home .cases .allImgs .swiper-container .swiper-wrapper .swiper-slide a .pic {
  width: 100%;
}
.home .cases .allImgs .swiper-container .swiper-wrapper .swiper-slide a .pic img {
  width: 100%;
  display: block;
  object-fit: cover;
}
.home .cases .allImgs .swiper-container .swiper-wrapper .swiper-slide a p {
  color: #333333;
  text-align: center;
  padding: 80px 0 30px 0;
  transition: all 600ms;
}
.home .cases .allImgs .swiper-container .swiper-wrapper .swiper-slide a:hover .computer {
  top: 0;
}
.home .cases .allImgs .swiper-container .swiper-wrapper .swiper-slide a:hover p {
  transform: translateY(-30px) scale(1.5);
}
.home .cases .more {
  width: 157px;
  height: 45px;
  background: #425CBB;
  border-radius: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  color: white;
  margin: 40px auto;
  font-family: "SOURCEHANSANSCN-MEDIUM";
  cursor: pointer;
}
.home .cases .more img {
  margin-left: 10px;
  transition: all 600ms;
}
.home .cases .more:hover img {
  transform: translateX(10px);
}
.home .reasons {
  width: 100%;
  padding: 60px 0;
  background-color: #F1F1F1;
}
.home .reasons .title {
  text-align: center;
  color: #272729;
}
.home .reasons .title p:nth-child(1) {
  font-size: 32px;
  font-family: "SOURCEHANSANSCN-BOLD";
}
.home .reasons .title p:nth-child(2) {
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin-top: 15px;
  color: #333333;
}
.home .reasons .allItems {
  width: 80%;
  margin: 60px auto;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
}
.home .reasons .allItems .item {
  width: 32%;
  background: #FFFFFF;
  box-shadow: 0px 8px 11px 2px rgba(31, 48, 179, 0.06);
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
  text-align: center;
  padding: 60px 0;
  margin-bottom: 30px;
}
.home .reasons .allItems .item .pic img {
  transition: all 600ms;
}
.home .reasons .allItems .item .p1 {
  font-size: 20px;
  font-family: "SOURCEHANSANSCN-BOLD";
  color: #272729;
  margin: 20px 0;
}
.home .reasons .allItems .item .des {
  color: #333333;
  font-size: 14px;
  line-height: 30px;
}
.home .reasons .allItems .item:hover .pic img {
  transform: rotateY(360deg);
}
.home .news {
  width: 100%;
  background: url("../images/nbg.png") no-repeat;
  background-size: cover;
  padding: 60px 0;
}
.home .news .title {
  text-align: center;
  color: white;
}
.home .news .title p:nth-child(1) {
  font-size: 32px;
  font-family: "SOURCEHANSANSCN-BOLD";
}
.home .news .title p:nth-child(2) {
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin-top: 15px;
}
.home .news .allItems {
  width: 80%;
  margin: 60px auto;
  display: flex;
  flex-wrap: wrap;
}
.home .news .allItems a {
  width: 28%;
  color: white;
  margin-left: 5%;
  margin-bottom: 60px;
  transition: all 600ms;
}
.home .news .allItems a .p1 {
  font-size: 18px;
  font-family: "SOURCEHANSANSCN-BOLD";
}
.home .news .allItems a .des {
  font-size: 14px;
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin: 20px 0 30px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.home .news .allItems a .more {
  display: flex;
  align-items: center;
}
.home .news .allItems a .more span {
  font-family: "SOURCEHANSANSCN-MEDIUM";
}
.home .news .allItems a .more .pic {
  position: relative;
  display: inline-block;
  margin-left: 20px;
}
.home .news .allItems a .more .pic img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  transition: all 600ms;
}
.home .news .allItems a .more .pic img:nth-child(2) {
  opacity: 0;
  position: absolute;
  left: 0;
  top: 0;
}
.home .news .allItems a:hover {
  color: #93A0D2;
}
.home .news .allItems a:hover .more .pic img:nth-child(1) {
  opacity: 0;
}
.home .news .allItems a:hover .more .pic img:nth-child(2) {
  opacity: 1;
}
.home .brand {
  width: 100%;
  padding: 60px 0;
}
.home .brand .title {
  text-align: center;
  color: #272729;
}
.home .brand .title p:nth-child(1) {
  font-size: 32px;
  font-family: "SOURCEHANSANSCN-BOLD";
}
.home .brand .title p:nth-child(2) {
  font-family: "SOURCEHANSANSCN-LIGHT";
  margin-top: 15px;
  color: #333333;
}
.home .brand .allItems {
  display: flex;
  flex-wrap: wrap;
  width: 80%;
  margin: 0 auto;
}
.home .brand .allItems .item {
  width: 25%;
  height: 120px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.home .brand .allItems .item img {
  max-width: 80%;
  max-height: 100%;
  object-fit: contain;
  opacity: 0.3;
  transition: all 600ms;
}
.home .brand .allItems .item:hover img {
  opacity: 1;
}
@media screen and (max-width: 1440px) {
  .home .banner .swiper-container .swiper-wrapper .swiper-slide .text .p1 {
    font-size: 40px;
    line-height: 60px;
  }
  .home .cases .allImgs .swiper-container .swiper-wrapper .swiper-slide a p {
    padding: 150px 0 30px 0;
  }
}
@media screen and (max-width: 1000px) {
  .home .banner .swiper-container .swiper-wrapper .swiper-slide .text .p1 {
    font-size: 20px;
    line-height: 30px;
  }
  .home .banner .swiper-container .swiper-wrapper .swiper-slide .text .des {
    font-size: 16px;
    margin: 10px 0;
  }
  .home .banner .prev, .home .banner .next {
    display: none;
  }
  .home .cases {
    width: 90%;
    margin: 30px auto;
  }
  .home .cases .title {
    width: 90%;
    margin: 0 auto;
  }
  .home .cases .title p:nth-child(1) {
    font-size: 22px;
  }
  .home .cases .allImgs {
    margin: 30px auto;
  }
  .home .service {
    margin: 30px auto;
  }
  .home .service .title {
    width: 90%;
    margin: 0 auto;
  }
  .home .service .title p:nth-child(1) {
    font-size: 22px;
  }
  .home .service .allItems {
    margin: 30px auto;
    flex-wrap: wrap;
  }
  .home .service .allItems .item {
    width: 100%;
    padding: 30px 0 0 0;
  }
  .home .reasons {
    padding: 30px 0;
  }
  .home .reasons .title {
    width: 90%;
    margin: 0 auto;
  }
  .home .reasons .title p:nth-child(1) {
    font-size: 22px;
  }
  .home .reasons .allItems {
    width: 90%;
    margin: 30px auto;
  }
  .home .reasons .allItems .item {
    width: 100%;
    margin-bottom: 15px;
  }
  .home .news {
    padding: 30px 0;
  }
  .home .news .title {
    width: 90%;
    margin: 0 auto;
  }
  .home .news .title p:nth-child(1) {
    font-size: 22px;
  }
  .home .news .allItems {
    width: 90%;
    margin: 30px auto;
  }
  .home .news .allItems a {
    width: 100%;
    margin-left: 0;
    margin-bottom: 30px;
  }
  .home .brand {
    padding: 30px 0;
  }
  .home .brand .title {
    width: 90%;
    margin: 0 auto;
  }
  .home .brand .title p:nth-child(1) {
    font-size: 22px;
  }
  .home .brand .allItems {
    justify-content: space-between;
  }
  .home .brand .allItems .item {
    width: 45%;
    height: 60px;
  }
}

/*# sourceMappingURL=index.css.map */
