.ad_left {
    position: fixed;
    bottom: 10px;
    z-index: 9999;
    left: 10px;
    border: 1px solid #dddbda;
    box-shadow: 0 0 5px rgba(0,0,0,.1);
    width: 290px;
}
.ad_right {
    position: fixed;
    bottom: 10px;
    z-index: 9999;
    right: 10px;
    border: 1px solid #dddbda;
    box-shadow: 0 0 5px rgba(0,0,0,.1);
    width: 290px;
}
.app-hotgame-item {
    width: 290px;
    height: 319px;
    margin-right: 20px;
    float: left;
    background: #fff;
    color: #999;
    position: relative;
    overflow: hidden;
}
.app-hotgame-item-img {
    width: 290px;
    height: 208px;
    position: relative;
}
.app-hotgame-item-link {
    position: absolute;
    top: 0;
    left: 0;
    display: none;
    -webkit-transition: all .5s ease;
    transition: all .5s ease;
}
.fadeInUp {
    -webkit-animation-name: fadeInUp;
    animation-name: fadeInUp;
    -webkit-animation-duration: .5s;
    animation-duration: .5s;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}
.app-hotgame-item-other {
    width: 290px;
    height: 209px;
    background: rgba(0,153,255,.8);
    text-align: center;
}
.app-hotgame-item-other img {
    margin: 22px auto 0;
}
.app-hotgame-item-other .item-info {
    width: 290px;
    height: 68px;
    text-align: center;
    color: #fff;
    font-size: 14px;
    line-height: 30px;
    margin-top: 8px;
}
.app-hotgame-item-other .f18 {
    font-size: 18px;
}
.app-hotgame-item-info {
    width: 270px;
    height: 110px;
    padding: 0 10px;
    position: relative;
    z-index: 3;
}
.app-hotgame-item-info dt {
    height: 64px;
    border-bottom: 1px solid #e7e8ee;
}
.app-hotgame-item-info .item-gamename {
    line-height: 36px;
    -webkit-transition: padding .2s ease;
    -moz-transition: padding .2s ease;
    -o-transition: padding .2s ease;
    transition: padding .2s ease;
}
.app-hotgame-item-info .item-gamename a {
    font-size: 18px;
    color: #333;
}
.app-hotgame-item-info dd {
    height: 44px;
}
.app-hotgame-item-info .item-togame {
    width: 93px;
    height: 20px;
    display: block;
    line-height: 20px;
    text-align: center;
    color: #999;
    background: url(../images/game/item-togame.png) no-repeat 0 50%;
    margin: 11px auto;
    font-size: 14px;
}
.app-hotgame-item:hover .item-togame {
    background-image: url(../images/game/item-togame-h.png);
    color: #09f;
    -webkit-transition: all .3s ease;
    -moz-transition: all .3s ease;
    -o-transition: all .3s ease;
    transition: all .3s ease;
}
.app-hotgame-item:hover .app-hotgame-item-link {
    display: block;
}
@-webkit-keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        display: block
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}

@keyframes fadeInUp {
    0% {
        opacity: 0;
        -webkit-transform: translate3d(0,-100%,0);
        transform: translate3d(0,-100%,0);
        display: block
    }

    100% {
        opacity: 1;
        -webkit-transform: none;
        transform: none
    }
}