order.wxss 526 B

12345678910111213141516171819202122232425262728293031323334
  1. /* pages/order/order.wxss */
  2. .order .nav {
  3. width: 100vw;
  4. position: fixed;
  5. background-color: #fff;
  6. }
  7. .order .item .value {
  8. color: green;
  9. }
  10. .order .item .title {
  11. font-size: 32rpx;
  12. }
  13. .order .item .label {
  14. width: 70vw;
  15. }
  16. .order .item .g {
  17. padding: 5rpx 0;
  18. font-size: 28rpx;
  19. color: black;
  20. }
  21. .order .item .price .txt {
  22. color: #f03;
  23. }
  24. .order .item .btns {
  25. display: flex;
  26. justify-content: flex-end;
  27. align-items: center;
  28. }
  29. .order .item .cell {
  30. padding-top: 0;
  31. }
  32. .order .item .cells {
  33. padding-bottom: 0;
  34. }