index.less 4.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212
  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. height: 900rpx;
  26. padding-bottom: 110rpx;
  27. background-color: white;
  28. border-top-left-radius: 25rpx;
  29. border-top-right-radius: 25rpx;
  30. .header {
  31. position: relative;
  32. padding: 24rpx;
  33. .hr {
  34. position: absolute;
  35. right: 26rpx;
  36. top: -4rpx;
  37. font-size: 54rpx;
  38. color: #333333;
  39. }
  40. }
  41. .body {
  42. flex: 1;
  43. overflow-y: auto;
  44. .body-box {
  45. padding: 0rpx 22rpx;
  46. .content {
  47. padding: 34rpx 0rpx;
  48. display: flex;
  49. border-bottom: 1px solid #97979783;
  50. .c-avatar {
  51. width: 96rpx;
  52. height: 96rpx;
  53. border-radius: 50%;
  54. margin-right: 20rpx;
  55. background: rgb(216, 216, 216);
  56. }
  57. .c-right {
  58. flex: 1;
  59. .nickName {
  60. font-size: 30rpx;
  61. color: rgba(0, 0, 0, 0.60);
  62. }
  63. .detailDesc {
  64. letter-spacing: 2rpx;
  65. padding: 24rpx 0rpx;
  66. font-size: 30rpx;
  67. color: rgba(0, 0, 0, 0.7);
  68. }
  69. .replyList {
  70. width: 100%;
  71. padding: 14rpx;
  72. box-sizing: border-box;
  73. background-color: #F7F7F7;
  74. margin-bottom: 20rpx;
  75. .reply {
  76. font-size: 28rpx;
  77. .replyTitle {
  78. color: rgb(13, 147, 201);
  79. }
  80. .replyContent {
  81. color: rgba(0, 0, 0, 0.7);
  82. }
  83. }
  84. }
  85. .record {
  86. display: flex;
  87. align-items: center;
  88. justify-content: space-between;
  89. font-size: 26rpx;
  90. .record-right {
  91. display: flex;
  92. align-items: center;
  93. justify-content: space-between;
  94. text {
  95. margin-left: 6rpx;
  96. }
  97. .icon {
  98. width: 30rpx;
  99. height: 28rpx;
  100. }
  101. .iconBox {
  102. display: flex;
  103. align-items: center;
  104. margin-left: 24rpx;
  105. }
  106. }
  107. }
  108. }
  109. }
  110. .content:last-child {
  111. border: none;
  112. }
  113. }
  114. }
  115. .quick {
  116. width: 100%;
  117. background-color: #EEEDED;
  118. .close {
  119. text-align: right;
  120. font-size: 54rpx;
  121. line-height: 54rpx;
  122. padding: 0rpx 20rpx 10rpx;
  123. }
  124. .quickTop {
  125. display: flex;
  126. align-items: center;
  127. justify-content: space-between;
  128. padding: 0rpx 20rpx;
  129. font-size: 28rpx;
  130. .left {
  131. color: #00000060;
  132. }
  133. .right {
  134. padding: 4rpx 20rpx;
  135. background-color: #FFC86D;
  136. color: #484848;
  137. border-radius: 50rpx;
  138. }
  139. }
  140. .contents {
  141. display: flex;
  142. align-items: center;
  143. padding: 30rpx 0rpx 30rpx 20rpx;
  144. width: 100%;
  145. box-sizing: border-box;
  146. white-space: nowrap;
  147. border-bottom: 2rpx solid #9797976e;
  148. .remark {
  149. display: inline-block;
  150. font-size: 26rpx;
  151. padding: 8rpx 22rpx;
  152. margin-right: 20rpx;
  153. border-radius: 50rpx;
  154. color: white;
  155. background-color: #FF9B55;
  156. }
  157. }
  158. }
  159. .footer {
  160. display: flex;
  161. align-items: center;
  162. justify-content: space-between;
  163. background-color: #EEEDED;
  164. padding: 20rpx 24rpx;
  165. .input {
  166. height: 80rpx;
  167. flex: 1;
  168. padding-left: 20rpx;
  169. border-radius: 10rpx;
  170. background-color: white;
  171. }
  172. .submit {
  173. margin-left: 40rpx;
  174. width: 76rpx;
  175. color: #0091FF;
  176. font-size: 32rpx;
  177. }
  178. }
  179. }
  180. }