Brak opisu

index.html 2.2KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182
  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="UTF-8">
  5. <meta name="viewport" content="width=device-width, initial-scale=1,maximum-scale=1,user-scalable=no">
  6. <meta name="apple-mobile-web-app-capable" content="yes">
  7. <meta name="apple-mobile-web-app-status-bar-style" content="black">
  8. <link rel="stylesheet" href="./layui/css/layui.mobile.css" />
  9. <link href="./css/mui.min.css" rel="stylesheet" />
  10. <link rel="stylesheet" href="./css/iconfont.css" />
  11. <link rel="stylesheet" href="./css/inits.css" />
  12. <title>首页</title>
  13. <style>
  14. body{
  15. width: 100vx;
  16. height: 100vh;
  17. background-color: #fff !important;
  18. }
  19. .mui-content {
  20. background-color: #fff !important;
  21. margin-top: 70px;
  22. }
  23. .logo{
  24. width: 150px;
  25. height: 150px;
  26. display: block;
  27. margin: 0 auto 0;
  28. margin-bottom: 10px;
  29. }
  30. .btn {
  31. width: 75%;
  32. margin: 50px auto 0px;
  33. background-color: #1ba3c9;
  34. outline: none;
  35. border: none;
  36. padding: 13px 12px;
  37. display: block;
  38. border-radius: 20px;
  39. font-size: 18px;
  40. color: #fff;
  41. }
  42. .topBtn{
  43. background-color: #fb9703;
  44. }
  45. .topBtn:active{
  46. background-color: #fb9703;
  47. }
  48. .title{
  49. text-align: center;
  50. width: 260px;
  51. font-size: 24px;
  52. margin: 0 auto;
  53. line-height: 35px;
  54. font-weight: 600;
  55. }
  56. </style>
  57. </head>
  58. <body>
  59. <div class="mui-content">
  60. <img src="./images/logo.png" alt="" class="logo">
  61. <div class="title">安阳12345政务服务热线为您服务</div>
  62. <button type="button" class="btn topBtn">咨询、建议、投诉</button>
  63. <button type="button" class="btn bottomBtn">问题结果查询</button>
  64. </div>
  65. <!-- <script src="layui/layui.js"></script> -->
  66. <script src="./js/mui.min.js"></script>
  67. <script src="./layui/layui.js"></script>
  68. <script src="./js/zepto.js"></script>
  69. <script src="./Script/Common/huayi.config.js"></script>
  70. <script src="./Script/Common/huayi.http.js"></script>
  71. <script>
  72. // var openid = 'obwtK6JT-bTCeSbtqu4lkw4lIz0o'
  73. $('.topBtn').click(function(){
  74. window.location.replace("./html/addWorkOrder.html");
  75. })
  76. $('.bottomBtn').click(function(){
  77. window.location.replace("./html/login.html");
  78. })
  79. </script>
  80. </body>
  81. </html>