body {
  margin: 0;
  padding: 0;
  background-image: url("../img/bg.png");
  background-repeat: no-repeat;
  background-position: center top;
  background-size: cover;
}

.box {
  width: 90%;
  max-width: 500px;
  margin: 0px auto;
}
.hello {
  padding-top: 50px;
  padding-bottom: 30px;
}
.hello img {
  max-width: 70%;
  max-height: 80px;
}

.item {
  padding: 10px 0px;
}
.item .title {
  font-size: 14px;
  font-family: PingFang SC, PingFang SC-Regular;
  font-weight: 400;
  color: rgb(255 255 255 / 60%);
  line-height: 30px;
  padding-left: 15px;
}
.item .input {
  width: 100%;
  background: #171a20;
  border-radius: 10px;
  overflow: hidden;
}
.item .input input {
  border: none;
  padding: 12px 10px;
  background: none;
  width: 96%;
  font-size: 15px;
  font-family: PingFang SC, PingFang SC-Bold;
  color: #ffffff;
  line-height: 30px;
}
.item .input input:focus-visible {
  outline: none;
}
.item .verify-code {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.item .verify-code input {
  width: 50%;
}
.item .verify-code button {
  text-decoration: none;
  font-size: 15px;
  font-family: PingFang SC, PingFang SC-Bold;
  font-weight: 700;
  color: #1bb5b5;
  line-height: 30px;
  flex-grow: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: none;
  border: none;
}
.item .verify-code button::before {
  content: "";
  display: block;
  margin-right: 20px;
  background: #6f7789;
  width: 1px;
  height: 15px;
}
.item .verify-code button[countdown],
.item .verify-code button[loading="yes"] {
  color: #6f7789;
}
.action {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 20px;
}
.action button {
  background: #1bb5b5;
  border-radius: 10px;
  width: 100%;
  font-size: 18px;
  font-family: PingFang SC, PingFang SC-Bold;
  font-weight: 700;
  color: #ffffff;
  line-height: 30px;
  padding: 10px;
  border: none;
}

.app {
  display: none;
}
.app .logo {
  text-align: center;
  padding-top: 50px;
  padding-bottom: 10px;
}
.app .logo img {
  max-width: 100px;
}
.app .name {
  font-size: 30px;
  font-family: PingFang SC, PingFang SC-Bold;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  line-height: 30px;
}
.app .download {
  display: flex;
  margin-top: 100px;
  flex-direction: column;
  align-items: center;
}
.app .download a {
  width: 80%;
  max-width: 350px;
  height: 60px;
  background: #1bb5b5;
  border-radius: 30px;
  margin: 20px auto;
  border: none;
  font-size: 18px;
  font-family: PingFang SC, PingFang SC-Regular;
  font-weight: bold;
  text-align: center;
  color: #ffffff;
  line-height: 30px;
  letter-spacing: 1.35px;
  cursor: pointer;
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
}
.app .download a::before {
  content: "";
  display: block;
  width: 30px;
  height: 30px;
  margin-right: 5px;
  background-repeat: no-repeat;
  background-position: center;
  background-size: cover;
}
.app .download a.ios::before {
  background-image: url("../img/ios.png");
}
.app .download a.android::before {
  background-image: url("../img/androld.png");
}
.app .download a.web::before {
  background-image: url("../img/web.png");
}
#loading {
  display: none;
}
.loading-box {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  background: rgb(255 255 255 / 60%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.loading,
.loading > div {
  position: relative;
  box-sizing: border-box;
}

.loading {
  display: block;
  font-size: 0;
  color: #000;
}

.loading.la-dark {
  color: #333;
}

.loading > div {
  display: inline-block;
  float: none;
  background-color: currentColor;
  border: 0 solid currentColor;
}

.loading {
  width: 54px;
  height: 18px;
}

.loading > div:nth-child(1) {
  animation-delay: -200ms;
}

.loading > div:nth-child(2) {
  animation-delay: -100ms;
}

.loading > div:nth-child(3) {
  animation-delay: 0ms;
}

.loading > div {
  width: 10px;
  height: 10px;
  margin: 4px;
  border-radius: 100%;
  animation: ball-pulse 1s ease infinite;
}

.loading.la-sm {
  width: 26px;
  height: 8px;
}

.loading.la-sm > div {
  width: 4px;
  height: 4px;
  margin: 2px;
}

.loading.la-2x {
  width: 108px;
  height: 36px;
}

.loading.la-2x > div {
  width: 20px;
  height: 20px;
  margin: 8px;
}

.loading.la-3x {
  width: 162px;
  height: 54px;
}

.loading.la-3x > div {
  width: 30px;
  height: 30px;
  margin: 12px;
}

@keyframes ball-pulse {
  0%,
  60%,
  100% {
    opacity: 1;
    transform: scale(1);
  }

  30% {
    opacity: 0.1;
    transform: scale(0.01);
  }
}
