.be-tree-list {
  width: 100%;
  .be-tree {
    &.show {
      & > .node {
        .expend-icon {
          transform: rotate(0);
        }
      }
    }

    .node {
      position: relative;
      margin-bottom: 1px;
      // &:hover {
      //   background-color: #f2f2f2;
      // }
      .node-title {
        display: flex;
        align-items: center;

        margin-left: calc(25px * (var(--level) - 1));
      }
      .node-label {
        padding: 4px;
        flex: 1 0 auto;
        .title {
        }
        .sub-title {
          color: #666;
          line-height: 1;
        }
      }
      .sub-node-title {
        font-size: 0.85;
        color: #909090;
        padding: 0;
      }
      i.expend-icon {
        width: 22px;
        aspect-ratio: 1;
        transition: transform 250ms;
        padding: 4px;
        transform: rotate(-90deg);
      }
    }
  }
}
