.main-content .news-category{
    margin: 40px auto;
    display: flex;
    justify-content: center;
}
.main-content .news-category .news-category-item{
    width: 175px;
    height: 40px;
    background-color: #C1C1C1;
    border-radius: 5px;
    border: 1px solid #C1C1C1;
    text-align: center;
    margin-right: 30px;
    font-size: 16px;
    line-height: 40px;
}
.main-content .news-category .news-category-item:last-child{
    margin-right: 0;
}
.main-content .news-category .news-category-item a{
    color: #1A1A1A;
}
.main-content .news-category .news-category-item.active{
    background: #0C5BE2;
}
.main-content .news-category .news-category-item.active a{
    color: #FFFFFF;
}


.main-content .news-list{
    width: 100%;
    height: auto;
    float: right;
}
.main-content .news-list .news-item{
    margin-bottom: 20px;
    display: flex;
    border: 1px solid #E0E0E0;
    cursor: pointer;
    padding: 20px;
}
.main-content .news-list .news-item .news-img{
    width: 21.7%;
    height: 100%;
}
.main-content .news-list .news-item .news-img img{
    width: 100%;
    height: 100%;
    transition: all .5s;
}
.main-content .news-list .news-item .news-info{
    width: 92%;
    margin-left: 30px;
}
.main-content .news-list .news-item .news-info .news-title{
    font-weight: bold;
    font-size: 18px;
    color: #1A1A1A;
    line-height: 20px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
}
.main-content .news-list .news-item .news-info .news-desc{
    height: 78px;
    font-size: 16px;
    color: #666666;
    line-height: 18px;
    margin-top: 18px;
    overflow: hidden;
    display: -webkit-box;
    -webkit-line-clamp: 3;
    -webkit-box-orient: vertical;
}
.main-content .news-list .news-item .news-info .news-more{
    margin-top: 18px;
    width: 100px;
    height: 30px;
    background: #0070D9;
    font-size: 14px;
    color: #FFFFFF;
    line-height: 30px;
    text-align: center;
}




.main-content .post_title{
    font-weight: bold;
    font-size: 30px;
    color: #000000;
    line-height: 33px;
    margin: 30px 0;
    text-align: center;
}
.main-content .post_content img{
    max-width: 100%;
    display: block;
    margin: 0 auto;
}
.main-content .post_content p,
.main-content .post_content span{
    text-wrap: wrap !important;
}
.main-content .post_content embed{
    max-width:100%!important;
}
.main-content .post_line{
    width: 1366px;
    height: 1px;
    background: #CECECE;
}
.main-content .post_info{
    font-size: 14px;
    color: #505050;
    line-height: 16px;
    margin: 20px 0 30px;
}
.main-content .post_info .post_info_left{
    float: left;
}
.main-content .post_info .post_info_right{
    float: right;
}

.main-content .content-bottom{
    margin: 60px 0 20px;
}
.main-content .content-bottom .prev,
.main-content .content-bottom .next{
    font-size: 14px;
    color: #505050;
    line-height: 21px;
    cursor: pointer;
}
.main-content .content-bottom .prev a,
.main-content .content-bottom .next a{
    color: #00367D;
}
.main-content .content-bottom .prev{
    float: left;
}
.main-content .content-bottom .next{
    float: right;
}


@media only screen and (min-width: 1000px) and (max-width: 1440px) {
    .main-content .news-list .news-item .news-info .news-desc{
        margin-top: 10px;
    }
}
@media only screen and (max-width: 1000px) {
    .main-content .news-list .news-item{
        padding: 10px;
    }
    .main-content .news-list .news-item .news-info .news-desc{
        margin-top: 10px;
    }
    .main-content .news-list .news-item .news-info .news-more{
        margin-top: 10px;
    }
}