loading.html
5.35 KB
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
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
<html lang="en" style="font-size: 22.08px;">
<head>
<meta charset="utf-8">
<title></title>
<meta name="keywords" content="">
<meta name="description" content="">
<meta http-equiv="Content-Security-Policy" content="style-src 'self' 'unsafe-inline' http: https: yoho-protocol:">
<meta name="viewport"
content="width=device-width, initial-scale=1, maximum-scale=1, minimum-scale=1, user-scalable=no, viewport-fit=cover">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="telephone=no" name="format-detection">
<meta content="email=no" name="format-detection">
<style>
html, body {
font-size: 0.6rem;
font-family: "PingFang SC", "HiraginoSansGB-W3", "SanFranciscoText-Regular", Helvetica, Roboto, "Heiti SC", "黑体", Arial;
line-height: 1.4;
scroll-behavior: smooth;
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
width: 100%;
height: 100%;
color: #222;
margin: 0;
}
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code, del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form, label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer, header, menu, nav, output, ruby, section, summary, time, mark, audio, video, input {
margin: 0;
padding: 0;
border: 0;
font-size: 100%;
font-weight: normal;
vertical-align: baseline;
}
.immerse-body .layout-header-wrap {
padding-top: 22px;
}
.immerse-body-high .layout-header-wrap {
padding-top: 44px;
}
.immerse-body-high .layout-footer-wrap {
padding-bottom: 32PX;
}
.layout-header-wrap {
width: 100%;
background-color: #444;
color: #fff;
}
.layout-header-wrap.theme-white {
background-color: #fff;
color: #222;
}
.layout-header-wrap.theme-white .layout-header {
border-bottom: solid 1px #efefef;
}
.layout-header-wrap.theme-transparent {
background-color: initial;
color: #fff;
}
.layout-header {
width: 100%;
height: 44px;
overflow: hidden;
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-align: stretch;
-webkit-align-items: stretch;
align-items: stretch;
box-sizing: border-box;
}
.layout-header > * {
position: relative;
}
.layout-header .flex {
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
}
.layout-header .iconfont {
height: 100%;
font-size: 20px;
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
padding-left: 10px;
padding-right: 10px;
}
.layout-header .back {
width: 4rem;
padding-left: 0.125rem;
}
.layout-header .title {
-webkit-box-flex: 1;
-webkit-flex: 1;
flex: 1;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
font-size: 18px;
letter-spacing: 0.09px;
overflow: hidden;
z-index: 1;
}
.layout-header .title .title-inner {
max-width: 90%;
line-height: 1.4;
overflow: hidden;
text-overflow: ellipsis;
white-space: nowrap;
display: inline-block;
}
.layout-header .opts {
width: 4rem;
height: inherit;
-webkit-box-pack: end;
-webkit-justify-content: flex-end;
justify-content: flex-end;
padding-right: 0.125rem;
}
.layout-header .opts .iconfont {
font-size: 23px;
}
.article-title {
font-size: 0.85rem;
font-weight: 500;
}
</style>
</head>
<body>
<script type="text/javascript">
(function (d, c) { var e = d.documentElement, a = "orientationchange" in window ? "orientationchange" : "resize", b = function () { var f = e.clientWidth; if (!f) { return } if (f >= 750) { e.style.fontSize = "40px" } else { e.style.fontSize = 40 * (f / 750) + "px" } }; if (!d.addEventListener) { return } b(); c.addEventListener(a, b, false); d.addEventListener("DOMContentLoaded", b, false) })(document, window);
(function (d) { var e = d.documentElement, n = e.clientHeight / e.clientWidth > 2.1 ? "-high" : ""; d.getElementsByTagName("body")[0].className = "immerse-body" + n })(document);
</script>
<div class="layout-header-wrap theme-white">
<div class="layout-header">
<div class="back flex hover-opacity"><i class="iconfont icon-left"></i>
</div>
<div class="title flex" style="opacity:1;">
<div class="article-title">有货社区</div>
</div>
<div class="opts flex" style="opacity:1;"></div>
</div>
</div>
</body>
</html>