/* 二级导航 */
.secondary{
    background: #F8F8F8;;
    border-bottom: 1px solid #DDDDDD;
}


/* 联系我们 */
.contact-box{
    margin-top: 0px;
    width: 100%;
}
.contact .hid {
    display: none;
}

.contact-left{
    background-color: #FFFFFF;
}
.contact-left .top {
    display: flex;
    justify-content: space-between;
}
.content{
    display: flex;
    align-items: flex-start;
    margin-bottom: 40px;
}

.contact-left>div:last-child{
    margin-bottom: 0;
}

.icon{
    margin-right: 33px;
    text-align: center;
}
.contact-left>div:last-child .icon {
    margin-right: 33px;
}
.icon i{
    font-size: 35px;
    color: #EC1E24;
    display: block;
    width: 41px;
}

.text span{
    font-size: 24px;
    font-family: SourceHanSansCN-Regular;
    font-weight: bold;
    color: #333333;
    line-height: 2;
}

.text p{
    font-size: 16px;
    font-family: SourceHanSansCN-Regular;
    color: #666;
    line-height: 2;
}

.contact-right{
    width: 67%;
    display: none;
}

#allmap{
    height: 100%;
}



/* 全国办公地点 */
.place{
    width: 100%;
    display: grid;
    grid-template-columns: repeat(2,49%);
    grid-gap: 30px;
}

.place-box{
    background: #FFFFFF;
    position: relative;
    border: 1px solid #e4e4e4;
    transition: all .5s;
    display: flex;
    align-items: center;
    padding: 15px;
    box-sizing: border-box;
}
.place-box:hover{
    box-shadow: 0px 0px 29px 0px rgba(0, 0, 0, 0.1);
    transition: all .5s;
    border: 1px solid #fff;
}

.place-box .left {
    width: 100px;
    margin-right: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.place-box .left img{
    width: auto;
    max-width: 100%;
    height: auto;
}

.place-name{
    font-size: 16px;
    font-family: SourceHanSansCN-Regular;
    font-weight: bold;
    color: #333;
    line-height: 1.75;
    margin-bottom: 10px;
    transition: all 0.5s;
}

.place-tell,.place-mail,.place-detail{
    font-size: 16px;
    font-family: SourceHanSansCN-Regular;
    color: #666;
    line-height: 2;
    transition: all 0.5s;
}

@media (max-width:1440px) {
    .text span {
        font-size: 20px;
    }
    .icon {
        margin-top: -5px;
    }
    .place{
        grid-template-columns: repeat(2,48.5%);
    }
}
@media (max-width:1280px) {
    .contact-right {
        width: 56%;
    }
    .icon {
        margin-right: 35px;
    }
    .content {
        margin-bottom: 30px;
    }

    .place-tell, .place-mail, .place-detail {
        line-height: 2;
    }
    .contact-left>div:last-child .icon ,.icon{
        margin-right: 24px;
    }
    .text span {
        font-size: 18px;
    }
    .text p, .place-tell, .place-mail, .place-detail {
        font-size: 15px;
    }
}
@media (max-width:1024px) {
    .contact-box {
        margin-top: 30px;
        flex-direction: column;
    }

    .content {
        margin-bottom: 20px;
    }
    .contact-right {
        width: 100%;
        height: 300px;
    }
    .place{
        grid-template-columns: repeat(2,48%);
    }
   .place-name {
        font-size: 14px;
    }
    .place-name ,.place-tell, .place-mail, .place-detail{
        line-height: 1.7;
    }
    .text p,.place-tell, .place-mail, .place-detail {
        font-size: 14px;
    }

    .place-tell,.place-mail,.place-detail {
        font-size: 14px;
    }
    .contact-left .top {
        display: grid;
        grid-template-columns: repeat(1,100%);
    }
}
@media (max-width:768px) {
    .text span {
        font-size: 16px;
    } 
    .icon {
        margin-right: 25px;
    }
    .contact-left {
        width: 100%;
    }
 
    .place {
        grid-template-columns: repeat(1,100%);
        grid-gap: 20px;
    }

    .contact-left>div:last-child .icon,.icon{
        margin-right: 17px;
    }
}