
/* footer */
#footer{
    width: 100%;
    background-color: #323232;
    color: #fff; 
}
#footer > .container{
    width: 100%;
    max-width: 1344px;
    margin: 0 auto;
}
.footer-content{
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    padding: 70px 0;
    padding-bottom: 38px;
}
.footer-unit1{
    width: calc(100% - 220px);
    display: flex;
    /* min-width: 910px; */
}
.footer-logo{
    width: 18%;
    padding-right: 20px;
}
.footer-logo > img{
    width: 70%;
}
.footer-unit2{
    width: 220px;
    /* min-width: 180px; */
}

.footer-unit1-item{
    padding-right: 50px;
    width: auto;
}
.footer-title{
    width: 100%;
    font-weight: 600;
    font-size: 16px;
    text-wrap: nowrap;
    margin-bottom: 18px;
}
.footer-item-text{
    width: 100%;
    font-size: 12px;
    padding: 4px 0;
}
.footer-item-text a{
    color: #fff;
}

.footer-codes{
    display: flex;
    width: 220px;
}
.footer-code{
    width: 50%;
    padding: 10px;
}
    .footer-code-img{
        width: 100%;
    }
    .footer-code-img > img{
        width: 100%;
    }
    .footer-code-text{
        font-size: 12px;
        text-align: center;
    }
.footer-record{
    width: 100%;
    padding: 20px 0;
    padding-left: 15%;
    text-align: left;
    font-size: 12px;
}
.footer-beian{
    width: 16px;
    height: 16px;
    margin-right: 5px;
    margin-left: 10px;
}




/* 适配方案 */
@media screen and (max-width: 1450px){
    .footer-unit2{
        width: 100%;
        display: flex;
        justify-content: center;
        padding: 20px 0;
    }
}
@media screen and (max-width: 1000px){
    .footer-logo{
        width: 100%;
        display: flex;
        justify-content: center;
    }
    .footer-logo > img{
        max-width: 140px;
        margin-bottom: 20px;
    }
    .footer-unit1{
        flex-wrap: wrap;
        justify-content: center;
        width: 100%;
        padding: 0 20px;
    }
    .footer-unit1-item{
        margin-bottom: 30px;
        border-bottom: 1px solid #515151;
        padding-bottom: 20px;
        padding-right: 25px;
    }
}
@media screen and (max-width: 800px){
    .footer-unit1-item{
        min-width : 0px;
        width: 33.333%;
    }
    .footer-unit1-item:last-child{
        width: 66.666%;
    }
    .footer-unit1{
        justify-content: left;
        /* padding: 0 ; */
    }
    .footer-record{
        text-align: center;
        padding-left: 0;
    }
}








