.contact-box .contact h2{
    padding-top: 80px;
    margin-bottom: 18px;
    font-size: 36px;
	font-weight: bold;
	color: #333333;
    text-align: center;
}
.contact-box .contact h3 {
    font-size: 20px;
	color: #666666;
    margin-bottom: 36px;
    text-align: center;
}
.contact-box .contact ul {
    display: flex;
}
.contact-box .contact ul li {
    position: relative;
    display: flex;
    flex-direction: column;
    align-items: center;
    flex: 1;
}
.contact-box .contact ul li::after {
    position: absolute;
    content: '';
    right: 0;
    bottom: 0;
    width: 1px;
    height: 226px;
    background-color: #f4f4f4;
}
.contact-box .contact ul li p {
    position: relative;
    font-size: 18px;
	font-weight: bold;
	color: #333333;
    margin-top: 25px;
}

.contact-box .contact ul li p::after {
    position: absolute;
    content: '';
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 26px;
    height: 1px;
    background-color: #0087c2;
}
.contact-box .contact ul li span {
    width: 70%;
    text-align: center;
    margin-top: 15px;
    font-size: 14px;
	color: #666666;
    font-family: MicrosoftYaHei;
}

.map {
    height: 480px;
    margin-bottom: 100px;
}
#map {
    width: 100%;
    height: 100%;
    margin-top: 22px;
}
@media (max-width:767px) {
    .contact-box .contact ul {
        flex-wrap: wrap;

    }
    .contact-box .contact ul li {
        flex: none;
        width: 50%;
        margin-top: 20px;
    }
} 