/* 面包屑导航 */
.breadcrumb-row {
    display: flex;
    align-items: center;
    justify-content: space-between; /* 如果你希望两边对齐 */
    padding: 90px 0 20px 0;
}
.breadcrumb {
  font-size: 14px;
  color: #666;
  display: flex;
}

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

.breadcrumb a:hover {
  color: black;
}

.breadcrumb .divider {
  margin: 0 8px;
  color: #999;
}

