/* 面包屑导航 */
.breadcrumb-container {
    background-color: #fff;
    padding: 15px 0;
    border-bottom: 1px solid #eee;
}

.breadcrumb {
    background-color: transparent;
    margin: 0;
    padding: 0;
}

.breadcrumb-item + .breadcrumb-item::before {
    content: ">";
    color: #999;
}

.breadcrumb-item a {
    color: #666;
    text-decoration: none;
}

.breadcrumb-item a:hover {
    color: #0a5cad;
}

.breadcrumb-item.active {
    color: #0a5cad;
    font-weight: 500;
}

/* 主内容区域 */
.main-content {
    padding: 40px 0;
}

/* 左侧分类区域 */
.category-sidebar {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    overflow: hidden;
}

.category-image {
    width: 100%;
    height: 180px;
    overflow: hidden;
    position: relative;
}

.category-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.category-sidebar:hover .category-image img {
    transform: scale(1.05);
}

.category-name {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: rgba(10, 92, 173, 0.8);
    color: white;
    padding: 10px 15px;
    font-size: 1rem;
    font-weight: bold;
}

.subcategory-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.subcategory-item {
    border-bottom: 1px solid #f0f0f0;
}

.subcategory-item a{
    text-decoration:none;
}

.subcategory-link {
    display: block;
    padding: 15px 20px;
    color: #333;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
}

.subcategory-link:hover, .subcategory-link.active {
    color: #0a5cad;
    background-color: #f5f9ff;
}

.subcategory-link.active::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 4px;
    background-color: #0a5cad;
}

.subcategory-link i {
    margin-right: 10px;
    color: #999;
    transition: color 0.3s ease;
}

.subcategory-link:hover i, .subcategory-link.active i {
    color: #0a5cad;
}

/* 右侧文章列表区域 */
.article-content {
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0,0,0,0.1);
    padding: 0px 30px 30px 30px;
}
.article-list{
    background-color: #fff;
}
.article-list-content{
    background-color: #fff;
    border-radius: 4px;
    box-shadow: 0 3px 10px rgba(0, 0, 0, 0.1);
    padding: 10px 10px 30px 10px;
}
.content-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
    margin-bottom: 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content-title {
    font-size: 1.5rem;
    color: #333;
    margin: 0;
    font-weight: bold;
}

.filter-controls {
    display: flex;
    align-items: center;
}

.filter-label {
    margin-right: 10px;
    color: #666;
}

.filter-select {
    padding: 5px 10px;
    border: 1px dashed #ddd;
    border-radius: 4px;
    background-color: #fff;
}

.article-item {
    line-height: 40px;
    border-bottom: 1px dashed #eee;
    display: flex;
    transition: background-color 0.3s ease;
}


.article-item a{
    color: #181818;
    text-decoration: none;
}

.article-item:last-child {
    border-bottom: none;
}

.article-item a:hover {
    color: #0a5cad;
}

.article-thumbnail {
    width: 120px;
    height: 120px;
    margin-right: 20px;
    flex-shrink: 0;
    border-radius: 4px;
    overflow: hidden;
}

.article-thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.3s ease;
}

.article-item:hover .article-thumbnail img {
    transform: scale(1.05);
}

.article-info {
    flex: 1;
}

.article-title {
    font-size: 1rem;
    margin-bottom: 10px;
    transition: color 0.3s ease;
}

.article-title a {
    color: #333;
    text-decoration: none;
}

.article-title a:hover {
    color: #0a5cad;
    text-decoration: none;
}

.article-meta {
    color: #999;
    font-size: 0.9rem;
    margin-bottom: 10px;
    display: flex;
    align-items: center;
}

.article-date {
    display: flex;
    align-items: center;
    letter-spacing: 0px;
}

.article-date i {
    margin-right: 5px;
    font-size: 0.8rem;
}

.article-category {
    margin-left: 15px;
    display: flex;
    align-items: center;
}

.article-category i {
    margin-right: 5px;
    font-size: 0.8rem;
}

.article-excerpt {
    color: #666;
    font-size: 0.95rem;
    line-height: 1.6;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

/* 分页样式 */
.pagination-container {
    margin-top: 30px;
    display: flex;
    justify-content: center;
}

.pagination {
    margin: 0;
}

.page-item {
    margin: 0 3px;
}

.page-link {
    color: #666;
    border: 1px solid #ddd;
    border-radius: 4px;
    padding: 8px 15px;
    margin: 0 2px;
    transition: all 0.3s ease;
}

.page-link:hover {
    color: #0a5cad;
    border-color: #0a5cad;
    background-color: #f5f9ff;
}

.page-item.active .page-link {
    background-color: #0a5cad;
    border-color: #0a5cad;
    color: white;
}

.page-item.disabled .page-link {
    color: #ccc;
    border-color: #eee;
    background-color: #f9f9f9;
}

/* 响应式调整 */
@media (max-width: 992px) {
    .category-sidebar {
        margin-bottom: 30px;
    }
    
    .article-item {
        flex-direction: column;
    }
    
    .article-thumbnail {
        width: 100%;
        height: 200px;
        margin-right: 0;
        margin-bottom: 15px;
    }
}

@media (max-width: 768px) {
    .content-header {
        flex-direction: column;
        align-items: flex-start;
    }
    
    .filter-controls {
        margin-top: 10px;
        width: 100%;
    }
    
    .filter-select {
        width: 100%;
    }
    
    .article-thumbnail {
        height: 160px;
    }
    
    .page-link {
        padding: 6px 12px;
        font-size: 0.9rem;
    }
}

@media (max-width: 576px) {
    .article-content {
        padding: 15px;
    }
    
    .article-title {
        font-size: 1rem;
    }
    
    .article-thumbnail {
        height: 140px;
    }
    
    .page-item {
        margin: 0 1px;
    }
    
    .page-link {
        padding: 5px 10px;
        font-size: 0.8rem;
    }
}

/* 右侧文章详情区域 */
.article-detail {
    background-color: #fff;
    border-radius: 4px;
}

.article-header {
    border-bottom: 1px solid #eee;
    padding-bottom: 20px;
    margin-bottom: 25px;
}

.article-title {
    font-size: 1.8rem;
    color: #333;
    margin-bottom: 15px;
    font-weight: bold;
    line-height: 1.4;
}

.article-meta {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
}

.meta-item {
    display: flex;
    align-items: center;
}

.meta-item i {
    margin-right: 8px;
    color: #0a5cad;
}

.article-content {
    font-size: 1.05rem;
    color: #333;
    line-height: 1.8;
}

.article-content p {
    margin-bottom: 20px;
    text-align: justify;
}

.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 4px;
    margin: 20px auto;
    display: block;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.article-content h3 {
    font-size: 1.4rem;
    margin: 30px 0 15px;
    color: #0a5cad;
    font-weight: bold;
}

.article-content ul, .article-content ol {
    margin-bottom: 20px;
    padding-left: 25px;
}

.article-content li {
    margin-bottom: 10px;
}

.locationset{
    padding:0px 0px 10px; 
    border-bottom: 1px solid #eee;
    background-color:#ffffff;
    color: #666666;
    font-size: 16px;
}
.locationset a{
    color: #666666;
    text-decoration: none;
}
.locationset a:hover{
    color: #0a5cad;
}
.main-content{
    min-height: 1000px;
}