order.less 551 B

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