index.module.less 872 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. .contactCard{
  2. display: flex;
  3. padding: 16px;
  4. align-items: center;
  5. gap: 8px;
  6. // border-radius: 12px;
  7. color: #262626;
  8. font-family: "PingFang SC";
  9. }
  10. .avatar{
  11. width: 48px;
  12. height: 48px;
  13. border-radius: 100%;
  14. flex-shrink: 0;
  15. overflow: hidden;
  16. }
  17. .infoColumn{
  18. width: 100%;
  19. display: flex;
  20. flex-direction: column;
  21. gap: 4px;
  22. }
  23. .nameRow{
  24. display: flex;
  25. align-items: center;
  26. gap: 4px;
  27. font-style: normal;
  28. }
  29. .nickName{
  30. font-size: 14px;
  31. font-style: normal;
  32. font-weight: 500;
  33. line-height: 20px;
  34. }
  35. .tipCnt{
  36. display: flex;
  37. justify-content: center;
  38. align-items: center;
  39. font-size: 10px;
  40. font-style: normal;
  41. height: 14px;
  42. padding: 2px 4px;
  43. flex-shrink: 0;
  44. color: white;
  45. border-radius: 14px;
  46. background: red;
  47. }
  48. .subInfo{
  49. color: #777E95;
  50. font-size: 12px;
  51. font-style: normal;
  52. font-weight: 400;
  53. line-height: 16px;
  54. }