publicSystem.wxss 572 B

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