1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- .orderItemContainer{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 100%;
- margin-top: 3%;
- margin-bottom: 3%;
- }
- .dateTime {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- }
- .timeAndStatus{
- display: flex;
- flex-direction: column;
- align-items: center;
- }
- .middle {
- display: flex;
- flex-direction: row;
- align-items: center;
- width: 90%;
- border-bottom: 2rpx dashed #e1e1e2;
- }
- .middle image{
- width: 150rpx;
- height: 150rpx;
- }
- .orderInfo{
- width: 50%;
- height: 100%;
- display: flex;
- flex-direction: column;
- justify-content: space-around;
- }
- .nozzleAndVolume{
- display: flex;
- width: 60%;
- justify-content: space-between;
- align-items: center;
- margin-top: 3%;
- }
- .nozzle {
- color: #ffffff;
- font-weight: 600;
- font-size: small;
- background-color: #0d7ee7;
- border-radius: 10%;
- }
- .youqiang{transform: scaleX(-1);}
- .volume {
- color: #0d7ee7;
- font-size: large;
- }
- .bottom {
- display: flex;
- flex-direction: row;
- align-items: center;
- justify-content: space-between;
- margin-top: 5%;
- width: 90%;
- }
- .amount {
- display: flex;
- flex-direction: row;
- font-weight: 600;
- }
- .botton{
- display: flex;
- width: 60%;
- justify-content: space-between;
- }
- .botton button{
- width: 45%;
- background-color: transparent;
- border: 1rpx solid #b6df96;
- font-weight: 500;
- display: flex;
- align-items: center;
- justify-content: center;
- padding: 5px;
- }
|