.page.about .page-banner h3 {
    text-align: center;
    color: #fff;
}

/* 公司简介 */
.page.about .company-profile {
    background: url(../images/profile-bg.jpeg) no-repeat right top;
    background-size: cover;
}

.page.about .company-profile .layer-content {
    padding-bottom: 0;
}

.page.about .company-profile .company-profile__content {
    font-size: calc(24 * var(--px));
    line-height: 1.5;
    color: #333;
    background-color: #fff;
    padding: calc(60 * var(--px));
    margin-bottom: calc(-60 * var(--px));
    position: relative;
    border-radius: 2px;
    display: flex;
    gap: calc(24 * var(--px)) calc(70 * var(--px));
    display: flex;
}

.page.about .company-profile .company-profile__content .company-profile__section>p {
    padding-bottom: calc(15 * var(--px));
}

.page.about .company-profile .company-profile__content>img {
    height: calc(400 * var(--px));
    border-radius: 5px;
    object-fit: cover;
}

/* 公司核心价值观 */
.page.about .company-core {
    background: url(../images/profile-bg2.jpeg) no-repeat center center;
    background-size: cover;
}

.page.about .company-core .layer-content {
    padding-bottom: 0;
}

.page.about .company-core .company-core__content {
    height: calc(816 * var(--px));
    color: #fff;
    line-height: 1.5;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
}

.page.about .company-core .company-core__item {
    text-align: center;
    padding: calc(290 * var(--px)) calc(24 * var(--px)) 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    position: relative;
}

.page.about .company-core .company-core__item::after {
    content: '';
    width: 2px;
    height: 100%;
    position: absolute;
    top: 0;
    right: 0;
    background-image: linear-gradient(180.00deg, rgba(255, 255, 255, 0) 0.763%, rgba(255, 255, 255, 0.44) 52.672%, rgba(255, 255, 255, 0) 100%);
}

.page.about .company-core .company-core__item:last-of-type::after {
    display: none;
}

.page.about .company-core .company-core__item>.icon {
    --r: 150;
    width: calc(var(--r) * var(--px));
    height: calc(var(--r) * var(--px));
    border: 1px solid #FE8101;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    background-color: rgba(255, 255, 255, 0.5);
}

.page.about .company-core .company-core__item>.icon img {
    height: calc(67 * var(--px));
}

.page.about .company-core .company-core__item .company-core__section {
    max-width: calc(360 * var(--px));
    width: 100%;
    font-size: calc(24 * var(--px));
}

.page.about .company-core .company-core__item .company-core__section .title {
    font-size: calc(40 * var(--px));
    padding: calc(30 * var(--px)) 0 calc(10 * var(--px));
}

/* 公司信息 */
.page.about .company-info .layer-content {
    padding: calc(200 * var(--px)) calc(24 * var(--px));
}

.page.about .company-info .company-info__content {
    height: calc(455 * var(--px));
    display: flex;
}

.page.about .company-info .company-info__content .company-info__img {
    flex: 1 1 0;
    position: relative;
    z-index: 2;
}

.page.about .company-info .company-info__content .company-info__img img {
    width: 100%;
    max-width: calc(810 * var(--px));
    height: 100%;
    object-fit: cover;
    border-radius: calc(10 * var(--px));
}

.page.about .company-info .company-info__content .company-info__container {
    /* width: max-content; */
    height: 100%;
    flex: 1 2 0;
    padding: calc(26 * var(--px)) 0;
    position: relative;
    z-index: 1;
}

.page.about .company-info .company-info__content .company-info__section {
    height: 100%;
    line-height: 1.5;
    background-color: #F6F6F6;
    border-top-right-radius: calc(10 * var(--px));
    border-bottom-right-radius: calc(10 * var(--px));
    padding: calc(70 * var(--px)) calc(40 * var(--px));
}

.page.about .company-info .company-info__content .company-info__section .title {
    color: #00018C;
    font-size: calc(32 * var(--px));
    font-weight: bold;
    position: relative;
}

.page.about .company-info .company-info__content .company-info__section .title::after {
    content: '';
    width: 100%;
    height: 2px;
    position: absolute;
    bottom: 0;
    left: 0;
    background-image: linear-gradient(90.00deg, rgb(222, 222, 222), rgba(222, 222, 222, 0) 100%);
}

.page.about .company-info .company-info__content .company-info__section .infos {
    margin-top: calc(28 * var(--px));
    overflow: hidden;
}

.page.about .company-info .company-info__content .company-info__section .info-item {
    color: #666666;
    font-size: calc(24 * var(--px));
    display: flex;
    margin-top: calc(20 * var(--px));
}

.page.about .company-info .company-info__content .company-info__section .info-item>p {
    padding-left: calc(20 * var(--px));
}

.page.about .company-info .company-info__section .info-item .icon,
.page.about .company-info .company-info__section .info-item .icon-phone:before,
.page.about .company-info .company-info__section .info-item .icon-address:before,
.page.about .company-info .company-info__section .info-item .icon-email:before {
    color: #666666;
    font-size: calc(24 * var(--px));
    line-height: 1.5;
}

@media screen and (max-width: 768px) {
    .page.about .company-core .company-core__item>.icon {
        --r: 100;
    }

    .page.about .company-core .company-core__item>.icon img {
        height: calc(48 * var(--px));
    }

    .page.about .company-profile .company-profile__content {
        font-size: calc(20 * var(--px));
        padding: calc(32 * var(--px));
        flex-direction: column;
        gap: calc(32* var(--px));
    }

    .page.about .company-core .company-core__item .company-core__section .title {
        font-size: calc(30 * var(--px));
    }
    .page.about .company-info .company-info__content .company-info__img img {
        max-width: 100%;
    }
    .page.about .company-info .company-info__content {
        height: auto;
        flex-direction: column;
    }
    .page.about .company-info .layer-content {
        padding: calc(50 * var(--px)) calc(24 * var(--px));
    }
}