.section-padding.new-section-padding {
    /* max-width: 1500px; */
    margin: auto;
}

.picture-promotion__container {
    box-sizing: content-box;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--grid-horizontal-space);
}

.picture-promotion__container.picture-promotion__one {
    grid-template-columns: 1fr;
}

.picture-promotion__image-wrapper {
    position: relative;
    display: flex;
    align-items: center;
    /* min-height: 380px; */
    line-height: 0;
}

.picture-promotion__image-wrapper .placeholder {
    width: 100%;
    max-height: 700px;
    background-color: rgb(var(--color-image-background));
}

.picture-promotion__image {
    width: 100%;
    height: auto;
}

.picture-promotion__text-wrapper {
    /* left: 0;
    right: 0;
    position: absolute;
    bottom: 40px;
    padding: 0 40px; */
    /* text-align: center;
    line-height: 1; */
    right: 50%;
    top: 50%;
    transform: translate(50%, 50%);
    position: absolute;
    /* line-height: 1; */
    color: var(--font-color);
}

.picture-promotion__text-wrapper .picture-promotion__title {
    font-family: var(--title-font-family);
    font-weight: var(--title-font-weight);
    font-size: var(--pc-title-font-size);
    /* line-height: 1.2; */
}

.picture-promotion__title:after {
    background: radial-gradient(rgba(128, 128, 128, 0.5) 0%, transparent 60%);
    bottom: 0;
    content: "";
    left: 0;
    margin: -100px -200px;
    position: absolute;
    right: 0;
    top: 0;
    z-index: -1;
}


.picture-promotion__text-wrapper .picture-promotion__title.picture-promotion__font-border {
    -webkit-text-stroke-color: var(--font-border-color);
    -webkit-text-stroke-width: 0.02em;
}

.picture-promotion__text-wrapper .picture-promotion__subtitle {
    font-family: var(--subtitle-font-family);
    font-weight: var(--subtitle-font-weight);
    font-size: var(--pc-subtitle-font-size);
}

.picture-promotion__text-wrapper .picture-promotion__subtitle.picture-promotion__font-border {
    -webkit-text-stroke-color: var(--font-border-color);
    -webkit-text-stroke-width: 0.02em;
}

@media (max-width: 959px) {
    .picture-promotion__container {
        height: auto;
        grid-template-columns: 1fr;
    }

    .picture-promotion__image-wrapper {
        min-height: 140px;
    }

    .picture-promotion__text-wrapper {
        /* bottom: 20px; */
        padding: 0 20px;
    }

    .picture-promotion__text-wrapper .picture-promotion__title {
        font-size: var(--m-title-font-size);
    }

    .picture-promotion__text-wrapper .picture-promotion__subtitle {
        font-size: var(--m-subtitle-font-size);
    }
}

@media (min-width:769px) {
    .section-padding .picture-promotion__container.new-picture-promotion__container {
        /* max-width: 1500px; */
        padding: 0 40px;
        display: flex;
    }
}

.picture-promotion-hover::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.2);
    /* 半透明黑色遮罩层 */
    /* 使遮罩层位于内容之上 */
}

/* .picture-promotion-hover:hover::before {
    background: #dd8c3233;
    z-index: 1;
} */

.picture-promotion-hover-two {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.3s;
}

.picture-promotion__image-wrapper.new-picture-promotion__image-wrapper:hover .picture-promotion-hover-two {
    opacity: 1;
}

.picture-promotion__title {
    white-space: nowrap;
}

.picture-promotion__image-wrapper.new-picture-promotion__image-wrapper {
    overflow: hidden;
}

@media (max-width: 768px) {
    .picture-promotion__container {
        padding: 0 16px;
    }

    .picture-promotion__text-wrapper .picture-promotion__title {
        font-size: 22px;
        font-weight: 700;
    }
}

/* The ipad end responds to the mobile end in vertical screen */

/* @custom-media --tablet (max-width: 959px); */

/* @custom-media --gt-mobile (min-width: 751px); */

/* detectingScreen need to consider the configuration of the tablet */