orderdetail.vue 791 B

1234567891011121314151617181920212223242526272829303132333435363738394041
  1. <template>
  2. <div>
  3. <NavTopBar/>
  4. <MemberTop/>
  5. <div class="sld_member_main_content">
  6. <div class="container">
  7. <slot/>
  8. </div>
  9. </div>
  10. <FooterBottom/>
  11. </div>
  12. </template>
  13. <script>
  14. </script>
  15. <style lang="scss" scoped>
  16. .sld_member_main_content {
  17. width: 100%;
  18. background-color: #F7F7F7;
  19. border-top: 1px solid #EBEBEB;
  20. padding-bottom: 10px;
  21. .container {
  22. width: 1210px;
  23. margin: 0 auto;
  24. padding-left: 0px;
  25. padding-right: 0px;
  26. &:before,&:after{
  27. display: table;
  28. content: " ";
  29. }
  30. &:after{
  31. clear: both;
  32. }
  33. }
  34. }
  35. </style>