.zt-transfer {
  padding: @padding-base;
  .container {
    display: flex;
    justify-content: space-between;
  }
}
.zt-transfer--container {
  border: 1px solid @border-color-split;
  border-radius: 4px;
  width: 300px;
  .title {
    display: flex;
    align-items: center;
    justify-content: space-between;
    line-height: 32px;
    background-color: @col-title-bg;
    padding: 0 0 0 @padding-base;
    border-top-left-radius: 4px;
    border-top-right-radius: 4px;
    > button {
      padding: 4px 10px;
    }
    border-bottom: 1px solid @border-color-split;
  }
  .wrap {
    height: 400px;
    display: flex;
    flex-direction: column;
    .search {
      padding: @padding-base;
      .ant-input-affix-wrapper {
        padding: 0 10px;
        height: 30px;
      }
      .ant-input {
        height: 28px;
      }
      .ant-btn {
        background-color: #fff;
        border-color: #d9d9d9;
      }
    }
    .content {
      flex: 1;
      overflow: auto;
      height: 350px;
    }
  }
  // 树相关控制
  .ztxk-tree {
    .ant-tree-checkbox-disabled {
      display: none;
    }
  }
}

.search-result--list {
  display: flex;
  flex-direction: column;
  // width: 300px;
  > .search-result--item {
    border-bottom: 1px solid @border-color-split;
    margin-right: 0;
    padding: @padding-base 0 @padding-base @padding-base;
    width: 100%;
    overflow: hidden;
    display: flex;
    margin-left: 0;
    &:first-child {
      padding-top: 0;
    }
    > span:last-child {
      flex: 1;
      width: 100px;
    }
    .search-result--item__title {
      overflow: hidden;
      word-wrap: break-word;
      word-break: break-all;
      white-space: normal;
    }
    .search-result--item__describe {
      overflow: hidden;
      word-wrap: break-word;
      word-break: break-all;
      white-space: normal;
      color: @weight-2;
    }
  }
}

.checked-result--list {
  display: flex;
  flex-direction: column;
  // width: 300px;
  > .checked-result--item {
    border-bottom: 1px solid @border-color-split;
    margin-right: 0;
    padding: @padding-base 0 @padding-base @padding-base;
    width: 100%;
    overflow: hidden;
    display: flex;
    margin-left: 0;
    flex-direction: column;
    position: relative;
    &:first-child {
      padding-top: 0;
    }
    .checked-reslt--item__clear {
      position: absolute;
      right: 0;
      top: 50%;
      margin-top: -10px;
      width: 20px;
      color: #d9d9d9;
      cursor: pointer;
    }
    .checked-result--item__title {
      overflow: hidden;
      word-wrap: break-word;
      word-break: break-all;
      white-space: normal;
      padding-right: 16px;
    }
    .checked-result--item__describe {
      overflow: hidden;
      word-wrap: break-word;
      word-break: break-all;
      white-space: normal;
      width: 90%;
      color: @weight-2;
      padding-right: 16px;
    }
  }
}
