home-frame.wxss 562 B

1234567891011121314151617181920212223242526272829303132333435
  1. @import '/app.wxss';
  2. .content .info {
  3. width: 100vw;
  4. height: 92vh;
  5. overflow: auto;
  6. background-color: #f1f1f1;
  7. }
  8. .content .foot {
  9. position: absolute;
  10. bottom: 0;
  11. width: 100vw;
  12. height: 8vh;
  13. overflow: hidden;
  14. background-color: #ffffff;
  15. color: #cdcdcd;
  16. display: flex;
  17. flex-direction: row;
  18. justify-content: space-around;
  19. }
  20. .content .foot .list {
  21. padding: 1vw 0;
  22. text-align: center;
  23. }
  24. .content .foot .list .image {
  25. width: 6vw;
  26. height: 6vw;
  27. }
  28. .content .foot .list .name {
  29. font-size: 12px;
  30. }