index.wxss 474 B

12345678910111213141516171819202122232425262728
  1. .body {
  2. display: flex;
  3. flex-direction: column;
  4. height: 100vh;
  5. background-color: #f9f9f9;
  6. }
  7. .body .info {
  8. flex-grow: 1;
  9. position: relative;
  10. }
  11. .body .info .scroll-view {
  12. position: absolute;
  13. top: 0;
  14. left: 0;
  15. right: 0;
  16. bottom: 0;
  17. }
  18. .body .info .scroll-view .list-scroll-view {
  19. display: flex;
  20. flex-wrap: wrap;
  21. align-content: flex-start;
  22. justify-content: space-between;
  23. margin: 0 2vw;
  24. padding: 2vw 0;
  25. }
  26. .body .foot {
  27. background-color: green;
  28. }