index.wxss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198
  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. }
  10. .commentBox .commentBg {
  11. position: fixed;
  12. top: 0;
  13. left: 0;
  14. width: 100%;
  15. height: 100%;
  16. background: rgba(0, 0, 0, 0.3);
  17. }
  18. .commentBox .comment {
  19. position: absolute;
  20. left: 0;
  21. bottom: 0px;
  22. display: flex;
  23. flex-direction: column;
  24. justify-content: space-between;
  25. width: 100%;
  26. background-color: white;
  27. border-top-left-radius: 25rpx;
  28. border-top-right-radius: 25rpx;
  29. }
  30. .commentBox .comment .header {
  31. position: relative;
  32. padding: 24rpx;
  33. display: flex;
  34. align-items: center;
  35. }
  36. .commentBox .comment .header .hl {
  37. position: relative;
  38. padding-bottom: 10rpx;
  39. margin-right: 120rpx;
  40. }
  41. .commentBox .comment .header .currentH::after {
  42. position: absolute;
  43. bottom: 0rpx;
  44. left: 50%;
  45. transform: translateX(-50%);
  46. content: '';
  47. width: 50rpx;
  48. height: 4rpx;
  49. background-color: #333;
  50. }
  51. .commentBox .comment .header .hr {
  52. position: absolute;
  53. right: 26rpx;
  54. top: -4rpx;
  55. font-size: 54rpx;
  56. color: #333333;
  57. }
  58. .commentBox .comment .body {
  59. height: 700rpx;
  60. }
  61. .commentBox .comment .body .body-box {
  62. padding: 0rpx 22rpx;
  63. }
  64. .commentBox .comment .body .body-box .content {
  65. padding: 34rpx 0rpx;
  66. display: flex;
  67. border-bottom: 1px solid #97979783;
  68. }
  69. .commentBox .comment .body .body-box .content .c-avatar {
  70. width: 96rpx;
  71. height: 96rpx;
  72. border-radius: 50%;
  73. margin-right: 20rpx;
  74. background: #d8d8d8;
  75. }
  76. .commentBox .comment .body .body-box .content .c-right {
  77. flex: 1;
  78. }
  79. .commentBox .comment .body .body-box .content .c-right .nickName {
  80. font-size: 30rpx;
  81. color: rgba(0, 0, 0, 0.6);
  82. }
  83. .commentBox .comment .body .body-box .content .c-right .detailDesc {
  84. letter-spacing: 2rpx;
  85. padding: 24rpx 0rpx;
  86. font-size: 30rpx;
  87. word-break: break-all;
  88. color: rgba(0, 0, 0, 0.7);
  89. }
  90. .commentBox .comment .body .body-box .content .c-right .replyList {
  91. width: 100%;
  92. padding: 14rpx;
  93. box-sizing: border-box;
  94. background-color: #F7F7F7;
  95. margin-bottom: 20rpx;
  96. }
  97. .commentBox .comment .body .body-box .content .c-right .replyList .reply {
  98. font-size: 28rpx;
  99. }
  100. .commentBox .comment .body .body-box .content .c-right .replyList .reply .replyTitle {
  101. color: #0d93c9;
  102. }
  103. .commentBox .comment .body .body-box .content .c-right .replyList .reply .replyContent {
  104. color: rgba(0, 0, 0, 0.7);
  105. }
  106. .commentBox .comment .body .body-box .content .c-right .record {
  107. display: flex;
  108. align-items: center;
  109. justify-content: space-between;
  110. font-size: 26rpx;
  111. }
  112. .commentBox .comment .body .body-box .content .c-right .record .record-right {
  113. display: flex;
  114. align-items: center;
  115. justify-content: space-between;
  116. }
  117. .commentBox .comment .body .body-box .content .c-right .record .record-right text {
  118. margin-left: 6rpx;
  119. }
  120. .commentBox .comment .body .body-box .content .c-right .record .record-right .icon {
  121. width: 30rpx;
  122. height: 28rpx;
  123. }
  124. .commentBox .comment .body .body-box .content .c-right .record .record-right .iconBox {
  125. display: flex;
  126. align-items: center;
  127. margin-left: 24rpx;
  128. }
  129. .commentBox .comment .body .body-box .content:last-child {
  130. border: none;
  131. }
  132. .commentBox .comment .quick {
  133. width: 100%;
  134. background-color: #EEEDED;
  135. }
  136. .commentBox .comment .quick .close {
  137. text-align: right;
  138. font-size: 54rpx;
  139. line-height: 54rpx;
  140. padding: 0rpx 20rpx 10rpx;
  141. }
  142. .commentBox .comment .quick .quickTop {
  143. display: flex;
  144. align-items: center;
  145. justify-content: space-between;
  146. padding: 0rpx 20rpx;
  147. font-size: 28rpx;
  148. }
  149. .commentBox .comment .quick .quickTop .left {
  150. color: #00000060;
  151. }
  152. .commentBox .comment .quick .quickTop .right {
  153. padding: 4rpx 20rpx;
  154. background-color: #FFC86D;
  155. color: #484848;
  156. border-radius: 50rpx;
  157. }
  158. .commentBox .comment .quick .contents {
  159. display: flex;
  160. align-items: center;
  161. padding: 30rpx 0rpx 30rpx 20rpx;
  162. width: 100%;
  163. box-sizing: border-box;
  164. white-space: nowrap;
  165. border-bottom: 2rpx solid #9797976e;
  166. }
  167. .commentBox .comment .quick .contents .remark {
  168. display: inline-block;
  169. font-size: 26rpx;
  170. padding: 8rpx 22rpx;
  171. margin-right: 20rpx;
  172. border-radius: 50rpx;
  173. color: white;
  174. background-color: #FF9B55;
  175. }
  176. .commentBox .comment .footer {
  177. display: flex;
  178. align-items: center;
  179. justify-content: space-between;
  180. background-color: #EEEDED;
  181. padding: 20rpx 24rpx;
  182. }
  183. .commentBox .comment .footer .input {
  184. height: 80rpx;
  185. flex: 1;
  186. padding-left: 20rpx;
  187. border-radius: 10rpx;
  188. background-color: white;
  189. }
  190. .commentBox .comment .footer .submit {
  191. margin-left: 40rpx;
  192. width: 76rpx;
  193. color: #0091FF;
  194. font-size: 32rpx;
  195. }
  196. .commentBox .seat2 {
  197. padding-bottom: calc(130rpx + env(safe-area-inset-bottom)) !important;
  198. }