123456789101112131415161718192021222324252627282930313233343536373839404142 |
- page {
- background-color: #F5F9FC;
- }
- .order-box {
- &-list {
- padding: 30rpx;
- &-item {
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: #fff;
- padding: 30rpx;
- margin-bottom: 20rpx;
- border-radius: 10rpx;
- font-size: 30rpx;
- color: #333;
- .left {
- display: flex;
- align-items: center;
- &-radio {
- margin-right: 10rpx;
- }
- &-content {
- line-height: 50rpx;
- }
- }
- }
- }
- &-bottom {
- display: flex;
- justify-content: space-between;
- align-items: center;
- background-color: #fff;
- padding: 10rpx 30rpx;
- }
- }
|