@charset "utf-8";
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  height: 100%;
}

.page {
  height: 100%;
  position: relative;
}

a {
  text-decoration: none;
  margin: 0 .1rem;
}

.lg-toast {
  width: 100%;
  height: 100%;
  display: none;
  justify-content: center;
  align-items: center;

  position: fixed;
  top: 0;
  left: 0;
}
.lg-toast.show {
  display: flex;
}
.lg-toast-content {
  background: rgba(0, 0, 0, 0.75);
  padding: 0.2rem 0.4rem;
  border-radius: 0.14rem;
  color: #fff;
  font-size: 0.28rem;
}

@keyframes debounce {
  0%,
  100% {
    transform: translateX(0);
  }
  10%,
  30%,
  50%,
  70%,
  90% {
    transform: translateX(-2px);
  }
  20%,
  40%,
  60%,
  80% {
    transform: translateX(2px);
  }
}
.page {
  display: flex;
  justify-content: center;
  align-items: center;
  font-family: PingFangSC-Regular, PingFang SC;
}

/* 丝带 */
.pattern {
  width: 1.5rem;
  position: absolute;
  top: 0;
}
.pattern img {
  width: 100%;
}
.pattern.left {
  left: 0;
}
.pattern.right {
  right: 0;
}

.wrap {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}

.logo {
  width: 1.6rem;
  height: 1.6rem;
  border-radius: 200px;
  border: 3px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 85px 0 rgba(0, 0, 0, 0.10);
}

.app-name {
  margin-top: 0.3rem;
  font-size: 0.32rem;
  color: #555;
  font-weight: 600;
  letter-spacing: 0.02rem;
}

.download-button {
  width: 4.22rem;
  height: 0.9rem;
  border-radius: 0.45rem;
  background: #32b2a7; /*#32b2a7; #007aff;*/
  margin-top: 0.34rem;
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ffffff;
  font-size: 0.32rem;
  cursor: pointer;
}

.open-tips {
  margin-top: 0.4rem;
  font-size: 0.3rem;
  font-weight: bold;
  line-height: 0.42rem;
  color: #fb4545;
  display: none;
  cursor: pointer;
}

.open-tips.show {
  display: block;
}

.browser-tips {
  font-size: 0.24rem;
  margin-top: 0.4rem;
  color: #999999;
  letter-spacing: 0.04rem;
  display: none;
}
.browser-tips.show {
  display: block;
}

.tips {
  display: none;
  position: fixed;
  top: 0.16rem;
  right: 0.16rem;
  background: rgba(0, 0, 0, 0.75);
  border-radius: 0.12rem;
  padding: 0.08rem 0.2rem;
  color: #fff;
  font-size: 0.26rem;
}
.tips::before {
  content: '';
  width: 0;
  height: 0;
  position: absolute;
  top: -0.15rem;
  right: 0.22rem;
  display: block;
  border-style: solid;
  border-color: transparent transparent rgba(0, 0, 0, 0.75) transparent;
  border-width: 0 0.16rem 0.16rem 0.16rem;
}

.tips.show {
  display: block;
}

.tips.ani {
  animation: debounce 1s;
}

.qr-code {
  margin-top: 28px;
  width: 2rem;
  height: 2rem;
  border-radius: 8px;
  border: 4px solid rgba(255, 255, 255, 0.05);
  box-shadow: 0 0 4px 0 rgba(0, 0, 0, 0.10);
}

.none{
  display: none;
}

.appdownload-copyright {
  opacity: 0.8;
  filter: alpha(opacity=60);
  color: gray;
  width: 100%;
  margin: 0 auto;
  position: fixed;
  bottom: 60px;
  text-align: center;
  font-size: 13px;
}
