index.html
3.1 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
<!DOCTYPE html>
<html lang="zh">
{include file="public/head"/}
<style>
.content{
width: 100%;
height: 890px;
font-size: 0;
background: rgba(249,249,249,1);
}
.content .titleBox{
width: 1200px;
height: 62px;
line-height: 62px;
margin: 10px auto;
background: rgba(255,255,255,1);
}
.content .titleBox span:first-child{
display: inline-block;
float: left;
width: 6px;
height: 20px;
margin-top: 21px;
background: rgba(0,159,142,1);
border-radius: 2px;
}
.content .titleBox span:last-child{
width: 100px;
height: 22px;
line-height: 22px;
float: left;
margin-top: 20px;
padding-left: 12px;
font-size: 16px;
font-family: PingFang SC;
font-weight: 500;
color: rgba(0,159,142,1);
}
.content .contentBox{
width: 1200px;
height: 757px;
padding-top: 60px;
margin: 0 auto;
background: rgba(255,255,255,1);
}
.content .contentBox .applyType{
display: inline-block;
width: 340px;
height: 236px;
background: rgba(255,255,255,1);
box-shadow: 0 4px 12px rgba(0,0,0,0.08);
border-radius: 8px;
}
.content .contentBox .personal{
margin: 0 120px 0 200px;
}
.content .contentBox .applyType img{
display: block;
margin: 20px auto 12px auto;
}
.content .contentBox .applyType span{
display: block;
width: 64px;
height: 22px;
margin: 0 auto;
font-size: 16px;
font-family: PingFang SC;
font-weight: 500;
line-height: 22px;
color: rgba(61,68,77,1);
}
.content .contentBox .applyType a{
display: block;
width: 312px;
height: 54px;
margin: 20px auto;
font-size:18px;
font-family: PingFangSC-Regular;
text-align: center;
line-height: 54px;
color: rgba(255,255,255,1);
background: rgba(0,159,142,1);
border-radius: 4px;
}
</style>
<body>
{include file="public/header"/}
<!--主要内容-->
<div class="content">
{include file="public/nav"/}
<div class="titleBox">
<span></span>
<span>入驻申请</span>
</div>
<div class="contentBox">
<div class="applyType personal">
<img src="__CDN__/assets/store/images/personal.png" alt="personal">
<span>个人店铺</span>
<a href="{:url('index/enter/apply_personage')}">申请个人店铺</a>
</div>
<div class="applyType business">
<img src="__CDN__/assets/store/images/business.png" alt="business">
<span>企业店铺</span>
<a href="{:url('index/enter/apply_company')}">申请企业店铺</a>
</div>
</div>
</div>
{include file="public/footer"/}
<script>
function search(val) {
var searchKey = $('#searchVal').val();
window.location.href = 'search.html?searchKey='+searchKey;
}
</script>
</body>
</html>