87 lines
1.3 KiB
Plaintext
87 lines
1.3 KiB
Plaintext
/* pages/order/detail.wxss */
|
|
|
|
@padding: 15px;
|
|
@content_padding: 15px;
|
|
.order-detail-page {
|
|
background-color: #f2f2f2;
|
|
min-height: 100vh;
|
|
--padding-xs: 15px;
|
|
.order-status {
|
|
padding: 20px 30px;
|
|
background-color: #ffffff;
|
|
font-size: 18px;
|
|
}
|
|
|
|
.order-goods,.order-info-detail {
|
|
background-color: #ffffff;
|
|
margin: 15px;
|
|
border-radius: 10px;
|
|
overflow: hidden;
|
|
}
|
|
.order-info-detail{
|
|
font-size: 13px;
|
|
padding: 10px 0;
|
|
.item {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 5px 15px;
|
|
}
|
|
.title{
|
|
margin-right: 5px;
|
|
}
|
|
}
|
|
|
|
.order-goods-content {
|
|
|
|
padding: @content_padding;
|
|
|
|
.info {
|
|
display: flex;
|
|
}
|
|
|
|
.goods-name {
|
|
flex: 1;
|
|
margin: 0 8px;
|
|
font-size: 15px;
|
|
line-height: 1.3;
|
|
}
|
|
|
|
.goods-price {
|
|
color: #999;
|
|
text-align: right;
|
|
}
|
|
|
|
.sale-price {
|
|
color: #333;
|
|
}
|
|
|
|
.origin-price {
|
|
text-decoration: line-through;
|
|
}
|
|
}
|
|
|
|
.goods-cover-image {
|
|
width: 100px;
|
|
height: 100px;
|
|
}
|
|
|
|
.price {
|
|
text-align: right;
|
|
font-size: 13px;
|
|
|
|
.price-total {
|
|
font-size: 16px;
|
|
vertical-align: baseline;
|
|
}
|
|
}
|
|
|
|
.order-footer {
|
|
border-top: 1px solid #f2f2f2;
|
|
overflow: hidden;
|
|
padding: 15px;
|
|
}
|
|
.order-action{
|
|
float: right;
|
|
}
|
|
|
|
} |