/* assets/css/custom.css */
.image.avatar img {
  width: 180px;        /* 自定尺寸 */
  height: 180px;       /* 与 width 一致 */
  aspect-ratio: 1 / 1; /* 保障正方形 */
  object-fit: cover;   /* 裁剪避免拉伸 */
  border-radius: 50%;  /* 正圆 */
  display: block;
}

