search.wxss 4.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323
  1. page {
  2. /* height: 100%;
  3. width: 100%;
  4. background: #f4f4f4; */
  5. }
  6. .orders-switch {
  7. width: 100%;
  8. background: #fff;
  9. height: 84rpx;
  10. /* border-bottom: 1px solid rgba(0,0,0,.15); */
  11. }
  12. .orders-switch .item {
  13. display: inline-block;
  14. height: 82rpx;
  15. width: 18%;
  16. padding: 0 15rpx;
  17. text-align: center;
  18. }
  19. .orders-switch .item .txt {
  20. display: inline-block;
  21. height: 82rpx;
  22. padding: 0 20rpx;
  23. line-height: 82rpx;
  24. color: #9a9ba1;
  25. font-size: 30rpx;
  26. width: 170rpx;
  27. }
  28. .orders-switch .item.active .txt {
  29. color: #ab956d;
  30. border-bottom: 4rpx solid #ab956d;
  31. }
  32. .no-order {
  33. width: 100%;
  34. height: auto;
  35. margin: 0 auto;
  36. }
  37. .no-order .c {
  38. width: 100%;
  39. height: auto;
  40. margin-top: 400rpx;
  41. }
  42. .no-order .c text {
  43. margin: 0 auto;
  44. display: block;
  45. width: 258rpx;
  46. height: 29rpx;
  47. line-height: 29rpx;
  48. text-align: center;
  49. font-size: 29rpx;
  50. color: #999;
  51. }
  52. .orders {
  53. height: auto;
  54. width: 100%;
  55. overflow: hidden;
  56. }
  57. .order {
  58. margin-top: 20rpx;
  59. background: #fff;
  60. padding: 16rpx 16rpx 24rpx;
  61. margin: 24rpx;
  62. border-radius: 10rpx;
  63. }
  64. .order .h {
  65. height: 83.3rpx;
  66. line-height: 83.3rpx;
  67. margin-left: 31.25rpx;
  68. padding-right: 31.25rpx;
  69. border-bottom: 1px solid #f4f4f4;
  70. font-size: 30rpx;
  71. color: #333;
  72. }
  73. .order .h .l {
  74. float: left;
  75. }
  76. .order .h .r {
  77. background-color: #09afff;
  78. /* width: 120rpx; */
  79. text-align: center;
  80. color: #fff;
  81. border-radius: 34rpx;
  82. height: 34rpx;
  83. float: right;
  84. font-size: 22rpx;
  85. line-height: 32rpx;
  86. margin-top: 20rpx;
  87. padding: 0 16rpx;
  88. }
  89. .order .goods {
  90. display: flex;
  91. /* align-items: center; */
  92. height: 170rpx;
  93. }
  94. .order .goods .img {
  95. height: 170rpx;
  96. width: 170rpx;
  97. border-radius:6rpx;
  98. background: #f4f4f4;
  99. }
  100. .order .goods .img image {
  101. height: 170rpx;
  102. width: 170rpx;
  103. }
  104. .order .goods .info {
  105. height: 145.83rpx;
  106. flex: 1;
  107. padding-left: 20rpx;
  108. }
  109. .order .goods .name {
  110. margin-top: 18rpx;
  111. display: block;
  112. /*height: 44rpx;
  113. line-height: 44rpx;*/
  114. color: #333;
  115. font-size: 28rpx;
  116. }
  117. .order .goods .number {
  118. display: block;
  119. height: 37rpx;
  120. line-height: 37rpx;
  121. color: #85868A;
  122. font-size: 24rpx;
  123. margin-top: 10rpx;
  124. }
  125. .order .goods .status {
  126. width: 105rpx;
  127. color: #b4282d;
  128. font-size: 25rpx;
  129. }
  130. .order .b {
  131. font-size: 24rpx;
  132. display: flex;
  133. }
  134. .order .b .l {
  135. flex: 2;
  136. }
  137. .order .b .l view
  138. {
  139. font-size: 24rpx;
  140. height: 42rpx;
  141. line-height: 42rpx;
  142. color: #85868A;
  143. }
  144. .order .b .r view
  145. {
  146. height: 42rpx;
  147. line-height: 42rpx;
  148. }
  149. .order .b .btn {
  150. margin-top: 19rpx;
  151. height: 64.5rpx;
  152. line-height: 64.5rpx;
  153. text-align: center;
  154. padding: 0 20rpx;
  155. border-radius: 5rpx;
  156. font-size: 28rpx;
  157. color: #fff;
  158. background: #b4282d;
  159. }
  160. .order-item-operate{
  161. height: 60rpx;
  162. margin-top:20rpx;
  163. display: flex;
  164. align-items: center;
  165. justify-content: space-between;
  166. }
  167. .order-operate-wrapper{
  168. display: flex;
  169. align-items: center;
  170. justify-content: flex-end;
  171. }
  172. .order-operate-wrapper>view{
  173. height: 44rpx;
  174. width: 148rpx;
  175. line-height: 44rpx;
  176. text-align: center;
  177. border-radius: 44rpx;
  178. border: 1rpx solid #09afff;
  179. font-size: 24rpx;
  180. margin-left: 20rpx;
  181. color: #09afff;
  182. background: #E0F5FC;
  183. }
  184. .order-type{
  185. display: flex;
  186. width: 100%;
  187. justify-content: center;
  188. margin: 20rpx 0 18rpx;
  189. }
  190. .order-type .switch{
  191. display: flex;
  192. border: 1rpx solid #09aFFF;
  193. border-radius: 35rpx;
  194. }
  195. .order-type .switch .action{
  196. padding: 0rpx 24rpx;
  197. background-color: #09AFFF;
  198. border-radius: 50rpx;
  199. font-size: 28rpx;
  200. height: 50rpx;
  201. line-height: 48rpx;
  202. color: #fff;
  203. }
  204. .order-type .switch .common{
  205. font-size: 28rpx;
  206. padding: 0rpx 24rpx;
  207. height: 50rpx;
  208. line-height: 50rpx;
  209. color: #09AFFF;
  210. }
  211. .left-switch{
  212. margin-right:-12rpx;
  213. }
  214. .search-box{
  215. width:694rpx;
  216. height:54rpx;
  217. margin:0 auto;
  218. padding:0 30rpx;
  219. border-radius: 54rpx;
  220. font-size:24rpx;
  221. color: #85868A;
  222. display: flex;
  223. align-items: center;
  224. border: 1rpx solid #85868A;
  225. background: #fff;
  226. margin-bottom:18rpx;
  227. }
  228. .search-box image{
  229. margin-right:18rpx;
  230. width:28rpx;
  231. height:28rpx;
  232. }
  233. .myqr{
  234. position: fixed;
  235. z-index: 999;
  236. width: 100%;
  237. text-align: center;
  238. height: auto;
  239. padding-top: 50rpx;
  240. top:0;
  241. left:0;
  242. right:0;
  243. bottom:0;
  244. }
  245. .myqr .cancel{
  246. width: 60rpx;
  247. height: 60rpx;
  248. margin-top: 30rpx;
  249. margin-left: 480rpx;
  250. }
  251. .myqr .img{
  252. width: 480rpx;
  253. }
  254. .myqr .btn{
  255. width: 120rpx;
  256. height: 120rpx;
  257. line-height: 120rpx;
  258. margin-top: 20rpx;
  259. padding: 30rpx;
  260. background: #ffffff;
  261. border-radius:60rpx;
  262. }
  263. .order-status{
  264. background-color: #09afff;
  265. text-align: center;
  266. color: #fff;
  267. border-radius: 34rpx;
  268. height: 34rpx;
  269. font-size: 22rpx;
  270. line-height: 32rpx;
  271. margin-top: 20rpx;
  272. padding: 0 16rpx;
  273. }
  274. .order-id-wrapper{
  275. display: flex;
  276. height: 42rpx;
  277. font-size: 24rpx;
  278. color: #85868A;
  279. align-items: center;
  280. margin-top: 20rpx;
  281. }
  282. .order-id-wrapper image{
  283. width:20rpx;
  284. height:20rpx;
  285. margin-left:12rpx;
  286. }
  287. .main-amount text{
  288. font-size: 24rpx;
  289. font-weight: bold;
  290. }