/*footer*/
.footer{
    width: 100%;
    height: 5.45rem;
    background: #014098;
    padding-top: 0.8rem;
    box-sizing: border-box;
}
.footer .main{
    position: relative;
    height: 100%;
}
.foot_top{
    display: flex;
}
.foot_top .foot_logo{
    width: 2.2rem;
    height: auto;
    position: relative;
    margin-right: 1.2rem;
}
.foot_top .foot_logo img{
    width: 100%;
    height: auto;
}
.foot_top .foot_logo::before{
    content: "";
    position: absolute;
    width: 0.01rem;
    height: 2.8rem;
    background: rgba(255,255,255,0.4);
    top: 0;
    right: -0.6rem;
}
.foot_top .foot_nav{
    display: flex;
    column-gap: 0.8rem;
    margin-right: 1rem;
}
.foot_top .foot_nav .foot_list .foot_class1{
    height: auto;
    font-weight: bold;
    font-size: 0.18rem;
    color: #FFFFFF;
    line-height: 1;
    margin-bottom: 0.2rem;
}
.foot_top .foot_nav .foot_list .foot_class2{
    height: auto;
    font-weight: normal;
    font-size: 0.16rem;
    color: rgba(255,255,255,0.9);
    line-height: 1;
    margin-bottom: 0.15rem;
}
.foot_top .foot_nav .foot_list .foot_class2:hover{
    color: #fff;
}





.foot_txt{
    max-width: 3.39rem;
}
.foot_code{
    width: auto;
    display: flex;
    align-items: center;
    column-gap: 0.15rem;
    margin-bottom: 0.3rem;
}
.foot_code .code_list{
    cursor: pointer;
    position: relative;
}
.foot_code .code_list .code_icon{
    width: 0.3rem;
    height: 0.3rem;
    overflow: hidden;
    display: flex;
    justify-content: center;
    align-items: center;
}
.foot_code .code_list .code_icon img{
    width: 100%;
    height: 100%;
    object-fit: contain;
    opacity: 0.8;
}
.foot_code .code_list .code_img{
    display: none;
    position: absolute;
    width: 1.1rem;
    height: 1.15rem;
    top: 0.37rem;
    left: 50%;
    transform: translateX(-50%);
    background: url(../img/code_bg.png) center no-repeat;
    background-size: cover;
    padding-top: 0.05rem;
    box-sizing: border-box;
    z-index: 9;
}
.foot_code .code_list .code_img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.foot_code .code_list:hover .code_img{
    display: block;
}
.foot_code .code_list:hover .code_icon img{
    opacity: 1;
}


.foot_item div{
    font-weight: normal;
    font-size: 0.16rem;
    color: #FFFFFF;
    display: flex;
    line-height: 1.8;
}
.foot_item div span:first-child{
    white-space: nowrap;
}









.foot_bottom{
    display: flex;
    align-items: center;
    justify-content: space-between;
    position: absolute;
    width: 100%;
    height: 0.68rem;
    bottom: 0;
    border-top: 0.01rem solid rgba(255,255,255,0.4);
}
.foot_bottom div,
.foot_bottom div a,
.foot_bottom div span{
    font-weight: 400;
    font-size: 0.16rem;
    color: rgba(255, 255, 255, 0.6);
    display: flex;
    flex-wrap: nowrap;
    white-space: nowrap;
    column-gap: 0.2rem;
}






@media screen and (max-width: 1043px) {
    .footer{
        height: auto;
    }
    .foot_top{
        flex-wrap: wrap;
        position: relative;
    }
    .foot_top .foot_logo{
        width: auto;
        height: 2rem;
        margin-bottom: 1rem;
        margin-right: 0;
    }
    .foot_top .foot_logo img{
        width: auto;
        height: 100%;
    }
    .foot_top .foot_logo::before{
        display: none;
    }
    .foot_txt{
        position: absolute;
        top: 0;
        right: 0;
        max-width: 60%;
        width: 60%;
    }
    .foot_item div{
        font-size: 0.2rem;
    }
    .foot_code .code_list .code_icon{
        width: 0.5rem;
        height: 0.5rem;
    }
    .foot_code .code_list .code_img{
        width: 1.5rem;
        height: 1.6rem;
        top: 0.57rem;
    }
    .foot_top .foot_nav{
        column-gap: 0;
        justify-content: space-between;
        width: 100%;
        margin-right: 0;
    }
    .foot_top .foot_nav .foot_list .foot_class1{
        font-size: 0.22rem;
    }
    .foot_top .foot_nav .foot_list .foot_class2{
        font-size: 0.2rem;
    }
    .foot_bottom{
        position: relative;
        margin-top: 0.2rem;
        flex-wrap: wrap;
        justify-content: center;
        height: auto;
        padding: 0.2rem 0;
        row-gap: 0.1rem;
    }
    .foot_bottom div, .foot_bottom div a, .foot_bottom div span{
        font-size: 0.2rem;
    }
}







