dialogBox.scss 1.91 KB
.dialogBox {
  overflow: hidden;
  background: url("~@/image/dialogBg.png") no-repeat !important;
  background-size: 100% 100% !important;

  .dialog_title {
    display: flex;
    position: relative;
    top: -2px;
    b {
      font-weight: 200;
      display: inline-block;
      position: relative;
      font-size: 24px;
      top: -11px;
      width: 38%;
      height: 40px;
      margin-left: 28px;
      // @include flex-center;
      display: flex;
      justify-content: center;
    }
  }

  .dialog_full {
    position: absolute;
    top: 0;
    right: 30px;
  }

  .el-dialog__body {
    max-height: 88vh;
    overflow-x: hidden;
    overflow-y: hidden;
  }

  .dialog_footer {
    margin-bottom: 8px;
    @include flex-center;
  }

  .dialogBox-content {
    height: auto
  }

  .editDialogBox-box {
    background: #031A46;
    box-shadow: inset 0px 0px 12px 0px #02D9FD;
    border-radius: 2px;
    border: 1px solid #6BC1FC;
    margin: 0 18px 15px 18px;
  }
}

.dialog_title {
  @include flex;
  justify-content: space-between;
  width: 100%;
}

.el-dialog__header {
  color: #FFFFFF;
  // background: #074487;
  height: 46px !important;
  width: 97%;
  margin: 0 auto;
  margin-top: 2px;
}

.el-dialog__body {
  padding-top: 0;
  padding-bottom: 0;
}

.el-dialog__headerbtn {
  width: 42px;
  height: 20px;
  background: url("~@/image/closebg.png") no-repeat;
  background-size: 100% 100%;
  right: 40px;
  top: 33px;
  &:hover{
    box-shadow: inset 0px 0px 12px 0px #02D9FD;
  }
}

.el-dialog__close {
  font-size: 0;
}

.el-form-item {
  @include flex;
  width: 100%;
}

.el-dialog__wrapper {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

.contentCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(calc(-50% + 85px), -50%);
}

.mainCenter {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);

  // 展开收起按钮位置
  .el-input__suffix {
    right: 10px;
  }
}