.companyProfile {
    padding: 100px 0px 80px 0px;
}

.companyProfileTitle {
    text-align: center;
    margin-bottom: 50px;
}

.companyProfileTitle p {
    font-family: "ResourceHanRoundedCN";
    color: #C6C6C6;
    margin-bottom: 14px;
}

.companyProfileTitle h2 {
    font-weight: bolder;
    color: #333333;
}

.companyProfileTxt {
    text-align: center;
    color: #666;
    margin-bottom: 35px;
}

.companyProfileImg {
    display: block;
    width: 100%;
    height: auto;
    margin-bottom: 50px;
}

.companyProfileUl {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
}

.companyProfileUl li {
    width: 48.5%;
    position: relative;
}

.companyProfileUl img {
    display: block;
    width: 100%;
    height: auto;
}

.imgTxt {
    position: absolute;
    top: 0px;
    left: 0px;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    width: 100%;
    height: 100%;
    color: #fff;
    padding: 22px;
    background: rgba(0, 0, 0, 0.15);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.imgTxt.on {
    background: rgba(0, 0, 0, 0.35);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.imgTxt p {
    padding-top: 20px;
    display: none;
}



/* 生产设施 */
.facility {
    background: url(../images/aboutBgImg1.png)no-repeat center center;
    background-size: cover;
    color: #333;
    height: 620px;
    padding-top: 140px;
    margin-bottom: 20px;
}

.facility h3 {
    font-weight: bolder;
    margin-bottom: 35px;
}

.facility p {
    max-width: 460px;
}

.facility.team {
    margin-bottom: 0px;
    background: url(../images/aboutBgImg2.png)no-repeat center center;
    background-size: cover;
    text-align: right;
}

.facility.team p {
    float: right;
}




/* 合作客户 */
.client {
    padding: 80px 0px 70px 0px;
    text-align: center;
}

.client h3 {
    color: #333;
    font-weight: bolder;
}

.clientTxt {
    margin: 50px auto 70px auto;
    color: #666;
}

.clientUl {
    display: flex;
    flex-wrap: wrap;
}

.clientUl li {
    width: 23.3%;
    height: 130px;
    border: 1px solid #EDF0F4;
    margin-right: 2.26%;
    display: flex;
    justify-content: center;
    align-items: center;
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}

.clientUl li:nth-child(4n) {
    margin-right: 0px;
}

.clientUl li:nth-child(n+5) {
    margin-top: 30px;
}

.clientUl img {
    display: block;
    max-width: 85%;
    max-height: 75%;
    object-fit: contain;
}

.clientUl li:hover {
    transform: translateY(-10px);
    -webkit-transition: all 0.3s;
    -moz-transition: all 0.3s;
    -o-transition: all 0.3s;
    transition: all 0.3s;
}



/* 适配 */
@media (max-width: 1440px) {
    .companyProfile {
        padding: 70px 0px 50px 0px;
    }

    .facility {
        height: 580px;
    }
}

@media (max-width: 992px) {
    .facility {
        height: 430px;
        padding-top: 100px;
    }

    .facility h3 {
        margin-bottom: 26px;
    }

    .client,
    .companyProfile {
        padding: 50px 0px;
    }

    .companyProfileTitle {
        margin-bottom: 36px;
    }

    .companyProfileImg {
        margin-bottom: 30px;
    }

    .clientTxt {
        margin: 30px auto 40px auto;
    }

    .clientUl li {
        height: 95px;
    }

    .clientUl img {
        max-width: 75%;
        max-height: 60%;
    }
}

@media (max-width: 767px) {

    .client,
    .companyProfile {
        padding: 30px 0px;
    }

    .companyProfileTitle p {
        margin-bottom: 10px;
    }

    .companyProfileTitle h2,
    .client h3 {
        font-size: 22px;
    }

    .companyProfileTitle {
        margin-bottom: 26px;
    }

    .companyProfileTxt {
        text-align: left;
        margin-bottom: 22px;
    }

    .companyProfileUl li {
        width: 100%;
    }

    .companyProfileUl li:first-child,
    .companyProfileImg {
        margin-bottom: 20px;
    }

    .imgTxt {
        padding: 16px;
    }

    .imgTxt p {
        padding-top: 12px;
    }

    .facility h3 {
        font-size: 20px;
        margin-bottom: 10px;
    }

    .facility {
        padding-top: 50px;
        height: 280px;
    }

    .clientTxt {
        margin: 22px auto 30px auto;
        text-align: left;
    }

    .clientUl {
        justify-content: space-between;
    }

    .clientUl li {
        width: 48%;
        height: 80px;
        margin: 0px !important;
    }

    .clientUl li:nth-child(n+3) {
        margin-top: 16px !important;
    }
}