/**articleLists.wxss 文章列表**/
.home__list-item{
position: relative;
background: white;
}
/*首页列表文章 item 的文章图片*/
.home__list__img{
width: 80px;
height: 100%;
vertical-align: top;
/*垂直居中*/
display: flex;
justify-content:center;
align-items:Center;
}
.home__list-item-content{
margin-left: 15px
}
/*首页列表文章 item 外层布局 右侧*/
.home__list-item__right{
width: 100%;
height: 32px;
/*background: darkcyan;*/
position:relative;
}
/*首页列表文章 item 内的title 布局*/
.home__list-item__title{
position:absolute;
top: 0px;
left: 0px;
right: 60px;
font-size: 14px;
color: #5e5e5e;
font:normal;
}
/*首页列表文章 item 内的的点赞 布局*/
.home__list-item__like{
position: absolute;
top: 0px;
right: 0px;
/*垂直居中
display: flex;
justify-content:center;
align-items:Center;*/
}
/*首页列表文章 item 内的点赞手图标*/
.home__list-item__title-like-icon{
position: absolute;
width: 10px;
height: 10px;
right: 0px;
left: 0px;
top: 7px
}
/*首页列表文章 item 内的的点赞 数*/
.home__list-item__title-like-count{
/*这个宽度设置后可以变化点赞数整个布局的位置前移后移*/
width: 30px;
margin-left:15px;
font-size: 10px;
margin-top: 4px;
color: #c8c6c6;
overflow: hidden;
text-overflow: ellipsis;
}
/*item 分割线*/
.home__list-item__bottom{
position: absolute;
height: 1rpx;
background: #d8dbd4;
top: 0px;
left: 15px;
right: 15px
}