/*footer*/
.footer{
    width: 100%;
    height: auto;
    background: #40403D;
    padding-top: 0.82rem;
}
.foot_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.29rem;
    border-bottom: 0.01rem solid rgba(255, 255, 255, 0.2);
}
.foot_top .foot_key{
    font-weight: 400;
    font-size: 0.2rem;
    color: #FFFFFF;
    /* letter-spacing: 0.06rem; */
}
.foot_cen{
    display: flex;
    justify-content: space-between;
    padding-top: 0.64rem;
    padding-bottom: 0.72rem;
}
.foot_cen .foot_fl{
    width: 9.73rem;
    padding-right: 1.15rem;
    border-right: 0.01rem solid rgba(255, 255, 255, 0.2);
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    row-gap: 0.4rem;
}
.foot_cen .foot_fl .foot_nav{
    width: 33.33%;
}
.foot_cen .foot_class1{
    font-weight: 600;
    font-size: 0.2rem;
    color: #FFFFFF;
    width: fit-content;
    height: auto;
    margin-bottom: 0.2rem;
}
.foot_cen .foot_fl .foot_nav .foot_class2{
    font-weight: 400;
    font-size: 0.16rem;
    color: #B4B4B4;
    width: fit-content;
    height: auto;
    margin-bottom: 0.1rem;
}
.foot_cen .foot_fl .foot_nav .foot_class2:last-child{
    margin-bottom: 0;
}
.foot_cen .foot_fl .foot_nav .foot_class2:hover{
    color: #fff;
}
.foot_cen .foot_fr{
    width: 3.27rem;
    padding-left: 1.15rem;
}
.foot_cen .foot_fr .foot_class1{
    margin-bottom: 0.41rem;
}
.foot_cen .foot_fr .foot_title{
    font-weight: 400;
    font-size: 0.16rem;
    color: #FFFFFF;
    margin-bottom: 0.16rem;
}
.foot_cen .foot_fr .foot_list{
    display: flex;
    flex-wrap: wrap;
    margin-bottom: 0.31rem;
    padding-right: 0.48rem;
    column-gap: 0.12rem;
    row-gap: 0.08rem;
}
.foot_cen .foot_fr .foot_list .code_icon{
    width: 0.32rem;
    height: 0.32rem;
    background: #666664;
    border-radius: 0.05rem;
    display: flex;
    justify-content: center;
    align-items: center;
}
.foot_cen .foot_fr .foot_list .code_icon img{
    max-width: 0.25rem;
    max-height: 0.25rem;
    object-fit: contain;
}
.foot_cen .foot_fr .foot_list .code_item{
    position: relative;
    text-decoration: none;
    color: inherit;
    display: block;
    cursor: pointer;
    flex-shrink: 0;
    width: auto;
    height: auto;
}
.foot_cen .foot_fr .foot_list .code_item:hover .code_icon{
    background: #D80000;
}
.foot_cen .foot_fr .foot_list .code_img{
    position: absolute;
    top: 0.35rem;
    left: 50%;
    z-index: 2;
    transform: translateX(-50%);
    width: 1rem;
    height: 1rem;
    padding: 0.04rem 0.02rem 0.02rem;
    background: url(../img/code_img.png) center no-repeat;
    background-size: cover;
    display: none;
}
.foot_cen .foot_fr .foot_list .code_item:hover .code_img{
    display: block;
}
.foot_cen .foot_fr .foot_txt{
    font-weight: 400;
    font-size: 0.16rem;
    color: #B4B4B4;
    margin-bottom: 0.03rem;
}
.foot_cen .foot_fr .foot_cont{
    font-family: MiSans-Semibold;
    font-weight: 600;
    font-size: 0.2rem;
    color: #FFFFFF;
    margin-bottom: 0.2rem;
}
.foot_cen .foot_fr .foot_cont:last-child{
    font-size: 0.15rem;
        white-space: nowrap
}

.foot_bot{
    height: 0.68rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    border-top: 0.01rem solid rgba(255, 255, 255, 0.2);
}
.foot_bot .foot_banuan{
    display: flex;
    align-items: center;
    font-weight: 400;
    font-size: 0.16rem;
    color: #B4B4B4;
}
.foot_bot .foot_banuan a{
    width: auto;
    height: auto;
    display: flex;
    align-items: center;
}
.foot_bot .foot_banuan a img{
    width: 0.2rem;
    height: 0.2rem;
    margin-right: 0.04rem;
    margin-left: 0.18rem;
}
.foot_bot .foot_url{
    display: flex;
    align-items: center;
    column-gap: 0.38rem;
}
.foot_bot .foot_url a{
    width: auto;
    height: auto;
    font-weight: 400;
    font-size: 0.16rem;
    color: rgba(255, 255, 255, 0.7);
    position: relative;
}
.foot_bot .foot_url a::before{
    content: "";
    position: absolute;
    width: 0.01rem;
    height: 0.13rem;
    background: #666664;
    left: -0.2rem;
    top: 50%;
    transform: translateY(-50%);
}
.foot_bot .foot_url a:first-child:before{
    display: none;
}









@media only screen and (max-width: 1024px) {
.foot_cen .foot_fl{
    display: none;
}
.foot_top{
    display: block;
}
.foot_top .foot_key{
    margin-top: 0.3rem;
}
.foot_cen .foot_fr{
    flex: 0 0 100%;
}
.foot_bot{
    height: auto;
    display: block;
    padding: 0.2rem 0.2rem;
}
.foot_bot .foot_banuan{
    display: block;
    text-align: center;
}
.foot_bot .foot_banuan a{
    justify-content: center;
}
.foot_bot .foot_url{
    justify-content: center;
}
}