/* 促销通知栏样式 */
.promo-notification {
    background-color: #3a7ca5;
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 16px;
    box-sizing: border-box;
    margin: 0px 0;
    z-index: 100;
    font-family: inherit;
    line-height: 1.4;
    display: block !important;
}

/* 小屏幕设备（如手机） */
@media (max-width: 767px) {
   .promo-notification {
        font-size: 14px;
        padding: 8px;
        margin-top: 40px;
        z-index: 100;
        display: block !important;
    }
    
}

/* 中等屏幕设备（如平板） */
@media (min-width: 768px) and (max-width: 1024px) {
   .promo-notification {
        font-size: 15px;
        padding: 9px;
        margin-top: 40px;
        z-index: 100;
        display: block !important;
    }

}