#content_list_body{
    background-image: url("/content/image/page_bg.png");
    background-repeat: no-repeat;
    background-size: 100%;
    background-color: rgb(249, 249, 255);
}
.content_1160{
    width: 1160px;
    margin: 0 auto;
}
.content_860{
    width: 860px;
}
.content_284{
    width: 284px;
}

.content_list_header{
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 100px;
    margin-bottom: 30px;
}
.content_list_header .tabs{
    /*overflow-x: scroll;*/
    flex: 1;
    width: 0;
}
.content_list_header .tabs_wrap{
    display: flex;
    white-space: nowrap;
}
.content_list_header .tabs_wrap .item{
    font-weight: 400;
    font-size: 16px;
    color: #36354C;
    margin-right: 56px;
    cursor: pointer;
}
.content_list_header .tabs .item.active{
    font-weight: 600;
    color: #4151FB;
}

.content_list_header .search{
    width: 300px;
    background: #FFF;
    border-radius: 8px;
    padding: 11px 16px;
    display: flex;
    align-items: center;
}
.content_list_header .search > img{
    width: 15px;
    height: 15px;
    margin-right: 10px;
}
.content_list_header .search label{
    flex: 1;
}
.content_list_header .search input{
    height: 20px;
    font-weight: 400;
    font-size: 14px;
    color: rgba(112,114,122,0.8);
    width: 100%;
}
.content_list_content{
    padding-bottom: 60px;
}
.content_list_content .list{
    display: flex;
    flex-wrap: wrap;
}
.content_list_content .list .item{
    width: 366px;
    margin-bottom: 30px;
    margin-right: 31px;
}
.content_list_content .list .item:nth-child(3n){
    margin-right: 0;
}
.content_list_content .list .item > a {
    display: block;
}
.content_list_content .list .item .img{
    width: 366px;
    /*height: 156px;*/
    height: auto;
    border-radius: 11px;
    object-fit: cover;
}
.content_list_content .list .item .img_wrap{
    width: 366px;
    height: 206px;
    border-radius: 8px;
    position: relative;
    overflow: hidden;
}
.content_list_content .list .item .img_wrap .video_img{
    width: 366px;
    /*height: 206px;*/
    height: auto;
    object-fit: cover;
}
.content_list_content .list .item .img_wrap .label{
    position: absolute;
    top: 0;
    right: 0;
    padding: 0 9px;
    height: 20px;
    line-height: 20px;
    border-radius: 0 8px;
    font-weight: 400;
    font-size: 12px;
    color: #FFFFFF;
    background: rgba(0,0,0,0.5);
}
.content_list_content .list .item .img_wrap .label.active{
    background: rgba(65,81,251,0.8);
}
.content_list_content .list .item .title{
    font-weight: 600;
    font-size: 16px;
    color: #36354C;
    margin-top: 20px;
    margin-bottom: 10px;
    
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.content_list_content  .list .item .msg{
    font-weight: 400;
    font-size: 14px;
    color: rgba(112,114,122,0.8);
    
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.content_list_content  .list .item .msg.active{
    color: #4151FB;
}
.content_list_content  .pagination{
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.content_list_content  .pagination .total{
    font-weight: 400;
    font-size: 17px;
    color: #36354C;
}

.content_list_content  .pagination .paging{
    display: flex;
    align-items: center;
}

.content_list_content  .pagination .paging > a{
    display: block;
    width: 29px;
    height: 29px;
    line-height: 29px;
    text-align: center;
    margin-left: 13px;
    font-weight: 600;
    font-size: 14px;
    color: #4151FB;
    border-radius: 4px;
}
.content_list_content  .pagination .paging > a.prev,
.content_list_content  .pagination .paging > a.next{
    background: rgba(65,81,251,0.1);
}

.content_list_content  .pagination .paging .active{
    display: block;
    width: 29px;
    height: 29px;
    line-height: 29px;
    text-align: center;
    margin-left: 13px;
    font-weight: 600;
    font-size: 14px;
    color: #FFF;
    background: #4151FB;
    border-radius: 4px;
}