@charset "UTF-8";
.flex {
  display: flex;
  align-items: center;
}

* {
  padding: 0;
  margin: 0;
}

body {
  background: #48199D;
  color: #fff;
  height: 100vh;
  height: 100dvb;
}
@media screen and (max-width: 1000px) {
  body {
    display: flex;
    flex-direction: column;
  }
}

#app {
  background: #48199D url("../images/mobile-download/bg.png") center center/cover no-repeat;
  height: 100vh;
  height: 100dvb;
}
@media screen and (max-width: 1000px) {
  #app {
    height: 54vh;
    height: 54dvh;
    background: #48199D;
    background-position-y: 50px;
  }
}

#app.bg_en {
  background: #48199D url("../images/mobile-download/bg_en.png") center center/cover no-repeat;
  height: 100vh;
  height: 100dvb;
}
@media screen and (max-width: 1000px) {
  #app.bg_en {
    height: 54vh;
    height: 54dvh;
    background: #48199D;
    background-position-y: 50px;
  }
}

.container {
  position: fixed;
  width: 500px;
  padding-bottom: 20px;
  right: 10px;
  height: 100vh;
  height: 100dvb;
  display: flex;
  align-items: center;
  text-align: center;
  font-size: 12px;
}

.mobile_container .logo {
  margin: 10px;
  height: 44px;
}

.mt20 {
  margin-top: 20px;
}

.scan_text {
  width: 200px;
  margin-top: 10px;
  margin-left: auto;
  margin-right: auto;
  background: #320E6F;
  border-radius: 18px;
}

.copy_box {
  margin-left: 10px;
  display: flex;
  align-items: center;
  padding: 4px;
  background: #fff;
  border-radius: 10px;
  color: #333;
}
.copy_box img {
  margin-left: 5px;
  margin-right: 10px;
}

.line {
  margin-top: 30px;
  margin-bottom: 30px;
  height: 1px;
  background: #6332A3;
}

.btns {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
}
.btns img {
  height: 110px;
}

.bg_mobile_img {
  width: 100%;
  height: auto;
}

.btns_mobile {
  text-align: center;
}
.btns_mobile .copy_box {
  height: 40px;
  font-size: 12px;
}
.btns_mobile .copy_box img {
  margin: 0;
  padding-left: 10px;
  padding-right: 20px;
  height: 16px;
}
.btns_mobile .flex_box {
  margin-top: 20px;
}
.btns_mobile .flex_box img {
  margin: auto;
  height: 80px;
}

/* 在手机上隐藏 */
@media screen and (max-width: 1000px) {
  .responsive-mobile {
    display: flex;
  }
  .responsive-desktop {
    display: none !important;
  }
}
/* 在电脑上隐藏 */
@media screen and (min-width: 1000px) {
  .responsive-mobile {
    display: none !important;
  }
  .responsive-desktop {
    display: flex;
  }
}/*# sourceMappingURL=mobile.css.map */