@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: 6px 8px 16px 0px rgba(111, 144, 194, 0.08),
    -6px -8px 16px 0px rgba(111, 144, 194, 0.08);
  box-sizing: border-box;
  width: 50%;
  display: flex;
  flex-flow: row nowrap;
  justify-content: flex-start;
  align-items: flex-start;

  @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;
    &.absoluteCenter{
      display: flex;
      align-items: center;
      justify-content: center;
    }
  }

  @include e(header) {
    padding: $--dialog-padding-primary;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(46, 99, 253, 0.06);
    display: flex;
    flex-flow: row nowrap;
    justify-content: space-between;
    align-items: flex-start;
  }

  @include e(headerbtn) {
    padding: 0;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: $--message-close-size;

    .yk-dialog__close {
      color: $--color-text-regular;
      font-size: 24px;
    }

    &:focus,
    &:hover {
      .yk-dialog__close {
        color: $--color-primary;
      }
    }
  }

  @include e(title) {
    line-height: $--dialog-font-line-height;
    color: $--color-text-regular;
    width: calc(100% - 125px);
    height: 24px;
    font-size: 16px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    text-align: left;
  }

  @include e(body) {
    padding: ($--dialog-padding-primary + 10px) $--dialog-padding-primary;
    color: rgba($color: $--color-text-regular, $alpha: 0.56);
    font-size: $--dialog-content-font-size;
    word-break: break-all;
    flex-grow: 2;
    font-family: PingFangSC-Regular, PingFang SC;
    font-weight: 400;
  }

  @include e(footer) {
    padding: $--dialog-padding-primary;
    padding-top: 10px;
    text-align: right;
    box-sizing: border-box;
    box-shadow: 0px -6px 12px 0px rgba(0, 102, 255, 0.04);
    .yk-button {
      min-width: 120px;
    }
  }

  // 内容居中布局
  @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 0.3s;
}

.dialog-fade-leave-active {
  animation: dialog-fade-out 0.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;
  }
}

.yk-dialog_left {
  align-self: stretch;
  font-size: 0;
  display: flex;
  flex-flow: column nowrap;
  justify-content: center;
  align-items: center;
}

.yk-dialog_right {
  flex-grow: 2;
  display: flex;
  flex-flow: column nowrap;
  justify-content: flex-start;
  align-items: stretch;
  width: 100%;
  .yk-button + .yk-button {
    margin-left: 16px;
  }

}
