.@{prefixCls}-select-view {
  position: relative;
  height: 100%;

  &-spin {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: rgba(255, 255, 255, 0.6);
  }

  & > .@{ant-prefix}-tabs {
    .fullTabs();

    & > .@{ant-prefix}-tabs-nav {
      margin-bottom: @padding-md;
    }
  }

  &-layout {
    display: flex;
    height: 100%;
  }

  &-sider {
    width: 100%;
    height: 100%;
    padding: 0 @padding-md 0 0;
    overflow: auto;

    &-wrapper {
      position: relative;
      width: 200px;
      height: 100%;
    }

    &-resizable {
      position: absolute;
      top: 0;
      right: -9px;
      bottom: 0;
      box-sizing: border-box;
      width: 17px;
      padding: 0 8px;
      background-color: @border-color-split;
      background-clip: content-box;
      cursor: col-resize;

      .@{ant-prefix}-tabs & {
        top: -@padding-md;
      }
    }
  }

  &-main {
    display: flex;
    flex: 1;
    flex-direction: column;
    min-width: 0;
  }

  &-sider-wrapper + &-main {
    padding-left: @padding-md;
  }

  &-head + &-body {
    margin-top: @padding-md;
  }

  &-head-wrapper + div {
    margin-top: @padding-md;
  }

  &-body {
    flex: 1;
    min-height: 0;
  }
}
