index.wxss 536 B

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