index.wxss 1.1 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859
  1. .list {
  2. float: left;
  3. width: 92%;
  4. /* height: 218rpx; */
  5. padding: 0 0 20rpx 0;
  6. margin: 0 30rpx;
  7. /* border-bottom: 1px solid #ccc; */
  8. }
  9. .list .title {
  10. float: left;
  11. width: 100%;
  12. font-size: 30rpx;
  13. font-family: Source Han Sans SC;
  14. font-weight: 400;
  15. color: rgba(40, 40, 40, 1);
  16. margin: 30rpx 0;
  17. }
  18. .list .news {
  19. float: left;
  20. width: 100%;
  21. font-size: 30rpx;
  22. font-family: Source Han Sans SC;
  23. font-weight: 400;
  24. color: rgba(40, 40, 40, 1);
  25. margin: 0 0 20rpx 0;
  26. overflow: hidden;
  27. text-overflow: ellipsis;
  28. -webkit-line-clamp: 2;
  29. word-break: break-all;
  30. display: -webkit-box;
  31. -webkit-box-orient: vertical;
  32. }
  33. .list .info {
  34. float: left;
  35. width: 100%;
  36. }
  37. .list .info text:first-child {
  38. float: left;
  39. width: 100%;
  40. font-size: 30rpx;
  41. font-family: Source Han Sans SC;
  42. font-weight: 400;
  43. color: rgba(40, 40, 40, 1);
  44. border-bottom: 1px solid #ccc;
  45. padding: 20rpx 0;
  46. }
  47. .list .info text:last-child {
  48. float: left;
  49. width: 100%;
  50. font-size: 30rpx;
  51. font-family: Source Han Sans SC;
  52. font-weight: 400;
  53. color: rgba(40, 40, 40, 1);
  54. }