.hengsheng-side-pic {
    position: relative;
    width: 100%;
    aspect-ratio: 1920/480;
    overflow: hidden;
    background: var(--hengsheng-side-banner-bg);
    background-position: center;
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-size: contain;
}

.hs-sp-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

.hs-sp-bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hs-sp-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.4);
}

.hs-sp-content {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    box-sizing: border-box;
}

.hs-sp-content-wrap {
    position: relative;
    width: calc(737/1920 * 100%);
    margin: 0 auto;
}



.hs-sp-title {
    font-family: var(--font-family-bold);
    font-size: calc(var(--title-size-h5) * 2);
    font-weight: 700;
    color: #fff;
    text-align: center;
    line-height: 1.477;
    margin: 0;
}

.hs-sp-quote {
    font-family: var(--font-family-bold);
    font-size: 96px;
    font-weight: 700;
    line-height: 67.708%;
    color: #fff;
}

.hs-sp-quote-start {
    position: absolute;
    top: -20px;
    left: -80px;
}

.hs-sp-quote-end {
    position: absolute;
    bottom: 10px;
    right: -80px;
}

@media (max-width: 1500px) {
    .hs-sp-content-wrap {
        width: calc(1000/1500 * 100%);
    }

    .hs-sp-quote {
        font-size: 72px;
    }

    .hs-sp-quote-start {
        top: -15px;
        left: -50px;
    }

    .hs-sp-quote-end {
        bottom: 0px;
        right: -50px;
    }
}

@media (max-width: 1200px) {
    .hs-sp-content-wrap {
        width: calc(900/1200 * 100%);
    }

    .hs-sp-quote {
        font-size: 60px;
    }

    .hs-sp-quote-start {
        top: -15px;
        left: -50px;
    }

    .hs-sp-quote-end {
        bottom: 0px;
        right: -50px;
    }
}

@media (max-width: 992px) {
    .hs-sp-content-wrap {
        width: calc(737/992 * 100%);
    }

    .hs-sp-title {
        line-height: 1;
    }

    .hs-sp-quote {
        font-size: 48px;
    }

    .hs-sp-quote-start {
        top: 0;
        left: -35px;
    }

    .hs-sp-quote-end {
        bottom: -10px;
        right: -35px;
    }
}

@media (max-width: 768px) {
    .hs-sp-content-wrap {
        width: calc(700/768 * 100%);
    }

    .hs-sp-title {
        font-size: calc(var(--title-size-h5) );
    }

    .hs-sp-quote {
        font-size: 32px;
    }

    .hs-sp-quote-start {
        left: -20px;
    }

    .hs-sp-quote-end {
        right: -20px;
    }
}

@media (max-width: 480px) {
    .hs-sp-content-wrap {
        width: 90%;
    }

    .hs-sp-quote {
        font-size: 24px;
    }

    .hs-sp-title {
        font-size: 16px;
    }

    .hs-sp-quote-start {
        left: -15px;
    }

    .hs-sp-quote-end {
        right: -15px;
    }
}