myorders.less 878 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. /* mMine/pages/myorders/myorders.wxss */
  2. .title-view {
  3. background-color: #f0f0f0;
  4. }
  5. .title-view, .order-list-item-row {
  6. padding: 12px 0px;
  7. display: flex;
  8. justify-content: space-around;
  9. align-items: center;
  10. border-bottom: 1px solid #f0f0f0;
  11. }
  12. .order-list-item {
  13. display: grid;
  14. }
  15. .order-list-item-btn {
  16. padding: 7.5px 0px;
  17. display: flex;
  18. justify-content: end;
  19. width: 190px;
  20. position: relative;
  21. right: -235px;
  22. height: 30px;
  23. button {
  24. font-size: 12px;
  25. color: white;
  26. width: 80px;
  27. }
  28. .goods-detail {
  29. background-color: rebeccapurple;
  30. }
  31. .listing-detail {
  32. background-color: yellowgreen;
  33. }
  34. }
  35. .title-view text {
  36. font-size: 12px;
  37. color: #666;
  38. text-align: center;
  39. border-right: 1px solid #f0f0f0;
  40. }
  41. .order-list-item text {
  42. font-size: 14px;
  43. color: #333;
  44. text-align: center;
  45. border-right: 1px solid #f0f0f0;
  46. }