12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- .orderItemContainer{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 90%;
- margin-top: 5%;
- margin-bottom: 3%;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- border-radius: 3%;
- padding: 2% 2%;
- }
- .dateTime {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- width: 100%;
- }
- .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: #ca5a50;
- border-radius: 10%;
- }
- .volume {
- color: #ff4e0e;
- font-size: large;
- }
- .bottom {
- display: flex;
- flex-direction: row-reverse;
- align-items: center;
- justify-content: space-between;
- margin-top: 5%;
- width: 90%;
- }
- .amount {
- display: flex;
- flex-direction: row;
- font-weight: 600;
- }
|