/* 联系我们 */
.aboutContactBox {
    padding: 0.8rem 0.3rem;
}

.aboutContactCon {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.aboutContactCon .aboutLeft {
    width: 48%;
}

.aboutContactCon .aboutLeft p {
    display: flex;
    align-items: center;
    margin-top: 0.5rem;
    color: #555555;
}

.aboutContactCon .aboutLeft p img {
    width: 0.28rem;
    height: 0.28rem;
    margin-right: 0.1rem;
}

.aboutContactCon .aboutRight {
    width: 48%;
    height: 4rem;
}


.threePart {
    margin-top: 0.85rem;
}

.threePart ul {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.threePart ul li {
    width: 32%;
    background: #21509F;
    padding: 0.3rem;
    color: #fff;
    padding-bottom: 0.5rem;
}

.threePart ul li h3 {
    position: relative;
    font-weight: 500;
    padding-bottom: 0.2rem;
    margin-bottom: 0.5rem;
}

.threePart ul li h3::before {
    content: '';
    position: absolute;
    left: 0rem;
    bottom: 0rem;
    width: 100%;
    height: 0.01rem;
    background: rgba(255, 255, 255, 0.12);
}

.threePart ul li h3::after {
    content: '';
    position: absolute;
    left: 0rem;
    bottom: -0.01rem;
    width: 0.8rem;
    height: 0.03rem;
    background: #fff;
}

.threePart ul li:nth-child(2) {
    background: #FF9500;
}

.threePart ul li p {
    margin-top: 0.25rem;
    display: flex;
    align-items: center;
}

.threePart ul li p img {
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 0.1rem;
}



/* ===================适配=================== */
@media (max-width: 800px) {
    .aboutContactCon {
        flex-direction: column;
    }

    .aboutContactCon .aboutLeft {
        width: 100%;
    }

    .aboutContactCon .aboutRight {
        width: 100%;
       margin-top:0.6rem;
    }




}


@media (max-width: 500px) {
    .pubPageTitle h1 {
        font-size: 0.48rem;
    }

    .pubPageTitle p {
        font-size: 0.26rem;
    }

}