body>.fish-game {
    min-height: 580px;
    text-align: center;
    /*background: url(../images/catchFish/bg.jpg) no-repeat center top;*/
    background: url(../images/catchFish/fish-cover.jpg) no-repeat center top;
}
.fish-list{
    width:100%;
    height:683px;
    overflow:hidden;
    position:relative;
    margin:0 auto;
    background: url(../images/catchFish/fish-cover.jpg) no-repeat center top;
    background-size: 100% 100%;
}
.fish-list img{
    border:none;
    width:376px;
    height:432px;
}
.fish-game #logo {
    height: 235px;
    background: url(../images/catchFish/logo.png) no-repeat center;
}
#game-list {
    display: inline-block;
    margin: 65px auto 0;
    padding: 0 0 20px;
    max-width: 900px;
}
#game-list li {
    position: relative;
    display: inline-block;
    margin: 10px 15px;
    top: 0;
    cursor: pointer;
    -webkit-transition: top 0.4s;
    -o-transition: top 0.4s;
    -moz-transition: top 0.4s;
    transition: top 0.4s;
}
#game-list li img{
    width:150px;
    height:150px;
}
#game-list .game-text {
    color: #fff;
    font-size: 20px;
    font-weight: bold;
    text-shadow: 1px 1px 0 #000;
}
#game-list li:hover {
    top: -10px;
}
#game-list li:hover .game-text {
    color: #ff0;
}