| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182 |
- <!DOCTYPE html>
- <html>
- <head>
- <meta charset="UTF-8">
- <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
- <meta name="apple-mobile-web-app-capable" content="yes">
- <meta name="apple-mobile-web-app-status-bar-style" content="black">
- <link rel="stylesheet" href="./layui/css/layui.mobile.css" />
- <link href="./css/mui.min.css" rel="stylesheet" />
- <link rel="stylesheet" href="./css/iconfont.css" />
- <link rel="stylesheet" href="./css/inits.css" />
- <title>首页</title>
- <style>
- body{
- width: 100vx;
- height: 100vh;
- background-color: #fff !important;
- }
- .mui-content {
- background-color: #fff !important;
- margin-top: 70px;
- }
- .logo{
- width: 150px;
- height: 150px;
- display: block;
- margin: 0 auto 0;
- margin-bottom: 10px;
- }
- .btn {
- width: 75%;
- margin: 50px auto 0px;
- background-color: #1ba3c9;
- outline: none;
- border: none;
- padding: 13px 12px;
- display: block;
- border-radius: 20px;
- font-size: 18px;
- color: #fff;
- }
- .topBtn{
- background-color: #fb9703;
- }
- .topBtn:active{
- background-color: #fb9703;
- }
- .title{
- text-align: center;
- width: 260px;
- font-size: 24px;
- margin: 0 auto;
- line-height: 35px;
- font-weight: 600;
- }
- </style>
- </head>
- <body>
- <div class="mui-content">
- <img src="./images/logo.png" alt="" class="logo">
- <div class="title">安阳12345政务服务热线为您服务</div>
- <button type="button" class="btn topBtn">咨询、建议、投诉</button>
- <button type="button" class="btn bottomBtn">问题结果查询</button>
- </div>
- <!-- <script src="layui/layui.js"></script> -->
- <script src="./js/mui.min.js"></script>
- <script src="./layui/layui.js"></script>
- <script src="./js/zepto.js"></script>
- <script src="./Script/Common/huayi.config.js"></script>
- <script src="./Script/Common/huayi.http.js"></script>
- <script>
- // var openid = 'obwtK6JT-bTCeSbtqu4lkw4lIz0o'
- $('.topBtn').click(function(){
- window.location.replace("./html/addWorkOrder.html");
- })
- $('.bottomBtn').click(function(){
- window.location.replace("./html/login.html");
- })
- </script>
- </body>
- </html>
|