.login-wrap {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.8);
  z-index: 999;
  display: none;
}

#login-pop {
  width: 100%;
  height: 100%;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
}

.login-pop-modal {
  width: 480px;
  height: 300px;
  margin: auto;
  position: relative;
  background-color: #fff;
  -webkit-background-clip: padding-box;
  background-clip: padding-box;
  border: 1px solid #999;
  border: 1px solid rgba(0, 0, 0, 0.2);
  border-radius: 6px;
  outline: 0;
  -webkit-box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
  box-shadow: 0 3px 9px rgba(0, 0, 0, 0.5);
}

.modify-password-pop-box {
  display: none;
}

.login-pop-title {
  font-size: 20px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #7A7E95;
  line-height: 21px;
  font-weight: bold;
}

.login-pop-header {
  padding: 25px;
  position: relative;
  text-align: center;
}

.login-pop-close {
  position: absolute;
  top: 20px;
  right: 20px;
  cursor: pointer;
}

.login-pop-body {
  position: relative;
  padding: 30px;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
      -ms-flex-direction: column;
          flex-direction: column;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
}

.login-pop-body label {
  margin-bottom: 20px;
}

.login-pop-body label input {
  border: none;
  border-bottom: 1px solid #999;
  padding-left: 10px;
}

.login-pop-footer {
  height: 60px;
  text-align: right;
  position: absolute;
  width: 100%;
  bottom: 0;
}

.login-pop-btn {
  position: absolute;
  left: 50%;
  bottom: 28px;
  width: 84px;
  height: 30px;
  margin-left: -42px;
  text-align: center;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
      -ms-flex-align: center;
          align-items: center;
  -webkit-box-pack: center;
      -ms-flex-pack: center;
          justify-content: center;
  color: #fff;
  background: #0D6EF8;
  border-radius: 14px;
  cursor: pointer;
  border: none;
}