| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081 |
- /* components/product-list/product-list.wxss */
- .scrollView{
- height: calc(100vh - 330rpx);
- }
- .scrollViewIndex{
- height: 1080rpx;
- }
- .products{
- padding:0 30rpx;
- display: flex;
- flex-wrap: wrap;
- justify-content: space-between;
- }
- .goods-item {
- width: 326rpx; /* 313*1.0417 */
- background: #fff;
- border-radius: 25rpx; /* 20*1.0417 */
- box-shadow: 0 4rpx 16rpx rgba(0,0,0,0.05);
- overflow: hidden;
- display: flex;
- flex-direction: column;
- margin-bottom: 39rpx;
- border: 4rpx solid #7AC7B5;
- }
- .goods-image {
- width: 326rpx;
- height: 326rpx;
- background: #f7f7f7;
- }
- .goods-image-inner {
- width: 100%;
- height: 100%;
- object-fit: cover;
- }
- .goods-info {
- padding: 16rpx 21rpx 0 21rpx;
- }
- .goods-name {
- font-size: 18rpx;
- color: #333;
- display: block;
- margin-bottom: 8rpx;
- font-weight: bold;
- overflow: hidden;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 2;
- text-overflow: ellipsis;
- }
- .goods-price {
- font-size: 30rpx;
- color: #40665E;
- }
- .goods-action {
- display: flex;
- align-items: center;
- justify-content: space-between;
- margin: 16rpx 21rpx 21rpx 21rpx;
- }
- .favorite {
- width: 32rpx;
- height: 32rpx;
- }
- .favorite-icon {
- width: 100%;
- height: 100%;
- }
- .shoppingCart{
- width: 40rpx;
- margin:0 20rpx 0 40rpx;
- }
- .goods-but{
- display: flex;
- }
- .add-to-cart,
- .buy-now {
- width: 99rpx;
- height: 39rpx;
- border-radius: 6rpx;
- margin-left: 8rpx;
- }
|