.orgBread {
  max-height: calc(50% - 26px);
  padding: 0 16px 0 30px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  overflow-y: auto;
  .item {
    overflow: hidden;
    display: flex;
    margin-bottom: 8px;
    line-height: 20px;
    color: #1460e7;
    font-size: 13px;
    cursor: pointer;
    .name {
      width: 100%;
      overflow: hidden;
      text-overflow: ellipsis;
      white-space: nowrap;
    }
    .right {
      margin: 0 2px;
      font-size: 12px;
      color: #286CFB;
    }
  }
  .item:last-child {
    color: #a8adb3;
    cursor: unset;
    .name {
      width: 100%;
      overflow: auto;
      text-overflow: unset;
      white-space: break-spaces;
    }
    .right {
      display: none;
    }
  }
}
