| 123456789101112131415161718192021222324252627 |
- <template>
- <div class="about-page">
- <h1>关于(PC)</h1>
- </div>
- </template>
- <script setup>
- definePageMeta({
- layout: 'pc'
- })
- </script>
- <style scoped lang="scss">
- .about-page {
- width: 100%;
- max-width: 1920px;
- margin: 0 auto;
- padding: 120px 20px 20px;
- min-height: calc(100vh - 200px);
- h1 {
- color: #fff;
- font-size: 48px;
- text-align: center;
- }
- }
- </style>
|