
.promotion-bg {
            background-color: #377fd5;   /* 浅灰色 */
            padding: 20px 16px;          /* 内边距让背景有呼吸感 */
            border-radius: 12px;          /* 圆角柔和边缘 (可选) */
            margin-top: 20px;             /* 与上方内容保持间距 (可选) */
        }

/* 图片容器边框辅助 (仅为演示) */
.promotion-product-img-wrapper {
    background: #f8f9fa;
    border-radius: 12px;
    padding: 8px;
    box-shadow: 0 4px 12px rgba(0,0,0,0.03);
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 确保图片始终为父容器宽度的80% */
.promotion-product-img {
    width: 80% !important;
    height: auto !important;
    display: block;
    margin: 0 auto;        /* 水平居中，更美观 */
    max-width: 100%;       /* 安全兜底，防止溢出 */
    border-radius: 8px;
}
