hotGame.scss 687 B

12345678910111213141516171819202122232425262728293031323334353637383940
  1. .list-game {
  2. display: flex;
  3. flex-wrap: wrap;
  4. margin: 0 px2rem(-74) 0 px2rem(24);
  5. }
  6. .game-item {
  7. width: px2rem(120);
  8. margin: 0 px2rem(74) px2rem(16) 0;
  9. a{
  10. display: block;
  11. text-decoration: none;
  12. &:hover{
  13. text-decoration: none;
  14. }
  15. }
  16. }
  17. .game-cover{
  18. height: px2rem(120);
  19. border-radius: px2rem(6);
  20. overflow: hidden;
  21. img{
  22. width: 100%;
  23. height: 100%;
  24. object-fit: cover;
  25. }
  26. .user-avatar{
  27. width: 100%;
  28. height: 100%;
  29. }
  30. }
  31. .game-title{
  32. color: #666;
  33. font-size: px2rem(24);
  34. text-align: center;
  35. line-height: px2rem(60);
  36. @include ellipsis();
  37. }