index.scss 912 B

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849
  1. .order-details{
  2. position: relative;
  3. box-sizing: border-box;
  4. width: 100%;
  5. padding:0 0 80px 0;
  6. .asd{
  7. padding:0 0 16px 0;
  8. }
  9. // min-height: 100vh;
  10. .order-details-header{
  11. font-weight: bold;
  12. height: 70px;
  13. line-height: 70px;
  14. padding:0 16px;
  15. box-sizing: border-box;
  16. border-bottom:1px solid #f2f2f2 ;
  17. }
  18. .order-details-main{
  19. .item-nth{
  20. background: rgb(247, 248, 250);
  21. }
  22. }
  23. .order-details-footer{
  24. position: fixed;
  25. left:0;
  26. bottom: 0;
  27. width: 100%;
  28. box-sizing: border-box;
  29. padding:10px 16px;
  30. z-index: 9999;
  31. background: #fff;
  32. border-top: 1px solid #f2f2f2;
  33. &::after,
  34. &::before {
  35. content: "";
  36. display: block;
  37. clear: both;
  38. }
  39. .footer-title{
  40. font-size: 18px;
  41. font-weight: bold;
  42. padding:0 0 0 10px ;
  43. display: inline;
  44. height: 40px;
  45. line-height: 40px;
  46. }
  47. }
  48. }