.ztxk-tree {
  padding: 10px;
  .ztxk-tree--hidden {
    display: none;
  }
  &.ztxk-tree--height {
    display: flex;
    flex-direction: column;
    width: 100%;
    overflow: auto;
    > .ant-tree {
      flex: 1;
      overflow: auto;
    }
    .ant-tree-list {
      .ant-tree-treenode {
        .ant-tree-node-content-wrapper {
          white-space: nowrap;
        }
      }
    }
  }
  > .ant-input-search {
    margin-bottom: 10px;
    input {
      height: 30px;
    }
  }
}
.ant-tree-list {
  .ant-tree-treenode {
    // height: 22px;
    line-height: 22px;
    padding: 0;
    .ant-tree-switcher {
      width: 22px;
      line-height: 22px;
    }
    .ant-tree-node-content-wrapper {
      min-height: 22px;
      // height: 22px;
      line-height: 22px;
      padding-left: 0;
      transition: none;
      &:hover {
        background-color: transparent;
      }
    }
    &.ant-tree-treenode-selected {
      background-color: @menu-selected-bg;
      color: #ffffff;
      .ant-tree-node-content-wrapper.ant-tree-node-selected {
        background-color: @menu-selected-bg;
        color: #ffffff;
      }
    }
  }
}
