.navbar {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 5%; /* 置顶栏的高度 */
    background-color: rgba(255, 255, 255, 0.2); /* 置顶栏的背景颜色，半透明 */
    border-radius: 0; /* 去除圆角 */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1); /* 阴影效果 */
    backdrop-filter: blur(5px); /* 磨砂玻璃效果 */
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 1000; /* 确保置顶栏在最上层 */
}

.navbar img {
    width: 100%; /* 图片宽度占满置顶栏 */
    height: ; /* 图片高度占满置顶栏 */
    object-fit: cover; /* 确保图片按比例缩放并覆盖整个置顶栏 */
}
