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

75 lines
2.0 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
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. <h1 class="main_title">
  4. 做铁路相关的设备<span class="sign">研发和制造</span>
  5. </h1>
  6. <div class="to_bottom" @click="toNextPage()">
  7. <svg
  8. t="1684719940478"
  9. class="arrow"
  10. viewBox="0 0 1024 1024"
  11. version="1.1"
  12. xmlns="http://www.w3.org/2000/svg"
  13. p-id="2386"
  14. width="30"
  15. height="100"
  16. >
  17. <path
  18. d="M512.726547 675.318646c-8.063653 0-15.790638-3.245927-21.435195-9.006118L231.175103 400.906809c-11.603269-11.837606-11.410887-30.840402 0.427742-42.442648 11.837606-11.601222 30.841426-11.410887 42.442648 0.427742l238.681054 243.534596L751.407602 358.891903c11.601222-11.839653 30.602995-12.033058 42.442648-0.427742 11.839653 11.603269 12.031011 30.605042 0.427742 42.442648L534.161742 666.312528C528.517185 672.072719 520.791224 675.318646 512.726547 675.318646z"
  19. fill="#ffffff"
  20. p-id="2387"
  21. ></path>
  22. </svg>
  23. </div>
  24. </div>
  25. </template>
  26. <script setup>
  27. const toNextPage = () => {
  28. document.getElementById('about_us').scrollIntoView({
  29. behavior: 'smooth',
  30. })
  31. }
  32. </script>
  33. <style lang="scss" scoped>
  34. .home_screen_container {
  35. position: relative;
  36. width: 100vw;
  37. height: 100vh;
  38. background: url(../static/img/index/1.png) no-repeat;
  39. background-size: 100% 100%;
  40. .main_title {
  41. font-size: 76px;
  42. font-family: Alibaba PuHuiTi;
  43. font-weight: bold;
  44. color: #f1f1f1;
  45. position: absolute;
  46. top: 45%;
  47. left: 50%;
  48. transform: translate(-50%, -50%);
  49. white-space: nowrap;
  50. .sign {
  51. color: RGBA(249, 89, 38, 1);
  52. }
  53. }
  54. .to_bottom {
  55. display: flex;
  56. align-items: center;
  57. justify-content: center;
  58. width: 30px;
  59. height: 30px;
  60. cursor: pointer;
  61. border: 2px solid #ffffff;
  62. border-radius: 50%;
  63. position: absolute;
  64. bottom: 53px;
  65. left: 50%;
  66. transform: translateX(-50%);
  67. .arrow {
  68. // width: 17px;
  69. // height: 10px;
  70. }
  71. }
  72. }
  73. </style>