
/* 圆形头像盒子样式 */
.avatar-box {
  border-radius: 50% !important;
  overflow: hidden !important;
  padding: 0 !important;
  display: flex !important;
  justify-content: center !important;
  align-items: center !important;
  // background-image: url('public/avatar/avatar_bg.jpg');
  background-size: cover;
  background-position: center;
}

/* 移除原始 box 的标题和内容区域 */
.avatar-box > .box-header {
  display: none !important;
}

.avatar-box > .box-body {
  display: none !important;
}

