12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- <!DOCTYPE html>
- <html lang="zh-cn">
- <head>
- <meta charset="UTF-8" />
- <meta http-equiv="X-UA-Compatible" content="IE=edge" />
- <meta name="viewport" content="width=device-width, initial-scale=1.0" />
- <title>Document</title>
- <style>
- .footer_box {
- position: relative;
- font-size: 0.14rem;
- text-align: center;
- font-size: 0.14rem;
- color: #666;
- line-height: 0.3rem;
- background-color: #F5F7F9;
- }
- .footer_box .footer_left {
- position: absolute;
- left: 0;
- top: 0;
- bottom: 0;
- margin: auto 0;
- }
- .footer_box .footer_right {
- position: absolute;
- right: 0;
- top: 0;
- bottom: 0;
- margin: auto 0;
- }
- </style>
- </head>
- <body>
- <div class="footer_box">
- <div>Copyright@2003 -2017 All Rights Reserved 豫ICP备17031890号-1</div>
- <div>联系地址:郑州市郑东新区崇德街与博学路交叉口向东300米星联创科中心7楼 河南星火燎原软件科技有限公司所有</div>
- <div>全国客服热线 (09:00-22:00) 0371-58605588</div>
- <div class="footer_left">星火云鸽</div>
- <div class="footer_right">微信扫码</div>
- </div>
- </body>
- </html>
|