通用评论

AvatarHoverCard.less 2.2KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148
  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. .modalContainer {
  81. background: #fff;
  82. padding: 20px;
  83. }
  84. .modalTitle {
  85. color: #3a3a3a;
  86. margin-left: 8px;
  87. margin-bottom: 12px;
  88. font-weight: 500;
  89. }
  90. .modalClose {
  91. position: absolute;
  92. top: 15px;
  93. right: 15px;
  94. font-size: 12px;
  95. }
  96. .nextComment {
  97. width: 510px;
  98. padding: 0;
  99. }
  100. .expressionBtnWrap,
  101. .pictureBtnWrap {
  102. float: left;
  103. width: 70px;
  104. margin-top: 5px;
  105. cursor: pointer;
  106. .icon {
  107. float: left;
  108. color: #ffa405;
  109. font-size: 18px !important;
  110. margin: 0 !important;
  111. }
  112. .text {
  113. float: left;
  114. font-size: 12px;
  115. color: #393939;
  116. margin-left: 6px;
  117. }
  118. }
  119. .btnGroup {
  120. display: flex;
  121. }
  122. .cancelBtn,
  123. .submitBtn {
  124. width: 77px;
  125. height: 31px;
  126. line-height: 31px;
  127. background: rgba(113, 193, 53, 1);
  128. border-radius: 4px;
  129. color: #fff;
  130. font-size: 12px;
  131. font-weight: 500;
  132. text-align: center;
  133. cursor: pointer;
  134. }
  135. .cancelBtn {
  136. background: #e9e9e9;
  137. color: #6d6d6d;
  138. margin-right: 12px;
  139. }