.locations-main{
    max-width: 100%;
    min-height: 640px;
    position: relative;
}

#locations-map{
    width: 100%;
    height: calc(100vh - 180px);
}

.shadow, .shadow img, .shadow div{
    display: none !important;
}

.locations-info{
    width: 100%;
    height: auto;
}

.locations-info p{
    margin-bottom: 0;
}

/* .BMap_bubble_pop{
    padding: 12px !important;
} */

.filters{
    position: absolute;
    top: 24px;
    left: 24px;
    height: calc(100% - 48px);
    background-color: rgba(0, 0, 0, 0.6);
    border-radius: 12px;
    width: 360px;
    padding:12px 0;
    color: #fff;
    z-index: 98;
    overflow: hidden;
}

@media(max-width: 768px){
    .filters{
        left: 24px;
        right: 24px;
        margin: auto;
        width: unset;
    }
}

.filters_title{
    height: 42px;
    letter-spacing: 6px;
    line-height: 42px;
    font-size: 18px;
    padding:  0 24px;
}

.filters_selects{
    height: 42px;
    line-height: 42px;
    margin: 12px 24px;
    display: flex;

}

.filters_selects .filters_icon{
    width: 42px;
    height: 42px;
    border: #fff 1px solid;
    border-radius: 3px;
    padding: 6px;
    cursor: pointer;
}

.filters_selects .filters_icon svg{
    width: 100%;
    height: 100%;
    fill: #fff;
}

.filters_selects .filters_select{
    width: calc(100% - 42px - 12px);
    height: 42px;
    margin-left: 12px;
    border: #fff 1px solid;
    border-radius: 3px;
    padding-right: 12px;
    background-color: #fff;
    position: relative;
}

.filters_selects .filters_select select{
    width: 100%;
    height: 40px;
    font-size: 16px;
    background-color: #fff;
    color: #000;
    padding: 0 12px;
    border: 0;
    outline: none;
}

.filters_select .filters_select_input{
    width: calc(100% - 48px);
    height: 40px;
    background-color: #fff;
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
}

.filters_select_input input{
    width: 100%;
    height: 100%;
    line-height: 40px;
    padding: 0 12px;
    border: 0;
    outline: none;
}

.filters_select .dropdown-list{
    position: absolute;
    top: 40px;
    left: 0;
    width: 100%;
    max-height: 360px;
    overflow-y: auto;
    background: #fff;
    color: #000;
    list-style: none;
}

.filters_select .dropdown-list::-webkit-scrollbar {
    display: none; /* 隐藏滚动条 */
}

.filters_select .dropdown-list{
    overflow-y: auto;
    -ms-overflow-style: none; /* IE 10+ 和 Edge */
}

.filters_select .dropdown-list {
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
}

.filters_distributors{
    width: 100%;
    height: calc(100% - 42px - 66px - 12px);
    overflow-y: auto;
    scrollbar-width: none;
    margin-top: 24px;
}

.filters_distributors::-webkit-scrollbar {
    display: none; /* 隐藏滚动条 */
}

.filters_distributors {
    overflow-y: auto;
    -ms-overflow-style: none; /* IE 10+ 和 Edge */
}

.filters_distributors {
    overflow-y: auto;
    scrollbar-width: none; /* Firefox */
}

.distributor{
    padding: 24px;
    margin: 0;
    width: 100%;
    max-width: 100%;
    cursor: pointer;
}

.distributor:nth-child(odd) {
    background-color: #444444;
}

.distributor:nth-child(even) {
    background-color: #545454;
}

.distributor_title{
    font-size: 18px;
    font-weight: bold;
    margin-bottom: 12px;
}

.distributor p{
    margin-bottom: 0;
}

.dropdown-list ul li{
    cursor: pointer;
}