chenyc
2025-01-18 c7a65630bf97706554c68c269403d672bde52ca9
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
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
<!DOCTYPE html>
<html lang="zh-CN">
<head>
    <meta charset="UTF-8">
    <meta name="viewport" content="width=device-width, initial-scale=1.0">
    <title>人体成分分析报告</title>
    <style>
        body {
            font-family: Arial, sans-serif;
            margin: 0;
            padding: 0;
        }
 
        .container {
            width: 100%;
            max-width: 1200px;
            margin: 0 auto;
            padding: 20px;
            background-color: #f4f4f4;
        }
 
        h1 {
            color: #c0392b;
            text-align: center;
        }
 
        table {
            width: 100%;
            border-collapse: collapse;
        }
 
        th, td {
            border: 1px solid #ddd;
            padding: 8px;
            text-align: left;
        }
 
        th {
            background-color: #3498db;
            color: white;
        }
 
        section {
            margin-top: 20px;
        }
 
        .chart {
            display: flex;
            justify-content: space-between;
        }
 
        .chart img {
            width: 48%;
        }
 
        .analysis {
            margin-top: 20px;
        }
 
        .analysis p {
            margin-bottom: 10px;
        }
    </style>
</head>
<body>
    <div class="container">
        <h1>人体成分分析报告</h1>
 
        <section>
            <h2>基本信息</h2>
            <table>
                <tr>
                    <th>姓名</th>
                    <th>ID编号</th>
                    <th>性别</th>
                    <th>年龄</th>
                    <th>测试日期</th>
                </tr>
                <tr>
                    <td>Jonson</td>
                    <td>7347204156</td>
                    <td>男</td>
                    <td>39</td>
                    <td>2019.09.27 00:00</td>
                </tr>
            </table>
        </section>
 
        <section>
            <h2>人体成分分析</h2>
            <table>
                <tr>
                    <th>项目</th>
                    <th>测量值</th>
                    <th>体内水分</th>
                    <th>肌肉量</th>
                    <th>去脂肪质量</th>
                    <th>体重</th>
                    <th>标准范围</th>
                </tr>
                <tr>
                    <td>细胞内水份(L)</td>
                    <td>30.8</td>
                    <td>49.6</td>
                    <td>64.2</td>
                    <td>67.8</td>
                    <td>83.1</td>
                    <td>22.7~27.7</td>
                </tr>
                <!-- 更多行... -->
            </table>
        </section>
 
        <section class="chart">
            <img src="path_to_image_1.png" alt="Image 1">
            <img src="path_to_image_2.png" alt="Image 2">
        </section>
 
        <section>
            <h2>综合评价</h2>
            <p>总分:88.0 / 100 分</p>
            <p>目标调节指导:...</p>
            <!-- 更多段落... -->
        </section>
 
        <section>
            <h2>节段肌肉与脂肪分析及体型判定</h2>
            <img src="path_to_image_3.png" alt="Image 3">
            <p>体型判定:过重肌肉型</p>
        </section>
 
        <section>
            <h2>肌肉品质</h2>
            <img src="path_to_image_4.png" alt="Image 4">
            <p>肌肉品质综合评价:78 / 100 分</p>
        </section>
 
        <section>
            <h2>人体成分历史变化</h2>
            <img src="path_to_image_5.png" alt="Image 5">
        </section>
    </div>
</body>
</html>