78 lines
1.5 KiB
Plaintext
78 lines
1.5 KiB
Plaintext
/* packageB/member/RightGood/RightGood.wxss */
|
|
.right_good .goods_box {
|
|
background: #fff;
|
|
padding: 20rpx;
|
|
}
|
|
|
|
.right_good .goods_box .goods {
|
|
border-radius: 8rpx;
|
|
border: solid 2rpx #ebebeb;
|
|
display: flex;
|
|
margin-bottom: 20rpx;
|
|
}
|
|
|
|
.right_good .goods_box .goods .goods_img {
|
|
width: 240rpx;
|
|
height: 240rpx;
|
|
background: #f2f2f2;
|
|
border-radius: 8rpx 0 0 8rpx;
|
|
overflow: hidden;
|
|
}
|
|
|
|
.right_good .goods_box .goods .goods_img image {
|
|
width: 100%;
|
|
height: 100%;
|
|
}
|
|
|
|
.right_good .goods_box .goods .name_price {
|
|
width: 466rpx;
|
|
padding: 20rpx;
|
|
position: relative;
|
|
}
|
|
|
|
.right_good .goods_box .goods .name_price .name {
|
|
font-size: 32rpx;
|
|
line-height: 48rpx;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-box-orient: vertical;
|
|
-webkit-line-clamp: 2;
|
|
}
|
|
|
|
.right_good .goods_box .goods .name_price .price {
|
|
width: 100%;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
position: absolute;
|
|
bottom: 20rpx;
|
|
padding-right: 40rpx;
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.right_good .goods_box .goods .name_price .price .sum {
|
|
font-size: 36rpx;
|
|
color: #f15353;
|
|
}
|
|
|
|
.right_good .goods_box .goods .name_price .price .sum .font {
|
|
font-size: 24rpx;
|
|
}
|
|
|
|
.right_good .goods_box .goods .name_price .price .goods_btn {
|
|
background: #3b3b4f;
|
|
font-size: 24rpx;
|
|
color: #fff;
|
|
width: 144rpx;
|
|
height: 52rpx;
|
|
border-radius: 64rpx;
|
|
border: none;
|
|
text-align: center;
|
|
line-height: 52rpx;
|
|
}
|
|
|
|
.right_good .goods_box .goods:last-child {
|
|
margin: 0;
|
|
}
|