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.
59 lines
986 B
59 lines
986 B
/* pages/user/retail/list/index.wxss */
|
|
.item {
|
|
border-radius: 20rpx;
|
|
background: white;
|
|
margin: 20rpx 30rpx;
|
|
padding: 0 20rpx;
|
|
}
|
|
page {
|
|
background: #f2f2f2;
|
|
}
|
|
.top-tip {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
font-size: 24rpx;
|
|
color: #888888;
|
|
line-height: 40rpx;
|
|
padding-top: 10rpx;
|
|
}
|
|
.top-tip view {
|
|
color: #0B898E;
|
|
font-size: 30rpx;
|
|
font-weight: bold;
|
|
}
|
|
.item-info {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
padding: 20rpx 0;
|
|
border-top: 1rpx solid #D8D8D8;
|
|
margin-top: 10rpx;
|
|
}
|
|
.item image {
|
|
width: 140rpx;
|
|
height: 140rpx;
|
|
border-radius: 10rpx;
|
|
display: block;
|
|
flex-shrink: 0;
|
|
}
|
|
.item-title {
|
|
flex: 1;
|
|
width: 300rpx;
|
|
font-size: 30rpx;
|
|
font-weight: 500;
|
|
margin: 0 20rpx;
|
|
}
|
|
.item-right {
|
|
flex-shrink: 0;
|
|
font-size: 26rpx;
|
|
color: #333;
|
|
text-align: right;
|
|
}
|
|
.item-right .price {
|
|
margin-bottom: 20rpx;
|
|
}
|
|
.price::before {
|
|
content: "¥";
|
|
font-size: 24rpx;
|
|
margin-right: 6rpx;
|
|
}
|