2024-04-02 17:51:41 +08:00

47 lines
879 B
Plaintext

.itemListView{
padding: 20rpx 0;
}
.itemListView .itemView{
border-bottom: 1px solid rgb(126, 126, 126, 0.2);
padding: 30rpx 30rpx;
display: flex;
justify-content: flex-start;
align-items: center;
}
.itemListView .itemView:active{
background-color: rgb(126, 126, 126, 0.2);
}
.itemListView .itemView .img{
flex-shrink: 0;
width: 100rpx;
height: 100rpx;
}
.itemListView .itemView .contentView{
flex: 1;
margin-left: 30rpx;
overflow: hidden;
}
.itemListView .itemView .contentView .name{
font-size: 30rpx;
text-overflow: ellipsis;
overflow: hidden;
word-break: break-all;
white-space: nowrap;
}
.itemListView .itemView .contentView .describe{
margin-top: 10rpx;
font-size: 24rpx;
color: gray;
text-overflow: ellipsis;
overflow: hidden;
word-break: break-all;
white-space: nowrap;
}