/* 提示容器样式 */
.alert-banner {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    padding: 15px;
    background: #ff4d4f;
    color: white;
    text-align: center;
    z-index: 9999;
    transform: translateY(-100%);
    transition: transform 0.3s ease;
}

/* 移动端优化 */
@media (max-width: 768px) {
    .alert-banner {
        font-size: 14px;
        padding: 5px;
    }
}
