index.wxss 816 B

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647
  1. .order {
  2. padding: 5px 5px 80px 5px;
  3. background: #f2f2f2;
  4. position: relative;
  5. width: 100%;
  6. min-height: 100vh;
  7. box-sizing: border-box;
  8. }
  9. .order .order-list {
  10. width: 100%;
  11. box-sizing: border-box;
  12. }
  13. .order .order-item {
  14. background: #fff;
  15. box-sizing: border-box;
  16. border-radius: 15px;
  17. overflow: hidden;
  18. margin: 0 0 10px 0;
  19. }
  20. .order .order-item .order-item-header {
  21. box-sizing: border-box;
  22. padding: 0 16px;
  23. height: 50px;
  24. line-height: 55px;
  25. font-weight: bold;
  26. }
  27. .order .order-item .order-item-header .dian {
  28. padding: 0 5px;
  29. font-weight: bold;
  30. }
  31. .order .order-item .order-item-body {
  32. padding: 0 16px;
  33. height: 55px;
  34. box-sizing: border-box;
  35. line-height: 55px;
  36. }
  37. .order .order-item .order-item-footer {
  38. padding: 10px 16px;
  39. box-sizing: border-box;
  40. text-align: right;
  41. }