.area-choose {
  width: 190px;
  height: 32px;
  line-height: 32px;
  padding: 0 20px;
  margin-top: 4px;
  border: 1px solid #ccc;
  border-radius: 4px;
  text-align: center;
  cursor: pointer;
  transition: all 0.5s;
  &:hover {
    color: #215fff;
    border-color: #215fff;
    transition: all 0.5s;
  }
}
.selected-box {
  width: 100%;
  min-height: 24px;
  box-sizing: border-box;
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-top-width: 1.02px;
  border-radius: 4px;
  outline: none;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  user-select: none;
  text-align: left;
  padding: 4px 15px;
  line-height: 24px;
  .ant-tag {
    height: 26px;
    line-height: 26px;
    border: 1px solid #215fff;
    margin: 4px 5px 4px 0;
    &:nth-child(5n) {
      margin-right: 0;
    }
  }
  .placeholder {
    color: #bfbfbf;
  }
}
.selected-list {
  margin-right: 10px;
  .ant-tag {
    height: 32px;
    line-height: 32px;
  }
}
.selected-list,
.area-choose {
  float: left;
}
