#news {
    padding-bottom: 50px;
}

#news .banner {
    width: 100%;
    height: 20vw;
}

.news-sidebar {
    background: #FFFFFF;
    border-radius: 8px;
}

.news-sidebar .sidebar-item {
    text-decoration: none;
    border-bottom: 1px solid #dcdfe6;
    padding: 15px 0;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    color: #303133;
}

.news-sidebar .active {
    background: #409eff !important;
    color: #ffffff !important;
}
.news-sidebar .active i{
    color: #ffffff!important;
}
.sidebar-item i {
    font-size: 20px;
    margin-right: 10px;
    color: #409eff;
}

.sidebar-item:hover {
    background: #409eff;
    color: #ffffff;
}

.sidebar-item:hover i {
    color: #FFFFFF;
}

.sidebar-item:first-child {
    border-radius: 8px 8px 0 0;
}

.sidebar-item:last-child {
    border: none;
    border-radius: 0 0 8px 8px;
}

.sidebar-item h1 {
    margin: 0;
    font-size: 16px;
}

#news .news-box .box-item:last-child {
    border-bottom: none;
}

#news .box-item {
    background: #FFFFFF;
    padding: 25px 35px;
    border-bottom: 1px dashed #dcdfe6;
    display: flex;
}
@media screen and (max-width: 767px) {
    #news .box-item{
        padding: 25px 10px!important;
    }

    /* 手机端新闻标题与描述适当缩小 */
    .box-item .item-title {
        font-size: 15px;
    }

    .box-item .item-desc {
        font-size: 13px;
    }

    /* 手机端分类标签与时间压缩，避免日期被截断 */
    .item-bottom .bottom-category {
        padding: 0 5px;
        font-size: 11px;
    }

    .item-bottom .bottom-time {
        font-size: 12px;
        white-space: nowrap;
    }
}
#news .box-item :last-child {
    border-bottom: none !important;
}

.box-item img {
    width: 100%;
    height: 130px;
    display: block;
}

.box-item .item-title {
    display: block;
    color: #2b2b2b;
    font-size: 17px;
    overflow: hidden;
    white-space: nowrap;
    text-overflow: ellipsis;
    cursor: pointer;
    text-decoration: none;
    font-weight: bold;
    margin: 0;
    padding-bottom: 10px;
    padding-top: 3px;
}

.box-item .item-desc {
    line-height: 1.3;
    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    color: #666;
    margin: 0;
    font-size: 14px;
}

.box-item .item-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.item-bottom .bottom-category {
    height: 24px;
    padding: 0 8px;
    line-height: 22px;
    background-color: #ecf5ff;
    border-color: #d9ecff;
    display: inline-block;
    font-size: 12px;
    color: #409EFF;
    border-width: 1px;
    border-style: solid;
    border-radius: 4px;
    box-sizing: border-box;
    white-space: nowrap;
}

.item-bottom .bottom-time {
    color: #909399;
    font-size: 14px;
}

#news .news-page {
    margin: 20px 0;
    color: #303133;
    font-weight: 700;
}

.news-page .page-button {

    text-decoration: none;
    background-color: #f4f4f5;
    min-width: 30px;
    border-radius: 2px;
    display: inline-block;
    text-align: center;
    line-height: 28px;
    color: #606266;
    cursor: pointer;
}

.news-page .page-list {
    user-select: none;
    list-style: none;
    display: inline-block;
    font-size: 0;
    padding: 0;
}

.page-list a {
    text-decoration: none;
    margin-right: 5px;
    background-color: #f4f4f5;
    color: #606266;
    border-radius: 2px;
    padding: 0 4px;
    font-size: 13px;
    min-width: 35px;
    height: 28px;
    line-height: 28px;
    box-sizing: border-box;
    text-align: center;
    display: inline-block;
}

.page-list a:hover {
    background-color: #409EFF;
    color: #FFF;
}

.page-list a:last-child {
    margin: 0;
}