contact.vue 1.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. <template>
  2. <div class="container">
  3. <abount-header :title="title" :bgImage="bgImage"></abount-header>
  4. <!-- 优质输出平台 -->
  5. <div class="quality">
  6. <div class="q-title title-zh">全球优质教育内容输出平台</div>
  7. <div class="q-content w1200">
  8. <div>1111</div>
  9. </div>
  10. </div>
  11. </div>
  12. </template>
  13. <script>
  14. import AbountHeader from '~/components/about/header';
  15. export default {
  16. data() {
  17. return {
  18. title: '联系我们',
  19. bgImage: require('~/assets/images/about/about_contact.png'),
  20. }
  21. },
  22. components: {
  23. AbountHeader,
  24. },
  25. methods: {
  26. }
  27. }
  28. </script>
  29. <style lang="scss" scoped>
  30. @import "~static/common/style.sass";
  31. .title-zh {
  32. height: 81px;
  33. line-height: 81px;
  34. font-size: 58px;
  35. font-family: PingFangSC-Semibold, PingFang SC;
  36. font-weight: 600;
  37. color: #000000;
  38. letter-spacing: 1px;
  39. text-align: center;
  40. }
  41. .quality {
  42. background: url('~assets/images/about/contact_bg_01.png') 100% 100% no-repeat;
  43. .q-content {
  44. }
  45. }
  46. </style>