html, body {
  height: 100%;
  margin: 0;
  padding: 0;
  color: #333333;
  font-size: 15px;
  font-family: -apple-system, BlinkMacSystemFont, 'Microsoft YaHei', sans-serif;
}
::placeholder {
  color: #9e9e9e;
}
input[type=number] {
  -moz-appearance: textfield;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

#app {
  background-color: #05af72;
  width: 100%;
  //height: 100%;
  padding: 20px 20px;
  box-sizing: border-box;
}
@media (max-width: 325px) {
  #app {
    height: auto;
  }
}
.main {
  width: 100%;
  height: 100%;
  background: #ffffff;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.img-box {
  width: 100%;
  height: 178px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.pic {
  width: 100px;
  height: 100px;
}
.title {
  font-size: 18px;
  font-weight: 500;
  margin-bottom: 32px;
}
.grid {
  height: 45px;
  width: 68%;
}
@media (max-width: 325px) {
  .grid {
    width: 74%;
  }
}
.cell {
  display: flex;
  align-items: center;
}
.input {
  width: 100%;
  flex: 1;
  border: none;
  outline: none;
  font-size: 15px;
}
.label {
  margin-right: 15px;
  white-space: nowrap;
}
.code {
  width: 50px;
  height: 25px;
}
.radio-group {
  display: flex;
  align-items: center;
  margin-bottom: 20px;
}
#phone, #qq {
  margin: 0;
  margin-right: 6px;
}
#qq {
  margin-left: 20px;
}
.err-msg {
  color: red;
  font-size: 14px;
  text-align: center;
}
.btn {
  width: 86%;
  height: 34px;
  border-radius: 4px;
  background-color: #05af72;
  margin: 0;
  padding: 0;
  margin-top: 5px;
  border: none;
  outline: none;
  color: #ffffff;
  font-size: 16px;
}
.notice {
  width: 86%;
  margin-top: 20px;
  font-size: 14px;
  font-weight: 500;
}
.rule {
  width: 86%;
  font-size: 13px;
  padding-bottom: 10px;
}

.loading {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.det {
  margin-left: 76px;
}
.success {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  top: 20px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background-color: #fff;
  border-radius: 20px;
}
.result {
  width: 100px;
  height: 100px;
  margin-bottom: 20px;
}
.qrcode {
  margin-top: 20px;
}

.lds-default {
  display: inline-block;
  position: relative;
  width: 80px;
  height: 80px;
  background-color: rgba(0, 0, 0, .6);
  border-radius: 6px;
}

.lds-default div {
  position: absolute;
  width: 6px;
  height: 6px;
  background: #fff;
  border-radius: 50%;
  animation: lds-default 1.2s linear infinite;
}

.lds-default div:nth-child(1) {
  animation-delay: 0s;
  top: 37px;
  left: 66px;
}

.lds-default div:nth-child(2) {
  animation-delay: -0.1s;
  top: 22px;
  left: 62px;
}

.lds-default div:nth-child(3) {
  animation-delay: -0.2s;
  top: 11px;
  left: 52px;
}

.lds-default div:nth-child(4) {
  animation-delay: -0.3s;
  top: 7px;
  left: 37px;
}

.lds-default div:nth-child(5) {
  animation-delay: -0.4s;
  top: 11px;
  left: 22px;
}

.lds-default div:nth-child(6) {
  animation-delay: -0.5s;
  top: 22px;
  left: 11px;
}

.lds-default div:nth-child(7) {
  animation-delay: -0.6s;
  top: 37px;
  left: 7px;
}

.lds-default div:nth-child(8) {
  animation-delay: -0.7s;
  top: 52px;
  left: 11px;
}

.lds-default div:nth-child(9) {
  animation-delay: -0.8s;
  top: 62px;
  left: 22px;
}

.lds-default div:nth-child(10) {
  animation-delay: -0.9s;
  top: 66px;
  left: 37px;
}

.lds-default div:nth-child(11) {
  animation-delay: -1s;
  top: 62px;
  left: 52px;
}

.lds-default div:nth-child(12) {
  animation-delay: -1.1s;
  top: 52px;
  left: 62px;
}

@keyframes lds-default {

  0%,
  20%,
  80%,
  100% {
    transform: scale(1);
  }

  50% {
    transform: scale(1.5);
  }
}
