index.less 556 B

12345678910111213141516171819202122232425262728293031323334
  1. .card {
  2. .header {
  3. display: flex;
  4. align-items: center;
  5. justify-content: space-between;
  6. width: 100%;
  7. .title {
  8. width: 50%;
  9. overflow: hidden;
  10. font-weight: 800;
  11. white-space: nowrap;
  12. text-overflow: ellipsis;
  13. }
  14. .title::before {
  15. margin-right: 10px;
  16. background-color: #2810ff;
  17. content: '|';
  18. }
  19. }
  20. .content {
  21. display: flex;
  22. justify-content: space-between;
  23. width: 100%;
  24. margin-top: 10px;
  25. .item {
  26. display: flex;
  27. flex-direction: column;
  28. }
  29. }
  30. }