style.scss 1023 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263
  1. .list-item {
  2. &.not-cover {
  3. .main {
  4. .info {
  5. margin-top: 20rpx;
  6. }
  7. }
  8. }
  9. .main {
  10. display: flex;
  11. justify-content: space-between;
  12. flex-direction: column;
  13. flex: 1;
  14. .title {
  15. font-size: 30rpx;
  16. color: #333333;
  17. }
  18. .thumbnails {
  19. margin: 20rpx 0;
  20. display: flex;
  21. align-items: center;
  22. flex-direction: row;
  23. .img {
  24. flex: 1;
  25. /* #ifndef APP-NVUE */
  26. width: auto;
  27. /* #endif */
  28. height: 200rpx;
  29. border-radius: 8rpx;
  30. margin: 0 10rpx;
  31. &:first-child {
  32. margin-left: 0;
  33. }
  34. &:last-child {
  35. margin-right: 0;
  36. }
  37. }
  38. }
  39. .info {
  40. display: flex;
  41. flex-direction: row;
  42. }
  43. .author,
  44. .publish_date {
  45. font-size: 24rpx;
  46. color: #bbbbbb;
  47. }
  48. .publish_date {
  49. margin-left: 14rpx;
  50. }
  51. }
  52. .thumbnail {
  53. width: 240rpx;
  54. height: 160rpx;
  55. margin-left: 20rpx;
  56. border-radius: 8rpx;
  57. }
  58. }