.contactInformation {
    width: 1400px;
    margin: 0 auto;
    margin-top: 80px;
}

.contactInformation-title {
    align-self: stretch;
    color: #1d2129;
    text-align: center;
    font-family: "OPPOSans";
    font-size: 36px;
    font-style: normal;
    font-weight: 500;
    line-height: 44px;
}

.contactInformation-map{
    width: 100%;
    aspect-ratio: 17/5;
    margin-top: 60px;
}

.contactInformation-map iframe{
    width: 100%;
    height: 100%;
}

.contactInformation-list {
    display: flex;
    flex-wrap: wrap;
    gap: 40px;
    margin-top: 60px;
}

.contactInformation-item {
    width: calc((100%/4) - 30px);
    display: flex;
    align-items: center;
}

.contactInformation-item-icon {
    width: 40px;
    height: 40px;
    margin: 0 auto;
    margin-right: 15px;
}

.contactInformation-item-icon img {
    width: 100%;
    height: 100%;
}

.contactInformation-item-info{
    width: calc(100% - 70px);
}

.contactInformation-item-title {
    color: #666666;
    font-family: "PingFang SC";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.contactInformation-item-shorttitle {
    color: #343f4f;
    font-family: "PingFang SC";
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    margin-top: 10px;
}

/* 768以下 */
@media (max-width: 768px) {
    .contactInformation {
        width: 100%;
        margin-top: 30px;
    }         
    
    .contactInformation-item{
        width: 100%;
    }

    .contactInformation-map{
        aspect-ratio: 2/5;
    }
}