108 lines
1.6 KiB
Plaintext
108 lines
1.6 KiB
Plaintext
.cart_body{
|
|
box-sizing: border-box;
|
|
padding: 0 32rpx;
|
|
}
|
|
.cart_item{
|
|
box-sizing: border-box;
|
|
padding-bottom: 100rpx;
|
|
}
|
|
.check_img{
|
|
width: 60rpx;
|
|
height: 60rpx;
|
|
margin-top: 76rpx;
|
|
}
|
|
|
|
label{
|
|
display: flex;
|
|
padding: 46rpx 0;
|
|
}
|
|
.cart_image{
|
|
width: 192rpx;
|
|
height: 192rpx;
|
|
margin-left: 32rpx;
|
|
}
|
|
.cart_img{
|
|
width: 100%;
|
|
height: 100%;
|
|
border-radius: 8rpx;
|
|
|
|
}
|
|
.cart_content{
|
|
margin-left: 20rpx;
|
|
flex:1;
|
|
display: flex;
|
|
flex-flow: column wrap;
|
|
justify-content: space-between;
|
|
}
|
|
.content_title{
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
display: -webkit-box;
|
|
-webkit-line-clamp:2;
|
|
line-clamp: 2;
|
|
-webkit-box-orient: vertical;
|
|
}
|
|
|
|
.content_price{
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.goods_number_container{
|
|
width: 150rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.goods_number_icon_container{
|
|
width: 44rpx;
|
|
height:44rpx;
|
|
}
|
|
.goods_number_icon{
|
|
width:100%;
|
|
height:100%;
|
|
}
|
|
.goods_number{
|
|
flex:1;
|
|
text-align: center;
|
|
}
|
|
.cart_total_container{
|
|
height: 100rpx;
|
|
line-height: 88rpx;
|
|
background: #f5f5f5;
|
|
position: fixed;
|
|
bottom:0;
|
|
left:0;
|
|
right:0;
|
|
box-sizing: border-box;
|
|
padding: 12rpx 32rpx;
|
|
display: flex;
|
|
}
|
|
.checkAllBox{
|
|
border-radius: 50%;
|
|
height: 40rpx;
|
|
width: 40rpx;
|
|
margin-top: 23rpx;
|
|
margin-right: 8rpx;
|
|
}
|
|
.totalPrice{
|
|
flex:1;
|
|
margin-left: 40rpx;
|
|
}
|
|
.clearingBox{
|
|
width: 300rpx;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
.btn{
|
|
width: 140rpx;
|
|
text-align: center;
|
|
border-radius: 36rpx;
|
|
line-height: 72rpx;
|
|
}
|
|
.editbtn{
|
|
border: 1px solid #666666;
|
|
background: #fff;
|
|
}
|
|
.clearbtn{
|
|
background: #ff5c4d;
|
|
color: #fff;
|
|
} |