/* ==================== 统一页面Banner样式 ==================== */
.page-banner {
    position: relative;
    width: 100%;
    height: auto;
    overflow: hidden;
    margin-bottom: 0;
}

.page-banner-img {
    width: 100%;
    height: auto;
    object-fit: cover;
    object-position: center;
    display: block;
}

.page-banner-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.page-banner-title {
    font-size: 48px;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 15px;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.5);
    animation: fadeInDown 0.8s ease-out;
}

.page-banner-desc {
    font-size: 18px;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 20px;
    text-align: center;
    text-shadow: 1px 1px 2px rgba(0, 0, 0, 0.5);
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* 面包屑导航区域 */
.breadcrumb-section {
    background-color: #f8f9fa;
    padding: 20px 0;
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.01), 0 3px 6px rgba(141, 0, 4, 0.1);
    position: relative;
    z-index: 10;
}

.breadcrumb {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 16px;
    color: #666;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

.breadcrumb a {
    color: #666;
    text-decoration: none;
    transition: color 0.3s ease;
}

.breadcrumb a:hover {
    color: #FFB503;
}

.breadcrumb .separator {
    color: #999;
}

/* 动画效果 */
@keyframes fadeInUp {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* 响应式设计 */
@media (max-width: 1024px) {
    .page-banner-title {
        font-size: 38px;
    }
    
    .page-banner-desc {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .page-banner-title {
        font-size: 32px;
    }
    
    .page-banner-desc {
        font-size: 16px;
    }
    
    .breadcrumb-section {
        padding: 15px 0;
        box-shadow: 0 4px 8px rgba(0, 0, 0, 0.01), 0 2px 4px rgba(141, 0, 4, 0.15);
    }
    
    .breadcrumb {
        font-size: 12px;
    }
}

@media (max-width: 480px) {
    .page-banner-title {
        font-size: 26px;
    }
    
    .page-banner-desc {
        font-size: 14px;
    }
    
    .breadcrumb-section {
        padding: 12px 0;
        box-shadow: 0 3px 6px rgba(0, 0, 0, 0.01), 0 1px 3px rgba(141, 0, 4, 0.12);
    }
    
    .breadcrumb {
        font-size: 11px;
        gap: 5px;
    }
}
