body{
    background: #f0f0f0;
    min-height: 100vh;
    color: #333;
}
.pub-title {
    font-weight: bold;
    font-size: 30px;
    margin-bottom: 20px;
}
.list{
    width: 1440px;
    margin: 20px auto;
}
.items-box{
    margin: 0 auto;
    justify-content: flex-start;
}
.list-items{
    flex-wrap: wrap;
}
.list-items .item{
    margin:20px 10px;
}
.single-block{
    display: block;
    width: 337px;
    background-color: #ffffff;
    border-radius: 12px;
}
.single-block:hover{
    transition: .5s;
    transform: translateY(-20px);
    text-decoration: none;
}
.single-block-top{
    width: 100%;
    height: 240px;
    background-color: #151515;
    overflow: hidden;
}
.single-block-top .limit_width {
    object-fit: cover;
    object-position: center;
    height:100%;
}
.single-block-bottom{
    width: 100%;
    height: 129px;
    padding: 15px;
    box-sizing: border-box;
    display: flex;
    justify-content: space-between;
    flex-direction: column;
}
.single-block-bottom .news_title{
    font-family: MicrosoftYaHei-Bold;
    font-size: 18px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 27px;
    letter-spacing: 0px;
    color: #000000;
    text-overflow: -o-ellipsis-lastline;
    overflow: hidden;
    text-overflow: ellipsis;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
}
.single-block-bottom .news_cate{
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
}
.single-block-bottom text{
    font-family: MicrosoftYaHei;
    font-size: 14px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 27px;
    letter-spacing: 0px;
    color: #eaa17d;
}
.single-block-left{
    font-family: MicrosoftYaHei;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    line-height: 21px;
    letter-spacing: 0px;
    color: #666666;
}
.single-block-right{
    font-family: MicrosoftYaHei;
    font-size: 12px;
    font-weight: normal;
    font-stretch: normal;
    letter-spacing: 0px;
    color: #e89a77;
    text-overflow: ellipsis;
    white-space: nowrap;

}
.single-block-right .icon{
    position: relative;
    top: -2px;
    width: 20px;
    height: 10px;
    margin-right: 10px;
}
/**
 * 分页区域
 */
.page-box{
    margin: 0 auto;
    flex-direction: row;
    justify-content: space-around;
    text-align: center;
}
.page-box .paginate{
    display: inline-block;
    width: 35px;
    height: 35px;
    line-height: 35px;
    text-align: center;
    border-radius: 5px;
    background: #fff;
    margin-top: 10px;
    margin-left: 10px;
    color: #333333;
    text-decoration: none;
}
.page-box .paginate:active{
    background: #cd3c39;
    color: #fff;
}
.page-box .paginate:first-child, .page-box .paginate:last-child{
    width: 60px;
}
.page-box .active{
    background: #cd3c39;
    color: #fff;
}

@media (max-width: 1440px) and (min-width:1200px) {
    .list{
        width: 1080px;
    }
    .list-items{
        justify-content: flex-start;
    }
}
@media (max-width: 1200px) and (min-width:767px) {
    .list{
        width: 720px;
    }
    .items-box{
        justify-content: center;
    }
}
@media (max-width:767px) {
    .list{
        width: 95%;
    }
    .list-items,.items-box{
        justify-content: center;
    }
    .list-items .item{
        width: 1.5rem;
    }
    .single-block{
        display: block;
        width: 100%;
        background-color: #ffffff;
        border-radius: 6px;
    }
    .single-block-bottom{
        width: 100%;
        height: auto;
        padding: 0.1rem;
    }
    .single-block-bottom .news_title{
        font-size: 16px;
        margin: 0;
        overflow: hidden;
        white-space: nowrap;
        text-overflow: ellipsis;
    }
    .single-block-bottom p{
        margin-bottom: 0;
    }
    .single-block-top{
        width: 1.5rem;
        height: 1rem;
    }


}

