通用评论

AvatarHoverCard.less 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147
  1. .AvatarHoverCard {
  2. width: 260px;
  3. padding: 14px 18px;
  4. }
  5. .rowUser {
  6. align-items: center;
  7. }
  8. .avatar {
  9. width: 48px;
  10. height: 48px;
  11. border-radius: 24px;
  12. background-position: center;
  13. background-size: cover;
  14. }
  15. .nickname {
  16. font-size: 16px;
  17. color: rgba(58, 58, 58, 1);
  18. margin-left: 14px;
  19. }
  20. .divider {
  21. height: 1px;
  22. background: #e2e2e2;
  23. margin: 12px 0;
  24. }
  25. .rowNum {
  26. height: 45px;
  27. align-items: center;
  28. }
  29. .colFans,
  30. .colFollow {
  31. flex: 1;
  32. text-align: center;
  33. .count {
  34. font-size: 17px;
  35. font-weight: 500;
  36. color: rgba(5, 18, 11, 1);
  37. }
  38. .text {
  39. font-size: 14px;
  40. font-weight: 400;
  41. color: rgba(140, 140, 140, 1);
  42. }
  43. }
  44. .hdivider {
  45. width: 1px;
  46. height: 25px;
  47. background: #e2e2e2;
  48. }
  49. .rowBtn {
  50. margin-top: 14px;
  51. margin-bottom: 10px;
  52. justify-content: space-around;
  53. }
  54. .followBtn,
  55. .unFollowBtn,
  56. .privateMessageBtn {
  57. width: 77px;
  58. height: 31px;
  59. line-height: 31px;
  60. background: rgba(113, 193, 53, 1);
  61. border-radius: 4px;
  62. color: #fff;
  63. font-size: 12px;
  64. font-weight: 500;
  65. text-align: center;
  66. cursor: pointer;
  67. margin: 0 5px;
  68. }
  69. .followBtn {
  70. border: 1px solid rgba(113, 193, 53, 1);
  71. color: rgba(113, 193, 53, 1);
  72. background: #fff;
  73. }
  74. .unFollowBtn {
  75. color: #fff;
  76. background: rgba(113, 193, 53, 1);
  77. border: 1px solid rgba(113, 193, 53, 1);
  78. }
  79. .modalContainer {
  80. background: #fff;
  81. padding: 20px;
  82. }
  83. .modalTitle {
  84. color: #3a3a3a;
  85. margin-left: 8px;
  86. margin-bottom: 12px;
  87. font-weight: 500;
  88. }
  89. .modalClose {
  90. position: absolute;
  91. top: 15px;
  92. right: 15px;
  93. font-size: 12px;
  94. }
  95. .nextComment {
  96. width: 510px;
  97. padding: 0;
  98. }
  99. .expressionBtnWrap,
  100. .pictureBtnWrap {
  101. float: left;
  102. width: 70px;
  103. margin-top: 5px;
  104. cursor: pointer;
  105. .icon {
  106. float: left;
  107. color: #ffa405;
  108. font-size: 18px !important;
  109. margin: 0 !important;
  110. }
  111. .text {
  112. float: left;
  113. font-size: 12px;
  114. color: #393939;
  115. margin-left: 6px;
  116. }
  117. }
  118. .btnGroup {
  119. display: flex;
  120. }
  121. .cancelBtn,
  122. .submitBtn {
  123. width: 77px;
  124. height: 31px;
  125. line-height: 31px;
  126. background: rgba(113, 193, 53, 1);
  127. border-radius: 4px;
  128. color: #fff;
  129. font-size: 12px;
  130. font-weight: 500;
  131. text-align: center;
  132. cursor: pointer;
  133. }
  134. .cancelBtn {
  135. background: #e9e9e9;
  136. color: #6d6d6d;
  137. margin-right: 12px;
  138. }