/* 联系我们样式 */

.contact-title {
    text-align: center;
    margin: 80px 0;
}

.contact-item ul {
    display: flex;
    justify-content: center;
    align-items: center;
    /* border: 1px solid red; */
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

.contact-item ul li {
    float: left;
    flex: 1;
    text-align: center;
    margin: 40px 0;
}

.contact-item ul li h4 {
    margin: 33px 0;
}

.contact-location {
    margin: 46px 0 50px 0;
    width: 100%;
    height: 460px;
}

#allmap {
    width: 100%;
    height: 100%;
}


/* 联系我们样式 */


/* 屏幕自适应样式 */

@media (max-width:768px) {
    .contact-item ul {
        flex-wrap: wrap;
    }
    .contact-item ul li {
        flex: 50%;
    }
    .contact-item ul li img {
        width: 40%;
    }
    .contact-item ul li:nth-child(3) img {
        /* width: 50%; */
        margin-top: -35px;
    }
    .contact-item ul li:nth-child(4) img {
        width: 50%;
    }
    .contact-location {
        height: 192px;
    }
}