
.sidebar h3 {
    background: var(--party-red);
    height: 70px;
    text-align: center;
    line-height: 68px;
    font-size: 22px;
    font-weight: bold;
    color: #fff;
    display: block;
    margin-bottom: 15px
}

.sidebar ul li {
    margin-bottom: 5px;
    background: #fdf5f5;
}

.sidebar ul li:hover, .sidebar ul li.on {
    background: #fdf5f5;
    color: var(--party-red);
    border-left: var(--party-red) 10px solid;
}

.sidebar ul li a {
    position: relative;
    height: 60px;
    line-height: 60px;
    font-size: 20px;
    font-weight: bold;
    text-align: center;
    border-left: #fdf5f5 10px solid;
    padding-right: 10px;
    display: block;
    overflow: hidden;
}

.sidebar ul li a:hover, .sidebar ul li.on a {
    border-left: 0;
    color: var(--party-red);
}

.category-name {
    font-size: 20px;
    font-weight: bold;
    color: var(--party-red);
}
.category-name .iconfont {
    font-size: 20px;
}



.article-list {

}


.article-list li {
    font-size: 16px;
    padding: 12px 8px;
    border-bottom: #e5e5e5 1px dotted;
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.article-list li:hover {
    background: #fdf5f5;
    border-bottom: #fdf5f5 1px dotted;
}
.article-list li h4 {
    width: calc(100% - 100px);
    display: flex;
    justify-content: start;
    align-items: center;
}
.article-list li h4 i {
    font-size: 4px;
    color: darkred;
}

.article-list li h4 a {
    width: 100%;
    height: 35px;
    line-height: 35px;
    display: block;
    margin: 0 auto;
    padding-left: 10px;
    overflow: hidden;
}

.article-list li span {
    width: 100px;
    font-size: 14px;
    color: #777;
    text-align: right;
}

.video-list .video-item .pic {
    width: 100%;
    overflow: hidden;
}
.video-list .video-item .pic img {
    width: 100%; /* 宽度设为100%，以适应容器宽度 */
    height: 100%; /* 高度设为100%，以适应容器高度 */
    object-fit: cover; /* 以最短边铺满容器，保持图片比例 */
}

.video-list .video-item .title {
    height: 50px;
}

/* 搜索结果 */
.search-result .list .list-title {
    padding: 0 0 15px 25px;
    width: 100%;
    height: 60px;
    line-height: 45px;
    font-size: 22px;
    font-weight: bold;
    border-bottom: #e6e6e6 1px solid;
}
.search-result .list .list-title .search-txt {
    font-weight: normal;
    font-size: 18px;
    margin: 0 0 0 10px;
}
.search-result .list .list-title .search-txt span {
    font-size: 18px;
    font-weight: bold;
    color: #c30;
    padding: 0 5px;
}
.search-result .list .list-content {
    width: 100%;
    padding: 15px 0;
}
.search-result .list .list-content li {
    background: url(../images/square-dot.png) no-repeat -5px center;
    padding-left: 20px;
    width: 100%;
    height: 55px;
    line-height: 55px;
    font-size: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: #efefef 1px solid;
}


/* 分页 */
.page{
    width: 100%;
    margin: 0 auto;
    text-align: center;
}
.pagination {
    justify-content: center;
}
.pagination .page-item {
    margin: 0 2px;
}
.pagination .page-item .page-link {
    display: inline-block;
    height: 36px;
    padding: 0 8px!important;
    font-size: 14px!important;
    line-height: 36px!important;
    background-color: #fff;
    border: 1px solid #e6e6e6;
    border-radius: 5px;
    color: #666;
}
.pagination .active .page-link {
    background-color: #a4121c!important;
    border-color: #a4121c!important;
}
.pagination .page-item .page-link:hover {
    background-color: #a4121c!important;
    border-color: #a4121c!important;
    color: #fff!important;
}
.disabled {
    pointer-events: none;
    opacity: .5;
}
