index.wxss 2.5 KB

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