/* 页脚样式 */
.footer {
    width: 100%;
    background-color: #3e3e3e;
    color: #fff;
}

.footer .info {
    width: 80%;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    padding: 30px 0;
    box-sizing: border-box;
}

.footer .info .infoItem {
    display: flex;
    flex-direction: column;
    line-height: 24px;
}

.footer .info .infoItem a {
    color: #fff;
    margin: 15px 0;
}

.footer .info .infoItem a:hover {
    color: #409eff;
}

.footer .info .infoItem h3 {
    font-size: 20px;
    margin-bottom: 10px;
}

.footer .info .infoItem img {
    width: 100%;
}

.footer .info .code {
    width: 10%;
    text-align: center;
}

.footer .infoBottom {
    border-top: 1px solid rgba(75, 75, 75, 1);
    width: 80%;
    margin: 0 auto;
    text-align: center;
    line-height: 24px;
    padding: 30px 0;
    color: #c5c5c5;
}

.footer .infoBottom p {
    display: flex;
    align-items: center;
    justify-content: center;
}

/* 移动端适配 */
@media only screen and (max-width: 576px) {
    .footer .info {
        width: 100%;
        padding: 20px 10px;
        flex-wrap: wrap; /* 小屏幕自动换行 */
    }

    .footer .info .infoItem {
        margin: 0 10px 20px;
        justify-content: flex-start;
        width: 40%; /* 小屏幕每行显示2个 */
    }

    .footer .info .code {
        width: 60%;
        margin: 20px auto 0; /* 二维码居中显示 */
    }
    .infoItemNone {
        display: none !important;
    }
}
