@charset "utf-8";
/*selectBox样式，可根据实际项目需求进行调整*/
.selectBox-wrap {
  display: inline-block;
  position: relative;
  border-right: 1px solid #C0C0C0;
  height: 30px;
  padding-right: 15px;
  cursor: pointer;
  -webkit-user-select: none;
  user-select: none;
  z-index: 8;
  vertical-align: top;
  box-sizing: content-box;
}

.selectBox-wrap.focus { z-index: 9; }

select.selectBox {
  height: 32px;
  vertical-align: top;
  padding: 0 8px 0 4px;
  border: 1px solid #aaa;
  border-radius: 3px;
  background-color: #f2f2f2;

}

.selectBox-wrap>select {
  display: none;
  height: 32px;
  vertical-align: top;
  padding: 0 8px;
  border: 1px solid #aaa;
}

.selectBox-input {
  display: block;
  position: absolute;
  left: 0;
  top: 0;
  line-height: 30px;
  bottom: 0;
  right: 15px;
  padding-left: 8px;
  white-space: nowrap;
  overflow: hidden;
}

.selectBox-arrow {
  display: block;
  position: absolute;
  right: 3px;
  top: 40%;
  height: 6px;
  width: 10px;
  background:url(../images/ico.png) -15px -292px no-repeat;
}
 .selectBox-arrow-focus{
	background:url(../images/ico.png) -15px -345px no-repeat;
}

.selectBox-list {
  display: none;
  list-style: none;
  margin: 0;
  padding: 0;
  position: absolute;
  z-index: 10;
  left: -1px;
  top: 30px;
  background-color: #fff;
  border: 1px solid #AAA;
  border-top:0;
  width: 100%;
  overflow: auto;
  max-height: 200px;
  border-radius: 0 3px 3px 3px;
  box-sizing: content-box;
}

.selectBox-wrap.up .selectBox-list {
  top: auto;
  bottom: 30px;
}

.selectBox-wrap.focus .selectBox-list { display: block; }

.selectBox-list>li {
  display: block;
  line-height: 28px;
  padding: 0 10px 0;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.selectBox-list>li:hover { background-color: #ddd; }

.selectBox-list>li.selected {
  background-color: #ddd;
}

.selectBox-list>li.disabled {
  background-color: #f2f2f2;
  color: #999;
  cursor: not-allowed;
}

.selectBox-list>li.disabled.selected {
  background-color: #59ADFF;
  color: #f2f2f2;
  cursor: not-allowed;
}

.selectBox-wrap.disabled {
  color: #999;
  border-color: #ccc;
  cursor: not-allowed;
}

.selectBox-wrap.disabled .selectBox-arrow { border-top-color: #ccc; }
