@charset "utf-8";

.selectSearchArea {
  width: 90%;
    height: 39px;
  float: left;
  position: relative;
}
.multiFunctionSelect {
      width: 100% !important;
    height: 100% !important;
    border: 1px solid #e2e2e2 !important;
    border-radius: 4px !important;
    padding-left: 10px !important;
    padding-right: 30px !important;
    box-sizing: border-box !important;
    font-size: 15px !important;
    background: none !important;
    height: 45px !important;
    line-height: 45px !important;
}
.multiFunctionSelect:hover {
  border: 1px solid #c8251c;
}
.selectSearchArea > i {
  position: absolute;
  right: 10px;
  top: 11px;font-size: 13px;
  color: #c1c1c1;
}
.selectSearchArea > .multiFunctionSelectList {
  position: absolute;
  width: 100%;
  max-height: 200px;
  top: 38px;
  left: 0;
  overflow: auto;
  border: 1px solid #e2e2e2;
  box-sizing: border-box;
  font-size: 0.875rem;
  z-index: 2;
  background-color: #ffffff;
}
.selectSearchArea > .multiFunctionSelectList > li {
  padding: 0 10px;
  cursor: pointer;
  overflow: hidden;
  height: 40px;
  line-height: 40px;
  text-overflow: ellipsis;
  white-space: nowrap;
	width: 100%;
	font-size: 15px;
	color: #888;
		
}
.selectSearchArea > .multiFunctionSelectList > li:hover {
  background-color: #c8251c;
  color: #ffffff;
}

.selectSearchArea > .multiFunctionSelectList > li.active {
  background-color: #c8251c;
  color: #ffffff;
}
.selectSearchArea >.maskLayer {
  width: 100%;
  position: absolute;
  left: 0;
  background-color: #eceff3;
  opacity: 0.8;
  z-index: 10;
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 14px;
  color: #1194ff;
}
.selectSearchArea >.maskLayer >.loadingImg {
  font-size: 26px;
  color: #1194ff;
  background-color: #eceff3;
  animation: rotateImg 3s linear infinite;
  -webkit-animation: rotateImg 3s linear infinite;
}

@keyframes rotateImg {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@-webkit-keyframes rotateImg {
  0% {
    -webkit-transform: rotate(0deg);
  }
  50% {
    -webkit-transform: rotate(180deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@media (min-width: 992px) and (max-width: 1200px){

}
@media (max-width: 992px){
  


}
@media (max-width: 767px){
	.selectSearchArea {width: 78%;}
	.multiFunctionSelect { font-size: 13px !important;height: 34px !important;line-height: 34px !important;}
	.selectSearchArea > i {top: 8px;}
 

  
}