@-webkit-keyframes scaleDrew {
  /* 定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称 */
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  25% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }

  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  75% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

@keyframes scaleDrew {
  /* 定义关键帧、scaleDrew是需要绑定到选择器的关键帧名称 */
  0% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  25% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }

  50% {
    -webkit-transform: scale(1);
            transform: scale(1);
  }

  75% {
    -webkit-transform: scale(1.05);
            transform: scale(1.05);
  }
}

html {
  width: 100%;
  height: 100%;
  margin: 0;
  padding: 0;
  /* font-size: calc(100vw/37.5); */
  font-family: "PingFangSC-Regular";
}

body {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
}

img {
  display: block;
  margin: 0 auto;
}

.download-container {
  position: relative;
  min-height: 100%;
}

.download {
  display: none;
  position: relative;
  width: 100vw;
  height: 100vh;
  /* background: url('../image/bg.png') no-repeat center; */
  background-size: contain;
}

.download-wechat {
  position: absolute;
  top: 0.32rem;
  right: 0.6rem;
  font-size: 0.32rem;
  line-height: 0.46rem;
  color: #fff;
  text-align: center;
  z-index: 2;
}

.guide-tip {
  display: none;
}

.download-wechat-jt {
  text-align: right;
}

.download-wechat-jt img {
  margin-right: 0.24rem;
  width: 0.8rem;
  height: 0.76rem;
}

#sign-download {
  width: 100vw;
  height: calc(100vh - 3.62rem);
  position: relative;
  display: none;
  padding-top: 3.62rem;
}

.sign-download-btn {
  width: 3.98rem;
  height: auto;
  margin: 0 auto;
  -webkit-animation: scaleDrew 2s ease-in-out infinite;
          animation: scaleDrew 2s ease-in-out infinite;
}

.common-cover {
  display: none;
  position: absolute;
  left: 0;
  top: 0;
  right: 0;
  bottom: 0;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.6);
}

.sign-wx-download {
  display: none;
}

#cbibank-download {
  width: 100%;
  position: relative;
}

.cbibank-download-back {
  width: 100%;
  height: auto;
}

.cbibank-download-btn {
  position: absolute;
  left: 50%;
  margin-left: -2.63rem;
  top: 5.56rem;
  width: 5.26rem;
  height: 0.96rem;
  -webkit-animation: scaleDrew 2s ease-in-out infinite;
          animation: scaleDrew 2s ease-in-out infinite;
}

.cbibank-download-btn.en {
  top: 5.46rem;
}

.cbibank-code-title {
  position: absolute;
  left: 50%;
  margin-left: -2.63rem;
  top: 1.485rem;
  width: 5.26rem;
}

.cbibank-code-title.en {
  position: absolute;
  left: 50%;
  margin-left: -2.63rem;
  top: 1.8rem;
  width: 5.26rem;
  height: 0.96rem;
}

.cbibank-code {
  position: absolute;
  left: 50%;
  margin-left: -0.82rem;
  top: 3.48rem;
  width: 1.64rem;
  height: 1.64rem;
}

.cbibank-code.en {
  top: 3.25rem;
  margin-left: -2.63rem;
  width: 5.26rem;
  height: 1.64rem;
}

#loader-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 999999;
}

#loader {
  display: block;
  position: relative;
  left: 50%;
  top: 50%;
  width: 1.33333rem;
  height: 1.33333rem;
  margin: -0.66667rem 0 0 -0.66667rem;
  border-radius: 50%;
  border: 0.05333rem solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin 2s linear infinite;
  animation: spin 2s linear infinite;
  z-index: 1001;
}

#loader:before {
  content: "";
  position: absolute;
  top: 0.13333rem;
  left: 0.13333rem;
  right: 0.13333rem;
  bottom: 0.13333rem;
  border-radius: 50%;
  border: 0.08rem solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin 3s linear infinite;
  animation: spin 3s linear infinite;
}

#loader:after {
  content: "";
  position: absolute;
  top: 0.4rem;
  left: 0.4rem;
  right: 0.4rem;
  bottom: 0.4rem;
  border-radius: 50%;
  border: 0.08rem solid transparent;
  border-top-color: #fff;
  -webkit-animation: spin 1.5s linear infinite;
  animation: spin 1.5s linear infinite;
}

.load-text {
  display: none;
}

@-webkit-keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

@keyframes spin {
  0% {
    -webkit-transform: rotate(0deg);
    transform: rotate(0deg);
  }

  100% {
    -webkit-transform: rotate(360deg);
    transform: rotate(360deg);
  }
}

#loader-wrapper .loader-section {
  position: fixed;
  top: 0;
  width: 50%;
  height: 100%;
  background: rgba(0, 0, 0, 0.3);
  z-index: 1000;
  -webkit-transform: translateX(0);
  transform: translateX(0);
}

#loader-wrapper .loader-section.section-left {
  left: 0;
}

#loader-wrapper .loader-section.section-right {
  right: 0;
}

.loaded #loader-wrapper .loader-section.section-left {
  -webkit-transform: translateX(-100%);
  transform: translateX(-100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader-wrapper .loader-section.section-right {
  -webkit-transform: translateX(100%);
  transform: translateX(100%);
  -webkit-transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  transition: all 0.7s 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.loaded #loader {
  opacity: 0;
  -webkit-transition: all 0.3s ease-out;
  transition: all 0.3s ease-out;
}

.loaded #loader-wrapper {
  visibility: hidden;
  -webkit-transform: translateY(-100%);
  transform: translateY(-100%);
  -webkit-transition: all 0.3s 1s ease-out;
  transition: all 0.3s 1s ease-out;
}

.no-js #loader-wrapper {
  display: none;
}

.no-js h1 {
  color: #222222;
}

#loader-wrapper .load_title {
  font-family: "Open Sans";
  color: #fff;
  font-size: 0.32rem;
  width: 100%;
  text-align: center;
  z-index: 9999999999999;
  position: absolute;
  top: 60%;
}

#loader-wrapper .load_title span {
  font-weight: normal;
  font-style: italic;
  font-size: 0.32rem;
  color: #fff;
}

#cbtj-download {

  width: 100vw;
  height: 7.5rem;
  position: relative;
  display: none;
  padding-top: 7.25rem;
}

.cbtj-download-btn {
  width: 5.00rem;
  height: auto;
  margin: 0 auto;
  -webkit-animation: scaleDrew 2s ease-in-out infinite;
          animation: scaleDrew 2s ease-in-out infinite;
}

