.online-users-widget {
    display: flex; /* 使用Flexbox布局 */
    flex-wrap: wrap; /* 允许换行 */
    justify-content: flex-start; /* 向左对齐 */
}
.online-user {
    margin-right: 7px; /* 头像之间的间隔 */
    margin-bottom: 7px; /* 头像底部的间隔 */
}
.online-user img {
    width: 50px; /* 头像的宽度 */
    height: 50px; /* 头像的高度 */
    border-radius: 50%; /* 圆形头像 */
    display: inline-block; /* 内联块元素 */
}