.notification-bar {
    background-color: #f8f9fa; /* 浅灰色背景保持不变 */
    border-bottom: 1px solid #e9ecef;
    padding: 12px 15px;
    text-align: center;
    color: #6c9ff2; /* 淡蓝色文字 */
    font-size: 14px;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    box-shadow: 0 2px 5px rgba(0,0,0,0.1);
}

.notification-bar span {
    display: inline-block;
    padding: 0 10px;
}

.notification-bar a {
    color: #4d86e0; /* 稍深一点的蓝色链接，提高可读性 */
    font-weight: bold;
    text-decoration: none;
}

.notification-bar a:hover {
    text-decoration: underline;
}

/* 为页面主体添加顶部边距，避免被通知栏遮挡 */
body {
    padding-top: 50px;
}

/* 移动端适配 */
@media (max-width: 480px) {
    .notification-bar {
        padding: 10px 12px;
        font-size: 13px;
    }

    body {
        padding-top: 45px;
    }
}
