.list {
  background-color: var(--color-white, #fff);
  padding: 8px;
  max-height: 240px;
  overflow-y: auto;
}

a {
  color: var(--color-brand1-6, #1b9aee);
  cursor: pointer;
}

.item {
  display: flex;
  width: 360px;
  align-items: center;
  justify-content: space-between;
  height: 32px;
  margin-bottom: 6px;
  border-radius: 4px;
  border: 1px solid var(--color-brand3-1, #f2f5f7);
  padding: 0 12px;
  background-color: var(--color-brand3-2, #e9edf0);
  &:last-child {
    margin-bottom: 0;
  }
  &Name {
    flex: 1;
    overflow: hidden;
  }
}
