.footer{
    width: 100%;
    height: auto;
    box-sizing: border-box;
    background-color: #2c2d2c;
}

.footer-pc{
    width: 90%;
    height: auto;
    max-width: 1200px;
    margin: auto;
    font-size: 14px;
    color: #ddd;
}

.footer-pc-top{
    height: 160px;
    padding: 26px 0;
    display: flex;
    flex-wrap: no-wrap;
    align-items: center;
}

.footer-pc-top-left{
    height: 100%;
    margin-left: 110px;
}

.footer-pc-top-left img{
    height: 100%;
    width: auto;
    padding-right: 50px;
    border-right: 1px dashed #666;
}

.footer-pc-top-right{
    flex:1;
    justify-content: flex-start;
    padding-left: 50px;
}

.footer-pc-top-right .right-qrcode{

}

.footer-pc-top-right .right-qrcode img{
    height: 120px;
    width: auto;
}

.footer-pc-top-right .right-qrcode div{
    text-align: center;
}

.footer-pc-top-right .right-msg{
    margin-left: 24px;
    line-height: 22px;
    /* background-color: aqua; */
}

.footer-pc-top-right .right-msg div{
    width: 100%;
}

.footer-pc-top-right .right-msg .iconfont{
    margin-right: 4px;
}

.footer-pc-top-right .right-msg-notice{
    font-size: 16px;
    font-weight: 600;
}

.footer-pc-top-right .right-msg-normal{
    margin-top: 6px;
}

.footer-pc-bottom{
    width: 100%;
    padding-bottom: 12px;
    text-align: center;
}

.footer-pc-bottom-interval{
    margin-left: 6px;
}

.footer-pc-bottom-interval a{
    text-decoration: none;
    color: #ddd;
}

.footer-pc-bottom-interval a:hover{
    color: var(--theme);
}

.footer-mobile{
    width: 100%;
    box-sizing: border-box;
    padding: 12px 12px;
    font-size: 14px;
    color: #ddd;
    display: none;
}

.footer-mobile-logo{
    width: 60%;
    height: auto;
    margin: auto;
}

.footer-mobile-logo img{
    width: 100%;
    height: auto;
}

.footer-mobile-qrcode{
    width: 50%;
    margin: 12px auto 0 auto;
}

.footer-mobile-qrcode img{
    width: 100%;
    height: auto;
}

.footer-mobile-qrcode div{
    /* margin-top: ; */
    text-align: center;
}

.footer-mobile-msg{
    text-align: center;
    margin: 12px auto 0 auto;
}

.footer-mobile-msg .msg-notice{
    font-size: 14px;
    font-weight: 600;
    line-height: 20px;
}

.footer-mobile-msg .msg-normal{
    margin-top: 6px;
}

.footer-mobile-msg .iconfont{
    margin-right: 4px;
}

.footer-mobile-bottom{
    text-align: center;
    margin: 24px auto 0 auto;
    font-size: 12px;
}
.footer-mobile-bottom-interval a{
    text-decoration: none;
    color: #ddd;
}

.footer-pc-bottom-interval a:hover{
    color: var(--theme);
}

@media screen and (max-width: 1024px) {
    .footer-pc{
        display: none;
    }
    .footer-mobile{
        display: block;
    }
}