| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- <!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 {
- font-size: 14px;
- line-height: 25px;
- margin: 20px 0;
- text-align: justify;
- color: #636262;
- padding: 0 15px;
- }
- .content p {
- word-wrap: break-word;
- word-break: break-all;
- }
- .img {
- background: url(../img/border2_02.png) no-repeat;
- height: 30px;
- background-size: cover;
- }
- .two_title {
- font-size: 15px;
- position: relative;
- padding-left: 15px;
- }
- .two_title:before {
- position: absolute;
- content: "";
- height: 20px;
- background: #12A7F1;
- width: 6px;
- left: 0;
- border-radius: 2px;
- bottom: 3px;
- }
- </style>
- </head>
- <body>
- <div class="mui-content">
- <h4 style="text-align: center;">虞城县12345政务服务热线</h4>
- <div class="sub_title">受理方式</div>
- <div class="content">
- <!--<div class="two_title" style="margin-bottom: 10px;">
- <b>受理方式</b>
- </div>-->
- <div style="text-indent: 24px;text-align: justify;">居民可以通过拨打热线、微信公众号提交、微博互动、发送邮件、网站提交诉求、手机APP等六种方式反映诉求。</div>
- <p>1、热线:12345</p>
- <p>2、微博:虞城县12345政务服务热线</p>
- <p>3、邮箱:yc12345zffwrx@126.com</p>
- <p>4、微信公众号:微信搜索"虞城县12345政务服务热线”</p>
- <p>5、网站网址:www.yucheng12345.com</p>
- <p>6、手机APP:可在网站进行扫码下载</p>
- <!--<div class="img"></div>-->
- </div>
- <div class="sub_title">办理流程</div>
- <img src="../img/liucheng.jpg" alt="" style="width: 100%;" />
- </div>
- </body>
- </html>
|