12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849 |
- .order-details{
- position: relative;
- box-sizing: border-box;
- width: 100%;
- padding:0 0 80px 0;
- .asd{
- padding:0 0 16px 0;
- }
- // min-height: 100vh;
- .order-details-header{
- font-weight: bold;
- height: 70px;
- line-height: 70px;
- padding:0 16px;
- box-sizing: border-box;
- border-bottom:1px solid #f2f2f2 ;
- }
- .order-details-main{
- .item-nth{
- background: rgb(247, 248, 250);
- }
- }
- .order-details-footer{
- position: fixed;
- left:0;
- bottom: 0;
- width: 100%;
- box-sizing: border-box;
- padding:10px 16px;
- z-index: 9999;
- background: #fff;
- border-top: 1px solid #f2f2f2;
- &::after,
- &::before {
- content: "";
- display: block;
- clear: both;
- }
- .footer-title{
- font-size: 18px;
- font-weight: bold;
- padding:0 0 0 10px ;
- display: inline;
- height: 40px;
- line-height: 40px;
- }
- }
- }
|