body {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}
.global-tip {
  position: fixed;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  padding: 8px 22px;
  font-size: 14px;
  background-color: #585a5a;
  color: #FFF;
  border-radius: 6px;
  max-width: 50%;
  text-align: center;
}
 @keyframes rotate-center{0%{transform:rotate(0)}100%{transform:rotate(360deg)}}
.rotate-center {
  animation: rotate-center 2.0s infinite linear both;
  position: relative;
}
.loading {
  position: fixed;
  z-index: 1000;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: rgba(255, 255, 255, 0.5);
}
.loading-img {
  width: 60px;
  height: 60px;
  margin-bottom: 10px;
}
.loading-text {
  font-size: 14px;
}
.error {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  height: 80vh;
}
.error .error-img {
  width: 70%;
  margin-bottom: 20px;
}
.error .error-text {
  color: #808080;
  padding: 0 30px;
}
[v-cloak] {
  display: none;
}
.login {
  background-image: url(../image/login.png);
  width: 100%;
  height: 100vh;
  background-size: 100% 100%;
  background-repeat: no-repeat;
  position: relative;
}
.login-box {
  background: #ffffff;
  box-shadow: 0 4px 22px 2px rgba(0, 0, 0, 0.1);
  border-radius: 10px;
  width: 80%;
  margin: 0 auto;
  padding-top: 50px;
  padding-bottom: 40px;
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%,-50%);
}
.control-component {
  margin: 0 20px 30px 30px;
  border-bottom: 1px solid #dfdfdf;
  padding-bottom: 12px;
  padding-left: 12px;
  display: flex;
  align-items: center;
  position: relative;
}
.icon {
  width: 15px;
  height: 15px;
  margin-right: 10px;
}
.login-input {
  border: none;
  outline: none;
}
.login-input::-webkit-input-placeholder {
  color:#BFBFBF;
  font-size: 14px;
}
.login-input:-moz-placeholder {
  color:#BFBFBF;
  font-size: 14px;
}
.login-input:-ms-input-placeholder {
  color:#BFBFBF;
  font-size: 14px;
}
.login-button {
  width: calc(100% - 60px);
  height: 34px;
  display: flex;
  justify-self: center;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  font-weight: bold;
  color: #fff;
  background-color: #78a3ff;
  position: absolute;
  bottom: -15px;
  box-shadow: 0 3px 5px 0px rgba(50, 50, 50, 0.31);
  border-radius: 15px;
  left: 50%;
  transform: translateX(-50%);
}
.verification-code {
  font-size: 12px;
  flex-shrink: 0;
  position: absolute;
  right: 4px;
  color: #585a5a;
  font-weight: 500;
}
.verification-code.disabled {
  color: #bec0bf;
}
.login-password-check-wrapper {
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: absolute;
  right: 0;
}
.login-password-check {
  width: 16px;
  height: 16px;
}