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.
27 lines
429 B
27 lines
429 B
/* pages/shoplist/shoplist.wxss */
|
|
.shop-item {
|
|
display: flex;
|
|
padding: 15rpx;
|
|
border: 1rpx solid #efefef;
|
|
border-radius: 8rpx;
|
|
margin: 15rpx;
|
|
box-shadow: 1rpx 1rpx 15rpx #ddd;
|
|
}
|
|
|
|
.thumb image {
|
|
width: 250rpx;
|
|
height: 250rpx;
|
|
display: block;
|
|
margin-right: 15rpx;
|
|
}
|
|
|
|
.info {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-around;
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.shop-title {
|
|
font-weight: bold;
|
|
} |