@import "mixins/mixins";
@import "mixins/utils";
@import "common/var";
@import "common/popup";

@include b(dialog) {
  position: relative;
  margin: 0 auto 50px;
  background: $--dialog-background-color;
  border-radius: $--border-radius-small;
  box-shadow: $--dialog-box-shadow;
  box-sizing: border-box;
  width: 50%;

  @include when(fullscreen) {
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    height: 100%;
    overflow: auto;
  }

  @include e(wrapper) {
    position: fixed;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    overflow: auto;
    margin: 0;
  }

  @include e(header) {
    padding: $--dialog-padding-primary;
    padding-bottom: 10px;
  }

  @include e(headerbtn) {
    position: absolute;
    top: $--dialog-padding-primary;
    right: $--dialog-padding-primary;
    padding: 0;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: $--message-close-size;

    .el-dialog__close {
      color: $--color-info;
    }

    &:focus, &:hover {
      .el-dialog__close {
        color: $--color-primary;
      }
    }
  }

  @include e(title) {
    line-height: $--dialog-font-line-height;
    font-size: $--dialog-title-font-size;
    color: $--color-text-primary;
  }

  @include e(body) {
    padding: ($--dialog-padding-primary + 10px);
    color: $--color-text-regular;
    font-size: $--dialog-content-font-size;
    word-break: break-all;
  }

  @include e(footer) {
    display: flex;
    justify-content:flex-end;
    align-items: center;
    padding-right:20px;
    text-align: right;
    box-sizing: border-box;
  }

  // 内容居中布局
  @include m(center) {
    text-align: center;

    @include e(body) {
      text-align: initial;
      padding: 25px ($--dialog-padding-primary + 5px) 30px;
    }

    @include e(footer) {
      text-align: inherit;
    }
  }
}

.dialog-fade-enter-active {
  animation: dialog-fade-in .3s;
}

.dialog-fade-leave-active {
  animation: dialog-fade-out .3s;
}

@keyframes dialog-fade-in {
  0% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes dialog-fade-out {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
}

.el-dialog{
  position: relative;
  border-radius: 5px;
  .el-dialog__header{
    padding: 0 20px;
    position: sticky;
    top:0;
    height: 50px;
    line-height: 50px;
    font-size: 18px;
    font-weight: 700;
    background-color: #f5f5f5;
    border-radius: 5px;
    .el-dialog__headerbtn{
      top: 0;
    }
  }
  .fullscreenBody{
    min-height: 100vh !important;
  }
  .el-dialog__body{
    min-height: 300px;
    max-height: 60vh;
    overflow: auto;
   }
  .el-dialog__footer{
    position: sticky;
    height: 60px;
    bottom: 0;
    background-color: #f5f5f5;
    border-radius: 5px;

  }
}

.el-dialog__wrapper{
  display: flex;
  justify-content: center;
  align-items: center;
}

// 二次确认框特殊处理
.secConfirm{
  min-height: 100px !important;
}