/* ============================================
   面包屑导航区域 - 工业风设计
   ============================================ */
.w-mf {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    height: 80px;
    line-height: 80px;
    border-bottom: 1px solid var(--border-color);
    position: relative;
    overflow: hidden;
}

.w-mf label {
    margin-bottom: 0;
}


.w-mf-name {
    font-size: 22px;
    font-weight: 700;
    color: var(--secondary-color);
    letter-spacing: -0.5px;
    position: relative;
    padding-left: 20px;
}

.w-mf-location {
    font-size: 14px;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 8px;
}

.w-mf-location a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color var(--transition-fast);
}

.w-mf-location a:hover {
    color: var(--primary-color);
}

.w-mf-location .separator {
    color: var(--border-color);
}


@media (max-width: 768px) {

    .blank-top {
        height: 65px;
    }

    .w-mf-name {
        display: none;
    }

    .w-mf-location {
        gap: 0px;
        font-size: 13px;
    }

    .w-mf-location label {
        display: none;
    }
}