.base_container {
  display: flex;
  height: 100%;
  width: 100%;
  flex-direction: row;
  justify-content: flex-start;
  .ant-card-body {
    padding: 12px;
  }
  .ant-table-body {
    width: 100%;
  }
  .listItem {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 400;
    color: #414e65;
    cursor: pointer;
    line-height: 20px;
    align-items: center;
    padding: 8px 14px;
  }
  .clickRowStyle {
    background: #cfe7fd;
  }
  .backRowStyle {
    background: #97c3e8;
  }
  .pickItem {
    background-color: #aed8fa;
  }
  .listHover {
    background-color: #f5f6f9;
  }
}
.title {
  display: flex;
  justify-content: space-between;
  width: 100%;
}
.title:hover {
  .tip {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    width: 25%;
  }
}
.tip {
  display: none;
}