.other-info {
    /*height: 25vw;*/
    background: var(--base-bg-color-other);
    padding-bottom: 4rem;
}

.other-info .other-info-container {
    width: 68vw;
    margin: 0 auto;
}

.other-info-container .other-info-title {
    height: 6rem;
    display: flex;
    align-items: center;
    flex-wrap: nowrap;
    border-bottom: 1px solid var(--base-border-color);
}
.other-info-container .other-info-title .other-info-title-text,
.other-info-container .other-info-title .other-info-title-companies a {
    font-size: var(--base-font-size-small);
    color: var(--base-font-color-info);
    margin-right: 1.6em;
    /*只显示一行*/
    white-space: nowrap;
}
.other-info-container .other-info-title .other-info-title-companies a:hover {
    color: var(--base-font-color-primary);
}

.other-info-title-companies {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}

.other-info-container .other-info-content {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: space-between;
    margin-top: 3.75vw;
}

.other-info-content .left-content {
    display: flex;
    flex-wrap: wrap;
}
.left-content .other-info-logo{
    width: var(--nav-logo-width);
    height: var(--nav-logo-height);
}
.left-content .other-info-logo img {
    width: 100%;
}
.left-content .other-info-text {
    flex: 0 0 100%;
    font-size: var(--base-font-size-default);
    color: var(--base-font-color);
    margin-top: 3.6vw;
    line-height: 1.8rem;
}

.other-info-content .right-content {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    background: var(--base-bg-color-header);
    width: 24.4rem;
    height: 10.2rem;
    max-width: 440px;
    max-height: 204px;
    border-radius: 1rem;
}

.right-content .other-info-qrcode {
    width: 7.2rem;
    height: 7.2rem;
    margin-right: 1.4rem;
    margin-left: 2rem;
}

.right-content .other-info-qrcode .qrcode {
    width: 100%;
    height: 100%;
}

.right-content .other-info-qrcode-intro {
    font-size: var(--base-font-size-default);
    color: var(--base-font-color);
    line-height: calc(1.5 * var(--base-font-size-default));
}

.footer {
    width: 100%;
    background-color: var(--base-bg-color-footer);
    color: white;
    height: 4.4rem;
}
.footer-content {
    width: 68vw;
    margin: 0 auto;
    height: 100%;
    line-height: 4.4rem;
}
.footer-content a{
    color: #FFFFFF;
}
.footer-content a:hover{
    color: #298EC8FF;
}

@media (max-width: 991px) {
    .other-info {
        /*height: 50vw;*/
        /*min-height: 360px;*/
        background: var(--base-bg-color-other);
    }

    .other-info .other-info-container {
        width: calc(100vw - 40px);
        margin: 0 auto;
    }
    /*   移动端公司信息  */
    .other-info-container .other-info-content {
        display: flex;
        flex-wrap: wrap;
        align-items: center;
        justify-content: center;
    }

    .other-info-content .left-content {
        flex: 0 0 100%;
        display: flex;
        flex-wrap: wrap;
        order: 2;
    }
    .left-content .other-info-logo{
        /*display: none;*/
        margin: 0 auto;
    }

    .left-content .other-info-text {
        flex: 0 0 100%;
        font-size: var(--base-font-size-default);
        color: var(--base-font-color);
        margin-top: 3.6vw;
        line-height: 1.8rem;
        text-align: center;
    }

    .other-info-content .right-content {
        display: none;
        order: 1;
        /*display: flex;*/
        flex-wrap: wrap;
        align-items: center;
        align-content: center;
        justify-content: center;
        background: none;
        /*background: var(--base-bg-color-header);*/
        width: 23vw;
        height: 25vw;
        min-width: 180px;
        min-height: 180px;
        border-radius: 1rem;
    }
    .other-info-content .right-content .other-info-qrcode-intro p:first-child {
        display: none;
    }

    .right-content .other-info-qrcode {
        width: 6.8vw;
        height: 6.8vw;
        min-width: 150px;
        min-height: 150px;
        background: #000000;
        margin-right: 0;
        margin-bottom: 10px;
    }
    .right-content .other-info-qrcode-intro {
        font-size: var(--base-font-size-default);
        color: var(--base-font-color);
        line-height: calc(1.5 * var(--base-font-size-default));
    }

    .footer .footer-content {
        width: calc(100vw - 20px);
    }
}
