index.less 892 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344
  1. /* pages/salesOrderMan/index.wxss */
  2. page{
  3. --cell-vertical-padding:12rpx;
  4. --cell-horizontal-padding:0;
  5. --cell-background-color:transparent;
  6. }
  7. .bottomBtn{
  8. padding-top: 20rpx;
  9. text-align: right;
  10. }
  11. .bottomBtn button {
  12. margin-left: 0 !important;
  13. }
  14. .orderLoadBox{
  15. > .title{
  16. height: 100rpx;
  17. line-height: 100rpx;
  18. font-weight: bold;
  19. font-size: 40rpx;
  20. color: #14284A;
  21. text-align: center;
  22. background: linear-gradient( 180deg, #D4E1F6 0%, #FFFFFF 100%);
  23. }
  24. .dialogUser{
  25. height: 50vh;
  26. padding-top: 30rpx;
  27. .saleItem{
  28. width: 700rpx;
  29. margin:0 auto 30rpx;
  30. padding-bottom: 20rpx;
  31. border-bottom: 1px solid #eee;
  32. .title{
  33. font-size: 36rpx;
  34. display: flex;
  35. justify-content: space-between;
  36. }
  37. .time{
  38. margin-top: 10rpx;
  39. color: #666;
  40. font-size: 24rpx;
  41. }
  42. }
  43. }
  44. }