.main_map {
    width: 100%;
    height: 100%;
    position: relative;
}

/* 门店列表浮窗样式 */
.store-list {
    position: absolute;
    right: 0;
    top: 0;
    padding: 60px;
    width: 360px;
    height: 100%;
    background: #ffffff;
    box-shadow: inset 0px 0px 0px 0px rgba(0, 0, 0, 0.1);
    z-index: 199;
    overflow-y: auto;
    display: flex;
    flex-direction: column;
    flex-wrap: wrap;
    gap: 24px;
}

.store-item {
    padding: 0 0 24px;
    border-bottom: 1px solid rgba(51, 51, 51, 0.1);
    cursor: pointer;
    position: relative;
}
.store-item p {
    width: fit-content;
}
.store-item-1 {
    font-family: Arialbd;
    font-weight: bold;
    font-size: 14px;
    color: #2a2a2a;
    line-height: 20px;
}

.store-item-2 {
    font-family: Arial_normal;
    font-size: 12px;
    color: #2a2a2a;
    line-height: 17px;
    margin-top: 8px;
}
.store-item-3 {
    font-family: Arial_normal;

    font-size: 12px;
    color: #2a2a2a;
    line-height: 17px;
}
.store-item-4 {
    font-family: Arial_normal;

    font-size: 12px;
    color: #2a2a2a;
    line-height: 17px;
    text-decoration-line: underline;
    margin-top: 14px;
}

.store-nav-btn {
    position: absolute;
    right: 0;
    bottom: 24px;
    font-family: Arial_normal;

    font-size: 12px;
    color: #2a2a2a;
    line-height: 17px;
    text-decoration-line: underline;
}
@media (max-width: 768px) {
    /* 门店列表浮窗样式 */
    .store-list {
        right: 0;
        top: auto;
        bottom: 0;
        padding: 24px;
        width: 100%;
        height: fit-content;
        gap: 24px;
    }
}

@media screen and (max-width: 338px) {
    .store-list {
        padding: 6.4vw;
        gap: 6.4vw;
    }

    .store-item {
        padding: 0 0 6.4vw;
    }
    .store-nav-btn {
        bottom: 6.4vw;
    }
}
