/*footer*/
.footer{
    width: 100%;
    height: auto;
    background: #161B26;
    padding-top: 0.76rem;
    margin-top: 0.8rem;
}
.footer .main{
    width: 17rem !important;
}
.footer .foot_top{
    display: flex;
    min-height: 4.7rem;
    justify-content: space-between;
    position: relative;
}
.foot_fl{
    width: 5rem;
}
.foot_fl .foot_logo{
    width: 2.23rem;
    height: 0.7rem;
    overflow: hidden;
    margin-bottom: 0.4rem;
}
.foot_fl .foot_logo img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.foot_fl .foot_phone{
    display: flex;
    align-items: center;
    margin-bottom: 0.34rem;
}
.foot_fl .foot_phone .phone_icon{
    width: 0.36rem;
    height: 0.36rem;
    overflow: hidden;
    margin-right: 0.08rem;
}
.foot_fl .foot_phone .phone_icon img{
    width: 0.36rem;
    height: 0.36rem;
    object-fit: contain;
}
.foot_fl .foot_phone .phone_txt span{
    font-weight: 400;
    font-size: 0.16rem;
    color: #FFFFFF;
    width: 100%;
    display: block;
}
.foot_fl .foot_phone .phone_txt span:last-child{
    font-weight: bold;
    font-size: 0.25rem;
    color: #FFFFFF;
}
.foot_fl .foot_address span{
    width: 100%;
    display: block;
    font-weight: 400;
    font-size: 0.16rem;
    color: #B8BABD;
    margin-bottom: 0.13rem;
}


.foot_fr{
    width: 10.8rem;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
}
.foot_fr .foot_list>a{
    font-weight: bold;
    font-size: 0.16rem;
    color: #FFFFFF;
    margin-bottom: 0.36rem;
    display: block;
    height: auto;
    position: relative;
}
.foot_fr .foot_list>a::before{
    content: "";
    position: absolute;
    width: 0.23rem;
    height: 0.03rem;
    left: 0;
    bottom: -0.14rem;
    background: url(../img/head_icon.png) center bottom no-repeat;
    background-size: 0.23rem 0.03rem;
}
.foot_fr .foot_list .foot_nav>a{
    font-weight: 400;
    font-size: 0.16rem;
    color: #B8BABD;
    margin-bottom: 0.15rem;
    display: block;
}
.foot_fr .foot_list .foot_nav>a:hover{
    color: #289FF3;
}


.foot_code{
    width: auto;
    height: auto;
    position: absolute;
    right: 0;
    bottom: 0.21rem;
    display: flex;
}
.foot_code .code_list{
    margin: 0 0.09rem;
    cursor: pointer;
    position: relative;
}
.foot_code .code_list .code_icon{
    width: 0.18rem;
    height: 0.18rem;
    overflow: hidden;
}
.foot_code .code_list .code_icon img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
    opacity: 0.4;
}
.foot_code .code_list .code_img{
    display: none;
    position: absolute;
    width: 0.95rem;
    height: 0.95rem;
    top: -1.05rem;
    left: 50%;
    transform: translateX(-50%);
}
.foot_code .code_list .code_img img{
    max-width: 100%;
    max-height: 100%;
    object-fit: contain;
}
.foot_code .code_list .code_img::before{
    width: 0rem;
    height: 0rem;
    position: absolute;
    bottom: -0.09rem;
    left: 0.42rem;
    display: inline-block;
    content: "";
    border: 0.05rem solid transparent;
    border-top-color: #ffffff;
}
.foot_code .code_list:hover .code_icon img{
    opacity: 1;
}
.foot_code .code_list:hover .code_img{
    display: block;
}












.foot_bottom{
    width: 100%;
    height: 0.94rem;
    border-top: 0.01rem solid rgba(255,255,255,0.13);
    color: rgba(255,255,255,0.36);
    display: flex;
    justify-content: center;
    align-items: center;
}
.foot_bottom a{
    width: auto;
    height: auto;
    margin-left: 0.2rem;
}




@media only screen and (max-width: 1024px) {
    .footer{
        padding: 0.76rem 0.3rem 0;
    }
    .footer .main{
        width: 100% !important;
    }
    .foot_fl{
        width: 100%;
    }
    .foot_fr{
        display: none;
    }
    .foot_fl .foot_phone .phone_txt span,.foot_fl .foot_address span{
        font-size: 12px;
    }
    .foot_bottom{
        display: block;
        height: auto;
        padding: 0.2rem 0;
    }
    .foot_bottom{
        text-align: center;
        font-size: 12px;
    }
    .foot_bottom a{
        margin-left: 0;
        text-align: center;
        font-size: 12px;
    }
}