1234567891011121314151617181920212223242526272829303132333435363738394041424344454647 |
- .order{
- padding:5px 5px 80px 5px;
- background: #f2f2f2;
- position: relative;
- width: 100%;
- min-height: 100vh;
- // height: 100vh;
- box-sizing: border-box;
- .order-list{
- width: 100%;
- box-sizing: border-box;
- }
- .order-item{
- background: #fff;
- box-sizing: border-box;
- border-radius: 15px;
- overflow: hidden;
- margin: 0 0 10px 0;
-
- .order-item-header{
-
- // width: 100%;
- box-sizing: border-box;
- padding:0 16px;
- height: 50px;
- line-height: 55px;
- font-weight: bold;
- .dian{
- padding:0 5px;
- font-weight: bold;
- }
- }
- .order-item-body{
- padding:0 16px;
- height: 55px;
- box-sizing: border-box;
- line-height: 55px;
- }
- .order-item-footer{
- padding:10px 16px;
- box-sizing: border-box;
- text-align: right;
- // width: 100%;
- }
- }
- }
|