.mySelect{
    position: relative;
}
.mySelect label{
    font-size: 1.3rem;
    font-weight: 500;
    width:115px;
    text-align: right;
    margin-right: 8px;
    word-break: break-word;
}
.mySelect .inputWrap{
    width:100%;
    min-height: 30px;
    border: 1px solid #ccc;
    border-radius: 3px;
    position: relative;
    cursor: pointer;
    display: flex;
    align-content: center;
    font-size: 1.2rem;
}
.mySelect .inputWrap:focus,.mySelect .inputWrap:active,.mySelect .inputWrap:hover{
    border-color: #ff960d94;
    box-shadow: 0 0 0 .2rem #ff9a0054;
}
.mySelect .bi-chevron-compact-down{
    position: absolute;
    top: auto;
    right: 0;
    width: 20px;
    font-size: 1.3rem;
    pointer-events: none;    /* 使箭头不接收鼠标事件 */
}
.mySelect .bi-chevron-compact-down::before{
    font-weight: 700!important;
}
.mySelect ul{
    padding:0 5px ;
    margin: 0;
    padding-right: 35px;
}
.mySelect ul,.mySelect li{
    list-style: none;
    display: flex;
    align-items: center;
    width: 100%;
    white-space: nowrap;
    overflow: hidden;
}
.mySelect li{
    display: inline-block;
    font-size: 1.2rem;
}
.mySelect .fa-close{
    cursor: pointer;
}
.mySelect .fa-close:hover{
    color: #237eff;
}
.mySelect .mySelect-option{
    width: 100%;
    border: 1px solid #ccc;
    box-shadow: 0 4px 6px rgba(50, 50, 93, 0.11), 0 1px 3px rgba(0, 0, 0, 0.08);
    border-top: none;
    max-height: 200px;
    overflow-y: scroll;
    position: absolute;
    height: auto;
    z-index: 1001;
    background-color: #fff;
    display: none;
}
.mySelect .mySelect-option div{
    min-height: 30px;
    height: auto;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    /*white-space: nowrap;*/
    padding: 5px;
}
.mySelect .mySelect-option div>span{
    word-break: break-all;
    display: inline-block;
}
.mySelect .inputWrap>i{
    position: absolute;
    /*padding: 13px;*/
    right: 0;
    top: 0;
    height:100%;
    display: flex;
    align-items: center;
}
.mySelect-option div{
    cursor: pointer;
}
.mySelect-option div i{
    float: right;
    color: #ff9a00;
}
.mySelect-option div.selected{
    background-color: #95999d;
    color: #fff;
    padding: 5px;
}
.mySelect-option div:hover{
    background:#95999d;
    color: #fff;
}