@import "mixins/mixins";
@import "mixins/utils";
@import "common/var";
@import "common/popup";

@include b(modal) {
  position: relative;
  margin: 0 auto 50px;
  background: $--color-white;
  border-radius: $--border-radius-base;
  box-shadow: 0px 4px 12px 0px rgba(0,0,0,0.2);
  box-sizing: border-box;
  width: 483px;

  @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: 16px 24px;
    padding-right: 100px;
    border-bottom: $--modal-border;
  }

  @include e(headerbtn) {
    position: absolute;
    top: 12px;
    right: 15px;
    padding:10px;
    background: transparent;
    border: none;
    outline: none;
    cursor: pointer;
    font-size: $--font-size-base;

    .xb-modal__close {
      @include modal-close-icon-color;
    }
  }

  @include e(title) {
    line-height: 24px;
    font-size: $--font-size-base + 2px;
    color:$--color-black-85;
    font-weight: $--font-weight-base;
    padding-right: 100px;
  }

  @include e(body) {
    min-height: 193px;
    padding: 24px;
    color: $--color-black-65;
    font-size: $--font-size-base + 2px;
    word-break: break-all;
    border-bottom: $--modal-border;
  }

  @include e(footer) {
    padding: 12px 20px;
    text-align: right;
    box-sizing: border-box;
  }

  // 内容居中布局
  @include m(center) {
    text-align: center;

    @include e(body) {
      text-align: initial;
      padding: 25px ($--modal-padding-primary + 5px) 30px;
    }

    @include e(footer) {
      text-align: inherit;
    }
  }
}

.modal-fade-enter-active {
  animation: modal-fade-in .3s;
}

.modal-fade-leave-active {
  animation: modal-fade-out .3s;
}

@keyframes modal-fade-in {
  0% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
  100% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
}

@keyframes modal-fade-out {
  0% {
    transform: translate3d(0, 0, 0);
    opacity: 1;
  }
  100% {
    transform: translate3d(0, -20px, 0);
    opacity: 0;
  }
}
