footer{
    width: 100%;
    background: #0F172A;
}
.footer_content{
    max-width: 1200px;
    margin: 0 auto;
    padding: 40px 0 20px 0;
}
.footer_content_top{
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 40px;
    box-sizing: border-box;
}
.footer_content_top_left{
    font-weight: bold;
    font-size: 26px;
    color: #FFFFFF;
    line-height: 35px;
}
.footer_content_top_left::after{
    content: '';
    display: block;
    width: 106px;
    height: 5px;
    background: #1D4ED8;
    margin-top: 9px;
}
.footer_content_top_right{
    display: flex;
    gap: 52px;
    flex-wrap: wrap;
}
.footer_content_top_right_item{
    font-size: 16px;
    color: #FFFFFF;
    line-height: 21px;
    cursor: pointer;
    display: flex;
    align-items: center;
    position: relative;
}
.footer_content_top_right_item:hover{
    color: rgba(255, 255, 255, .7);
}
.footer_content_top_right_item_hover{
    display: flex !important;
    align-items: center;
}
.footer_content_top_right_item_hover_img{
    width: 16px;
    height: 16px;
}
.footer_content_top_right_item_hover:hover{
    .footer_content_top_right_label{
        display: block;
        word-break: keep-all;
        left: 50%;
        transform: translateX(-50%);
    }
}
.footer_content_top_right_label{
    /* width: 100px; */
    position: absolute;
    max-height: 200px;
    overflow-y: auto;
    bottom: 20px;
    padding: 5px 10px;
    background: #FFFFFF;
    border-radius: 5px;
    font-size: 14px;
    color: #000;
    line-height: 17px;
    display: none;
    
}
.footer_content_top_right_label a{
    margin-bottom: 5px;
}

.footer_content_top_right_label a:hover{
    opacity: 0.7;
}
.footer_content_line{
    width: 100%;
    height: 1px;
    background: rgba(230,230,230,0.4);
    margin: 37px 0 26px 0;
}

.footer_content_bottom_item{
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 25px;
    font-size: 14px;
    color: #999999;
    line-height: 19px;
    margin-bottom: 4px;
}

@media (min-width: 769px) and (max-width: 1239px) {
    .footer_content_top{
        gap: 50px;
    }
    .footer_content_top_right{
        gap: 22px 65px;
    }
    .footer_content_bottom_item{
        flex-wrap: wrap;
    }
}

@media (max-width: 768px) {
    footer{
        display: none;
    }
}