myorders.less 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374
  1. /* mMine/pages/myorders/myorders.wxss */
  2. .top-view {
  3. position: sticky;
  4. z-index: 999;
  5. top: 0;
  6. }
  7. .title-view {
  8. background-color: #f0f0f0;
  9. .title-view-text {
  10. font-size: 12px;
  11. color: #666;
  12. text-align: center;
  13. border-right: 1px solid #f0f0f0;
  14. }
  15. }
  16. .title-view, .order-list-item-row {
  17. padding: 12px 0px;
  18. display: flex;
  19. justify-content: space-around;
  20. align-items: center;
  21. border-bottom: 1px solid #f0f0f0;
  22. }
  23. .order-list-item {
  24. display: flex;
  25. flex-direction: column;
  26. text {
  27. font-size: 14px;
  28. color: #333;
  29. text-align: center;
  30. border-right: 1px solid #f0f0f0;
  31. }
  32. }
  33. .order-list-item-btn {
  34. padding: 7.5px 0px;
  35. display: flex;
  36. height: 30px;
  37. width: 530px;
  38. button {
  39. font-size: 12px;
  40. color: white;
  41. width: 80px;
  42. }
  43. .goods-detail {
  44. background-color: rebeccapurple;
  45. }
  46. .listing-detail {
  47. background-color: yellowgreen;
  48. }
  49. .cancel {
  50. background-color: chocolate;
  51. }
  52. .sale-detail {
  53. background-color: sandybrown;
  54. }
  55. .sale-order {
  56. background-color: darkgoldenrod;
  57. }
  58. .buy-order {
  59. background-color: teal;
  60. }
  61. }