.news-tabs{
    background-color: #F6F9FC;
    font-size: 16px;
    padding: 0 15%;
    text-align: center;
    color: #676767;
    display: flex;
    align-items: center;
    justify-content: center;
}
.news-tabs-item{
    padding: 12px 20px;
    word-break: keep-all;
    margin: 0 20px;
}
.news-tabs-item-active{
    color: #3F82C4;
    border-bottom: 2px solid #3F82C4;
}
.news-box{
    width: 80%;
    margin-left: 10%;
}
.news-item{
    display: flex;
    padding: 20px;
    border-bottom: 1px solid #EFF2F3;
}
.news-img{
    max-width: 20%;
}
.news-text{
    margin-left: 20px;
}
.news-title{
    font-size: 20px;
    font-weight: bold;
    color: #000000;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.news-time{
    color: rgba(0,0,0,0.6);
    font-size: 12px;
    margin: 6px 0 12px;
}
.news-intro{
    font-size: 14px;
    line-height: 22px;
    color: #808080;
    word-break: break-all;
    text-overflow: ellipsis;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.page-box{
    margin-top: 40px;
    text-align: center;
    font-size: 14px;
}
.page-box a{
    margin: 0 4px;
    width: 32px;
    height: 32px;
    border: 1px solid #D9D9D9;
    padding: 4px 8px;
    border-radius: 4px;
}
.current-page{
    border: none !important;
    color: #ffffff !important;
    background-color: #3F82C4;
}
@media screen and (max-width: 768px){
    .news-tabs-item{
        margin: 0;
    }
    .news-box{
        width: 100%;
        margin-left: 0;
    }
    .news-item{
        padding: 20px 0;
    }
    .news-main{
        padding: 0 20px 20px !important;
    }
    .news-title {
        font-size: 16px;
    }
}