* {
  padding: 0;
  margin: 0;
}

html {
  font-size: 75px;
}

#app {
  font-family: Avenir, Helvetica, Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow: hidden;
}

.input-form-cls .el-input__inner {
  border: 0 !important;
}

#moveImg {
  position: absolute;
  left: 0;
  top: 0;
  z-index: -1;
}

.page-container {
  width: 100%;
  height: 100vh;
  min-height: 840px;
  background: rgba(61, 249, 193, 0.1);
  font-size: 16px;
  position: relative;
}

.page-container .page-content {
  width: 1100px;
  height: 100%;
  margin: 0 auto;
  position: relative;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

.page-container .page-content header {
  width: 100%;
  height: 100px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
}

.page-container .page-content header .flex-1 {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
}

.page-container .page-content header a {
  color: #0c101b;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
  margin-left: 24px;
}

.page-container .page-content header span {
  margin-left: 40px;
  color: #0c101b;
  text-decoration: none;
  cursor: pointer;
  font-weight: 700;
  line-height: 1;
}

.page-container .page-content .main {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  height: calc(100% - 164px);
  padding: 0 80px 0 50px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
}

.page-container .page-content .main .right {
  color: #000;
  position: relative;
  top: -60px;
}

.page-container .page-content .main .right h1 {
  font-size: 44px;
  font-weight: 700;
  margin: 0;
}

.page-container .page-content .main .right p {
  font-size: 36px;
  margin: 0;
}

.page-container .page-content .main .right .btn .download,
.page-container .page-content .main .right .btn {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.page-container .page-content .main .right .btn .download {
  width: 160px;
  height: 56px;
  border-radius: 40px;
  background: #00d394;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 16px;
  font-weight: 700;
  margin: 25px 0;
  cursor: pointer;
  color: #fff;
}

.page-container .page-content .main .right .btn .download img {
  padding-right: 5px;
  position: relative;
  top: -2px;
}

.page-container .page-content .main .right .btn .download:hover {
  background: #24e8ae;
}

.page-container .page-content .main .right .btn .iphone {
  margin-right: 18px;
}

.page-container .page-content .main .right .qrcode {
  width: 187px;
  background: #fff;
  padding: 8px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  border-radius: 8px;
  color: #7f7f7f;
  text-align: center;
  font-size: 14px;
  font-weight: 700;
}

.page-container .page-content .main .right .qrcode img {
  width: 100%;
}

.page-container .page-content footer {
  font-size: 12px;
  color: #6d6f76;
  text-align: center;
  line-height: 1.5;
  padding-bottom: 10px;
  position: absolute;
  bottom: 0;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.page-container .page-content footer a {
  color: #6d6f76;
  text-decoration: none;
}

.page-container .left-top {
  position: absolute;
  width: 500px;
  left: -300px;
  top: -100px;
  z-index: -1;
  -webkit-animation: rotateLeft-data-v-2c87a56c 15s linear infinite;
  animation: rotateLeft-data-v-2c87a56c 15s linear infinite;
}

.page-container .right-bottom {
  position: absolute;
  width: 500px;
  right: -300px;
  bottom: -100px;
  z-index: -1;
  -webkit-animation: rotateRight-data-v-2c87a56c 15s linear infinite;
  animation: rotateRight-data-v-2c87a56c 15s linear infinite;
}

@-webkit-keyframes rotateLeft-data-v-2c87a56c {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    left: -300px;
    top: -100px;
  }

  50% {
    left: -100px;
    top: -300px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    left: -300px;
    top: -100px;
  }
}

@keyframes rotateLeft-data-v-2c87a56c {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    left: -300px;
    top: -100px;
  }

  50% {
    left: -100px;
    top: -300px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    left: -300px;
    top: -100px;
  }
}

@-webkit-keyframes rotateRight-data-v-2c87a56c {
  0% {
    right: -300px;
    bottom: -100px;
  }

  50% {
    right: -100px;
    bottom: -300px;
  }

  to {
    right: -300px;
    bottom: -100px;
  }
}

@keyframes rotateRight-data-v-2c87a56c {
  0% {
    right: -300px;
    bottom: -100px;
  }

  50% {
    right: -100px;
    bottom: -300px;
  }

  to {
    right: -300px;
    bottom: -100px;
  }
}

.bg-box {
  color: #00d394;
  padding: 10px 10px 3px 10px;
}

@media only screen and (max-width: 481px) {
  html {
    font-size: 10vw;
  }
}

html,
body {
  padding: 0;
  margin: 0;
}
.download {
  width: 100%;
  min-height: 100vh;
  margin: 0 auto;
  background-size: 100% 100%;
  background: rgba(61, 249, 193, 0.1);
  -ms-flex-pack: distribute;
  justify-content: space-around;
  position: relative;
  overflow: hidden;
}

.download .img-title {
  padding-top: 0.53333rem;
  text-align: center;
}

.download .img-title,
.download {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.download .img-title img:first-child {
  width: 2.13333rem;
  margin-bottom: 0.13333rem;
}

.download .img-title img:last-child {
  width: 4.96rem;
}

.download .img-main {
  width: 100%;
  padding: 0 0.53333rem;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
}

.download .img-main img {
  width: 7.2rem;
  margin: auto;
  margin-bottom: 0;
}

.download .btn-down {
  padding-bottom: 0.26667rem;
}

.download .btn-down .btn {
  width: 8rem;
  height: 1.33333rem;
  border-radius: 4rem;
  color: #fff;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  font-size: 0.42667rem;
  background: #00d394;
  margin-bottom: 0.26667rem;
}

.download .btn-down .btn img {
  width: 0.37333rem;
  margin-right: 0.13333rem;
}

.download .btn-down .btn:last-child {
  background: none;
  color: #000;
  margin-bottom: 0;
}

.download .left-top {
  position: absolute;
  width: 200px;
  left: -120px;
  top: -20px;
  z-index: -1;
  -webkit-animation: rotateLeft-data-v-28c75ebc 15s linear infinite;
  animation: rotateLeft-data-v-28c75ebc 15s linear infinite;
}

@keyframes rotateLeft-data-v-28c75ebc {
  0% {
    -webkit-transform: rotate(0);
    transform: rotate(0);
    left: -120px;
    top: -20px;
  }

  50% {
    left: -20px;
    top: -120px;
    -webkit-transform: rotate(180deg);
    transform: rotate(180deg);
  }

  to {
    -webkit-transform: rotate(1turn);
    transform: rotate(1turn);
    left: -120px;
    top: -20px;
  }
}

.download .right-bottom {
  position: absolute;
  width: 200px;
  right: -120px;
  bottom: -20px;
  z-index: -1;
  -webkit-animation: rotateRight-data-v-28c75ebc 15s linear infinite;
  animation: rotateRight-data-v-28c75ebc 15s linear infinite;
}

@keyframes rotateRight-data-v-28c75ebc {
  0% {
    right: -120px;
    bottom: -20px;
  }

  50% {
    right: -20px;
    bottom: -120px;
  }

  to {
    right: -120px;
    bottom: -20px;
  }
}
