.j_select {
  margin: 0;
  padding: 0;
  width: 100% !important;
  height: 36px !important;
  cursor: pointer;
  position: relative;
  background: #fff;
  display: inline-block;
}
.j_select_disabled {
  cursor: not-allowed;
}
.j_select .current_select {
  margin: 0;
  padding: 0;
  height: 100%;
  line-height: 36px;
  text-indent: 1em;
  border: 1px solid #ccc;
  outline: none;
  font-size: 14px;
  color: #999999;
}
.j_select .current_select .select_icon {
  width: 11px;
  height: 6px;
  margin: 0;
  padding: 0;
  position: absolute;
  right: 5px;
  top: 50%;
  transform: translateY(-50%);
  background: url(/static/login/drop.png) no-repeat;
}

.j_select .current_select .select_icon svg {
  display: none;
}

.j_select ul {
  margin: 0;
  padding: 0;
  border-radius: 2px;
  display: none;
  box-shadow: 1px 1px 2px #ccc;
  border: 1px solid #ccc;
  background: #fff;
  position: absolute;
  width: 100% !important;
  max-height: 302px;
  overflow: auto;
  outline: none;
  z-index: 99 !important;
  font-size: 14px;
  box-sizing: border-box;
}
.j_select ul li {
  margin: 0;
  padding: 0;
  width: 100%;
  line-height: 36px;
  text-indent: 1em;
  list-style: none;
}
.j_select ul li:hover {
  background: #005096;
  color: #fff;
  cursor: default;
}
/* .j_select ul li.current_item {
  background: #005096;
  color: #fff;
  cursor: default;
} */
