123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263 |
- .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;
- }
- }
|