/* 联系我们页面样式 */
.contact_box{

}

.contact_t{
    display: flex;
    margin: 40px 0 60px;
}

.contact_i{
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.contact_i:first-child{
    border-right: 1px solid rgba(184,194,205,0.47);
    margin-bottom: 15px;
}

.con_info{
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
}

.contact_i .icon_img{
    width: 80px;
    height: 80px;
    margin-bottom: 20px;
}

.contact_i p{
    font-size: 18px;
    line-height: 40px;
}

#mapBox{
    width: 100%;
    height: 643px;
}

@media screen and (max-width: 998px){
    .contact_t{
        flex-wrap: wrap;
        margin: 20px 0;
    }

    .contact_i{
        flex: auto;
        flex-direction: row;
        justify-content: flex-start;
        align-items: flex-start;
        flex-wrap: wrap;

        width: 100%;
        margin: 8px 0;
    }

    .con_info{
        align-items: flex-start;
        margin-left: 10px;
    }

    .contact_i:first-child{
        border-right: none;
    }

    .contact_i .icon_img{
        width: 50px;
        height: 50px;
        margin-bottom: 0;
    }

    #mapBox{
        height: 443px;
    }
}

@media screen and (max-width: 730px){
    .contact_i p:nth-child(3){
        padding-left: 105px;
    }
}

@media screen and (max-width: 540px){
    .contact_i{
        margin: 0;
    }

    .contact_i .icon_img{
        width: 40px;
        height: 40px;
    }

    .contact_i p{
        font-size: 14px;
        line-height: 20px;
    }

    .contact_i p:nth-child(3){
        padding-left: 82px;
    }

    #mapBox{
        height: 323px;
    }
}