index.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169
  1. .red {
  2. color: #F01740;
  3. }
  4. .grey {
  5. color: #666666;
  6. }
  7. .title {
  8. font-weight: Medium;
  9. font-size: 36rpx;
  10. color: #222222;
  11. }
  12. .text-large {
  13. font-size: 36rpx;
  14. }
  15. .text {
  16. font-size: 30rpx;
  17. }
  18. .text-left {
  19. text-align: left;
  20. }
  21. .text-small {
  22. font-size: 24rpx;
  23. /* word-break: keep-all; */
  24. }
  25. .flex {
  26. display: flex;
  27. }
  28. .justify-between {
  29. justify-content: space-between;
  30. }
  31. .flex-aligin-center {
  32. display: flex;
  33. align-items: center;
  34. }
  35. .flex-1 {
  36. flex: 1;
  37. }
  38. .flex-grow-1 {
  39. flex-grow: 1;
  40. }
  41. .fixed-bottom {
  42. position: fixed;
  43. bottom: 0;
  44. left: 0;
  45. right: 0;
  46. }
  47. .w-100 {
  48. width: 100%;
  49. }
  50. .h-100 {
  51. height: 100%;
  52. }
  53. .page-section {
  54. margin: 20rpx;
  55. border-radius: 20rpx;
  56. background-color: #ffffff;
  57. }
  58. .page-section-spacing {
  59. padding: 20rpx;
  60. }
  61. .spacing-small {
  62. padding: 10rpx;
  63. }
  64. .ellipsis {
  65. width: 100%;
  66. overflow: hidden;
  67. text-overflow: ellipsis;
  68. display: -webkit-box;
  69. -webkit-line-clamp: 1;
  70. -webkit-box-orient: vertical;
  71. }
  72. .ellipsis-2 {
  73. width: 100%;
  74. overflow: hidden;
  75. text-overflow: ellipsis;
  76. display: -webkit-box;
  77. -webkit-line-clamp: 2;
  78. -webkit-box-orient: vertical;
  79. }
  80. .detail-tags {
  81. width: 100%;
  82. margin: 8rpx 0;
  83. overflow: hidden;
  84. text-overflow: ellipsis;
  85. display: -webkit-box;
  86. -webkit-line-clamp: 2;
  87. -webkit-box-orient: vertical;
  88. }
  89. .goods-tags {
  90. width: 100%;
  91. margin: 8rpx 0;
  92. overflow: hidden;
  93. text-overflow: ellipsis;
  94. display: -webkit-box;
  95. -webkit-line-clamp: 2;
  96. -webkit-box-orient: vertical;
  97. }
  98. page {
  99. background: #f6f6f6;
  100. }
  101. .comments-wrapper {
  102. margin: 30rpx;
  103. padding: 10rpx 20rpx 20rpx;
  104. background: #ffffff;
  105. border-radius: 30rpx;
  106. }
  107. .comments-wrapper .order-row {
  108. display: flex;
  109. align-items: center;
  110. margin: 10rpx 0;
  111. padding: 10rpx 0;
  112. }
  113. .comments-wrapper .order-number {
  114. display: flex;
  115. justify-content: space-between;
  116. border-bottom: 0.5px solid #46a9a4;
  117. }
  118. .comments-wrapper .order-content {
  119. margin: 0;
  120. }
  121. .comments-wrapper .order-content .avatar {
  122. width: 80rpx;
  123. height: 80rpx;
  124. margin-right: 20rpx;
  125. border-radius: 50%;
  126. }
  127. .comments-wrapper .order-content .order-shop-img {
  128. width: 120rpx;
  129. height: 90rpx;
  130. margin-right: 20rpx;
  131. }
  132. .comments-wrapper .order-content .order-user {
  133. display: flex;
  134. align-items: center;
  135. justify-content: space-between;
  136. }
  137. .comments-wrapper .order-content .order-user .order-user-name {
  138. flex: 1;
  139. overflow: hidden;
  140. text-overflow: ellipsis;
  141. display: -webkit-box;
  142. -webkit-line-clamp: 2;
  143. -webkit-box-orient: vertical;
  144. }
  145. .comments-wrapper .order-content .order-info {
  146. display: flex;
  147. align-items: center;
  148. justify-content: space-between;
  149. width: 100%;
  150. padding: 10rpx 20rpx;
  151. border: 1px solid #46a9a4;
  152. border-radius: 40rpx;
  153. }
  154. .comments-wrapper .order-content .order-comment-text {
  155. margin: 20rpx 0;
  156. overflow: hidden;
  157. text-overflow: ellipsis;
  158. display: -webkit-box;
  159. -webkit-line-clamp: 2;
  160. -webkit-box-orient: vertical;
  161. }
  162. .comments-wrapper .order-footer {
  163. display: flex;
  164. flex-direction: row-reverse;
  165. }
  166. .comments-wrapper .order-footer .reply-btn text {
  167. color: #000000;
  168. letter-spacing: 4rpx;
  169. }