.footer {
    width: 100%;
}
.footer .center {
    position: relative;
    width: 18rem;
    height: 100%;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}


/* footer1 */
.foot1 {
    width: 100%;
    height: 0.9rem;
    background: #252525;
}
/* logo */
.foot1 .logo {
    display: block;
    /*width: 2.98rem;*/
    height: 0.44rem;
}
.foot1 .logo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}
/* 导航 */
.foot1 .navs {
    width: fit-content;
    display: flex;
    align-items: center;
}
.foot1 .navs a {
    display: block;
    margin: 0 0.2rem;
    font-size: var(--fon16);
    font-family: Source Han Sans CN, Source Han Sans CN;
    color: #C5C5C5;
}
.foot1 .navs a:hover {
    font-weight: bold;
}
/* 全球站点 */
.foot1 .site-all {
    position: relative;
    width: fit-content;
}
.foot1 .site-all .front {
    display: flex;
    align-items: center;
    font-size: var(--fon16);
    font-family: Source Han Sans CN, Source Han Sans CN;
    color: #A8A8A8;
    cursor: pointer;
}
.foot1 .site-all .down {
    width: 0.16rem;
    height: 0.09rem;
    margin-left: 0.14rem;
    object-fit: contain;
}
.foot1 .site-all .behind {
    display: none;
    position: absolute;
    margin-top: 0.2rem;
    border: 0.01rem solid #A8A8A8;
    padding-left: 0.1rem;
    width: 100%;
    z-index: 2;
    background: #252525;
}
.foot1 .site-all .behind a {
    color: #A8A8A8;
    display: block;
    font-size: var(--fon14);
    line-height: 2;
}


/* footer2 */
.foot2 {
    width: 100%;
    height: 1.3rem;
    background: #252525;
    border-top: 0.01rem solid #484848;
}
.foot2 .text {
    margin: 0 auto;
    font-size: var(--fon25);
    font-family: Source Han Sans CN, Source Han Sans CN;
    font-weight: 500;
    color: #A8A8A8;
}
.foot2 .icons {
    position: absolute;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    align-items: center;
}
.foot2 .icons img {
    width: 0.45rem;
    height: 0.45rem;
    margin-left: 0.15rem;
    object-fit: contain;
}


/* footer3 */
.foot3 {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    height: 0.55rem;
    background: #202020;
    border-top: 0.01rem solid #252525;
    font-size: var(--fon14);
    font-family: Microsoft YaHei, Microsoft YaHei;
    color: #828282;
}
.foot3 a {
    font-size: var(--fon14);
    font-family: Microsoft YaHei, Microsoft YaHei;
    color: #828282;
}














@media only screen and (max-width: 1024px) {
    .foot1 {
        height: 1.4rem;
    }

    .footer .center {
        width: 100%;
        justify-content: center;
        flex-wrap: wrap;
    }

    .foot1 .logo {
        height: 0.8rem;
    }
    
    .foot1 .logo img{
        width: 100%;
        height: 100%;
        object-fit: contain;
    }

    .foot1 .navs {
        display: none;
    }

    .foot1 .site-all {
        display: none;
    }

    .foot2 {
        height: max-content;
        padding: 0.4rem 0;
        box-sizing: border-box;
    }

    .foot2 .text {
        width: 100%;
        text-align: center;
        font-size: var(--fon30);
        margin-bottom: 0.2rem;
    }

    .foot2 .icons {
        position: relative;
        margin-top: 0.3rem;
    }

    .foot2 .icons img {
        width: 0.6rem;
        height: 0.6rem;
    }

    .foot3 {
        flex-wrap: wrap;
        height: max-content;
        font-size: 0.24rem;
        padding: 0.36rem 0;
        box-sizing: border-box;
        line-height: 1.6;
    }

    .foot3 a {
        font-size: 0.24rem;
    }
}




















