You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
110 lines
1.6 KiB
110 lines
1.6 KiB
/* pages/orderdetail/orderdetail.wxss */
|
|
.scrol_view_style {
|
|
background: #f5f5f5;
|
|
}
|
|
|
|
.carts_box {
|
|
display: flex;
|
|
align-items: center;
|
|
height: 100%;
|
|
}
|
|
|
|
/*item*/
|
|
.list_item_style {
|
|
height: 180rpx;
|
|
background: white;
|
|
padding-bottom: 20rpx;
|
|
padding-left: 20rpx;
|
|
padding-right: 20rpx;
|
|
}
|
|
|
|
/*商品主图*/
|
|
|
|
.good_main_image {
|
|
width: 180rpx;
|
|
height: 180rpx;
|
|
margin-left: 10rpx;
|
|
border: 1rpx solid #bbb;
|
|
}
|
|
|
|
/*商品名称*/
|
|
|
|
.item_good_title {
|
|
text-align: left;
|
|
font-size: 32rpx;
|
|
height: auto;
|
|
white-space: nowrap;
|
|
word-break: keep-all;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
width: 90%;
|
|
}
|
|
|
|
.cart_content_right {
|
|
display: flex;
|
|
flex-direction: column;
|
|
height: 100%;
|
|
margin-left: 20rpx;
|
|
}
|
|
|
|
.btn_wrap {
|
|
display: flex;
|
|
flex-direction: row;
|
|
align-items: center;
|
|
width: 200rpx;
|
|
}
|
|
|
|
.btn_wrap input {
|
|
background: #f8f8f8;
|
|
color: #666;
|
|
font-size: 26rpx;
|
|
right: 10rpx;
|
|
width: 50rpx;
|
|
text-align: center;
|
|
}
|
|
|
|
.btn_wrap input:nth-child(2) {
|
|
margin: 0 10rpx;
|
|
}
|
|
.price_back_view {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 460rpx;
|
|
padding-top: 20rpx;
|
|
}
|
|
|
|
.cart_content_bottom {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
width: 460rpx;
|
|
padding-top: 25rpx;
|
|
}
|
|
|
|
.cart_content_bottom .delete {
|
|
font-size: 28rpx;
|
|
}
|
|
|
|
/*售价*/
|
|
|
|
.right_list_item_price {
|
|
color: #ff5d08;
|
|
font-size: 32rpx;
|
|
}
|
|
|
|
/* 没有商品时的购物车样式 */
|
|
|
|
.no_shop {
|
|
text-align: center;
|
|
font-size: 50rpx;
|
|
color: #bbb;
|
|
margin-top: 100px;
|
|
}
|
|
|
|
/*规格的样式*/
|
|
|
|
.guige {
|
|
font-size: 28rpx;
|
|
}
|
|
|