/* 专栏人物 分类 */
.special-class{
    margin: 8px -9px;
    display: flex;
    font-size: 14px;
}
.special-class>div{
    padding: 4px 9px;
    margin-left: 20px;
}
.active{
    background-color: var(--main-color);
    color: #fff;
}
.active>a{
    color: #fff !important;
}
/* 分割线 */
.special-line{
    height: 1px;
    border-top: 1px solid #c1c1c1;
    width: 98%;
    margin: 0 auto;
}
/* 新闻列表 */
.special-list{ 
    padding: 10px 0 15px 10px;
    border-bottom: 1px solid #f2f3f5;
}
.list-title{
    /* 
        font-size: 22px;
        font-weight: bold; 
    */
    
    margin: 4px 0;
    padding-top: 15px;
    margin-top: 0;
    line-height: 1;
}
.list-title >a{
    color: #4e5a64;
    font-size: 16px;
    font-weight: 400;
}

.list-content{
    display: flex;
}
.list-image{
    /* width: 210px;
    height: 168px;
    margin-right: 5px; */
    /* width: 171px; */
    width: 225px;
    height: 130px;
    margin-right: 5px;
}
.list-intro{
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    margin: 10px 5px;
    margin-top: 0;
    font-size: 14px;
    color: #999;
} 
.intro-content{
    margin-top: 15px;
}
/* 0915 */
.intro-content>a{ 
    display: -webkit-box;
    font-size: 13px;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2; 
    color: #666;
}

/* 创作者活动 */ 
.user-fagao{
    width: 120px;
    height: 45px;
    background-color: var(--main-color);
    color: #fff;
    font-size: 16px;
    text-align: center;
    line-height: 45px;
    margin: 40px auto;
}
.border-bottom{
    border-bottom: 1px solid #f6f6f6;
}
.padd-botom{
    padding-bottom: 10px;
}

/* 创作者活动头像 */
.user-avater{
    width: 100px;
    height: 100px;
    border-radius: 50% !important;
    overflow: hidden;
    margin: 25px auto;
}
.user-name{
    margin: 0 auto;
    color: #666;
    font-size: 14px;
    text-align: center;
}
.user-number{
    display: flex;
    margin-top: 15px;
}
.number-more{
    width: 50%;
    font-size: 16px;
    color: #666;
    text-align: center;
}
.number-more:nth-child(1){
    border-right: 1px solid #eee;
}
/*  作者榜 */
.mt10{
    margin-top: 10px;
}
.user-content{
    display: flex;
    align-items: center;
    margin-bottom: 10px;
}
.user-image{
    width: 50px;
    height: 50px;
    border-radius: 50% !important;
    margin-right: 10px;
    overflow: hidden;
}
.user-intro{
    flex: 1;
    display: flex;
    flex-direction: column;
}
.intro-one{
    font-size: 14px;
    font-weight: bold;
}
.intro-two{
    font-size: 12px;
    color: #666; 
    display: -webkit-box;
    overflow: hidden;
    -webkit-box-orient: vertical;
    line-clamp: 2;
    -webkit-line-clamp: 2; 
}