做专业的水下设备制造商 旁站
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.

63 lines
1.3 KiB

2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
2 years ago
  1. <template>
  2. <div class="home_screen_container">
  3. <Header />
  4. <h1 class="main_title">
  5. 做铁路相关的设备<span class="sign">研发和制造</span>
  6. </h1>
  7. <div class="to_bottom" @click="toNextPage()">
  8. <img :src="Arrow" alt="arrow" class="arrow" />
  9. </div>
  10. </div>
  11. </template>
  12. <script setup>
  13. import Header from '@/components/Header'
  14. import Arrow from '@/static/img/jiantou.png'
  15. const toNextPage = () => {
  16. document.getElementById('about_us').scrollIntoView({
  17. behavior: 'smooth',
  18. })
  19. }
  20. </script>
  21. <style lang="scss" scoped>
  22. .home_screen_container {
  23. position: relative;
  24. width: 100vw;
  25. height: 100vh;
  26. background: url(../static/img/1.png) no-repeat;
  27. background-size: 100% 100%;
  28. .main_title {
  29. font-size: 76px;
  30. font-family: Alibaba PuHuiTi;
  31. font-weight: bold;
  32. color: #f1f1f1;
  33. position: absolute;
  34. top: 45%;
  35. left: 50%;
  36. transform: translate(-50%, -50%);
  37. white-space: nowrap;
  38. .sign {
  39. color: RGBA(249, 89, 38, 1);
  40. }
  41. }
  42. .to_bottom {
  43. display: flex;
  44. align-items: center;
  45. justify-content: center;
  46. width: 38px;
  47. height: 38px;
  48. cursor: pointer;
  49. border: 2px solid #ffffff;
  50. border-radius: 50%;
  51. position: absolute;
  52. bottom: 53px;
  53. left: 50%;
  54. transform: translateX(-50%);
  55. .arrow {
  56. width: 17px;
  57. height: 10px;
  58. }
  59. }
  60. }
  61. </style>