footer .footer_middle .footer_leftbar ul {
    display: unset;
    gap: 10px;
    flex: 1 1 138px;
}
.history_tabcontent{
    /*display: flex;*/
    width: 1100px;
    /*flex-wrap: wrap;*/
    /*gap: 24px;*/
    /*max-width: 100%;*/
    /*margin: auto;*/
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 56px 24px;
    
}
@media only screen and (min-width: 1000px) and (max-width:1090px) {
    .history_tabcontent {
        width: 800px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 56px 24px;
    }
}
@media only screen and (min-width: 1100px) and (max-width:1190px) {
    .history_tabcontent {
        width: 900px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 56px 24px;
    }
}
@media only screen and (min-width: 1200px) and (max-width:1290px) {
    .history_tabcontent {
        width: 900px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 56px 24px;
    }
}
@media only screen and (min-width: 1300px) and (max-width:1390px) {
    .history_tabcontent {
        width: 900px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 56px 24px;
    }
}
@media only screen and (min-width: 1400px) and (max-width:1490px) {
    .history_tabcontent {
        width: 900px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 56px 24px;
    }
}
@media screen and (max-width: 600px) {
    .history_tabcontent {
        display: flex;
        width: 100%;
        flex-wrap: wrap;
        gap: 24px;
        max-width: 100%;
        margin: auto;
    }
}