@charset "utf-8";

/* CSS Footer */

/*底部版权--------开始--------------------------------------*/
.gg_foot {
    width: 100%;
    position: fixed;
    bottom: 0;
}
footer {
    width: 100%;
}
footer .shoucang {
    width: 100%;
    height: 50px;
    background: #333554;
    text-align: center;
    line-height: 50px;
    -moz-user-select: none;
    /* Firefox私有属性 */
    -webkit-user-select: none;
    /* WebKit内核私有属性 */
    -ms-user-select: none;
    /* IE私有属性(IE10及以后) */
    -khtml-user-select: none;
    /* KHTML内核私有属性 */
    -o-user-select: none;
    /* Opera私有属性 */
    user-select: none;
    /* CSS3属性 */
}

.shoucang p {
    color: var(--bai);
}

.shoucang span {
    background: linear-gradient(to top, #B9C8DB, #FFF);
    color: #333554;
    padding: 2px 5px;
    border-radius: 4px;
}

footer .banquan {
    width: 100%;
    height: 80px;
    background: #1c1c2d;
    text-align: center;
    font-size: 12px;
    color: #716e88;
}

.banquan p {
    font-size: 16px;
    color: #9595af;
    line-height: 50px;
}

/*底部版权--------结束--------------------------------------*/
/*适配*/
@media only screen and (max-width: 720px) {
    /*底部版权--------开始--------------------------------------*/
    .gg_foot {
        margin-bottom: 0;
    }
    footer {
        margin-bottom: 25.694vw;
    }

    footer .shoucang {
        height: 6.944vw;
        line-height: 6.944vw;
    }

    .shoucang p {
        font-size: 2.5vw;
    }

    .shoucang span {
        padding: 2px 0.694vw;
        border-radius: 0.556vw;
    }

    footer .banquan {
        height: 11.11vw;
        font-size: 1.667vw;
    }

    .banquan p {
        font-size: 2.222vw;
        line-height: 6.944vw;
    }

    /*底部版权--------结束--------------------------------------*/
}