online_baoming.html
1.4 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
<!DOCTYPE html>
<html>
<head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta content="yes" name="apple-mobile-web-app-capable">
<meta content="yes" name="apple-touch-fullscreen">
<meta name="viewport"
content="width=device-width, initial-scale=1,maximum-scale=1,maximum-scale=1, minimum-scale=1, user-scalable=no">
<title>线上报名</title>
<link rel="stylesheet" href="/static/css/common.css">
<link rel="stylesheet" href="/static/css/style.css">
<style>
.title_bm {
position: fixed;
top: 4.5%;
left: 0;
width: 100%;
}
.bm_list {
margin-top: 5.5rem;
}
.title_bm p {
text-align: center;
}
</style>
</head>
<body>
<div class="box boxbg">
<div class="title_bm">
<p>悠乐驾互联网学车新体验</p>
</div>
<div class="bm_list">
<volist name="data" id="vo">
<div class="list_a">
<img src="{$vo.pic}">
<h1>{$vo.name}</h1>
<h2>¥{$vo.price}</h2>
<h3><a href="{:url('baoming_detail',array('id'=>$vo['id']))}"></a></h3>
</div>
</volist>
</div>
</div>
<script type="text/javascript" src="/static/js/jquery-1.11.0.min.js"></script>
<script type="text/javascript" src="/static/js/common.js"></script>
</body>
</html>