OrderCheck.wxss 3.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206
  1. .container {
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. justify-content: flex-start;
  6. align-content: center;
  7. flex-wrap: nowrap;
  8. height: 100vh;
  9. }
  10. .header,
  11. .data,
  12. .order-other {
  13. width: 100%;
  14. display: flex;
  15. flex-direction: column;
  16. flex-wrap: nowrap;
  17. justify-content: center;
  18. background-color: #fff;
  19. border-bottom: 6px solid #eee;
  20. padding-left: 20px;
  21. }
  22. .header .address {
  23. font-size: 20px;
  24. color: #333;
  25. }
  26. .header .detail {
  27. font-size: 16px;
  28. margin-top: 5px;
  29. color: rgb(151, 151, 151);
  30. }
  31. .header.no-address {
  32. justify-content: space-between;
  33. flex-direction: row;
  34. padding-bottom: 20px;
  35. padding: 0 10px 20px;
  36. }
  37. .header.no-address .address {
  38. margin-left: 20px;
  39. }
  40. .header.no-address .detail {
  41. margin-right: 20px;
  42. }
  43. .with-line {
  44. padding-top: 10px;
  45. padding-bottom: 10px;
  46. border-bottom: 2px solid #eee;
  47. }
  48. .content {
  49. display: flex;
  50. flex-direction: column;
  51. flex-wrap: nowrap;
  52. justify-content: center;
  53. width: calc(100% - 40px);
  54. }
  55. .shop-name {
  56. font-size: 16px;
  57. color: #333;
  58. }
  59. .item {
  60. display: flex;
  61. justify-content: space-between;
  62. align-content: space-between;
  63. width: 100%;
  64. }
  65. .item .item-detail {
  66. display: flex;
  67. flex-direction: row;
  68. justify-content: center;
  69. align-content: center;
  70. }
  71. .color-grey {
  72. color: rgb(151, 151, 151);
  73. }
  74. .color-red {
  75. color: rgba(255, 0, 0, 0.575);
  76. }
  77. .item .item-detail .pic {
  78. width: 80px;
  79. height: 48px;
  80. margin-right: 10px;
  81. }
  82. .item .item-detail .bug-detail {
  83. display: flex;
  84. flex-direction: column;
  85. justify-content: space-between;
  86. align-content: center;
  87. align-items: flex-start;
  88. }
  89. .item .item-detail .bug-detail .num,
  90. .item-price .price-old {
  91. font-size: 14px;
  92. }
  93. .item .item-price {
  94. display: flex;
  95. flex-direction: column;
  96. justify-content: flex-start;
  97. align-content: center;
  98. align-items: flex-end;
  99. }
  100. .package,
  101. .pay,
  102. .data-detail {
  103. display: flex;
  104. justify-content: space-between;
  105. align-content: space-between;
  106. position: relative;
  107. }
  108. .data-detail .name {
  109. width: 50px;
  110. }
  111. .counter {
  112. position: absolute;
  113. right: 10px;
  114. bottom: 10px;
  115. }
  116. .data-detail textarea {
  117. background-color: #f6f6f6;
  118. height: 70px;
  119. }
  120. .content {
  121. padding-bottom: 40px;
  122. }
  123. .total {
  124. margin: 10px 0 -30px;
  125. text-align: right;
  126. }
  127. .data {
  128. border-top: 6px solid #eee;
  129. height: unset;
  130. width: calc(100% - 40px);
  131. padding: 10px 20px;
  132. border-bottom: unset;
  133. }
  134. .order-other {
  135. height: unset;
  136. width: calc(100% - 40px);
  137. padding: 10px 20px;
  138. }
  139. .order-other .other-detail {
  140. display: flex;
  141. justify-content: flex-start;
  142. align-content: space-between;
  143. margin: 10px 0;
  144. }
  145. .bottom-total {
  146. position: fixed;
  147. bottom: 0;
  148. display: flex;
  149. align-content: space-between;
  150. flex-direction: row;
  151. justify-content: space-between;
  152. align-items: center;
  153. width: calc(100% );
  154. margin: 5px 0;
  155. padding-top: 5px;
  156. box-shadow: 0px -10px 24px 0px rgba(0, 0, 0, 0.08);
  157. }
  158. .bottom-total .name{
  159. margin-left: 10px;
  160. }
  161. .bottom-total button {
  162. margin: 0;
  163. background: #ff8700;
  164. border-radius: 50rpx;
  165. padding: 0 30px;
  166. margin-right: 10px;
  167. }