.modify-phone-dialog {
  opacity: 0;
  position: fixed;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 0;
  z-index: 99;
}

.modify-phone-dialog .content {
  width: 400px;
  height: 200px;
  color: rgba(0, 0, 0, 0.85);
  background: #d4d8db;
  border-radius: 8px;
  box-shadow: 4px 4px 10px #d4d8db inset;
}

.mask {
  display: none;
  height: 100%;
  width: 100%;
  opacity: 0.4;
  position: fixed;
  z-index: 9;
  background: rgba(0, 0, 0);
}

.modify-phone-dialog .close {
  cursor: pointer;
}

.modify-phone-dialog .content .input {
  border-radius: 8px;
  margin-top: 30px;
  line-height: 22px;
  width: 200px;
  margin-left: 100px;
}

.modify-phone-dialog .content .input::placeholder {
  color: rgba(0, 0, 0, 0.45);
}