index.less 999 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. .cardRender {
  2. width: 100%;
  3. background: url('/images/access.png') no-repeat;
  4. background-size: 100% 100%;
  5. .card {
  6. .header {
  7. display: flex;
  8. align-items: center;
  9. justify-content: space-between;
  10. width: 100%;
  11. .title {
  12. width: 50%;
  13. overflow: hidden;
  14. color: rgba(0, 0, 0, 0.85);
  15. font-weight: 700;
  16. font-size: 16px;
  17. white-space: nowrap;
  18. text-overflow: ellipsis;
  19. }
  20. .actions {
  21. .action span {
  22. margin-left: 5px;
  23. color: #4f4f4f;
  24. }
  25. }
  26. }
  27. .content {
  28. display: flex;
  29. justify-content: space-between;
  30. width: 100%;
  31. margin-top: 20px;
  32. .item {
  33. display: flex;
  34. flex-direction: column;
  35. .itemTitle {
  36. color: rgba(0, 0, 0, 0.45);
  37. font-size: 12px;
  38. }
  39. p {
  40. color: rgba(0, 0, 0, 0.75);
  41. font-weight: 700;
  42. font-size: 12px;
  43. }
  44. }
  45. }
  46. }
  47. }