orders.wxss 5.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340
  1. .bg {
  2. position: relative;
  3. width: 100%;
  4. min-height: 100%;
  5. background-color: #f3f3f3;
  6. }
  7. form {
  8. position: relative;
  9. }
  10. button::afrer {
  11. border: 0;
  12. }
  13. .button {
  14. border: 0;
  15. margin: 0;
  16. padding: 0;
  17. background: 0;
  18. position: static;
  19. }
  20. .orders-main {
  21. padding-top: 26rpx;
  22. padding-bottom: 100rpx;
  23. }
  24. .order {
  25. padding: 0 20rpx;
  26. background-color: #fff;
  27. margin-bottom: 20rpx;
  28. }
  29. .orders-tabs {
  30. position: fixed;
  31. top: -1rpx;
  32. left: 0rpx;
  33. width: 100%;
  34. height: 91rpx;
  35. background-color: #fff;
  36. border-bottom: 1rpx solid #dddddd;
  37. z-index: 99999;
  38. }
  39. .orders-tab {
  40. width: 25%;
  41. height: 90rpx;
  42. float: left;
  43. line-height: 90rpx;
  44. text-align: center;
  45. font-size: 28rpx;
  46. color: #4c4c4c;
  47. }
  48. .orders-tab__border {
  49. position: absolute;
  50. width: 25%;
  51. height: 4rpx;
  52. bottom: 0;
  53. background-color: #86a7da;
  54. transition: left 0.4s;
  55. -webkit-transition: left 0.4s;
  56. }
  57. .order-title {
  58. height: 90rpx;
  59. line-height: 90rpx;
  60. font-size: 28rpx;
  61. }
  62. .order-title__left {
  63. margin-top: 20rpx;
  64. display: block;
  65. width: 44rpx;
  66. height: 44rpx;
  67. float: left;
  68. border-radius: 100%;
  69. }
  70. .order-title__name {
  71. float: left;
  72. width: 375rpx;
  73. color: #999999;
  74. font-size: 28rpx;
  75. }
  76. .order-title__right {
  77. color: #999999;
  78. float: right;
  79. }
  80. .order-main {
  81. width: 710rpx;
  82. height: 200rpx;
  83. background-color: #fcfcfc;
  84. }
  85. .order-main__left {
  86. width: 200rpx;
  87. height: 200rpx;
  88. display: block;
  89. float: left;
  90. }
  91. .order-main__right {
  92. position: relative;
  93. width: 490rpx;
  94. height: 200rpx;
  95. float: right;
  96. }
  97. .order-info__title {
  98. color: #4c4c4c;
  99. font-size: 24rpx;
  100. line-height: 36rpx;
  101. padding-top: 5rpx;
  102. height: 72rpx;
  103. -webkit-line-clamp: 2;
  104. }
  105. .order-info__type {
  106. padding-top: 12rpx;
  107. font-size: 24rpx;
  108. color: #bbbbbb;
  109. }
  110. .order-info__price {
  111. position: absolute;
  112. bottom: 16rpx;
  113. left: 0;
  114. font-size: 24rpx;
  115. color: #bbb;
  116. }
  117. .order-info__point {
  118. color: #bbbbbb;
  119. }
  120. .order-info__count {
  121. position: absolute;
  122. bottom: 16rpx;
  123. right: 0;
  124. font-size: 28rpx;
  125. color: #eab86a;
  126. }
  127. .order-allprice {
  128. padding-top: 20rpx;
  129. height: 70rpx;
  130. line-height: 70rpx;
  131. text-align: right;
  132. color: #4c4c4c;
  133. font-size: 24rpx;
  134. border-bottom: 1rpx solid #eeeeee;
  135. }
  136. .order-allprice text {
  137. color: #eab86a;
  138. font-size: 28rpx;
  139. }
  140. .order-btn {
  141. height: 108rpx;
  142. }
  143. .order-btn__black {
  144. float: right;
  145. width: 158rpx;
  146. height: 58rpx;
  147. border: 1rpx solid #cccccc;
  148. font-size: 28rpx;
  149. color: #4c4c4c;
  150. text-align: center;
  151. line-height: 58rpx;
  152. margin-top: 20rpx;
  153. margin-left: 20rpx;
  154. border-radius: 5rpx;
  155. }
  156. .order-btn__red {
  157. float: right;
  158. width: 158rpx;
  159. height: 58rpx;
  160. border: 1rpx solid #eab86a;
  161. font-size: 28rpx;
  162. color: #eab86a;
  163. text-align: center;
  164. line-height: 58rpx;
  165. margin-top: 20rpx;
  166. margin-left: 20rpx;
  167. border-radius: 5rpx;
  168. }
  169. .orders-no {
  170. padding-top: 250rpx;
  171. }
  172. .orders-no__icon {
  173. display: block;
  174. width: 204rpx;
  175. height: 258rpx;
  176. margin: 0 auto;
  177. }
  178. .orders-no__text {
  179. text-align: center;
  180. font-size: 28rpx;
  181. margin-top: 25rpx;
  182. color: #cccccc;
  183. }
  184. .address {
  185. padding-top: 30rpx;
  186. padding-bottom: 30rpx;
  187. border-bottom: 1rpx solid #eeeeee;
  188. }
  189. .address-top {
  190. width: 100%;
  191. padding-left: 56rpx;
  192. box-sizing: border-box;
  193. }
  194. .address-head {
  195. width: 42rpx;
  196. height: 42rpx;
  197. float: left;
  198. border-radius: 100%;
  199. margin-top: 20rpx;
  200. }
  201. .address-userInfo {
  202. float: left;
  203. width: 300rpx;
  204. font-size: 28rpx;
  205. color: #4c4c4c;
  206. }
  207. .address-name {
  208. width: 300rpx;
  209. line-height: 44rpx;
  210. font-size: 28rpx;
  211. color: #4c4c4c;
  212. }
  213. .address-cope {
  214. float: right;
  215. width: 160rpx;
  216. height: 48rpx;
  217. line-height: 48rpx;
  218. text-align: center;
  219. margin-top: 10rpx;
  220. font-size: 24rpx;
  221. color: #b9c9e2;
  222. border: 1rpx solid #b9c9e2;
  223. }
  224. .address-icon {
  225. float: left;
  226. display: block;
  227. width: 32rpx;
  228. height: 38rpx;
  229. margin-right: 24rpx;
  230. }
  231. .address-right {
  232. float: right;
  233. width: 652rpx;
  234. }
  235. .address-text {
  236. width: 100%;
  237. line-height: 40rpx;
  238. font-size: 28rpx;
  239. color: #4c4c4c;
  240. }
  241. .address-textname {
  242. float: left;
  243. width: 335rpx;
  244. }
  245. .address-main {
  246. width: 100%;
  247. margin-top: 20rpx;
  248. }
  249. .address-texttel {
  250. width: 250rpx;
  251. }
  252. .address-more {
  253. -webkit-line-clamp: 2;
  254. font-size: 28rpx;
  255. color: #4c4c4c;
  256. }
  257. .orders-input {
  258. display: block;
  259. margin: 110rpx 20rpx 0;
  260. background-color: #fff;
  261. width: 710rpx;
  262. height: 80rpx;
  263. line-height: 80rpx;
  264. text-align: center;
  265. font-size: 28rpx;
  266. color: #4c4c4c;
  267. }
  268. .orders-bottom {
  269. height: 100rpx;
  270. background: #ffffff;
  271. display: flex;
  272. width: 100%;
  273. justify-content: space-around;
  274. position: fixed;
  275. bottom: 0;
  276. left: 0;
  277. z-index: 999;
  278. border-top: 1rpx solid #cccccc;
  279. }
  280. .orders-prev {
  281. height: 62rpx;
  282. width: 198rpx;
  283. text-align: center;
  284. line-height: 62rpx;
  285. border: #cccccc solid 1rpx;
  286. border-radius: 10rpx;
  287. color: #5a8dd2;
  288. margin-top: 18rpx;
  289. font-size: 28rpx;
  290. /* flex: 0.5; */
  291. }
  292. .orders-prev1 {
  293. height: 62rpx;
  294. width: 198rpx;
  295. text-align: center;
  296. line-height: 62rpx;
  297. border: #cccccc solid 1rpx;
  298. border-radius: 10rpx;
  299. color: #999;
  300. margin-top: 18rpx;
  301. font-size: 28rpx;
  302. /* flex: 0.5; */
  303. }
  304. .orders-center {
  305. background: #eeeeee;
  306. height: 62rpx;
  307. width: 198rpx;
  308. text-align: center;
  309. line-height: 62rpx;
  310. border-radius: 10rpx;
  311. /* color: #5a8dd2; */
  312. font-size: 28rpx;
  313. margin-top: 19rpx;
  314. /* flex: 0.5; */
  315. }
  316. .orders-next {
  317. height: 62rpx;
  318. width: 198rpx;
  319. text-align: center;
  320. line-height: 62rpx;
  321. border: #cccccc solid 1rpx;
  322. border-radius: 10rpx;
  323. color: #5a8dd2;
  324. margin-top: 18rpx;
  325. font-size: 28rpx;
  326. /* flex: 0.5; */
  327. }
  328. .orders-next1 {
  329. height: 62rpx;
  330. width: 198rpx;
  331. text-align: center;
  332. line-height: 62rpx;
  333. border: #cccccc solid 1rpx;
  334. border-radius: 10rpx;
  335. color: #999;
  336. margin-top: 18rpx;
  337. font-size: 28rpx;
  338. /* flex: 0.5; */
  339. }