

.news_list {margin-top:7rem;min-height: 50vh;display: flex;flex-wrap: wrap;gap:2rem;padding:1rem 0 0;}
.news_list li { flex:0 0 calc(50% - 1rem);border: 1px solid #f5f5f5;padding: 1rem;}
.news_list li a {color:#fff;}
.news_list li .title{
    line-height: 2.4rem;height: 2.4rem;  display: -webkit-box;
    -webkit-box-orient: vertical; -webkit-line-clamp: 1;
    overflow: hidden;margin-bottom: 1rem;font-size: 1.2rem;
    font-weight: 600;
}
.news_list li .intro{
    font-size: 1rem;
    line-height: 2rem;height: 4rem;  display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;margin-bottom: 1rem;
}
.news_list li:hover a{color: #c9a227;}



.news{margin-top:7rem;padding: 2rem 0;color: #ffffff;}
.news .title{font-size: 1.8rem;margin-bottom: 1rem;}
.news .time{margin: 1rem 0;}
.news .line {border-bottom: 1px solid #e1e3e6;height: 0.5rem;}
.news .content{padding: 2rem 0;margin-bottom: 2rem;}
.news .content {line-height: 2rem;border-bottom: 1px solid #e1e3e6;}
.news .link a{display: block;color: #ffffff;margin-bottom: 1rem;}
.news .link a:hover{color: #c9a227;}


@media (max-width: 768px) {
    .news_list {margin-top: 8rem;}
    .news_list li {flex: 0 0 100%;}
}


.pagination {
    text-align: center;
    padding: 2rem 0;
}
.pagination li {
    display: inline-block;
    margin: 0 5px;
}
.pagination li a, .pagination li span{
    position: relative;
    display: inline-block;
    font-size: 1rem;
    font-weight: 300;
    height: 2.5rem;
    padding: 0 1.25rem;
    line-height: 2.5rem;
    background: #e6e6e8;
    text-align: center;
    color: #5b5858;
    z-index: 1;
    width:100%;
    border-radius: 2.5rem;
}
.pagination .active a{
    background: #c9a227;
    color: #FFF;
}