64 lines
1023 B
SCSS
64 lines
1023 B
SCSS
.list-item {
|
|
&.not-cover {
|
|
.main {
|
|
.info {
|
|
margin-top: 20rpx;
|
|
}
|
|
}
|
|
}
|
|
.main {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
flex-direction: column;
|
|
flex: 1;
|
|
.title {
|
|
font-size: 30rpx;
|
|
color: #333333;
|
|
}
|
|
|
|
.thumbnails {
|
|
margin: 20rpx 0;
|
|
display: flex;
|
|
align-items: center;
|
|
flex-direction: row;
|
|
.img {
|
|
flex: 1;
|
|
/* #ifndef APP-NVUE */
|
|
width: auto;
|
|
/* #endif */
|
|
height: 200rpx;
|
|
border-radius: 8rpx;
|
|
margin: 0 10rpx;
|
|
&:first-child {
|
|
margin-left: 0;
|
|
}
|
|
&:last-child {
|
|
margin-right: 0;
|
|
}
|
|
}
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
flex-direction: row;
|
|
}
|
|
|
|
.author,
|
|
.publish_date {
|
|
font-size: 24rpx;
|
|
color: #bbbbbb;
|
|
}
|
|
|
|
.publish_date {
|
|
margin-left: 14rpx;
|
|
}
|
|
}
|
|
|
|
.thumbnail {
|
|
width: 240rpx;
|
|
height: 160rpx;
|
|
margin-left: 20rpx;
|
|
border-radius: 8rpx;
|
|
}
|
|
}
|