/* 導航麵包屑 */
.breadcrumb {
    display: flex;

    align-items: center;
    margin: 0 auto 20px auto;
    flex-wrap: wrap;
    /* max-width: 950px; */
    width: 100%;
    font-size: 12px;
    color: #666;

}

.breadcrumb-item {
    color: #898989;
    text-decoration: none;
    transition: color 0.3s ease;
}

/* .breadcrumb-item:hover {
    color: #0056b3;
    text-decoration: underline;
} */

.breadcrumb-separator {
    margin: 0 8px;
    color: #ccc;
}

.breadcrumb-current {
    color: #333;
    font-weight: 500;
}