@charset "UTF-8";

/****導行列****/
.crumb {
    display: block;
    width: calc(100% - 60px);
    max-width: 1520px;
    padding: 25px 0;
    margin: 0 auto;
}

.crumb ol {
    display: block;
    width: 100%;
}

.crumb ol li {
    display: inline;
}

.crumb ol li:first-child {
    top: 1px;
    display: inline-flex;
    align-items: center;
    align-content: center;
    justify-items: center;
    justify-content: center;
}

.crumb ol li::after {
    content: "";
    display: inline-block;
    vertical-align: middle;
    width: 40px;
    height: 1px;
    margin: 0 10px 0 15px;
    background: #cbcbcb;
}

.crumb ol li:last-child::after {
    display: none;
}

.crumb ol li a {
    display: inline;
    font-size: 13px;
    line-height: 1;
    color: #313131;
    font-family: 'NotoSansTC';
}

.crumb ol li a img {
    width: auto;
    height: 13px;
}

.crumb ol li a span {
    font-size: inherit;
    line-height: inherit;
    color: inherit;
    font-family: inherit;
}

/****針對圖片顯示階層處理樣式****/
.crumb__pic span {
    position: absolute;
    opacity: 0;
    pointer-events: none;
}

@media screen and (max-width: 991px) {

    /****導行列****/
    .crumb {
        padding: 20px 0;
    }
}

@media screen and (max-width: 767px) {}

@media screen and (max-width: 575px) {

    /****導行列****/
    .crumb {
        width: calc(100% - 40px);
        padding: 15px 0;
    }

    .crumb ol li::after {
        width: 30px;
        margin: 0 5px 0 10px;
    }
}



/****IOS樣式****/
@supports (-webkit-touch-callout: none) {}