index.wxss 4.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197
  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. color: rgba(0, 0, 0, 0.7);
  88. }
  89. .commentBox .comment .body .body-box .content .c-right .replyList {
  90. width: 100%;
  91. padding: 14rpx;
  92. box-sizing: border-box;
  93. background-color: #F7F7F7;
  94. margin-bottom: 20rpx;
  95. }
  96. .commentBox .comment .body .body-box .content .c-right .replyList .reply {
  97. font-size: 28rpx;
  98. }
  99. .commentBox .comment .body .body-box .content .c-right .replyList .reply .replyTitle {
  100. color: #0d93c9;
  101. }
  102. .commentBox .comment .body .body-box .content .c-right .replyList .reply .replyContent {
  103. color: rgba(0, 0, 0, 0.7);
  104. }
  105. .commentBox .comment .body .body-box .content .c-right .record {
  106. display: flex;
  107. align-items: center;
  108. justify-content: space-between;
  109. font-size: 26rpx;
  110. }
  111. .commentBox .comment .body .body-box .content .c-right .record .record-right {
  112. display: flex;
  113. align-items: center;
  114. justify-content: space-between;
  115. }
  116. .commentBox .comment .body .body-box .content .c-right .record .record-right text {
  117. margin-left: 6rpx;
  118. }
  119. .commentBox .comment .body .body-box .content .c-right .record .record-right .icon {
  120. width: 30rpx;
  121. height: 28rpx;
  122. }
  123. .commentBox .comment .body .body-box .content .c-right .record .record-right .iconBox {
  124. display: flex;
  125. align-items: center;
  126. margin-left: 24rpx;
  127. }
  128. .commentBox .comment .body .body-box .content:last-child {
  129. border: none;
  130. }
  131. .commentBox .comment .quick {
  132. width: 100%;
  133. background-color: #EEEDED;
  134. }
  135. .commentBox .comment .quick .close {
  136. text-align: right;
  137. font-size: 54rpx;
  138. line-height: 54rpx;
  139. padding: 0rpx 20rpx 10rpx;
  140. }
  141. .commentBox .comment .quick .quickTop {
  142. display: flex;
  143. align-items: center;
  144. justify-content: space-between;
  145. padding: 0rpx 20rpx;
  146. font-size: 28rpx;
  147. }
  148. .commentBox .comment .quick .quickTop .left {
  149. color: #00000060;
  150. }
  151. .commentBox .comment .quick .quickTop .right {
  152. padding: 4rpx 20rpx;
  153. background-color: #FFC86D;
  154. color: #484848;
  155. border-radius: 50rpx;
  156. }
  157. .commentBox .comment .quick .contents {
  158. display: flex;
  159. align-items: center;
  160. padding: 30rpx 0rpx 30rpx 20rpx;
  161. width: 100%;
  162. box-sizing: border-box;
  163. white-space: nowrap;
  164. border-bottom: 2rpx solid #9797976e;
  165. }
  166. .commentBox .comment .quick .contents .remark {
  167. display: inline-block;
  168. font-size: 26rpx;
  169. padding: 8rpx 22rpx;
  170. margin-right: 20rpx;
  171. border-radius: 50rpx;
  172. color: white;
  173. background-color: #FF9B55;
  174. }
  175. .commentBox .comment .footer {
  176. display: flex;
  177. align-items: center;
  178. justify-content: space-between;
  179. background-color: #EEEDED;
  180. padding: 20rpx 24rpx;
  181. }
  182. .commentBox .comment .footer .input {
  183. height: 80rpx;
  184. flex: 1;
  185. padding-left: 20rpx;
  186. border-radius: 10rpx;
  187. background-color: white;
  188. }
  189. .commentBox .comment .footer .submit {
  190. margin-left: 40rpx;
  191. width: 76rpx;
  192. color: #0091FF;
  193. font-size: 32rpx;
  194. }
  195. .commentBox .seat2 {
  196. padding-bottom: calc(130rpx + env(safe-area-inset-bottom)) !important;
  197. }