82 lines
1.2 KiB
Plaintext
82 lines
1.2 KiB
Plaintext
page{
|
|
background-color: #F4F4F4;
|
|
}
|
|
.container{
|
|
width: 100vw;
|
|
padding-bottom: 50rpx;
|
|
}
|
|
.order_list{
|
|
display: flex;
|
|
width: 92vw;
|
|
margin: 0 auto;
|
|
flex-direction: column;
|
|
|
|
}
|
|
.order_item{
|
|
display: flex;
|
|
width: 100%;
|
|
margin-top: 30rpx;
|
|
}
|
|
.order_item_checkbox{
|
|
flex: 1;
|
|
align-self: center;
|
|
}
|
|
.order_item_content{
|
|
flex: 10;
|
|
background-color: #fff;
|
|
border-radius: 20rpx;
|
|
display: flex;
|
|
flex-direction: column;
|
|
padding: 20rpx;
|
|
height: 400rpx;
|
|
}
|
|
.order_item_content_top{
|
|
flex: 1;
|
|
border-bottom: 1px solid #E5E5E5;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 36rpx;
|
|
}
|
|
.order_item_content_data{
|
|
flex: 3;
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
.order_id{
|
|
flex: 1;
|
|
display: flex;
|
|
align-items: center;
|
|
font-size: 30rpx;
|
|
}
|
|
.bottom{
|
|
position: fixed;
|
|
bottom: 0;
|
|
width: 100vw;
|
|
display: flex;
|
|
background-color: rgb(255, 255, 255);
|
|
align-items: center;
|
|
z-index: 99;
|
|
padding-bottom: 50rpx;
|
|
height: 100rpx;
|
|
}
|
|
.bottom_checkbox{
|
|
flex: 2.2;
|
|
font-size: 30rpx;
|
|
display: flex;
|
|
justify-content: left;
|
|
padding-left: 4vw;
|
|
}
|
|
.bottom_content{
|
|
flex: 6;
|
|
text-align: center;
|
|
font-size: 28rpx;
|
|
color: #666666;
|
|
}
|
|
.bottom_btn{
|
|
flex: 2;
|
|
justify-content: flex-end;
|
|
font-size: 34rpx;
|
|
}
|
|
|
|
|