.breadcrumb a {
    text-decoration: none; /* 去掉下划线 */
    color:rgba(78, 89, 105, 1);
}

.category-list .list-group-item {
    background-color: rgba(255, 251, 247, 1); /* 未选中背景色 */
    color: rgba(0, 0, 0, 0.45); /* 未选中文字颜色 */
    font-size: 16px;
    font-weight: 400;
    border-radius: 4px;
    border: none; /* 去掉边框 */
    margin-bottom: 10px; /* 添加间距 */
}

.category-list .list-group-item.active {
    background-color: rgba(255, 238, 230, 1); /* 选中背景色 */
    color: rgba(222, 73, 1, 1); /* 选中文字颜色 */
}
.category-list .list-group-item.active a{
    color: rgba(222, 73, 1, 1) !important; /* 选中文字颜色 */
}

.list-group-item {
    display: flex;
    justify-content: space-between;
    align-items: center;
    background-color: #FFFFFF; /* 列表底色 */
    border: none;
    border-radius: 4px;
    margin-bottom: 10px;
    transition: background-color 0.3s; /* 平滑过渡效果 */
}

.list-group-item:hover {
    background-color: rgba(255, 251, 247, 1); /* hover时背景色 */
}
.list-group-item:hover .article-title {
    color: rgba(222, 73, 1, 1) !important; /* hover时文字颜色 */
}

.list-group-item .article-info {
    display: flex;
    flex-direction: column;
}

.list-group-item .article-title {
    font-size: 20px;
    font-weight: 400;
    color: rgba(51, 51, 51, 1);
    margin-bottom: 5px;
}
.list-group-item .article-date {
    font-size: 16px;
    color: rgba(51, 51, 51, 0.4);
    margin-bottom: 5px;
}

.article-box .article-title{
    font-size: 40px;
    color: rgba(222, 73, 1, 1);
}
.article-box .article-date {
    font-size: 14px;
    color: rgba(51, 51, 51, 0.61);
    margin-bottom: 10px;
    margin-top: 10px;
    padding-bottom: 10px;
    border-bottom: 1px solid rgba(222, 73, 1, 0.2);
}

.article-box .article-content{
    font-size: 16px;
    color: rgba(51, 51, 51, 1);
    overflow: hidden;
}
.article-box .article-content img{
    max-width: 100%;
    height: auto;
}   

.list-group-item .arrow {
    font-size: 24px;
    color: rgba(51, 51, 51, 0.4);
    display: flex;
    justify-content: flex-end;
} 

.category-list .list-group-item:hover {
    background-color: rgba(255, 238, 230, 0.8); /* hover时背景色 */
    color: rgba(222, 73, 1, 0.8); /* hover时文字颜色 */
    cursor: pointer; /* 鼠标悬停时显示手型光标 */
} 
.category-list .list-group-item:hover a{
    color: rgba(222, 73, 1, 0.8) !important; /* hover时文字颜色 */
} 
.category-list .list-group-item a {
   width: 100%;
   padding: 12px 24px;
} 

.pagination a{
    border-radius: 8px;
    border: 1px solid rgba(222, 73, 1, 0.3);
    color: rgba(51, 51, 51, 0.8);
    margin: 0 5px;
    padding: 8px 16px;
    transition: background-color 0.3s ease, color 0.3s ease;
    cursor: pointer;
    text-decoration: none;
}

.pagination a:hover {
    background-color: rgba(222, 73, 1, 0.1);
    color: rgba(222, 73, 1, 1);
}

.pagination a.active {
    background-color: rgba(222, 73, 1, 1);
    color: #fff;
    border-color: rgba(222, 73, 1, 1);
}

.pagination .active span{
    border-radius: 8px;
    background-color: rgba(222, 73, 1, 1);
    color: #fff;
    border-color: rgba(222, 73, 1, 1);
    margin: 0 5px;
    padding: 8px 16px;
} 
.pagination .disabled span{
    border-radius: 8px;
    background-color: #CCCCCC;
    color: #FFF;
    border-color: rgba(222, 73, 1, 0.1);
    margin: 0 5px;
    padding: 8px 16px;
} 