.el-treeSelect {
  display: inline-block;
  width: 100%;
}

.treeSelect {
  outline: none;
  user-select: none;
  box-sizing: border-box;
  display: inline-block;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  white-space: nowrap;
  height: 32px;
  line-height: 32px;
  width: 100%;
  vertical-align: middle;
  border-radius: 4px;
}

.treeSelect-open {
  border-color: #5eafed;
  box-shadow: 0 0 1px #5eafed;
}

.badge {
  display: inline-block;
  min-width: 10px;
  padding: 1px 10px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
  color: #fff;
  text-align: left;
  white-space: nowrap;
  vertical-align: middle;
  border-radius: 10px;
  cursor: pointer;
  height: 200px;
}

.dropdownCls {
  background-color: #fff;
  box-shadow: 0 1px 6px rgba(0, 0, 0, 0.2);
  box-sizing: border-box;
  position: absolute;
  margin-top: 5px;
  outline: none;
  overflow: hidden;
  font-size: 12px;
  text-align: left;
  max-height: 350px;
  width: 100%;
  z-index: 1000;
  min-width: 355px;
}

.drop-list {
  list-style: none;
  padding: 0;
  margin: 0;
  margin-top: -3px;
}

.drop-list::after {
  content: '.';
  display: block;
  height: 0;
  font-size: 0;
  clear: both;
}

.drop-list li {
  /*background-color: #5eafed;*/
  border-radius: 4px;
  cursor: default;
  display: inline-block;
  padding: 0 2px;
  margin-right: 4px;
  max-width: 99%;
  position: relative;
  overflow: hidden;
  line-height: 1.5;
  transition: padding 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  color: #fff;
}

.drop-list li span {
  line-height: 1;
  font-size: 13px;
  background: #5eafed;
  padding: 4px;
  border-radius: 4px;
}

.clear-selected {
  position: absolute;
  z-index: 1;
  top: 0;
  right: 0;
  width: 20px;
  font-size: 12px;
  cursor: pointer;
  transition: color 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
}

.clear-selected:hover {
  color: #20a0ff;
}

.select-tree-disable {
  background: #fff;
}