index.less 6.0 KB

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