.footer{
    width: 100%;
    height: 0.8rem;
    display: flex;
    justify-content: center;
    align-items: center;
    background: #1C446B;
}
.footer_center{
    width: 11rem;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.footer_left{
    display: flex;
}
.footer_left img{
    width: 0.4rem;
    height: 0.4rem;
    /* margin-right: 0.15rem; */
}
.footer_left a{
    margin-right: 0.15rem;
}
.footer_right{
    display: flex;  
}
.footer_txt1,.footer_txt2{
    color: #fff;
    font-size: 0.16rem;
}
.footer_txt2{
    margin-left: 0.65rem;
}

@media screen and (max-width:1024px){
    .footer{
        height: auto;
        padding: 15px;
    }
    .footer_center{
        width: 100%;
        flex-wrap: wrap;
    }
    .footer_left,.footer_right{
        width: 100%;
    }
    .footer_right{
        flex-wrap: wrap;
    }
    .footer_txt1,.footer_txt2{
        width: 100%;
        text-align: center;
        padding: 7px 0;
        font-size: 14px;
    }
    .footer_left{
        justify-content: space-evenly;
        padding: 15px 0;
    }
    .footer_left img{
        width: 32px;
        height: 32px;
    }
}