mirror of
https://gitee.com/ulthon/layui-ul.git
synced 2026-07-05 20:02:49 +08:00
86 lines
2.4 KiB
SCSS
86 lines
2.4 KiB
SCSS
.ul-order-list-simple-card {
|
|
.item {
|
|
box-shadow : 0 0 3px #ddd;
|
|
border-radius: 2px;
|
|
padding : 15px;
|
|
margin-bottom: 15px;
|
|
background-color: #fff;
|
|
}
|
|
|
|
.item-header {
|
|
display : flex;
|
|
align-items : center;
|
|
justify-content: space-between;
|
|
font-size : 13px;
|
|
margin-bottom : 5px;
|
|
|
|
.item-header-status {
|
|
color: #1E9FFF;
|
|
}
|
|
}
|
|
|
|
.item-body {
|
|
margin-top : 10px;
|
|
padding-bottom: 10px;
|
|
|
|
.item-body-item {
|
|
display : flex;
|
|
align-items : center;
|
|
justify-content: space-between;
|
|
padding : 5px 0;
|
|
|
|
.item-image {
|
|
width : 90px;
|
|
height : 90px;
|
|
background-size : cover;
|
|
background-position: center;
|
|
box-shadow : 0 0 2px #999;
|
|
|
|
}
|
|
|
|
.item-info {
|
|
width : calc(100% - 90px - 15px);
|
|
margin-left: 15px;
|
|
height : 90px;
|
|
position : relative;
|
|
|
|
.ul-info-title {
|
|
font-weight : 500;
|
|
font-size : 15px;
|
|
margin-bottom : 5px;
|
|
text-overflow : -o-ellipsis-lastline;
|
|
overflow : hidden;
|
|
text-overflow : ellipsis;
|
|
display : -webkit-box;
|
|
-webkit-line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.ul-info-value {
|
|
display : flex;
|
|
align-items : center;
|
|
justify-content: space-between;
|
|
color : #999;
|
|
font-size : 14px;
|
|
}
|
|
|
|
.ul-info-money {
|
|
position : absolute;
|
|
bottom : 0;
|
|
left : 0;
|
|
font-size : 15px;
|
|
font-weight: 600;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
|
|
.item-footer {
|
|
padding-top : 15px;
|
|
margin-top : 5px;
|
|
border-top : 1px solid #eee;
|
|
display : flex;
|
|
align-items : center;
|
|
justify-content: space-between;
|
|
}
|
|
} |