hot.html
1.76 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
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width,minimum-scale=1.0,maximum-scale=1.0,user-scalable=no"/>
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta content="telephone=no" name="format-detection">
<meta name="wap-font-scale" content="no">
<link rel="stylesheet" href="css/base.css">
<script src="../../lib/fsize.js"></script>
<title></title>
<style>
body{
background: #FFF;
}
.bg{
width: 9rem;
margin: 0 auto;
}
h1{
color: #333;
line-height: 1rem;
font-size:0.45rem;
height: 1rem;
font-weight: bold;
padding-top:0.3rem;
}
p{
font-size:0.4rem;
color:#333;
line-height: 0.6rem;
}
.bgTitle span{
width: 50%;
display: inline-block;
}
.bgTitle span:nth-child(2){
color:#E64E92;
}
</style>
</head>
<body>
<div class="bg">
<h1 class="title1"></h1>
<p class="title2" style="margin-bottom: 0.5rem;"></p>
<h1 class="title3" style="margin-bottom: 0.5rem;"></h1>
<p class="title4" style="margin-bottom: 1rem;"></p>
</div>
<script src="../../lib/jquery-3.1.1.min.js"></script>
<script src="../../lib/langchange.js?v=202009171514"></script>
<script type="text/javascript">
$('title').html(langList[langType].hot1);
$('.title1').html(langList[langType].hot2);
$('.title2').html(langList[langType].hot3);
$('.title3').html(langList[langType].hot4);
$('.title4').html(langList[langType].hot5);
</script>
</body>
</html>