section.vue 822 B

123456789101112131415161718192021222324252627282930313233343536
  1. <template>
  2. <!-- 二级路由出口 -->
  3. <div class="main">
  4. <div class="body-wrapper">
  5. <router-view/>
  6. </div>
  7. </div>
  8. </template>
  9. <script setup lang="ts">
  10. </script>
  11. <style lang="scss" scoped>
  12. .main{
  13. width: 100%;
  14. // background-color: #ed8c0f;
  15. background-image: linear-gradient(to bottom left, #ED8C0F, #EF6158, #C85384, #875892, #49557F, #2F4858 );
  16. min-height: calc(100vh - 160px);
  17. padding-bottom: 30px;
  18. .body-wrapper{
  19. width: 1000px;
  20. margin: 0 auto;
  21. margin-top: 30px;
  22. border-radius: 12px;
  23. overflow: hidden;
  24. min-height: calc(100vh - 160px);
  25. // background-color: rgba($color: #fff, $alpha: 0.5);
  26. background-color: rgba($color: #fff, $alpha: 1);
  27. padding: 30px;
  28. box-sizing: border-box;
  29. }
  30. }
  31. </style>