| 12345678910111213141516171819202122232425262728293031323334353637383940 |
- <template>
- <div class="container">
- <abount-header :title="title" :bgImage="bgImage"></abount-header>
- </div>
- </template>
- <script>
- import AbountHeader from '~/components/about/header';
- export default {
- data() {
- return {
- title: '联系我们',
- bgImage: require('~/assets/images/about/about_contact.png'),
- }
- },
- components: {
- AbountHeader,
- },
- methods: {
- }
- }
- </script>
- <style lang="scss" scoped>
- @import "~static/common/style.sass";
- .header {
- display: flex;
- justify-content: center;
- align-items: center;
- height: 882px;
- background: url('~assets/images/about/about_contact.png') 100% 100% no-repeat;
- font-size:64px;
- font-family:PingFangSC-Medium,PingFang SC;
- font-weight:500;
- color:#ffffff;
- }
- </style>
|