|
123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960 |
- <!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>河南星火燎原软件科技有限公司</title>
- <link rel="shortcut icon" href="./favicon.ico" type="image/x-icon" />
- <link rel="stylesheet" href="./librarys/bootstrap@3.4.1/bootstrap.css" />
- <link rel="stylesheet" href="./css/comm.css" />
- <style>
- body {
- background-color: #fff;
- }
- .main_box {
- margin: 0 auto;
- margin-top: 150px;
- width: 1000px;
- }
- .main_box .main_item {
- display: inline-block;
- margin: 0 10px;
- width: calc(16% - 20px);
- border: 1px solid #999;
- box-shadow: 0 1px 6px #e8eaec;
- border-radius: 4px;
- line-height: 100px;
- font-size: 18px;
- font-weight: bold;
- text-align: center;
- border-color: #fff;
- cursor: pointer;
- }
- </style>
- </head>
- <body>
- <div class="main_box">
- <div class="main_item" data-url="user">用户信息</div>
- <div class="main_item" data-url="history">发展历程</div>
- <div class="main_item" data-url="service">服务案例</div>
- <div class="main_item" data-url="school">学校图标</div>
- <div class="main_item" data-url="trial">申请试用</div>
- <div class="main_item" data-url="news">新闻资讯</div>
- </div>
- <script src="./librarys/jquery@1.12.4/jquery.min.js"></script>
- <script src="./utils/index.js"></script>
- <script>
- $(function () {
- if (!$.isLogin()) {
- window.location.href = "/sections/login.html";
- return;
- }
- $(".main_box").on("click", ".main_item", function () {
- let _url = $(this).data("url");
- window.location.href = "/sections/" + _url + ".html";
- });
- });
- </script>
- </body>
- </html>
|