.inputBox {
  position: relative;
  margin-bottom: 20px;
}
.inputBox .checkResult {
  background-color: #FFF;
  background-image: none;
  border: 1px solid #e5e6e7;
  border-radius: 1px;
  color: #999;
  display: block;
  padding: 6px 12px;
  padding-right: 35px;
  -webkit-transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  transition: border-color 0.15s ease-in-out 0s, box-shadow 0.15s ease-in-out 0s;
  width: 100%;
  font-size: 14px;
  height: 34px;
  box-sizing: border-box;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.inputBox i {
  position: absolute;
  right: 10px;
  top: 11px;
  font-size: 12px;
  transition: 0.5s;
}
.inputBox i.up {
  transform: rotate(540deg);
}
.inputBox .businessModalBox {
  display: none;
  width: 100%;
  position: absolute;
  background: #ffffff;
  z-index: 3000;
  border: 1px solid #e5e6e7;
  box-sizing: border-box;
}
