index.less 4.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235
  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. }
  125. .content:last-child {
  126. border: none;
  127. }
  128. }
  129. }
  130. .quick {
  131. width: 100%;
  132. background-color: #EEEDED;
  133. .close {
  134. text-align: right;
  135. font-size: 54rpx;
  136. line-height: 54rpx;
  137. padding: 0rpx 20rpx 10rpx;
  138. }
  139. .quickTop {
  140. display: flex;
  141. align-items: center;
  142. justify-content: space-between;
  143. padding: 0rpx 20rpx;
  144. font-size: 28rpx;
  145. .left {
  146. color: #00000060;
  147. }
  148. .right {
  149. padding: 4rpx 20rpx;
  150. background-color: #FFC86D;
  151. color: #484848;
  152. border-radius: 50rpx;
  153. }
  154. }
  155. .contents {
  156. display: flex;
  157. align-items: center;
  158. padding: 30rpx 0rpx 30rpx 20rpx;
  159. width: 100%;
  160. box-sizing: border-box;
  161. white-space: nowrap;
  162. border-bottom: 2rpx solid #9797976e;
  163. .remark {
  164. display: inline-block;
  165. font-size: 26rpx;
  166. padding: 8rpx 22rpx;
  167. margin-right: 20rpx;
  168. border-radius: 50rpx;
  169. color: white;
  170. background-color: #FF9B55;
  171. }
  172. }
  173. }
  174. .footer {
  175. display: flex;
  176. align-items: center;
  177. justify-content: space-between;
  178. background-color: #EEEDED;
  179. padding: 20rpx 24rpx;
  180. .input {
  181. height: 80rpx;
  182. flex: 1;
  183. padding-left: 20rpx;
  184. border-radius: 10rpx;
  185. background-color: white;
  186. }
  187. .submit {
  188. margin-left: 40rpx;
  189. width: 76rpx;
  190. color: #0091FF;
  191. font-size: 32rpx;
  192. }
  193. }
  194. }
  195. .seat2 {
  196. padding-bottom: calc(130rpx + env(safe-area-inset-bottom)) !important;
  197. }
  198. }