4d0a73c0
liuqimichale
项目初始化
|
1
|
<template>
|
d619d5db
liuqimichale
banner
|
2
3
4
5
|
<div>
<div class="banner-wrapper">
|
79f0ef81
liuqimichale
金典案例
|
6
7
|
|
d619d5db
liuqimichale
banner
|
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
|
<ul class="widthCommon banner-text">
<li>
<div>覆盖城市</div>
<div>100<span>+</span></div>
</li>
<li>
<div>覆盖城市</div>
<div>100<span>+</span></div>
</li>
<li>
<div>覆盖城市</div>
<div>100<span>+</span></div>
</li>
<li>
<div>覆盖城市</div>
<div>100<span>+</span></div>
</li>
</ul>
</div>
<div class="widthCommon textCommonPadding">
<div class="heading-text">我们是谁?</div>
<div class="des-text">
公司主营业务面向城市智慧停车、公安交通、公共交通三大领域,为政府、企业、个人提供综合交通信息服务,通过交通规划、方案设计、系统建设、运营和服务,深度整合城市动静态交通数据,构建以物联网、互联网、云计算、大数据、人工智能为核心技术的产品研发、生产、系统建设和维护为一体的城市级动静态交通业务生态服务体系。
</div>
</div>
|
79f0ef81
liuqimichale
金典案例
|
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
|
<div class="bgCommon textCommonPadding">
<div class="heading-text">为什么选择我们?</div>
</div>
<div class="widthCommon textCommonPadding">
<div class="heading-text">解决方案?</div>
<ul class="solution-wrapper">
<li>
<span>智慧停车整体解决方案</span>
</li>
<li>
<span>城市公安交通整体解决方案</span>
</li>
<li>
<span>城市公共交通整体解决方案</span>
</li>
</ul>
</div>
<div class="case-wrapper textCommonPadding">
<div class="heading-text" style="color: #000">经典案例</div>
<ul class="case-main">
<li>1</li>
<li>1</li>
<li>1</li>
<li>1</li>
<li>1</li>
<li>1</li>
<li>1</li>
</ul>
</div>
<div class="together-wrapper textCommonPadding">
<div class="heading-text" style="color: #FFF">解决方案?</div>
<ul class="together-main">
<li>
<p>
城市级智慧停车领域:
规划设计、投融资、信息化建设、大数据整合、运营服务等全产业链服务。
</p>
<p>特许经营、合资运营</p>
</li>
<li>
<p>
城市级智慧停车领域:
信息化建设、大数据整合、运营服务。
</p>
<p>
系统集成加合作运营
</p>
</li>
<li>
<p>
城市公安交通、公共交通领域:
信息化建设,交通大数据整合,辅助政府决策,建设智能化交通信息服务生态体系。
</p>
<p>
政府采购
</p>
</li>
</ul>
</div>
|
d619d5db
liuqimichale
banner
|
99
|
</div>
|
4d0a73c0
liuqimichale
项目初始化
|
100
101
102
|
</template>
<script>
|
79f0ef81
liuqimichale
金典案例
|
103
|
|
4d0a73c0
liuqimichale
项目初始化
|
104
|
export default {
|
79f0ef81
liuqimichale
金典案例
|
105
106
107
108
109
110
111
112
|
name: 'index',
data () {
return {
}
},
|
4d0a73c0
liuqimichale
项目初始化
|
113
114
115
|
}
</script>
|
aefc33a1
liuqimichale
公共头部
|
116
|
<style scoped lang="">
|
d619d5db
liuqimichale
banner
|
117
|
.banner-wrapper{
|
79f0ef81
liuqimichale
金典案例
|
118
|
height: 603px;
|
d619d5db
liuqimichale
banner
|
119
120
121
122
|
background:rgba(0,0,0,.58);
position: relative;
}
.banner-text{
|
79f0ef81
liuqimichale
金典案例
|
123
|
height: 124px;
|
d619d5db
liuqimichale
banner
|
124
125
126
127
128
129
130
131
|
position: absolute;
bottom: 0;
left: 50%;
transform: translateX(-50%);
display: flex;
}
.banner-text li{
flex: 1;
|
79f0ef81
liuqimichale
金典案例
|
132
133
|
height: 62px;
line-height: 62px;
|
d619d5db
liuqimichale
banner
|
134
135
136
137
|
font-size: 30px;
color: #FFF;
text-align: center;
}
|
79f0ef81
liuqimichale
金典案例
|
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
|
.solution-wrapper{
display: flex;
justify-content: center;
overflow: hidden;
}
.solution-wrapper li{
font-size: 18px;
color: #FFF;
width: 256px;
height: 358px;
position: relative;
}
.solution-wrapper li span{
display: block;
width: 100%;
font-size: 18px;
text-align: center;
position: absolute;
bottom: 22px;
}
.solution-wrapper li:nth-of-type(1){
background: url("../../assets/images/home/solution3.png") no-repeat;
background-size: 100% 100%;
}
.solution-wrapper li:nth-of-type(2){
margin: 0 177px;
background: url("../../assets/images/home/solution2.png") no-repeat;
background-size: 100% 100%;
}
.solution-wrapper li:nth-of-type(3){
background: url("../../assets/images/home/solution1.png") no-repeat;
background-size: 100% 100%;
}
.together-wrapper{
height: 537px;
background: url("../../assets/images/home/together.png") no-repeat;
background-size: 100% 100%;
}
.together-main{
overflow: hidden;
display: flex;
justify-content: center;
}
.together-main li{
padding: 20px;
width:236px;
height:325px;
border:2px solid rgba(255,255,255,1);
color: #FFF;
position: relative;
}
.together-main li:nth-of-type(2){
margin: 0 206px;
}
.together-main li p:nth-of-type(1){
font-size: 16px;
}
.together-main li p:nth-of-type(2){
width: 100%;
font-size: 20px;
text-align: center;
position: absolute;
bottom: 20px;
left: 0;
}
.case-wrapper{
height: 1300px;
background: url("../../assets/images/home/case-bg.png") no-repeat;
background-size:100% 772px;
}
.case-main{
width: 1380px;
margin: 0 auto;
}
.case-main li{
float: left;
width: 460px;
height: 357px;
background: #0C51C0;
transition: ALL 0.4s ease-in-out;
}
.case-main li:hover{
transform: scale(1.2);
}
|
4d0a73c0
liuqimichale
项目初始化
|
224
225
|
</style>
|