.committee-wrap{
    padding-top: 81px;
}
.container {
    max-width: 800px;
    margin: 0 auto;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    padding: 20px;
}
.news-wrap{
    min-height: calc(100vh - 252px);
}
.error-message,.loading{
    width: 100%;
    height: calc(100vh - 252px);
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 16px;
    color: #565C66;
}
.news-list{
    width: 1200px;
    margin: 32px auto;
    display: flex;
    flex-wrap: wrap;
    gap:24px;
}
.news-item {
    width: 384px;
    background: #E0F3FF;
    border-radius: 12px;
    -webkit-border-radius: 12px;
    -moz-border-radius: 12px;
    -ms-border-radius: 12px;
    -o-border-radius: 12px;
}
.news-inner{
    padding: 16px 12px;
}
.news-img img{
    border-radius: 12px 12px 0 0;
    -webkit-border-radius: 12px 12px 0 0;
    -moz-border-radius: 12px 12px 0 0;
    -ms-border-radius: 12px 12px 0 0;
    -o-border-radius: 12px 12px 0 0;
}
.news-title {
    font-size: 18px;
    margin-bottom: 8px;
    text-overflow: ellipsis;
    overflow: hidden;
    white-space: nowrap;
}
.news-date {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    color: #999;
}
.news-date i{
    width: 12px;
    height: 12px;
    background: url('../images/news-arrow.png') no-repeat;
    background-size: cover;
    display: inline-block;
    vertical-align: middle;
    margin-left: 4px;
}
.view-details {
    color: #006EFF;
    text-decoration: none;
    font-size: 14px;
}
.view-details:hover {
    text-decoration: underline;
}
.pagination {
    display: flex;
    justify-content: center;
    margin:0 0 60px;
}
.pagination a {
    font-size: 14px;
    color: #565C66;
    min-width: 30px;
    min-height: 30px;
    text-decoration: none;
    border: 1px solid #ccc;
    margin: 0 4px;
    border-radius: 2px;
    -webkit-border-radius: 2px;
    -moz-border-radius: 2px;
    -ms-border-radius: 2px;
    -o-border-radius: 2px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pagination a.active,.pagination a:hover:not(.active) {
    background-color: #006EFF;
    color: white;
    border: 1px solid #006EFF;
}
.next-img,.prev-img{
    display: inline-block;
}
/* .next-img{
    width: 6px;
    height: 10px;
    background: url('../images/news-next.png') no-repeat;
    background-size: cover;
}
.prev-img{
    width: 6px;
    height: 10px;
    background: url('../images/news-prev.png') no-repeat;
    background-size: cover;
} */
.next-img,.prev-img{
    position: relative;
    width: 6px;
    height: 10px;
}
.next-img::before {
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/news-next.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.prev-img::before{
    content: "";
    position: absolute;
    width: 100%;
    height: 100%;
    background-image: url('../images/news-prev.svg');
    background-size: contain;
    background-repeat: no-repeat;
}
.pagination a:hover .next-img::before,.pagination a:hover .prev-img::before{
    filter: brightness(0) invert(1);
}