.footer {
    width: 100%;
    height: 176px;
    display: flex;
    flex-direction: column;
    background-color: rgba(65, 89, 250, 0.3);
    align-items: center;
    justify-content: space-evenly;
}

.footer_bar {
   
    position: relative;
}
.footer_bar ul{
    display: flex;
    flex-direction: row;
}
.footer_bar ul li{
    margin-right: 140px;
    color: rgba(255, 255, 255, 1);
    font-size: var(--font20);
}
.footer_bar::after{
    content: "";
    position: absolute;
    left: 0px;
    top: 50px;
    width: 1200px;
    height: 1px;
    background-color: rgba(255, 255, 255, 1);
}
.footer_records{
    width: 1200px;
    display: flex;
    flex-direction: row;
    text-align: center;
    justify-content: space-between;
   
    color: rgba(255, 255, 255, 1);
    font-size: var(--font20);
}