mitao
2025-02-21 31573d6180d15ef65ed0df9c2732495f40b12663
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
<!DOCTYPE html>
<html xmlns="http://www.w3.org/1999/xhtml" xmlns:th="http://www.thymeleaf.org">
 
<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>
    <style>
        @page {
            size: 210mm 297mm;
            /*设置纸张大小:A4(210mm 297mm)、A3(297mm 420mm) 横向则反过来*/
            margin: 0.25in;
            padding: 1em;
 
            @top-center {
                content: element(header)
            }
        ;
        }
    </style>
    <style type="text/css">
        /* reset */
        * {
            padding: 0;
            margin: 0;
            font-family: 'SimSun';
            overflow: hidden;
        }
    </style>
 
</head>
 
<body>
<div style="padding-top: 0px; height:1045px; " th:each="reservePdfExportVO : ${reservePdfExportVOS}">
    <div style="text-align: center;font-size: 30px;">关于燃气安全使用的温馨提示</div>
    <div style="display: flex;align-items: center;align-items: center;">
        <div style="font-size: 20px;padding: 30px;">
            <div>各位燃气用户:</div>
            <div style="text-indent:2em;line-height: 1.4;">为了您和社会公众的生命财产安全,在此温馨提示您要关注燃气安全:</div>
            <div style="text-indent:2em;line-height: 1.4;">
                1.应选购符合国家标准、带有安全熄火保护装置的燃气灶具,使用时人不能远离,使用后应关好灶具开关、灶前阀,防止泄漏。燃气具过期应及时更换。切勿使用节能罩。</div>
            <div style="text-indent:2em;line-height: 1.4;">
                2.燃气胶管应每18个月更换一次,要经常检查是否存在老化、开裂、鼠咬及连接处是否用卡子固定,建议选用使用寿命长的金属波纹管。</div>
            <div style="text-indent:2em;line-height: 1.4;">3.应根据气源类型选用并正确安装燃气报警器,报警器宜选择靠近燃气表或燃气管道接点的位置安放。</div>
            <div style="text-indent:2em;line-height: 1.4;">4.燃气用户不得擅自安装、改装、拆除燃气管道、阀门等户内燃气设施和燃气计量装置。</div>
            <div style="text-indent:2em;line-height: 1.4;">5.不可将设有燃气管道、燃气具的房间改成卧室、客厅和卫生间,长时间用气要注意通风换气。</div>
            <div style="text-indent:2em;line-height: 1.4;">6.发现异味要立即开窗,远离现场拨打服务电话报修。切勿触碰各类电器开关或携带火种进入室内。</div>
            <div style="text-indent:2em;line-height: 1.4;">
                7.燃气热水器应安装在厨房或阳台,严禁安装在卫生间、浴室、餐厅、客厅、卧室等其他空间,并规范安装烟道。严禁选用直排式热水器。</div>
            <div style="text-indent:2em;line-height: 1.4;">
                燃气安全关乎千家万户,居家安全,从燃气安全开始!为了您和家人的幸福,请您正确使用燃气,及时排查隐患,共同营造幸福家园。
            </div>
            <div style="margin-top: 110px;text-align: right;">
                地址:<span style="margin-right: 100px;" th:text="${reservePdfExportVO.address}"></span>
            </div>
            <div style="margin-top: 30px;margin-left: 450px;"><div>被提醒人:</div><img style="width: 250px;"
                                                                                   th:src="@{${reservePdfExportVO.sign}}" /></div>
            <div style="margin-top: 30px;text-align: right;">
                <span style="margin-right: 100px;" th:text="${reservePdfExportVO.time}"></span>
            </div>
        </div>
    </div>
</div>
</body>
 
</html>