.contactMain {
    margin: 50px auto 0;
    position: relative;
}

.contactMainCon {
    width: 80%;
    margin: 0 auto;
    max-width: 1400px;
}

.contactMainConList {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    margin-bottom: 100px;
}

.contactMainConItem {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 22%;
}

.contactMainConItem img {
    width: 50%;
    margin: 30px auto;
}

.contactMainConItem span {
    color: #333333;
    font-size: 18px;
}

/* =========================================
   高德地图模块样式
   ========================================= */
#container {
    width: 100%;
    margin-bottom: 0;
    height: 650px;
    background: url(../images/banner/map.png) no-repeat;
    background-size: 100% 100%;
}

@media screen and (max-width: 800px) {
    .contactMainConList{
        flex-wrap: wrap;
        justify-content: center;
    }
    .contactMainConItem{
        width: 45%;
    }
    .contactMainConItem:first-child{
        margin-right: 20px;
    }
    #container {
        height: 190px;
        background: url(../images/banner/map_s.png) no-repeat;
        background-size: 100% 100%;
    }
}