12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- #game_index {
- width: 1280px;
- height: 720px;
- #title {
- width: 100%;
- height: 100px;
- line-height: 100px;
- text-align: center;
- }
- #game_list {
- padding-left: 80px;
- >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;
- .hotbutton{
- width: 100%;
- height: 100%;
- overflow: hidden;
- position: relative;
- border-radius: 15px;
- .pic{
- img {
- width: 120px;
- height: 120px;
- }
- }
- .title {
- height: 50px;
- width: 100%;
- position: absolute;
- bottom:60px;
- font-size: 24px;
- left: 0;
- }
- }
- .current{
- box-shadow: 0 0 20px orange !important;
- }
- }
- }
- }
|