article.html
1016 Bytes
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
<!DOCTYPE html>
<html>
<head>
<meta charset="utf-8">
<meta name="viewport"
content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no" />
<title>新闻详情</title>
<style type="text/css">
* {
margin: 0;
padding: 0;
}
body {
width: 100%;
height: 100%;
}
div {
margin: 0 1.25rem;
}
p,
b,
span,
strong {
font-family: "Microsoft YaHei" !important;
font-size: 1rem !important;
letter-spacing: 0.5px !important;
line-height: 1.5rem !important;
font-weight: 500 !important;
color: #333333 !important;
text-indent: 0 !important;
}
p {
width: 100%;
height: 100%;
text-align: justify !important;
padding-top: 20px !important;
}
img {
width: 100% !important;
display: block !important;
padding-right:1.25rem !important;
}
</style>
</head>
<body>
<div>
###content###
</div>
</body>
</html>