1234567891011121314151617181920 |
- <template>
- <div class="flex column stretch layout-wrap">
- <pc-header-lite></pc-header-lite>
- <nuxt />
- </div>
- </template>
- <style
- lang="scss"
- scoped
- >
- .layout-wrap {
- position: relative;
- height: 100%;
- box-sizing: border-box;
- margin: 0 auto;
- width: 100%;
- max-width: 1880px;
- padding: 0 40px;
- }
- </style>
|