.contact_detail_box {
    width: 100%;

}

.contact_detail {

    width: 100%;
    margin: auto;
}

.contact_map {
    width: 100%;
    margin-top: calc(10px + 1rem);
}

.contact_list_box {
    display: flex;
    justify-content: space-around;
    align-items: flex-start;
    gap: calc(10px + 5rem);
    margin-top: calc(7px + 2rem);
}

.contact_list {
    width: calc(46px + 20rem);
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.contact_list div {
    width: calc(20px + 2rem);
    height: calc(20px + 2rem);
    background: #000000;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
}

.contact_list div img {
    width: calc(10px + 1rem);
}

.contact_list p:nth-of-type(1) {
    font-family: Arial;
    font-weight: 400;
    font-size: calc(4px + 1rem);
    color: #30333B;
    margin-top: calc(1px + 0.25rem);
}

.contact_list p:nth-of-type(2) {

    font-family: PINGFANG;
    font-weight: 500;
    font-size: calc(10px + 0.5rem);
    color: #666666;
    margin-top: calc(1px + 0.25rem);
    line-height: calc(7px + 1.5rem);
    text-align: center;
}


@media screen and (max-width: 1100px) {
    .contact_list_box {
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }

    .contact_list {
        width: 100%;
    }

    .contact_list p:nth-of-type(1) {
        font-size: calc(12px + 1rem);
    }

    .contact_list p:nth-of-type(2) {
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
}