index.less 4.2 KB

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