_breadcrumb.css 1.62 KB
.cart-bc {
    width: 100%;
    position: relative;
    background: #999;
}

.breadcrumb {
    list-style: none;
    overflow: hidden;
    margin: 0;
    padding: 0;
    height: 32px;

    .current {
        background: #1b1b1b;
        color: #fff;
        z-index: 1;

        i {
            border-color: #fff transparent #fff #1b1b1b;
        }
    }

    li {
        float: left;
        width: 365px;
        text-align: center;
        position: relative;
        z-index: 2;
        font-weight: bold;
        font-size: 14px;
        line-height: 32px;

        &:last-child {
            i {
                right: -17px;
            }
        }

        a {
            color: #fff;
            width: 100%;
            display: inline-block;
            position: relative;
            z-index: 0;
        }

        em {
            position: absolute;
            right: -24px;
            top: -8px;
            width: 0;
            height: 0;
            line-height: 0;
            border-width: 24px 0 24px 24px;
            border-color: transparent transparent transparent #fff;
            border-style: dashed dashed dashed solid;
        }

        i {
            position: absolute;
            right: -6px;
            top: 0;
            width: 0;
            height: 0;
            line-height: 0;
            border-width: 17px 0 17px 17px;
            border-color: #fff transparent #fff #999;
            border-style: dashed dashed dashed solid;
            z-index: 1000;
        }
    }

    .level-1 {
        width: 375px;
    }

    .level-2 {
        width: 400px;
    }

    .level-3 {
        width: 375px;
    }
}