supplyDetail.wxss 2.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150
  1. page {
  2. background: #F3F3F3;
  3. color: #333;
  4. box-sizing: border-box;
  5. width:750rpx;
  6. padding:6rpx 0 400rpx;
  7. }
  8. text,view{
  9. color:#333;
  10. font-size:28rpx;
  11. box-sizing: border-box;
  12. }
  13. .supply-order{
  14. background: #fff;
  15. margin-bottom:28rpx;
  16. padding-bottom:32rpx;
  17. }
  18. .order-title{
  19. height: 80rpx;
  20. padding:0 24rpx 0 48rpx;
  21. border-bottom:1rpx solid #F3F3F3;
  22. color: #666666;
  23. font-size: 28rpx;
  24. margin-bottom:20rpx;
  25. display: flex;
  26. align-items: center;
  27. justify-content: space-between;
  28. }
  29. .pay-status{
  30. font-weight: 600;
  31. color: #09AFFF;
  32. }
  33. .non-payment.pay-status{
  34. color: #FF004E;
  35. }
  36. .item-line .order-amount{
  37. color: #191919;
  38. }
  39. .item-line .order-time{
  40. color: #191919;
  41. }
  42. .supply-item{
  43. background: #fff;
  44. margin-bottom:10rpx;
  45. padding-bottom:10rpx;
  46. }
  47. .item-title{
  48. height: 80rpx;
  49. line-height: 80rpx;
  50. padding-left:48rpx;
  51. border-bottom:1rpx solid #F3F3F3;
  52. color: #666666;
  53. font-size: 28rpx;
  54. margin-bottom:20rpx;
  55. }
  56. .item-line{
  57. display: flex;
  58. justify-content: space-between;
  59. align-items: center;
  60. padding:0 24rpx 0 48rpx;
  61. height: 48rpx;
  62. margin-bottom:4rpx;
  63. }
  64. .item-line view{
  65. font-size: 28rpx;
  66. color:#666;
  67. }
  68. .item-line view.item-left{
  69. color:#999;
  70. }
  71. .supply-bottom{
  72. position: fixed;
  73. bottom:0;
  74. left:0;
  75. right:0;
  76. padding-bottom: constant(safe-area-inset-bottom);
  77. padding-bottom: env(safe-area-inset-bottom);
  78. display: flex;
  79. flex-direction: column;
  80. align-items: center;
  81. background: #fff;
  82. }
  83. .total-amount{
  84. border-bottom:8rpx solid #F3F3F3;
  85. display: flex;
  86. height: 96rpx;
  87. padding:0 24rpx 8rpx 34rpx;
  88. justify-content: space-between;
  89. align-items: center;
  90. width:750rpx;
  91. }
  92. .total-amount text{
  93. font-weight:bold;
  94. }
  95. .del-item{
  96. width: 198rpx;
  97. height: 58rpx;
  98. background: #FF9F18;
  99. border-radius: 8rpx;
  100. font-size: 30rpx;
  101. text-align: center;
  102. line-height: 58rpx;
  103. color: #fff;
  104. margin:30rpx auto;
  105. }
  106. .item-operate-special{
  107. display: flex;
  108. align-items: center;
  109. justify-content: center;
  110. padding:30rpx 0;
  111. }
  112. .disable-item{
  113. width: 198rpx;
  114. height: 58rpx;
  115. background: #B7B7B7;
  116. border-radius: 8rpx;
  117. font-size: 30rpx;
  118. text-align: center;
  119. line-height: 58rpx;
  120. color: #fff;
  121. margin-right:90rpx;
  122. }
  123. .item-operate-special .add-item{
  124. margin:0;
  125. }
  126. .order-button{
  127. width: 702rpx;
  128. height: 98rpx;
  129. line-height: 98rpx;
  130. background: #1677FF;
  131. color: #FFFFFF;
  132. font-size: 36rpx;
  133. margin:24rpx 24rpx 0;
  134. text-align: center;
  135. font-weight: 400;
  136. border-radius: 8rpx;
  137. }
  138. .img-wrapper{
  139. width: 580rpx;
  140. height: 580rpx;
  141. background: #FFFFFF;
  142. border-radius: 56rpx;
  143. padding:50rpx;
  144. margin:40rpx auto;
  145. }
  146. .img-wrapper image{
  147. width:480rpx;
  148. height:480rpx;
  149. }