
/* 面包屑容器 - 整体靠右 */
.breadcrumb {
    display: flex;
    align-items: center;
    justify-content: flex-end; /* 关键：整体右对齐 */
    gap: 15px;
    padding: 15px 18px;
    font-family: Arial, sans-serif;
    font-size: 18px;
    color: #000;
}

/* 自定义箭头图标（代替指南针） */
.arrow-icon {
    width: 15px;
    height: 15px;
    position: relative;
}
.arrow-icon::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) rotate(45deg);
    width: 10px;
    height: 10px;
    border: 3px solid #26a69a; /* 青绿色，和原图风格匹配 */
    border-left: none;
    border-bottom: none;
}

/* 分隔符 */
.separator {
    color: #666;
    margin: 0 8px;
}

/* 链接样式 */
.breadcrumb a {
    color: #E67E22;
    text-decoration: none;
}
.breadcrumb a:hover {
    text-decoration: underline;
}

/* 当前页面文字 */
.current-page {
    color: #E67E22;
}
