.map-view {
    display: flex;

    .amap-logo,.amap-copyright,.amap-call {
        display: none !important;
    }

    #map-panel {
        background-color: white;
        max-height: 90%;
        overflow-y: auto;
        position: relative;
        width: 280px;
        height: fit-content;
        padding: 20px;
        border-color: #ffffff;

        &::after,&::before {
            position: absolute;
            content: '';
            display: block;
            background: #424447;
            top: 50%;
            width: 20px;
            height: 20px;
            border-radius: 50%;
        }

        &::before {
            left: 0;
            transform: translate(-50%,-50%);
        }
        &::after {
            right: 0;
            transform: translate(50%,-50%);
        }
    }
    #map-panel .amap-call {
        background-color: #009cf9;
        border-top-left-radius: 4px;
           border-top-right-radius: 4px;
    }
    #map-panel .amap-lib-driving {
        border-bottom-left-radius: 4px;
           border-bottom-right-radius: 4px;
        overflow: hidden;
    }
}