index.html
2.0 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
<!DOCTYPE html>
<html lang="zh">
{include file="public/head"}
<style>
body{
background: rgba(249,249,249,1);
}
.content{
width: 100%;
font-size: 0;
background: rgba(249,249,249,1);
}
.content .titleImgContent{
width: 100%;
height: 146px;
}
.content .titleImgContent img{
width: 100%;
height: 100%;
}
/*富文本区域样式*/
.content .contentBox{
width: 100%;
font-size: 18px;
font-family: PingFang SC;
font-weight: 400;
line-height: 25px;
color: rgba(91,94,99,1);
background: rgba(249,249,249,1);
}
.content .contentBox .contentMain{
width: 1200px;
/*height: 975px;*/
padding: 25px 0 59px 0;
margin: 0 auto;
}
/*在线客服按钮样式*/
.rightButtons{
position: fixed;
width: 64px;
height: 65px;
top: 400px;
right: 0;
background: rgba(0,159,142,1);
}
.rightButtons a{
display: block;
width: 64px;
height: 64px;
text-align: center;
font-size: 12px;
font-family: PingFang SC;
font-weight:500;
color: rgba(255,255,255,1);
}
.rightButtons a img{
display: block;
margin: 10px auto 8px auto;
}
</style>
<body>
{include file="public/header"}
<!--主要内容-->
<div class="content">
{include file="public/nav"}
<!--标题图片-->
<div class="titleImgContent">
<img src="__CDN__/assets/store/images/aboutUsImg.png" alt="img">
</div>
<!--富文本内容-->
<div class="contentBox">
<div class="contentMain">
{$about.content}
</div>
</div>
</div>
<!--右侧功能按钮-->
<div class="rightButtons">
<a href="tencent://message/?uin={$site.service_qq}&Site=baidu.com&Menu=yes">
<img src="__CDN__/assets/store/images/onlineService.png" alt="onlineService">
在线客服
</a>
</div>
{include file="public/footer"}
</body>
</html>