| 12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <template>
- <div class="container home-container">
- <img :src="IntroductionWords" alt="公司标语" class="introduction-words" />
- <section class="home-bg" />
- <section class="introduction-card-section">
- <IntroductionCard />
- </section>
- </div>
- </template>
- <script lang="ts" setup>
- import IntroductionWords from 'assets/images/home/introduction-words@1X.png';
- import IntroductionCard from './src/components/IntroductionCard.vue';
- </script>
- <style lang="scss" scoped>
- .home-container {
- width: 100%;
- height: 100%;
- position: relative;
- display: flex;
- flex-direction: column;
- }
- .introduction-words {
- position: absolute;
- left: 405cpx;
- top: 30cpx;
- width: 265cpx;
- }
- .home-bg {
- width: 100%;
- height: 510cpx;
- background: url('assets/images/home/home-bg@1X.png') no-repeat center center / cover;
- flex-shrink: 0;
- }
- .introduction-card-section {
- width: 100%;
- flex: 1;
- max-height: 407cpx;
- padding: 10cpx 20cpx;
- }
- </style>
|