#content_index_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_index_header{
    padding-top: 100px;
    margin-bottom: 30px;
    font-size: 16px;
    font-weight: 400;
    color: rgba(112,114,122,0.8);
}
.content_index_header > a{
    color: rgba(112,114,122,0.8);
}
.content_index_header > a:hover{
    color: #4151FB;
}
.content_index_header .router_name{
    color: #36354C;
}


.content_index_content{
    display: flex;
    justify-content: space-between;
    padding-bottom: 60px;
}

.content_index_content .main{
    padding: 36px 32px;
    background: #FFF;
    border-radius: 8px;
    height: max-content;
    flex: 1;
}
.content_index_content .main .img{
    width: 420px;
    min-width: 420px;
    height: 570px;
    border-radius: 8px;
    margin-right: 32px;
}

.content_index_content .main .title{
    font-weight: 600;
    font-size: 30px;
    color: #36354C;
}

.content_index_content .main .msg{
    display: flex;
    align-items: center;
    border-bottom: 1px solid #E6E8F1;
    margin-top: 20px;
    padding-bottom: 20px;
    margin-bottom: 30px;
}
.content_index_content .main .msg .name{
    font-weight: 400;
    font-size: 16px;
    color: #70727A;
    margin-right: 34px;
}
.content_index_content .main .msg .label{
    display: flex;
    align-items: center;
}
.content_index_content .main .msg .label .label_item{
    height: 28px;
    line-height: 28px;
    font-weight: 400;
    font-size: 14px;
    color: #4F5365;
    padding: 0 14px;
    margin-right: 14px;
    background: rgba(65,80,250,0.05);
    border-radius: 4px;
}


.content_index_content .main .content{
    /*margin-top: 40px;*/
}


.content_index_content .recommend{
    flex: 1;
    padding: 36px 24px;
    background: #FFF;
    border-radius: 8px;
    margin-top: 16px;
}
.content_index_content .recommend .recommend_head{
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 36px;
}
.content_index_content .recommend .recommend_head .recommend_title{
    font-weight: 600;
    font-size: 20px;
    color: #4151FB;
}
.content_index_content .recommend .recommend_head .recommend_more{
    font-weight: 400;
    font-size: 14px;
    color: #4F5365;
}
.content_index_content .recommend .recommend_list{
    display: flex;
}
.content_index_content .recommend .recommend_list .recommend_item{
    width: 256px;
    margin-right: 22px;
}
.content_index_content .recommend .recommend_list .recommend_item:last-child{
    margin-right: 0;
}
.content_index_content .recommend .recommend_list .recommend_item .recommend_item_img{
    width: 256px;
    /*height: 109px;*/
    height: auto;
    border-radius: 8px;
    object-fit: cover;
}
.content_index_content .recommend .recommend_list .recommend_item .recommend_item_title{
    font-weight: 600;
    font-size: 16px;
    color: #36354C;
    margin-top: 12px;
    margin-bottom: 6px;
    
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    text-overflow: ellipsis;
}
.content_index_content .recommend .recommend_list .recommend_item .recommend_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;
}