material-list.less 745 B

12345678910111213141516171819202122232425262728293031
  1. @import "../ms-admin/4.7.0/less/app.less";
  2. .ms-admin-material-list {
  3. background: #fff;
  4. .ms-margin-padding(12px, 14px);
  5. display: flex;
  6. flex-wrap: wrap;
  7. //单个素材
  8. .ms-admin-material-item {
  9. .ms-margin-padding(0 24px 0 0, 0 10px);
  10. width: 230px;
  11. display: flex;
  12. flex-direction: column;
  13. border: 1px solid #e6e6e6;
  14. border-radius: 4px;
  15. .head {
  16. border-bottom: 1px solid #e6e6e6;
  17. padding: 10px 0;
  18. }
  19. .body {
  20. display: flex;
  21. flex-direction: column;
  22. }
  23. .footer {
  24. display: flex;
  25. padding: 14px 0;
  26. i {
  27. margin: auto;
  28. }
  29. }
  30. }
  31. }