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

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