.newsMore {
    background-color: #f4f4f4;
}

.newsMore-content {
    width: 1400px;
    margin: 0 auto;
    padding: 10px 0;
    display: flex;
    padding-top: 40px;
    position: relative
}


.left-category {
    width: 20%;
    background-color: #ffffff;
    box-shadow: 1px 1px 2px #fff;
    border-top: 5px solid #000;
}

.left-category .left-head {
    display: flex;
    align-items: center;

}

.left-category .left-head span {
    color: #000;
    margin-left: 20px;
    font-size: 1.17em;
    display: inline-block;
    margin-top: 1em;
    margin-bottom: 0.6em;
    font-weight: 700;
}

.categoryItem {
    height: 40px;
    padding: 0 25px;
    text-align: left;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    margin: 5px 0;
    display: flex;
    align-items: center;
    position: relative;
}

.categoryItem .category-diretion-icon {
    position: absolute;
    right: 10px;
}

.categoryItem .category-diretion-icon i{
    font-size: 20px;
}

.categoryItem .category-id {
    flex: 1;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
    color: #000;
    font-size: 1rem;
    font-weight: normal;
}

.categoryItem .category-icon {
    position: relative;
    display: inline-block;
    width: 16px;
    height: 16px;
    margin-right: 10px;
}

.categoryItem .category-icon img {
    width: 16px;
    height: 16px;
    margin-right: 10px !important;
    position: absolute;
    top: 0;
    left: 0;
    object-fit: cover;
}

.categoryItem .category-icon img:first-child {
    display: inline-block;
}
.categoryItem .category-icon img:last-child {
    display: none;
}

.categoryItem:hover {
    background-color: #cc0000;
    color: #ffffff;
}


.categoryItem:hover .category-id{
    color: #fff;
}
.categoryItem:hover .category-icon img:first-child {
    display: none;
}
.categoryItem:hover .category-icon img:last-child {
    display: inline-block;
}

.active-category {
    background-color: #cc0000;
    color: #ffffff;
}

.categoryItem.active-category .category-id{
    color: #ffffff;
}
.active-category .category-icon img:first-child {
    display: none !important;
}
.active-category .category-icon img:last-child {
    display: inline-block !important;
}

.right-content {
    flex: 1;
    padding-left: 25px;
    padding-bottom: 10px;
}

.right-content .right-content-title {
    display: flex;
    justify-content: center;
    align-items: center;
    height: 80px;
    background-color: #fff;
    margin-bottom: 10px;
}

.right-content .right-content-title .blog-title{
    display: inline-block;
    font-weight: 700;
    font-size: 2em;
    margin-top: 0.67em;
    margin-bottom: 0.67em;
}

.rightItem {
    padding: 20px;
    margin-bottom: 10px;
    background-color: #ffffff;
    display: flex;
    justify-content: space-between;
    border-top: 5px solid #fff;
}

.rightItem .rightItem-content{
    text-align: left;
    flex: 1;
    /*background-color: #0a58ca;*/
}

.rightItem .article-img{
    border: 1px solid #eee ;
    /* padding: 5px ; */
    display: flex ;
    justify-content: center ;
    align-items: center;
    margin-left: 20px;
    border-radius: 2px;
}

.rightItem .rightTitle {
    padding-bottom: 15px;
    display: flex;
}

.rightItem:hover {
    cursor: pointer;
    box-shadow: 1px 1px 5px #ccc;
    border-top: 5px solid #cc0000;
}


.rightItem:hover .rightTitle a {
    color: #cc0000;
}

.rightItem:hover .rightTitle a:hover{
    text-decoration: underline;
}

.rightItem .rightTitle a {
    color: #000;
    font-size: 1.6rem;
    font-weight: 600;
}

.rightItem:hover img {
    filter: brightness(0.9);
}



.rightItem img {
    width: 300px;
    height: 180px;
    object-fit: cover;
    transition: all 0.4s ease;
}


.short-content {
    color: #000;
    font-size: 1.2rem;
}

.visitTime {
    margin-top: 15px;
    text-align: left;
}

.loading-container{
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 500px;
}

.loading-blog{
    animation: rotation 2s infinite linear;
    width: 50px;
}
@keyframes rotation {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(359deg);
    }
}


/* .tool-right {
    display: flex;
    justify-content: flex-end;
    margin-top: 20px;
}

.el-pagination {
    display: flex;
    align-items: center;
}

.el-pager {
    display: flex;
    align-items: center;
    margin: 0 10px;
    padding: 0;
    list-style: none;
}

.el-pager a {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    min-width: 36px;
    height: 32px;
    margin: 0 2px;
    line-height: 32px;
    background: #fff;
    padding: 0 8px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.2s ease;
    border: 1px solid #ddd;
    color: #000;
}

.el-pager a:hover {
    background-color: #f5f5f5;
}

.el-pager a.is-active {
    background-color: #d82f2f;
    color: #fff;
    font-weight: 700;
    border: 1px solid #d82f2f;
    cursor: default;
}

.el-pager a.ellipsis {
    cursor: default;
    background: transparent;
    border: none;
    color: #999;
    min-width: 20px;
}

.btn-prev,
.btn-next {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    cursor: pointer;
    border: none;
    background-color: #d82f2f;
    color: #fff;
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 0 4px;
    transition: background-color 0.2s ease;
}

.btn-prev:hover,
.btn-next:hover {
    background-color: #b80000;
}

.btn-prev:disabled,
.btn-next:disabled {
    background-color: #ccc;
    cursor: not-allowed;
} */

.no-data {
    text-align: center;
    padding: 100px 0;
    font-size: 28px;
    font-weight: bold;
    color: #999;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 8px;
    margin: 20px 0;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}



.pagination-contain {
    display: flex;
    justify-content: flex-end;
    margin: 40px 0;
}

.pagination {
    display: flex;
    gap: 6px;
    align-items: center;
    flex-wrap: wrap;
}

.page-btn {
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    min-width: 36px;
    height: 32px;
    margin: 0 2px;
    line-height: 32px;
    background: #fff;
    padding: 0 8px;
    border-radius: 4px;
    cursor: pointer;
    text-align: center;
    box-sizing: border-box;
    transition: all 0.2s ease;
    border: 1px solid #ddd;
    color: #000;
}

.page-btn:hover {
    background-color: #f5f5f5;
}

.page-btn.active {
    background-color: #cc0000;
    color: #fff;
    font-weight: 700;
    border: 1px solid #cc0000;
    cursor: default;
    font-style: normal;
}

.pre-btn{
    transform: rotate(180deg);
}

.page-btn.disabled {
    opacity: 0.4;
    cursor: not-allowed;
}

.page-dots {
    padding: 0 6px;
    color: #999;
    user-select: none;
    line-height: 36px;
}
