12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- .orderContainer{
- display: flex;
- flex-direction: column;
- align-items: center;
- background-color: #f2f2f2;
- height: 100vh;
- }
- .dataSelect {
- display: flex;
- flex-direction: row;
- justify-content: space-between;
- align-items: center;
- width: 90%;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- padding: 2% 3%;
- border-radius: 3%;
- background-color: #FFFFFF;
- margin-top: 1%;
- }
- .dateTip{
- display: flex;
- align-items: center;
- width: 60%;
- }
- .dataSelect image{
- width: 50rpx;
- height: 50rpx;
- margin-right: 5%;
- }
- picker{
- margin-left: 4%;
- width: 100%;
- }
- .order{
- display: flex;
- flex-direction: column;
- align-items: center;
- width: 93%;
- }
- .orderItem {
- width: 100%;
- box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
- border-radius: 1%;
- margin-top: 5%;
- }
|