.bcw-breadcrumb {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 0;
    font-size: 14px;
    color: #666;
    line-height: 1.5;
}

.bcw-breadcrumb a {
    color: #1a3a5c;
    text-decoration: none;
    transition: color 0.3s ease;
}

.bcw-breadcrumb a:hover {
    color: #c41230;
}

.bcw-separator {
    margin: 0 10px;
    color: #999;
}

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

/* 响应式 */
@media (max-width: 768px) {
    .bcw-breadcrumb {
        font-size: 13px;
    }

    .bcw-separator {
        margin: 0 6px;
    }
}

@media (max-width: 480px) {
    .bcw-breadcrumb {
        font-size: 12px;
    }
}
