index.less 8.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300
  1. .commentBox {
  2. position: fixed;
  3. top: 0;
  4. left: 0;
  5. width: 100%;
  6. height: 100%;
  7. z-index: 999;
  8. overflow: hidden;
  9. .commentBg {
  10. position: fixed;
  11. top: 0;
  12. left: 0;
  13. width: 100%;
  14. height: 100%;
  15. background: rgba(0, 0, 0, .3);
  16. }
  17. .comment {
  18. position: absolute;
  19. left: 0;
  20. bottom: 0px;
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: space-between;
  24. width: 100%;
  25. background-color: white;
  26. border-top-left-radius: 25rpx;
  27. border-top-right-radius: 25rpx;
  28. .header {
  29. position: relative;
  30. padding: 24rpx;
  31. display: flex;
  32. align-items: center;
  33. .hl {
  34. position: relative;
  35. padding-bottom: 10rpx;
  36. margin-right: 120rpx;
  37. color: black;
  38. }
  39. .currentH::after {
  40. position: absolute;
  41. bottom: 0rpx;
  42. left: 50%;
  43. transform: translateX(-50%);
  44. content: '';
  45. width: 50rpx;
  46. height: 4rpx;
  47. background-color: #333;
  48. }
  49. .hr {
  50. position: absolute;
  51. right: 26rpx;
  52. top: -4rpx;
  53. font-size: 54rpx;
  54. color: #333333;
  55. }
  56. }
  57. .body {
  58. height: 40vh;
  59. .body-box {
  60. padding: 0rpx 22rpx;
  61. .content {
  62. padding: 34rpx 0rpx;
  63. display: flex;
  64. border-bottom: 1px solid #97979783;
  65. .c-avatar {
  66. width: 96rpx;
  67. height: 96rpx;
  68. border-radius: 50%;
  69. margin-right: 20rpx;
  70. background: rgb(216, 216, 216);
  71. }
  72. .c-right {
  73. flex: 1;
  74. .nickName {
  75. font-size: 30rpx;
  76. color: black;
  77. }
  78. .detailDesc {
  79. letter-spacing: 2rpx;
  80. margin: 12rpx 0rpx;
  81. padding: 12rpx 0rpx;
  82. border-radius: 10rpx;
  83. font-size: 26rpx;
  84. line-height: 40rpx;
  85. word-break: break-all;
  86. color: rgba(0, 0, 0, 0.7);
  87. }
  88. .hoverClass {
  89. background-color: #F7F7F7;
  90. }
  91. .replyList {
  92. width: 100%;
  93. padding: 14rpx;
  94. box-sizing: border-box;
  95. background-color: #fafafa93;
  96. margin-bottom: 20rpx;
  97. .reply {
  98. font-size: 28rpx;
  99. margin-bottom: 8rpx;
  100. .replyTitle {
  101. color: rgb(13, 147, 201);
  102. }
  103. .replyContent {
  104. color: rgba(0, 0, 0, 0.7);
  105. }
  106. }
  107. .hoverClass2 {
  108. background-color: #F7F7F7;
  109. }
  110. }
  111. .record {
  112. display: flex;
  113. align-items: center;
  114. justify-content: space-between;
  115. font-size: 26rpx;
  116. .record-right {
  117. display: flex;
  118. align-items: center;
  119. justify-content: space-between;
  120. text {
  121. margin-left: 6rpx;
  122. }
  123. .icon {
  124. width: 30rpx;
  125. height: 28rpx;
  126. }
  127. .iconBox {
  128. display: flex;
  129. align-items: center;
  130. margin-left: 24rpx;
  131. }
  132. }
  133. }
  134. }
  135. .c-like {
  136. flex: 1;
  137. display: flex;
  138. align-items: center;
  139. justify-content: space-between;
  140. .left {
  141. height: 90rpx;
  142. display: flex;
  143. flex-direction: column;
  144. justify-content: space-between;
  145. .nickName {
  146. font-size: 30rpx;
  147. color: black;
  148. }
  149. .time {
  150. font-size: 26rpx;
  151. color: #666666;
  152. }
  153. }
  154. .follow {
  155. display: flex;
  156. align-items: center;
  157. justify-content: center;
  158. width: 140rpx;
  159. font-size: 24rpx;
  160. padding: 8rpx 0rpx;
  161. border-radius: 50rpx;
  162. border: 1rpx solid #1BC665;
  163. color: #1BC665;
  164. .character {
  165. width: 22rpx;
  166. height: 22rpx;
  167. margin-right: 6rpx;
  168. }
  169. }
  170. .isFans {
  171. border: 1rpx solid #E2ECFB;
  172. background-color: #E2ECFB;
  173. color: #333;
  174. }
  175. .pkNum {
  176. color: #30C866;
  177. font-size: 44rpx;
  178. margin-right: 20rpx;
  179. }
  180. }
  181. }
  182. .content:last-child {
  183. border: none;
  184. }
  185. }
  186. }
  187. .quick {
  188. width: 100%;
  189. background-color: #EEEDED;
  190. .close {
  191. text-align: right;
  192. font-size: 54rpx;
  193. line-height: 54rpx;
  194. padding: 0rpx 20rpx 10rpx;
  195. }
  196. .quickTop {
  197. display: flex;
  198. align-items: center;
  199. justify-content: space-between;
  200. padding: 0rpx 20rpx;
  201. font-size: 28rpx;
  202. .left {
  203. color: #00000060;
  204. }
  205. .right {
  206. padding: 4rpx 20rpx;
  207. background-color: #FFC86D;
  208. color: #484848;
  209. border-radius: 50rpx;
  210. }
  211. }
  212. .contents {
  213. display: flex;
  214. align-items: center;
  215. padding: 30rpx 0rpx 30rpx 20rpx;
  216. width: 100%;
  217. box-sizing: border-box;
  218. white-space: nowrap;
  219. border-bottom: 2rpx solid #9797976e;
  220. .remark {
  221. display: inline-block;
  222. font-size: 26rpx;
  223. padding: 8rpx 22rpx;
  224. margin-right: 20rpx;
  225. border-radius: 50rpx;
  226. color: white;
  227. background-color: #FF9B55;
  228. }
  229. }
  230. }
  231. .footer {
  232. display: flex;
  233. align-items: center;
  234. justify-content: space-between;
  235. background-color: #EEEDED;
  236. padding: 20rpx 24rpx 30rpx;
  237. .input {
  238. height: 80rpx;
  239. flex: 1;
  240. padding-left: 20rpx;
  241. border-radius: 10rpx;
  242. background-color: white;
  243. }
  244. .submit {
  245. margin-left: 40rpx;
  246. width: 76rpx;
  247. color: #0091FF;
  248. font-size: 32rpx;
  249. }
  250. }
  251. }
  252. .seat2 {
  253. padding-bottom: calc(130rpx + env(safe-area-inset-bottom)) !important;
  254. }
  255. }