/* 面包屑导航样式 */
.navbar .breadcrumb {
    padding: 15px 0;
    margin: 0;
    list-style: none;
    background-color: transparent;
}

.navbar .crumb-item {
    display: inline-block;
    position: relative;
    padding: 0 15px; /* 增加内边距 */
}

.navbar .crumb-item:not(:last-child)::after {
    content: ">"; /* 将斜杠改为右箭头 */
    position: absolute;
    right: -5px;
    right: -5px;
    color: #666;
    font-size: 16px;
}

.navbar .crumb-item a {
    color: #333;
    text-decoration: none;
    font-size: 18px; /* 增大字体大小 */
    transition: all 0.3s ease;
}

.navbar .crumb-item.current a,
.navbar .crumb-item a:hover {
    color: #2c6ecb;
    font-weight: 500;
}

.navbar .crumb-item.hvr-push a {
    display: inline-block;
    vertical-align: middle;
    transform: translateZ(0);
    box-shadow: 0 0 1px rgba(0, 0, 0, 0);
    backface-visibility: hidden;
    transition-duration: 0.3s;
    transition-property: transform;
}

.navbar .crumb-item.hvr-push a:hover,
.navbar .crumb-item.hvr-push a:focus,
.navbar .crumb-item.hvr-push a:active {
    transform: scale(0.95);
}

/* 头部图片样式 */
.header-img {
    width: 100%;
    overflow: hidden;
    position: relative;
}

.header-image img {
    width: 100%;
    height: auto;
    max-height: 500px; /* 添加最大高度限制 */
    object-fit: cover; /* 保持比例并覆盖容器 */
    display: block;
}

/* 主内容区域样式 */
.main-content {
    padding: 40px 0;
    background-color: #f8fafc;
}
.main-content p {
    font-size: 18px;
    line-height: 1.8;
}

@media (max-width: 768px) {
    .navbar .crumb-item {
        padding: 0 8px;
    }

    .main-content {
        padding: 20px 0;
    }

    .header-image img {
        min-height: 150px;
    }
}
