/* loginReminder 登录弹框 */
.p-login-dialog {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100vh;
  background: rgba(0, 0, 0, .5);
  z-index: 99;
  display: none;
}
.p-login-flex {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.p-login-container {
  position: relative;
  width: 490px;
  padding: 30px 20px 43px;
  background-color: #fff;
  border-radius: 5px;
}
.p-login-remove {
  position: absolute;
  cursor: pointer;
  right: 20px;
  top: 20px;
}
.p-login-title {
  text-align: center;
}
.p-login-title .u-title {
  font-size: 18px;
  font-weight: 500;
  color: #3B3C5A;
  line-height: 24px;
}
.p-login-content {
  margin-top: 18px;
  font-size: 14px;
  color: #3B3C5A;
  /* text-align: center; */
  line-height: 24px;
}
.p-login-content .u-indent {
  text-indent: 2em;
}
.p-login-btn {
  margin-top: 27px;
  text-align: center;
}
.p-login-btn button {
  width: 90px;
  height: 30px;
  font-size: 14px;
  color: #3B3C5A;
  border-radius: 4px;
  border: 1px solid #DCDFE6;
  background-color: #fff;
  outline: none;
}
.p-login-btn .u-btn-notModify {
  margin-right: 25px;
}
.p-login-btn .u-btn-modify {
  color: #fff;
  background-color: #63C6B3;
  border: 1px solid #63C6B3;
}