index.html
2 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
<!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">
<link rel="stylesheet" href="css/layer.css">
<link rel="stylesheet" href="../../css/background.css">
<script src="lib/fsize.js"></script>
<title>اقتراحات ومشاكل幫助</title>
</head>
<style>
.bg{
width: 9rem;
margin-left: 0.5rem;
margin-right:0.5rem;
margin: 0 auto;
}
h1{
color: #333;
line-height: 1.3rem;
font-size:0.45rem;
height: 1.3rem;
padding-top:0.3rem;
border-bottom:0.01rem solid #F0F0F0;
}
</style>
<body>
<div class="bg">
<h1 class="L-Cn">入駐問題</h1>
<h1 class="L-En">Settlement problem</h1>
<p class="L-Cn" style="line-height: 0.7rem;font-size: 0.38rem;color: #333;margin-top: 0.2rem;">如果您有興趣,請聯繫我們:</p>
<p class="L-En" style="line-height: 0.7rem;font-size: 0.38rem;color: #666;margin-top: 0.2rem;">If you are interested, please contact us:</p>
<p style="line-height: 0.7rem;font-size: 0.38rem;color: #333;margin-top: 0.2rem;">Whatsapp:+86 18898604072</p>
<p style="line-height: 0.7rem;font-size: 0.38rem;color: #333;margin-top: 0.2rem;">Email:aqiu@yazhai.co</p>
</div>
</body>
<script src="../../lib/jquery-3.1.1.min.js"></script>
<script src="../../lib/langchange.js?v=201909121028"></script>
<script type="text/javascript">
if(sessionStorage.lang ==0 || sessionStorage.lang == 2){
$('.L-Cn').show();
$('.L-En').hide();
$("title").text('幫助');
} else {
$('.L-Cn').hide();
$('.L-En').show();
$("title").text('help');
}
</script>
</html>