/* 左侧竖条后的数值区 */
.coupon-side {
    width: 16.66%;
    min-width: 4.5rem;
    /* 防止过窄导致挤换行 */
    flex-shrink: 0;
}

.coupon-value {
    white-space: nowrap;
    /* 关键：禁止换行（包含 9.5折 这类） */
    word-break: keep-all;
    line-height: 1;
}

.coupon-type {
    white-space: nowrap;
    /* 小字类型也不换行，更稳定 */
}