73 lines
1.2 KiB
Plaintext
73 lines
1.2 KiB
Plaintext
/* packageC/components/deposit-ladder-cell/deposit-ladder-cell.wxss */
|
|
.activity-goods-details {
|
|
display: flex;
|
|
align-items: flex-start;
|
|
background: #fff;
|
|
margin: 0 16rpx 24rpx;
|
|
padding: 24rpx;
|
|
text-align: left;
|
|
border-radius: 4px;
|
|
box-shadow: 0 0 17rpx 0 rgba(169, 169, 169, 0.24);
|
|
}
|
|
|
|
.activity-goods-cover {
|
|
flex-shrink: 0;
|
|
}
|
|
|
|
.activity-goods-info {
|
|
flex: 1;
|
|
margin-left: 20rpx;
|
|
}
|
|
|
|
.activity-goods-img{
|
|
width: 100px;
|
|
height: 100px;
|
|
border-radius: 5px;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.activity-goods-img image{
|
|
width: 100%;
|
|
}
|
|
|
|
.activity-goods-title {
|
|
font-size: 14px;
|
|
height: 80rpx;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
color: #333;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.activity-goods-sku {
|
|
margin-top: 4px;
|
|
line-height: 24rpx;
|
|
color: #f14e4e;
|
|
font-size: 12px;
|
|
}
|
|
.activity-goods-sku i {
|
|
padding-right: 4px;
|
|
}
|
|
|
|
.activity-goods-price {
|
|
margin-top: 8px;
|
|
line-height: 14px;
|
|
font-size: 14px;
|
|
color: #202020;
|
|
font-weight: bold;
|
|
}
|
|
|
|
.activity-goods-footer {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: flex-end;
|
|
}
|
|
|
|
.activity-goods-deposit {
|
|
font-size: 28rpx;
|
|
color: #f14e4e;
|
|
font-weight: bold;
|
|
} |