123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114 |
- <!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;
- margin: 0 auto;
- padding: 0.33rem 0;
- width: 13rem;
- 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;
- cursor: pointer;
- }
- .footer_box .footer_left > img {
- display: inline-block;
- margin-right: 0.08rem;
- margin-top: 0.63rem;
- height: 0.3rem;
- }
- .footer_box .footer_right {
- position: absolute;
- right: 0;
- top: 0;
- bottom: 0;
- margin: auto 0;
- cursor: pointer;
- }
- .footer_box .footer_right > img {
- display: inline-block;
- margin-top: 0.57rem;
- height: 0.42rem;
- }
- .footer_box .footer_right .footer_qrCode {
- display: none;
- position: absolute;
- bottom: 1.12rem;
- left: -0.8rem;
- width: 2rem;
- background-color: #fff;
- box-shadow: 0 0 14px 0 #00000038;
- z-index: 9999;
- }
- .footer_box .footer_right:hover .footer_qrCode {
- display: block;
- }
- .footer_box .footer_right .footer_qrCode_title {
- padding: 0.12rem 0;
- font-size: 0.12rem;
- color: #999;
- font-weight: 700;
- background-color: #F5F7F9;
- }
- .footer_box .footer_right .footer_qrCode img {
- display: block;
- margin: 0.16rem auto;
- width: 1.23rem;
- }
- .footer_box
- .footer_right .footer_qrCode::after {
- border-left: 0.14rem solid transparent;
- border-right: 0.14rem solid transparent;
- border-bottom: 0.14rem solid #fff;
- width: 0;
- height: 0;
- content: "";
- position: absolute;
- bottom: -0.08rem;
- left: 50%;
- transform: translateX(-50%) rotate(180deg);
- -webkit-transform: translateX(-50%) rotate(180deg);
- }
- </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">
- <img src="../../img/logo_info/footer_logo.png" />
- <img src="../../img/logo_info/footer_title.png" />
- </div>
- <div class="footer_right">
- <img src="../../img/logo_info/weixin.png" />
- <div class="footer_qrCode">
- <div class="footer_qrCode_title">星火燎原公众号</div>
- <img src="../../img/logo_info/erweima.png" />
- </div>
- </div>
- </div>
- <script>
- $(function () {
- $(".footer_box .footer_left").click(function () {
- window.location.href = "/index.html";
- });
- });
- </script>
- </body>
- </html>
|