/* 通用样式文件 */

/* 统一的面包屑导航样式 */
.mcit-breadcrumb-container {
    padding: 15px;
    background-color: #fff;
    border-radius: 2px;
    box-shadow: 0 1px 2px 0 rgba(0,0,0,.05);
    margin-bottom: 15px;
    position: relative;
}

/* 移动端适配 */
@media screen and (max-width: 768px) {
    .mcit-breadcrumb-container {
        padding: 10px;
    }
    
    .layui-breadcrumb {
        font-size: 14px;
    }
}

/* 添加图标样式 */
.mcit-breadcrumb-icon {
    margin-right: 8px;
    color: #1E9FFF;
} 