home-frame.wxss 598 B

123456789101112131415161718192021222324252627282930313233343536
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. .content .info {
  9. width: 100vw;
  10. height: 92vh;
  11. overflow: auto;
  12. }
  13. .content .foot {
  14. position: absolute;
  15. bottom: 0;
  16. width: 100vw;
  17. height: 8vh;
  18. overflow: hidden;
  19. background-color: var(--rgb161);
  20. color: var(--rgbfff);
  21. display: flex;
  22. flex-direction: row;
  23. justify-content: space-around;
  24. }
  25. .content .foot .list {
  26. padding: 1vw 0;
  27. text-align: center;
  28. }
  29. .content .foot .list .image {
  30. width: 7vw;
  31. height: 6vw;
  32. }
  33. .content .foot .list .name {
  34. font-size: 12px;
  35. }