75 lines
1.2 KiB
Plaintext
75 lines
1.2 KiB
Plaintext
/* packageH/chitchat/components/chatContentGoods/chat.wxss */
|
|
|
|
view,
|
|
text {
|
|
box-sizing: border-box;
|
|
}
|
|
|
|
.order-con {
|
|
background: #fff;
|
|
padding: 10px;
|
|
}
|
|
|
|
.order-con .order-header {
|
|
width: 100%;
|
|
font-size: 14px;
|
|
padding-top: 10px;
|
|
}
|
|
|
|
.order-con .order-header .order-no {
|
|
color: #666;
|
|
float: left;
|
|
}
|
|
|
|
.order-con .order-header .order-status {
|
|
float: right;
|
|
color: #f15353;
|
|
}
|
|
|
|
.order-con .order-header::after {
|
|
display: table;
|
|
content: "";
|
|
clear: both;
|
|
}
|
|
|
|
.order-con .order-item-con {
|
|
display: flex;
|
|
padding: 10px 0;
|
|
border-bottom: 1px solid #ccc;
|
|
}
|
|
|
|
.order-con .order-item-con .order-goods-img {
|
|
width: 70px;
|
|
}
|
|
|
|
.order-con .order-item-con .order-goods-img image {
|
|
width: 50px;
|
|
height: 50px;
|
|
}
|
|
|
|
.order-con .order-item-con .order-item-txt {
|
|
flex: 1;
|
|
}
|
|
|
|
.order-con .order-item-con .order-item-txt .order-goods-title {
|
|
font-size: 14px;
|
|
}
|
|
|
|
.order-con .order-item-con .order-item-txt .order-goods-price {
|
|
display: inline-block;
|
|
width: 100%;
|
|
text-align: right;
|
|
margin-top: 10px;
|
|
color: #fb4a4a;
|
|
}
|
|
|
|
.order-con .order-item-con .order-item-txt .order-goods-price .order-goods-num {
|
|
float: left;
|
|
}
|
|
|
|
.order-con .order-footer {
|
|
text-align: right;
|
|
color: #666;
|
|
line-height: 1.8;
|
|
}
|