.news-cate {
    display: flex;
    justify-content: flex-start;
    align-items: center;
    padding: 15px 0;
}

.news-cate li {
    font-size: 16px;
    border-right: 2px solid var(--color-border);
    line-height: 1;
    padding: 0 20px;
}

.news-cate li:last-child {
    border-right: none;
}

.news-cate li a {
    position: relative;
}
.news-cate li a:hover {
    color: #f44;
}

.news-cate li.on a:after {
    content: '';
    display: inline-block;
    width: 100%;
    height: 3px;
    background: #f44;
    border-radius: 2px;
    position: absolute;
    left: 0;
    bottom: -8px;
}

.news-body {
    display: flex;
    margin-top: 5px;
    margin-bottom: 30px;
    justify-content: flex-start;
    align-items: flex-start;
}

.news-body .list {
    width: 820px;
    overflow: hidden;
    border: 1px solid #E6E6E6;
    padding: 20px 20px 0 20px;
}

.news-body .list .item {
    display: flex;
    padding: 20px 0;
    border-bottom: 1px solid #EDEFF2;
}

.news-body .list .item:first-child {
    padding-top: 0;
}

.news-body .list .item:last-child {
    border-bottom: 0;
}

.news-body .list .item .img {
    width: 230px;
    height: 124px;
    flex-shrink: 0; /*右边内容多时别挤我*/
}

.news-body .list .item .img img {
    width: 100%;
    height: 100%;
}

.news-body .list .item .info {
    flex: 1;
    padding-left: 20px;
    overflow: hidden;
}

.news-body .list .item .info .title {
    font-size: 16px;
    font-weight: 600;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}

.news-body .list .item .info .intro {
    font-size: 14px;
    color: #777;
    line-height: 24px;
    height: 48px;
    margin: 10px 0 18px 0;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}

.news-body .list .item .info .extra {
    color: #999;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.news-body .list .item .info .extra .iconfont {
    font-size: 13px;
}

.news-body .list .item .info .extra .iconfont:before {
    font-size: 16px;
    margin-right: 5px;
}

.news-body .right {
    width: 360px;
    margin-left: 20px;
    border: 1px solid #E6E6E6;
    padding: 10px 15px;
}

.news-body .right dl {
    width: 100%;
    background-color: #fff;
    margin-bottom: 10px;
}

.news-body .right dl dt {
    font-size: 18px;
    font-weight: bold;
    color: #666;
    padding-bottom: 10px;
    border-bottom: 1px solid #F3F3F3;
    display: flex;
    align-items: center;
}

.news-body .right dl dt img {
    height: 18px;
    margin-right: 10px;
}

.news-body .right dl dd {
    border-bottom: dashed 1px #eee;
    padding: 12px 0px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.news-body .right dl dd .iconfont {
    color: #999;
    margin-left: 8px;
    font-size: 12px;
}
.news-body .right dl dd .iconfont:before {
    font-size: 15px;
    margin-right: 2px;
}

.news-body .right dl dd a {
    font-size: 14px;
    display: block;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
/************详细页************/
.news-body .detail {
    width: 820px;
    overflow: hidden;
    border: 1px solid #E6E6E6;
    padding: 20px 20px 0;
}
.news-body .detail .title {
    color: #444;
    font-weight: normal;
    font-size: 26px;
    text-align: center;
}
.news-body .detail .extra {
    color: #999;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    margin-top:10px;
    font-size:13px;
}
.news-body .detail .content {
    width: 100%;
    margin-top: 20px;
    border-top: 1px dashed #E1E1E1;
    border-bottom: 1px dashed #E1E1E1;
    padding: 20px 0;
    line-height: 36px;
    font-size: 16px;
    color: #333;
}
.news-body .detail .content p { 
    text-indent: 2em;
    margin-bottom: 15px;    
    width: 100%;
}
.news-body .detail .content img {
    width: auto;
    max-width: 100%;
    display: block;
    margin: 0 auto;/*左右居中*/
}
.news-body .detail .pre-next {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    padding: 20px 0;
}
.news-body .detail .pre-next .pre {
    width: 50%;
    text-align: left;
    padding-right: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}
.news-body .detail .pre-next .next {
    width: 50%;
    text-align: right;
    padding-left: 15px;
    white-space: nowrap;
    text-overflow: ellipsis;
    overflow: hidden;
}