.yingfang-factory-strength{
    padding: 50px 0;
    position: relative;
}
.yingfang-factory-strength .factory-strength-title{
    color: var(--color-primary);
    font-family: var(--title-font-family);
    font-size: var(--font-32);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.yingfang-factory-strength .factory-strength-bg{
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
    z-index: -2;
}
.yingfang-factory-strength::after{
    content: '';
    width: 100%;
    height: 100%;
    object-fit: cover;
    background: linear-gradient(180deg, #fff 0%, rgb(109 109 109 / 60%) 100%);
    position: absolute;
    top: -1px;
    left: 0;
    z-index: -1;
}


.yingfang-factory-strength .factory-strength-content{
    display: flex;
    gap: 110px;
    margin-top: 50px;
}
.factory-strength-content .factory-strength-left{
    display: grid;
    /* grid-template-columns: repeat(2, 1fr); */
    gap: 15px;
    width: 800px;
}
.factory-strength-left .factory-strength-item{
    width: 100%;
    aspect-ratio: 390/337;
    border-radius: 10px;
    overflow: hidden;
}
.factory-strength-left .factory-strength-item-full{
    /* grid-column: 1 / -1;
    aspect-ratio: 799/376; */
}
.factory-strength-left .factory-strength-item img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.factory-strength-content .factory-strength-right{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 100px;
}
.factory-strength-right .factory-strength-desc{
    color: #111;
    font-family: var(--font-family);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 400;
    line-height: 1.5; /* 150% */
}
.factory-strength-right .factory-strength-data{
    display: grid;
    grid-template-columns: repeat(2,1fr);
    row-gap: 60px;
    column-gap: 90px;
}
.factory-strength-data .factory-strength-data-item{
    padding: 23px 35px;
    border-radius: 6px;
    background: #FFF;
    box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.10);
    display: flex;
    flex-direction: column;
    gap: 6px;
}
.factory-strength-data-item .factory-strength-data-num{
    color: var(--color-primary);
    text-align: center;
    font-family: var(--title-font-family);
    font-size: var(--font-48);
    font-style: normal;
    font-weight: 700;
    line-height: normal;
}
.factory-strength-data-item .factory-strength-data-desc{
    color: #111;
    text-align: center;
    font-family: var(--font-family);
    font-size: var(--font-20);
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}

.certificate-content{
    margin-top: 70px;
}
.certificate-content .swiper-slide{
    position: relative;
}
.certificate-content .swiper-slide img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.certificate-content .swiper-slide .certificate-img{
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: calc(100% - 30px);
    height: calc(100% - 30px);
}


@media screen and (max-width: 1800px) {
    .factory-strength-content .factory-strength-left{
        width: 50%;
    }
    .factory-strength-content .factory-strength-right,
    .yingfang-factory-strength .factory-strength-content{
        gap: 50px;
    }
    .factory-strength-right .factory-strength-data{
        gap: 30px;
    }
}
@media screen and (max-width: 1500px) {
    .factory-strength-data-item .factory-strength-data-num{
        font-size: 40px;
    }
    .factory-strength-data .factory-strength-data-item{
        padding: 20px;
    }
}
@media screen and (max-width: 1200px) {
    .factory-strength-content .factory-strength-right,
    .yingfang-factory-strength .factory-strength-content{
        gap: 30px;
    }
    .factory-strength-data-item .factory-strength-data-num{
        font-size: 30px;
    }
}
@media screen and (max-width: 992px) {
    .yingfang-factory-strength .factory-strength-content{
        flex-direction: column;
    }
    .factory-strength-content .factory-strength-left{
        width: 100%;
    }
}
@media screen and (max-width: 768px) {
    .factory-strength-data-item .factory-strength-data-num{
        font-size: 24px;
    }
}