1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465 |
- /* components/IntegralGoodsList/IntegralGoodsList.wxss */
- .item {
- margin-top: 30rpx;
- width: 330rpx;
- background: #fff;
- padding: 20rpx;
- box-sizing: border-box;
- border-radius: 10rpx;
- }
- .item:nth-child(2n) {
- margin-right: 0;
- }
- .item .img {
- width: 290rpx;
- height: 290rpx;
- font-size: 0;
- }
- .item .img image {
- width: 100%;
- height: 100%;
- }
- .item .name {
- font-size: 28rpx;
- margin: 16rpx 0 10rpx;
- display: -webkit-box;
- -webkit-box-orient: vertical;
- -webkit-line-clamp: 1;
- overflow: hidden;
- text-overflow: ellipsis;
- height: 56rpx;
- line-height: 56rpx;
- }
- .item .price {
- position: relative;
- padding-left: 34rpx;
- height: 28rpx;
- line-height: 28rpx;
- font-size: 24rpx;
- }
- .item .price .icon {
- position: absolute;
- left: 0;
- top: 0;
- width: 28rpx;
- height: 28rpx;
- }
- .item .red-word {
- color: #e43130;
- }
- .item .old-price {
- font-size: 24rpx;
- color: #999;
- text-decoration: line-through;
- font-family: arial;
- padding-top: 14rpx;
- }
|