index.less 6.3 KB

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