.cw-draggable-mask{
  position: fixed;
  z-index: 999;
  width: 100%;
  height: 100%;
  left: 0;
  top: 0;
  cursor: move;
  overflow: auto;
  background: @text-color-secondary;
  .cw-draggable-content{
    position: fixed;
    z-index: 1000;
    left: 0;
    right: 0;
    top: 100px;
    bottom: 0;
    margin: auto;
    display: flex;
    background: @white;
    flex-direction: column;
    position: relative;
    border-radius: @border-radius-base;
    .cw-draggable-close-btn{
      position: absolute;
      right: 24px;
      top: 20px;
      cursor: pointer;
    }
    .cw-draggable-header{
      cursor: move;
      color: @heading-color;
      font-weight: @pagination-font-weight-active;
      font-size: @font-size-base;
      padding: 16px 24px;
      // position: relative;
      background: @white;
      border-bottom: @border-width-base solid @border-color-split;
      border-radius: @border-radius-base @border-radius-base 0 0;

    }
    .cw-draggable-body{
      padding: @padding-lg;
      overflow: auto;
      font-size: @font-size-base;
      line-height: @line-height-base;
    }
    .cw-draggable-footer{
    padding: 10px 24px;
    text-align: right;
    background: transparent;
    border-top: @border-width-base solid @border-color-split;
    border-radius: 0 0 @border-radius-base @border-radius-base;
    }
  }
}
.cw-wrapper-modal{
  .@{ant-prefix}-modal-content{
    height: 100%;
  }
  .@{ant-prefix}-modal-close{
    right: 2px;
  }
  .@{ant-prefix}-modal-footer{
    padding: 10px 24px;
    border-radius: 0 0 2px 2px;
    border-top: 1px solid @modal-border-color;
  }
  .@{ant-prefix}-modal-header{
    border-bottom: 1px solid @modal-border-color;
    border-radius: 2px 2px 0 0;
  }
  .@{ant-prefix}-modal-content{
    border-radius: 2px;
  }
}