index.css 869 B

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