.gameimg-list img {
    width: 100%;
}

.shadow img {
    width: 100%;
}

#infoBar {
    position: fixed;
    top: 0vw;
    left: 0;
    width: 100vw;
    height: 17vw;
    background-color: rgba(0, 0, 0, 0.5);
}

#infoBar>* {
    position: absolute;
}

.hallGameIcon {
    width: 14vw;
    height: 14vw;
    top: 1.5vw;
    left: 3vw;
}

.gameText {
    left: 22vw;
    text-align: left;
    font-size: 4.5vw;
    font-weight: 900;
    top: 0;
    padding-top: 3vw;
}

.gameName {
    text-align: left;
    line-height: 5.5vw;
    font-size: 5vw;
    color: #fff;
}

.activeText {
    text-align: left;
    margin-top: 1.5vw;
    color: #fff;
    font-size: 3vw;
}

.download-btn {
    top: 4vw;
    width: 40vw;
    height: 10vw;
    right: 1vw;
    background: url("../img/pub/safedownload.png") center center no-repeat;
    background-size: auto 100%;
}

/* 缩放效果 */
@keyframes living {
    0% {
        transform: scale(1);
    }
    50% {
        transform: scale(1.3);
    }
    100% {
        transform: scale(1);
    }
}

.live {
    font-weight: bold;
    color: transparent;
    background-color: #fff;
    -webkit-background-clip: text;
    -webkit-animation: living 3s linear infinite;
}