* {
    margin: 0;
    padding: 0;
}


.footer_box {
    width: 100%;
    background: url(../images/footer_bg.jpg) no-repeat;
    background-size: cover;
    padding-top: calc(16px + 5rem);

}

.footer {
    max-width: 1440px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    border-bottom: 1px solid rgba(255,255,255,0.3);
    padding-bottom: calc(20px + 3rem);

}

.footer_left {
    width: 13.4028%;
}

.footer_logo {
    width: 100%;
}

.footer_logo img {
    width: 100%;
}
.footer_link{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: calc(2px + 3rem);
}
.footer_link_item {
    width: calc(10px + 1rem);
}

.footer_link_item img {
    width: 100%;
}
.footer_title{
font-family: pingfang_medium;
font-weight: 500;
font-size: calc(10px + 0.5rem);
color: #FFFFFF;
line-height: calc(8px + 1rem);
}
.footer_nav_list{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(2px + 0.5rem);
    margin-top: calc(10px + 0.5rem);
}
.foter_nav_item{
font-family: pingfang_regular;
font-weight: 400;
font-size: calc(8px + 0.5rem);
color: #FFFFFF;
line-height: calc(5px + 1rem);
}
.footer_contact_list{
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    gap: calc(2px + 0.5rem);
    margin-top: calc(10px + 0.5rem);
}
.foter_contact_item{
    font-family: pingfang_regular;
font-weight: 400;
font-size: calc(8px + 0.5rem);
color: #FFFFFF;
line-height: calc(5px + 1rem);
display: flex;
justify-content: flex-start;
align-items: center;
gap: calc(4px + 0.5rem);
}
.foter_contact_item img{
    width: max-content;

}

.footer_ewm{
    width: calc(30px + 5rem);
    height: calc(30px + 5rem);
    margin-top: calc(10px + 0.5rem);
}
.footer_ewm img{
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.copyright{
    max-width: 1440px;
    width: 85%;
    margin: auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: calc(9px + 1rem) 0;
}
.copyright p{
font-family: pingfang_regular;
font-weight: 400;
font-size: calc(6px + 0.5rem);
color: #FFFFFF;
line-height: calc(2px + 1rem);
}

@media screen and (max-width: 1100px){
    .footer{
        flex-direction: column;
        justify-content: flex-start;
        gap: calc(10px + 8rem);
    }
    .footer_left{
        width: 100%;
    }
    .footer_logo {
        width: 50%;
    }
    .footer_link{
        justify-content: flex-start;
        gap: calc(10px + 1rem);
    }
    .footer_link_item {
        width: calc(10px + 5rem);
    }
    .footer_title{
        font-size: calc(14px + 1rem);
    }
    .footer_nav_list{
        flex-direction: row;
        justify-content: space-between;
        flex-wrap: wrap;
        row-gap: calc(10px + 2rem);
        margin-top: calc(10px + 4rem);
    }
    .foter_nav_item{
        width: 30%;
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .footer_contact_list{
        row-gap: calc(10px + 2rem);
        margin-top: calc(10px + 4rem);
    }
    .foter_contact_item{
        width: 100% !important;
        font-size: calc(10px + 1rem);
        line-height: 1.5;
    }
    .footer_right{
        display: none;
    }
    .copyright{
        flex-direction: column;
        justify-content: center;
        align-items: center;
        gap: calc(10px + 1rem);
    }
    .copyright p{
        font-size: calc(9px + 1rem);
        line-height: 1.5;
        text-align: center;
    }
}