manageOrder.wxss 673 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. /* pages/manageOrder/manageOrder.wxss */
  2. /* 设置页面背景 */
  3. page{
  4. height: 100%;
  5. padding: 20rpx;
  6. background-color: #E2F0D9;
  7. }
  8. /* 订单样式 */
  9. .orderList{
  10. width: 93%;
  11. background-color: #FFF2CC;
  12. padding: 20rpx 0 20rpx 20rpx;
  13. border-radius: 20rpx;
  14. margin-bottom: 20rpx;
  15. }
  16. /* 订单号、订单日期详情左边间隔 */
  17. .orderNum,
  18. .orderDate{
  19. margin-left: 20rpx;
  20. }
  21. /* 订单日期和订单状态 */
  22. .orderDateStatus{
  23. display: flex;
  24. position: relative;
  25. }
  26. /* 订单支付状态 */
  27. .orderStatus{
  28. position: absolute;
  29. left: 55%;
  30. }
  31. .orderStatusDetail{
  32. margin-left: 20rpx;
  33. font-weight: bold;
  34. color: red;
  35. }