/* 通用 section */
.qa-section {
    padding: 42px 0;
    padding-bottom: 12px;
}
.qa-section-b{
padding-bottom: 78px;
}
.qa-section-gray {
    background-color: #f8f9f8;
}

.qa-section-title {
    font-size: 35px;
    color: #30803A;
    margin-bottom: 40px;
    font-weight: bold;
}

/* 质量体系建设 - 三卡片 */
.qa-cards {
    display: flex;
    justify-content: space-between;
    gap: 30px;
}

.qa-card {
    flex: 1;
    box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.22);
    border-radius: 36px;
    padding: 54px;

}

.qa-card p {
    font-size: 20px;
    color: #30803A;
    line-height: 47px;
}

/* 质量管理 - 图文交替 */
.qa-mgmt-item {
    display: flex;
    justify-content: space-between;
    align-items: stretch;
    margin-bottom: 72px;
    gap: 32px;
}

.qa-mgmt-item:last-child {
    margin-bottom: 0;
}

.qa-mgmt-text {
    flex: 1.12;
    padding: 5vw 3vw;
    box-shadow: 1px 2px 6px 1px rgba(0, 0, 0, 0.22);
    border-radius: 36px;
    background: #fff;
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.qa-mgmt-text h4 {
    font-size: 24px;
	font-weight:bold;
    color: #30803A;
    line-height: 35px;
    /* font-family: SourceHanSansSC-Bold, SourceHanSansSC-Bold;
    font-weight: normal; */
    margin-bottom: 16px;
}

.qa-mgmt-text p {
    font-size: 20px;
    color: #30803A;
    line-height: 47px;
    /* font-family: SourceHanSansSC-Bold, SourceHanSansSC-Bold;
font-weight: normal; */
    /* margin-bottom: 12px; */
}

.qa-mgmt-text p:last-child {
    margin-bottom: 0;
}

.qa-mgmt-img {
    flex: 1;

    overflow: hidden;
    display: flex;
}

.qa-mgmt-img img {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
}

/* 移动端 */
@media screen and (max-width: 768px) {
    .qa-section {
        padding: 0.65rem 0;
        padding-bottom: 0;
    }

    .qa-section-title {
        font-size: 0.45rem;
        margin-bottom: 0.4rem;
    }

    .qa-cards {
        flex-direction: column;
        gap: 0.35rem;
    }

    .qa-card {
        padding: 0.49rem 0.28rem;

        border-radius: 0.36rem;
    }

    .qa-card p {
        font-size: 0.3rem;
        line-height: 0.55rem;
    }

    .qa-mgmt-item {
        flex-direction: column;
        gap: 0.35rem;
        margin-bottom: 0.35rem;
    }

    .qa-mgmt-item.qa-reverse {
        flex-direction: column-reverse;
    }

    .qa-mgmt-text {
        flex: unset;
        width: 100%;
    }

    .qa-mgmt-img {
        flex: unset;
        width: 100%;

    }

    .qa-mgmt-text h4,
    .qa-mgmt-text p {
        font-size: 0.3rem;
        line-height: 0.55rem;
    }

    /* .qa-mgmt-text h4 {
        margin-bottom: 0.2rem;
    } */

    /* .qa-mgmt-text p {
        margin-bottom: 0.15rem;
    } */
     .qa-section{
        padding-bottom:0.86rem ;
     }
}