figure{
    display: flex;
    flex-direction: row;
    justify-content: center;

    height: 300px;
    overflow-y: auto;
}

#navCategory{
    position: fixed;
    bottom: 20px;
    right: 2.5%;
    width: 230px;
    height: 40%;
    overflow: auto; /* 超出部分自动滚动 */
    border: 1px solid #ccc;
    background-color: rgba(240, 240, 240, 0.95); /* 半透明背景色 */
    opacity: 0.9; /* 设置透明度 */
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.2); /* 添加阴影效果 */
    padding: 10px; /* 可选：增加内边距 */
    border-radius: 10px; /* 设置圆角 */
}
