See999 4 лет назад
Родитель
Сommit
93d7cc3446

+ 20 - 1
controllers/index_controller.go Просмотреть файл

@@ -60,7 +60,26 @@ func (this *IndexController) CDMIndex() {
60 60
 
61 61
 // /about [get]
62 62
 func (this *IndexController) AboutUs() {
63
-	this.SetTpl("new_main/about.html")
63
+	mobileAgents := []string{"Android", "iPhone", "iPod", "iPad", "Windows Phone", "MQQBrowser"}
64
+	isFromMobile := false
65
+
66
+	userAgent := this.Ctx.Request.Header.Get("User-Agent")
67
+	if !strings.Contains(userAgent, "Windows NT") || (strings.Contains(userAgent, "Windows NT") && strings.Contains(userAgent, "compatible; MSIE 9.0;")) {
68
+		if !strings.Contains(userAgent, "Windows NT") && !strings.Contains(userAgent, "Macintosh") {
69
+			for _, mobileAgent := range mobileAgents {
70
+				if strings.Contains(userAgent, mobileAgent) {
71
+					isFromMobile = true
72
+					break
73
+				}
74
+			}
75
+		}
76
+	}
77
+
78
+	if isFromMobile {
79
+		this.SetTpl("mobile_site/about.html")
80
+	} else {
81
+		this.SetTpl("new_main/about.html")
82
+	}
64 83
 }
65 84
 
66 85
 func (this *IndexController) Help() {

+ 261 - 0
static/css/mobileAbout.css Просмотреть файл

@@ -0,0 +1,261 @@
1
+body{
2
+    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Segoe UI", "Helvetica Neue", "PingFang SC", "Noto Sans", "Noto Sans CJK SC", "Microsoft YaHei", 微软雅黑, sans-serif;
3
+}
4
+header{
5
+    height: 56px;
6
+    display: block;
7
+    justify-content:space-around;
8
+    align-content: space-around;
9
+    position: fixed;
10
+    top: 0;
11
+    left: 0;
12
+    right: 0;
13
+    background: #fff;
14
+    z-index: 999;
15
+    padding: 0 10px;
16
+    box-shadow: 0 0 18px 0 rgba(82,94,102,0.15); 
17
+    
18
+}
19
+.logo{  
20
+    width: 120px;
21
+    display: -webkit-box;
22
+    display: -ms-flexbox;
23
+    display: flex;
24
+    -webkit-box-align: center;
25
+    -ms-flex-align: center;
26
+    align-items: center;
27
+    height: 56px;
28
+}
29
+.logo img{
30
+    width: 100%;
31
+}
32
+.head{
33
+    display: flex;
34
+    justify-content: space-between;
35
+    align-items: center;
36
+}
37
+.expand{
38
+    width: 0.18rem;
39
+    height: 0.14rem;
40
+    display: flex;
41
+    flex-direction: column;
42
+    -webkit-box-pack: justify;
43
+    justify-content: space-between;
44
+}
45
+.expand>div {
46
+    width: 100%;
47
+    height: 2px;
48
+    border-radius: 2px;
49
+    background-color: #9C9C9C;
50
+}
51
+.outerSlider{
52
+    background: rgba(0,0,0,.5);
53
+    width: 100%;
54
+    top: 0;
55
+    bottom: 0;
56
+    z-index: 9999;
57
+    display: none;
58
+}
59
+.show{
60
+    position: fixed;
61
+    left: 0;
62
+}
63
+.outerSlider .menuBox {
64
+    position: absolute;
65
+    width: 100%;
66
+    background: #fff;
67
+    height: 100%;
68
+    top: 0;
69
+    -webkit-transition: bottom .3s ease-in-out;
70
+    transition: bottom .3s ease-in-out;
71
+
72
+}
73
+.menuNav{
74
+    position: relative;
75
+    border-bottom: 1px solid #eee;
76
+    display: flex;
77
+    justify-content: space-between;
78
+    align-items: center;
79
+    padding: 0 10px;
80
+}
81
+.scrollList>a{
82
+    height: 0.5rem;
83
+    line-height: 0.5rem;
84
+    padding-left: 0.2rem;
85
+    border-bottom: 1px solid #e5e5e5;
86
+}
87
+.scrollList>a:last-of-type{
88
+    border:none;
89
+}
90
+a{
91
+    color: #333;
92
+    display: block;
93
+}
94
+.aboutBanner{
95
+    width: 100%;
96
+    height: 3.34rem;
97
+    background-image: url(/static/images/img/banner6.jpg);
98
+    background-position: center center;
99
+    background-size: cover;
100
+    -webkit-background-size: cover;
101
+    zoom: 1;
102
+    background-repeat: no-repeat;
103
+    color: #fff;
104
+    text-align: center;
105
+    margin-top: 56px;
106
+    position: relative;
107
+}
108
+.aboutBannerTitle{
109
+    font-size:0.24rem;
110
+    line-height:0.18rem;
111
+    padding-top: 1rem;
112
+    font-weight: bold;
113
+}
114
+.aboutTips{
115
+    width: 3.1rem;
116
+    text-align: center;
117
+    margin: 0 auto;
118
+    font-size: 0.12rem;
119
+    font-weight: lighter!important;
120
+    margin-top: 0.2rem;
121
+    font-family: AlibabaPuHuiTiL,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
122
+}
123
+
124
+.tabs{
125
+    width: 100%;
126
+    background:rgba(5,18,43,.5);
127
+    height: 0.46rem;
128
+    position: absolute;
129
+    bottom: 0;
130
+}
131
+.tabOne{
132
+    width: 1.32rem;
133
+    text-align: center;
134
+    cursor: pointer;
135
+    height: 100%;
136
+    line-height: 0.46rem;
137
+    font-size: 0.15rem;
138
+}
139
+.tabActive{
140
+    background:rgba(5,18,43,1);
141
+    color: #2780F6;
142
+}
143
+.tab-item{
144
+    display: none;
145
+}
146
+.show1{
147
+    display: block;
148
+}
149
+.aboutMain{
150
+    color:#333;
151
+    padding: 0 0.22rem;
152
+}
153
+.aboutUsTitle{
154
+    font-size: 0.2rem !important;
155
+    font-weight: bold;
156
+    margin: 0.36rem auto 0.2rem !important;
157
+    text-align: center;
158
+}
159
+.tab-item>p{
160
+    margin-bottom: 0.24rem;
161
+    font-size: 0.15rem;
162
+    font-weight: lighter!important;
163
+}
164
+
165
+.photoBox{
166
+    /* display: flex; */
167
+}
168
+.photo > img{
169
+    width: 100%;
170
+    height: 3.56rem;
171
+    border-radius:5px;
172
+}
173
+.aboutMessage{
174
+    margin-top: 0.36rem;
175
+}
176
+.message{
177
+    font-size: 0.15rem;
178
+    color:#333;
179
+    font-weight: lighter!important;
180
+}
181
+.codeBox{
182
+    text-align: center;
183
+}
184
+.codeBox>img{
185
+    width: 1.2rem;
186
+    height: 1.2rem;
187
+    margin-top: 0.34rem;
188
+}
189
+.codeBox>p{
190
+    font-size: 0.15rem;
191
+    color: #333;
192
+    font-weight: lighter!important;
193
+}
194
+.map{
195
+    width: 100%;
196
+    height: 2rem;
197
+    margin-top: 0.34rem;
198
+    margin-bottom: 0.3rem;
199
+}
200
+.map>img{
201
+    width: 100%;
202
+    height: 100%;
203
+}
204
+
205
+.slogan{
206
+    width: 100%;
207
+    height: 1.89rem;
208
+    background-image: url(/static/images/img/28.png);
209
+    background-position: center center;
210
+    background-size: cover;
211
+    -webkit-background-size: cover;
212
+    zoom: 1;
213
+    background-repeat: no-repeat;
214
+    text-align: center;
215
+    color: #fff;
216
+}
217
+.slogan>p:first-of-type{
218
+    font-size: 0.24rem;
219
+    padding-top: 0.5rem;
220
+    margin-bottom: 0.2rem;
221
+}
222
+.slogan>p:last-of-type{
223
+    font-size: 0.2rem;
224
+}
225
+.footer{
226
+    width: 100%;
227
+    height: 2.86rem;
228
+    background: #181D30;
229
+    color:rgba(255,255,255,0.6);
230
+    padding-top: 0.56rem;
231
+}
232
+.footer>p{
233
+    padding-left: 0.28rem;
234
+    line-height: 0.3rem;
235
+}
236
+.beian{
237
+    margin-top: 0.32rem;
238
+    font-size: 0.1rem;
239
+    text-align: center;
240
+    display: flex;
241
+    justify-content: space-around;
242
+}
243
+.beian>a{
244
+    color:rgba(255,255,255,0.6);
245
+}
246
+.useBox{
247
+    width: 100%;
248
+    height: 0.5rem;
249
+    position: fixed;
250
+    bottom: 0;
251
+    left: 0;
252
+    display: flex;
253
+}
254
+.free{
255
+    background: #2780F6;
256
+    color: #fff;
257
+    width: 100%;
258
+    line-height: 0.5rem;
259
+    text-align: center;
260
+    font-size: 0.18rem; 
261
+}

+ 388 - 0
static/css/mobileIndex.css Просмотреть файл

@@ -0,0 +1,388 @@
1
+body{
2
+    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Segoe UI", "Helvetica Neue", "PingFang SC", "Noto Sans", "Noto Sans CJK SC", "Microsoft YaHei", 微软雅黑, sans-serif;
3
+}
4
+.head{
5
+    display: flex;
6
+    justify-content: space-between;
7
+    align-items: center;
8
+}
9
+.expand{
10
+    width: 0.18rem;
11
+    height: 0.14rem;
12
+    display: flex;
13
+    flex-direction: column;
14
+    -webkit-box-pack: justify;
15
+    justify-content: space-between;
16
+}
17
+.expand>div {
18
+    width: 100%;
19
+    height: 2px;
20
+    border-radius: 2px;
21
+    background-color: #9C9C9C;
22
+}
23
+.outerSlider{
24
+    background: rgba(0,0,0,.5);
25
+    width: 100%;
26
+    top: 0;
27
+    bottom: 0;
28
+    z-index: 9999;
29
+    display: none;
30
+}
31
+.show{
32
+    position: fixed;
33
+    left: 0;
34
+}
35
+.outerSlider .menuBox {
36
+    position: absolute;
37
+    width: 100%;
38
+    background: #fff;
39
+    height: 100%;
40
+    top: 0;
41
+    -webkit-transition: bottom .3s ease-in-out;
42
+    transition: bottom .3s ease-in-out;
43
+
44
+}
45
+.menuNav{
46
+    position: relative;
47
+    border-bottom: 1px solid #eee;
48
+    display: flex;
49
+    justify-content: space-between;
50
+    align-items: center;
51
+    padding: 0 10px;
52
+}
53
+.scrollList>a{
54
+    height: 0.5rem;
55
+    line-height: 0.5rem;
56
+    padding-left: 0.2rem;
57
+    border-bottom: 1px solid #e5e5e5;
58
+}
59
+.scrollList>a:last-of-type{
60
+    border:none;
61
+}
62
+a{
63
+    color: #333;
64
+    display: block;
65
+}
66
+.main-container .banner{
67
+    background-image: url(/static/images/img/banner3.jpg);
68
+    background-position: center center;
69
+    background-size: cover;
70
+    -webkit-background-size: cover;
71
+    zoom: 1;
72
+    background-repeat: no-repeat;
73
+    color: #fff;
74
+    text-align: center;
75
+    height: 3.5rem;
76
+    box-sizing: border-box;
77
+    padding-top: 0.48rem;
78
+}
79
+.bannerBox{
80
+    width:100%;
81
+    height:1.4rem;
82
+    border-radius:5px;
83
+    margin: 0 auto;
84
+    padding-top:0.2rem;
85
+    box-sizing: border-box;
86
+}
87
+.bannerTitle{
88
+    font-size:0.24rem;
89
+    font-weight:bold;
90
+    color:#2780F6;
91
+    line-height:0.2rem;
92
+    margin: 0 0 0.18rem;
93
+    font-family:PingFangSC;
94
+}
95
+.bannerTips{
96
+    font-size:0.12rem;
97
+    color:#333;
98
+    line-height:0.18rem;
99
+    font-weight: lighter!important;
100
+    font-family: AlibabaPuHuiTiL,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
101
+}
102
+.freeuse{
103
+    width:1.5rem;
104
+    height:.36rem;
105
+    background:rgba(43,126,246,1);
106
+    border-radius:18px;
107
+    color:#fff;
108
+    display: block;
109
+    margin: 0 auto;
110
+    text-align: center;
111
+    line-height: 0.36rem;
112
+}
113
+.special{
114
+    width: 3rem;
115
+    height: 3.6rem;
116
+    display: flex;
117
+    flex-wrap: wrap;
118
+    justify-content: space-between;
119
+    margin: 0.2rem auto 0;
120
+    margin-top: -1rem;
121
+}
122
+.specialOne{
123
+    width: 48%;
124
+    height: 48%;
125
+    background:#fff;
126
+    display: flex;
127
+    flex-direction: column;
128
+    align-items: center;
129
+    text-align: center;
130
+    margin-bottom: 0.2rem;
131
+    box-shadow:0px 2px 13px 0px rgba(43,126,246,0.11);
132
+    border-radius: 10px;
133
+}
134
+.specialImg{
135
+    width: 0.5rem;
136
+    margin-top: 0.3rem;
137
+    margin-bottom: 0.1rem;
138
+}
139
+.specialTip1{
140
+    font-size: 0.20rem;
141
+    color: #333;
142
+    margin-bottom: 0.1rem;
143
+}
144
+.specialTip2{
145
+    font-size: 0.16rem;
146
+    color: #666;
147
+    font-weight: lighter!important;
148
+}
149
+.introduceTitle{
150
+    width: 100%;
151
+    text-align: center;
152
+    font-size: 0.24rem;
153
+    color: #333;
154
+    line-height: 0.36rem;
155
+    margin: 0.3rem 0;
156
+}
157
+.introduceBox{
158
+    height: 1.4rem;
159
+    display: flex;
160
+    padding: .3rem 0.16rem ;
161
+    justify-content: space-between;
162
+    background: #F8FBFF;
163
+}
164
+.introduceOne{
165
+    width: 1.02rem;
166
+    background: #fff;
167
+    display: flex;
168
+    flex-direction: column;
169
+    align-items: center;
170
+    text-align: center;
171
+    /* justify-content: space-around; */
172
+    box-shadow:0px 2px 13px 0px rgba(43,126,246,0.11);
173
+    color: #353535;
174
+    border-radius: 10px;
175
+}
176
+.introduceImg{
177
+    width: 50%;
178
+    margin-top: .24rem;
179
+}
180
+.commonTitle{
181
+    width: 100%;
182
+    text-align: center;
183
+    font-size: 0.24rem;
184
+    color: #333;
185
+    line-height: 0.36rem;
186
+    padding-top: 0.3rem;
187
+}
188
+.commonTit1{
189
+    font-size:.16rem;
190
+    font-weight:bold;
191
+    color:#333;
192
+    line-height:.28rem;
193
+    text-align: center;
194
+}
195
+.commonTit2{
196
+    text-align: center;
197
+    font-size:.14rem;
198
+    color:#666;
199
+    line-height:.28rem;
200
+    margin-bottom: 0.05rem;
201
+    font-weight: lighter!important;
202
+    font-family: AlibabaPuHuiTiL,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
203
+}
204
+
205
+.downloadOne{
206
+    width:3.38rem;
207
+    height:4.68rem;
208
+    background:rgba(255,255,255,1);
209
+    box-shadow:0px 1px 15px 0px rgba(0, 0, 0, 0.12);
210
+    border-radius:5px;
211
+    margin: 0 auto;
212
+    display: flex;
213
+    flex-direction: column;
214
+    align-items: center;
215
+}
216
+
217
+.downloadOne>img:first-of-type{
218
+    width: 1.28rem;
219
+    height: 1.28rem;
220
+    margin-top: 0.4rem;
221
+}
222
+.downloadOne>img:last-of-type{
223
+    width: 90%;
224
+}
225
+.downloadOne>span{
226
+    font-size: 18px;
227
+    color: #333;
228
+    margin-bottom: 1vw;
229
+    font-weight: bold;
230
+    margin-top: 6px;
231
+}
232
+.downloadOne>p{
233
+    font-size: 14px;
234
+    color: #333;
235
+}
236
+.swiper-container-horizontal > .swiper-pagination{
237
+    bottom: 0 !important;
238
+}
239
+
240
+.forBox{
241
+    width: 100%;
242
+    height: 2.8rem;
243
+    display: flex;
244
+    flex-wrap: wrap;
245
+    margin: 0.5rem 0;
246
+}
247
+.forOne{
248
+    width: 50%;
249
+    height: 50%;
250
+    display: flex;
251
+    align-items: center;
252
+    flex-direction: column;
253
+}
254
+.forOne>img{
255
+    width: 0.8rem;
256
+    height: 0.8rem;
257
+}
258
+.forOne>span{
259
+    font-size: 0.16rem;
260
+    color: #333;
261
+}
262
+.forOne>p{
263
+    font-size: 0.12rem;
264
+    color: #666;
265
+}
266
+.backgroundBlue{
267
+    width:100%;
268
+    height:4.9rem;
269
+    background:linear-gradient(0deg,rgba(72,166,253,1),rgba(43,126,246,1));
270
+}
271
+.blueTitle{
272
+    text-align: center;
273
+    font-size: 0.2rem;
274
+    color: #fff;
275
+    line-height:0.3rem;
276
+    padding-top: 0.3rem;
277
+}
278
+.productBox1{
279
+    width: 100%;
280
+    height: 2rem;
281
+    display: flex;
282
+    flex-wrap: wrap;
283
+    margin-top: 0.6rem;
284
+}
285
+.product{
286
+    width: 50%;
287
+    height: 50%;
288
+    display: flex;
289
+    align-items: center;
290
+    flex-direction: column;
291
+}
292
+.product>img{
293
+    width: 0.6rem;
294
+    height: 0.6rem;
295
+}
296
+.product>p{
297
+    font-size: 0.13rem;
298
+    color: #fff;
299
+}
300
+
301
+.position1{
302
+    width: 3.32rem;
303
+    margin: 0 auto;
304
+    margin-top: -1.2rem;
305
+    text-align: center;
306
+}
307
+.sort{
308
+    color:#fff;
309
+    font-size: 0.1rem;
310
+}
311
+.sponsorBox{
312
+    width: 100%;
313
+    display: flex;
314
+    flex-wrap: wrap;
315
+    background: #fff;
316
+    padding-bottom: 0.3rem;
317
+}
318
+.sponsorOne{
319
+    width: 50%;
320
+    height: 1.66rem;
321
+    display: flex;
322
+    flex-direction: column;
323
+}
324
+.background{
325
+    background: #F8F8F8;
326
+}
327
+.sponsorOne>img{
328
+    width: 100%;
329
+    margin-top: 0.4rem;
330
+    margin-bottom: 0.2rem;
331
+}
332
+.slogan{
333
+    width: 100%;
334
+    height: 1.89rem;
335
+    background-image: url(/static/images/img/28.png);
336
+    background-position: center center;
337
+    background-size: cover;
338
+    -webkit-background-size: cover;
339
+    zoom: 1;
340
+    background-repeat: no-repeat;
341
+    text-align: center;
342
+    color: #fff;
343
+}
344
+.slogan>p:first-of-type{
345
+    font-size: 0.24rem;
346
+    padding-top: 0.5rem;
347
+    margin-bottom: 0.2rem;
348
+}
349
+.slogan>p:last-of-type{
350
+    font-size: 0.2rem;
351
+}
352
+.footer{
353
+    width: 100%;
354
+    height: 2.86rem;
355
+    background: #181D30;
356
+    color:rgba(255,255,255,0.6);
357
+    padding-top: 0.56rem;
358
+}
359
+.footer>p{
360
+    padding-left: 0.28rem;
361
+    line-height: 0.3rem;
362
+}
363
+.beian{
364
+    margin-top: 0.32rem;
365
+    font-size: 0.1rem;
366
+    text-align: center;
367
+    display: flex;
368
+    justify-content: space-around;
369
+}
370
+.beian>a{
371
+    color:rgba(255,255,255,0.6);
372
+}
373
+.useBox{
374
+    width: 100%;
375
+    height: 0.5rem;
376
+    position: fixed;
377
+    bottom: 0;
378
+    left: 0;
379
+    display: flex;
380
+}
381
+.free{
382
+    background: #2780F6;
383
+    color: #fff;
384
+    width: 100%;
385
+    line-height: 0.5rem;
386
+    text-align: center;
387
+    font-size: 0.18rem; 
388
+}

+ 251 - 0
static/css/newAbout.css Просмотреть файл

@@ -0,0 +1,251 @@
1
+body{
2
+    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Segoe UI", "Helvetica Neue", "PingFang SC", "Noto Sans", "Noto Sans CJK SC", "Microsoft YaHei", 微软雅黑, sans-serif;
3
+}
4
+.header{
5
+    height: 80px;
6
+    position: fixed;
7
+    top: 0;
8
+    left: 0;
9
+    width: 100%;
10
+    background: #fff;
11
+    z-index: 100;
12
+}
13
+.newNav{
14
+    align-items: center;
15
+    height: 100%;
16
+    width: 1200px;
17
+    margin: 0 auto;
18
+    display: flex;
19
+    justify-content: space-between;
20
+}
21
+.newNav .logo{
22
+    width:120px;
23
+    margin-right: 60px;
24
+}
25
+.navList{
26
+    display: flex;
27
+    align-items: center;
28
+    font-size: 16px;
29
+    height: 100%;
30
+}
31
+.nav-link{
32
+    height: 100%;
33
+    margin-left: 3vw;
34
+    color:#333;
35
+    display: flex;
36
+    align-items: center;
37
+}
38
+.nav-link:hover, .nav-link_active{
39
+    color:#2780F6;
40
+    /* border-bottom: 3px solid #2780F6; */
41
+}
42
+.loginBtn{
43
+    padding: 6px 30px;
44
+    background:rgba(39,128,246,0);
45
+    border:1px solid rgba(39, 128, 246, 1);
46
+    border-radius:18px;
47
+    font-size: 14px;
48
+}
49
+.loginBtn:hover{
50
+    color: #3388ff;
51
+}
52
+.freeUse{
53
+    padding:6px 30px;
54
+    background:rgba(39,128,246,1);
55
+    border:1px solid rgba(39, 128, 246, 1);
56
+    border-radius:18px; 
57
+    color: #fff;
58
+    font-size: 14px;
59
+    margin-left: 10px;
60
+}
61
+.freeUse:hover{
62
+    color: #fff;
63
+}
64
+.aboutBanner{
65
+    /* background: url(../images/about-bg.jpg) no-repeat 50%; */
66
+    width: 100%;
67
+    height: 42vw;
68
+    position: relative;
69
+    margin-top: 80px;
70
+    background-image: url(/static/images/img/banner6.jpg);
71
+    background-position: center center;
72
+    background-size: cover;
73
+    -webkit-background-size: cover;
74
+    zoom: 1;
75
+    background-repeat: no-repeat;
76
+    color: #fff;
77
+    text-align: center;
78
+}
79
+.bannerTitle{
80
+    font-size: 40px;
81
+    width: 100%;
82
+    padding-top: 12vw;
83
+    padding-bottom: 2vw;
84
+    font-weight: bold;
85
+    font-family: PingFangSC-Regular,Microsoft YaHei,Helvetica Neue,Roboto,Segoe UI,"sans-serif" !important;
86
+}
87
+.bannerTips{
88
+    font-weight: lighter!important;
89
+    font-family: AlibabaPuHuiTiL,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
90
+}
91
+.tabs{
92
+    width: 100%;
93
+    background:rgba(5,18,43,.5);
94
+    height: 5vw;
95
+    position: absolute;
96
+    bottom: 0;
97
+}
98
+.tabOne{
99
+    width: 160px;
100
+    text-align: center;
101
+    cursor: pointer;
102
+    height: 100%;
103
+    line-height: 5vw;
104
+    font-size: 22px;
105
+}
106
+.tabActive{
107
+    background:rgba(5,18,43,1);
108
+    color: #2780F6;
109
+}
110
+.tab-item{
111
+    display: none;
112
+}
113
+.show{
114
+    display: block;
115
+}
116
+.aboutMain{
117
+    width: 100%;
118
+    color: #333;
119
+    
120
+}
121
+.aboutTitle{
122
+    text-align: center;
123
+    font-size: 40px !important;
124
+    margin-top: 50px;
125
+    margin-bottom: 40px !important;
126
+}
127
+.tab-item{
128
+    width: 72vw;
129
+    margin: 0 auto;
130
+}
131
+.tab-item>p{
132
+    font-size: 18px;
133
+    margin-bottom: 20px;
134
+    font-weight: lighter!important;
135
+    font-family: AlibabaPuHuiTiL,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
136
+}
137
+.photoBox{
138
+    display: flex;
139
+    justify-content: space-between;
140
+    margin-top: 5vw;
141
+    padding-bottom: 6vw;
142
+}
143
+.photo > img{
144
+    border-radius:10px;
145
+    width: 22vw;
146
+    height: 26vw;
147
+    margin-bottom: 1vw;
148
+}
149
+.contactUs{
150
+    width: 66vw;
151
+    margin: 0 auto;
152
+    padding-top: 50px;
153
+    display: flex;
154
+    font-weight: lighter!important;
155
+    font-family: AlibabaPuHuiTiL,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
156
+}
157
+.contactLeft{
158
+    flex: 1;
159
+    font-size: 18px;
160
+}
161
+.contactRight{
162
+    display: flex;
163
+    justify-content: space-around;
164
+    font-size: 18px;
165
+}
166
+.rightOne{
167
+    display: flex;
168
+    align-items: center;
169
+    text-align: center;
170
+    flex-direction: column;
171
+    justify-content: flex-end;
172
+    margin-left:4vw;
173
+}
174
+.rightOne>img{
175
+    width: 8vw;
176
+}
177
+.rightOne>p{
178
+    font-size: 14px;
179
+    margin: 0;
180
+}
181
+.map{
182
+    width: 66vw; 
183
+    margin: 0 auto;
184
+}
185
+.map>img{
186
+    width: 100%;
187
+    height: 39vw;
188
+    margin: 3vw 0;
189
+}
190
+
191
+
192
+.slogan{
193
+    width: 100%;
194
+    font-size: 30px;
195
+    color: #fff;
196
+    height: 14vw;
197
+    display: flex;
198
+    align-items: center;
199
+    background-image: url(/static/images/img/28.png);
200
+    background-position: center center;
201
+    background-size: cover;
202
+    -webkit-background-size: cover;
203
+    zoom: 1;
204
+    background-repeat: no-repeat;
205
+}
206
+.slogan>p{
207
+    width: 100%;
208
+    text-align: center;
209
+    margin: 0;
210
+}
211
+.footer{
212
+    width: 100%;
213
+    padding-bottom: 1vw;
214
+    background: #171E2F;
215
+    color: #fff;
216
+}
217
+.footerBox{
218
+    width: 72vw;
219
+    margin: 0 auto;
220
+}
221
+.point{
222
+    padding-top: 5vw;
223
+    padding-bottom: 1vw;
224
+}
225
+.contactBox{
226
+    display: flex;
227
+    font-size: 14px;
228
+    justify-content: space-between;
229
+}
230
+.copyRight{
231
+    font-size: 12px;
232
+    text-align: center;
233
+    margin-top: 4vw;
234
+}
235
+
236
+.suspension{
237
+    border:none;
238
+    box-shadow: none;
239
+    right:30px;
240
+    bottom:12%;
241
+}
242
+.suspension .a{
243
+    background: none;
244
+    border: none;
245
+    height: 70px;
246
+    margin-bottom: 10px;
247
+    width: 70px;
248
+}
249
+.suspension .a:hover{
250
+    background: none;
251
+}

+ 444 - 0
static/css/newIndex.css Просмотреть файл

@@ -0,0 +1,444 @@
1
+
2
+body{
3
+    font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Segoe UI", "Helvetica Neue", "PingFang SC", "Noto Sans", "Noto Sans CJK SC", "Microsoft YaHei", 微软雅黑, sans-serif;
4
+}
5
+.header{
6
+    height: 80px;
7
+    position: fixed;
8
+    top: 0;
9
+    left: 0;
10
+    width: 100%;
11
+    background: #fff;
12
+    z-index: 100;
13
+}
14
+.newNav{
15
+    align-items: center;
16
+    height: 100%;
17
+    width: 1200px;
18
+    margin: 0 auto;
19
+    display: flex;
20
+    justify-content: space-between;
21
+}
22
+.newNav .logo{
23
+    width:120px;
24
+    margin-right: 60px;
25
+}
26
+.navList{
27
+    display: flex;
28
+    align-items: center;
29
+    font-size: 16px;
30
+    height: 100%;
31
+}
32
+.nav-link{
33
+    height: 100%;
34
+    margin-left: 3vw;
35
+    color:#333;
36
+    display: flex;
37
+    align-items: center;
38
+}
39
+.nav-link:hover, .nav-link_active{
40
+    color:#2780F6;
41
+    /* border-bottom: 3px solid #2780F6; */
42
+}
43
+.loginBtn{
44
+    padding: 6px 30px;
45
+    background:rgba(39,128,246,0);
46
+    border:1px solid rgba(39, 128, 246, 1);
47
+    border-radius:18px;
48
+    font-size: 14px;
49
+}
50
+.loginBtn:hover{
51
+    color: #3388ff;
52
+}
53
+.freeUse{
54
+    padding:6px 30px;
55
+    background:rgba(39,128,246,1);
56
+    border:1px solid rgba(39, 128, 246, 1);
57
+    border-radius:18px; 
58
+    color: #fff;
59
+    font-size: 14px;
60
+    margin-left: 10px;
61
+}
62
+.freeUse:hover{
63
+    color: #fff;
64
+}
65
+.banner{
66
+    width: 100%;
67
+    height: 45vw;
68
+    position: relative;
69
+    margin-top: 80px;
70
+    /* background-image: url(https://kuyi.shengws.com/WechatIMG895.png); */
71
+    background-image: url(/static/images/img/banner3.jpg);
72
+    background-position: center center;
73
+    background-size: cover;
74
+    -webkit-background-size: cover;
75
+    zoom: 1;
76
+    background-repeat: no-repeat;
77
+}
78
+.bannerBox{
79
+    position: absolute;
80
+}
81
+.bannerImg{
82
+    width: 100%;
83
+}
84
+.bannerTip{
85
+    /* background:rgba(39,128,246,1); */
86
+    border-radius:10px;
87
+    width: 560px;
88
+    height: 70px;
89
+    line-height: 70px;
90
+    text-align: center;
91
+    margin: 0 auto;
92
+    font-size: 42px;
93
+    color: #2780F6;
94
+    font-weight: bold;
95
+    font-family: PingFangSC-Regular,Microsoft YaHei,Helvetica Neue,Roboto,Segoe UI,"sans-serif" !important;
96
+    
97
+}
98
+.bannerMain{
99
+    /* padding-top: 100px; */
100
+    position: absolute;
101
+    width: 100%;
102
+    top: 15%;
103
+}
104
+.bannerTxt{
105
+    width: 780px;
106
+    text-align: center;
107
+    margin: 0 auto;
108
+    color: #333;
109
+    font-size: 20px;
110
+    margin-top: 34px;
111
+    font-weight: lighter!important;
112
+    font-family: AlibabaPuHuiTiL,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
113
+}
114
+.digital{
115
+    /* width: 700px; */
116
+    width: 100%;
117
+    height: 16vw;
118
+    display: flex;
119
+    margin: 100px auto 0;
120
+    /* color: #fff; */
121
+}
122
+.digital-one{
123
+    width: 15vw;
124
+    /* background:rgba(39,128,246,.9); */
125
+    background: #fff;
126
+    display: flex;
127
+    flex-direction: column;
128
+    align-items: center;
129
+    text-align: center;
130
+    justify-content: space-around;
131
+    border-radius: 10px;
132
+}
133
+.digital-two{
134
+    width: 15vw;
135
+    background: #fff;
136
+    /* background:rgba(119,167,212,.9); */
137
+    display: flex;
138
+    flex-direction: column;
139
+    align-items: center;
140
+    text-align: center;
141
+    justify-content: space-around;
142
+    border-radius: 10px;
143
+}
144
+.digitalImg{
145
+    width: 6vw;
146
+    margin-top: 2vw;
147
+}
148
+.introduce{
149
+    height: 30vw;
150
+}
151
+.introduceTitle{
152
+    width: 100%;
153
+    text-align: center;
154
+    color: #333;
155
+    font-size: 32px;
156
+    margin: 70px 0;
157
+}
158
+.introduceBox{
159
+    height: 22vw;
160
+}
161
+.introduceMain{
162
+    width: 66vw;
163
+    display: flex;
164
+    margin: 0 auto;
165
+    height: 100%;
166
+    justify-content: space-between;
167
+}
168
+.introduceOne{
169
+    width: 20vw;
170
+    background: #fff;
171
+    display: flex;
172
+    flex-direction: column;
173
+    align-items: center;
174
+    text-align: center;
175
+    /* justify-content: space-around; */
176
+    margin-right: 20px;
177
+    box-shadow:0px 4px 25px 0px rgba(39,128,246,0.11);
178
+    color: #353535;
179
+    border-radius: 10px;
180
+}
181
+.introduceImg{
182
+    width: 6vw;
183
+    margin-top: 4vw;
184
+    margin-bottom: 2vw;
185
+}
186
+.programme{
187
+    width: 1200px;
188
+    margin: 0 auto;
189
+    /* height: 45vw; */
190
+    /* padding-left: 40px; */
191
+    padding-top: 80px;
192
+    padding-bottom: 100px;
193
+}
194
+.programmeTitle{
195
+    text-align: center;
196
+    width: 100%;
197
+    padding: 0px 0 70px;
198
+    font-size: 32px;
199
+    color: #333;
200
+}
201
+.programmeDescribe{
202
+    flex: 1;
203
+}
204
+.describeTip1{
205
+    color: #333;
206
+    font-size: 18px;
207
+    margin: 0;
208
+    font-weight: bold;
209
+    margin-bottom: 6px;
210
+}
211
+.describeTip2{
212
+    color: #333;
213
+    font-size: 16px;
214
+    margin: 0;
215
+    font-weight: lighter!important;
216
+    font-family: AlibabaPuHuiTiL,-apple-system,BlinkMacSystemFont,Segoe UI,Roboto,Oxygen,Ubuntu,Cantarell,Fira Sans,Droid Sans,Helvetica Neue,sans-serif;
217
+}
218
+.mainImg{
219
+    width: 43vw;
220
+    height: 28vw;
221
+    margin-top: -2vw;
222
+}
223
+.free{
224
+    display: block;
225
+    width: 166px;
226
+    background: rgba(39,128,246,1);
227
+    border-radius: 22px;
228
+    color: #fff;
229
+    text-align: center;
230
+    padding: 10px 0;
231
+    font-size: 14px;
232
+}
233
+.free:hover{
234
+    color: #fff;
235
+}
236
+
237
+.download{
238
+    width: 100%;
239
+    padding-top: 80px;
240
+    padding-bottom: 100px;
241
+}
242
+.downloadTitle{
243
+    text-align: center;
244
+    width: 100%;
245
+    padding: 0px 0 70px;
246
+    font-size: 32px;
247
+    color: #333; 
248
+}
249
+.downloadBox{
250
+    width: 1200px;
251
+    display: flex;
252
+    margin: 0 auto;
253
+    justify-content: space-between;
254
+}
255
+.downOne{
256
+    width: 24%;
257
+    display: flex;
258
+    flex-direction: column;
259
+    text-align: center;
260
+    align-items: center;
261
+    border: 1px solid #EEEEEE;
262
+}
263
+.downOne>img:first-of-type{
264
+    width: 8vw;
265
+    margin-top: 3vw;
266
+}
267
+.downOne>img:last-of-type{
268
+    width: 18vw;
269
+    margin-bottom: 2vw;
270
+}
271
+.downOne>span{
272
+    font-size: 18px;
273
+    color: #333;
274
+    margin-bottom: 1vw;
275
+    font-weight: bold;
276
+    margin-top: 6px;
277
+}
278
+.downOne>p{
279
+    font-size: 14px;
280
+    color: #333;
281
+}
282
+.tipBox{
283
+    width:50vw;
284
+    margin: 0 auto;
285
+    display: flex;
286
+    justify-content: space-between;
287
+    margin-top: 6vw;
288
+}
289
+.tipOne{
290
+    display: flex;
291
+    flex-direction: column;
292
+    text-align: center;
293
+    align-items: center;
294
+}
295
+.tipOne>img{
296
+    width: 5vw;
297
+}
298
+.tipOne>span{
299
+    font-size: 22px;
300
+    font-weight: bold;
301
+    color: #333;
302
+    margin-top: 1vw;
303
+}
304
+.tipOne>p{
305
+    font-size: 16px;
306
+    color: #666666;
307
+    margin-top: 5px;
308
+}
309
+.advert{
310
+    width: 100%;
311
+    position: relative;
312
+}
313
+.advertBlue{
314
+    width: 100%;
315
+    height: 40vw;
316
+    background: #2780F6;
317
+    padding-top: 80px;
318
+}
319
+.advertWhite{
320
+    width: 100%;
321
+    height: 40vw;
322
+}
323
+.advertTitle{
324
+    text-align: center;
325
+    width: 100%;
326
+    padding: 0px 0 40px;
327
+    font-size: 28px;  
328
+    color: #fff;
329
+}
330
+.productBox{
331
+    width: 40vw;
332
+    margin: 0 auto 20px;
333
+    display: flex;
334
+    justify-content: space-between;
335
+}
336
+.productOne{
337
+    display: flex;
338
+    flex-direction: column;
339
+    text-align: center;
340
+    align-items: center;
341
+    color:#fff;
342
+}
343
+.productOne>img{
344
+    width: 5vw;
345
+}
346
+.sort{
347
+    color:#fff;
348
+    font-size: 12px;
349
+    text-align: center;
350
+    width: 100%;
351
+    margin-top: 2vw;
352
+}
353
+.position{
354
+    position: absolute;
355
+    left: 50%;
356
+    top: 58%;
357
+    transform: translate(-50%,-50%);
358
+}
359
+.sponsorBox{
360
+    width: 60vw;
361
+    background: #fff;
362
+    
363
+    display: flex;
364
+    flex-wrap: wrap;
365
+}
366
+.sponsorOne{
367
+    width: 12vw;
368
+    height: 12vw;
369
+    display: flex;
370
+    flex-direction: column;
371
+    align-items: center;
372
+}
373
+.sponsorOne>img{
374
+    width: 100%;
375
+    margin-top: 3vw;
376
+    margin-bottom: 1vw;
377
+}
378
+.sponsorOne>p{
379
+    font-size: 14px;
380
+    color: #333;
381
+}
382
+.background{
383
+    background: #F8F8F8;
384
+}
385
+.slogan{
386
+    width: 100%;
387
+    font-size: 22px;
388
+    color: #fff;
389
+    height: 14vw;
390
+    display: flex;
391
+    align-items: center;
392
+    background-image: url(/static/images/img/28.png);
393
+    background-position: center center;
394
+    background-size: cover;
395
+    -webkit-background-size: cover;
396
+    zoom: 1;
397
+    background-repeat: no-repeat;
398
+}
399
+.slogan>p{
400
+    width: 100%;
401
+    text-align: center;
402
+    margin: 0;
403
+    font-size: 30px;
404
+}
405
+.footer{
406
+    width: 100%;
407
+    padding-bottom: 1vw;
408
+    background: #171E2F;
409
+    color: #fff;
410
+}
411
+.footerBox{
412
+    width: 72vw;
413
+    margin: 0 auto;
414
+}
415
+.point{
416
+    padding-top: 5vw;
417
+    padding-bottom: 1vw;
418
+}
419
+.contactBox{
420
+    display: flex;
421
+    font-size: 14px;
422
+    justify-content: space-between;
423
+}
424
+.copyRight{
425
+    font-size: 12px;
426
+    text-align: center;
427
+    margin-top: 4vw;
428
+}
429
+.suspension{
430
+    border:none;
431
+    box-shadow: none;
432
+    right:30px;
433
+    bottom:12%;
434
+}
435
+.suspension .a{
436
+    background: none;
437
+    border: none;
438
+    height: 70px;
439
+    margin-bottom: 10px;
440
+    width: 70px;
441
+}
442
+.suspension .a:hover{
443
+    background: none;
444
+}

+ 181 - 0
views/mobile_site/about.html Просмотреть файл

@@ -0,0 +1,181 @@
1
+<!DOCTYPE html>
2
+<html lang="en">
3
+
4
+<head>
5
+    <meta charset="UTF-8">
6
+    <!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
7
+    <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
8
+    <meta http-equiv="X-UA-Compatible" content="ie=edge">
9
+    <meta name="keywords" content="酷医,酷医云,数字化,血透软件,血透管理系统,血液透析系统,血液净化系统,肾内科信息化软件,血透,透析,血液透析,透析中心,透析耗材,智能透析,慢病管理,营销管理,医护培训,SCRM,信息化管理软件">
10
+    <meta name="description"
11
+        content="酷医云,全国领先的透析中心数字化平台,满足患者管理、透析管理、质控管理、慢病管理、运营管理、经营管理等各种协作需求。在全国覆盖25个省份,拥有超千家透析中心用户,开始免费使用吧。">
12
+    <title>酷医云-透析中心数字化平台</title>
13
+    <link rel="stylesheet" href="/static/css/mobile.css?v=1.0.0">
14
+    <link rel="stylesheet" href="/static/css/mobileAbout.css?v=1.0.0">
15
+    <link href="https://cdn.bootcdn.net/ajax/libs/Swiper/3.0.8/css/swiper.css" rel="stylesheet">
16
+    <!-- 百度统计 -->
17
+    <script>
18
+        var _hmt = _hmt || [];
19
+        (function() {
20
+          var hm = document.createElement("script");
21
+          hm.src = "https://hm.baidu.com/hm.js?7577c975fa7ae685efd61deb009d1b5b";
22
+          var s = document.getElementsByTagName("script")[0]; 
23
+          s.parentNode.insertBefore(hm, s);
24
+        })();
25
+        </script>
26
+</head>
27
+
28
+<body>
29
+    <div class="pageAbout">
30
+        <header class="head">
31
+            <div class="logo">
32
+                <img onclick="window.location.href='/';" src="../../static/images/img/logo2.png" alt="">
33
+            </div>
34
+            <div class="expand">
35
+               <div></div>
36
+               <div></div>
37
+               <div></div>
38
+            </div>
39
+        </header>
40
+        <div class="outerSlider show">
41
+            <div class="menuBox">
42
+                <div class="menuNav">
43
+                    <div class="logo">
44
+                        <img src="../../static/images/img/logo2.png" alt="">
45
+                    </div>
46
+                    <div class="expand">
47
+                       <div></div>
48
+                       <div></div>
49
+                       <div></div>
50
+                    </div>
51
+                </div>
52
+                <div class="scrollList">
53
+                    <a href="/"><p>首页</p></a>
54
+                    <!-- <p>产品与服务</p>
55
+                    <p>酷医商城</p> -->
56
+                    <a href="/about"><p>关于酷医</p></a>
57
+                </div>
58
+            </div>
59
+        </div>
60
+        <div class="aboutBanner">
61
+            <p class="aboutBannerTitle">酷医,透析互联网生态平台</p>
62
+            <p class="aboutTips">作为国内首个血液透析数字化服务商,酷医致力于用数字化赋能肾病患者、透析中心、透析厂商,践行“平台+生态”战略为中国“数字医疗”的落地提供强有力的支撑,并提升患者生命品质,成为一家有社会责任感的企业</p>
63
+
64
+            <div class="tabs">
65
+                <div style="display: flex;align-items: center;height: 100%;width:2.64rem;margin: 0 auto;">
66
+                    <div tabid="1" class="tabOne tabActive">关于我们</div>
67
+                    <div tabid="2" class="tabOne">联系我们</div>
68
+                </div>
69
+            </div>
70
+        </div>
71
+        <div class="aboutMain">
72
+            <div class="tab-item show1">
73
+                <p class="aboutUsTitle">关于我们</p>
74
+                <p class="">酷医,是专注于透析互联网生态建设的服务型公司,致力于用移动互联网和数字技术连接1.2亿肾病病人、300万透析患者、过万家透析中心、数千家厂商,为透 析产业的患者、透析中心、医疗机构、厂商/服务商、公益组织实现信息共享、达成快捷交易、提高管理效率、提升服务水平、聚合资源、降低成本。</p>   
75
+
76
+                <p>酷医旗下酷医云,是国内领先的透析中心管理SaaS应用软件及增值服务供应商,是国内首个完全免费使用的智能透析管理平台,5年透析中心服务经验,为透析中心提供覆盖透析管理、慢病管理、营销管理、分销商城、医护培训、供应链等透析中心全流程的SaaS软件和服务解决方案,全国数百家透析中心信赖的选择。</p>
77
+
78
+                <p>我们既着眼于现实,用产品和服务帮助每一所透析机构实现互联网+医疗的改革方案;也放眼于未来,通过数据挖掘、人工智能为透析医疗机构带来真正更深远的价值。</p>
79
+
80
+                <div class="photoBox">
81
+                    <div class="photo">
82
+                        <img src="../../static/images/img/29.png" alt="">
83
+                        <p style="font-size:0.2rem;font-weight:bold;color: #333;margin: 0.2rem 0 0.1rem;">愿景</p>
84
+                        <p style="font-size:0.15rem;color: #666666;margin-bottom: 0.34rem;">持续帮助肾友提升生命品质</p>
85
+                    </div>
86
+                    <div class="photo">
87
+                        <img src="../../static/images/img/30.png" alt="">
88
+                        <p style="font-size:0.2rem;font-weight:bold;color: #333;margin: 0.2rem 0 0.1rem;">使命</p>
89
+                        <p style="font-size:0.15rem;color: #666666;margin-bottom: 0.34rem;">创造好的诊疗环境为肾友有尊严的生命体验服务</p>
90
+                    </div>
91
+                    <div class="photo">
92
+                        <img src="../../static/images/img/31.png" alt="">
93
+                        <p style="font-size:0.2rem;font-weight:bold;color: #333;margin: 0.2rem 0 0.1rem;">价值观</p>
94
+                        <p style="font-size:0.15rem;color: #666666;margin-bottom: 0.34rem;">客户第一、团队协作、创新、敬业、诚信</p>
95
+                    </div>
96
+                </div>
97
+            </div>
98
+            <div class="tab-item">
99
+                <div class="aboutMessage">
100
+                    <div style="margin-bottom: 0.3rem">
101
+                        <p class="message">咨询热线:0755-86526342</p>
102
+                        <p class="message">服务邮箱:service@shengws.com</p>
103
+                    </div>
104
+                    <div style="margin-bottom: 0.3rem;">
105
+                        <p class="message">客服手机:18682078150</p>
106
+                        <p class="message">客服微信:kuyicloud</p>
107
+                    </div>
108
+                    <div>
109
+                        <p class="message">工作时间:上午9:00-12:00</p>
110
+                        <p class="message"><span style="visibility: hidden;">工作时间:</span>下午13:30-18:00</p>
111
+                        <p class="message">公司地址:深圳市南山区南山智园A4栋09楼</p>
112
+                    </div>
113
+                </div>
114
+                <div class="codeBox">
115
+                    <img src="../../static/images/img/img13.png" alt="">
116
+                    <p>扫描下载酷医云APP</p>
117
+                </div>
118
+                <div class="codeBox">
119
+                    <img src="../../static/images/img/img13.png" alt="">
120
+                    <p>关注酷医云公众号</p>
121
+                </div>
122
+                <div class="map">
123
+                    <img src="../../static/images/img/map.png" alt="">
124
+                </div>
125
+            </div>
126
+        </div>
127
+        <div class="slogan">
128
+            <p>酷医</p>
129
+            <p>帮助透析中心从优秀到卓越</p>
130
+        </div>
131
+        <div class="footer">
132
+            <p>咨询热线:0755-86526342</p>
133
+            <p>服务邮箱:service@shengws.com</p>
134
+            <p>客服手机:18682078150</p>
135
+            <p>客服微信:kuyicloud</p>
136
+            <p>工作时间:上午9:00-12:00,下午13:30-18:00</p>
137
+            <p>公司地址:深圳市南山区南山智园A4栋09楼</p>
138
+            <span class="beian">© Copyright 2015-2020 深圳市健康互动科技有限公司<a href="http://www.beian.miit.gov.cn">粤ICP备15079323号-4</a></span>
139
+        </div>
140
+        <div class="useBox">
141
+            <div class="free" onclick="window.location.href='/mobile/regist';">免费使用</div>
142
+        </div>
143
+    </div>
144
+
145
+
146
+        <script src="/static/js/jquery-1.11.0.min.js" type="text/javascript"></script>
147
+        <script type="text/javascript">
148
+            (function(doc, win) {
149
+                var docEl = doc.documentElement,
150
+                    resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize',
151
+                    recalc = function() {
152
+                        var clientWidth = docEl.clientWidth;
153
+                        if (!clientWidth) return;
154
+                    // 设置设计稿的宽度clientWidth为750
155
+                        if (clientWidth >= 750) {
156
+                            docEl.style.fontSize = '75px';
157
+                        } else {
158
+                            // 设置设计稿的宽度clientWidth为750
159
+                            docEl.style.fontSize = 100 * (clientWidth / 375) + 'px';
160
+                        };
161
+                    };
162
+                if (!doc.addEventListener) return;
163
+                win.addEventListener(resizeEvt, recalc, false);
164
+                doc.addEventListener('DOMContentLoaded', recalc, false);
165
+            })(document, window);
166
+            $(".expand").click(function(){
167
+                $(".outerSlider").slideToggle();
168
+            });
169
+
170
+
171
+            // $('#bootstrap-touch-slider').bsTouchSlider();
172
+            $(".tabOne").click(function(){
173
+                var i = $(this).index();
174
+                $(this).addClass('tabActive').siblings().removeClass('tabActive');
175
+                $('.aboutMain .tab-item').eq(i).addClass('show1').siblings().removeClass('show1');
176
+            })
177
+        </script>
178
+</body>
179
+
180
+</html>
181
+

+ 418 - 134
views/mobile_site/index.html Просмотреть файл

@@ -3,13 +3,16 @@
3 3
 
4 4
 <head>
5 5
     <meta charset="UTF-8">
6
-    <meta name="viewport" content="width=device-width, initial-scale=1.0">
6
+    <!-- <meta name="viewport" content="width=device-width, initial-scale=1.0"> -->
7
+    <meta name="viewport" content="width=device-width, user-scalable=no, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0" />
7 8
     <meta http-equiv="X-UA-Compatible" content="ie=edge">
8
-    <meta name="keywords" content="酷医,酷医云,酷医聚客,病人关系管理,微信管理平台,肾病科宣,慢病管理云平台,SCRM,SPRM,血透管理,科室品牌推广">
9
+    <meta name="keywords" content="酷医,酷医云,数字化,血透软件,血透管理系统,血液透析系统,血液净化系统,肾内科信息化软件,血透,透析,血液透析,透析中心,透析耗材,智能透析,慢病管理,营销管理,医护培训,SCRM,信息化管理软件">
9 10
     <meta name="description"
10
-        content="酷医云,是专为肾科和血透中心研发的免费血透管理平台,覆盖诊前、诊中、诊后全流程管理;为血透中心提供覆盖智能营销管理、血透管理、慢病管理、医患沟通、进销存管理以及商城管理等全流程一体化的管理平台。全国数百家血透中心信赖的选择。">
11
-    <title>酷医云-血透管理软件</title>
11
+        content="酷医云,全国领先的透析中心数字化平台,满足患者管理、透析管理、质控管理、慢病管理、运营管理、经营管理等各种协作需求。在全国覆盖25个省份,拥有超千家透析中心用户,开始免费使用吧。">
12
+    <title>酷医云-透析中心数字化平台</title>
12 13
     <link rel="stylesheet" href="/static/css/mobile.css?v=1.0.0">
14
+    <link rel="stylesheet" href="/static/css/mobileIndex.css?v=1.0.0">
15
+    <link href="https://cdn.bootcdn.net/ajax/libs/Swiper/3.0.8/css/swiper.css" rel="stylesheet">
13 16
     <script>
14 17
         var _hmt = _hmt || [];
15 18
         (function() {
@@ -22,142 +25,386 @@
22 25
 </head>
23 26
 
24 27
 <body>
25
-    <header>
28
+    <header class="head">
26 29
         <div class="logo">
27
-            <img src="/static/images/mobile_site/logo.png" alt="">
30
+            <img onclick="window.location.href='/';" src="../../static/images/img/logo2.png" alt="">
28 31
         </div>
32
+        <div class="expand">
33
+           <div></div>
34
+           <div></div>
35
+           <div></div>
36
+        </div>
37
+        
29 38
     </header>
30
-    <div class="main-container">
31
-        <div class="baner-box">
32
-            <img src="/static/images/mobile_site/banner.jpg" alt="">
33
-            <div class="free-box">
34
-                <p>构建智慧肾科/透析中心</p>
35
-            </div>
36
-        </div>
37
-        <!-- 血透 -->
38
-        <div class="custom-title">
39
-            <span class="name">血透管理</span>
40
-            <p class="txt">规范机构的血透流程 提升患者透析质量</p>
41
-        </div>
42
-        <div class="customer-card">
43
-            <div class="customer-card-image">
44
-                <img src="/static/images/mobile_site/xt.png" alt="">
45
-            </div>
46
-            <p class="text">基于血透临床标准应用流程研发,规范可控;平板操作,随时随地记录和监测患者病情;和圣卫士打通,实现医患互动、透析数据共享;多维度数据分析管理,轻松掌握和提升透析质量。</p>
47
-        </div>
48
-        <!-- 慢病 -->
49
-        <div class="custom-title">
50
-            <span class="name">慢病管理</span>
51
-            <p class="txt">提升机构的临床科研 控制患者病情进展</p>
52
-        </div>
53
-        <div class="customer-card">
54
-            <div class="customer-card-image">
55
-                <img src="/static/images/mobile_site/mb.png" alt="">
56
-            </div>
57
-            <p class="text">24小时实时动态采集监测数据;监测指标发现异常,智能提醒医生和患者;多维度大数据分析,助力医生优化治疗方案;一键连接患者,快速干预患者行为。</p>
58
-        </div>
59
-        <!-- scrm -->
60
-        <div class="custom-title">
61
-            <span class="name">SCRM</span>
62
-            <p class="txt">帮助机构获得患者流量 拉近机构和患者距离</p>
63
-        </div>
64
-        <div class="customer-card">
65
-            <div class="customer-card-image">
66
-                <img src="/static/images/mobile_site/scrm.png" alt="">
67
-            </div>
68
-            <p class="text">建立机构独一无二的品牌展示;向精准用户快速裂变传播信息;多渠道患者来源建立会员用户池;多维度数据分析提升客户转化率。</p>
69
-        </div>
70
-        <!-- 微商城 -->
71
-        <div class="custom-title">
72
-            <span class="name">微商城</span>
73
-            <p class="txt">帮助机构提升整体营收 为商家输出更多的商业价值</p>
74
-        </div>
75
-        <div class="customer-card">
76
-            <div class="customer-card-image">
77
-                <img src="/static/images/mobile_site/wsc.jpg" alt="">
78
-            </div>
79
-            <p class="text">实时数据监控,订单、物流、成交金额等实时数据;下单客户自动进入机构患者用户库;支持从酷医云分销产品,零成本赚钱;帮助机构快速卖货,解决销售渠道问题。</p>
80
-        </div>
81
-        <!-- 合作伙伴 -->
82
-        <div class="custom-title clearfix">
83
-            <span class="name">合作伙伴</span>
84
-        </div>
85
-        <div class="hz clearfix">
86
-            <ul>
87
-                <li>
88
-                    <img src="/static/images/mobile_site/hz-1.png" alt="">
89
-                </li>
90
-                <li>
91
-                    <img src="/static/images/mobile_site/hz-2.png" alt="">
92
-                </li>
93
-                <li>
94
-                    <img src="/static/images/mobile_site/hz-3.png" alt="">
95
-                </li>
96
-                <li>
97
-                    <img src="/static/images/mobile_site/hz-4.png" alt="">
98
-                </li>
99
-                <li>
100
-                    <img src="/static/images/mobile_site/hz-5.png" alt="">
101
-                </li>
102
-                <li>
103
-                    <img src="/static/images/mobile_site/hz-6.png" alt="">
104
-                </li>
105
-                <li>
106
-                    <img src="/static/images/mobile_site/hz-7.png" alt="">
107
-                </li>
108
-                <li>
109
-                    <img src="/static/images/mobile_site/hz-8.png" alt="">
110
-                </li>
111
-            </ul>
112
-        </div>
113
-        <div class="clearfix"></div>
114
-        <!-- 酷医云 -->
115
-        <div class="custom-title clearfix">
116
-            <span class="name">酷医云</span>
117
-            <p class="txt">助力肾科/透析中心医疗建设 提升整体服务水平</p>
118
-        </div>
119
-        <div class="hz service clearfix">
120
-            <ul>
121
-                <li>
122
-                    <img src="/static/images/mobile_site/service-1.jpg" alt="">
123
-                    <p>品牌提升</p>
124
-                    <p>精准营销</p>
125
-                </li>
126
-                <li>
127
-                    <img src="/static/images/mobile_site/service-2.jpg" alt="">
128
-                    <p>就医体验</p>
129
-                    <p>网络医疗</p>
130
-                </li>
131
-                <li>
132
-                    <img src="/static/images/mobile_site/service-3.jpg" alt="">
133
-                    <p>透析质量</p>
134
-                    <p>院外服务</p>
135
-                </li>
136
-                <li>
137
-                    <img src="/static/images/mobile_site/service-4.jpg" alt="">
138
-                    <p>医护培训</p>
139
-                    <p>快捷采购</p>
140
-                </li>
141
-            </ul>
142
-        </div>
143
-        <div class="clearfix"></div>
144
-        <!-- 版权   -->
145
-        <div class="copyright">
146
-            <h2>深圳市健康互动科技有限公司</h2>
147
-            <p>咨询热线:0755-86526342</p>
148
-            <p>服务邮箱:service@shengws.com</p>
149
-            <p>工作时间:上午9:00-12:00,下午13:30-18:00</p>
150
-            <p>公司地址:深圳市南山区学苑大道1001号南山智园A4栋9楼918</p>
151
-        </div>
152
-        <p>© 2016-2019 kuyicloud.com 酷医云 版权所有 <a href="http://www.beian.miit.gov.cn">粤ICP备15079323号-4</a></p>
153
-        <!-- 免费使用 -->
154
-        <div class="freeBtn">
155
-            <button class="button" onclick="window.location.href='/mobile/regist';">免费使用</button>
39
+    <div class="outerSlider show">
40
+        <div class="menuBox">
41
+            <div class="menuNav">
42
+                <div class="logo">
43
+                    <img src="../../static/images/img/logo2.png" alt="">
44
+                </div>
45
+                <div class="expand">
46
+                   <div></div>
47
+                   <div></div>
48
+                   <div></div>
49
+                </div>
50
+            </div>
51
+            <div class="scrollList">
52
+                <a href="/"><p>首页</p></a>
53
+                <!-- <p>产品与服务</p>
54
+                <p>酷医商城</p> -->
55
+                <a href="/about"><p>关于酷医</p></a>
56
+            </div>
57
+        </div>
58
+    </div>
59
+    <div class="main-container" style="margin-bottom:0">
60
+        <div class="banner">
61
+            <!-- <img src="/static/images/mobile_site/banner.jpg" alt=""> -->
62
+            <div class="bannerBox">
63
+                <p class="bannerTitle">数字化,让透析中心降本增效</p>
64
+                <p class="bannerTips">每个透析中心,都需要酷医的产品与服务,</p>
65
+                <p class="bannerTips">无论是透析管理、品牌建设、耗材采购、医护培训或者经营管理,</p>
66
+                <p class="bannerTips">我们非常乐意帮助您打造卓越的透析服务。</p>
67
+            </div>
68
+            <p class="freeuse" onclick="window.location.href='/mobile/regist';">免费使用</p>
69
+        </div>
70
+        <!-- <div style="position: absolute;left: 50%;top: 58%;transform: translate(-50%,-50%);"> -->
71
+            <div class="special">
72
+                <div class="specialOne">
73
+                    <img class="specialImg" src="../../static/images/img/p5.png" alt="">
74
+                    <div>
75
+                        <p class="specialTip1">超千家</p>
76
+                        <p class="specialTip2">透析中心覆盖</p>
77
+                    </div>
78
+                </div>
79
+                <div class="specialOne">
80
+                    <img class="specialImg" src="../../static/images/img/p6.png" alt="">
81
+                    <div>
82
+                        <p class="specialTip1">数千位</p>
83
+                        <p class="specialTip2">透析医护覆盖</p>
84
+                    </div>
85
+                </div>
86
+                <div class="specialOne">
87
+                    <img class="specialImg" src="../../static/images/img/p7.png" alt="">
88
+                    <div>
89
+                        <p class="specialTip1">千万次透析/年</p>
90
+                        <p class="specialTip2">酷医大数据</p>
91
+                    </div>
92
+                </div>
93
+                <div class="specialOne">
94
+                    <img class="specialImg" src="../../static/images/img/p8.png" alt="">
95
+                    <div>
96
+                        <p class="specialTip1">25个省市区</p>
97
+                        <p class="specialTip2">酷医SaaS覆盖</p>
98
+                    </div>
99
+                </div>
100
+            </div>
101
+        <!-- </div> -->
102
+            <div class="introduceTitle">
103
+                <p>透析中心</p>
104
+                <p>一站式服务平台</p>
105
+            </div>
106
+            <div class="introduceBox">
107
+                <div class="introduceOne">
108
+                    <img class="introduceImg" src="../../static/images/img/img5.png" alt="">
109
+                    <div>
110
+                        <p style="font-size: 0.12rem">透析中心</p>
111
+                        <p style="font-size: 0.16rem">数字化服务 </p>
112
+                    </div>
113
+                </div>
114
+                <div class="introduceOne">
115
+                    <img class="introduceImg" src="../../static/images/img/img6.png" alt="">
116
+                    <div>
117
+                        <p style="font-size: 0.12rem">透析中心</p>
118
+                        <p style="font-size: 0.16rem">供应链服务</p>
119
+                    </div>
120
+                </div>
121
+                <div class="introduceOne" style="margin-right: 0;">
122
+                    <img class="introduceImg" src="../../static/images/img/img7.png" alt="">
123
+                    <div>
124
+                        <p style="font-size: 0.12rem">透析中心</p>
125
+                        <p style="font-size: 0.16rem">增值服务</p>
126
+                    </div>
127
+                </div>
128
+            </div>
129
+        
130
+    </div>
131
+    <div class="common" style="padding-bottom: 0.2rem;">
132
+        <div class="commonTitle">
133
+            <p>新透析</p>
134
+            <p>透析中心的互联网解决方案</p>
135
+        </div>
136
+        <div class="commonMain">
137
+            <img style="width: 100%;" src="../../static/images/img/img8.png" alt="">
138
+            <p class="commonTit1">轻松患者引流</p>
139
+            <p class="commonTit2">拓宽线上线下渠道,建设品牌,轻松解决患者流量难题</p>
140
+            <p class="commonTit1">高效透析管理</p>
141
+            <p class="commonTit2">智能病历、排班、签到、透析记录,快速提升工作效率</p>
142
+            <p class="commonTit1">随时随地工作</p>
143
+            <p class="commonTit2">手机、平板、电脑多终端使用,医生随时开医嘱远程看病情</p>
144
+            <p class="commonTit1">透析质量可控</p>
145
+            <p class="commonTit2">患者病历、医嘱、记录、检验、院外数据汇总分析,质控有保障</p>
146
+        </div>
147
+    </div>
148
+    <div class="common" style="background: #F8FBFF;padding-bottom: 0.2rem;">
149
+        <div class="commonTitle">
150
+            <p>透析管理</p>
151
+            <p>让您一小时实现无纸化透析服务</p>
152
+        </div>
153
+        <div class="commonMain">
154
+            <img style="width: 100%;" src="../../static/images/img/img9.png" alt="">
155
+            <p class="commonTit1">透析过程记录</p>
156
+            <p class="commonTit2">手机、平板、电脑轻松完成医嘱和透析记录,永久保存</p>
157
+            <p class="commonTit1">智能数据采集</p>
158
+            <p class="commonTit2">智能采集透析称/血压计/透析机等数据,提升效率减少错误</p>
159
+            <p class="commonTit1">便捷管理工具</p>
160
+            <p class="commonTit2">库存、院感和设备的统一管理,智能预警,管理看得见</p>
161
+            <p class="commonTit1">精准数据分析</p>
162
+            <p class="commonTit2">随时掌控患者透析质量,多维分析经营状态</p>
163
+        </div>
164
+    </div>
165
+    <div class="common" style="padding-bottom: 0.2rem;">
166
+        <div class="commonTitle">
167
+            <p>品牌经营</p>
168
+            <p>让您一分钟实现自己的移动门户</p>
169
+        </div>
170
+        <div class="commonMain">
171
+            <img style="width: 100%;" src="../../static/images/img/img10.png" alt="">
172
+            <p class="commonTit1">展示透析中心</p>
173
+            <p class="commonTit2">可配置的移动门户,多种内容展示,提升品牌形象</p>
174
+            <p class="commonTit1">经营粉丝流量</p>
175
+            <p class="commonTit2">绑定公众号,实现粉丝和会员的双重流量增长</p>
176
+            <p class="commonTit1">人气营销工具</p>
177
+            <p class="commonTit2">品牌传播快速获客工具,持续提升透析服务患者客群</p>
178
+            <p class="commonTit1">搭建患教中心</p>
179
+            <p class="commonTit2">清晰的分类,强大的发布功能,助力实现专属患教中心</p>
180
+        </div>
181
+    </div>
182
+    <div class="common" style="background: #F8FBFF;padding-bottom: 0.2rem;">
183
+        <div class="commonTitle">
184
+            <p>零售商城</p>
185
+            <p>让您零成本拥有自己的网络商城</p>
156 186
         </div>
187
+        <div class="commonMain">
188
+            <img style="width: 100%;" src="../../static/images/img/img11.png" alt="">
189
+            <p class="commonTit1">数百款产品</p>
190
+            <p class="commonTit2">和国内外品牌厂商合作,共建优质肾病患者商品库</p>
191
+            <p class="commonTit1">零成本开店</p>
192
+            <p class="commonTit2">无需压款、压货,酷医统一提供商品、物流和售后</p>
193
+            <p class="commonTit1">增强患者黏性</p>
194
+            <p class="commonTit2">商品销售是透析之外的增值服务,可增加服务黏性</p>
195
+            <p class="commonTit1">分销流水看得见</p>
196
+            <p class="commonTit2">交易安全账单透明,提现便捷到账迅速</p>
197
+        </div>
198
+    </div>
199
+    <div class="commonTitle">
200
+        <p>多种终端支持</p>
201
+        <p>工作随时随地</p>
202
+    </div>
203
+
204
+    
205
+
206
+    
207
+    <div class="swiper-container">
208
+        <div class="swiper-wrapper">
209
+          <div class="swiper-slide">
210
+              <div style="width: 100%; height: 5rem;display: flex;justify-content: space-between;margin-top: 0.3rem;">
211
+                <div class="downloadOne">
212
+                    <img src="../../static/images/img/12.png" alt="">
213
+                    <span>PC工作台</span>
214
+                    <p>屏幕超大,录入方便</p>
215
+                    <img src="../../static/images/img/17.png" alt="">
216
+                </div>
217
+            </div>
218
+          </div>
219
+          <div class="swiper-slide">
220
+            <div style="width: 100%; height: 5rem;display: flex;justify-content: space-between;margin-top: 0.3rem;">
221
+                <div class="downloadOne">
222
+                    <img src="../../static/images/img/13.png" alt="">
223
+                    <span>手机APP</span>
224
+                    <p>即开即用,在哪都行</p>
225
+                    <img src="../../static/images/img/16.png" alt="">
226
+                </div>
227
+            </div>
228
+          </div>
229
+          <div class="swiper-slide">
230
+            <div style="width: 100%; height: 5rem;display: flex;justify-content: space-between;margin-top: 0.3rem;">
231
+                <div class="downloadOne">
232
+                    <img src="../../static/images/img/14.png" alt="">
233
+                    <span>平板APP</span>
234
+                    <p>大小合适,移动护理</p>
235
+                    <img src="../../static/images/img/19.png" alt="">
236
+                </div>
237
+            </div>
238
+          </div>
239
+          <div class="swiper-slide">
240
+            <div style="width: 100%; height: 5rem;display: flex;justify-content: space-between;margin-top: 0.3rem;">
241
+                <div class="downloadOne">
242
+                    <img src="../../static/images/img/15.png" alt="">
243
+                    <span>手机微信</span>
244
+                    <p>无需安装,关注即用</p>
245
+                    <img src="../../static/images/img/18.png" alt="">
246
+                </div>
247
+            </div>
248
+          </div>
249
+        </div>
250
+        <div class="swiper-pagination"></div>
251
+    </div>
252
+    
253
+    <div class="forBox">
254
+        <div class="forOne">
255
+            <img src="../../static/images/img/20.png" alt="">
256
+            <span>技术领先</span>
257
+            <p>专业团队倾力研发</p>
258
+        </div>
259
+        <div class="forOne">
260
+            <img src="../../static/images/img/21.png" alt="">
261
+            <span>系统稳定</span>
262
+            <p>7x24小时实时护航</p>
263
+        </div>
264
+        <div class="forOne">
265
+            <img src="../../static/images/img/22.png" alt="">
266
+            <span>服务专业</span>
267
+            <p>在线客服随时响应</p>
268
+        </div>
269
+        <div class="forOne">
270
+            <img src="../../static/images/img/23.png" alt="">
271
+            <span>口碑优质</span>
272
+            <p>知名机构信赖之选</p>
273
+        </div>
274
+    </div>
275
+    <div class="backgroundBlue">
276
+        <div class="blueTitle">
277
+            <p>热情用心做服务</p>
278
+            <p>工匠精神做产品</p>
279
+        </div>
280
+        <div class="productBox1">
281
+            <div class="product">
282
+                <img src="../../static/images/img/p1.png" alt="">
283
+                <p>透析中心</p>
284
+            </div>
285
+            <div class="product">
286
+                <img src="../../static/images/img/p2.png" alt="">
287
+                <p>肾病医院</p>
288
+            </div>
289
+            <div class="product">
290
+                <img src="../../static/images/img/p3.png" alt="">
291
+                <p>肾病内科</p>
292
+            </div>
293
+            <div class="product">
294
+                <img src="../../static/images/img/p4.png" alt="">
295
+                <p>医生集团</p>
296
+            </div>
297
+        </div>
298
+    </div>
299
+    <div class="position1">
300
+        <p class="sort">(*以下排名不分先后顺序)</p>
301
+        <div class="sponsorBox">
302
+            <div class="sponsorOne background">
303
+                <img src="../../static/images/img/iii1.png" alt="">
304
+                <p>费森尤斯</p>
305
+            </div>
306
+            <div class="sponsorOne">
307
+                <img src="../../static/images/img/i2.png" alt="">
308
+                <p>华润医疗</p>
309
+            </div>
310
+            <div class="sponsorOne">
311
+                <img src="../../static/images/img/i3.png" alt="">
312
+                <p>达康医疗</p>
313
+            </div>
314
+            <div class="sponsorOne background">
315
+                <img src="../../static/images/img/ii4.png" alt="">
316
+                <p>七喜医疗</p>
317
+            </div>
318
+            <div class="sponsorOne background">
319
+                <img src="../../static/images/img/ii5.png" alt="">
320
+                <p>同爱医疗</p>
321
+            </div>
322
+
323
+            <div class="sponsorOne">
324
+                <img src="../../static/images/img/i6.png" alt="">
325
+                <p>圣迪康透析连锁</p>
326
+            </div>
327
+            <div class="sponsorOne">
328
+                <img src="../../static/images/img/i7.png" alt="">
329
+                <p>百伦透析连锁</p>
330
+            </div>
331
+            <div class="sponsorOne background">
332
+                <img src="../../static/images/img/i8.png" alt="">
333
+                <p>乐生透析连锁</p>
334
+            </div>
335
+            <div class="sponsorOne background">
336
+                <img src="../../static/images/img/ii9.png" alt="">
337
+                <p>百荣连锁透析</p>
338
+            </div>
339
+            <div class="sponsorOne">
340
+                <img src="../../static/images/img/i10.png" alt="">
341
+                <p>小豆连锁透析</p>
342
+            </div>
343
+
344
+            <div class="sponsorOne">
345
+                <img src="../../static/images/img/i11.png" alt="">
346
+                <p>深圳华侨医院</p>
347
+            </div>
348
+            <div class="sponsorOne background">
349
+                <img src="../../static/images/img/i12.png" alt="">
350
+                <p>驻马店月亮湾医院</p>
351
+            </div>
352
+            <div class="sponsorOne background">
353
+                <img src="../../static/images/img/i13.png" alt="">
354
+                <p>湘潭捷雅肾病医院</p>
355
+            </div>
356
+            <div class="sponsorOne">
357
+                <img src="../../static/images/img/i14.png" alt="">
358
+                <p>张家口仁济医院</p>
359
+            </div>
360
+            <div class="sponsorOne">
361
+                <img src="../../static/images/img/i15.png" alt="">
362
+                <p>深圳龙岗二院</p>
363
+            </div>
364
+
365
+            <div class="sponsorOne background">
366
+                <img src="../../static/images/img/i16.png" alt="">
367
+                <p>襄阳博爱医院</p>
368
+            </div>
369
+            <div class="sponsorOne background">
370
+                <img src="../../static/images/img/ii17.png" alt="">
371
+                <p>深圳宝兴医院</p>
372
+            </div>
373
+            <div class="sponsorOne">
374
+                <img src="../../static/images/img/i18.png" alt="">
375
+                <p>湘潭爱心美医院</p>
376
+            </div>
377
+            <div class="sponsorOne">
378
+                <img src="../../static/images/img/i19.png" alt="">
379
+                <p>南昌广济医院</p>
380
+            </div>
381
+            <div class="sponsorOne background">
382
+                <img src="../../static/images/img/i20.png" alt="">
383
+                <p>唐山朝阳医院</p>
384
+            </div>
385
+        </div>
386
+    </div>
387
+    <div class="slogan">
388
+        <p>酷医</p>
389
+        <p>帮助透析中心从优秀到卓越</p>
390
+    </div>
391
+    <div class="footer">
392
+        <p>咨询热线:0755-86526342</p>
393
+        <p>服务邮箱:service@shengws.com</p>
394
+        <p>客服手机:18682078150</p>
395
+        <p>客服微信:kuyicloud</p>
396
+        <p>工作时间:上午9:00-12:00,下午13:30-18:00</p>
397
+        <p>公司地址:深圳市南山区南山智园A4栋09楼</p>
398
+        <span class="beian">© Copyright 2015-2020 深圳市健康互动科技有限公司<a href="http://www.beian.miit.gov.cn">粤ICP备15079323号-4</a></span>
399
+    </div>
400
+    <div class="useBox">
401
+        <div class="free" onclick="window.location.href='/mobile/regist';">免费使用</div>
157 402
     </div>
158 403
 
159 404
 </body>
160
-<script src="https://code.jquery.com/jquery-3.1.1.min.js"></script>
405
+<!-- <script src="https://code.jquery.com/jquery-3.1.1.min.js"></script> -->
406
+<script src="/static/js/jquery-1.11.0.min.js" type="text/javascript"></script>
407
+<script src="https://cdn.bootcdn.net/ajax/libs/Swiper/3.0.8/js/swiper.min.js"></script>
161 408
 <script type="text/javascript">
162 409
     $(function () {
163 410
         $(window).scroll(function () {
@@ -170,5 +417,42 @@
170 417
         })
171 418
     })
172 419
 </script>
420
+<script type="text/javascript">
421
+    (function(doc, win) {
422
+        var docEl = doc.documentElement,
423
+            resizeEvt = 'orientationchange' in window ? 'orientationchange' : 'resize',
424
+            recalc = function() {
425
+                var clientWidth = docEl.clientWidth;
426
+                if (!clientWidth) return;
427
+            // 设置设计稿的宽度clientWidth为750
428
+                if (clientWidth >= 750) {
429
+                    docEl.style.fontSize = '75px';
430
+                } else {
431
+                    // 设置设计稿的宽度clientWidth为750
432
+                    docEl.style.fontSize = 100 * (clientWidth / 375) + 'px';
433
+                };
434
+            };
435
+        if (!doc.addEventListener) return;
436
+        win.addEventListener(resizeEvt, recalc, false);
437
+        doc.addEventListener('DOMContentLoaded', recalc, false);
438
+    })(document, window);
439
+    $(".expand").click(function(){
440
+        $(".outerSlider").slideToggle();
441
+    });
442
+
443
+
444
+    // 
445
+    var mySwiper = new Swiper('.swiper-container', {
446
+        loop: true, // 循环模式选项
447
+        autoplay : 5000,
448
+        autoplayDisableOnInteraction : false,
449
+        pagination : '.swiper-pagination',
450
+    })
451
+
452
+
453
+ 
454
+</script>
455
+
456
+</html>
457
+
173 458
 
174
-</html>

+ 145 - 157
views/new_main/about.html Просмотреть файл

@@ -3,7 +3,7 @@
3 3
 
4 4
 <head>
5 5
     <meta name="keywords" content="酷医,酷医云,酷医聚客,病人关系管理,微信管理平台,肾病科宣,慢病管理云平台,SCRM,SPRM,血透管理,科室品牌推广">
6
-    <meta name="description" content="酷医云,是专为肾科和血透中心研发的免费血透管理平台,覆盖诊前、诊中、诊后全流程管理;为血透中心提供覆盖智能营销管理、血透管理、慢病管理、医患沟通、进销存管理以及商城管理等全流程一体化的管理平台。全国数百家血透中心信赖的选择。">
6
+    <meta name="description" content="酷医云,全国领先的透析中心数字化平台,满足患者管理、透析管理、质控管理、慢病管理、运营管理、经营管理等各种协作需求。在全国覆盖25个省份,拥有超千家透析中心用户,开始免费使用吧。">
7 7
     <meta charset="UTF-8">
8 8
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
9 9
     <meta http-equiv="X-UA-Compatible" content="ie=edge">
@@ -11,6 +11,7 @@
11 11
     <link rel="stylesheet" href="/static/css/style.css?v=5.0.0" media="screen">
12 12
     <link rel="stylesheet" href="/static/css/index.css?v=4.0.1" media="screen">
13 13
     <link rel="stylesheet" href="/static/css/suspension.css">
14
+    <link rel="stylesheet" href="/static/css/newAbout.css?v=4.0.1" media="screen">
14 15
     <link href="/static/css/bootstrap.min.css?v=4.0.0" rel="stylesheet">
15 16
     <link href="/static/css/font-awesome.min.css?v=4.0.0" rel="stylesheet" media="all">
16 17
     <link href="/static/css/animate.min.css?v=4.0.0" rel="stylesheet" media="all">
@@ -31,183 +32,164 @@
31 32
 </head>
32 33
 
33 34
 <body>
34
-    <div class="phptpl-header">
35
-        <div class="header-container">
36
-            <a class="logo" href="/"></a>
37
-
38
-            <nav class="navbar navbar-default navbar-mobile bootsnav on">
39
-                <div class="navbar-header">
40
-                    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-menu">
41
-                        <i class="fa fa-bars"></i>
42
-                    </button>
35
+    <div class="pageAbout">
36
+        <div class="header">
37
+            <div class="newNav">
38
+                <div style="display: flex;align-items: center;height: 100%;">
39
+                    <img class='logo' onclick="window.location.href='/';" src="../../static/images/img/logo2.png" alt="">
40
+                    <div class="navList">
41
+                        <a class="nav-link" href="/">首页</a>
42
+                        <!-- <a class="nav-link">产品与服务</a>
43
+                        <a class="nav-link">酷医商城</a> -->
44
+                        <a class="nav-link nav-link_active" href="/about">关于酷医</a>
45
+                    </div>
43 46
                 </div>
44
-                <div class="collapse navbar-collapse" id="navbar-menu">
45
-                    <ul class="nav navbar-nav" data-in="fadeInDown" data-out="fadeOutUp">
46
-                        <li>
47
-                            <a href="/">首页</a>
48
-                        </li>
49
-                        <li>
50
-                            <a href="/xt">血透管理</a>
51
-                        </li>
52
-                        <li>
53
-                            <a href="/cdm">慢病管理</a>
54
-                        </li>
55
-                        <li>
56
-                            <a href="/scrm">SCRM</a>
57
-                        </li>
58
-                        <li>
59
-                            <a href="/mmall">微商城</a>
60
-                        </li>
61
-                        <li>
62
-                            <a href="/help">帮助中心</a>
63
-                        </li>
64
-                        <li>
65
-                            <a href="/about">关于我们</a>
66
-                        </li>
67
-                        <!-- <li class="dropdown">
68
-                            <a href="#" class="dropdown-toggle" data-toggle="dropdown">服务</a>
69
-                            <ul class="dropdown-menu animated fadeOutUp" style="display: none; opacity: 1;">
70
-                                <li><a href="http://sso.kuyicloud.com/scrm">SCRM</a></li>
71
-                                <li><a href="http://sso.kuyicloud.com/mmall">微商城</a></li>
72
-                                <li><a href="http://sso.kuyicloud.com/xt">血透管理</a></li>
73
-                                <li><a href="http://sso.kuyicloud.com/cdm">慢病管理</a></li>
74
-                            </ul>
75
-                        </li> -->
76
-                    </ul>
47
+                <div>
48
+                    <a class="loginBtn" href="http://sso.kuyicloud.com/login">登录</a>
49
+                    <a class="freeUse" href="http://sso.kuyicloud.com/register">免费使用</a>
77 50
                 </div>
78
-            </nav>
79
-
80
-            <ul class="nav-list">
81
-                <li class="last login_common_">
82
-                    <a class="btn-login" href="http://sso.kuyicloud.com/login">登录</a>
83
-                </li>
84
-                <li class="last register_common_">
85
-                    <a id="yz_register_" class="btn-register_" href="http://sso.kuyicloud.com/register">注册</a>
86
-                </li>
87
-            </ul>
51
+            </div>
88 52
         </div>
89
-    </div>
53
+        <div class="aboutBanner">
54
+            <div class="bannerTitle">酷医,透析生态互联网平台</div>
55
+            <p class="bannerTips" style="font-size:20px;">作为国内首个血液透析数字化服务商,酷医致力于用数字化赋能肾病患者、透析中心、透析厂商,践行“平台+生态”战略</p>
56
+            <p class="bannerTips" style="font-size:20px;">为中国“数字医疗”的落地提供强有力的支撑,并提升患者生命品质,成为一家有社会责任感的企业</p>
90 57
 
91
-    <!-- scrm -->
92
-    <div class="intro-main">
93
-        <div class="head-block about-bg">
94
-            <h1>关于酷医云</h1>
95
-            <p> ABOUT KUYICLOUD </p>
96
-        </div>
97
-        <div class="introduce-box">
98
-            <h2 class="name">酷医云是一家正在改变血透行业的科技公司</h2>
99
-            <p>我们致力于用技术赋能血透产业,打造值得信赖的血透医疗互联网平台,推动血透产业升级。</p>
100
-            <p>酷医云,是专为肾科和血透中心研发的免费血透管理平台,覆盖诊前、诊中、诊后全流程管理;为血透中心提供覆盖智能营销管理、血透管理、慢病管理、医患沟通、进销存管理以及商城管理等全流程一体化的管理平台。</p>
101
-            <p>平台目前有血液透析管理、患者关系管理、慢病管理系统、线上商城系统几大业务,我们致力于用一个平台实现院内院外全方位管理。</p>
102
-             <p>在酷医云,我们既着眼于现实,用产品和服务帮助每一所血透机构实现互联网医疗+的改革方案;也放眼于未来,通过数据挖掘、人工智能为血透医疗机构带来真正更深远的价值。</p>
58
+            <div class="tabs">
59
+                <div style="display: flex;align-items: center;height: 100%;width:320px;margin: 0 auto;">
60
+                    <div tabid="1" class="tabOne tabActive">关于我们</div>
61
+                    <div tabid="2" class="tabOne">联系我们</div>
62
+                </div>
63
+            </div>
103 64
         </div>
65
+        <div class="aboutMain">
66
+            <div class="tab-item show">
67
+                <p class="aboutTitle">关于我们</p>
68
+                <p>酷医,专注于血液透析行业互联网生态平台建设,以数字化服务为核心,致力于用移动互联网和数字技术链接1.2亿肾病患者、数百万透析患者、数万家透析中心、数千家厂商,为透析产业的患者、透析中心、医疗机构、厂商/服务商、公益组织实现信息共享、达成快捷交易、提高管理效率、提升服务水平、聚合资源、降低成本。</p>   
104 69
 
105
-    </div>
106
-    <!-- scrm end-->
70
+                <p>酷医旗下酷医云,是国内领先的透析中心管理SaaS应用软件及增值服务供应商,是国内首个完全免费的智能透析管理平台,5年透析中心服务经验,为透析中心提供覆盖透析管理、慢病管理、营销管理、零售商城、医护培训、供应链等透析中心全流程SaaS软件和服务解决方案,全国超千家透析中心信赖的选择。</p>
107 71
 
108
-    <!-- <div class="promote mb">
109
-        <p>帮助肾科/透析中心建立患者院内院外一体化的服务模式</p><a href="http://sso.kuyicloud.com/register">立即注册</a>    
110
-    </div> -->
111
-    <div class="copyright">
112
-        <div class="copyright-box">
113
-            <div class="copyright-right">
114
-                <dl>
115
-                    <dt>
116
-                        <img src="/static/images/wei-1.png" alt="">
117
-                    </dt>
118
-                    <dd>平板扫码下载应用</dd>
119
-                </dl>
120
-                <dl>
121
-                    <dt>
122
-                        <img src="/static/images/wei-2.png?v=3.0.0" alt="">
123
-                    </dt>
124
-                    <dd>手机微信扫码关注</dd>
125
-                </dl>
72
+                <p>我们既着眼于当下,用产品和服务帮助行业的上下游实现互联网+医疗的转型之路;也放眼于未来,通过云技术、数据挖掘和人工智能为透析行业带来创新的数字产品。</p>
73
+                <div class="photoBox">
74
+                    <div class="photo">
75
+                        <img src="../../static/images/img/29.png" alt="">
76
+                        <p style="font-size:24px;font-weight:bold;color: #333;">愿景</p>
77
+                        <p style="font-size: 16px;color: #666666;">持续帮助肾友提升生命品质</p>
78
+                    </div>
79
+                    <div class="photo">
80
+                        <img src="../../static/images/img/30.png" alt="">
81
+                        <p style="font-size:24px;font-weight:bold;color: #333;">使命</p>
82
+                        <p style="font-size: 16px;color: #666666;">创造好的诊疗环境为肾友有尊严的生命体验服务</p>
83
+                    </div>
84
+                    <div class="photo">
85
+                        <img src="../../static/images/img/31.png" alt="">
86
+                        <p style="font-size:24px;font-weight:bold;color: #333;">价值观</p>
87
+                        <p style="font-size: 16px;color: #666666;">客户第一、团队协作、创新、敬业、诚信</p>
88
+                    </div>
89
+                </div>
126 90
             </div>
127
-            <div class="copyright-left">
128
-                <h3>深圳市健康互动科技有限公司</h3>
129
-                <ul>
130
-                    <li>咨询热线:0755-86526342</li>
131
-                    <li>服务邮箱:service@shengws.com</li>
132
-                    <li>工作时间:上午9:00-12:00,下午13:30-18:00</li>
133
-                    <li>公司地址:深圳市南山区学苑大道1001号南山智园A4栋9楼918</li>
134
-                </ul>
91
+            <div class="tab-item">
92
+                <div class="contactUs">
93
+                    <div class="contactLeft">
94
+                        <div style="margin-bottom: 2vw;">
95
+                            <p style="margin: 0;">咨询热线:0755-86526342</p>
96
+                            <p style="margin: 0;">服务邮箱:service@shengws.com</p>
97
+                        </div>
98
+                        <div style="margin-bottom: 2vw;">
99
+                            <p style="margin: 0;">客服手机:18682078150</p>
100
+                            <p style="margin: 0;">客服微信:kuyicloud</p>
101
+                        </div>
102
+                        <div>
103
+                            <p style="margin: 0;">工作时间:上午9:00-12:00</p>
104
+                            <p style="margin: 0;"><span style="visibility: hidden;">工作时间:</span>下午13:30-18:00</p>
105
+                            <p style="margin: 0;">公司地址:深圳市南山区南山智园A4栋09楼</p>
106
+                        </div>
107
+                    </div>
108
+                    <div class="contactRight">
109
+                        <div class="rightOne">
110
+                            <img src="../../static/images/img/img13.png" alt="">
111
+                            <p>扫描下载酷医云APP</p>
112
+                        </div>
113
+                        <div class="rightOne">
114
+                            <img src="../../static/images/img/img13.png" alt="">
115
+                            <p>关注酷医云公众号</p>
116
+                        </div>
117
+                    </div>
118
+                </div>
119
+                <div class="map">
120
+                    <img src="../../static/images/img/map.png" alt="">
121
+                </div>
135 122
             </div>
136
-            <div class="copyright-text">
137
-                <p>© 2016-2019 kuyicloud.com 酷医云 版权所有 <a href="http://www.beian.miit.gov.cn">粤ICP备15079323号-4</a></p>
123
+        </div>
124
+        <div class="slogan">
125
+            <p>酷医,帮助透析中心从优秀到卓越</p>
126
+        </div>
127
+        <div class="footer">
128
+            <div class="footerBox">
129
+                <p class="point" style="visibility: hidden;">友情链接:</p>
130
+                <div class="contactBox">
131
+                    <div>
132
+                        <p>咨询热线:0755-86526342</p>
133
+                        <p>服务邮箱:service@shengws.com</p>
134
+                    </div>
135
+                    <div>
136
+                        <p>客服手机:18682078150</p>
137
+                        <p>客服微信:kuyicloud</p>
138
+                    </div>
139
+                    <div>
140
+                        <p>工作时间:上午9:00-12:00,下午13:30-18:00</p>
141
+                        <p>公司地址:深圳市南山区南山智园A4栋09楼</p>
142
+                    </div>
143
+                </div>
144
+                <p class="copyRight">© Copyright 2015-2020 深圳市健康互动科技有限公司 <a href="http://www.beian.miit.gov.cn">粤ICP备15079323号-4</a></p>
138 145
             </div>
139 146
         </div>
140
-    </div>
141 147
 
142
-    <!-- 右侧悬浮菜单开始 -->
143
-    <div class="suspension">
144
-        <div class="suspension-box">
145
-            <a href="#" class="a a-service ">
146
-                <i class="i"></i>
147
-            </a>
148
-            <a href="javascript:;" class="a a-service-phone ">
149
-                <i class="i"></i>
150
-            </a>
151
-            <a href="javascript:;" class="a a-qrcode">
152
-                <i class="i"></i>
153
-            </a>
154
-            <a href="javascript:;" class="a a-top">
155
-                <i class="i"></i>
156
-            </a>
157
-            <!-- <div class="d d-service" style="display:none;">
158
-                <i class="arrow"></i>
159
-                <div class="inner-box">
160
-                    <div class="d-service-item clearfix">
161
-                        <a href="#" class="clearfix">
162
-                            <h3>咨询在线客服</h3>
163
-                        </a>
148
+        <div class="suspension">
149
+            <div class="suspension-box">
150
+                <img class="a a-service " src="../../static/images/img/33.png" alt="">
151
+                <img class="a a-service-phone" src="../../static/images/img/34.png" alt="">
152
+                <img class="a a-qrcode" src="../../static/images/img/32.png" alt="">
153
+                <!-- <a href="#" class="a a-service "><i class="i"></i></a>
154
+                <a href="javascript:;" class="a a-service-phone "><i class="i"></i></a>
155
+                <a href="javascript:;" class="a a-qrcode"><i class="i"></i></a>
156
+                <a href="javascript:;" class="a a-top"><i class="i"></i></a> -->
157
+                <div class="d d-service" style="display:none;">
158
+                    <i class="arrow"></i>
159
+                    <div class="inner-box">
160
+                        <div class="d-service-item clearfix">
161
+                            <a href="http://p.qiao.baidu.com/cps/chat?siteId=13548640&userId=28119034&siteToken=7577c975fa7ae685efd61deb009d1b5b" class="clearfix">
162
+                                <h3>咨询在线客服</h3>
163
+                            </a>
164
+                        </div>
164 165
                     </div>
165 166
                 </div>
166
-            </div> -->
167
-            <div class="d d-service-phone">
168
-                <i class="arrow"></i>
169
-                <div class="inner-box" style="width:200px;">
170
-                    <div class="d-service-item clearfix">
171
-                        <span class="circle">
172
-                            <i class="i-tel"></i>
173
-                        </span>
174
-                        <div class="text">
175
-                            <p>服务热线</p>
176
-                            <p class=" number">0755-86526342</p>
167
+                <div class="d d-service-phone">
168
+                    <i class="arrow"></i>
169
+                    <div class="inner-box" style="width:200px;">
170
+                        <div class="d-service-item clearfix">
171
+                            <span class="circle"><i class="i-tel"></i></span>
172
+                            <div class="text">
173
+                                <p>服务热线</p>
174
+                                <p class=" number">0755-86526342</p>
175
+                            </div>
177 176
                         </div>
178 177
                     </div>
179 178
                 </div>
180
-            </div>
181
-            <div class="d d-qrcode">
182
-                <i class="arrow"></i>
183
-                <div class="inner-box">
184
-                    <div class="qrcode-img">
185
-                        <img src="/static/images/side_ewm.png" alt="">
179
+                <div class="d d-qrcode">
180
+                    <i class="arrow"></i>
181
+                    <div class="inner-box">
182
+                        <div class="qrcode-img"><img src="/static/images/side_ewm.png" alt=""></div>
183
+                        <p>微信服务号</p>
186 184
                     </div>
187
-                    <p>微信服务号</p>
188
-                </div>
189
-                <div class="inner-box">
190
-                    <div class="qrcode-img">
191
-                        <img src="/static/images/kefu.jpg" alt="">
192
-                        <p>微信客服号</p>
185
+                    <div class="inner-box">
186
+                        <div class="qrcode-img"><img src="/static/images/img/kefu.jpg" alt="">
187
+                        <p>微信客服号</p>					
193 188
                     </div>
194 189
                 </div>
195 190
             </div>
196 191
         </div>
197
-        <!-- 右侧悬浮菜单结束 -->
198
-        <!-- 底部悬浮内容 -->
199
-        <div class="wraper-1vdHN1Z2BV" id="wraper-1vdHN1Z2BV">
200
-            <div>
201
-                <div class="logo-pic">
202
-                    <img src="/static/images/fulogo.png" alt="">
203
-                </div>
204
-                <a href="http://sso.kuyicloud.com/register" class="btn-1hyk61Z2BV">
205
-                    <button type="button" class="ivu-btn ivu-btn-primary">
206
-                        <span>免费使用</span>
207
-                    </button>
208
-                </a>
209
-            </div>
210
-        </div>
192
+    </div>
211 193
 
212 194
         <script src="/static/js/jquery-1.11.0.min.js" type="text/javascript"></script>
213 195
         <script src="/static/js/bootstrap.min.js"></script>
@@ -217,7 +199,13 @@
217 199
         <script src="/static/js/suspension.js"></script>
218 200
         <script type="text/javascript">
219 201
             $('#bootstrap-touch-slider').bsTouchSlider();
202
+            $(".tabOne").click(function(){
203
+                var i = $(this).index();
204
+                $(this).addClass('tabActive').siblings().removeClass('tabActive');
205
+                $('.aboutMain .tab-item').eq(i).addClass('show').siblings().removeClass('show');
206
+            })
220 207
         </script>
221 208
 </body>
222 209
 
223
-</html>
210
+</html>
211
+

+ 452 - 303
views/new_main/index.html Просмотреть файл

@@ -2,15 +2,18 @@
2 2
 <html lang="zh">
3 3
 
4 4
 <head>
5
-    <meta name="keywords" content="酷医,酷医云,酷医聚客,病人关系管理,微信管理平台,肾病科宣,慢病管理云平台,SCRM,SPRM,血透管理,科室品牌推广">
6
-    <meta name="description" content="酷医云,是专为肾科和血透中心研发的免费血透管理平台,覆盖诊前、诊中、诊后全流程管理;为血透中心提供覆盖智能营销管理、血透管理、慢病管理、医患沟通、进销存管理以及商城管理等全流程一体化的管理平台。全国数百家血透中心信赖的选择。">
5
+    <meta name="keywords" content="酷医,酷医云,数字化,血透软件,血透管理系统,血液透析系统,血液净化系统,肾内科信息化软件,血透,透析,血液透析,透析中心,透析耗材,智能透析,慢病管理,营销管理,医护培训,SCRM,信息化管理软件">
6
+    <meta name="description" content="酷医云,全国领先的透析中心数字化平台,满足患者管理、透析管理、质控管理、慢病管理、运营管理、经营管理等各种协作需求。在全国覆盖25个省份,拥有超千家透析中心用户,开始免费使用吧。">
7 7
     <meta charset="UTF-8">
8 8
     <meta name="viewport" content="width=device-width, initial-scale=1.0">
9 9
     <meta http-equiv="X-UA-Compatible" content="ie=edge">
10
-    <title>酷医云-肾科管理软件-血透管理软件</title>
10
+    <title>酷医云-透析中心数字化平台</title>
11 11
     <link rel="stylesheet" href="/static/css/style.css?v=5.0.0" media="screen">
12 12
     <link rel="stylesheet" href="/static/css/index.css?v=4.0.3" media="screen">
13
+    
13 14
     <link rel="stylesheet" href="/static/css/suspension.css" >
15
+    <link rel="stylesheet" href="/static/css/newIndex.css?v=4.0.3" media="screen">
16
+
14 17
     <link href="/static/css/bootstrap.min.css?v=4.0.0" rel="stylesheet">
15 18
     <link href="/static/css/font-awesome.min.css?v=4.0.0" rel="stylesheet" media="all">
16 19
     <link href="/static/css/animate.min.css?v=4.0.0" rel="stylesheet" media="all">
@@ -18,6 +21,7 @@
18 21
     <link href="/static/css/bootstrap-touch-slider.css?v=4.0.0" rel="stylesheet" media="all">
19 22
     <link href="/static/css/bootsnav.css?v=4.0.0" rel="stylesheet" media="all">
20 23
     <link href="/static/css/zzsc-demo.css?v=4.0.0" rel="stylesheet" media="all">
24
+    
21 25
     <!-- 百度统计 -->
22 26
     <script>
23 27
         var _hmt = _hmt || [];
@@ -32,338 +36,438 @@
32 36
 </head>
33 37
 
34 38
 <body>
35
-    <div class="phptpl-header">
36
-        <div class="header-container">
37
-            <a class="logo" href="/"></a>
38
-            <nav class="navbar navbar-default navbar-mobile bootsnav on">
39
-                <div class="navbar-header">
40
-                    <button type="button" class="navbar-toggle" data-toggle="collapse" data-target="#navbar-menu">
41
-                        <i class="fa fa-bars"></i>
42
-                    </button>
39
+    <div class="pageIndex">
40
+        <div class="header">
41
+            <div class="newNav">
42
+                <div style="display: flex;align-items: center;height: 100%;">
43
+                    <img class='logo' onclick="window.location.href='/';" src="../../static/images/img/logo2.png" alt="">
44
+                    <div class="navList">
45
+                        <a class="nav-link nav-link_active">首页</a>
46
+                        <!-- <a class="nav-link">产品与服务</a>
47
+                        <a class="nav-link">酷医商城</a> -->
48
+                        <a class="nav-link" href="/about">关于酷医</a>
49
+                    </div>
43 50
                 </div>
44
-                <div class="collapse navbar-collapse" id="navbar-menu">
45
-                    <ul class="nav navbar-nav" data-in="fadeInDown" data-out="fadeOutUp">
46
-                        <li class="active"><a href="/">首页</a></li>                        
47
-                        <li><a href="/xt">血透管理</a></li>
48
-                        <li><a href="/cdm">慢病管理</a></li>
49
-                        <li><a href="/scrm">SCRM</a></li>
50
-                        <li><a href="/mmall">微商城</a></li>
51
-                        <li>
52
-                            <a href="/help">帮助中心</a>
53
-                        </li>
54
-                        <li><a href="/about">关于我们</a></li>
55
-                       
56
-                    </ul>
51
+                <div>
52
+                    <a class="loginBtn" href="http://sso.kuyicloud.com/login">登录</a>
53
+                    <a class="freeUse" href="http://sso.kuyicloud.com/register">免费使用</a>
57 54
                 </div>
58
-            </nav>
59
-
60
-            <ul class="nav-list">
61
-                <li class="last login_common_"><a class="btn-login"
62
-                        href="http://sso.kuyicloud.com/login">登录</a></li>
63
-                <li class="last register_common_"><a id="yz_register_" class="btn-register_"
64
-                        href="http://sso.kuyicloud.com/register">注册</a></li>
65
-            </ul>
55
+            </div>
66 56
         </div>
67
-    </div>
68
-
69
-    <!-- banner -->
70
-    <div id="bootstrap-touch-slider" class="carousel bs-slider fade  control-round indicators-line" data-ride="carousel" data-pause="hover" data-interval="5000" >
71
-
72
-			<!-- Indicators -->
73
-			<ol class="carousel-indicators">
74
-				<li data-target="#bootstrap-touch-slider" data-slide-to="0" class="active"></li>
75
-				<li data-target="#bootstrap-touch-slider" data-slide-to="1"></li>
76
-			</ol>
77
-
78
-			<!-- Wrapper For Slides -->
79
-			<div class="carousel-inner" role="listbox">
80
-				<!-- Second Slide -->
81
-				<div class="item active">
82
-
83
-					<!-- Slide Background -->
84
-					<img src="/static/images/slide1.png" alt="Bootstrap Touch Slider"  class="slide-image"/>
85
-					<div class="bs-slider-overlay"></div>
86
-					<!-- Slide Text Layer -->
87
-					<div class="slide-text slide_style_center">
88
-						<h1 data-animation="animated flipInX">构建智慧肾科/透析中心</h1>
89
-						<p data-animation="animated fadeInDown">或致电0755-86526342</p>
90
-						<a href="http://sso.kuyicloud.com/register" class="btn btn-primary"  data-animation="animated lightSpeedIn">免费使用</a>
91
-					</div>
92
-				</div>
93
-				<!-- End of Slide -->
94
-
95
-				<!-- Third Slide -->
96
-				<div class="item">
97
-
98
-					<!-- Slide Background -->
99
-					<img src="/static/images/slide2.jpg" alt="Bootstrap Touch Slider"  class="slide-image"/>
100
-					<div class="bs-slider-overlay"></div>
101
-					<!-- Slide Text Layer -->
102
-					<div class="slide-text slide_style_center">
103
-						<h1 data-animation="animated zoomInLeft">一个软件实现院内院外全方位管理</h1>
104
-						<p data-animation="animated fadeInRight">或致电0755-86526342</p>
105
-						<a href="http://sso.kuyicloud.com/register" class="btn btn-primary" data-animation="animated fadeInRight">免费使用</a>
106
-					</div>
107
-				</div>
108
-				<!-- End of Slide -->
109
-			</div><!-- End of Wrapper For Slides -->
110
-			<!-- Left Control -->
111
-			<a class="left carousel-control" href="#bootstrap-touch-slider" role="button" data-slide="prev">
112
-				<span class="fa fa-angle-left" aria-hidden="true"></span>
113
-				<span class="sr-only">Previous</span>
114
-			</a>
115
-			<!-- Right Control -->
116
-			<a class="right carousel-control" href="#bootstrap-touch-slider" role="button" data-slide="next">
117
-				<span class="fa fa-angle-right" aria-hidden="true"></span>
118
-				<span class="sr-only">Next</span>
119
-			</a>
120
-    </div> 
121
-    <!-- banner end -->
122
-    <div class="main-container" style="height: 620px" yz_ctn_module="retail">
123
-        <div class="wrapper wcard-container">
124
-            <h3><span style="color:#409eff;">血透管理</span> 规范机构的血透流程 提升患者透析质量</h3>
125
-            <div class="wcard-content ">
126
-                <div class="wcard-left">
127
-                    <div class="wcard-section">
128
-                        <p class="wcard-sectitle">基于血透临床标准应用流程研发,规范可控</p>
129
-                    </div>
130
-                    <div class="wcard-section">
131
-                        <p class="wcard-sectitle">平板操作,随时随地记录和监测患者病情</p>
132
-                    </div>
133
-                    <div class="wcard-section">
134
-                        <p class="wcard-sectitle">和圣卫士打通,实现医患互动、透析数据共享</p>
135
-                    </div>
136
-                    <div class="wcard-section">
137
-                        <p class="wcard-sectitle">多维度数据分析管理,轻松掌握和提升透析质量</p>
138
-                    </div>
139
-                    <div class="wcard-section"><a href="http://sso.kuyicloud.com/register"
140
-                            class="button blue" style="margin-right: 15px">免费使用</a> <a href="/xt"
141
-                            class="button blue-outline" style="margin-left: 15px">功能介绍</a></div>
57
+        <div class="banner">
58
+            <!-- <div class="bannerBox">
59
+                <img class="bannerImg" src="../../static/images/img/banner.png" alt="">
60
+            </div> -->
61
+            <div class="bannerMain">
62
+                <div class="bannerTip">数字化,让透析中心降本增效</div>
63
+                <div class="bannerTxt">
64
+                    <p>每个透析中心,都需要酷医的产品与服务,无论是透析管理、品牌建设、耗材采购、</p>
65
+                    <p>医护培训或者经营管理,我们非常乐意帮助您打造卓越的透析服务</p>
142 66
                 </div>
143
-                <div class="wcard-right">
144
-                    <img src="/static/images/index_1.jpg" alt="" />
67
+                <div class="digital">
68
+                    <div style="margin:0 auto;display: flex;width: 66vw;justify-content: space-between;">
69
+                        <div class="digital-one">
70
+                            <img class="digitalImg" src="../../static/images/img/p5.png" alt="">
71
+                            <div style="margin-bottom: 26px;">
72
+                                <p style="font-size: 20px;color:#333;font-weight: bold;">超千家</p>
73
+                                <p style="font-size: 16px;color:#666;">透析中心覆盖</p>
74
+                            </div>
75
+                        </div>
76
+                        <div class="digital-two">
77
+                            <img class="digitalImg" src="../../static/images/img/p6.png" alt="">
78
+                            <div style="margin-bottom: 26px;">
79
+                                <p style="font-size: 20px;color:#333;font-weight: bold;">数千位</p>
80
+                                <p style="font-size: 16px;color:#666;">透析医护覆盖</p>
81
+                            </div>
82
+                        </div>
83
+                        <div class="digital-one">
84
+                            <img class="digitalImg" src="../../static/images/img/p7.png" alt="">
85
+                            <div style="margin-bottom: 26px;">
86
+                                <p style="font-size: 20px;color:#333;font-weight: bold;">千万次透析/年</p>
87
+                                <p style="font-size: 16px;color:#666;">酷医大数据</p>
88
+                            </div>
89
+                        </div>
90
+                        <div class="digital-two">
91
+                            <img class="digitalImg" src="../../static/images/img/p8.png" alt="">
92
+                            <div style="margin-bottom: 26px;">
93
+                                <p style="font-size: 20px;color:#333;font-weight: bold;">25个省市区</p>
94
+                                <p style="font-size: 16px;color:#666;">酷医SaaS覆盖</p>
95
+                            </div>
96
+                        </div>
97
+                    </div>
145 98
                 </div>
146 99
             </div>
147 100
         </div>
148
-    </div>
149
-
150
-    <div class="main-container" style="height: 620px" yz_ctn_module="retail">
151
-        <div class="wrapper wcard-container">
152
-            <h3><span style="color:#409eff;">慢病管理</span> 提升机构的临床科研 控制患者病情进展</h3>
153
-            <div class="wcard-content wcard-reverse">
154
-                <div class="wcard-left">
155
-                    <div class="wcard-section">
156
-                        <p class="wcard-sectitle">24小时实时动态采集监测数据</p>
157
-                    </div>
158
-                    <div class="wcard-section">
159
-                        <p class="wcard-sectitle">监测指标发现异常,智能提醒医生和患者</p>
160
-                    </div>
161
-                    <div class="wcard-section">
162
-                        <p class="wcard-sectitle">多维度大数据分析,助力医生优化治疗方案</p>
163
-                    </div>
164
-                    <div class="wcard-section">
165
-                        <p class="wcard-sectitle">一键连接患者,快速干预患者行为</p>
166
-                    </div>
167
-                    <div class="wcard-section"><a href="http://sso.kuyicloud.com/register"
168
-                            class="button blue" style="margin-right: 15px">免费使用</a> <a href="/cdm"
169
-                            class="button blue-outline" style="margin-left: 15px">功能介绍</a></div>
170
-                </div>
171
-                <div class="wcard-right">
172
-                    <img src="/static/images/index_2.jpg" alt="" />
101
+        <div class="introduce">
102
+            <p class="introduceTitle">透析中心一站式服务平台</p>
103
+            <div class="introduceBox">
104
+                <div class="introduceMain">
105
+                    <div class="introduceOne">
106
+                        <img class="introduceImg" src="../../static/images/img/img5.png" alt="">
107
+                        <div>
108
+                            <p style="font-size: 18px;">透析中心</p>
109
+                            <p style="font-size: 24px;">数字化服务 </p>
110
+                        </div>
111
+                    </div>
112
+                    <div class="introduceOne">
113
+                        <img class="introduceImg" src="../../static/images/img/img6.png" alt="">
114
+                        <div>
115
+                            <p style="font-size: 18px;">透析中心</p>
116
+                            <p style="font-size: 24px;">供应链服务</p>
117
+                        </div>
118
+                    </div>
119
+                    <div class="introduceOne" style="margin-right: 0;">
120
+                        <img class="introduceImg" src="../../static/images/img/img7.png" alt="">
121
+                        <div>
122
+                            <p style="font-size: 18px;">透析中心</p>
123
+                            <p style="font-size: 24px;">增值服务</p>
124
+                        </div>
125
+                    </div>
173 126
                 </div>
174 127
             </div>
175 128
         </div>
176
-    </div>
177
-
178
-    <div class="main-container" style="height: 620px" yz_ctn_module="retail">
179
-        <div class="wrapper wcard-container">
180
-            <h3><span style="color:#409eff;">SCRM</span> 帮助机构获得患者流量 拉近机构和患者距离</h3>
181
-            <div class="wcard-content ">
182
-                <div class="wcard-left">
183
-                    <div class="wcard-section">
184
-                        <p class="wcard-sectitle">建立机构独一无二的品牌展示</p>
185
-                    </div>
186
-                    <div class="wcard-section">
187
-                        <p class="wcard-sectitle">向精准用户快速裂变传播信息</p>
188
-                    </div>
189
-                    <div class="wcard-section">
190
-                        <p class="wcard-sectitle">多渠道患者来源建立会员用户池</p>
191
-                    </div>
192
-                    <div class="wcard-section">
193
-                        <p class="wcard-sectitle">多维度数据分析提升客户转化率</p>
194
-                    </div>
195
-                    <div class="wcard-section"><a href="http://sso.kuyicloud.com/register"
196
-                            class="button blue" style="margin-right: 15px">免费使用</a> <a
197
-                            href="/scrm" class="button blue-outline"
198
-                            style="margin-left: 15px">功能介绍</a></div>
129
+        <div class="main">
130
+            <div class="programme">
131
+                <p class="programmeTitle">新透析·透析中心的互联网解决方案</p>
132
+                <div style="display: flex;">
133
+                    <div>
134
+                        <img class="mainImg" src="../../static/images/img/8.png" alt="">
135
+                    </div>
136
+                    <div id="showDiv1" class="programmeDescribe animated" style="margin-left: 4vw;">
137
+                        <div style="margin-bottom: 2vw;">
138
+                            <p class="describeTip1">轻松患者引流</p>
139
+                            <p class="describeTip2">拓宽线上线下渠道,建设品牌,轻松解决患者流量难题</p>
140
+                        </div>
141
+                        <div style="margin-bottom: 2vw;">
142
+                            <p class="describeTip1">高效透析管理</p>
143
+                            <p class="describeTip2">智能病历、排班、签到、透析记录,快速提升工作效率</p>
144
+                        </div>
145
+                        <div style="margin-bottom: 2vw;">
146
+                            <p class="describeTip1">随时随地工作</p>
147
+                            <p class="describeTip2">手机、平板、电脑多终端使用,医生随时开医嘱远程看病情</p>
148
+                        </div>
149
+                        <div style="margin-bottom: 2vw;">
150
+                            <p class="describeTip1">透析质量可控</p>
151
+                            <p class="describeTip2">患者病历、医嘱、记录、检验、院外数据汇总分析,质控有保障</p>
152
+                        </div>
153
+                        <a class="free" href="http://sso.kuyicloud.com/register">免费使用</a>
154
+                    </div>
199 155
                 </div>
200
-                <div class="wcard-right">
201
-                    <img src="/static/images/index_3.jpg" alt="">
156
+            </div>
157
+            <div class="programme" style="background: #F8FBFF;">
158
+                <p class="programmeTitle">透析管理·让您一小时实现无纸化透析服务</p>
159
+                <div style="display: flex;">
160
+                    <div id='showDiv2' class="programmeDescribe animated" style="padding-left: 60px;">
161
+                        <div style="margin-bottom: 2vw;">
162
+                            <p class="describeTip1">透析过程记录</p>
163
+                            <p class="describeTip2">手机、平板、电脑轻松完成医嘱和透析记录,永久保存</p>
164
+                        </div>
165
+                        <div style="margin-bottom: 2vw;">
166
+                            <p class="describeTip1">智能数据采集</p>
167
+                            <p class="describeTip2">智能采集透析称/血压计/透析机等数据,提升效率减少错误</p>
168
+                        </div>
169
+                        <div style="margin-bottom: 2vw;">
170
+                            <p class="describeTip1">便捷管理工具</p>
171
+                            <p class="describeTip2">库存、院感和设备的统一管理,智能预警,管理看得见</p>
172
+                        </div>
173
+                        <div style="margin-bottom: 2vw;">
174
+                            <p class="describeTip1">精准数据分析</p>
175
+                            <p class="describeTip2">随时掌控患者透析质量,多维分析经营状态</p>
176
+                        </div>
177
+                        <a class="free" href="http://sso.kuyicloud.com/register">免费使用</a>
178
+                    </div>
179
+                    <div>
180
+                        <img style="margin-right: 2vw;" class="mainImg" src="../../static/images/img/img30.png" alt="">
181
+                    </div>
202 182
                 </div>
203 183
             </div>
204
-        </div>
205
-    </div>
206
-
207
-    <div class="main-container" style="height: 690px" yz_ctn_module="wsc" onclick="">
208
-        <div class="wrapper wcard-container">
209
-            <h3><span style="color:#409eff;">微商城</span> 帮助机构提升整体营收 为商家输出更多的商业价值</h3>
210
-            <div class="wcard-content wcard-reverse">
211
-                <div class="wcard-left ">
212
-                    <div class="wcard-section">
213
-                        <p class="wcard-sectitle">实时数据监控,订单、物流、成交金额等实时数据</p>
214
-                    </div>
215
-                    <div class="wcard-section">
216
-                        <p class="wcard-sectitle">下单客户自动进入机构患者用户库</p>
217
-                    </div>
218
-                    <div class="wcard-section">
219
-                        <p class="wcard-sectitle">支持从酷医云分销产品,零成本赚钱</p>
220
-                    </div>
221
-                    <div class="wcard-section">
222
-                        <p class="wcard-sectitle">帮助机构快速卖货,解决销售渠道问题</p>
223
-                    </div>
224
-                    <div class="wcard-section"><a href="http://sso.kuyicloud.com/register" class="button blue"
225
-                            style="margin-right: 15px">免费使用</a> <a href="/mmall"
226
-                            class="button blue-outline" style="margin-left: 15px">功能介绍</a></div>
184
+            <div class="programme">
185
+                <p class="programmeTitle">品牌经营·让您一分钟实现自己的移动门户</p>
186
+                <div style="display: flex;">
187
+                    <div>
188
+                        <img class="mainImg" src="../../static/images/img/10.png" alt="">
189
+                    </div>
190
+                    <div id='showDiv3' class="programmeDescribe animated" style="margin-left: 4vw;">
191
+                        <div style="margin-bottom: 2vw;">
192
+                            <p class="describeTip1">展示透析中心</p>
193
+                            <p class="describeTip2">可配置的移动门户,多种内容展示,提升品牌形象</p>
194
+                        </div>
195
+                        <div style="margin-bottom: 2vw;">
196
+                            <p class="describeTip1">经营粉丝流量</p>
197
+                            <p class="describeTip2">绑定公众号,实现粉丝和会员的双重流量增长</p>
198
+                        </div>
199
+                        <div style="margin-bottom: 2vw;">
200
+                            <p class="describeTip1">人气营销工具</p>
201
+                            <p class="describeTip2">品牌传播快速获客工具,持续提升透析服务患者客群</p>
202
+                        </div>
203
+                        <div style="margin-bottom: 2vw;">
204
+                            <p class="describeTip1">搭建患教中心</p>
205
+                            <p class="describeTip2">清晰的分类,强大的发布功能,助力实现专属患教中心</p>
206
+                        </div>
207
+                        <a class="free" href="http://sso.kuyicloud.com/register">免费使用</a>
208
+                    </div>
227 209
                 </div>
228
-                <div class="wcard-right">
229
-                    <img src="/static/images/index_4.jpg" alt="">
210
+            </div>
211
+            <div class="programme" style="background: #F8FBFF;">
212
+                <p class="programmeTitle">零售商城·让您零成本拥有自己的网络商城</p>
213
+                <div style="display: flex;">
214
+                    <div id='showDiv4' class="programmeDescribe animated" style="padding-left: 60px;">
215
+                        <div style="margin-bottom: 2vw;">
216
+                            <p class="describeTip1">数百款产品</p>
217
+                            <p class="describeTip2">和国内外品牌厂商合作,共建优质肾病患者商品库</p>
218
+                        </div>
219
+                        <div style="margin-bottom: 2vw;">
220
+                            <p class="describeTip1">零成本开店</p>
221
+                            <p class="describeTip2">无需压款、压货,酷医统一提供商品、物流和售后</p>
222
+                        </div>
223
+                        <div style="margin-bottom: 2vw;">
224
+                            <p class="describeTip1">增强患者黏性</p>
225
+                            <p class="describeTip2">商品销售是透析之外的增值服务,可增加服务黏性</p>
226
+                        </div>
227
+                        <div style="margin-bottom: 2vw;">
228
+                            <p class="describeTip1">分销流水看得见</p>
229
+                            <p class="describeTip2">交易安全账单透明,提现便捷到账迅速</p>
230
+                        </div>
231
+                        <a class="free" href="http://sso.kuyicloud.com/register">免费使用</a>
232
+                    </div>
233
+                    <div>
234
+                        <img style="margin-right: 2vw;" class="mainImg" src="../../static/images/img/11.png" alt="">
235
+                    </div>
230 236
                 </div>
231 237
             </div>
232 238
         </div>
233
-    </div>
234
-
235
-    <div class="use_yz" yz_ctn_module="example">
236
-        <h2 class="section-title">合作伙伴</h2>
237
-        <div class="use_yz-container">
238
-            <div class="case-container">
239
-                <ul>
240
-                    <li><img src="/static/images/hz-1.jpg" alt=""><p> 费森尤斯</p></li>
241
-                    <li><img src="/static/images/hz-2.jpg" alt=""><p>百伦透析连锁</p></li>
242
-                    <li><img src="/static/images/hz-3.jpg" alt=""><p>圣迪康透析连锁</p></li>
243
-                </ul>
244
-                <ul>
245
-                    <li><img src="/static/images/hz-4.jpg" alt=""><p>乐生透析连锁</p></li>
246
-                    <li><img src="/static/images/hz-5.jpg" alt=""><p>肾友透析连锁</p></li>
247
-                    <li><img src="/static/images/hz-6.jpg" alt=""><p>七喜医疗</p></li>
248
-                </ul>
249
-                <ul>
250
-                    <li><img src="/static/images/hz-7.jpg" alt=""><p>同爱医疗</p></li>
251
-                    <li><img src="/static/images/hz-8.jpg" alt=""><p>恒生医院</p></li>
252
-                </ul>
239
+        <div class="download">
240
+            <div class="downloadTitle">多种终端支持  工作随时随地</div>
241
+            <div class="downloadBox">
242
+                <div class="downOne">
243
+                    <img src="../../static/images/img/12.png" alt="">
244
+                    <span>PC工作台</span>
245
+                    <p>屏幕超大,录入方便</p>
246
+                    <img src="../../static/images/img/17.png" alt="">
247
+                </div>
248
+                <div class="downOne">
249
+                    <img src="../../static/images/img/13.png" alt="">
250
+                    <span>手机APP</span>
251
+                    <p>即开即用,在哪都行</p>
252
+                    <img src="../../static/images/img/16.png" alt="">
253
+                </div>
254
+                <div class="downOne">
255
+                    <img src="../../static/images/img/14.png" alt="">
256
+                    <span>平板APP</span>
257
+                    <p>大小合适,移动护理</p>
258
+                    <img src="../../static/images/img/19.png" alt="">
259
+                </div>
260
+                <div class="downOne">
261
+                    <img src="../../static/images/img/15.png" alt="">
262
+                    <span>手机微信</span>
263
+                    <p>无需安装,关注即用</p>
264
+                    <img src="../../static/images/img/18.png" alt="">
265
+                </div>
266
+            </div>
267
+            <div class="tipBox">
268
+                <div class="tipOne">
269
+                    <img src="../../static/images/img/20.png" alt="">
270
+                    <span>技术领先</span>
271
+                    <p>专业团队倾力研发</p>
272
+                </div>
273
+                <div class="tipOne">
274
+                    <img src="../../static/images/img/21.png" alt="">
275
+                    <span>系统稳定</span>
276
+                    <p>7x24小时实时护航</p>
277
+                </div>
278
+                <div class="tipOne">
279
+                    <img src="../../static/images/img/22.png" alt="">
280
+                    <span>服务专业</span>
281
+                    <p>在线客服随时响应</p>
282
+                </div>
283
+                <div class="tipOne">
284
+                    <img src="../../static/images/img/23.png" alt="">
285
+                    <span>口碑优质</span>
286
+                    <p>知名机构信赖之选</p>
287
+                </div>
253 288
             </div>
254 289
         </div>
255
-    </div>
290
+        <div class="advert">
291
+            <div class="advertBlue">
292
+                <div class="advertTitle">热情用心做服务  工匠精神做产品</div>
293
+                <div class="productBox">
294
+                   <div class="productOne">
295
+                       <img src="../../static/images/img/p1.png" alt="">
296
+                       <p>透析中心</p>
297
+                   </div>
298
+                   <div class="productOne">
299
+                       <img src="../../static/images/img/p2.png" alt="">
300
+                       <p>肾病医院</p>
301
+                   </div>
302
+                   <div class="productOne">
303
+                       <img src="../../static/images/img/p3.png" alt="">
304
+                       <p>肾病内科</p>
305
+                   </div>
306
+                   <div class="productOne">
307
+                       <img src="../../static/images/img/p4.png" alt="">
308
+                       <p>医生集团</p>
309
+                   </div>
310
+                </div>
311
+                
312
+            </div>
313
+            <div class="advertWhite"></div>
314
+            <div class="position">
315
+                <p class="sort">(*以下排名不分先后顺序)</p>
316
+                <div class="sponsorBox">
317
+                    <div class="sponsorOne background">
318
+                        <img src="../../static/images/img/iii1.png" alt="">
319
+                        <p>费森尤斯</p>
320
+                    </div>
321
+                    <div class="sponsorOne">
322
+                        <img src="../../static/images/img/i2.png" alt="">
323
+                        <p>华润医疗</p>
324
+                    </div>
325
+                    <div class="sponsorOne background">
326
+                        <img src="../../static/images/img/ii3.png" alt="">
327
+                        <p>达康医疗</p>
328
+                    </div>
329
+                    <div class="sponsorOne">
330
+                        <img src="../../static/images/img/i4.png" alt="">
331
+                        <p>七喜医疗</p>
332
+                    </div>
333
+                    <div class="sponsorOne background">
334
+                        <img src="../../static/images/img/ii5.png" alt="">
335
+                        <p>同爱医疗</p>
336
+                    </div>
256 337
 
257
-    <div class="service">
258
-        <h2 class="section-title">酷医云,助力肾科/透析中心医疗建设、提升整体服务水平</h2>
259
-        <ul class="icon-container">
260
-            <li>
261
-                <div id="service-1-img"></div>
262
-                <p>品牌提升</p>
263
-                <p class="desc">精准营销</p>
264
-            </li>
265
-            <li>
266
-                <div id="service-2-img"></div>
267
-                <p>就医体验</p>
268
-                <p class="desc">网络医疗</p>
269
-            </li>
270
-            <li>
271
-                <div id="service-3-img"></div>
272
-                <p>透析质量</p>
273
-                <p class="desc">院外服务</p>
274
-            </li>
275
-            <li>
276
-                <div id="service-4-img"></div>
277
-                <p>医护培训</p>
278
-                <p class="desc">快捷采购</p>
279
-            </li>
280
-        </ul>
281
-    </div>
338
+                    <div class="sponsorOne">
339
+                        <img src="../../static/images/img/i6.png" alt="">
340
+                        <p>圣迪康透析连锁</p>
341
+                    </div>
342
+                    <div class="sponsorOne background">
343
+                        <img src="../../static/images/img/i7.png" alt="">
344
+                        <p>百伦透析连锁</p>
345
+                    </div>
346
+                    <div class="sponsorOne">
347
+                        <img src="../../static/images/img/i8.png" alt="">
348
+                        <p>乐生透析连锁</p>
349
+                    </div>
350
+                    <div class="sponsorOne background">
351
+                        <img src="../../static/images/img/ii9.png" alt="">
352
+                        <p>百荣连锁透析</p>
353
+                    </div>
354
+                    <div class="sponsorOne">
355
+                        <img src="../../static/images/img/i10.png" alt="">
356
+                        <p>小豆连锁透析</p>
357
+                    </div>
282 358
 
283
-    <div class="copyright">
284
-        <div class="copyright-box">
285
-            <div class="copyright-right">
286
-                <dl>
287
-                    <dt><img src="/static/images/wei-1.png" alt=""></dt>
288
-                    <dd>平板扫码下载应用</dd>
289
-                </dl>
290
-                <dl>
291
-                    <dt><img src="/static/images/wei-2.png?v=3.0.0" alt=""></dt>
292
-                    <dd>手机微信扫码关注</dd>
293
-                </dl>
294
-            </div>
295
-            <div class="copyright-left">
296
-                <h3>深圳市健康互动科技有限公司</h3>
297
-                <ul>
298
-                    <li>咨询热线:0755-86526342</li>
299
-                    <li>服务邮箱:service@shengws.com</li>
300
-                    <li>工作时间:上午9:00-12:00,下午13:30-18:00</li>
301
-                    <li>公司地址:深圳市南山区学苑大道1001号南山智园A4栋9楼918</li>
302
-                </ul>
303
-            </div>
304
-            <div class="copyright-text">
305
-                <p>© 2016-2019 kuyicloud.com 酷医云 版权所有 <a href="http://www.beian.miit.gov.cn">粤ICP备15079323号-4</a></p>
359
+                    <div class="sponsorOne background">
360
+                        <img src="../../static/images/img/ii11.png" alt="">
361
+                        <p>深圳华侨医院</p>
362
+                    </div>
363
+                    <div class="sponsorOne">
364
+                        <img src="../../static/images/img/i12.png" alt="">
365
+                        <p>驻马店月亮湾医院</p>
366
+                    </div>
367
+                    <div class="sponsorOne background">
368
+                        <img src="../../static/images/img/i13.png" alt="">
369
+                        <p>湘潭捷雅肾病医院</p>
370
+                    </div>
371
+                    <div class="sponsorOne">
372
+                        <img src="../../static/images/img/i14.png" alt="">
373
+                        <p>张家口仁济医院</p>
374
+                    </div>
375
+                    <div class="sponsorOne background">
376
+                        <img src="../../static/images/img/i15.png" alt="">
377
+                        <p>深圳龙岗二院</p>
378
+                    </div>
379
+
380
+                    <div class="sponsorOne">
381
+                        <img src="../../static/images/img/i16.png" alt="">
382
+                        <p>襄阳博爱医院</p>
383
+                    </div>
384
+                    <div class="sponsorOne background">
385
+                        <img src="../../static/images/img/ii17.png" alt="">
386
+                        <p>深圳宝兴医院</p>
387
+                    </div>
388
+                    <div class="sponsorOne">
389
+                        <img src="../../static/images/img/i18.png" alt="">
390
+                        <p>湘潭爱心美医院</p>
391
+                    </div>
392
+                    <div class="sponsorOne background">
393
+                        <img src="../../static/images/img/i19.png" alt="">
394
+                        <p>南昌广济医院</p>
395
+                    </div>
396
+                    <div class="sponsorOne">
397
+                        <img src="../../static/images/img/i20.png" alt="">
398
+                        <p>唐山朝阳医院</p>
399
+                    </div>
400
+                </div>
306 401
             </div>
307 402
         </div>
308
-    </div>
309
-    
310
-
311
-    <!-- 右侧悬浮菜单开始 -->
312
-    <div class="suspension">
313
-        <div class="suspension-box">
314
-            <a href="#" class="a a-service "><i class="i"></i></a>
315
-            <a href="javascript:;" class="a a-service-phone "><i class="i"></i></a>
316
-            <a href="javascript:;" class="a a-qrcode"><i class="i"></i></a>
317
-            <a href="javascript:;" class="a a-top"><i class="i"></i></a>
318
-            <!-- <div class="d d-service" style="display:none;">
319
-                <i class="arrow"></i>
320
-                <div class="inner-box">
321
-                    <div class="d-service-item clearfix">
322
-                        <a href="#" class="clearfix">
323
-                            <h3>咨询在线客服</h3>
324
-                        </a>
403
+        <div class="slogan">
404
+            <p>酷医,帮助透析中心从优秀到卓越</p>
405
+        </div>
406
+        <div class="footer">
407
+            <div class="footerBox">
408
+                <p class="point" style="visibility: hidden;">友情链接:</p>
409
+                <div class="contactBox">
410
+                    <div>
411
+                        <p>咨询热线:0755-86526342</p>
412
+                        <p>服务邮箱:service@shengws.com</p>
413
+                    </div>
414
+                    <div>
415
+                        <p>客服手机:18682078150</p>
416
+                        <p>客服微信:kuyicloud</p>
417
+                    </div>
418
+                    <div>
419
+                        <p>工作时间:上午9:00-12:00,下午13:30-18:00</p>
420
+                        <p>公司地址:深圳市南山区南山智园A4栋09楼</p>
325 421
                     </div>
326 422
                 </div>
327
-            </div> -->
328
-            <div class="d d-service-phone">
329
-                <i class="arrow"></i>
330
-                <div class="inner-box" style="width:200px;">
331
-                    <div class="d-service-item clearfix">
332
-                        <span class="circle"><i class="i-tel"></i></span>
333
-                        <div class="text">
334
-                            <p>服务热线</p>
335
-                            <p class=" number">0755-86526342</p>
423
+                <p class="copyRight">© Copyright 2015-2020 深圳市健康互动科技有限公司 <a href="http://www.beian.miit.gov.cn">粤ICP备15079323号-4</a></p>
424
+            </div>
425
+        </div>
426
+        <div class="suspension">
427
+            <div class="suspension-box">
428
+                <img class="a a-service " src="../../static/images/img/33.png" alt="">
429
+                <img class="a a-service-phone" src="../../static/images/img/34.png" alt="">
430
+                <img class="a a-qrcode" src="../../static/images/img/32.png" alt="">
431
+                <!-- <a href="#" class="a a-service "><i class="i"></i></a>
432
+                <a href="javascript:;" class="a a-service-phone "><i class="i"></i></a>
433
+                <a href="javascript:;" class="a a-qrcode"><i class="i"></i></a>
434
+                <a href="javascript:;" class="a a-top"><i class="i"></i></a> -->
435
+                <div class="d d-service" style="display:none;">
436
+                    <i class="arrow"></i>
437
+                    <div class="inner-box">
438
+                        <div class="d-service-item clearfix">
439
+                            <a href="http://p.qiao.baidu.com/cps/chat?siteId=13548640&userId=28119034&siteToken=7577c975fa7ae685efd61deb009d1b5b" class="clearfix">
440
+                                <h3>咨询在线客服</h3>
441
+                            </a>
336 442
                         </div>
337 443
                     </div>
338 444
                 </div>
339
-            </div>
340
-            <div class="d d-qrcode">
341
-                <i class="arrow"></i>
342
-                <div class="inner-box">
343
-                    <div class="qrcode-img"><img src="/static/images/side_ewm.png" alt=""></div>
344
-                    <p>微信服务号</p>
445
+                <div class="d d-service-phone">
446
+                    <i class="arrow"></i>
447
+                    <div class="inner-box" style="width:200px;">
448
+                        <div class="d-service-item clearfix">
449
+                            <span class="circle"><i class="i-tel"></i></span>
450
+                            <div class="text">
451
+                                <p>服务热线</p>
452
+                                <p class=" number">0755-86526342</p>
453
+                            </div>
454
+                        </div>
455
+                    </div>
345 456
                 </div>
346
-                <div class="inner-box">
347
-                    <div class="qrcode-img"><img src="/static/images/kefu.jpg" alt="">
348
-                    <p>微信客服号</p>					
457
+                <div class="d d-qrcode">
458
+                    <i class="arrow"></i>
459
+                    <div class="inner-box">
460
+                        <div class="qrcode-img"><img src="/static/images/side_ewm.png" alt=""></div>
461
+                        <p>微信服务号</p>
462
+                    </div>
463
+                    <div class="inner-box">
464
+                        <div class="qrcode-img"><img src="/static/images/img/kefu.jpg" alt="">
465
+                        <p>微信客服号</p>					
466
+                    </div>
349 467
                 </div>
350 468
             </div>
351 469
         </div>
352 470
     </div>
353
-    <!-- 右侧悬浮菜单结束 -->
354
-    
355
-    <!-- 底部悬浮内容 -->
356
-    <div class="wraper-1vdHN1Z2BV" id="wraper-1vdHN1Z2BV">
357
-        <div >
358
-            <div class="logo-pic"><img src="/static/images/fulogo.png" alt=""></div>
359
-            <a href="http://sso.kuyicloud.com/register" class="btn-1hyk61Z2BV">
360
-                <button type="button" class="ivu-btn ivu-btn-primary">
361
-                    <span>免费使用</span>
362
-                </button>
363
-            </a>
364
-        </div>
365
-    </div>
366
-
367 471
     
368 472
     <script src="/static/js/jquery-1.11.0.min.js" type="text/javascript"></script>
369 473
     <script src="/static/js/bootstrap.min.js"></script>
@@ -373,6 +477,51 @@
373 477
     <script src="/static/js/suspension.js"></script>
374 478
     <script type="text/javascript">
375 479
         $('#bootstrap-touch-slider').bsTouchSlider();
480
+        $(function(){
481
+            var windowHeight = $(window).height();  //窗口高度
482
+
483
+            // 监听页面滚动
484
+            $(window).scroll(function(event){
485
+                var showId1 = document.getElementById('showDiv1');
486
+                var is_Animat1  = is_Visible_Area(showId1);
487
+                if (is_Animat1){
488
+                    showId1.classList.add('fadeInRight');
489
+                }
490
+                var showId2 = document.getElementById('showDiv2');
491
+                var is_Animat2  = is_Visible_Area(showId2);
492
+                if (is_Animat2){
493
+                    showId2.classList.add('fadeInLeft');
494
+                }
495
+                var showId3 = document.getElementById('showDiv3');
496
+                var is_Animat3  = is_Visible_Area(showId3);
497
+                if (is_Animat3){
498
+                    showId3.classList.add('fadeInRight');
499
+                }
500
+                var showId4 = document.getElementById('showDiv4');
501
+                var is_Animat4  = is_Visible_Area(showId4);
502
+                if (is_Animat4){
503
+                    showId4.classList.add('fadeInLeft');
504
+                }
505
+            });
506
+
507
+            //计算元素是否到达可视区域
508
+            function is_Visible_Area(element) {
509
+                var objHeight = $(element).offset().top;//元素到顶部的高度
510
+                let winPos = $(window).scrollTop();//距离顶部滚动
511
+                let val = objHeight-winPos;
512
+                if (val<windowHeight && val > 0) {
513
+                    //可视区域
514
+                    // console.log("有动画")
515
+                    return true;
516
+                }else {
517
+                    //不可视区域
518
+                    // console.log("不在可视区域内")
519
+                    return false;
520
+                }
521
+            }
522
+        });
523
+
376 524
     </script>
377 525
 </body>
378
-</html>
526
+</html>
527
+