/* 头像组件 */
.avatar {
  width: 80rpx;
  height: 80rpx;
  border-radius: 50%;
  background-color: #EEEEEE;
  overflow: hidden;
}

.avatar-sm { width: 60rpx; height: 60rpx; }
.avatar-lg { width: 100rpx; height: 100rpx; }
.avatar-xl { width: 120rpx; height: 120rpx; }

.avatar-square { border-radius: 8rpx; }
.avatar-border { border: 2rpx solid #FFFFFF; }
.avatar-group { display: flex; }
.avatar-group .avatar { margin-left: -15rpx; }
.avatar-group .avatar:first-child { margin-left: 0; } 