.map-content {
    width: 1200px;
    margin: 20px auto 20px auto;
    height: 600px;
}

.map-position {
    width: 100%;
    height: 100%;
    position: relative;
}

#map1 {
    width: 100%;
    height: 100%;
}

/* 手机适配 */
@media screen and (max-width: 900px) {
    .map-content {
        width: 100vw;
        height: calc(100vw * 0.5);
        display: flex;
        align-content: center;
        justify-content: center;
        flex-wrap: wrap;
    }

    .map-position {
        width: 1200px;
        height: 600px;
        scale: calc(100% / 3.2);
    }

    #map1 {
        width: 1200px;
    }
}
