| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364 |
- <!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">
- <title>受理方式</title>
- <style>
- .sub_title{
- position: relative;
- text-align: center;
- }
- .sub_title:before,.sub_title:after{
- display: inline-block;
- content: "";
- width: 13%;
- height: 1px;
- background: #c8b379;
- position: absolute;
- top: 50%;
- }
- .sub_title:before{
- left: 25%;
- }
- .sub_title:after{
- right: 25%;
- }
- .content{
- /*text-indent: 24px;*/
- font-size: 13px;
- line-height: 23px;
- margin: 20px 0;
- }
- .img{
- background: url(../img/border2_02.png) no-repeat;
- height: 30px;
- background-size: cover;
- }
- </style>
- </head>
- <body>
- <div class="mui-content">
-
- <h4 style="text-align: center;">商丘市12345政府服务热线</h4>
- <div class="sub_title">受理方式</div>
-
- <div class="content">
-
- <p>1、电话受理</p>
- <p>2、其他受理</p>
-
- </div>
- <!--<div class="img"></div>-->
-
- </div>
-
- <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>
- </body>
- </html>
|