星火官网,前端页面(前台)
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.

footer.html 3.5KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115
  1. <!DOCTYPE html>
  2. <html lang="zh-cn">
  3. <head>
  4. <meta charset="UTF-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge" />
  6. <meta name="viewport" content="width=device-width, initial-scale=1.0" />
  7. <meta http-equiv="Cache-Control" content="max-age=7200" />
  8. <title>Document</title>
  9. <style>
  10. .footer_box {
  11. position: relative;
  12. margin: 0 auto;
  13. padding: 0.33rem 0;
  14. width: 13rem;
  15. font-size: 0.14rem;
  16. text-align: center;
  17. font-size: 0.14rem;
  18. color: #666;
  19. line-height: 0.3rem;
  20. background-color: #F5F7F9;
  21. }
  22. .footer_box .footer_left {
  23. position: absolute;
  24. left: 0;
  25. top: 0;
  26. bottom: 0;
  27. margin: auto 0;
  28. cursor: pointer;
  29. }
  30. .footer_box .footer_left > img {
  31. display: inline-block;
  32. margin-right: 0.08rem;
  33. margin-top: 0.63rem;
  34. height: 0.3rem;
  35. }
  36. .footer_box .footer_right {
  37. position: absolute;
  38. right: 0;
  39. top: 0;
  40. bottom: 0;
  41. margin: auto 0;
  42. cursor: pointer;
  43. }
  44. .footer_box .footer_right > img {
  45. display: inline-block;
  46. margin-top: 0.57rem;
  47. height: 0.42rem;
  48. }
  49. .footer_box .footer_right .footer_qrCode {
  50. display: none;
  51. position: absolute;
  52. bottom: 1.12rem;
  53. left: -0.8rem;
  54. width: 2rem;
  55. background-color: #fff;
  56. box-shadow: 0 0 14px 0 #00000038;
  57. z-index: 9999;
  58. }
  59. .footer_box .footer_right:hover .footer_qrCode {
  60. display: block;
  61. }
  62. .footer_box .footer_right .footer_qrCode_title {
  63. padding: 0.12rem 0;
  64. font-size: 0.12rem;
  65. color: #999;
  66. font-weight: 700;
  67. background-color: #F5F7F9;
  68. }
  69. .footer_box .footer_right .footer_qrCode img {
  70. display: block;
  71. margin: 0.16rem auto;
  72. width: 1.23rem;
  73. }
  74. .footer_box
  75. .footer_right .footer_qrCode::after {
  76. border-left: 0.14rem solid transparent;
  77. border-right: 0.14rem solid transparent;
  78. border-bottom: 0.14rem solid #fff;
  79. width: 0;
  80. height: 0;
  81. content: "";
  82. position: absolute;
  83. bottom: -0.08rem;
  84. left: 50%;
  85. transform: translateX(-50%) rotate(180deg);
  86. -webkit-transform: translateX(-50%) rotate(180deg);
  87. }
  88. </style>
  89. </head>
  90. <body>
  91. <div class="footer_box">
  92. <div>Copyright@2003 -2017 All Rights Reserved 豫ICP备17031890号-1</div>
  93. <div>联系地址:郑州市郑东新区崇德街与博学路交叉口向东300米星联创科中心7楼 河南星火燎原软件科技有限公司所有</div>
  94. <div>全国客服热线 (09:00-22:00) 0371-58605588</div>
  95. <div class="footer_left">
  96. <img src="../../img/logo_info/footer_logo.png" />
  97. <img src="../../img/logo_info/footer_title.png" />
  98. </div>
  99. <div class="footer_right">
  100. <img src="../../img/logo_info/weixin.png" />
  101. <div class="footer_qrCode">
  102. <div class="footer_qrCode_title">星火燎原公众号</div>
  103. <img src="../../img/logo_info/erweima.png" />
  104. </div>
  105. </div>
  106. </div>
  107. <script>
  108. $(function () {
  109. $(".footer_box .footer_left").click(function () {
  110. window.location.href = "/index.html";
  111. });
  112. });
  113. </script>
  114. </body>
  115. </html>