*{
  margin: 0;
  padding: 0;
}
html {
  overflow: hidden;
  background: white;
}
body{
  height: 100vh;
  /* background: url(./images/login.jpg) no-repeat; */
  background-size: cover;
}
/* .container{
  position: relative;
  display: flex;
  height: 100vh;
  align-items: center;
  justify-content: center;
} */
/* .info{
  display: flex;
  width: 200px;
  height: 350px;
  background: rgba(255, 255, 255, 0.8);
  border-radius: 8px;
  align-items: center;
  justify-content: center;
  color: #52c9a0;
  font-size: 20px;
} */

.msg {
  position: fixed;
  top: 10%;
  display: flex;
  pointer-events: all;
  width: 80%;
  z-index: 10;
  left: 50%;
  transform: translateX(-50%);
  align-items: center;
  justify-content: center;
}

.content {
  display: flex;
  position: relative;
  padding: 9px 12px;
  background: #fff;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.8);
  border-radius: 8px;
  box-shadow: 0 6px 16px 0 rgb(0 0 0 / 8%),
  0 3px 6px -4px rgb(0 0 0 / 12%),
  0 9px 28px 8px rgb(0 0 0 / 5%);
}

.hide {
  display: none;
}
.show {
  display: flex;
}


.icon {
  /* display: flex;
  align-items: center;
  justify-content: center;
  margin-right: 4px; */
  position: absolute;
  left: 4px;
  top: 6px;
}

.text {
  padding-left: 18px;
  word-break: break-all;
}

@media screen and (max-width:480) {
  .info{
    width: 80%;
  }
}

.spin {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
  background: white;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity 1s;
}

.opacity {
  opacity: 0;
}

.spin-dot {
  position: relative;
  display: block;
  font-size: 20px;
  width: 32px;
  height: 32px;
  transform: rotate(45deg);
  animation-name: rotate;
  animation-duration: 1.2s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;

}

.spin-dot-item {
  position: absolute;
  display: block;
  width: 14px;
  height: 14px;
  background-color: #52c9a0;
  border-radius: 100%;
  transform: scale(.75);
  transform-origin: 50% 50%;
  opacity: .3;
  animation-name: wxsacle;
  animation-duration: 1s;
  animation-iteration-count: infinite;
  animation-timing-function: linear;
  animation-direction: alternate;
}

.spin-dot-item:nth-child(1) {
  top: 0;
  inset-inline-start: 0;
}

.spin-dot-item:nth-child(2) {
  top: 0;
  inset-inline-end: 0;
  animation-delay: .4s;
}

.spin-dot-item:nth-child(3) {
  inset-inline-end: 0;
  bottom: 0;
  animation-delay: .8s;
}

.spin-dot-item:nth-child(4) {
  bottom: 0;
  inset-inline-start: 0;
  animation-delay: 1.2s;
}


@keyframes rotate {
  from {
    transform: rotate(0);
  }

  to {
    transform: rotate(360deg);
  }
}

@keyframes wxsacle {
  from {
    opacity: .3;
  }

  to {
    opacity: 1;
  }
}

.qr_login {
  position: absolute;
  width: 200px;
  height: 320px;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  z-index: 2;
}

.qr_login.ismobile {
  bottom: auto;
}

/* .wx-loading {

} */