* {
  margin: 0;
  padding: 0;
}

a {
  text-decoration: none;
}

@-webkit-keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@keyframes bounce {
  0%, 100%, 20%, 50%, 80% {
    -webkit-transform: translateY(0);
    -ms-transform: translateY(0);
    transform: translateY(0);
  }
  40% {
    -webkit-transform: translateY(-30px);
    -ms-transform: translateY(-30px);
    transform: translateY(-30px);
  }
  60% {
    -webkit-transform: translateY(-15px);
    -ms-transform: translateY(-15px);
    transform: translateY(-15px);
  }
}
@-webkit-keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes pulse {
  0% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
  50% {
    -webkit-transform: scale(1.1);
    -ms-transform: scale(1.1);
    transform: scale(1.1);
  }
  100% {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
  }
}
.pulse-ani-1 {
  animation-name: pulse;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-iteration-count: 1;
}

.pulse-ani-all {
  animation-name: pulse;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-iteration-count: infinite;
}

.ladi-transition {
  transition: all 150ms linear 0s;
  animation-name: pulse;
  animation-delay: 1s;
  animation-duration: 1s;
  animation-iteration-count: infinite;
}

.page {
  background-image: url("./../img/bg.jpg");
  position: relative;
  overflow: hidden;
}
.page .user-avatar-head {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  display: flex;
  padding: 2px;
  position: absolute;
  top: 15px;
  left: 25px;
}
.page .user-avatar-head img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: block;
}
.page .header {
  width: 100%;
}
.page .header .qr-box-wrapper {
  width: 100%;
  padding: 70px 40px 40px 40px;
  box-sizing: border-box;
}
.page .header .qr-box-wrapper .qr-box {
  background-color: #FFFFFF;
  margin: 0 auto;
  border-radius: 14px;
  position: relative;
  padding: 40px 20px 20px 20px;
}
.page .header .qr-box-wrapper .qr-box .user-avatar {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  display: flex;
  padding: 2px;
  position: absolute;
  top: -30px;
  left: calc(50% - 30px);
}
.page .header .qr-box-wrapper .qr-box .user-avatar img {
  border-radius: 50%;
  width: 100%;
  height: 100%;
  display: block;
}
.page .header .qr-box-wrapper .qr-box .user-account-info {
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page .header .qr-box-wrapper .qr-box .user-account-info .account-name {
  width: 100%;
  margin-top: 10px;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-size: 16px;
  font-weight: bold;
  line-height: 1.6;
}
.page .header .qr-box-wrapper .qr-box .user-account-info .account-tip {
  margin: 10px 0;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  line-height: 1.6;
}
.page .header .qr-box-wrapper .qr-box .user-qrcode {
  display: block;
  width: 220px;
  height: 220px;
  margin: 15px auto;
}
.page .header .qr-box-wrapper .qr-box .user-qrcode img {
  height: 100%;
  width: 100%;
}
.page .header .qr-box-wrapper .qr-box .save-tip {
  margin-top: 10px;
  text-align: center;
  color: rgba(0, 0, 0, 0.4);
  font-size: 14px;
  line-height: 1.6;
}
.page .header .show-text-list {
  animation-name: bounce;
  animation-duration: 3s;
  animation-iteration-count: infinite;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.page .header .show-text-list .text-item {
  white-space: pre-line;
  font-family: Montserrat, sans-serif;
  font-size: 21px;
  font-weight: bold;
  font-style: italic;
  line-height: 1.2;
  color: rgb(255, 1, 1);
  text-align: center;
  display: inline-block;
  word-break: break-word;
  background-size: cover;
  background-position: center center;
}
.page .header .href-list {
  padding: 30px 30px 0px 30px;
}
.page .header .href-list .href-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
  position: relative;
  background-color: rgb(5, 31, 79);
  height: 46px;
  border-radius: 30px;
  margin-bottom: 20px;
  animation-name: pulse;
  animation-delay: 0s;
  animation-duration: 3s;
  animation-iteration-count: 1;
}
.page .header .href-list .href-item .href-icon {
  position: absolute;
  left: 11px;
}
.page .header .href-list .href-item .href-txt {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  color: rgb(241, 243, 244);
}
.page .xing-l {
  width: 58px;
  height: 56px;
  background-image: url(./../img/xing2.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  left: 15px;
  top: 510px;
}
.page .xing-r {
  width: 70px;
  height: 81px;
  background-image: url(./../img/xing1.png);
  background-repeat: no-repeat;
  background-size: cover;
  position: absolute;
  right: 15px;
  top: 520px;
}
.page .other-svg {
  width: 80px;
  height: 95px;
  position: absolute;
}
.page .other-svg-1 {
  top: 0;
  left: -60px;
}
.page .other-svg-2 {
  top: 380px;
  left: -60px;
}
.page .other-svg-3 {
  top: 550px;
  left: -60px;
}
.page .other-svg-4 {
  top: 180px;
  right: -50px;
}
.page .other-svg-5 {
  top: 650px;
  right: -50px;
}
.page .footer {
  display: flex;
  flex-direction: column;
}
.page .footer .footer-shape .footer-header-img {
  margin-left: -65px;
  margin-bottom: -7px;
  overflow: hidden;
}
.page .footer .footer-shape .footer-header-img svg {
  height: 101px;
  width: 1285px;
}
.page .footer .footer-content {
  background-color: rgb(0, 74, 173);
  padding: 0 20px 20px 20px;
}
.page .footer .footer-content .title-info {
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  color: rgb(255, 255, 255);
  text-align: center;
  margin-bottom: 15px;
}
.page .footer .footer-content .icon-list .icon-item {
  display: flex;
  flex-direction: row;
  align-items: center;
  margin-bottom: 10px;
}
.page .footer .footer-content .icon-list .icon-item .address-i {
  width: 14.1076px;
  height: 25.7569px;
}
.page .footer .footer-content .icon-list .icon-item .phone-i {
  width: 18.3656px;
  height: 25.0029px;
}
.page .footer .footer-content .icon-list .icon-item .icon-item-i {
  flex-shrink: 0;
}
.page .footer .footer-content .icon-list .icon-item .icon-item-t {
  margin-left: 10px;
  font-size: 12px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}
.page .footer .footer-content .ys-button {
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  color: rgb(39, 36, 96);
  text-align: center;
  height: 41px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}
.page .footer .footer-content .footer-img-aq {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 15px;
}
.page .footer .footer-content .footer-img-aq .img-aq-l {
  width: 197px;
  height: 43.8301px;
  background-image: url(./../img/visa.jpg);
  background-size: cover;
}
.page .footer .footer-content .footer-img-aq .img-aq-r {
  width: 105.64px;
  height: 57.8776px;
  background-image: url(./../img/dmca.png);
  background-size: cover;
}
.page .footer .footer-content .copyright {
  font-size: 14px;
  line-height: 1.4;
  color: rgba(255, 255, 255, 0.8);
}

.mfp-title {
  display: flex;
  justify-content: center;
  padding: 0;
}

.down-btn {
  width: 200px;
  height: 40px;
  border-radius: 15px;
  background-color: rgb(255, 255, 255);
  font-size: 14px;
  font-weight: bold;
  line-height: 1.6;
  color: rgb(39, 36, 96);
  text-align: center;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 15px 0;
}

/*# sourceMappingURL=style.css.map */
