person.page.scss 608 B

123456789101112131415161718192021222324252627282930
  1. .touxiang {
  2. width: 220px; /* 设置头像图片宽度 */
  3. height: 150px; /* 设置头像图片高度 */
  4. object-fit: cover; /* 保持图片比例不变,裁剪超出容器的部分 */
  5. }
  6. .icon {
  7. font-size: 2rem; /* 设置大图标的大小 */
  8. }
  9. .card-content {
  10. display: flex;
  11. justify-content: space-between;
  12. align-items: center;
  13. }
  14. .icon-group {
  15. display: flex;
  16. margin-left: 10px; /* 设置图标与头像之间的间距 */
  17. }
  18. .icon {
  19. margin-left: 20px; /* 设置图标之间的间距 */
  20. }
  21. .location-container{
  22. margin-top: 10px;
  23. }