.oc-slect-wrapper{
    --bg-color:#B7D2EF;
    width: 100%;
    height: 44px;
    border-radius: 8px;
    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 .icon-svg{
    font-size: 0.18rem;
    margin-left: 0.1rem;
}
.oc-slect-ul{
    display: none;
    width: 100%;
    position: absolute;
    top: calc(100% + 2px);
    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.11rem 0.28rem;
    font-size: 0.2rem;
    font-weight: 400;
    line-height: 1.6;
    border-radius: 4px;
    text-align: left;
    color: #333;
    transition: all 0.3s;
    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: #DCEDE2; */
    color: var(--bg-color);
    cursor: pointer;
}
.oc-slect-ul .oc-select-li.active-select-li{
    background-color: var(--bg-color);
    /* color: #fff; */
}
@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;
    }
}