1234567891011121314151617181920212223242526272829303132333435 |
- .order-box {
- background-color: #f9f9f9;
- height: calc(100vh - 44px);
- &-list {
- padding: 30rpx;
- &-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: #fff;
- padding: 30rpx;
- margin-bottom: 20rpx;
- border-radius: 10rpx;
- .left {
- display: flex;
- align-items: center;
- &-radio {
- margin-right: 10rpx;
- }
- }
- }
- }
- &-bottom {
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: #fff;
- padding: 10rpx 30rpx;
- }
- }
|