.news-list{
    background: #F3F4F8;;
}
.news-list .item{
    width: 100%;
    height: 195px;
    padding: 30px;
    box-sizing: border-box;
    background: #FAFDFF;
    border-radius: 12px;

    display: flex;
    align-items: center;

    margin-bottom: 20px;
}
.news-list .item .cover{
    flex-shrink: 0;
    width: 240px;
    height: 100%;
    border-radius: 12px;
    overflow: hidden;
}
.news-list .item .cover img{
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}
.news-list .item .content{
    width: calc(100% - 240px);
    box-sizing: border-box;
    padding: 0 50px 0 30px;
}
.news-list .item .title{
    font-size: 20px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #5A6779;
    line-height: 20px;
}
.news-list .item .description{
    height: 66px;
    font-size: 14px;
    font-weight: 400;
    color: #5A6779;
    line-height: 22px;

    display: -webkit-box;
    overflow: hidden;
    text-overflow: ellipsis;
    line-clamp: 3;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;

    margin-top: 18px;
}
.news-list .item .date{
    font-size: 14px;
    font-weight: 400;
    color: #B9B9B9;
    line-height: 14px;

    margin-top: 5px;
}
.news-list .item .btn{
    flex-shrink: 0;
    display: block;
    width: fit-content;
    height: 32px;
    padding: 1px 20px;
    border-radius: 16px;
    background: rgba(43,117,255,0.1);

    font-size: 14px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #2773FF;
    line-height: 32px;
}
.news-list .item:hover{
    background: #FFF;
}
.news-list .item:hover .title{
    color: #333;
}
.news-list .item:hover .description{
    color: #35353F;
}
.news-list .item:hover .btn{
    color: #FFFFFF;
    background: #2773FF;
}

.news-list .pagination{
    margin-top: 50px;
}
.news-list .pagination ul{
    display: flex;
    justify-content: center;
}
.news-list .pagination .prev::after{
    display: inline-block;
    content: '';
    width: 10px;
    height: 10px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(135deg);
}
.news-list .pagination .next::after{
    display: inline-block;
    content: '';
    width: 10px;
    height: 10px;
    border-right: 1px solid #333;
    border-bottom: 1px solid #333;
    transform: rotate(-45deg);
}
.news-list .pagination li{
    width: 30px;
    height: 30px;
    border-radius: 7px;
    border: 1px solid transparent;

    font-size: 14px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 30px;
    text-align: center;

    margin: 0 10px;
}
.news-list .pagination li.active{
    background: #FFFFFF;
    border: 1px solid #2773FF;

    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #2773FF;
}
@media screen and (max-width: 767px) {
    .news-list .item{
        height: 2rem;
        padding: 0.2rem;
        border-radius: 0.1rem;
        margin-bottom: 0.2rem;
    }
    .news-list .item .cover{
        width: 2rem;
        border-radius: 0.1rem;
    }
    .news-list .item .content{
        width: calc(100% - 2rem);
        padding: 0 0 0 0.2rem;
    }
    .news-list .item .title{
        min-height: 0.72rem;
        font-size: 0.24rem;
        line-height: 1.5;
    }
    .news-list .item .description{
        display: none;
    }
    .news-list .item .date{
        font-size: 0.18rem;
    }
    .news-list .item .btn{
        display: none;
    }
    .news-list .pagination{
        margin-top: 1rem;
    }
    .news-list .pagination li{
        width: 0.6rem;
        height: 0.6rem;
        border-radius: 0.05rem;
        border: 0.01rem solid transparent;

        font-size: 0.2rem;
        font-weight: 600;
        color: #333333;
        line-height: 0.6rem;
        text-align: center;

        margin: 0 0.15rem;
    }
}
.news-detail{
    background: #F3F4F8;;
}
.news-detail .wrapper{
    display: flex;
}
.news-detail .main{
    width: calc(100% - 370px);
    box-sizing: border-box;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 30px 45px 80px;
}
.news-detail .main .title{
    font-size: 32px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #35353F;
    line-height: 44px;
}
.news-detail .main .date{
    font-size: 14px;
    font-family: PingFangSC-Medium, PingFang SC;
    font-weight: 500;
    color: #B8BEC6;
    line-height: 22px;

    margin-top: 20px;
}
.news-detail .main .richtext{
    margin-top: 20px;

    line-height: 1.6;
}
.news-detail .main .richtext img{
    max-width: 100% !important;
}
.news-detail .main .richtext p,.news-detail .main .richtext span{
    text-wrap: unset!important;
}
.news-detail .main .page{
    font-size: 14px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #35353F;
    line-height: 32px;

    margin-top: 120px;
}
.news-detail .main .page span{
    color: #5A6779;
    font-family: unset;
    font-weight: unset;
}
.news-detail .main .page li:hover span{
    color: #35353F;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
}

.news-detail .new{
    flex-shrink: 0;
    width: 340px;
    height: fit-content;
    margin-left: 30px;
    background: #FFFFFF;
    border-radius: 12px;
    padding: 40px 30px;
    box-sizing: border-box;
}
.news-detail .new .name{
    font-size: 20px;
    font-family: PingFangSC-Semibold, PingFang SC;
    font-weight: 600;
    color: #333333;
    line-height: 20px;
}
.news-detail .new .item{
    display: block;
    margin-top: 28px;
}
.news-detail .new .title{
    font-size: 14px;
    font-weight: 400;
    color: #333333;
    line-height: 24px;
}
.news-detail .new .date{
    font-size: 14px;
    font-weight: 400;
    color: #B9B9B9;
    line-height: 14px;

    margin-top: 6px;
}

@media screen and (max-width: 767px) {
    .news-detail .wrapper{
        flex-wrap: wrap;
    }
    .news-detail .main{
        width: 100%;
        padding: 0;
        background: unset;
    }
    .news-detail .main .title{
        font-size: 0.4rem;
        line-height: 1.6;
    }
    .news-detail .main .date{
        font-size: 0.2rem;
        margin-top: 0.2rem;
    }
    .news-detail .main .richtext{
        font-size: 0.24rem;
        margin-top: 0.2rem;
    }
    .news-detail .main .page{
        font-size: 0.2rem;
        line-height: 1.6;
        margin-top: 1.2rem;
    }
    .news-detail .new{
        display: none;
    }
}