/* 左 */
.root_content_left {
    width: 12%;
    min-width: 150px;
    height: 100%;
    position: fixed;
    /* 关键属性：固定定位 */
    z-index: 1000;
    /* 确保在最上层 */
}

/* 右 */
.root_content_right {
    width: 85%;
    height: 100%;
    margin-left: 15%;
    overflow-y: auto;
}

/* 右边左边 */
.root_content_right_left {
    width: 67%;
    height: 100%;
    margin-left: 1.5%;
    margin-right: 1.5%;
    float: left;
}

/* 右边右边 */
.root_content_right_right {
    width: 30%;
    height: 100%;
    float: left;
}

/* 轮播图 */

#home_banner {
    margin-bottom: 20px;
}

#home_banner div{
    border-radius: 10px;
}

#home_banner img {
    width: 100%;
    height: 100%;
    border-radius: 10px;
}

#home_banner p {
    color: #fff;
    position: absolute;
    bottom: 10px;
    left: 10px;
    cursor: pointer;
    font-size: 14px;
}

.root_content_center_tag {
    width: 100%;
    background-color: white;
    height: 50px;
    line-height: 50px;
    font-size: 16px;
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
    border-bottom: 1px solid #eaeff8;
}

.home_recommend {
    margin-left: 20px;
    margin-right: 10px;
    color: #21293c;
    font-weight: bold;
    cursor: pointer;
}

.home_new {
    margin-left: 10px;
    cursor: pointer;
    color: #4b587c;
}


.root_content_right_author {
    width: 100%;
    background-color: white;
    border-radius: 5px;
    margin-top: 20px;
}

.root_content_right_weight {
    width: 100%;
    background-color: white;
    border-radius: 5px;
    margin-top: 20px;
    padding-bottom: 20px;
}

.article_view {
    width: 100%;
    background-color: white;
}


.root_content_left_tag {
    margin-bottom: 20px;
    margin-top: 20px;
    margin-left: 20px;
    color: #67788a;
    font-size: 15px;
    font-weight: 400;
}

.root_content_left_menu p {
    height: 35px;
    line-height: 35px;
    width: 95%;
    font-size: 15px;
    color: #21293c;
}

.root_content_left_menu img {
    width: 15px;
    height: 15px;
    margin-top: -3px;
    filter: brightness(0) invert(1);
}

.root_content_left_menu span {
    width: 20px;
    height: 20px;
    border-radius: 5px;
    margin-right: 10px;
    margin-left: 20px;
    padding: 3px;
}

.menu_click_bg:hover {
    background-color: #E1E6EA !important;
}

.home_left_menu_click {
    border-radius: 5px;
    cursor: pointer;
}

.author_title {
    height: 40px;
    font-weight: bold;
    line-height: 40px;
    padding-left: 20px;
    border-bottom: 1px solid #eff2f4;
}

.author_list_item {
    height: 80px;
}

.author_list_item:not(:last-child) {
    border-bottom: 1px solid #eff2f4;
}

.author_list {
    width: calc(100% - 30px);
    margin-left: 15px;
}

.author_list_item div {
    float: left;
}

.author_list_item_left {
    width: 20%;
    line-height: 80px;
}

.author_list_item_center {
    width: 80%;
    padding-top: 22px;
    font-size: 12px;
    color: #666666;
}

.author_list_item_center p {
    font-size: 14px;
    font-weight: bold;
    color: #21293c;
    cursor: pointer;
    margin-bottom: 2px;
}

.author_list_item_center p:hover {
    color: #ff0000;
}

.author_list_item_right {
    width: 20%;
    line-height: 80px;
    text-align: right;
}

.author_list_item img {
    width: 40px;
    height: 40px;
    border-radius: 40px;

}

.author_list_item_right span {
    border: 1px solid #eff2f4;
    padding: 4px 7px;
    cursor: pointer;
    border-radius: 3px;
    color: #21293c;
    font-size: 12px;
}

.author_list_item_right span:hover {
    border: 1px solid #ff0000;
    color: #ff0000;
}

/* 以下是右侧的关注模块 */

.root_content_right_follow {
    width: 100%;
    height: 80px;
    background-color: white;
    border-radius: 5px;
}

.root_content_right_follow div {
    float: left;
}

.root_content_right_follow_left {
    line-height: 80px;
    margin-left: 20px;
}

.root_content_right_follow img {
    width: 50px;
    height: 50px;
}

.root_content_right_follow_right {
    padding-top: 19px;
    margin-left: 20px;
}

.follow_right_title {
    color: #21293c;
    font-size: 14px;
    font-weight: bold;
}

.follow_right_desc {
    color: #666666;
    font-size: 12px;
    margin-top: 5px;
}

/* 右侧的关注模块结束 */

.article_load_more {
    text-align: center;
    margin-top: 20px;
    padding-bottom: 20px;
}

.article_load_more p {
    border: 1px solid #ff0000;
    color: #ff0000;
    border-radius: 8px;
    font-size: 12px;
    width: 120px;
    height: 30px;
    line-height: 30px;
    cursor: pointer;
    margin-left: calc(50% - 60px);
}

.article__index_list_item {
    font-size: 14px;
    color: #222;
    font-weight: 450;
    padding-left: 20px;
    padding-right: 20px;
    margin-top: 10px;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
    overflow: hidden;
    text-overflow: ellipsis;
    cursor: pointer;
}

.article__index_list_item_color {
    color: #666666;
}

.article__index_list_item a:hover {
    color: #ff0000;
}

.article__index_list_item_number {
    background: linear-gradient(180deg, #f64242 20%, rgba(246, 66, 66, .4) 80%);
    background-clip: text;
    color: transparent;
}