| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354 |
- @import "../ms-admin/4.7.0/less/app.less";
- .ms-admin-material-list {
- background: #fff;
- .ms-margin-padding(12px, 14px);
- display: flex;
- flex-wrap: wrap;
- //单个素材
- .ms-admin-material-item {
- .ms-margin-padding(0 24px 0 0, 0 10px);
- width: 230px;
- display: flex;
- flex-direction: column;
- border: 1px solid #e6e6e6;
- border-radius: 4px;
- .head {
- border-bottom: 1px solid #e6e6e6;
- padding: 10px 0;
- span {
- color: @contentColor;
- }
- }
- .body {
- display: flex;
- flex-direction: column;
- line-height: 2em;
- span {
- .ms-ellipsis;
- }
- img {
- .ms-width-height(170px, 110px);
- margin: 0.5em auto;
- object-fit: cover;
- }
- p {
- margin: 0;
- color: @contentColor;
- .ms-ellipsis-clamp(3);
- }
- }
- .footer {
- display: flex;
- padding: 14px 0;
- i {
- color: @contentColor;
- margin: auto;
- cursor: pointer;
- }
- em {
- .ms-width-height(1px, 1em);
- background: #e6e6e6;
- }
- }
- }
- }
|