123456789101112131415161718192021222324252627282930 |
- page {
- background: #f6f6f6;
- }
- page .box {
- background: #fff;
- border-radius: 20rpx;
- margin: 20rpx;
- padding: 20rpx;
- }
- page .box .name {
- display: flex;
- justify-content: space-between;
- }
- page .box .details {
- display: flex;
- margin-top: 20rpx;
- }
- page .box .details .image {
- width: 150rpx;
- height: 150rpx;
- }
- page .box .details .txt {
- margin-left: 20rpx;
- display: flex;
- flex-direction: column;
- justify-content: space-between;
- }
- page .box .details .txt .totalPrice {
- color: red;
- }
|