myorders.less 1.0 KB

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