.breadcrumb{
    display: flex;
    flex-wrap: wrap;
    list-style: none;
    font-size: 14px;
}
.breadcrumb li{
    padding: 4px;
}
.breadcrumb a{
    color: gray;
    text-decoration: none;
}
.breadcrumb li:not(:last-of-type)::after{
    content: ">";
    color: gray;
    margin: 0 4px;
}
.breadcrumb a:hover{
    color: black;
    font-weight: 700;
}
/* updated on 2023-03-23 18:00 */