新增一斤卡片分类

This commit is contained in:
augushong
2024-05-14 14:56:29 +08:00
parent 28b951cb4e
commit d4846773be
8 changed files with 108 additions and 1 deletions

View File

@@ -1108,6 +1108,44 @@
margin-bottom: 6px;
}
.ul-class-1 {
margin: 0 -8px;
display: flex;
align-items: flex-start;
justify-content: flex-start;
flex-wrap: wrap;
}
.ul-class-1 .item {
padding: 8px;
margin: 8px;
background-color: #f0f0f0;
width: calc(50% - 32px);
border-radius: 8px;
}
.ul-class-1 .item .title {
font-size: 16px;
}
.ul-class-1 .item .desc {
font-size: 12px;
color: #333;
white-space: break-spaces;
display: -webkit-box;
-webkit-line-clamp: 2;
-webkit-box-orient: vertical;
overflow: hidden;
}
.ul-class-1 .item .image {
width: 100%;
height: 100px;
background-color: #ddd;
border-radius: 8px;
margin: 6px 0;
}
.ul-class-1 .item .footer {
font-size: 12px;
color: #666;
}
.ul-descriptions-form {
width: 100%;
}

File diff suppressed because one or more lines are too long