forked from Aubrey-forget/tooWebsite
-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.html
1546 lines (1431 loc) · 48.1 KB
/
index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<meta name="viewport"
content="width=device-width, initial-scale=1.0,maximum-scale=1.0,minimum=1.0,user-scalable=no">
<meta http-equiv="X-UA-Compatible"
content="ie=edge">
<title>Document</title>
<link rel="stylesheet"
href="./css/index.css">
<script src="./js/isMobile.js"></script>
<script src="./js/jqurey.min.3.3.1.js"></script>
<script src="./js/swiper.js"></script>
<script src="./js/template.js"></script>
</head>
<body>
<!-- 手机端 -->
<section id="mt-phone">
<header class="mt-phone-header">
<img src="./img/banner-phone.png"
alt="">
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<div>立即拥有</div>
</a>
</header>
<!-- 行业痛点 -->
<section class="mt-phone-industry">
<header>
<h3>行业痛点</h3>
<p>痛定思痛,着力解决</p>
</header>
<section class="mt-phone-industry-content">
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-phone-content-item">
<div>
<img src="./img/industry/1.png"
alt="">
</div>
<figcaption>传统的线下流量往往不可被记录,难以进行统计</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-phone-content-item">
<div>
<img src="./img/industry/2.png"
alt="">
</div>
<figcaption>线下商铺与客户的链接随着客户离店而断开,不能做持续维护</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-phone-content-item">
<div>
<img src="./img/industry/3.png"
alt="">
</div>
<figcaption>日渐增长的平台服务费及抽成,使得成本逐年增高</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-phone-content-item">
<div>
<img src="./img/industry/4.png"
alt="">
</div>
<figcaption>营销手段受平台限制极大,缺乏自主性</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-phone-content-item">
<div>
<img src="./img/industry/5.png"
alt="">
</div>
<figcaption>竞价模式下高额的流量获客成本,使得利润越来越薄</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-phone-content-item">
<div>
<img src="./img/industry/6.png"
alt="">
</div>
<figcaption>使用外卖平台的顾客,通常很容易因为价格而被其他同类店铺信息吸引走,客户忠诚度不高</figcaption>
</figure>
</a>
</section>
</section>
<!-- 凸赞优势 -->
<section class="mt-phone-odds">
<header>
<h3>行业痛点</h3>
<p>痛定思痛,着力解决</p>
</header>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-odds-item">
<div>
<img src="./img/superiority/operation.png"
alt="">
</div>
<figcaption>
<h3>运营支持</h3>
<p>全套小程序运营方案,资深运营大咖手把手指导,让您买的值,用的更值。</p>
</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-odds-item">
<div>
<img src="./img/superiority/deploy.png"
alt="">
</div>
<figcaption>
<h3>一键部署</h3>
<p>一键授权,轻松上线,用凸赞小程序就是这么简单,还有美女客服一对一指导哦。</p>
</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-odds-item">
<div>
<img src="./img/superiority/maintain.png"
alt="">
</div>
<figcaption>
<h3>持续维护</h3>
<p>持续不断的产品升级,从页面UI到产品功能迭代,周周给您小惊喜,月月给您大惊喜。</p>
</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-odds-item">
<div>
<img src="./img/superiority/maintain.png"
alt="">
</div>
<figcaption>
<h3>精美模板</h3>
<p>丰富漂亮的界面模版,总有一款适合你,而且还支持根据客户企业VI深度定制哦。</p>
</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-odds-item">
<div>
<img src="./img/superiority/plowing.png"
alt="">
</div>
<figcaption>
<h3>垂直深耕</h3>
<p>不仅是小程序,更是适合您所在行业的深度定制的行业解决方案,直达行业痛点。</p>
</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-odds-item">
<div>
<img src="./img/superiority/price.png"
alt="">
</div>
<figcaption>
<h3>价格公道</h3>
<p>全网支持持续维护服务的小程序最具性价比服务商,一次给钱,持久售后。</p>
</figcaption>
</figure>
</a>
</section>
<!-- 功能模块 -->
<section class="mt-phone-fun">
<header>
<h3>功能板块</h3>
<p>大小企业,都要有自己的品牌</p>
</header>
<div class="mt-fun-title">
<div class="mt-active">小型商铺-基础功能</div>
<div>连锁企业-适配功能</div>
</div>
<section class="mt-fun-content">
<!-- 外卖 -->
<div class="mt-fun-left">
<img src="./img/fun/food.png"
alt="">
<div class="mt-foot">
<h3>面向餐饮行业</h3>
<p>打造一站式消费群体流量蓄能</p>
<ul>
<li>
<span></span>
<p>覆盖手机、电脑、收银机的全端管理后台</p>
</li>
<li>
<span></span>
<p>对接10家主流即时配送公司的智能派单系统</p>
</li>
<li>
<span></span>
<p>堂食、外卖、买单一应俱全</p>
</li>
<li>
<span></span>
<p>红包裂变、优惠券、满减等各种营销工具</p>
</li>
</ul>
<a href="https://market.cloud.tencent.com/products/3223#"
target="_blank">
<div>立即使用</div>
</a>
</div>
</div>
<!-- 连锁店 -->
<div class="mt-fun-right"
style="display:none;">
<img src="./img/fun/chain.png"
alt="">
<div class="mt-chain">
<h3>新电商渠道</h3>
<p>逐步摆脱平台制约</p>
<ul>
<li>
<p>自动结算系统,解决财务困扰</p>
<span></span>
</li>
<li>
<p>分店共享菜品信息,商品上架无忧</p>
<span></span>
</li>
<li>
<p>阶梯运费设置,灵活配送</p>
<span></span>
</li>
<li>
<p>会员系统,助力品牌营销</p>
<span></span>
</li>
</ul>
<a href="https://market.cloud.tencent.com/products/3223#"
target="_blank">
<div>立即使用</div>
</a>
</div>
</div>
</section>
</section>
<!-- 产品一体化 -->
<section class="mt-goods">
<header>
<h3>产品一体化</h3>
<p>帮助商家打通“点餐-支付-出票-配送-反馈”各个环节,实现一体化的营销管理</p>
</header>
<section>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-goods-item">
<div>
<img src="./img/product/scanCode.png"
alt="">
</div>
<figcaption>堂食点餐</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-goods-item">
<div>
<img src="./img/product/wallet.png"
alt="">
</div>
<figcaption>买单支付</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-goods-item">
<div>
<img src="./img/product/orders.png"
alt="">
</div>
<figcaption>APP一键接单</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-goods-item">
<div>
<img src="./img/product/print.png"
alt="">
</div>
<figcaption>云打印</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-goods-item">
<div>
<img src="./img/product/takeaway.png"
alt="">
</div>
<figcaption>外卖配送</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-goods-item">
<div>
<img src="./img/product/management.png"
alt="">
</div>
<figcaption>PC端管理后台</figcaption>
</figure>
</a>
</section>
</section>
<!-- 外卖配送 -->
<section class="mt-distribution">
<header>
<h3>外卖配送</h3>
<p>配送物力覆盖全国300多个城市</p>
</header>
<div class="mt-distribution-cont">
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<div class="mt-distribution-item">
<h3>更便宜</h3>
<p>叮叮配送系统会根据配送订单距离,自动匹配配送公司,首选更便宜的配送公司。</p>
</div>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<div class="mt-distribution-item"
style="margin:0 4px;">
<h3>更快</h3>
<p>叮叮配送系统会匹配最近的配送骑手,不区分配送公司,骑手接单后即显示骑手的实时位置信息及配送价格。</p>
</div>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<div class="mt-distribution-item">
<h3>智能推荐</h3>
<p>大数据计算各个城市区域配送物力情况,根据配送的公司不同,距离不同,价格不同智能推荐。</p>
</div>
</a>
</div>
</section>
<!-- 运营优势 -->
<section class="mt-superior">
<header>
<h3>运营优势</h3>
<p>凸赞能做到</p>
</header>
<div class="mt-superior-cont">
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<div class="mt-superior-item">
<img src="./img/operation/yunyingyoushi-1.png"
alt="">
<p style="margin-bottom:4px">样式排版</p>
<p>免费更新</p>
</div>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<div class="mt-superior-item"
style="margin:0 10px;">
<img src="./img/operation/yunyingyoushi-2.png"
alt="">
<p style="margin-bottom:4px">功能更新</p>
<p>免费升级</p>
</div>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<div class="mt-superior-item">
<img src="./img/operation/yunyingyoushi-3.png"
alt="">
<p style="margin-bottom:4px">配送状况</p>
<p>实时监控</p>
</div>
</a>
</div>
</section>
<!-- 真实案例 -->
<section class="mt-phone-case">
<header>
<h3>真实案例</h3>
<p>小程序红利享有者</p>
</header>
<div id="mt-phone-swiper">
<pre class="mt-prev">prev</pre>
<pre class="mt-next">next</pre>
<ul class="mt-phone-swiper-list">
<li>
<div>
<img src="./img/case/01.png"
alt="">
<a href="https://market.cloud.tencent.com/products/3223#"
target="_blank">
<div class="mt-swiper-bth">要同款</div>
</a>
</div>
<img src="./img/case/1.png" />
</li>
<li>
<div>
<img src="./img/case/02.png"
alt="">
<a href="https://market.cloud.tencent.com/products/3223#"
target="_blank">
<div class="mt-swiper-bth">要同款</div>
</a>
</div>
<img src="./img/case/2.png" />
</li>
<li>
<div>
<img src="./img/case/03.png"
alt="">
<a href="https://market.cloud.tencent.com/products/3223#"
target="_blank">
<div class="mt-swiper-bth">要同款</div>
</a>
</div>
<img src="./img/case/3.png" />
</li>
<li>
<div>
<img src="./img/case/04.png"
alt="">
<a href="https://market.cloud.tencent.com/products/3223#"
target="_blank">
<div class="mt-swiper-bth">要同款</div>
</a>
</div>
<img src="./img/case/4.png" />
</li>
<li>
<div>
<img src="./img/case/05.png"
alt="">
<a href="https://market.cloud.tencent.com/products/3223#"
target="_blank">
<div class="mt-swiper-bth">要同款</div>
</a>
</div>
<img src="./img/case/5.png" />
</li>
<li>
<div>
<img src="./img/case/06.png"
alt="">
<a href="https://market.cloud.tencent.com/products/3223#"
target="_blank">
<div class="mt-swiper-bth">要同款</div>
</a>
</div>
<img src="./img/case/6.png" />
</li>
</ul>
</div>
</section>
<!-- 我们有的不止这些 -->
<section class="mt-we-more">
<header>
<h3 style="color:#fff;">我们有的不止这些</h3>
<p>凸赞小程序 助成大生意</p>
</header>
<div class="mt-phone-table">
<figure class="mt-phone-table-item">
<div>
<img src="./img/viewMore/KTV.png"
alt="">
</div>
<figcaption>KTV</figcaption>
</figure>
<figure class="mt-phone-table-item">
<div>
<img src="./img/viewMore/2.png"
alt="">
</div>
<figcaption>超市</figcaption>
</figure>
<figure class="mt-phone-table-item">
<div>
<img src="./img/viewMore/3.png"
alt="">
</div>
<figcaption>生鲜</figcaption>
</figure>
<figure class="mt-phone-table-item">
<div>
<img src="./img/viewMore/4.png"
alt="">
</div>
<figcaption>酒水</figcaption>
</figure>
<figure class="mt-phone-table-item">
<div>
<img src="./img/viewMore/5.png"
alt="">
</div>
<figcaption>外卖</figcaption>
</figure>
<figure class="mt-phone-table-item">
<div>
<img src="./img/viewMore/6.png"
alt="">
</div>
<figcaption>新零售</figcaption>
</figure>
<figure class="mt-phone-table-item">
<div>
<img src="./img/viewMore/7.png"
alt="">
</div>
<figcaption>鲜花</figcaption>
</figure>
<figure class="mt-phone-table-item">
<div>
<img src="./img/viewMore/8.png"
alt="">
</div>
<figcaption>母婴</figcaption>
</figure>
<figure class="mt-phone-table-item">
<div>
<img src="./img/viewMore/9.png"
alt="">
</div>
<figcaption>美妆</figcaption>
</figure>
<figure class="mt-phone-table-item">
<div>
<img src="./img/viewMore/10.png"
alt="">
</div>
<figcaption>洪培</figcaption>
</figure>
<figure class="mt-phone-table-item">
<div>
<img src="./img/viewMore/11.png"
alt="">
</div>
<figcaption>服装</figcaption>
</figure>
<figure class="mt-phone-table-item">
<div>
<img src="./img/viewMore/12.png"
alt="">
</div>
<figcaption>医疗</figcaption>
</figure>
<figure class="mt-phone-table-item mt-last">
<div>
<img src="./img/viewMore/13.png"
alt="">
</div>
<figcaption>教育</figcaption>
</figure>
<figure class="mt-phone-table-item mt-last">
<div>
<img src="./img/viewMore/14.png"
alt="">
</div>
<figcaption>社区</figcaption>
</figure>
<figure class="mt-phone-table-item mt-last">
<div>
<img src="./img/viewMore/15.png"
alt="">
</div>
<figcaption>家居</figcaption>
</figure>
<figure class="mt-phone-table-item mt-last">
<div>
<img src="./img/viewMore/16.png"
alt="">
</div>
<figcaption>家政</figcaption>
</figure>
<figure class="mt-phone-table-item mt-last">
<div>
<img src="./img/viewMore/17.png"
alt="">
</div>
<figcaption>旅游</figcaption>
</figure>
<figure class="mt-phone-table-item mt-last">
<div>
<img src="./img/viewMore/18.png"
alt="">
</div>
<figcaption>酒店</figcaption>
</figure>
</div>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<div style="font-size:10px">前往使用</div>
</a>
</section>
<!-- 了解更多 -->
<section class="mt-also">
<header>
<h3>了解更多</h3>
</header>
<div class="mt-also-cont">
<a href="https://market.cloud.tencent.com/products/2992#"
target="_blank">
<div class="mt-also-item">
<div class="mt-also-title">
<img src="./img/more/shop.png"
alt="">
</div>
<p>凸赞·社交电商小程序·多种营销工具提拉销量</p>
<div class="mt-also-test">
<div>1元试用</div>
<p>名额有限</p>
</div>
</div>
</a>
<a href="https://market.cloud.tencent.com/products/3004#"
style="margin:0 10px;"
target="_blank">
<div class="mt-also-item">
<div class="mt-also-title">
<img src="./img/more/retail.png"
alt="">
</div>
<p>凸赞·新零售小程序·多种本地配送公司任选</p>
<div class="mt-also-test">
<div>1元试用</div>
<p>名额有限</p>
</div>
</div>
</a>
<a href="https://market.cloud.tencent.com/products/3210#"
target="_blank">
<div class="mt-also-item">
<div class="mt-also-title">
<img src="./img/more/education.png"
alt="">
</div>
<p>凸赞·教育小程序·报名报课轻松实现</p>
<div class="mt-also-test">
<div>1元试用</div>
<p>名额有限</p>
</div>
</div>
</a>
</div>
</section>
<!-- 关于我们 -->
<section class="mt-regarding">
<header>
<h3>关于我们</h3>
<p></p>
</header>
<p>上海凸赞信息技术有限公司致力于小程序行业解决方案,帮助商家快速创建小程序、深化运营推广、解决物流配送等,构建商家自己的商业闭环。公司全国遍布加盟商,已签约上海、南京、杭州、郑州、金华、拉萨、安庆、济南、黄山、长沙、苏州、合肥、芜湖、湖州、南通、淮南等众多加盟商。凸赞拥有一支经验丰富的专业团队,核心成员来自腾讯、唯品会等国际知名互联网企业。公司拥有完善的团队支撑,提供研发、设计、运营等多方面支持。凸赞小程序能够支撑日均亿级交易额和大促百亿级营业额,为您的小程序线上交易提供保障!</p>
<img src="./img/aboutUs/noPublic.png"
alt="">
<div>扫码关注微信公众号</div>
<section>
<ul>
<li>
<img src="./img/aboutUs/address.png"
alt="">
<div>上海市嘉定区江桥万达广场9号楼1106室</div>
</li>
<li>
<img src="./img/aboutUs/phone.png"
alt="">
<div>021-60257173</div>
</li>
<li>
<img src="./img/aboutUs/envelope.png"
alt="">
<div>toozan@163.com</div>
</li>
</ul>
</section>
</section>
</section>
<!-- web端 -->
<section id="mt-too-web">
<header class="mt-too-header">
<img src="./img/banner.png"
alt="">
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<div>立即拥有</div>
</a>
</header>
<!-- 行业痛点 -->
<section class="mt-too-industry">
<header style="margin-bottom:14px">
<h3>行业痛点</h3>
<p>痛定思痛,着力解决</p>
</header>
<section class="mt-industry">
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-too-figure">
<div>
<img src="./img/industry/1.png"
alt="">
</div>
<figcaption>
传统的线下流量往往不可被记录,难以进行统计
</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-too-figure">
<div>
<img src="./img/industry/2.png"
alt="">
</div>
<figcaption>
线下商铺与客户的链接随着客户离店而断开,不能做持续维护
</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-too-figure">
<div>
<img src="./img/industry/3.png"
alt="">
</div>
<figcaption>
竞价模式下高额的流量获客成本,使得利润越来越薄
</figcaption>
</figure>
</a>
</section>
<section class="mt-industry">
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-too-figure">
<div>
<img src="./img/industry/4.png"
alt="">
</div>
<figcaption>
日渐增长的平台服务费及抽成,使得成本逐年增高
</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-too-figure">
<div>
<img src="./img/industry/5.png"
alt="">
</div>
<figcaption>
营销手段受平台限制极大,缺乏自主性
</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-too-figure">
<div>
<img src="./img/industry/6.png"
alt="">
</div>
<figcaption>
使用外卖平台的顾客,通常很容易因为价格而被其他同类店铺信息吸引走,客户忠诚度不高
</figcaption>
</figure>
</a>
</section>
</section>
<!-- 凸赞优势 -->
<section class="mt-superiority">
<header>
<h3>凸赞优势</h3>
<p>业内一致好评的小程序行家</p>
</header>
<div class="mt-superiority-row">
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-superiority-item">
<div>
<img src="./img/superiority/operation.png"
alt="">
</div>
<figcaption>
<h4>运营支持</h4>
<p>全套小程序运营方案,资深运营大咖手把手指导,让您买的值,用的更值。</p>
</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-superiority-item">
<div>
<img src="./img/superiority/deploy.png"
alt="">
</div>
<figcaption>
<h4>一键部署</h4>
<p>一键授权,轻松上线,用凸赞小程序就是这么简单,还有美女客服一对一指导哦。</p>
</figcaption>
</figure>
</a>
</div>
<div class="mt-superiority-row">
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-superiority-item">
<div>
<img src="./img/superiority/maintain.png"
alt="">
</div>
<figcaption>
<h4>持续维护</h4>
<p>持续不断的产品升级,从页面UI到产品功能迭代,周周给您小惊喜,月月给您大惊喜。</p>
</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-superiority-item">
<div>
<img src="./img/superiority/stencil.png"
alt="">
</div>
<figcaption>
<h4>精美模板</h4>
<p>丰富漂亮的界面模版,总有一款适合你,而且还支持根据客户企业VI深度定制哦。</p>
</figcaption>
</figure>
</a>
</div>
<div class="mt-superiority-row">
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-superiority-item">
<div>
<img src="./img/superiority/plowing.png"
alt="">
</div>
<figcaption>
<h4>垂直深耕 </h4>
<p>不仅是小程序,更是适合您所在行业的深度定制的行业解决方案,直达行业痛点。</p>
</figcaption>
</figure>
</a>
<a href="https://market.cloud.tencent.com/stores/1253714409"
target="_blank">
<figure class="mt-superiority-item">
<div>
<img src="./img/superiority/price.png"
alt="">
</div>
<figcaption>
<h4>价格公道 </h4>
<p>全网支持持续维护服务的小程序最具性价比服务商,一次给钱,持久售后。</p>
</figcaption>
</figure>
</a>
</div>
</section>
<!-- 功能模块 -->
<section class="mt-features">
<header>
<h3>功能板块</h3>
<p>大小企业,都要有自己的品牌</p>
</header>
<div class="mt-features-title">
<header class="mt-features-switch">
<div class="mt-active">小型商铺-基础功能</div>
<div>连锁企业-适配功能</div>
</header>
</div>
<div class="mt-features-box">
<div class="mt-features-content mt-left-active">
<div class="mt-features-item">
<div class="mt-present">
<h3>面向餐饮行业</h3>
<p> 打造一站式消费群体流量蓄能</p>
<div class="mt-present-list">
<span></span>
<p>覆盖手机、电脑、收银机的全端管理后台</p>
</div>
<div class="mt-present-list">
<span></span>
<p>对接10家主流即时配送公司的智能派单系统</p>
</div>
<div class="mt-present-list">
<span></span>
<p>堂食、外卖、买单一应俱全</p>
</div>
<div class="mt-present-list">
<span></span>
<p>红包裂变、优惠券、满减等各种营销工具</p>
</div>
<a href="https://market.cloud.tencent.com/products/3223#"
target="_blank">
<div>立即使用</div>
</a>
</div>
<div class="mt-matching">
<img src="./img/fun/food.png"
alt="">
</div>
</div>
<div class="mt-features-item">
<div class="mt-matching"
style="margin-left:0;margin-right: 94px;">
<img src="./img/fun/chain.png"
alt="">