.tradeupLogin-pc {
  width: 100%;
}
.tradeupLogin-pc .login-wrapper {
  width: 100%;
  height: 100vh;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.tradeupLogin-pc .login-wrapper__title {
  font-size: 0.5rem;
  color: #000000;
  font-weight: bold;
  line-height: 1.2;
  text-align: center;
}
.tradeupLogin-pc .login-wrapper__email {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 0.8rem 0 1.5rem;
  font-size: 0.21rem;
  position: relative;
}
.tradeupLogin-pc .login-wrapper__email .erro-tip {
  display: none;
  transition: all 0.3s;
}
.tradeupLogin-pc .login-wrapper__email .form-input {
  width: 4.67rem;
  height: 0.6rem;
  border: solid 1px #595757;
  padding: 0 0.24rem;
  font-size: 0.21rem;
}
.tradeupLogin-pc .login-wrapper__email .form-input:focus {
  outline: none;
}
.tradeupLogin-pc .login-wrapper__email.erro .erro-tip {
  position: absolute;
  width: 100%;
  top: 0.4rem;
  display: block;
  text-align: center;
  color: #f00000;
  font-weight: 700;
  margin-bottom: 0.12rem;
}
.tradeupLogin-pc .login-wrapper__email.erro .erro-tip a {
  color: #000000;
  text-decoration: underline;
}
.tradeupLogin-pc .login-wrapper__email.erro .form-input {
  border: solid 1px #f00000 !important;
  color: #f00000;
}
.tradeupLogin-pc .login-wrapper__email.erro .form-input::-webkit-input-placeholder {
  color: #ff0000 !important;
}
.tradeupLogin-pc .login-wrapper__email.erro .form-input::-moz-placeholder {
  color: #ff0000 !important;
}
.tradeupLogin-pc .login-wrapper__email.erro .form-input:-ms-input-placeholder {
  color: #ff0000 !important;
}
.tradeupLogin-pc .login-wrapper__email.erro .form-input:-moz-placeholder {
  color: #ff0000 !important;
}
.tradeupLogin-pc .login-wrapper__check {
  width: max-content;
  padding: 0.15rem 0.36rem;
  background-color: #00327d;
  border-radius: 0.3rem;
  color: #ffffff;
  font-size: 0.21rem;
  border: none;
  position: relative;
  overflow: hidden;
}
.tradeupLogin-pc .login-wrapper__check::before {
  content: "";
  display: block;
  position: absolute;
  transform: scale(0);
  height: 25%;
  width: 10%;
  left: 45%;
  top: 35%;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 30px;
  z-index: 1;
}
.tradeupLogin-pc .login-wrapper__check:hover::before {
  transform: scale(12);
  transition: transform 0.5s, border-radius 0.5s 0.5s;
}

.loading-wrapper {
  position: fixed;
  left: 0;
  right: 0;
  top: 0;
  bottom: 0;
  background-color: rgba(255, 255, 255, 0.5);
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 100vh;
  margin: 0;
  overflow: hidden;
}
.loading-wrapper.dis-none {
  display: none;
}
.loading-wrapper .progress-blocks {
  width: 2.24rem;
  height: 0.29rem;
  background-color: #fdfdfd;
  border: solid 0.02rem #898989;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  overflow: hidden;
}
.loading-wrapper .progress-blocks .progress-block {
  width: 0.2rem;
  height: 100%;
  background-color: #4caf50;
  margin-right: 2px;
}
.loading-wrapper .loading-text {
  font-size: 0.25rem;
  color: #898989;
  line-height: 0.42rem;
  font-weight: 700;
}