.contact {
    padding-top: 60px;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    align-items: center;
}

.contact li {
    width: 28%;
    display: flex;
    align-items: center;
    margin-bottom: 70px;
}

.contactL {
    width: 76px;
    height: 76px;
    background: linear-gradient(90deg, #3FD1DB 0%, #5A86E5 100%);
    margin-right: 30px;
    border-radius: 50%;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
    flex-shrink: 0;
}

.contactL img {
    width: 50px;
    height: 50px;
}

.contactR h3 {
    font-weight: 500;
    margin-bottom: 12px;
    color: #333;
}

.contactR p {
    color: #333;
}

/* 地图 */
.mapBox {
    width: 100%;
    height: 580px;
}

.map_containers {
    width: 100%;
    height: 100%;
}

.map_containers #map_container {
    width: 100%;
    height: 100%;
    margin: 0px;
}

/* 移动端 */
@media (max-width: 767px) {
    .contact {
        padding-top: 50px;
    }

    .contact li {
        width: 100%;
        margin-bottom: 50px;
    }

    .mapBox {
        height: 400px;
    }
}