.find-bank {
    position: relative;
}

.bank_chose_list {
    max-height: 180px;
    overflow: auto;
    padding: 0;
    list-style: none;
    overflow-x: hidden;
    position: absolute;
    left: 0;
    top: calc(100% + 3px);
    width: 100%;
    list-style-type: none;
    min-width: 280px;
    background: #fff;
    border-radius: 3px;
    box-shadow: 0 2px 6px rgb(0 0 0 / 15%);
    z-index: 51;
    display: none;
}

.bank_chose_list.active {
    display: block;
}

.bank_chose_list a {
    display: block;
    padding: 10px 15px;
    border-bottom: 1px solid #e8ecef;
}


.bank_chose_list::-webkit-scrollbar {
    width: 10px;
}

.bank_chose_list::-webkit-scrollbar-track {
    background-color: #f1f4f7;
}

.bank_chose_list::-webkit-scrollbar-thumb {
    background-color: #dadee2;
    border-radius: 6px
}