12345678910111213141516171819202122232425262728293031323334 |
- /* pages/order/order.wxss */
- .order .nav {
- width: 100vw;
- position: fixed;
- background-color: #fff;
- }
- .order .item .value {
- color: green;
- }
- .order .item .title {
- font-size: 32rpx;
- }
- .order .item .label {
- width: 70vw;
- }
- .order .item .g {
- padding: 5rpx 0;
- font-size: 28rpx;
- color: black;
- }
- .order .item .price .txt {
- color: #f03;
- }
- .order .item .btns {
- display: flex;
- justify-content: flex-end;
- align-items: center;
- }
- .order .item .cell {
- padding-top: 0;
- }
- .order .item .cells {
- padding-bottom: 0;
- }
|