governmentArticles.wxss 635 B

1234567891011121314151617181920212223242526272829303132333435
  1. /* pages/publics/governmentArticles/governmentArticles.wxss */
  2. .list li{
  3. width: 90%;
  4. height: 58px;
  5. margin: 0 auto;
  6. display: flex;
  7. flex-direction: column;
  8. justify-content: center;
  9. border-bottom: 1px solid rgb(102 102 102 / 12%);
  10. }
  11. .list li .title::before {
  12. content: '·';
  13. font-size: 16px;
  14. font-weight: bold;
  15. margin-right: 5px;
  16. }
  17. .list li .title{
  18. width: 90%;
  19. margin: 0 auto;
  20. display: block;
  21. font-size: 16px;
  22. color: #333333;
  23. overflow: hidden;
  24. text-overflow: ellipsis;
  25. white-space: nowrap;
  26. }
  27. .list li .time{
  28. color: #999999;
  29. font-size:11px;
  30. width: 90%;
  31. margin: 0 auto;
  32. margin-top: 5px;
  33. }