.el-dialog__wrapper {
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 2000;
  height: 100%;
  background-color: rgba(0,0,0,.5);
  overflow: auto;
  z-index: 1001;
  /* transition: all .2s ease-in-out; */
  display: none;
}
.el-dialog {
  position: relative;
  margin: 0 auto 50px;
  background: #fff;
  border-radius: 2px;
  box-shadow: 0 1px 3px rgb(0 0 0 / 30%);
  box-sizing: border-box;
  margin-top: 15vh;
  width: 460px;
  border-radius: 4px;
}
.el-dialog__header {
  padding: 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  background: #f2f2f2;
  border-top-left-radius: 4px;
  border-top-right-radius: 4px;
}
.el-dialog__title {
  line-height: 24px;
  font-size: 18px;
  color: #303133;
}
.el-dialog__close {
  display: inline-block;
  width: 16px;
  height: 16px;
  background: url(../img/close.png) no-repeat;
  cursor: pointer;
}
.el-dialog__body {
  padding: 20px;
}
.el-form__item {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}
.el-form__item input {
  width: 310px;
  height: 40px;
  line-height: 48px;
  border: 1px solid #dedede;
  border-radius: 2px;
  padding: 0 10px;
  outline: none;
  color: #272F88;
}
.el-form__item input::-webkit-input-placeholder {
  color: #ababab;
}
.el-dialog__footer {
  padding: 0px 20px 20px;
  text-align: right;
  display: flex;
  justify-content: flex-end;
}
.el-dialog__footer > div {
  width: 98px;
  height: 40px;
  line-height: 40px;
  border: 1px solid #dedede;
  border-radius: 4px;
  text-align: center;
  font-size: 14px;
  cursor: pointer;
}
.dialog-btn:nth-of-type(2) {
  color: #fff;
  background: #4E74FF;
  margin-left: 10px;
}
.el-form__item-multiselect {
  display: flex;
  justify-content: space-between;
  margin-bottom: 20px;
  align-items: center;
}
.ms-options-wrap > button:focus, .ms-options-wrap > button {
  margin-right: 0;
  height: 40px;
  line-height: 40px;
  border: 1px solid #dedede;
  padding: 0 10px;
  font-size: 16px;
  color: unset;
}
.toast-container {
  position: fixed;
  top: 20px;
}
.toast-body{
  background: #fef0f0;
  color: #f56c6c;
  border-radius: 4px;
  padding-left: 20px;
}
.toast-body.success {
  background: #f0f9eb;
  color: #67c23a;
  border-color: #e1f3d8;
}
.ms-options-wrap > .ms-options {
  min-height: unset !important;
}