index.less 5.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278
  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. }
  160. }
  161. .content:last-child {
  162. border: none;
  163. }
  164. }
  165. }
  166. .quick {
  167. width: 100%;
  168. background-color: #EEEDED;
  169. .close {
  170. text-align: right;
  171. font-size: 54rpx;
  172. line-height: 54rpx;
  173. padding: 0rpx 20rpx 10rpx;
  174. }
  175. .quickTop {
  176. display: flex;
  177. align-items: center;
  178. justify-content: space-between;
  179. padding: 0rpx 20rpx;
  180. font-size: 28rpx;
  181. .left {
  182. color: #00000060;
  183. }
  184. .right {
  185. padding: 4rpx 20rpx;
  186. background-color: #FFC86D;
  187. color: #484848;
  188. border-radius: 50rpx;
  189. }
  190. }
  191. .contents {
  192. display: flex;
  193. align-items: center;
  194. padding: 30rpx 0rpx 30rpx 20rpx;
  195. width: 100%;
  196. box-sizing: border-box;
  197. white-space: nowrap;
  198. border-bottom: 2rpx solid #9797976e;
  199. .remark {
  200. display: inline-block;
  201. font-size: 26rpx;
  202. padding: 8rpx 22rpx;
  203. margin-right: 20rpx;
  204. border-radius: 50rpx;
  205. color: white;
  206. background-color: #FF9B55;
  207. }
  208. }
  209. }
  210. .footer {
  211. display: flex;
  212. align-items: center;
  213. justify-content: space-between;
  214. background-color: #EEEDED;
  215. padding: 20rpx 24rpx;
  216. .input {
  217. height: 80rpx;
  218. flex: 1;
  219. padding-left: 20rpx;
  220. border-radius: 10rpx;
  221. background-color: white;
  222. }
  223. .submit {
  224. margin-left: 40rpx;
  225. width: 76rpx;
  226. color: #0091FF;
  227. font-size: 32rpx;
  228. }
  229. }
  230. }
  231. .seat2 {
  232. padding-bottom: calc(130rpx + env(safe-area-inset-bottom)) !important;
  233. }
  234. }