@charset "utf-8";
/**
  * @name: 联系我们 页面样式
  * @update:2022-1-11
  **/


/* ======================================= 
            联系我们页样式 开始
   =======================================*/
/* 公司地址模块 开始 */
.m-contactMain {
  position: relative;
  width: 100%;
  height: 1080px;
  overflow: hidden;

}

.m-contactMain .bg {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: auto;
  overflow: hidden;
  z-index: 10;
}

.m-contactMain .bg img {
  display: block;
  width: 100%;
  height: auto;
  min-height: 1080px;
}

.m-contactMain .cont {
  position: relative;
  width: 100%;
  height: 100%;
  padding-bottom: 10px;
  z-index: 20;
}

.m-contactMain .cont .left {
  width: 43%;
  padding-top: 220px;
  height: 100%;
}



/* 文字 开始 */
.m-contactMain .word {
  height: 390px;
  overflow: hidden;
}

.m-contactMain .word li {
  float: left;
  font-size: 130px;
  font-weight: bold;
  color: #fff;
  letter-spacing: 10px;
}

.m-contactMain .word li.change {
  background-image: -webkit-linear-gradient(-90deg, rgba(255, 255, 255, 1), rgba(255, 255, 255, .8), rgba(255, 255, 255, 0));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* 文字 结束 */


/* 地址 开始 */
.m-contactMain .address {
  margin-top: 80px;
}

.m-contactMain .address ul {
  width: 706px;
  /* height: 180px; */
  padding: 30px 50px;
  border-radius: 20px;
  background: rgba(0, 0, 0, .15);
}

.m-contactMain .address ul li {
  height: 60px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.m-contactMain .address ul li p {
  font-size: 26px;
  color: #fff;
}

.m-contactMain .address ul li p .icon {
  display: inline-block;
  width: 28px;
  height: 30px;
  vertical-align: middle;
  margin-right: 5px;
  background: url(../images/address_icon_sprite.png) no-repeat;
}

.m-contactMain .address ul li p .icon-1 {
  background-position: 0 0;
}

.m-contactMain .address ul li p .icon-2 {
  background-position: -40px 0;
}

.m-contactMain .address ul li p .icon-3 {
  background-position: -84px 0;
  margin-top: -5px;
}

.m-contactMain .address ul li p span {
  display: inline-block;
}


/* 地址 结束 */
.m-contactMain .cont .right {
  width: 57%;
  height: 100%;
}

.m-contactMain .cartoon {
  position: relative;
  width: 100%;
  height: 100%;
  perspective: 500px;
  transform-style: preserve-3d;
}

.m-contactMain .cartoon .cartoonBg {
  position: absolute;
}

.m-contactMain .cartoon .house {
  bottom: 60px;
  left: 70px;
  width: 955px;
  height: 702px;
}

.m-contactMain .cartoon .bigball {
  left: 0;
  bottom: 570px;
  width: 203px;
  height: 257px;
  animation: ballMove 4s linear infinite;
}

@keyframes ballMove {
  0% {
    transform: translateY(0);
  }

  25% {
    transform: translateY(-40px);
  }

  50% {
    transform: translateY(0);
  }

  75% {
    transform: translateY(40px);
  }

  100% {
    transform: translateY(0);
  }
}

.m-contactMain .cartoon .twocloud {
  bottom: 770px;
  left: 315px;
  width: 280px;
  height: 122px;
  animation: cloudMove 4s linear reverse infinite;
}

@keyframes cloudMove {
  0% {
    transform: translateX(0);
  }

  25% {
    transform: translateX(-20px);
  }

  50% {
    transform: translateX(0);
  }

  75% {
    transform: translateX(20px);
  }

  100% {
    transform: translateX(0);
  }
}

.m-contactMain .cartoon .plane {
  bottom: 600px;
  left: 390px;
  width: 331px;
  height: 237px;
  animation: planeMove 5s linear infinite;
}



.m-contactMain .cartoon .planeShadow {
  bottom: 440px;
  left: 465px;
  width: 245px;
  height: 178px;
  animation: planeMove 5s linear infinite;
}

@keyframes planeMove {
  0% {
    transform: translate3D(0, 0, 0);
  }

  100% {
    transform: translate3D(380px, 380px, 380px);
  }
}

.m-contactMain .cartoon .smallball {
  left: 760px;
  bottom: 635px;
  width: 144px;
  height: 182px;
  animation: ballMove 4s linear reverse infinite;
}

.m-contactMain .cartoon .onecloud {
  left: 925px;
  bottom: 590px;
  width: 104px;
  height: 85px;
  animation: cloudMove 4s linear infinite;
}

/* 公司地址模块 结束 */
/* ======================================= 
            联系我们页样式 结束
   =======================================*/