做专业的水下设备制造商 旁站
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
587 B

  1. <template>
  2. <div class="about_overview_container">
  3. <Header />
  4. <h1 class="en">ABOUT US</h1>
  5. </div>
  6. </template>
  7. <script setup>
  8. import Header from '@/components/Header'
  9. </script>
  10. <style lang="scss" scoped>
  11. .about_overview_container {
  12. width: 100vw;
  13. height: 490px;
  14. background: url(../../static/img/lianxi/1.png) no-repeat;
  15. background-size: cover;
  16. position: relative;
  17. .en {
  18. position: absolute;
  19. left: 50%;
  20. bottom: 45%;
  21. transform: translateX(-50%);
  22. font-size: 26px;
  23. font-family: Zona Pro;
  24. font-weight: 800;
  25. color: #ffffff;
  26. }
  27. }
  28. </style>