/* 热门频道 */
.xu-hot_pindao {
    width: 100%;
    height: 40px;
    color: #B78F5C;
    font-size: 15px;
    border-top: 2px solid #B78F5C;
    border-bottom: 2px solid #B78F5C;
    padding-left: 10px;
    box-sizing: border-box;
    display: flex;
}

.xu-hot_pindao>li {
    margin-right: 16px;
    line-height: 36px;
}

.xu-hot_pindao>li .hot_pindao_active {
    padding-bottom: 2px;
    color: #B40606;
    font-weight: bold;
    border-bottom: 2px solid #B40606;
}

.xu-hot_pindao>li>a {
    color: #B78F5C;
}

/* 新闻内容  */
.xu-news {
    width: 100%;
    padding: 22px 10px 0px;
    box-sizing: border-box;
}

.xu-news-item {
    width: 100%;
    height: 110px;
    display: flex;
    margin-bottom: 22px;
}

.xu-news .xu-news-item:last-child {
    margin-bottom: 6px;
}

.xu-news-item__img {
    display: block;
    width: 120px;
    height: 110px;
    object-fit: cover;
    margin-right: 9px;
}

.xu-news-item__right {
    width: 64%;
}

.xu-news-item__right__title {
    font-size: 15px;
    font-weight: bold;
    color: #FFFFFF;
    line-height: 20px;
    /* height: 40px; */
    margin-bottom: 4px;
}

.xu-ellipsis {
    display: -webkit-box;
    /* 必须设置display属性为-webkit-box */
    overflow: hidden;
    /* 超出部分隐藏 */
    text-overflow: ellipsis;
    /* 显示省略号 */
    -webkit-line-clamp: 2;
    /* 限制显示两行 */
    -webkit-box-orient: vertical;
    /* 垂直方向上的换行 */
}

.xu-news-item__right__text {
    font-size: 13px;
    color: #A2A2A2;
    line-height: 20px;
    height: 40px;
    margin-bottom: 8px;
}

.xu-news-item__right__bottom {
    font-size: 12px;
    color: #fff;
    display: flex;
    justify-content: space-between;
}

.news_item_tag {
    display: flex;
    align-items: center;
}

.news_item_tag .item_tag_icon {
    color: #FF7A7A;
    font-size: 16px;
    margin-right: 2px;
}

.news_item_tag .item_tag_cont {
    width: 90px;
    height: 16px;
    overflow: hidden;
}

.news_item_tag .item_tag_cont>a {
    color: #FF7A7A;
}

.news_item_time {
    font-size: 11px;
    color: #CCCCCC;
}