app.wxss 3.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222
  1. page {
  2. background: #F9F9F9;
  3. line-height: 1.4;
  4. font-weight: 400;
  5. }
  6. view {
  7. box-sizing: border-box;
  8. }
  9. .container {
  10. height: 100%;
  11. display: flex;
  12. flex-direction: column;
  13. align-items: center;
  14. justify-content: space-between;
  15. padding: 200rpx 0;
  16. }
  17. .flex {
  18. display: flex;
  19. }
  20. .flex-start {
  21. align-items: flex-start;
  22. justify-content: flex-start;
  23. }
  24. .flex-align-center {
  25. display: flex;
  26. align-items: center;
  27. }
  28. .flex-justify-center {
  29. display: flex;
  30. justify-content: center;
  31. }
  32. .flex-justify-space-around {
  33. display: flex;
  34. justify-content: space-around;
  35. }
  36. .flex-justify-space-between {
  37. display: flex;
  38. justify-content: space-between;
  39. }
  40. .flex-center {
  41. display: flex;
  42. align-items: center;
  43. justify-content: center;
  44. }
  45. .flex-column {
  46. display: flex;
  47. flex-direction: column;
  48. /* align-items: flex-start;
  49. justify-content: flex-start; */
  50. }
  51. .flex1 {
  52. flex: 1;
  53. }
  54. .radius {
  55. border-radius: 8rpx;
  56. box-sizing: border-box;
  57. overflow: hidden;
  58. }
  59. .popup-radius .wux-popup__content {
  60. border-top-left-radius: 40rpx;
  61. border-top-right-radius: 40rpx;
  62. }
  63. .ellipsis {
  64. white-space: nowrap;
  65. overflow: hidden;
  66. text-overflow: ellipsis;
  67. }
  68. .ellipsis2 {
  69. overflow: hidden;
  70. text-overflow: ellipsis;
  71. display: -webkit-box;
  72. -webkit-line-clamp: 2;
  73. -webkit-box-orient: vertical;
  74. }
  75. .ellipsis3 {
  76. overflow: hidden;
  77. text-overflow: ellipsis;
  78. display: -webkit-box;
  79. -webkit-line-clamp: 3;
  80. -webkit-box-orient: vertical;
  81. }
  82. text {
  83. font-size: 32rpx;
  84. color: #333333;
  85. /* color: #FFFFFF; */
  86. font-family: PingFangSC-Regular;
  87. }
  88. .btm-text {
  89. font-size: 28rpx;
  90. color: #999999;
  91. text-align: center;
  92. margin: 42rpx 0;
  93. }
  94. .no-data {
  95. text-align: center;
  96. margin-top: 400rpx;
  97. color: #666;
  98. }
  99. .no-more-data {
  100. text-align: center;
  101. margin-top: 28rpx;
  102. color: #666;
  103. }
  104. rich-text .richImg{
  105. max-width: 100%;
  106. max-height: 100%;
  107. vertical-align: middle;
  108. height: auto!important;
  109. width: auto!important;
  110. }
  111. /*卡片样式*/
  112. .jl-card {
  113. border-radius: 24rpx;
  114. background: #fff;
  115. padding: 30rpx 28rpx 0;
  116. margin-bottom: 20rpx;
  117. display: flex;
  118. flex-direction: column;
  119. }
  120. .jl-card-head {
  121. display: flex;
  122. align-items: center;
  123. font-size: 32rpx;
  124. font-weight: 500;
  125. margin-bottom: 30rpx;
  126. }
  127. .jl-card-head-title {
  128. color: #333;
  129. flex: 1;
  130. white-space: nowrap;
  131. overflow: hidden;
  132. text-overflow: ellipsis;
  133. }
  134. .jl-card-head-status {
  135. color: #FF77B0;
  136. }
  137. .jl-card-order {
  138. display: flex;
  139. padding: 30rpx 28rpx;
  140. margin-bottom: 30rpx;
  141. border-radius: 16rpx;
  142. background: #FFF7FA;
  143. position: relative;
  144. z-index: 1;
  145. }
  146. .jl-card-order-img {
  147. width: 152rpx;
  148. height: 152rpx;
  149. border-radius: 16rpx;
  150. overflow: hidden;
  151. display: block;
  152. margin-right: 12rpx;
  153. background: #f5f5f5;
  154. }
  155. .jl-card-order-right {
  156. flex: 1;
  157. }
  158. .jl-card-order-row {
  159. display: flex;
  160. justify-content: space-between;
  161. }
  162. .jl-card-order-label,
  163. .jl-card-order-msg{
  164. line-height: 48rpx;
  165. font-size: 28rpx;
  166. color: #333;
  167. }
  168. .jl-card-order-msg {
  169. color: #666;
  170. }
  171. .jl-card-money {
  172. text-align: right;
  173. font-size: 32rpx;
  174. color: #333;
  175. margin-bottom: 30rpx;
  176. }
  177. .jl-card-money text {
  178. color: #FF77B0;
  179. }
  180. /*底部固定块*/
  181. .jl-footer-fixed {
  182. width: 100%;
  183. position: fixed;
  184. left: 0;
  185. bottom: 0;
  186. z-index: 50;
  187. background: #fff;
  188. padding: 20rpx 36rpx;
  189. }
  190. .jl-footer-fixed-btn {
  191. line-height: 96rpx;
  192. border-radius: 48rpx;
  193. background: #FF77B0;
  194. font-size: 36rpx;
  195. text-align: center;
  196. color: #fff;
  197. margin-bottom: env(safe-area-inset-bottom);
  198. }