Footer.vue 6.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315
  1. <template>
  2. <div id="footer" class="container-fluid">
  3. <!-- 背景装饰 -->
  4. <div class="footer-bg">
  5. <div class="gradient-orb orb-1"></div>
  6. <div class="gradient-orb orb-2"></div>
  7. </div>
  8. <div class="footer-content">
  9. <div class="logo">
  10. <img src="@/assets/img/logo_white.svg" alt="logo 图">
  11. </div>
  12. <p class="title">上海展域航空技术有限公司</p>
  13. <p class="subtitle">您身边的无人机解决方案专家</p>
  14. <div class="footer-info">
  15. <div class="info-item">
  16. <i class="glyphicon glyphicon-map-marker"></i>
  17. <span>地址:上海市徐汇区漕溪路 252 号银海大楼 C-406</span>
  18. </div>
  19. <div class="info-item">
  20. <i class="glyphicon glyphicon-earphone"></i>
  21. <span>联系电话:15086621233</span>
  22. </div>
  23. <div class="info-item">
  24. <i class="glyphicon glyphicon-envelope"></i>
  25. <span>邮箱:zhanyuhangkong@163.com</span>
  26. </div>
  27. <div class="info-item">
  28. <i class="glyphicon glyphicon-wechat"></i>
  29. <span>微信号:15086621233</span>
  30. </div>
  31. </div>
  32. <div class="footer-links">
  33. <router-link to="/products">产品中心</router-link>
  34. <router-link to="/solutions">解决方案</router-link>
  35. <router-link to="/news">公司动态</router-link>
  36. <router-link to="/info">关于我们</router-link>
  37. </div>
  38. <div class="copyright">
  39. <p>
  40. <span>Copyright &copy; {{ new Date().getFullYear() }} 上海展域航空技术有限公司</span>
  41. </p>
  42. <p>
  43. <a href="https://beian.miit.gov.cn/" target="_blank">沪 ICP 备 2023024212 号 -1</a>
  44. </p>
  45. </div>
  46. </div>
  47. </div>
  48. </template>
  49. <script>
  50. export default {
  51. name: "Footer",
  52. data() {
  53. return {};
  54. }
  55. };
  56. </script>
  57. <style scoped>
  58. #footer {
  59. position: relative;
  60. width: 100%;
  61. color: #fff;
  62. background: linear-gradient(135deg, #0f172a 0%, #1e3c72 50%, #2a5298 100%);
  63. overflow: hidden;
  64. padding: 60px 20px 40px;
  65. }
  66. /* 背景装饰 */
  67. #footer .footer-bg {
  68. position: absolute;
  69. top: 0;
  70. left: 0;
  71. width: 100%;
  72. height: 100%;
  73. overflow: hidden;
  74. z-index: 0;
  75. }
  76. #footer .gradient-orb {
  77. position: absolute;
  78. border-radius: 50%;
  79. filter: blur(80px);
  80. opacity: 0.3;
  81. animation: float 8s ease-in-out infinite;
  82. }
  83. #footer .orb-1 {
  84. width: 400px;
  85. height: 400px;
  86. background: radial-gradient(circle, rgba(99, 102, 241, 0.5) 0%, transparent 70%);
  87. top: -100px;
  88. left: -100px;
  89. }
  90. #footer .orb-2 {
  91. width: 300px;
  92. height: 300px;
  93. background: radial-gradient(circle, rgba(168, 85, 247, 0.4) 0%, transparent 70%);
  94. bottom: -50px;
  95. right: -50px;
  96. animation-delay: 3s;
  97. }
  98. @keyframes float {
  99. 0%, 100% { transform: translate(0, 0); }
  100. 50% { transform: translate(30px, 40px); }
  101. }
  102. /* 内容区域 */
  103. #footer .footer-content {
  104. position: relative;
  105. z-index: 1;
  106. max-width: 1200px;
  107. margin: 0 auto;
  108. }
  109. /* Logo */
  110. #footer .logo {
  111. width: 200px;
  112. margin: 0 auto 25px;
  113. text-align: center;
  114. }
  115. #footer .logo img {
  116. width: 100%;
  117. height: auto;
  118. filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
  119. transition: transform 0.3s ease;
  120. }
  121. #footer .logo:hover img {
  122. transform: scale(1.05);
  123. }
  124. /* 标题 */
  125. #footer .title {
  126. font-size: 28px;
  127. font-weight: 700;
  128. text-align: center;
  129. margin: 0 0 10px;
  130. letter-spacing: 2px;
  131. background: linear-gradient(90deg, #fff 0%, #e0e7ff 100%);
  132. -webkit-background-clip: text;
  133. -webkit-text-fill-color: transparent;
  134. background-clip: text;
  135. }
  136. #footer .subtitle {
  137. font-size: 14px;
  138. text-align: center;
  139. color: rgba(255, 255, 255, 0.7);
  140. margin: 0 0 40px;
  141. letter-spacing: 3px;
  142. }
  143. /* 信息列表 */
  144. #footer .footer-info {
  145. display: flex;
  146. flex-wrap: wrap;
  147. justify-content: center;
  148. gap: 20px 40px;
  149. margin: 30px 0;
  150. }
  151. #footer .info-item {
  152. display: flex;
  153. align-items: center;
  154. gap: 10px;
  155. font-size: 14px;
  156. color: rgba(255, 255, 255, 0.8);
  157. padding: 12px 20px;
  158. background: rgba(255, 255, 255, 0.05);
  159. border: 1px solid rgba(255, 255, 255, 0.1);
  160. border-radius: 12px;
  161. backdrop-filter: blur(10px);
  162. transition: all 0.3s ease;
  163. }
  164. #footer .info-item:hover {
  165. background: rgba(255, 255, 255, 0.1);
  166. border-color: rgba(30, 115, 190, 0.5);
  167. transform: translateY(-3px);
  168. box-shadow: 0 8px 20px rgba(0, 0, 0, 0.2);
  169. }
  170. #footer .info-item i {
  171. font-size: 16px;
  172. color: #60a5fa;
  173. }
  174. #footer .info-item span {
  175. white-space: nowrap;
  176. }
  177. /* 快捷链接 */
  178. #footer .footer-links {
  179. display: flex;
  180. justify-content: center;
  181. gap: 30px;
  182. margin: 40px 0 30px;
  183. padding: 20px 0;
  184. border-top: 1px solid rgba(255, 255, 255, 0.1);
  185. border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  186. }
  187. #footer .footer-links a {
  188. color: rgba(255, 255, 255, 0.8);
  189. font-size: 14px;
  190. text-decoration: none;
  191. transition: all 0.3s ease;
  192. position: relative;
  193. padding: 5px 0;
  194. }
  195. #footer .footer-links a::after {
  196. content: '';
  197. position: absolute;
  198. bottom: 0;
  199. left: 50%;
  200. width: 0;
  201. height: 2px;
  202. background: linear-gradient(90deg, #60a5fa, #3b82f6);
  203. transition: all 0.3s ease;
  204. transform: translateX(-50%);
  205. }
  206. #footer .footer-links a:hover {
  207. color: #fff;
  208. }
  209. #footer .footer-links a:hover::after {
  210. width: 100%;
  211. }
  212. /* 版权信息 */
  213. #footer .copyright {
  214. text-align: center;
  215. margin-top: 30px;
  216. }
  217. #footer .copyright p {
  218. font-size: 13px;
  219. color: rgba(255, 255, 255, 0.6);
  220. margin: 8px 0;
  221. }
  222. #footer .copyright a {
  223. color: rgba(255, 255, 255, 0.6);
  224. text-decoration: none;
  225. transition: color 0.3s ease;
  226. }
  227. #footer .copyright a:hover {
  228. color: #60a5fa;
  229. }
  230. /* 响应式设计 */
  231. @media screen and (max-width: 997px) {
  232. #footer {
  233. padding: 50px 20px 30px;
  234. }
  235. #footer .title {
  236. font-size: 22px;
  237. }
  238. #footer .subtitle {
  239. font-size: 13px;
  240. }
  241. #footer .footer-info {
  242. flex-direction: column;
  243. align-items: center;
  244. gap: 12px;
  245. }
  246. #footer .info-item {
  247. width: 100%;
  248. max-width: 400px;
  249. justify-content: center;
  250. }
  251. #footer .footer-links {
  252. flex-wrap: wrap;
  253. gap: 15px 25px;
  254. }
  255. #footer .copyright p {
  256. font-size: 12px;
  257. }
  258. }
  259. @media screen and (max-width: 768px) {
  260. #footer {
  261. padding: 40px 15px 25px;
  262. }
  263. #footer .logo {
  264. width: 150px;
  265. }
  266. #footer .title {
  267. font-size: 18px;
  268. }
  269. #footer .footer-links {
  270. flex-direction: column;
  271. gap: 12px;
  272. align-items: center;
  273. }
  274. }
  275. </style>