index.scss 1014 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546
  1. .collect-ul {
  2. // margin-top: 30rpx;s
  3. padding-top: 4rpx;
  4. .collect-ltem {
  5. display: flex;
  6. padding: 30rpx 34rpx;
  7. background: #fff;
  8. margin-bottom: 4rpx;
  9. align-items: center;
  10. justify-content: space-between;
  11. .title {
  12. position: relative;
  13. max-width: 625rpx;
  14. color: #4A4A4A;
  15. font-size: 34rpx;
  16. padding-left: 28rpx;
  17. .reg-text {
  18. position: absolute;
  19. top: 15rpx;
  20. left:0rpx;
  21. width: 14rpx;
  22. height: 14rpx;
  23. background-color: #FF0000;
  24. border-radius: 50%;
  25. z-index: 9;
  26. }
  27. }
  28. .desc {
  29. display: flex;
  30. align-items: center;
  31. width: 100%;
  32. margin-top: 17rpx;
  33. padding-left: 28rpx;
  34. width: 625rpx;
  35. color: #999;
  36. }
  37. .publishDate {
  38. margin-right: 30rpx;
  39. white-space: nowrap;
  40. }
  41. .text-name {
  42. color: #2C83FF;
  43. font-size: 26rpx;
  44. }
  45. }
  46. }