.batch_label_wrap {
  width: 100%;
  height: 100%;
  border: 1px solid #ccc;
  border-radius: 8px;
  padding: 10px;
  resize: vertical;
  box-sizing: border-box;
  position: relative;
  &:hover {
    border-color: #2f8ef5;
  }
  &:active {
    border-color: #007aff;
  }
  &:focus {
    outline: none;
    border-color: #007aff;
  }

  a {
    color: #142A51;
  }

  :global .ant-dropdown-menu {
    max-height: 100px !important;
    overflow-y: auto !important;
  }

  input {
    width: 100%;
    outline: none;
    border: none;
    height: 100%;
    background: none;
    cursor: inherit;
  }

  input::placeholder {
    color: rgba(0, 0, 0, 0.28);
  }
}


.inner {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  flex-grow: 1;
  gap: 4px;
  position: relative;
  box-sizing: border-box;
  overflow: hidden;
}

.tab_wrap {
  display: inline-flex;
  box-sizing: border-box;
  max-width: 100%;
  align-items: center;
  color: #004FD3;
  gap: 2px;
  justify-content: space-between;
  background: #ECEFF4;
  border-radius: 3px;
  margin-right: 4px;
  padding: 0 4px;
  //margin: 4px;
  .text {
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    flex: 1;
    font-size: 10px;
    color: #142A51;
  }
  .close {
    cursor: pointer;
    margin: 0 4px;
  }
}

.mirror {
  position: absolute;
  top: 0;
  left: 0;
  visibility: hidden;
  pointer-events: none;
}

.dropWrap {
  :global ul {
    max-height: 310px;
    overflow-y: auto;
  }
}
