mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-05-28 09:19:15 +08:00
94 lines
1.5 KiB
CSS
94 lines
1.5 KiB
CSS
@import './mixins/ellipsis.css';
|
|
|
|
@component-namespace zan {
|
|
@b card {
|
|
padding: 5px 15px 5px 115px;
|
|
height: 90px;
|
|
background: #FAFAFA;
|
|
overflow: hidden;
|
|
position: relative;
|
|
margin-top: 10px;
|
|
|
|
&:first-child {
|
|
margin-top: 0;
|
|
}
|
|
|
|
@e img {
|
|
width: 90px;
|
|
height: 90px;
|
|
border: 0;
|
|
position: absolute;
|
|
top: 5px;
|
|
left: 15px;
|
|
}
|
|
|
|
@e content {
|
|
display: table;
|
|
width: 100%;
|
|
|
|
@when center {
|
|
display: table;
|
|
height: 90px;
|
|
|
|
.zan-card__info {
|
|
display: table-cell;
|
|
vertical-align: middle;
|
|
}
|
|
}
|
|
}
|
|
|
|
@e row {
|
|
overflow: hidden;
|
|
padding-right: 80px;
|
|
position: relative;
|
|
}
|
|
|
|
@e title {
|
|
line-height: 20px;
|
|
color: #333;
|
|
max-height: 40px;
|
|
margin-bottom: 5px;
|
|
word-break: break-all;
|
|
@mixin multi-ellipsis 2;
|
|
}
|
|
|
|
@e desc {
|
|
font-size: 12px;
|
|
color: #666;
|
|
max-height: 20px;
|
|
word-break: break-all;
|
|
@mixin multi-ellipsis 1;
|
|
}
|
|
|
|
@e price {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 80px;
|
|
text-align: right;
|
|
font-size: 14px;
|
|
color: #333;
|
|
}
|
|
|
|
@e num {
|
|
position: absolute;
|
|
top: 0;
|
|
right: 0;
|
|
width: 80px;
|
|
text-align: right;
|
|
font-size: 12px;
|
|
color: #666;
|
|
}
|
|
|
|
@e footer {
|
|
position: absolute;
|
|
right: 15px;
|
|
bottom: 5px;
|
|
|
|
.zan-button {
|
|
margin-left: 5px;
|
|
}
|
|
}
|
|
}
|
|
}
|