/*footer*/
.footer {
    width: 100%;
    height: fit-content;
    background: #242834;
    padding-top: 0.69rem;
    box-sizing: border-box;
    position: relative;
    overflow: hidden;
}
.footer .main{
    max-width: 17.5rem;
}
.footer .footer_top{
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    padding-bottom: 0.22rem;
    border-bottom: 0.01rem solid #393B42;
    margin-bottom: 0.5rem;
}
.footer .footer_top .foot_logo{
    width: auto;
    height: 0.58rem;
}
.footer .footer_top .foot_name{
    font-family: SC-Light;
    font-weight: 300;
    font-size: 0.3rem;
    color: #FFFFFF;
}
.footer .footer_center{
    display: flex;
    justify-content: space-between;
    padding-bottom: 0.1rem;
}
.footer .footer_center .foot_nav{
    display: flex;
    column-gap: 0.7rem;
}
.footer .footer_center .foot_nav .foot_class1{
    font-family: SC-Bold;
    width: auto;
    height: auto;
    line-height: 1;
    font-weight: bold;
    font-size: 0.18rem;
    color: #FFFFFF;
    margin-bottom: 0.59rem;
}
.footer .footer_center .foot_nav .foot_class2{
    width: auto;
    height: auto;
    line-height: 1;
    font-family: SC-Regular;
    font-weight: 400;
    font-size: 0.16rem;
    color: rgba(255,255,255,0.5);
    margin-bottom: 0.31rem;
}
.footer .footer_center .foot_nav .foot_class2:hover{
    color: #fff;
}
.footer .footer_center .foot_item{
    margin-bottom: 0.35rem;
    height: auto;
    width: 3.4rem;
}
.footer .footer_center .foot_item .foot_txt{
    display: flex;
    align-items: center;
    font-family: SC-Bold;
    font-weight: bold;
    font-size: 0.19rem;
    color: #8A8E96;
}
.footer .footer_center .foot_item .foot_txt img{
    width: 0.31rem;
    height: 0.27rem;
    object-fit: contain;
    margin-right: 0.09rem;
}
.footer .footer_center .foot_item .foot_cont{
    margin-top: 0.22rem;
    padding-left: 0.4rem;
    font-family: SC-Regular;
    font-weight: 400;
    font-size: 0.2rem;
    color: #FFFFFF;
}
.footer .footer_center .foot_item .foot_code{
    display: flex;
    column-gap: 0.23rem;
    margin-top: 0.17rem;
    padding-left: 0.4rem;
}
.footer .footer_center .foot_item .foot_code_img{
    width: 1.04rem;
}
.footer .footer_center .foot_item .foot_code_img img{
    width: 100%;
    height: 1.04rem;
    object-fit: contain;
}
.footer .footer_center .foot_item .foot_code_img span{
    margin-top: 0.08rem;
    text-align: center;
    display: block;
    font-weight: 400;
    font-size: 0.14rem;
    color: #8A8E96;
}
.footer .footer_bottom{
    display: flex;
    justify-content: center;
    align-items: center;
    column-gap: 0.18rem;
    padding: 0.36rem 0;
    box-sizing: border-box;
    background: #0D111C;
} 
.footer .footer_bottom *{
    width: auto;
    height: auto;
    font-weight: 400;
    font-size: 0.16rem;
    color: rgba(255,255,255,0.5);
    display: flex;
    align-items: center;
}
.footer .footer_bottom img{
    width: 0.2rem;
    height: 0.2rem;
}
.footer .footer_bottom div{
    column-gap: 0.2rem;
    margin-left: 0.22rem;
}
.footer .footer_bottom div span{
    font-size: 0.12rem;
}










@media screen and (max-width: 1043px) {
    .footer{
        align-content: end;
    }
    .footer .footer_top .foot_logo{
        width: auto;
        height: 46px;
        /*margin-bottom: 15px;*/
    }
    .footer .footer_top .foot_name{
        font-size: 32px;
        /*width: 100%;*/
    }
    .footer .footer_center .foot_nav{
        display: none;
    }
    .footer .footer_center .foot_item{
        width: 100%;
        margin-bottom: 30px;
    }
    .footer .footer_center .foot_item .foot_txt{
        font-size: 18px;
    }
    .footer .footer_center .foot_item .foot_cont{
        font-size: 18px;
        margin-top: 4px;
    }
    
    .footer .footer_bottom{
        width: 100%;
        flex-wrap: wrap;
        row-gap: 10px;
        padding: 20px 0;
    }
    .footer .footer_bottom *{
        font-size: 14px;
    }
}

@media screen and (max-width: 769px) {
    .footer{
        height: auto;
    }
    .footer .footer_bottom *{
        text-align: center;
    }
    .footer .footer_top{
        flex-wrap: wrap;
        justify-content: flex-start;
    }
    .footer .footer_top .foot_logo{
        margin-bottom: 15px;
    }
    .footer .footer_top .foot_name{
        width: 100%;
        font-size: 24px;
    }
    .footer .footer_center .foot_item .foot_txt{
        font-size: 16px;
    }
    .footer .footer_center .foot_item .foot_cont,
    .footer .footer_center .foot_item .foot_code_img span{
        font-size: 14px;
    }
    .footer .footer_center .foot_item .foot_code_img{
        width: 120px;
    }
    .footer .footer_center .foot_item .foot_code_img img{
        height: auto;
    }
}