#footer{
    width: 100%;
    position: relative;
    bottom: 0;
    background: var(--bgWhite);
    box-sizing: border-box;
    padding: 28px 40px 14px;
}
.footer-wrap1{
    display: flex;
    flex-wrap: wrap;
    flex-direction: row-reverse;
}
.footer-item1{ 
    display: flex; 
    margin-left: 20px;
    align-items: center;
    margin-bottom: 28px;
    position: relative;
    cursor: pointer;
}
.footer-item1-icon{
    width: 32px;
    margin-right: 8px;
}
.footer-item1-dsc{
    font-size: 12px;
    color: #000;
}
.footer-item1:hover .coderPic{
    opacity: 1;

}
.coderPic{
    pointer-events: none;
    width: 150px;
    position: absolute;
    top: -150px;
    left: 116px;
    transform: translate(-50%,0);
    z-index: 100;
    border: 2px #64bb46 solid;
    opacity: 0;
    transition: all 0.3s ease-in-out;
}

.footer-wrap2{
    display: flex;
    align-items: center;
    position: relative;
    justify-content: space-between;
    flex-wrap: wrap;
}
.bottom-logo{
    width: 176px;
    display: block;
    padding: 10px;
    margin-right: 30px;
}
.libox{
    display: flex;
    align-items: center;
}
.libox a{
    display: block;
    color: var(--color-gray-33);
    font-size: 12px;
    padding: 0 1.5em;
    border-right: 1px var(--color-gray-e6) solid;

}
.libox a:last-child{
    border: none;
    padding-right: 0;
}
.libox a:hover{
    color: var(--color-gray-80);
}
.footer-btem1{
    display: flex;
    align-items: center;
    flex-wrap: wrap;
}
@media screen and (max-width: 1264px) {
    .footer-btem1{
        width: 100%;
        justify-content: center;
    }
    .footer-btem2{
        width: 100%;
        justify-content: center;
        margin-top: 30px;
    }
    .libox{
        width: 100%;
        justify-content: center;
    }

}

@media screen and (max-width: 900px) {
    .footer-wrap1{
        justify-content: center;
        align-items: center;
        flex-direction: column-reverse;
    }
    .footer-item1{
        margin: 10px;
    }
    .bottom-logo{
        margin-right: 0;
    }
    .footer-wrap2{
        border-top: 1px var(--color-gray-e6) solid;
        padding-top: 20px;
        margin-top: 20px;
    }
    .libox{
        flex-wrap: wrap;
    }
    .libox a{
        margin-bottom: 6px;
    }
    .footer-item1:hover .coderPic{
        opacity: 1;
        display: block;
    
    }
    .coderPic{
        pointer-events: all;
        display: none;
        opacity: 1;
        transition: none;

    }

}