.lh-dialog{
  position: relative;
  margin: 0 auto 50px;
  background: #fff;
  border-radius: 3px;
  box-sizing: border-box;
  width: 50%;
  &.is-fullscreen{
    width: 100%;
    margin-top: 0;
    margin-bottom: 0;
    height: 100%;
    overflow: auto;
  }
  .lh-dialog__container {

  }
}
.lh-dialog__wrapper{
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  overflow: auto;
  margin: 0;
}

//单独存在。方便外界覆盖调用
.lh-dialog-header {
  border-bottom: 1px solid @color_b6;
  padding-left: 24px;
  padding-right: 56px;
  height: 55px;
  > .title {
    font-size: 18px;
    font-weight: bold;
    line-height: 56px;
    color: @color_b1;
  }
  > .closeIt {
    width: 56px;
    height: 56px;
    line-height: 54px;
    color: @color_b3;
    display: inline-block;
    cursor: pointer;
    top: 0;
    right: 0;
    position: absolute;
    text-align: center;
    i {
      font-size: 20px;
    }
    &:hover {
      color: @color_b2;
    }
  }
}
.lh-dialog-body {
  padding: 24px; //这里默认就是 24px的。但是有的时候 有一些特殊需求就是32。所以不要改动这里，你有特殊需求自己覆盖
  max-height: 610px;
  min-height: 292px;
  overflow-y: auto;
  width: 100%;
}
.lh-dialog-footer {
  text-align: right;
  padding: 10px 16px;
  border-top: 1px solid @color_b6;
}



.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;
  }
}
