dialogBox.scss 1.75 KB
@import "~@/styles/mixin.scss";
.dialogBox {
  border-radius: 4px;
  overflow: hidden;
  background: #FFFFFF;
  box-shadow: 0 2px 12px 0 rgba(0, 0, 0, 0.10);

  .dialog_title {
    display: flex;
    position: relative;
    top: -4px;

    b {
      display: flex;
      justify-content:left;
      align-items: center;
      flex: 1;
      width: 100%;
      margin-left: 10px;
      width: 79px;
      height: 12px;
      font-size: 16px;
      font-family: AlibabaPuHuiTi_2_65_Medium;
      color: #31333C;
      line-height: 10px;
    }
  }
  .dialog_title::before{
    content: "";
    display: block;
    width: 4px;
    height: 18px;
    background: #2E74D8;
    position: absolute;
    top: -4px;
    left: 0px;
  }
  .dialog_full {
    position: absolute;
    top: 0;
    right: 30px;
  }

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

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

  .dialogBox-content {
    height: auto
  }
}

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

.el-dialog__header {
  background: linear-gradient(270deg, #F2F3FB 0%, #5C95E5 100%);
}

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

.el-dialog__headerbtn .el-dialog__close {
  color: #6B7A99 !important;
  position: relative;
  top: -2px;
}


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

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

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

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