.mission {
  height: calc(100vh + 1400px);
  background: #F7F8FA;
  position: relative;
}
.mission .wrap {
  width: 100%;
  height: 100vh;
  position: relative;
  z-index: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
.mission .wrap .bg {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
  z-index: -1;
  transform: scale(0.625);
}
.mission .wrap .bg img {
  width: 100%;
  height: 100%;
}
.mission .wrap .bg:after {
  content: '';
  position: absolute;
  width: 100%;
  height: 100%;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.4);
}
.mission .wrap .text {
  width: 882px;
  margin: auto;
  text-align: center;
}
.mission .wrap .text span {
  font-size: 32px;
  font-weight: 500;
  color: #FEFEFE;
  display: block;
  margin: 0 0 47px;
}
.mission .wrap .text p {
  font-size: 18px;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 36px;
  opacity: 0.8;
}
/*# sourceMappingURL=mission.css.map */

@media screen and (max-width: 1023px) {
  .mission{
    height: auto;
  }
  .mission .wrap{
    height: 70vh;
  }
  .mission .wrap .text{
    width: 90%;
  }
  .mission .wrap .text span{
    font-size: 24px;
    margin: 0 0 25px;
  }
  .mission .wrap .text p{
    font-size: 13px;
    line-height: 30px;
  }
  .mission .wrap .bg{
    transform: scale(1);
  }
}