/* pages/find/find.wxss */.show { width: 100%; display: flex; flex-wrap: wrap; justify-content: center; padding: 20rpx; box-sizing: border-box; } .shopping { width: 45%; margin: 10rpx; background-color: #ffffff; border-radius: 20rpx; box-shadow: 0 6rpx 20rpx rgba(0, 0, 0, 0.08); overflow: hidden; display: flex; flex-direction: column; transition: transform 0.2s ease; } .shopping:active { transform: scale(0.97); } .imagebox { width: 100%; aspect-ratio: 1; background-color: #f6f6f6; overflow: hidden; } .imagesize { width: 100%; height: 100%; object-fit: cover; display: block; } .tetxt { padding: 16rpx; display: flex; flex-direction: column; gap: 10rpx; } .wraptext { font-size: 26rpx; color: #333; line-height: 1.4; overflow: hidden; display: -webkit-box; -webkit-line-clamp: 2; /* 最多显示2行 */ -webkit-box-orient: vertical; text-overflow: ellipsis; } .price-row { display: flex; justify-content: space-between; align-items: center; } .price-now { color: #fc7e09; font-size: 28rpx; font-weight: bold; } .price-old { color: #aaa; font-size: 24rpx; text-decoration: line-through; }