.searchable-select-hide {
  display: none;
}
.searchable-select .searchable-select-hide0{
  top:50px;
  visibility:hidden;
  opacity:0;
  z-index:-100;
}
.searchable-select {
  display: inline-block;
  min-width: 250px;
  font-size: 14px;
  line-height: 1.428571429;
  color: #555;
  vertical-align: middle;
  position: relative;
  outline: none;
}

.searchable-select-holder{
  padding: 6px;
  background-color: #fff;
  background-image: none;
  color: #c0c4cc;
  border: 1px solid #ccc;
  border-radius: 4px;
  min-height: 30px;
  box-sizing: border-box;
  -webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  box-shadow: inset 0 1px 1px rgba(0,0,0,0.075);
  -webkit-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
  transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;
}
.searchable-select-holder-on{
  color: #000;
}

.searchable-select-caret {
  position: absolute;
  width: 0;
  height: 0;
  box-sizing: border-box;
  border-color: #c0c4cc transparent transparent transparent;
  top: 5px;
  bottom: 0;
  border-style: solid;
  border-width: 5px;
  margin: auto;
  right: 10px;
}
.searchable-delete{
  position: absolute;
  right: 25px;
  top: 7px;
  display: none;
  width: 20px;
  height: 20px;
  background: #fff;
  z-index: 10;
  cursor: pointer;
}
.searchable-delete-show{
  display: block;
}
 .searchable-delete span{
  position: absolute;
  left: 5px;
  top: 9px;
  width: 10px;
  height: 2px;
  background: #c0c4cc;
 }
 .searchable-delete span:first-child{
  transform: rotate(45deg);
}
.searchable-delete span:last-child{
  transform: rotate(-45deg);
} 

.searchable-select-dropdown {
  position: absolute;
  background-color: #fff;
  border: 1px solid #ccc;
  border-bottom-left-radius: 4px;
  border-bottom-right-radius: 4px;
  padding: 4px;
  border-top: none;
  top: 28px;
  left: 0;
  right: 0;
  /*新增*/
  visibility:visible;
  opacity:1;
  z-index:100;
  transition:all .3s;
}

.searchable-select-input {
  margin-top: 5px;
  border: 1px solid #ccc;
  outline: none;
  padding: 4px;
  width: 100%;
  box-sizing: border-box;
  text-align:left;
  width: 100%;
   float: none;
    margin: 0;
    height: initial;
    line-height: initial;
}

.searchable-scroll {
  margin-top: 4px;
  position: relative;
}

.searchable-scroll.has-privious {
  padding-top: 16px;
}

.searchable-scroll.has-next {
  padding-bottom: 16px;
}

.searchable-has-privious {
  top: 0;
}

.searchable-has-next {
  bottom: 0;
}

.searchable-has-privious, .searchable-has-next {
  height: 16px;
  left: 0;
  right: 0;
  position: absolute;
  text-align: center;
  z-index: 10;
  background-color: white;
  line-height: 8px;
  cursor: pointer;
}

.searchable-select-items {
  max-height: 200px;
  overflow-y: scroll;
  position: relative;
}

.searchable-select-items::-webkit-scrollbar {
  display: none;
}

.searchable-select-item {
  padding: 5px 5px;
  cursor: pointer;
  min-height: 30px;
  box-sizing: border-box;
    transition: all 1s ease 0s;
}

.searchable-select-item.hover {

  background: #f5f7fa;
  /*color: white;*/
}

.searchable-select-item.selected {
  background: #9bd3fa;
  color: white;
}
.searchable-noSearch{
	display:none;
}
.searchable-noSearch-show{
	display:block;
}