.fuxuan-foot{
    background: #101622;
    padding-top: var(--padding-top);
}
.fuxuan-foot .foot-top{
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 10px;
}
.fuxuan-foot .foot-logo{
    max-width: 414px;
}
.fuxuan-foot .foot-logo .logo-pic{
    max-width: 149px;
    aspect-ratio: 149/99;
    object-fit: cover;
}
.foot-logo .foot-desc{
    color: #FFF;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 187.5%; /* 187.5% */
    margin-top: 20px;
}
.foot-logo .foot-pic-box{
    display: grid;
    grid-template-columns: repeat(5,1fr);
    gap: 30px;
    margin-top: 54px;
}
.foot-logo .foot-pic-box img{
    width: 50px;
    aspect-ratio: 5/6;
    object-fit: cover;
}

.foot-top .foot-col .foot-title,
.foot-top .foot-contact .foot-title{
    color: #FFF;
    font-family: var(--font-family);
    font-size: var(--small-title-size);
    font-style: normal;
    font-weight: 700;
    line-height: 125%; /* 125% */
}
.foot-top .foot-col ul{
    display: flex;
    flex-direction: column;
    margin-top: 10px;
    /* gap: 30px; */
}
.foot-top .foot-col ul li{
    color: #FFF;
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 500;
    line-height: 268.75%; /* 268.75% */
    max-width: 300px;
}
.foot-top .foot-col ul li a:hover{
    color: var(--primary-color);
}
.foot-top .foot-contact ul li{
    display: flex;
    align-items: center;
    gap: 10px;
}
.foot-top .foot-contact ul li .icon{
    display: flex;
    align-items: center;
    justify-content: center;
    width: 20px;
    height: 20px;
}
.foot-top .foot-contact .foot-media{
    margin-top: 30px;
}
.foot-top .foot-contact .foot-media ul{
    flex-direction: row;
    gap: 8px;
}
.foot-top .foot-contact .foot-media ul li{
    width: 45px;
    height: 45px;
    border: 1px solid rgba(255, 255, 255, 0.30);
    justify-content: center;
}
.foot-top .foot-contact .foot-media ul li:hover{
    background: var(--primary-color);
    color: #fff;
}
.foot-top .foot-contact .foot-media ul li a:hover{
    color: #fff;
}

.foot-line{
    width: 100%;
    height: 1px;
    background: rgba(255, 255, 255, 0.12);
    margin-top: 60px;
}

.fuxuan-foot .foot-bottom p{
    color: rgba(255, 255, 255, 0.70);
    font-family: var(--font-family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: 43px; /* 268.75% */
    padding: 17px 0 22px 0;
    text-align: center;
}

@media screen and (max-width: 992px) {
    .foot-logo .foot-pic-box{
        margin-top: 30px;
    }
}
@media screen and (max-width: 768px) {
    .foot-line{
        margin-top: 30px;
    }
}