/* 头像编辑图标样式 */
.profile-avatar {
  position: relative;
  display: inline-block;
}

.avatar-edit-icon {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  background-color: rgba(0, 0, 0, 0.6);
  border-radius: 50%;
  padding: 10px;
  cursor: pointer;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  transition: all 0.2s ease-in-out;
  cursor: pointer;
}

.avatar-edit-icon:hover {
  background-color: rgba(0, 0, 0, 0.8);
}

/* 头像上传loading样式 */
.avatar-loading {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  background-color: rgba(0, 0, 0, 0.7);
  border-radius: 50%;
  z-index: 20;
}

.avatar-loading .spinner-border {
  width: 2rem;
  height: 2rem;
}
