.core-modal-mask {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  height: 100%;
  z-index: 1011;
  background-color: rgba(33, 33, 33, 0.2);
}

.core-modal-wrap {
  position: fixed;
  overflow: auto;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  z-index: 1011;
  -webkit-overflow-scrolling: touch;
  outline: 0;
  .core-modal {
    min-height: 50px;
    position: relative;
    top: 61px;
    transition: transform .8s cubic-bezier(.36, .66, .04, 1);
    &>div {
      background-color: #fff;
    }
    .core-modal-header {
      border-bottom: 1px solid #f5f5f5;
      padding: 14px 24px;
      background: #f7f8fa;
      border-radius: 5px 5px 0 0;
      cursor: move;
      div{
        font-size: 16px;
        color:#424656
      }
    }
    .ivu-modal-close {
      top:5px!important;
      .ivu-icon-md-close {
        font-size: 31px;
        color: #999;
        transition: color .2s ease;
      }
    }    
    .core-modal-footer {
      border-top: 1px solid #f5f5f5;
      padding: 10px;
      text-align: center;
      // box-shadow: 0 6px 16px 0px rgba(35, 35, 35, 0.2);
      // border-radius: 0 0 5px 5px;
      &>button {
        margin-left: 16px;
        padding: 0 18px;
      }
    }
    .core-modal-body {
      padding: 20px;
      overflow: auto;
    }
  }
}

.sidelip-down-modal-enter-active {
  transform: translate3d(0, 0, 0);
}

.sidelip-down-modal-enter {
  transform: translate3d(0, calc(-100% - 75px), 0);
}

.sidelip-down-modal-leave {
  transform: translate3d(0, 0, 0);
}

.sidelip-down-modal-leave-active {
  transform: translate3d(0, calc(-100% - 75px), 0);
}
.ivu-icon-md-close:before{
  font-size: 20px;
}
.ivu-modal-close{
  top: 3px;
  right:20px !important;
}