.labelBox {
    margin-top: 100px;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

.labelBox-bg {
    position: absolute;
    top: 45px;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 1;
}

.labelBox-bg img {
    width: 100%;
    height: 100%;
}

.labelContent {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    gap: 40px;
    padding: 40px 20px;
}

.labelText {
    flex: 0 0 60%;
}

.labelTitle {
    padding-bottom: 70px;
}

.labelTitle h3 {
    font-size: 42px;
    font-weight: 700;
    color: var(--cproj-color-primary);
    margin: 0 0 15px 0;
    width: 45%;
}

.labelTitle p {
    font-size: 20px;
    font-weight: 400;
    color: #1B3F5F;
    margin: 0 0 20px 0;
    width: 45%;
}

.labelItem p {
    font-size: 22px;
    font-weight: 400;
    color: #1B3F5F;
    margin: 0;
    width: 100%;
}

.labelSection {
    margin: 50px 0px 0px 0px;
}

/* 基于图片分辨率1871×1049（宽高比≈1.78）调整尺寸/位置 */
.labelImage {
    position: absolute;
    width: 820px;
    /* 按比例适配大屏显示 */
    max-width: calc(100% - 60px);
    /* 防止超出容器 */
    aspect-ratio: 1871/1049;
    /* 固定图片宽高比 */
    top: 40%;
    transform: translateY(-50%);
    /* 垂直居中 */
    right: 0px;
    background-color: #ffffff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0px 30px 30px var(--cproj-color-border-1);
}

.labelImage img {
    width: 100%;
    /* height: 100%; */
    /* 按aspect-ratio自适应高度 */
    display: block;
    object-fit: cover;
}

/* 大屏自适应：调整字体和图片尺寸/位置 */
@media only screen and (max-width: 1700px) {
    .labelImage {
        width: 650px;
    }
}

@media only screen and (max-width: 1500px) {
    .labelTitle h3 {
        font-size: 36px;
    }

    .labelTitle p {
        font-size: 18px;
    }

    .labelItem p {
        font-size: 18px;
    }

    .labelImage {
        width: 580px;
        /* 按比例缩小 */
        right: 30px;
    }
}

/* 平板自适应：调整字体和图片布局 */
@media only screen and (max-width: 991px) {
    .labelBox {
        margin-top: 50px;
    }

    .labelContent {
        flex-direction: column;
        gap: 20px;
    }

    .labelText,
    .labelImage {
        flex: 0 0 100%;
    }

    .labelTitle {
        padding-bottom: 20px;
    }

    .labelTitle h3 {
        font-size: 28px;
        width: 100%;
    }

    .labelTitle p {
        font-size: 16px;
        width: 100%;
    }

    .labelSection {
        margin: 0px 0px 0px 0px;
    }

    .labelItem {
        min-height: auto;
    }

    .labelItem p {
        padding: 0px;
        font-size: 16px;
    }

    /* 平板端图片改为相对定位，保持比例 */
    .labelImage {
        position: relative;
        width: 100%;
        max-width: 600px;
        /* 限制最大宽度 */
        top: auto;
        right: auto;
        transform: none;
        margin: 30px auto 0;
        /* 居中显示 */
    }
}

/* 手机端进一步优化 */
@media only screen and (max-width: 768px) {
    .labelTitle h3 {
        font-size: 24px;
    }

    .labelTitle p {
        font-size: 14px;
    }

    .labelItem p {
        font-size: 12px;
    }

    .labelImage {
        padding: 10px;
        max-width: 100%;
        /* 全屏宽适配 */
    }
}

/* 小屏手机适配 */
@media only screen and (max-width: 480px) {
    .labelTitle h3 {
        font-size: 20px;
    }

    .labelImage {
        padding: 5px;
    }
}