58 lines
953 B
Plaintext
58 lines
953 B
Plaintext
.container{
|
|
background-color: #F4F4F4;
|
|
width: 100vw;
|
|
height: 100vh;
|
|
}
|
|
.order_list{
|
|
display: flex;
|
|
width: 92vw;
|
|
margin: 0 auto;
|
|
flex-direction: column;
|
|
}
|
|
.order_item{
|
|
display: flex;
|
|
width: 100%;
|
|
margin-top: 30rpx;
|
|
}
|
|
.order_item_content{
|
|
flex: 10;
|
|
background-color: #fff;
|
|
border-radius: 20rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 20rpx;
|
|
height: 600rpx;
|
|
}
|
|
.order_item_content_top{
|
|
flex: 1;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 36rpx;
|
|
justify-content:space-between;
|
|
}
|
|
.order_status{
|
|
padding: 10rpx 20rpx;
|
|
font-size: 24rpx;
|
|
border-radius: 10rpx;
|
|
}
|
|
.order_status_ing{
|
|
background-color: #FFF2E8;
|
|
color: #FA541C;
|
|
}
|
|
.order_status_cancle{
|
|
background-color: #C5C5C5;
|
|
color: #fff;
|
|
}
|
|
.order_item_content_data{
|
|
flex: 3;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.order_id{
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 30rpx;
|
|
}
|