.footer {
    width: 100%;
    height: 268px;
    background-color: #000;
    padding-top: 50px;
    overflow: hidden;
}
.footer .pageItem {
    width: 100%;
    font-size: 14px;
    color: #fff;

    display: flex;
    justify-content: center;
    align-items: center;
}
.footer .pageItem a {
    color: #fff;
    text-decoration: none;
}
.footer .pageItem i {
    margin: 0 15px;
    display: inline-block;
    width: 1px;
    height: 10px;
    background: #c9c6c6;
}
.footer .footerDesc {
    width: 100%;
    padding-top: 20px;
    font-size: 14px;
    color: #fff;
}
.footer .footerDesc .copyRight {
    width: 100%;
    font-size: 12px;
    padding: 5px 0;
    text-align: center;
    font-family: Helvetica;
    color: hsla(0, 0%, 100%, 0.4);
}

/* 移动端样式 */
@media (max-width: 768px) {
    .footer {
        width: 100%;
        height: 55vw;
        background-color: #000;
        padding: 6vw 3vw;
    }
    .footer .pageItem {
        font-size: 3.5vw;
        color: hsla(0, 0%, 100%, 0.6);

        display: flex;
        justify-content: center;
        align-items: center;
    }
    .footer .pageItem a {
        color: hsla(0, 0%, 100%, 0.6);
        text-decoration: none;
    }
    .footer .pageItem i {
        margin: 0 3vw;
        display: inline-block;
        width: 0.1vw;
        height: 3vw;
        background: #c9c6c6;
        /* opacity: .5; */
    }

    .footer .footerDesc {
        padding-top: 4vw;
        color: #fff;
    }
    .footer .footerDesc .copyRight {
        width: 100%;
        font-size: 2.5vw;
        padding: 1vw 0;
        text-align: center;
        font-family: Helvetica;
        color: hsla(0, 0%, 100%, 0.4);
        line-height: 1.2;
    }
}
