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