/* 面包屑容器样式 */
.breadcrumbs {
    background-color: #2c3e50; /* 深蓝色背景 */
    color: white;
    padding: 20px 0;
    margin-bottom: 30px;
    border-bottom: 1px solid rgba(255,255,255,0.1);
}

/* 容器内边距 */
.breadcrumbs .container {
    max-width: 1200px;
    margin: 0 auto;
}

/* 页面标题样式 */
.page-title {
    font-size: 2rem;
    font-weight: bold;
    margin: 0;
    color: white;
    text-transform: uppercase;
    letter-spacing: 1px;
    position: relative;
    padding-bottom: 10px;
}

/* 页面标题下划线 */
.page-title::after {
    content: '';
    position: absolute;
    left: 0;
    bottom: 0;
    width: 60px;
    height: 3px;
    background-color: #3498db;
    border-radius: 2px;
}

/* 面包屑列表样式 */
.breadcrumb-custom {
    display: flex;
    align-items: center;
    list-style: none;
    padding: 0;
    margin: 0;
    flex-wrap: wrap;
    gap: 10px;
    font-size: 1.5rem;
}

.breadcrumb-left {
    text-align: left;
    float: left;
    margin: 0;
    padding: 5px 0;
}

/* 面包屑列表项样式 */
.breadcrumb-custom li {
    display: flex;
    align-items: left;
    position: relative;
}

/* 面包屑链接样式 */
.breadcrumb-custom li a {
    color: #bdc3c7;
    text-decoration: none;
    transition: all 0.3s ease;
    padding: 5px 0;
    display: inline-block;
}

/* 面包屑链接悬停效果 */
.breadcrumb-custom li a:hover {
    color: #3498db;
    transform: translateY(-1px);
}

/* 分隔符样式 */
.breadcrumb-custom li:not(:last-child)::after {
    content: '/';
    color: #7f8c8d;
    margin: 0 10px;
    font-weight: bold;
}

/* 当前页面样式 */
.breadcrumb-custom li.active {
    color: #3498db;
    font-weight: bold;
    font-size:20px;
}

/* 响应式设计 */
@media (max-width: 768px) {
    .breadcrumbs {
        padding: 15px 0;
    }
    
    .page-title {
        font-size: 1.5rem;
    }
    
    .breadcrumb-custom {
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    
    .breadcrumb-custom li:not(:last-child)::after {
        display: none;
    }
    
    .breadcrumb-custom li {
        margin-bottom: 5px;
    }
}

/* 不同主题选项 */

/* 浅色主题 */
.breadcrumbs.light-theme {
    background-color: #f8f9fa;
    color: #333;
    border-bottom: 1px solid #ddd;
}

.breadcrumbs.light-theme .page-title {
    color: #333;
}

.breadcrumbs.light-theme .breadcrumb-custom li a {
    color: #6c757d;
}

.breadcrumbs.light-theme .breadcrumb-custom li.active {
    color: #007bff;
}

/* 红色主题 */
.breadcrumbs.red-theme {
    background-color: #e74c3c;
    color: white;
}

.breadcrumbs.red-theme .page-title::after {
    background-color: #f39c12;
}

.breadcrumbs.red-theme .breadcrumb-custom li a:hover {
    color: #f39c12;
}

/* 绿色主题 */
.breadcrumbs.green-theme {
    background-color: #27ae60;
    color: white;
}

.breadcrumbs.green-theme .page-title::after {
    background-color: #2ecc71;
}

.breadcrumbs.green-theme .breadcrumb-custom li a:hover {
    color: #2ecc71;
}