.xinfu-logo {
    width: 475px;
    height: 235px;
    background: url(../images/cover/zzwj.png) no-repeat;
    position: absolute;
    right: -300px;
    top: 0;
}

.bg {
    background: url(../images/cover/cover-bg.jpg) no-repeat center top;
    min-height: 3000px;
}

.anniu {
    width: 890px;
    height: 75px;
    margin: 0 auto;
}

.anniu a {
    float: left;
    display: block;
    width: 288px;
    height: 72px;
    margin: 0 4px;
}

.anniu_gonggao {
    background: url(../images/cover/gonggao.png) no-repeat;
}

.anniu_gonggao:hover {
    background: url(../images/cover/gonggao.png) no-repeat center -74px;
}

.anniu_kefu {
    background: url(../images/cover/kefus.png) no-repeat;
}

.anniu_kefu:hover {
    background: url(../images/cover/kefus.png) no-repeat center -74px;
}

.anniu_guanwang {
    background: url(../images/cover/wangzhan.png) no-repeat;
}

.anniu_guanwang:hover {
    background: url(../images/cover/wangzhan.png) no-repeat center -74px;
}

.game-download {
    width: 212px;
    height: 278px;
    background: url(../images/cover/download.png) no-repeat center top;
    position: fixed;
    right: 20px;
    top: 40%;
    z-index: 1;
}

.game-download:hover {
    background: url(../images/cover/download.png) no-repeat center -280px;
}

.game-download .GM-download {
    display: block;
    width: 212px;
    height: 214px;
}

.game-download .go-top {
    display: block;
    width: 212px;
    height: 60px;
}

.MD5 {
    display: block;
    width: 225px;
    height: 60px;
    background: url(../images/cover/MD5.png) no-repeat center top !important;
    position: absolute;
    top: -65px;
    left: -5px;
}

.MD5:hover {
    background: url(../images/cover/MD5.png) no-repeat center -60px !important;
}

@keyframes spin {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}


/* 应用样式到div */

.more {
    transition: 0.3s;
    /* 其他属性的平滑过渡 */
}


/* 鼠标悬停时触发动画 */

.more:hover {
    animation: spin 0.5s linear;
    /* 0.5秒完成一圈旋转 */
    cursor: pointer;
}