.news {
    /* margin-bottom: 60px; */
}
.news-item {
    padding: 32px 0;
    border-bottom: 1px dotted #ddd;
    display: flex;
    justify-content:flex-start;
    align-items: center;
}
.news-item-img {
    width: 204px;
    height: 163px;
}
.news-item-img img {
    width: 204px;
    height: 163px;
    transition: transform .3s ease;
    object-fit: cover;
}
.news-item-img img:hover {
    cursor: pointer;
    transform: scale(1.1);
}

.item-right {
    margin-left: 12px;
}

.item-right a{
    font-size: 18px;
    color: var(--color-text-primary);
}

.item-right a:hover {
    font-weight: bold;
}
.item-right p {
    margin-top: 12px;
    color: var(--color-text-secondary);
    font-size: 12px;
    line-height: 21px;
    text-indent: 0;
}


.pager {
    display: flex;
    justify-content: space-around;
    align-items: center;
    margin-top: 20px;
}
.pager-pre-btn,
.pager-nex-btn{
    font-size: 32px;
    color: var(--color-bg-b);
}
.current-page,
.total-page{
    font-size: 32px;
}
/* .pager a {
    transition: transform .3s linear;
}
.pager a:hover {
    transform: scale(1.2);
} */