.fuxuan-news-list{
    padding: 66px 0 110px 0;
}
.fuxuan-news-list .news-tabs{
    display: flex;
    border-bottom: 1px solid #D9D9D9;
}
.news-tabs .tabs-item a{
    display: inline-block;
    width: 270px;
    padding: 9px 0;
    color: #595959;
    font-family: var(--font--family);
    font-size: var(--small-title-size);
    font-style: normal;
    font-weight: 400;
    line-height: 166.667%; /* 166.667% */
    text-align: center;
}
.news-tabs .tabs-item.active a{
    background: #000;
    color: #fff;
    font-weight: 700;
}

.fuxuan-news-list .news-con{
    display: flex;
    gap: 39px;
    margin-top: 40px;
}
.news-con .news-left{
    flex: 1;
    display: grid;
    grid-template-columns: repeat(2,1fr);
    gap: 40px;
}
.news-left .news-item img{
    width: 100%;
    aspect-ratio: 50/33;
    object-fit: cover;
}
.news-left .news-item .news-title{
    color: #000;
    font-family: var(--font--family);
    font-size: var(--small-title-size);
    font-style: normal;
    font-weight: 500;
    line-height: 132%; /* 31.68px */
    margin-top: 20px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
}
.news-left .news-item .news-date{
    color: #7D7D7D;
    font-family: var(--font--family);
    font-size: 14px;
    font-style: normal;
    font-weight: 350;
    line-height: 170%; /* 23.8px */
    margin-top: 14px;
    display: flex;
    gap: 10px;
    align-items: center;
}
.news-left .news-item .news-date .new-circle{
    display: inline-block;
    width: 4px;
    height: 4px;
    background: #9C9C9C;
    border-radius: 50%;
}
.news-left .news-item .news-desc{
    color: #4E4E4E;
    font-family: var(--font--family);
    font-size: 14px;
    font-style: normal;
    font-weight: 350;
    line-height: 170%; /* 23.8px */
    margin-top: 14px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}
.news-left .news-item .news-more{
    color: #000;
    font-family: var(--font--family);
    font-size: 14px;
    font-style: normal;
    font-weight: 500;
    line-height: 170%; /* 23.8px */
    text-transform: uppercase;
    margin-top: 17px;
    display: inline-block;
}


.news-con .news-right{
    width: 242px;
}
.news-right .recent-news{
    border: 1px solid #D9D9D9;
    padding: 19px;
    position: sticky;
    top: 110px;
}
.recent-news .recent-title{
    color: #000;
    font-family: var(--font--family);
    font-size: 18px;
    font-style: normal;
    font-weight: 500;
    line-height: 132%; /* 23.76px */
}
.recent-news .recent-con{
    margin-top: 23px;
    display: flex;
    flex-direction: column;
    gap: 37px;
}
.recent-con .recent-item{
    display: flex;
    align-items: center;
    gap: 15px;
}
.recent-con img{
    width: 86px;
    aspect-ratio: 86/60;
    object-fit: cover;
}
.recent-con p{
    flex: 1;
    color: #000;
    font-family: var(--font--family);
    font-size: 14px;
    font-style: normal;
    font-weight: 400;
    line-height: 149%; /* 20.86px */
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
    overflow: hidden;
}


.fuxuan-news-list #pagesize{
    grid-column: span 2;
    margin: 100px 0 0;
}
.fuxuan-news-list #pagesize ul{
    gap: 17px;
}
.fuxuan-news-list #pagesize ul li{
    width: 40px;
    height: 40px;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fuxuan-news-list #pagesize ul li a{
    width: 100%;
    height: 100%;
    color: #050505;
    font-family: var(--font--family);
    font-size: 16px;
    font-style: normal;
    font-weight: 400;
    line-height: normal;
    border-radius: 2px;
    background: #E0E0E0;
    border: none !important;
    margin: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}
.fuxuan-news-list #pagesize ul li:first-child,
.fuxuan-news-list #pagesize ul li:last-child
{
    width: auto;
}
.fuxuan-news-list #pagesize ul li:last-child a{
    background: #000;
    color: #fff;
}

@media screen and (max-width: 1200px) {
    .news-tabs .tabs-item a{
        width: auto;
        padding: 9px 20px;
    }
    .news-con .news-left{
        gap: 20px;
    }
    .fuxuan-news-list #pagesize{
        margin: 40px 0 0;
    }
    .news-left .news-item .news-date{
        flex-direction: column;
        align-items: flex-start;
        gap: 5px;
    }
    .news-left .news-item .news-date .new-circle{
        width: 1px;
        height: 1px;
        background: #fff;
    }
}
@media screen and (max-width: 768px) {
    .fuxuan-news-list .news-con{
        flex-direction: column;
    }
    .news-con .news-right{
        width: 100%;
    }
}