html,
body,
div,
p {
  margin: 0;
  padding: 0;
}

html {
  height: 100%;
}

#pic {
  display: none;
  width: 100%;
}

.download {
  display: none;
  overflow: hidden;
  position: relative;
  background-image: url('../img/bg.png?v=1');
  background-repeat: no-repeat;
  background-size: 100% auto;
}

.download__logo {
  width: 4.3rem;
  height: .5rem;
  margin: .4rem 0 0 .4rem;
}

img {
  width: 100%;
  vertical-align: top;
}

.download__content {
  width: 6.9rem;
  height: 5.64rem;
  margin: 6.1rem auto .42rem;
  overflow: hidden;
  background: linear-gradient(180deg, #FFFFFF 0%, #FFFFFF 100%);
  box-shadow: 0rem 0.16rem 0.18rem 0rem rgba(28, 74, 185, 0.05);
  border-radius: 0.3rem;
}

.download__content-advantage {
  width: 5.68rem;
  height: 2.64rem;
  margin: .56rem auto .48rem;
}

.download__content-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto;
  width: 6.42rem;
  height: 1.04rem;
  margin-bottom: .28rem;
  background: linear-gradient(317deg, #3F77FF 0%, #0062FF 100%);
  box-shadow: 0rem 0.04rem 0.1rem 0rem rgba(14, 54, 188, 0.46);
  border-radius: 0.52rem;
  font-size: 0.36rem;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  color: #FFFFFF;
  line-height: 1.04rem;
  text-align: center;
  position: relative;
}


.download__content-btn .down {
  width: .32rem;
  margin-right: .2rem;
}

.download__content-btn .shou {
  width: 1.52rem;
  height: 1.38rem;
  position: absolute;
  top: 0.34rem;
  right: -0.2rem;
  animation: pulse 1s infinite;
  cursor: pointer;
}

.download__content-btn .fix {
  width: 2.58rem;
  height: 0.56rem;
  position: absolute;
  top: -0.3rem;
  right: 0.5rem;
}


.download__content-hint {
  font-size: 0.24rem;
  font-family: PingFangSC-Regular, PingFang SC;
  color: #B4B4B9;
  line-height: 0.36rem;
  text-align: center;
}

.download__footer {
  width: 6.9rem;
  margin: 0 auto;
  padding-bottom: .38rem;
  text-align: center;
  font-size: 0.22rem;
  font-family: PingFangSC-Regular, PingFang SC;
  color: #AFAFAF;
  line-height: 0.4rem;
}

@keyframes pulse {
  0% {
    transform: translateX(0) translateY(0);
  }

  50% {
    transform: translateX(0.14rem) translateY(0.1rem);
  }

  100% {
    transform: translateX(0) translateY(0);
  }
}