You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 

38 lines
763 B

/* pages/store/myStore.wxss */
.container {
background-color: #F6F6F6;
/* min-height: 100vh; */
}
.store-item-top {
display: flex;
flex-direction: column;
width: 100vw;
background: white;
box-sizing: border-box;
padding: 30rpx 24rpx 30rpx 28rpx;
font-size: 32rpx;
color: black;
margin-bottom: 20rpx;
}
.store-item-disc{
font-size: 28rpx;
line-height: 32rpx;
color: #666666;
margin-top: 16rpx;
text-overflow: -o-ellipsis-lastline;
overflow: hidden;
text-overflow: ellipsis;
display: -webkit-box;
-webkit-line-clamp: 2;
line-clamp: 2;
-webkit-box-orient: vertical;
}
.store-item-bottom{
display: flex;
justify-content: space-between;
align-items: center;
color: #666666;
font-size: 28rpx;
margin-top: 5rpx;
}