
/* 实时订单弹窗 - 缩小并移到左下方 */
#real_time_order.themes_popups {
    position: fixed !important;
    left: 10px !important;
    bottom: 15px !important;
    right: auto !important;
    top: auto !important;
    transform: scale(0.72) !important;
    transform-origin: left bottom !important;
    z-index: 999 !important;
    opacity: 1 !important;
}

/* 手机端适配 */
@media screen and (max-width: 768px) {
    #real_time_order.themes_popups {
        left: 8px !important;
        bottom: 70px !important;
        transform: scale(0.65) !important;
        transform-origin: left bottom !important;
    }
}

@media screen and (max-width: 480px) {
    #real_time_order.themes_popups {
        left: 5px !important;
        bottom: 60px !important;
        transform: scale(0.55) !important;
        transform-origin: left bottom !important;
    }
}
