footer {
    width: 100%;
    background: #04284B;
    overflow: hidden;
}

.footer_top {
    width: 16rem;
    margin: 0.8rem auto .7rem;
    display: flex;
    justify-content: space-between;
}

.footer_logo {
    width: 1.49rem;
    display: flex;
}

.footer_contact p {
    font-size: 0.16rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    margin-top: .3rem;
}

.footer_center{
    display: flex;
    /*width: 6.1rem;*/
    width: 9rem;
    justify-content: space-between;
    position: relative;
    flex-shrink: 0;
}

.footer_center::after{
    content: '';
    width: 100%;
    height: .01rem;
    background: #FFFFFF;
    position: absolute;
    left: 0;
    top: .4rem;
}

.footer_nav_list{
    display: flex;
    flex-direction: column;
}

.footer_nav_list a{
    font-size: 0.16rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
    margin-bottom: .2rem;
}

.footer_nav_list a:first-child{
    margin-bottom: .45rem;
}

.footer_nav_list a:last-child{
    margin-bottom: 0;
}

.footer_bottom{
    width: 100%;
    height: .6rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.footer_bottom a{
    font-size: 0.14rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
}

.footer_code{
    width: 2rem;
}

.footer_code img{
    width: 2rem;
    height: 2rem;
    display: flex;
    margin-bottom: .3rem;
}

.footer_code p{
    text-align: center;
    font-size: 0.16rem;
    font-family: Microsoft YaHei, Microsoft YaHei;
    font-weight: 400;
    color: #FFFFFF;
}


@media only screen and (max-width:1024px){
    .footer_top{
        width: 100%;
        padding: 15px;
        box-sizing: border-box;
        margin: 15px 0;
    }
    .footer_logo {
        width: 2.5rem;
    }
    .footer_center{
        display: none;
    }
    .footer_contact p{
        font-size: 12px;
    }
    .footer_code p{
        font-size: 12px;
    }
    .footer_bottom{
        padding: 0 15px;
        height: auto;
        box-sizing: border-box;
    }
    .footer_bottom a{
        font-size: 12px;
        text-align: center;
    }
}