moreOrder.wxss 494 B

12345678910111213141516171819202122232425262728293031
  1. .moreOrderContainer{
  2. display: flex;
  3. flex-direction: column;
  4. align-items: center;
  5. background-color: #f2f2f2;
  6. height: 100vh;
  7. }
  8. .tip{
  9. display: flex;
  10. align-self: flex-start;
  11. margin: 3%;
  12. width: 100%;
  13. }
  14. .tip text{
  15. color: #fbac15;
  16. margin-left: 3%;
  17. }
  18. .order{
  19. display: flex;
  20. flex-direction: column;
  21. align-items: center;
  22. width: 93%;
  23. }
  24. .orderItem{
  25. width: 100%;
  26. box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
  27. margin: 3%;
  28. border-radius: 1%;
  29. }