.footerView {
    width: 100%;
    height: 112px;
    background: #1e1f21;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footerContentView {
    font-size: 16px;
    font-family: PingFang SC, PingFang SC-Regular;
    font-weight: 400;
    text-align: center;
    color: #999999;
    line-height: 32px;
}

.footerTopInfoView {
    display: flex;
}

.footerTopInfoView>p {
    margin-left: 30px;
}

.footerTopInfoView>p.noneLeft {
    margin-left: 0;
}

.pcBox {
    display: block;
    min-width: 1200px;
}

.phoneBox {
    display: none;
}

@media screen and (max-width: 768px) {
    .pcBox {
        display: none;
    }

    .phoneBox {
        display: block;
        width: 100%;
    }

    .footerView_phone {
        width: 100%;
        height: 120px;
        background: #1e1f21;
        padding: 20px 16px;
        box-sizing: border-box;
        margin-top: 20px;
    }

    .footerContentView_phone {
        width: 100%;
        height: 100%;

        display: flex;
        flex-direction: column;
        justify-content: space-between;
        font-size: 14px;
        font-family: PingFang SC, PingFang SC-Regular;
        font-weight: 400;
        text-align: left;
        color: #999999;
    }
}