//浮层class
.map-picker-dialog-warp {
    .search-toolbar {
        display: flex;
        gap: 10px;
    }

    .container {
        margin-top: 10px;
    }
}

#map-container {
    padding: 0px;
    margin: 0px;
    width: 100%;
    height: 800px;
}

#custom-mark {
    position: relative;

    img {
        width: 25px;
        height: 34px;
    }

    .input-map__marker {
        position: absolute;
        top: -28px;
        right: -50%;
        transform: translate(50%);
        color: #fff;
        padding: 0px 10px;
        white-space: nowrap;
        font-size: 12px;
        font-family: "";
        background-color: #c2c2c2;
        border-radius: 3px;
    }
}

#map__result {
    position: absolute;
    right: 24px;
    z-index: 10;
    background-color: white;
    border: 1px solid #ebebeb;

    .search-result-item {
        cursor: pointer;
        border-bottom: 1px solid #ebebeb;
        padding: 8px;
        >p{
            margin: 0;
        }
        .result-item__cityname{
            font-size: 14px;
            font-weight: bold;
        }
        &:hover{
            background-color: #f0f0f0;
        }
    }
}