.dialog-wrapper {
  background: rgba(0, 0, 0, 0.2);
  z-index: 1000;
  width: 100%;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  margin: 0;
}

.ui-dialog {
  width: 400px;
  border-width: 1px;
  border-style: solid;
  border-color: #EBEEf5;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  transition: opacity .3s, transform .4s, top .4s;
  /* padding: 15px; */
  border-radius: 4px;
  overflow: auto;
  z-index: 2000;
  padding-bottom: 60px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 30%);
  background: #fff;
}


.ui-dialog .dialog-title {
  margin-left: 16px;
  margin: 0;
  padding: 0;
  font-size: 14px;
  height: 45px;
  line-height: 45px;
  padding-left: 15px;
  color: #303133;
  font-size: 18px;
}

.ui-dialog .dialog-content {
  margin-left: 16px;
  margin: 0;
  padding: 10px 15px;
  font-size: 14px;
  color: #606266;
}

.ui-dialog .bottom-wrapper {
  position: absolute;
  width: 100%;
  bottom: 15px;
  overflow: hidden;
}

.bottom-wrapper .close-text-no,
.close-text-yes {
  float: right;
  line-height: 1;
  white-space: nowrap;
  cursor: pointer;
  background: #fff;
  border: 1px solid #dcdfe6;
  color: #606266;
  -webkit-appearance: none;
  text-align: center;
  box-sizing: border-box;
  outline: none;
  margin: 0;
  transition: .1s;
  font-weight: 500;
  padding: 8px 16px;
  font-size: 14px;
  border-radius: 4px;
  margin-right: 15px;
}

.close-text-yes {
  background: #409eff;
  color: #fff;
}

.ui-dialog .left-icon {
  position: absolute;
  top: 34%;
  left: 15px;
  cursor: pointer;
  width: 16px;
  height: 16px;
  color: #fff;
  background: #f56c6c;
  border-radius: 50%;
  line-height: 14px;
  text-align: center;
}

.ui-dialog .close-button {
  position: absolute;
  top: 15px;
  right: 15px;
  cursor: pointer;
  width: 16px;
  height: 16px;
  color: #c0c4cc;
  line-height: 16px;
}

.ui-dialog-leave {
  opacity: 0;
  transform: translate(-50%, -100%);
}

.ui-dialog-enter {
  opacity: 1;
  transform: translate(-50%, -100%);
}

.ui-dialog-info .dialog-content {
  color: #909399;
}

.ui-dialog-success {
  background-color: #f0f9eb;
  border-color: #e1f3d8;
}

.ui-dialog-success .dialog-content {
  color: #67c23c;
}

.ui-dialog-warning {
  background-color: #fdf6ec;
  border-color: #faecd8;
}

.ui-dialog-warning .dialog-content {
  color: #e6a23c;
}

.ui-dialog-error {
  background-color: #fef0f0;
  border-color: #fde2e2;
}

.ui-dialog-error .dialog-content {
  color: #f56c6c;
}