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.
103 lines
2.0 KiB
103 lines
2.0 KiB
.unsettled-orders-page { |
|
min-height: 100vh; |
|
background-color: #F2F3F5; |
|
padding: 30px; |
|
|
|
// 空数据 |
|
.empty-data { |
|
display: flex; |
|
flex-direction: column; |
|
align-items: center; |
|
justify-content: center; |
|
padding: 150px 0; |
|
|
|
.empty-image { |
|
width: 300px; |
|
height: 300px; |
|
margin-bottom: 30px; |
|
} |
|
|
|
.empty-text { |
|
font-size: 30px; |
|
color: #999999; |
|
} |
|
} |
|
|
|
// 订单列表 |
|
.order-list { |
|
// 订单卡片 |
|
.order-card { |
|
background-color: #FFFFFF; |
|
border-radius: 12px; |
|
padding: 30px; |
|
margin-bottom: 30px; |
|
|
|
// 标题行 |
|
.card-header { |
|
display: flex; |
|
align-items: center; |
|
justify-content: space-between; |
|
margin-bottom: 30px; |
|
|
|
.order-type { |
|
font-size: 33px; |
|
color: #333333; |
|
font-weight: bold; |
|
} |
|
|
|
.detail-btn { |
|
display: flex; |
|
align-items: center; |
|
gap: 5px; |
|
|
|
.detail-text { |
|
font-size: 33px; |
|
color: #8B8B8B; |
|
} |
|
} |
|
} |
|
|
|
// 订单信息 |
|
.card-info { |
|
display: flex; |
|
flex-direction: column; |
|
gap: 20px; |
|
margin-bottom: 30px; |
|
|
|
.info-row { |
|
display: flex; |
|
align-items: flex-start; |
|
justify-content: space-between; |
|
|
|
.info-label { |
|
font-size: 30px; |
|
color: #333333; |
|
flex-shrink: 0; |
|
} |
|
|
|
.info-value { |
|
font-size: 30px; |
|
color: #595959; |
|
text-align: right; |
|
word-break: break-all; |
|
} |
|
} |
|
} |
|
|
|
// 立即支付按钮 |
|
.pay-btn { |
|
width: 100%; |
|
height: 88px; |
|
background: #03C175; |
|
border-radius: 12px; |
|
border: none; |
|
font-weight: 400; |
|
font-size: 31px; |
|
color: #FFFFFF; |
|
display: flex; |
|
align-items: center; |
|
justify-content: center; |
|
} |
|
} |
|
} |
|
}
|
|
|