index.less 777 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. #game_index {
  2. width: 1280px;
  3. height: 720px;
  4. #title {
  5. width: 100%;
  6. height: 100px;
  7. line-height: 100px;
  8. text-align: center;
  9. }
  10. #game_list {
  11. padding-left: 80px;
  12. >li{
  13. line-height: 160px;
  14. text-align: center;
  15. float: left;
  16. width: 160px;
  17. height: 210px;
  18. border-radius: 15px;
  19. margin-right: 80px;
  20. margin-top: 50px;
  21. border: 1px solid #CCC;
  22. .hotbutton{
  23. width: 100%;
  24. height: 100%;
  25. overflow: hidden;
  26. position: relative;
  27. border-radius: 15px;
  28. .pic{
  29. img {
  30. width: 120px;
  31. height: 120px;
  32. }
  33. }
  34. .title {
  35. height: 50px;
  36. width: 100%;
  37. position: absolute;
  38. bottom:60px;
  39. font-size: 24px;
  40. left: 0;
  41. }
  42. }
  43. .current{
  44. box-shadow: 0 0 20px orange !important;
  45. }
  46. }
  47. }
  48. }