
.about-header {
    text-align: center;
    margin-bottom: 80px;
    margin-top: 80px;
    display: flex;
    flex-direction: column;
}

.header-text {
    margin: 40px 0 0 0;
    color: #3D3D3DB2;
    font-size: 18px;
    line-height: 36px;
}

.company-profile {
    padding-bottom: 112px !important;
    padding-top: 137px !important;
    background-color: #F6F6F6FF;
}

.profile-content {
    display: flex;
    gap: 61px;

}

.profile-image {
    flex: 1;
    position: relative;
    display: inline-block; /* 或 block，确保容器有具体尺寸 */
}

.profile-image:after {
    content: '';
    position: absolute;
    top: -27px;
    left: 103px;
    right: -27px; /* 确保右侧延伸 */
    height: 174px;
    background-color: #0C71C0FF;
    z-index: 0; /* 改为 0 或正数 */
}

.profile-image img {
    border-radius: 8px;
    display: block;
    position: relative;
    z-index: 1; /* 确保图片在伪元素上层 */
    justify-self: flex-end;
}

.profile-text {
    flex: 1;

    p {
        margin: 48px 0 0;
        line-height: 42px;
        text-indent: 2em;
        font-size: 18px;
        color: #000000B2;
    }
}

.vision-intro .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-bottom: 40px;
    padding-top: 90px !important;
}

.vision-box, .intro-box {
    display: flex;
    flex-direction: column;
    gap: 25px;
    background: #F7F7F7;
    padding: 40px 40px 30px 40px;
    box-sizing: border-box;
}

.vision-box h2, .intro-box h2 {
    color: #0C71C0;
    font-size: 46px;
    font-weight: bold;
}

.vision-box h3, .intro-box h3 {
    color: #3D3D3DCC;
    font-size: 28px;
    font-weight: bold;
}

.vision-box p, .intro-box p {
    color: #3D3D3D99;
    font-size: 20px;
    line-height: 46px;

}

.vision-box img, .intro-box img {
    width: 100%;

}

.vision-box img, .intro-box img {
    width: 100%;
    height: auto;
    margin-top: auto;
}

.worth-section {
    display: flex;
    flex-direction: column;
    gap: 20px;
    padding: 70px 0 93px !important;
    background-color: #F6F6F6FF;
}

.worth-section h2 {
    color: #0C71C0;
    font-size: 46px;
    font-weight: bold;
    height: 82px;
}

.worth-section h3 {
    color: #3D3D3DCC;
    font-size: 28px;
    font-weight: bold;
}


.worth-content {
    display: flex;
    gap: 20px;
    margin-top: 68px;
}

.worth-list {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 50px;
}

.worth-item {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
    gap: 20px;
    font-size: 26px;
    font-weight: 500;
    color: #3D3D3DFF;
}

.worth-icon {
    width: 24px;
    height: 24px;
    margin-right: 10px;
    background-color: #0C71C0;
    border-radius: 50%;
}

.worth-image {
    flex: 1;
}

.worth-image img {
    width: auto;
    height: 100%;
}

.patents {
    padding-top: 90px;
    padding-bottom: 100px;
    display: flex;
    flex-direction: column;
}

.patents h2 {
    color: #000000C7;
    font-size: 36px;
    height: 96px;
    line-height: 96px;
}

.patents p {
    color: #00000099;
    font-size: 22px;
    margin-top: 10px;
}


.patent-list {
    display: flex;
    justify-content: center;
    margin-top: 62px;
    gap: 33px;
}

.patent-list img {
    width: 275px;
    height: auto;
}

.contact {
    background-image: url("/images/about-bg-certificate.jpg");
    text-align: center;
    position: relative;
}
.contact .container h2{
    font-size: 48px
}
.contact .container h3{
    font-size:28px;
    margin-top: 10px;
}
.contact .container {
    display: flex;
    height: 100%;
    padding: 30px 0;
    box-sizing: border-box;
    flex-direction: column;
    justify-content: space-around;
    align-items: center;
}

.contact-info {
    display: flex;
    justify-content: center;
    gap: 73px;
}

.contact-info p {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-top: 40px;
    color: #000000CC;
    font-size: 26px;
}

h2 {
    color: #333;
    margin-bottom: 10px;
}

h3 {
    color: #666;
    margin-bottom: 20px;
}

@media (max-width: 768px) {
    .profile-content,
    .worth-content {
        flex-direction: column;
    }

    .company-profile {
        padding-top: 4rem !important;
        background-color: #F6F6F6FF;
    }

    .profile-image img {
        width: 100%;
    }

    .profile-image:after {
        content: '';
        position: absolute;
        top: -20px;
        left: 103px;
        right: 0; /* 确保右侧延伸 */
        height: 154px;
        background-color: #0C71C0FF;
        z-index: 0; /* 改为 0 或正数 */
    }

    .vision-intro .container {
        grid-template-columns: 1fr;
        margin-bottom: 30px;
        padding-top: 40px !important;

        .vision-box, .intro-box {
            padding: 40px 30px;
        }
    }

    .worth-image img {
        width: 100%;
        height: auto;
    }
    .contact .container h2{
        font-size: 40px
    }
    .contact .container h3{
        font-size:24px;
    }
    .contact-info {
        flex-direction: column;
        gap: 20px;
        padding: 0 1rem;
        box-sizing: border-box;
    }

    .contact-info p {
        margin-top: 20px;
        font-size: 22px;
    }

    .patent-list {
        flex-direction: column;
        align-items: center;
        gap: 45px;
    }
}