.oc-slect-wrapper {
  --bg-color: #b7d2ef;
  width: 100%;
  height: 44px;
  border-radius: 0.04rem;
  border: 1px solid #dcd8d8;
  background-color: #fff;
  font-size: 0.2rem;
  font-weight: 400;
  line-height: 18.5px;
  text-align: left;
  color: #333333;
  position: relative;
}
.oc-slect-wrapper .oc-slect-input {
  /* padding: 0 0.2rem 0 0.3rem; */
  display: flex;
  height: 100%;
  align-items: center;
  justify-content: space-between;
  cursor: pointer;
}

.oc-slect-wrapper .oc-slect-input .oc-slect-label {
  color: #1d2633;
  font-weight: 400;
  font-size: max(0.16rem, 16px);
}

.oc-slect-wrapper .oc-slect-input .icon-svg {
  font-size: 0.18rem;
  margin-left: 0.1rem;
}
.oc-slect-ul {
  display: none;
  width: 100%;
  position: absolute;
  top: calc(100% + 6px);
  left: 0;
  z-index: 20;
  background-color: #fff;
  box-shadow: 0px 1px 4px 0px #00000040;
  max-height: 40vh;
  overflow-y: auto;
  border-radius: 4px;
}
.oc-slect-ul .oc-select-li {
  padding: 0.04rem 0.12rem;
  font-size: max(0.16rem, 16px);
  font-weight: 400;
  line-height: 1.6;
  border-radius: 4px;
  text-align: left;
  color: #2F2725;
  transition: all 0.3s;
  position: relative;
  /* margin-bottom: 0 !important; */
}
.disable-select-li .loading-wrapper {
  position: static;
  width: 100%;
  /* height: ; */
}
.oc-slect-ul .oc-select-li:not(.disable-select-li, .active-select-li):hover {
  background-color: #F5F7FA;
  cursor: pointer;
  color:#464A4B;
}
.oc-slect-ul .oc-select-li.active-select-li::before {
  background-color: #e3effc;
  content: '';
  position: absolute;
  left: 0px;
  top: 0px;
  width: 100%;
  height: 100%;
  z-index: -1;
}

@media only screen and (max-width: 1024px) {
  .oc-slect-ul {
    max-height: 35vh;
  }
  .oc-slect-ul .oc-select-li {
    font-size: 0.22rem;
    padding: 0.12rem 0.1rem;
  }
  .oc-slect-wrapper {
    font-size: 0.22rem;
    line-height: 0.29rem;
    height: 0.62rem;
  }
  .oc-slect-wrapper .oc-slect-input .icon-svg {
    font-size: 0.3rem;
  }
}
