/*footer*/

.footer{
    min-height: 3rem;
    background: #EEEEEE;
    position: relative;
}
.footer::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 0.1rem;
    top: 0;
    background: linear-gradient( 270deg, #00DCFF 0%, #006EFF 100%);
}
.footer .main{
    display: flex;
    justify-content: space-between;
}
.footer .foot_logo{
    width: 1.65rem;
    height: auto;
    margin-top: 0.6rem;
}
.footer .foot_name{
    font-family: Poppins-Regular;
    font-weight: 400;
    font-size: 0.3rem;
    color: #000000;
    margin-top: 0.1rem;
}
.footer .foot_nav{
    display: flex;
    align-items: center;
    column-gap: 0.64rem;
    margin: 0.85rem 0;
}
.footer .foot_nav a{
    text-transform: uppercase;
    font-family: Sans-SemiBold;
    font-weight: 600;
    font-size: 0.18rem;
    color: #707070;
    width: auto;
    height: auto;
}
.footer .foot_code{
    display: flex;
    align-items: center;
    column-gap: 0.12rem;
    justify-content: flex-end;
    margin-bottom: 0.21rem;
}
.footer .foot_code a{
    width: 0.3rem;
    height: 0.3rem;
    border-radius: 50%;
}
.footer .foot_code a img{
    width: 100%;
    height: 100%;
    object-fit: contain;
}
.footer .foot_code .code_img2{
    display: none;
}
.footer .foot_code a:hover .code_img1{
    display: none;
}
.footer .foot_code a:hover .code_img2{
    display: block;
}

.footer .foot_banquan{
    width: 100%;
    border-top: 0.01rem solid #D8D8D8;
    padding: 0.22rem 0 0.17rem;
}
.footer .foot_banquan .main{
    font-family: OpenSans-Regular;
    font-weight: 400;
    font-size: 0.14rem;
    color: #707070;
    line-height: 1.3;
}




@media only screen and (max-width: 1024px) {
.foot_fr{
    display: none;
}
.footer{
    min-height: 2.5rem;
}
.footer .foot_banquan .main{
    font-size: 12px;
}
.footer .foot_banquan{
    margin-top: 0.2rem;
}
}