/*input 下拉选择框*/
.form-group .input-group-addon {
  float: right;
  margin-top: -34px;
  width: 39px;
  height: 34px;
  border-color: #d2d6de;
}

input::-ms-clear, input::-ms-reveal {
  /*clear去掉叉  reveal去掉眼睛;但是只能去掉ie10及以上，ie9及以下去不掉*/
  display: none;
}

.inputCase i.fa {
  position: absolute;
  right: 30px;
  top: 10px;
}

.fa {
  cursor: pointer;
}

.select2-selection.select2-selection--single {
  height: 34px
}

.another_input {
  height: 34px;
  border-color: #d2d6de;
  width: 31%;
  border-radius: 0;
  box-shadow: none;
}

span.form-control {
  /*overflow: hidden !important;*/
  height: auto !important;
  min-height: 33.6px;
}

.box-body select {
  width: 100%;
}

/*################input-box 下拉选择框 开始#####################*/
.input-box ul {
  border: 1px solid #ccc;
  margin-top: 1px;
  padding: 0;
  position: absolute; /*绝对定位*/
  z-index: 3;
  width: 90%;
  background-color: #ffffff;
  box-shadow: 0 1px 5px #999; /*阴影*/
  /*#####固定宽度 设置滚动条####*/
  max-height: 200px;
  overflow: auto;
  /*#################*/
}

.input-box li {
  list-style: none;
  line-height: 20px;
  padding: 5px;
  padding-left: 12px;
  border-bottom: 1px solid #ccc;
  cursor: pointer;
}

.input-box li:hover {
  background-color: #f5f5f5;
}

.input-box ul li:active, .input-box ul li.active {
  background-color: #e4e9f2;
}

/*################input-box 下拉选择框 结束#####################*/
/*搜索样式*/
.input-group-search {
  display: block;
  float: right;
  margin-right: 5px;
  margin-top: 5px;
  z-index: 0;
}

.input-group-search > input {
  width: 100px !important;
}