body {
  margin: 0;
}

i {
  display: inline-block;
  height: 1em;
  width: 1em;
  font-size: 20px;
  box-sizing: border-box;
  text-indent: -9999px;
  vertical-align: middle;
  position: relative;
}

i::before,
i::after {
  content: '';
  box-sizing: inherit;
  position: absolute;
  left: 50%;
  top: 50%;
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}

.icon-close {
  color: #BFBFBF;
  display: none;
  cursor: pointer;
  font-size: 18px;
}

.icon-close::before {
  width: 70%;
  border-top: 2px solid;
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.icon-close::after {
  height: 80%;
  border-left: 2px solid;
  -ms-transform: translate(-50%, -50%) rotate(45deg);
  transform: translate(-50%, -50%) rotate(45deg);
}

.icon-search {
  color: #007AFF;
  font-size: 18px;
  margin-right: 8px;
  pointer-events: none;
}

.icon-search::before {
  width: 0.75em;
  height: 0.75em;
  border: 2px solid;
  border-radius: 50%;
  left: 5%;
  top: 5%;
  -ms-transform: translate(0, 0) rotate(45deg);
  transform: translate(0, 0) rotate(45deg);
}

.icon-search::after {
  width: 0.4em;
  border-top: 2px solid;
  left: 80%;
  top: 80%;
  -ms-transform: translate(-70%, -70%) rotate(45deg);
  transform: translate(-70%, -70%) rotate(45deg);
}

.icon-arrow-right::before {
  height: 0.65em;
  width: 0.65em;
  border-style: solid;
  border-width: 2px 0 0 2px;
  -ms-transform: translate(-75%, -50%) rotate(135deg);
  transform: translate(-75%, -50%) rotate(135deg);
}

.input {
  width: 240px;
  border-radius: 4px;
  background-color: #ffffff;
  box-sizing: border-box;
  display: flex;
  align-items: center;
  /* position: fixed; */
  left: 0;
  top: 0;
}

.input input {
  flex: 1;
  border: none;
  outline: none;
  height: 18px;
  font-size: 12px;
  margin-right: 8px;
  color: #000;
}

.input i {
  flex: 0 0 20px;
}

.list {
  left: 0;
  top: 26px;
  border-radius: 4px;
  background-color: #ffffff;
  border: 1px solid #bebebe;
  width: 240px;
  box-sizing: border-box;
  font-size: 12px;
  padding: 2px 0 4px;
  display: none;
}

.list .option {
  padding: 4px 8px;
  cursor: pointer;
}

.list .option:hover {
  background: #f9f1f1;
}

.list .option div {
  color: #000000;
  line-height: 16px;
  margin-bottom: 2px;
}

.list .option div span {
  color: #007AFF;
}

.list .option p {
  margin: 0;
  color: #b7b7b7;
  line-height: 14px;
  font-size: 10px;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.list .option p span {
  color: #007AFF;
}

.list .action {
  display: flex;
  justify-content: flex-end;
  margin-top: 8px;
  color: #007AFF;
  align-items: center;
  line-height: 14px;
}

.list .action span {
  cursor: pointer;
}

.list .action span i {
  font-size: 12px;
  margin: 0 8px 4px 4px;
}
select{
  width: 240px;
}
.empty{
  text-align: center;
  color: #bebebe;
  height: 50px;
  line-height: 50px;
}