通用评论

AvatarHoverCard.less 2.5KB

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