.news-box {
    padding: 0 calc((100% - 1200px) / 2);
    background-color: #F3F4F6;
    display: flex;
    justify-content: space-between;
    width: 1200px;
}
.news-nav {
    box-sizing: border-box;
    padding: 20px calc((100% - 1200px) / 2);
    background-color: #F3F4F6;
}

.news-container {
    width: 890px;
    margin-bottom: 32px;
}
.news-container .news-filter {
    min-height: 160px;
    background-color: #fff;
    padding: 32px 0;
    border-radius: 8px;
    box-sizing: border-box;
    padding-right: 32px;
}
.news-container .news-filter .layui-form-item:last-child{
    margin: 0;
}
/* 列表 */
.news-list {
    margin-top: 20px;
    box-sizing: border-box;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
}
.news-list .news-item {
    display: flex;
    padding-bottom: 20px;
    border-bottom: 1px dashed rgb(201, 201, 201);
    margin-bottom: 20px;
}
.news-list .news-item:last-child {
    border: none;
}


.news-list .news-item:hover {
    background-color: rgb(248, 248, 248);
}
.news-list .news-item .news-left-img {
    width: 200px;
    height: 120px;
}
.news-list .news-item .news-left-img img {
    width: 200px;
    height: 120px;
}
.news-list .news-item .news-item-rigth {
    margin-left: 30px;
    width: 73%;
}
.news-list .news-item .news-item-rigth p:nth-child(1) {
    font-size: 18px;
    color: #376DE5;
    font-weight: bold;
}
.news-list .news-item .news-item-rigth p:nth-child(2) {
    font-size: 15px;
    color: rgb(75, 75, 75);
    margin-top: 8px;
    line-height: 24px;
}
.news-list .news-item .news-item-rigth p:nth-child(3) {
    font-size: 16px;
    color: #75758C;
    font-size: 12px;
    margin-top: 16px;
    display: flex;
    justify-content: space-between;
}

/* 右边推荐 */
.article-rigth {
  width: 276px;
  background-color: #F3F4F6;
}
.article-rigth .recommend {
    border-radius: 8px;
    background-color: #fff;
    padding: 16px;
}
.article-rigth .recommend h2 {
    font-size: 20px;
    font-weight: bold;
    margin-bottom: 6px;
}
.recommend-item {
    height: 40px;
    line-height: 40px;
}
.recommend-item span:nth-child(1){
    display: inline-block;
    font-size: 14px;
    font-weight: bold;
    width: 24px;
    height: 24px;
    text-align: center;
    line-height: 24px;
    border-radius: 4px;
    border: 1px solid #ececec;
    box-sizing: border-box;
}
.recommend .recommend-item:nth-child(2) span:nth-child(1){
    background-color: rgb(227, 77, 89);
    color: #fff;
}
.recommend .recommend-item:nth-child(3) span:nth-child(1){
    background-color: rgb(237, 123, 47);
    color: #fff;
}
.recommend .recommend-item:nth-child(4) span:nth-child(1){
    background-color: rgb(255, 181, 96);
    color: #fff;
}

.recommend-item span:nth-child(2){
    font-size: 14px;
}

.recommend-item span:nth-child(2) a:hover {
    color: rgb(38, 111, 232);
}

#pageDemo {
    width: 100%;
    display: flex;
    justify-content: center;
}


