index.wxss 622 B

12345678910111213141516171819202122232425262728293031323334353637
  1. .content {
  2. display: flex;
  3. flex-direction: column;
  4. box-sizing: border-box;
  5. width: 100vw;
  6. height: 100vh;
  7. }
  8. .main {
  9. background-color: var(--rgb000);
  10. display: flex;
  11. flex-direction: column;
  12. width: 100vw;
  13. height: 92vh;
  14. }
  15. .main .one {
  16. padding: 8px;
  17. display: flex;
  18. flex-wrap: wrap;
  19. justify-content: space-between;
  20. background-color: var(--rgb000);
  21. }
  22. .main .one .list {
  23. width: 18%;
  24. margin: 0 0 10px 0;
  25. }
  26. .main .one .list .image {
  27. width: 100%;
  28. height: 62px;
  29. overflow: hidden;
  30. border-radius: 5px;
  31. }
  32. .main .one .list .name {
  33. font-size: 12px;
  34. color: var(--rgbfff);
  35. text-align: center;
  36. }