1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- #game_index {
- width: 1280px;
- height: 720px;
- }
- #game_index #title {
- width: 100%;
- height: 100px;
- line-height: 100px;
- text-align: center;
- }
- #game_index #game_list {
- padding-left: 80px;
- }
- #game_index #game_list > li {
- line-height: 160px;
- text-align: center;
- float: left;
- width: 160px;
- height: 210px;
- border-radius: 15px;
- margin-right: 80px;
- margin-top: 50px;
- border: 1px solid #CCC;
- }
- #game_index #game_list > li .hotbutton {
- width: 100%;
- height: 100%;
- overflow: hidden;
- position: relative;
- border-radius: 15px;
- }
- #game_index #game_list > li .hotbutton .pic img {
- width: 120px;
- height: 120px;
- }
- #game_index #game_list > li .hotbutton .title {
- height: 50px;
- width: 100%;
- position: absolute;
- bottom: 60px;
- font-size: 24px;
- left: 0;
- }
- #game_index #game_list > li .current {
- box-shadow: 0 0 20px orange !important;
- }
|