.l-breadcrumb {
    display: block;
    box-sizing: border-box;
    overflow: hidden;
    height: 24px;
    width: 100%;
    //background-color: #333;
    background-color: #ff0;
    position: relative;
    z-index: 1;
}
.l-breadcrumb__mask {
    position: absolute;
    z-index: 2;
    top: 0;
    right: 0;
    width: 24px;
    height: 24px;
    //background: linear-gradient(to right, rgba(51,51,51,0), rgba(51,51,51,1));
    background: linear-gradient(to right, rgba(255,255,0,0), rgba(255,255,0,1));
}
.l-breadcrumb__list {
    list-style: none;
    width: 100%;
    height: 48px;
    white-space: nowrap;
    overflow: hidden;
    overflow-x: scroll;
    -webkit-overflow-scrolling: touch;
    padding: 0 10px 0 10px;
    font-size: 0;
}
.l-breadcrumb__list li {
    font-size: 12px;
    position: relative;
    overflow: hidden;
    display: inline-block;
    padding: 0 24px 0 0;
    margin-right: 5px;
    height: 24px;
    line-height: 24px;
    //color: #a9a9a9;
    color: #969696;
    font-weight: bold;
}
.l-breadcrumb__list li a {
    //color: #EA4335;
    color: #0096FF;
    text-decoration: none;
    font-size: 12px;
    font-weight: bold;
}
.l-breadcrumb__list li:not(:last-child)::after {
    font-size: 12px;
    position: absolute;
    top: 0;
    right: 0px;
    display: inline;
    content: "\232A";
    height: 24px;
    line-height: 24px;
    //color: #808080;
    color: #969696;
}
