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

116 lines
2.8 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
  1. <template>
  2. <div class="bottom_text_container">
  3. <div>
  4. <img :src="Logo" alt="" class="img" />
  5. </div>
  6. <div class="some_link_container">
  7. <div class="some_link">
  8. <p>首页</p>
  9. <p>|</p>
  10. <p>工业设计</p>
  11. <p>|</p>
  12. <p>企业文化</p>
  13. <p>|</p>
  14. <p>软硬件开发</p>
  15. <p>|</p>
  16. <p>招聘</p>
  17. <p>|</p>
  18. <p>联系我们</p>
  19. <p>|</p>
  20. <p>关于我们</p>
  21. </div>
  22. <div class="address">
  23. <p>北京市昌平区回龙观街道博纳集团3号楼一层</p>
  24. <p class="compony">产品梦工厂</p>
  25. </div>
  26. <div class="contract_type">
  27. <p class="phone_1">Tel13717892017</p>
  28. <p>Tel13161967787</p>
  29. <p class="email">
  30. 邮箱<span class="blue_text">info@iflytop.com</span>
  31. </p>
  32. </div>
  33. </div>
  34. <div class="intro">
  35. <p class="text1">
  36. 专业从事研发12年产品梦工厂,作为一家资深的研发公司主导了大量产品从需求产品定义策划
  37. 外观结构硬件嵌软软件全功能样机模具批量灰度测试产能爬坡的全流程经验
  38. </p>
  39. <p>
  40. 专业的团队加上技术的沉淀以及自有工厂的加持我们的目标只有一个做产品找产品梦工厂就对
  41. 了帮您节省投资
  42. </p>
  43. </div>
  44. </div>
  45. </template>
  46. <script setup>
  47. import Logo from '@/static/img/index/12.png'
  48. </script>
  49. <style lang="scss" scoped>
  50. .bottom_text_container {
  51. height: 300px;
  52. box-sizing: border-box;
  53. background: url(../static/img/index/11.png) no-repeat;
  54. background-size: 100% 100%;
  55. display: flex;
  56. align-items: center;
  57. padding: 85px 107px 71px 106px;
  58. .img {
  59. width: 106px;
  60. height: 93px;
  61. }
  62. .some_link_container {
  63. height: 100%;
  64. margin: 0 135px 0 120px;
  65. .some_link {
  66. display: flex;
  67. align-items: center;
  68. justify-content: space-between;
  69. width: 611px;
  70. font-size: 14px;
  71. font-weight: 300;
  72. color: #e3e3e3;
  73. margin-bottom: 50px;
  74. }
  75. .address {
  76. display: flex;
  77. align-items: center;
  78. font-size: 14px;
  79. font-weight: 300;
  80. color: #e3e3e3;
  81. margin-bottom: 50px;
  82. .compony {
  83. margin-left: 24px;
  84. }
  85. }
  86. .contract_type {
  87. display: flex;
  88. align-items: center;
  89. font-size: 14px;
  90. font-weight: 300;
  91. color: #e3e3e3;
  92. letter-spacing: 3px;
  93. white-space: nowrap;
  94. .phone_1 {
  95. margin-right: 36px;
  96. }
  97. .email {
  98. margin-left: 36px;
  99. }
  100. }
  101. }
  102. .intro {
  103. font-size: 14px;
  104. font-weight: 300;
  105. color: #e3e3e3;
  106. line-height: 20px;
  107. height: 100%;
  108. display: flex;
  109. flex-direction: column;
  110. justify-content: space-between;
  111. word-break: break-all;
  112. }
  113. }
  114. </style>