.deqing-foot{
    background: #000;
    padding: var(--content-gap-lg) 0 0 0;
}
.deqing-foot .foot-list{
    max-width: 1700px;
    display: flex;
    margin: 0 auto;
    justify-content: space-between;
}
.deqing-foot .foot-bottom{
    max-width: 1700px;
    padding: calc(var(--content-gap-lg) / 2) 0;
    margin: 0 auto;
}
.deqing-foot .foot-line{
    max-width: 1700px;
    padding: calc(var(--content-gap-lg) / 2) auto;
}
.foot-list .foot-left{
    display: flex;
    flex-direction: column;
    gap: 28px;
    max-width: 537px;
}
.foot-left .left-top-box{
    display: flex;
    gap: 12px;
}
.left-top-box img{
    max-height: 48px;
    width: auto;
    object-fit: cover;
}
.left-top-box .left-companyname{
    color: #FFF;
    font-family: Inter;
    font-size: 13px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.left-top-box .left-chineseName{
    color: #FFF;
    font-family: Inter;
    font-size: 8px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
}
.foot-left .left-companyInfo{
    display: flex;
    gap: 40px;
    margin-top: -25px;
}
.foot-left .companyItem{
    display: flex;
    gap: 12px;
    color: #FFF;
    font-family: var(--font-family);
    font-size: 14px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    opacity: 0.8;
}
.foot-left .companyItem a:hover{
    color: #3994FF !important;
}
.foot-right .link-wrap{
    flex: 1;
}
.foot-left .left-desc{
    color: #FFF;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    opacity: 0.8;
    max-width: 500px;
}
.foot-left .media{
    display: flex;
    gap: 16px;
}
.foot-left .media li{
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(255, 255, 255, 0.8);
    border-radius: 50%;
    color: #fff;
    cursor: pointer;
}
.foot-left .media li a:hover{
    color: #fff !important;
}
.foot-left .media li:hover{
    background: #3994FF;
    border: 1px solid #3994FF;
}

.foot-list .foot-right{
    display: flex;
    flex-wrap: wrap;
    gap: 32px;
}
.foot-right .link-wrap .link-title{
    color: #FFF;
    font-family: var(--font-700-family);
    font-size: 22px;
    font-style: normal;
    font-weight: 700;
    line-height: normal;
    white-space: nowrap;
}
.link-wrap .link-box{
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 20px;
}
.link-wrap .link-box .link-item{
    color: #FFF;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    white-space: nowrap;
}
.link-wrap .link-box .link-item a:hover{
    color: #3994FF;
}
.deqing-foot .foot-line{
    width: 100%;
    height: 1px;
    background: #fff;
    margin: calc(var(--content-gap-lg) / 2) auto 0;
}
.deqing-foot .foot-bottom .copyright{
    color: #FFF;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 300;
    line-height: normal;
    opacity: 0.8;
    text-align: center;
}

@media screen and (max-width: 1700px) {
    .deqing-foot .foot-list,
    .deqing-foot .foot-line{
        padding: 0 30px;
        gap: 10px;
    }
}
@media screen and (max-width: 1500px) {
    .foot-list .foot-right{
        grid-template-columns: repeat(5,auto);
    }
}
@media screen and (max-width: 1200px) {
    .foot-list .foot-right{
        grid-template-columns: repeat(3,auto);
    }
}
@media screen and (max-width: 992px) {
    .deqing-foot .foot-list{
        flex-direction: column;
    }
    .foot-right .link-wrap{
        flex: none;
        width: calc((100% - 32px) / 2);
    }
    .foot-right .link-wrap .link-title,
    .link-wrap .link-box .link-item{
        white-space: normal;
    }
}
@media screen and (max-width: 576px) {
    .foot-list .foot-right{
        flex-direction: column;
    }
    .foot-right .link-wrap{
        width: 100%;
    }
    .foot-left .left-companyInfo{
    gap: 20px;
}
}