myOrder.wxss 772 B

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* pages/myOrder/myOrder.wxss */
  2. /* 设置页面背景 */
  3. .orderWrapper{
  4. height: 100%;
  5. background-color: #E2F0D9;
  6. }
  7. .myOrder{
  8. position: relative;
  9. display: flex;
  10. height: 160rpx;
  11. background-color: #FFF2CC;
  12. padding-left: 20rpx;
  13. font-size: 28rpx;
  14. margin: 20rpx;
  15. border-radius: 20rpx;
  16. }
  17. .orderContent,
  18. .orderStatus{
  19. height: 140rpx;
  20. padding: 10rpx 0;
  21. display: flex;
  22. flex-direction: column;
  23. justify-content: space-between;
  24. }
  25. /* 右侧部分的定位 */
  26. .orderStatus{
  27. position: absolute;
  28. right: 100rpx;
  29. }
  30. /* 设置活动内容左边距并加粗 */
  31. .orderDetail,
  32. .orderDetailStatus{
  33. margin-left: 20rpx;
  34. font-weight: bold;
  35. }
  36. /* 设置订单状态的字体颜色 */
  37. .orderDetailStatus{
  38. color: red;
  39. }