index.module.less 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273
  1. .contactCard{
  2. display: flex;
  3. padding: 16px;
  4. align-items: flex-start;
  5. gap: 8px;
  6. // border-radius: 12px;
  7. color: #262626;
  8. font-family: "PingFang SC";
  9. }
  10. .avatarContainer{
  11. position: relative;
  12. width: 48px;
  13. height: 48px;
  14. }
  15. .avatar{
  16. position: relative;
  17. width: 48px;
  18. height: 48px;
  19. border-radius: 100%;
  20. flex-shrink: 0;
  21. overflow: hidden;
  22. }
  23. .infoColumn{
  24. width: 100%;
  25. display: flex;
  26. flex-direction: column;
  27. gap: 4px;
  28. }
  29. .nameRow{
  30. display: flex;
  31. align-items: center;
  32. gap: 4px;
  33. font-style: normal;
  34. }
  35. .nickName{
  36. font-size: 14px;
  37. font-style: normal;
  38. font-weight: 500;
  39. line-height: 20px;
  40. }
  41. .tipCnt{
  42. position: absolute;
  43. z-index: 1;
  44. top: 6px;
  45. right: 0px;
  46. font-size: 0px;
  47. height: 8px;
  48. width: 8px;
  49. border-radius: 8px;
  50. background: #FF4747;
  51. border: 1px solid white;
  52. }
  53. .certificationContainer{
  54. display: flex;
  55. align-items: center;
  56. justify-content: center;
  57. background-color: rgba(#31BE59, .1);
  58. width: 20px;
  59. height: 16px;
  60. border-radius: 4px;
  61. }
  62. .subInfo{
  63. color: #414A64;
  64. font-size: 12px;
  65. font-style: normal;
  66. font-weight: 400;
  67. line-height: 16px;
  68. }
  69. .lastMsg {
  70. .subInfo();
  71. color: #A1A7BA;
  72. }