-
Notifications
You must be signed in to change notification settings - Fork 0
/
index.php
968 lines (918 loc) · 41.2 KB
/
index.php
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
<!DOCTYPE html>
<!--[if IE 8]> <html lang="en" class="ie8"> <![endif]-->
<!--[if IE 9]> <html lang="en" class="ie9"> <![endif]-->
<!--[if !IE]><!--> <html lang="en"> <!--<![endif]-->
<head>
<title>原来可以如此简单 软件定制 | 分分钟定制您的专属软件 | 数字化转型 | 数字化企业 | 云计算 | 大数据 | 物联网 | 3UCS x+ 让软件飞</title>
<!-- Meta -->
<meta charset="utf-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta name="description" content="软件快速定制运行平台 3ucs X+ 网页应用 手机应用 电脑应用">
<meta name="author" content="3ucs.com">
<!-- Favicon -->
<link rel="shortcut icon" href="http://3ucs.com/favicon.ico">
<!-- Web Fonts -->
<link rel='stylesheet' type='text/css' href='//fonts.googleapis.com/css?family=Open+Sans:400,300,600&subset=cyrillic,latin'>
<!-- CSS Global Compulsory -->
<link rel="stylesheet" href="assets/plugins/bootstrap/css/bootstrap.min.css">
<link rel="stylesheet" href="assets/css/style.css">
<!-- CSS Header and Footer -->
<link rel="stylesheet" href="assets/css/headers/header-v6.css">
<link rel="stylesheet" href="assets/css/footers/footer-v6.css">
<!-- CSS Implementing Plugins -->
<link rel="stylesheet" href="assets/plugins/animate.css">
<link rel="stylesheet" href="assets/plugins/line-icons/line-icons.css">
<link rel="stylesheet" href="assets/plugins/font-awesome/css/font-awesome.min.css">
<link rel="stylesheet" href="assets/plugins/cube-portfolio/cubeportfolio/css/cubeportfolio.min.css">
<link rel="stylesheet" href="assets/plugins/cube-portfolio/cubeportfolio/custom/custom-cubeportfolio.css">
<link rel="stylesheet" href="assets/plugins/animated-headline/css/animated-headline.css">
<link href='http://3ucs.com/biz/inc/owlcarousel/assets/owl.carousel.min.css' rel='stylesheet'>
<link href='http://3ucs.com/biz/inc/owlcarousel/assets/owl.theme.default.min.css' rel='stylesheet'>
<!-- CSS Theme -->
<link rel="stylesheet" href="assets/css/theme-colors/default.css" id="style_color">
<link rel="stylesheet" href="assets/css/theme-skins/dark.css">
<link rel='stylesheet' href='assets/xplus-v1.0/xplusfonts.css'>
<!--[if lt IE 8]><!-->
<link rel='stylesheet' href='assets/xplus-v1.0/ie7xplusfonts/ie7.css'>
<!--<![endif]-->
<style>@media (min-width:992px){.md-right{float:right}}
.service-block a {
color: white;
}
</style>
<!-- CSS Customization -->
<link rel="stylesheet" href="assets/css/custom.css">
<!-- JS Global Compulsory -->
<script type="text/javascript" src="assets/plugins/jquery/jquery.min.js"></script>
<script type="text/javascript" src="assets/plugins/bootstrap/js/bootstrap.min.js"></script>
<script src='http://3ucs.com/biz/inc/owlcarousel/owl.carousel.min.js'></script>
<script>
(function($){$.fn.fontFlex=function(min,max,mid){var $this=this;$(window).resize(function(){var size=window.innerWidth/mid;if(size<min)size=min;if(size>max)size=max;$this.css('font-size',size+'px');}).trigger('resize');};})(jQuery);
$(function() {$('h1').fontFlex(20, 60, 40);$('.quote-v1 p').fontFlex(14, 22, 60);});
function ltIE9(){
var DEFAULT_VERSION = 8.0;
var ua = navigator.userAgent.toLowerCase();
var isIE = ua.indexOf("msie")>-1;
var safariVersion=9.0;
if(isIE){
safariVersion = ua.match(/msie ([\d.]+)/)[1];
if(safariVersion <= DEFAULT_VERSION )return true;
}
return false;}
var postsvr="http://3ucs.com";
function checkemail( email_address )
{
var regex = /^([0-9A-Za-z\-_\.]+)@([0-9a-z]+\.[a-z]{2,3}(\.[a-z]{2})?)$/g;
if ( regex.test( email_address ) )
{
var user_name = email_address.replace( regex, "$1" );
var domain_name = email_address.replace( regex, "$2" );
var alert_string = "您输入的电子邮件地址合法\n\n";
alert_string += "用户名:" + user_name + "\n";
alert_string += "域名:" + domain_name;
//window.alert( alert_string );
return true;
}
else
{
window.alert( "您输入的电子邮件地址不合法" );
return false;
}
}
function onsubscribe()
{
subscribe = new XMLHttpRequest();
info2 = document.getElementById('email2subscribe').value;
if(info2==='' || checkemail(info2)===false)
return;
urlx = postsvr+"/subscribe.php?info=" + info2;
subscribe.open("POST", urlx, true);
subscribe.onreadystatechange=function()
{
if(subscribe.readyState == 4 && subscribe.status == 200)
{
alert('订阅成功');
//ok
}
}
subscribe.send();
}
</script>
<STYLE type='text/css'>
*{margin:0;padding:0;list-style-type:none;}
/* slider----------------------*/
.slide-mask{position:relative;overflow:hidden;height:80px;}
.slide-group{position:absolute; top:0px; left:0;width:100%;}
.slide-group li{background:url('')}
.slide, .slidetitle{height:80px;color:#fff;text-align:center;text-transform:uppercase;padding:0px;}
</STYLE><SCRIPT src='http://3ucs.com/themes/xtheme/XVSlider.js' type='text/javascript'></SCRIPT>
</head>
<body class="header-fixed">
<div class="wrapper">
<!--=== Header v6 ===-->
<div class="header-v6 header-dark-transparent header-sticky">
<!-- Navbar -->
<div class="navbar mega-menu" role="navigation">
<div class="container">
<!-- Brand and toggle get grouped for better mobile display -->
<div class="menu-container">
<button type="button" class="navbar-toggle" data-toggle="collapse" data-target=".navbar-responsive-collapse">
<span class="sr-only">Toggle navigation</span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<!-- Navbar Brand -->
<div class="navbar-brand">
<a href="">
<!--img class="default-logo" style="background:#2a2b2b;border-radius:5px" src="http://localhost/i3u/images/xPlusLogo.png" alt="Logo"><img class="shrink-logo" src="http://localhost/i3u/images/xPlusLogo.png" alt="Logo"/-->
<span class="icon-xplus" style="font-size:3em"><span style="visibility: hidden;">X+</span></span><span style="margin-left:-2em;font-size:2em">让软件飞</span>
</a>
</div>
<!-- ENd Navbar Brand -->
<!-- Header Inner Right -->
<!--div class="header-inner-right">
<ul class="menu-icons-list">
<li class="menu-icons shopping-cart">
<i class="menu-icons-style radius-x fa fa-shopping-cart"></i>
<span class="badge">0</span>
<div class="shopping-cart-open">
<span class="shc-title">No products in the Cart</span>
<button type="button" class="btn-u"><i class="fa fa-shopping-cart"></i> Cart</button>
<span class="shc-total">Total: <strong>$0.00</strong></span>
</div>
</li>
<li class="menu-icons">
<i class="menu-icons-style search search-close search-btn fa fa-search"></i>
<div class="search-open">
<input type="text" class="animated fadeIn form-control" placeholder="Start searching ...">
</div>
</li>
</ul>
</div-->
<!-- End Header Inner Right -->
</div>
<!-- Collect the nav links, forms, and other content for toggling -->
<div class="collapse navbar-collapse navbar-responsive-collapse one-page-nav-scrolling navbar-fixed-top one-page-nav__fixed">
<div class="menu-container">
<ul class="nav navbar-nav">
<!-- Home -->
<!--li class="dropdown active page-scroll">
<a href="#home">
<span data-hover="home">首页</span>
</a>
</li-->
<!-- End Home -->
<li class="dropdown page-scroll">
<a href="#about">
<span data-hover="about">关于</span>
</a>
</li>
<li class="dropdown page-scroll">
<a href="#feature">
<span data-hover="feature">特点</span>
</a>
</li>
<li class="dropdown page-scroll">
<a href="#webservice">
<span data-hover="webservice">网页版</span>
</a>
</li>
<li class="dropdown page-scroll">
<a href="#mobile">
<span data-hover="mobile">手机版</span>
</a>
</li>
<li class="dropdown page-scroll">
<a href="#pc">
<span data-hover="pc">PC版</span>
</a>
</li>
<li class="dropdown page-scroll">
<a href="#apps">
<span data-hover="apps">典型应用</span>
</a>
</li>
<li class="dropdown page-scroll">
<a href="#support">
<span data-hover="support">支持</span>
</a>
</li>
<li class="dropdown page-scroll">
<a href="#footer-v6">
<span data-hover="footer-v6">联系我们</span>
</a>
</li>
</ul>
</div>
</div><!--/navbar-collapse-->
</div>
</div>
<!-- End Navbar -->
</div>
<!--=== End Header v6 ===-->
<!-- Interactive Slider v2 -->
<div class="interactive-slider-v2 interactive-slider-v2-md img-v3">
<div class="container">
<div class="col-md-6"><h1>
<p class="header"><span class="icon-xplus"><span style="visibility: hidden;">X+</span></span>
<span><b>让软件飞</b></span></p>
<span class="cd-headline letters type">
<span class="cd-words-wrapper">
<b class="is-visible">分分钟定制您的专属软件</b>
<b>数字化转型唾手可得</b>
</span>
</span>
<p class="footer"><b>软件快速定制运行平台</b></p>
</h1></div>
<div class="col-md-6"><h1>
<p class="header"><span><b>一次定制</b></span></p>
<DIV id='sl1' class='slide-wrap' style='background-position-y:0px'><!--div class='slidetitle' style='float:left;'>X+<br/>软件快速定制平台</div-->
<DIV class='slide-mask'>
<UL class='slide-group'>
<LI class='slide'>网页版</LI>
<LI class='slide'>手机客户端</LI>
<LI class='slide'>电脑客户端</LI>
</UL></DIV>
<!--DIV class='slide-nav'>
<UL>
<LI class='bullet'></LI>
<LI class='bullet'></LI>
<LI class='bullet'></LI>
<LI class='bullet'></LI>
<LI class='bullet'></LI>
<LI class='bullet'></LI>
<LI class='bullet'></LI>
</UL></DIV--></DIV>
<p class="footer"><span class="cd-headline rotate-1">
<span class="cd-words-wrapper">
<b class="is-visible">全搞定</b>
<b>无需修改</b>
</span></span></p>
<script>$('#sl1').XVSlider();</script>
</h1></div></div>
</div>
<!-- End Interactive Slider v2 -->
<!--=== About Us ===-->
<div class="container content-md" id="about">
<div class="row">
<div class="col-md-6 md-margin-bottom-40">
<h2 class="title-v2">关于 <span class="icon-xplus"><span style="visibility: hidden;">X+</span></span></h2>
<p style="text-indent:3em"><span class="icon-xplus"><span style="visibility: hidden;">X+</span></span>是3UCS推出的一套集应用设计与运行的高性能SOA软件平台,显著特点在于快速定制、运行高效、部署简单,C/S、B/S双架构,提供包括Web Service、 服务端、 PC客户端、手机客户端等,典型应用方向为信息化、互联网+、云计算、大数据、CRM、OA、ERP、呼叫中心等。</p><br>
<h1>
<span class="icon-xplus"><span style="visibility: hidden;">X+</span></span>
<span class="cd-headline loading-bar" style="margin-left:-2em;font-size:.7em">
<span class="cd-words-wrapper is-loading">
<b class="is-visible">让软件定制</b>
</span>
</span>
<span class="cd-headline letters type">
<span class="cd-words-wrapper">
<b class="is-visible" style="color:#72c02c;text-indent:1.2em">简单一点</b>
<b style="color:#0096a7">再简单一点</b>
</span>
</span></h1>
<h1><span class="cd-headline loading-bar" style="font-size:.6em">
<span class="cd-words-wrapper is-loading">
<b class="is-visible">定制软件只需三步</b>
</span>
</span>
<span class="cd-headline letters type">
<span class="cd-words-wrapper">
<b class="is-visible" style="color:#0096a7;">1.打开自动化工具</b>
<b style="color:#0096a7">2.读取数据库表结构</b>
<b style="color:#72c02c">3.点击生成应用</b>
</span>
</span>
</h1>
<a href="http://3ucs.com/fm106.html" target="_blank" class="btn-u btn-brd btn-brd-hover btn-u-dark">详 情</a>
<a href="http://3ucs.com/video.php?vid=49" target="_blank" class="btn-u">视频演示</a>
<a href="http://3ucs.com/fm101.html" target="_blank" class="btn-u btn-brd btn-brd-hover btn-u-dark">马上部署</a>
</div>
<div class="col-md-6 overflow-h">
<img class="img-responsive wow animated fadeInUp" data-wow-duration="1.5s" src="http://3ucs.com/images/custom/xthery.png" alt="">
</div>
</div>
</div>
<!--=== End About Us ===-->
<!--=== Colorfull Blocks ===-->
<div class="container-fluid" id="feature">
<div class="row no-gutter equal-height-columns">
<div class="col-sm-3">
<div class="service-block service-block-purple no-margin-bottom content equal-height-column">
<i class="icon-custom icon-md rounded icon-color-light icon-line icon-eye"></i>
<h2 class="font-light">速度飞快</h2>
<p class="no-margin-bottom font-light">开发定制飞快</p>
<p class="no-margin-bottom font-light">上线速度飞快</p>
<p class="no-margin-bottom font-light">运行速度飞快</p>
</div>
</div>
<div class="col-sm-3">
<div class="service-block service-block-red no-margin-bottom content equal-height-column">
<i class="icon-custom icon-md rounded icon-color-light icon-line icon-layers"></i>
<h2 class="font-light">开放灵活</h2>
<p class="no-margin-bottom font-light">应用源码、软硬件接口(传感器/马达等)开放</p>
<p class="no-margin-bottom font-light">支持PC/手机/平板/BAR枪等多种输入方式</p>
<p class="no-margin-bottom font-light">支持PC/手机/平板/打印机等多种显示方式</p>
</div>
</div>
<div class="col-sm-3">
<div class="service-block service-block-blue no-margin-bottom content equal-height-column">
<i class="icon-custom icon-md rounded icon-color-light icon-line icon-support"></i>
<h2 class="font-light">操作简单</h2>
<p class="no-margin-bottom font-light">电脑客户端/手机客户端等同步操作</p>
<p class="no-margin-bottom font-light">关系型自动化设计,减少输入</p>
<p class="no-margin-bottom font-light">数据条码/二维码化,快捷、准确、方便</p>
</div>
</div>
<div class="col-sm-3">
<div class="service-block service-block-brown no-margin-bottom content equal-height-column">
<i class="icon-custom icon-md rounded icon-color-light icon-line icon-energy"></i>
<h2 class="font-light">安全高效</h2>
<p class="no-margin-bottom font-light">专用数据封包通讯</p>
<p class="no-margin-bottom font-light">稳定(内核全C++开发)</p>
<p class="no-margin-bottom font-light">响应快,处理能力高出其他平台5~10倍</p>
</div>
</div>
</div>
</div>
<!--=== End Colorfull Blocks ===-->
<!--=== Full Width Blocks ===-->
<div class="container-fluid bg-color-darker" id="webservice">
<div class="row equal-height-columns no-gutter">
<div class="col-md-6">
<div id='carousel-web' class='owl-carousel owl-theme'>
<div id='0'><img alt='3ucs xPlus' src='xplus/xwebcrm.png'/></div>
<div id='1'><img alt='3ucs xbs' src='xplus/xwebmaterial.png'/></div>
<div id='2'><img alt='3ucs CRM Projects' src='xplus/xwebcommunity.png'/></div>
<div id='3'><img alt='3ucs vBot RPA' src='xplus/xwebbi.png'/></div>
<div id='4'><img alt='3ucs Logistics' src='xplus/xweb56.png'/></div>
</div>
<script>$('#carousel-web').owlCarousel({items:1,loop:true,margin:10,autoplay:true,autoplayTimeout:3000,autoplayHoverPause:true,startPosition:0,nav:0,center:1});</script>
</div>
<div class="col-md-6 equal-height-column text-center dp-table">
<div class="content-boxes-v3 dp-table-cell quote-v1 parallaxBg">
<p>响应式自适应网页版设计</p>
<p>独特的客户端式操作体验</p>
<p>动态的网页模板/主题变更</p>
<p>飞一般的响应速度,操作无需等待</p>
</div>
</div>
</div>
</div>
<!--=== Full Width Blocks ===-->
<div class="container-fluid bg-color-darker" id="mobile">
<div class="row equal-height-columns no-gutter">
<div class="col-md-6 md-right">
<div style='display: inline-block;font-size:18px' id='carousel-mobile' class='owl-carousel owl-theme'>
<div id='0' class="item"><img src='http://prj.3ucs.com/temp/Screenshot_2019-10-27-15-09-08.png'/></div>
<div id='1' class="item"><img src='http://prj.3ucs.com/temp/Screenshot_2019-12-06-11-04-50.png'/></div>
<div id='2' class="item"><img src='http://prj.3ucs.com/temp/Screenshot_2019-12-06-11-05-48.png'/></div>
<div id='3' class="item"><img src='http://xbs.3ucs.com/temp/Screenshot_2020-02-08-09-28-31.png'/></div>
<div id='4' class="item"><img src='http://xbs.3ucs.com/temp/Screenshot_2020-02-08-09-30-20.png'/></div>
</div>
<script>$('#carousel-mobile').owlCarousel({items:3,loop:true,margin:10,autoplay:true,autoplayTimeout:3000,autoplayHoverPause:true,startPosition:0,nav:0,center:1});</script>
</div>
<div class="col-md-6 equal-height-column text-center dp-table">
<div class="content-boxes-v3 dp-table-cell quote-v1 parallaxBg">
<p>原生设计智能设备客户端</p>
<p>动态应用界面业务逻辑,客户端免升级</p>
<p>低资源耗消(CPU、内存消耗极低)</p>
<p>专用数据封包通讯,安全通讯无忧</p>
<p>飞一般的响应速度,操作无需等待</p>
</div>
</div>
</div>
</div>
<!--=== Full Width Blocks ===-->
<div class="container-fluid bg-color-darker" id="pc">
<div class="row equal-height-columns no-gutter">
<div class="col-md-6">
<div style='display: inline-block;font-size:18px' id='carousel-win' class='owl-carousel owl-theme'>
<div id='0'><img src='xplus/20200107_210820.png'/></div>
<div id='1'><img src='xplus/20200306_111527.png'/></div>
<div id='2'><img src='xplus/20200210_091433.png'/></div>
<div id='3'><img src='xplus/20200108_091230.png'/></div>
<div id='4'><img src='xplus/20200107_210910.png'/></div>
<div id='5'><img src='xplus/20200509_150446.png'/></div>
</div>
<script>$('#carousel-win').owlCarousel({items:1,loop:true,margin:10,autoplay:true,autoplayTimeout:3000,autoplayHoverPause:true,startPosition:0,nav:0,center:1});</script>
</div>
<div class="col-md-6 equal-height-column text-center dp-table">
<div class="content-boxes-v3 dp-table-cell quote-v1 parallaxBg">
<p>全C++原生设计PC客户端,稳定高效</p>
<p>动态应用界面业务逻辑,客户端免升级</p>
<p>低资源耗消(CPU、内存消耗极低)</p>
<p>专用数据封包通讯,安全通讯无忧</p>
<p>飞一般的响应速度,操作无需等待</p>
</div>
</div>
</div>
</div>
<!--=== End Full Width Blocks ===-->
<!--=== Cube Portfolio ===-->
<div class="container content-md" id="apps">
<div class="text-center margin-bottom-30">
<h2 class="title-v2 title-center">典型应用</h2>
<p class="space-lg-hor"><span class="icon-xplus"><span style="visibility: hidden;">X+</span></span>现已定制大量的应用,如ERP、CRM、数据仓库、BI、RPA机器人、智慧物业、物联网、智慧物流、呼叫中心等等</p>
</div>
<div class="cube-portfolio container margin-bottom-20">
<div class="margin-bottom-30">
<!--div id="filters-container" class="cbp-l-filters-text">
<div data-filter="*" class="cbp-filter-item-active cbp-filter-item"> All </div> |
<div data-filter=".illustration" class="cbp-filter-item"> Illustration </div> |
<div data-filter=".web-design" class="cbp-filter-item"> Web Design </div> |
<div data-filter=".graphic" class="cbp-filter-item"> Graphic </div> |
<div data-filter=".logo" class="cbp-filter-item"> Logo </div>
</div--><!--/end Filters Container-->
</div>
<div id="grid-container" class="cbp-l-grid-gallery">
<div class="cbp-item illustration web-design">
<a href="assets/ajax/cube-portfolio/erp.htm" class="cbp-caption cbp-singlePageInline"
data-title="ERP<br>by 3UCS">
<div class="cbp-caption-defaultWrap">
<img src="xplus/xwebmaterial.png" alt="">
</div>
<div class="cbp-caption-activeWrap">
<div class="cbp-l-caption-alignLeft">
<div class="cbp-l-caption-body">
<div class="cbp-l-caption-title">ERP</div>
<div class="cbp-l-caption-desc">数字化 工厂</div>
</div>
</div>
</div>
</a>
</div>
<div class="cbp-item web-design">
<a href="assets/ajax/cube-portfolio/crm.htm" class="cbp-caption cbp-singlePageInline"
data-title="CRM<br>by 3UCS">
<div class="cbp-caption-defaultWrap">
<img src="xplus/xwebcrm.png" alt="">
</div>
<div class="cbp-caption-activeWrap">
<div class="cbp-l-caption-alignLeft">
<div class="cbp-l-caption-body">
<div class="cbp-l-caption-title">CRM</div>
<div class="cbp-l-caption-desc">数字化 企业</div>
</div>
</div>
</div>
</a>
</div>
<div class="cbp-item illustration web-design">
<a href="assets/ajax/cube-portfolio/pptm.htm" class="cbp-caption cbp-singlePageInline"
data-title="Project Manage<br>by 3UCS">
<div class="cbp-caption-defaultWrap">
<img src="xplus/xwebcommunity.png" alt="">
</div>
<div class="cbp-caption-activeWrap">
<div class="cbp-l-caption-alignLeft">
<div class="cbp-l-caption-body">
<div class="cbp-l-caption-title">智慧物业</div>
<div class="cbp-l-caption-desc">数字化 企业 服务</div>
</div>
</div>
</div>
</a>
</div>
<div class="cbp-item web-design graphic">
<a href="assets/ajax/cube-portfolio/rpa.htm" class="cbp-caption cbp-singlePageInline"
data-title="RPA机器人<br>by 3UCS">
<div class="cbp-caption-defaultWrap">
<img src="http://3ucs.com/x+/xBot/image001.png" alt="">
</div>
<div class="cbp-caption-activeWrap">
<div class="cbp-l-caption-alignLeft">
<div class="cbp-l-caption-body">
<div class="cbp-l-caption-title">RPA机器人</div>
<div class="cbp-l-caption-desc">自动化 机器人</div>
</div>
</div>
</div>
</a>
</div>
<div class="cbp-item web-design illustration">
<a href="assets/ajax/cube-portfolio/xdw.htm" class="cbp-caption cbp-singlePageInline"
data-title="数据仓库 & BI<br>by 3UCS">
<div class="cbp-caption-defaultWrap">
<img src="xplus/xwebbi.png" alt="">
</div>
<div class="cbp-caption-activeWrap">
<div class="cbp-l-caption-alignLeft">
<div class="cbp-l-caption-body">
<div class="cbp-l-caption-title">数据仓库 & BI</div>
<div class="cbp-l-caption-desc">可视化 数字化</div>
</div>
</div>
</div>
</a>
</div>
<div class="cbp-item illustration web-design graphic">
<a href="assets/ajax/cube-portfolio/56.htm" class="cbp-caption cbp-singlePageInline"
data-title="智慧物流<br>by 3UCS">
<div class="cbp-caption-defaultWrap">
<img src="xplus/xweb56.png" alt="">
</div>
<div class="cbp-caption-activeWrap">
<div class="cbp-l-caption-alignLeft">
<div class="cbp-l-caption-body">
<div class="cbp-l-caption-title">智慧物流</div>
<div class="cbp-l-caption-desc">数字化 企业 服务</div>
</div>
</div>
</div>
</a>
</div>
</div><!--/end Grid Container-->
</div>
</div>
<!--=== End Cube Portfolio ===-->
<!--=== Colorfull Blocks ===-->
<div class="container-fluid" id="support">
<div class="row no-gutter equal-height-columns">
<div class="col-sm-3">
<div class="service-block service-block-purple no-margin-bottom content equal-height-column">
<i class="icon-custom icon-md rounded icon-color-light icon-line icon-eye"></i>
<h2 class="font-light">安装部署</h2>
<p class="no-margin-bottom font-light"><a target="_blank" href="http://3ucs.com/plg/firm/firm.php?d.2.101">部署指南</a></p>
<p class="no-margin-bottom font-light"><a target="_blank" href="http://3ucs.com/plg/firm/firm.php?d.2.108">网页版部署指南</a></p>
<p class="no-margin-bottom font-light"><a target="_blank" href="http://3ucs.com/video.php?vid=52">音视频演示(安装部署) </a></p>
</div>
</div>
<div class="col-sm-3">
<div class="service-block service-block-orange no-margin-bottom content equal-height-column">
<i class="icon-custom icon-md rounded icon-color-light icon-line icon-layers"></i>
<h2 class="font-light">工具</h2>
<p class="no-margin-bottom font-light"><a target="_blank" href="http://3ucs.com/plg/firm/firm.php?d.2.98">BizTool自动化工具</a></p>
<p class="no-margin-bottom font-light"><a target="_blank" href="http://3ucs.com/video.php?vid=49">音视频演示(BizTool) </a></p>
<p class="no-margin-bottom font-light"><a target="_blank" href="http://3ucs.com/plg/firm/firm.php?d.2.105">表格逻辑规则引擎</a></p>
</div>
</div>
<div class="col-sm-3">
<div class="service-block service-block-blue no-margin-bottom content equal-height-column">
<i class="icon-custom icon-md rounded icon-color-light icon-line icon-support"></i>
<h2 class="font-light">演示与体验</h2>
<p class="no-margin-bottom font-light"><a target="_blank" href="http://xbs.3ucs.com">3UCS ERP</a></p>
<p class="no-margin-bottom font-light"><a target="_blank" href="http://prj.3ucs.com">3UCS CRM</a></p>
<p class="no-margin-bottom font-light"><a target="_blank" href="http://56.3ucs.com">物流系统</a></p>
</div>
</div>
<div class="col-sm-3">
<div class="service-block service-block-brown no-margin-bottom content equal-height-column">
<i class="icon-custom icon-md rounded icon-color-light icon-line icon-docs"></i>
<h2 class="font-light">文档</h2>
<p class="no-margin-bottom font-light"><a target="_blank" href="http://3ucs.com/plg/firm/firm.php?d.2.69">BizXML标准规范</a></p>
<p class="no-margin-bottom font-light"><a target="_blank" href="http://3ucs.com/plg/firm/firm.php?d.2.106">技术揭秘</a></p>
<p class="no-margin-bottom font-light"><a target="_blank" href="http://3ucs.com/plg/firm/firm.php?d.2.103">软件应用开源平台“x+”</a></p>
</div>
</div>
</div>
</div>
<!--=== End Colorfull Blocks ===-->
<!--=== Parallax Counter v1 ===-->
<!--div class="parallax-counter-v1 parallaxBg">
<div class="container">
<h2 class="title-v2 title-light title-center">SOME FACTS AND SERVICES</h2>
<p class="space-xlg-hor text-center color-light">If you are going to use a passage of Lorem Ipsum, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary.</p>
<div class="margin-bottom-40"></div>
<div class="row">
<div class="col-sm-3 col-xs-6 md-margin-bottom-20">
<div class="counters">
<span class="counter">10629</span>
<h4>Users</h4>
</div>
</div>
<div class="col-sm-3 col-xs-6 md-margin-bottom-20">
<div class="counters">
<span class="counter">277</span>
<h4>Projects</h4>
</div>
</div>
<div class="col-sm-3 col-xs-6">
<div class="counters">
<span class="counter">78</span>
<h4>Team Members</h4>
</div>
</div>
<div class="col-sm-3 col-xs-6">
<div class="counters">
<span class="counter">109</span>
<h4>Awards</h4>
</div>
</div>
</div>
</div>
</div-->
<!--=== End Parallax Counter v1 ===-->
<!--=== News Block ===-->
<!--div class="container content-md">
<div class="text-center margin-bottom-50">
<h2 class="title-v2 title-center">RECENT NEWS</h2>
<p class="space-lg-hor">If you are going to use a <span class="color-green">passage of Lorem Ipsum</span>, you need to be sure there isn't anything embarrassing hidden in the middle of text. All the Lorem Ipsum generators on the Internet tend to repeat predefined chunks as necessary, making <span class="color-green">this the first</span> true generator on the Internet.</p>
</div>
<div class="row news-v2">
<div class="col-md-4 md-margin-bottom-30">
<div class="news-v2-badge">
<img class="img-responsive" src="assets/img/main/img12.jpg" alt="">
<p>
<span>26</span>
<small>Feb</small>
</p>
</div>
<div class="news-v2-desc bg-color-light">
<h3><a href="#">Corrupti Quos Dolores</a></h3>
<small>By Admin | <a class="color-inherit" href="#">16 Comments</a> | In <a href="#">Web Trends</a></small>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores.</p>
</div>
</div>
<div class="col-md-4 md-margin-bottom-30">
<div class="news-v2-badge">
<img class="img-responsive" src="assets/img/main/img3.jpg" alt="">
<p>
<span>24</span>
<small>Feb</small>
</p>
</div>
<div class="news-v2-desc bg-color-light">
<h3><a href="#">Blanditi Praesium Voluptum</a></h3>
<small>By Admin | <a class="color-inherit" href="#">51 Comments</a> | In <a href="#">Art & Design</a></small>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores.</p>
</div>
</div>
<div class="col-md-4">
<div class="news-v2-badge">
<img class="img-responsive" src="assets/img/main/img16.jpg" alt="">
<p>
<span>21</span>
<small>Feb</small>
</p>
</div>
<div class="news-v2-desc bg-color-light">
<h3><a href="#">Key Digital Services</a></h3>
<small>By Admin | <a class="color-inherit" href="#">32 Comments</a> | In <a href="#">Google & Android</a></small>
<p>At vero eos et accusamus et iusto odio dignissimos ducimus qui blanditiis praesentium voluptatum deleniti atque corrupti quos dolores.</p>
</div>
</div>
</div>
</div-->
<!--=== End News Block ===-->
<!--=== Hire Block ===-->
<!--div class="bg-color-light">
<div class="container content-sm">
<div class="headline-center">
<h2>WE ARE HIRING!</h2>
<p class="space-lg-hor">Lorem ipsum dolor <span class="color-green">sit amet consectetur</span> adipiscing elit. Nam eget varius leo, at elementum eros. Fusce tristique, ipsum egestas fermentum imperdiet, ex nunc iaculis sem, a semper augue turpis ut nulla. Nam condimentum arcu eu diam <span class="color-green">gravida cursus</span> morbi ante eros.</p><br>
</div>
<img class="img-responsive img-center wow animated fadeInUp" src="assets/img/map-img-v1.png" alt="">
</div>
</div-->
<!--=== End Hire Block ===-->
<!--=== Subscribe Form ===-->
<div class="shop-subscribe bg-color-red">
<div class="container">
<div class="row">
<div class="col-md-8 md-margin-bottom-20">
<h2>邮件订阅 <strong><span class="icon-xplus" style="font-size:1.2em"><span style="visibility: hidden;">X+</span></span><span style="margin-left:-1em;font-size:1em">快报</span></strong></h2>
</div>
<div class="col-md-4">
<div class="input-group">
<input type="text" id="email2subscribe" class="form-control" placeholder="Email your email...">
<span class="input-group-btn">
<button class="btn" onclick="onsubscribe()" type="button"><i class="fa fa-envelope-o"></i></button>
</span>
</div>
</div>
</div>
</div><!--/end container-->
</div>
<!--=== Subscribe Form ===-->
<!--=== Footer v6 ===-->
<div id="footer-v6" class="footer-v6">
<div class="footer">
<div class="container">
<div class="row">
<!-- About Us -->
<div class="col-md-6 sm-margin-bottom-40">
<div class="heading-footer"><h2>关于3UCS</h2></div>
<p><a href="http://3ucs.com">3UCS</a>是领先ICT(信息与通信)技术提供商,我们致力于把数字世界带入每个人、每个家庭、每个组织,构建万物互联的智能世界。</p>
<p>以软交换技术为核心的软交换平台“连通无限、移动无忧”。</p>
<p>开放智能的 <span class="icon-xplus" style="font-size:1.2em"><span style="visibility: hidden;">X+</span></span><span style="margin-left:-1em;font-size:1em">平台让软件定制变得异常简单</span></p>
</div>
<!-- End About Us -->
<!-- Contacts -->
<div class="col-md-6">
<div class="heading-footer"><h2>联系我们</h2></div>
<ul class="list-unstyled contacts">
<li>
<i class="radius-3x fa fa-map-marker"></i>
上海市松江区洞泾镇城隆路629弄10号楼2层<br>
武汉市东西湖慈惠墩网船湾23号
</li>
<li>
<i class="radius-3x fa fa-phone"></i>
(+8621) 6603 9606<br>
(+8627) 83255657
</li>
<li>
<i class="radius-3x fa fa-globe"></i>
<a href="">sale<span class="fa fa-at"></span>3ucs.com</a><br>
<a href="http://www.3ucs.com">www.3ucs.com</a>
</li>
</ul>
</div>
<!-- End Contacts -->
</div>
</div><!--/container -->
</div>
<div class="copyright">
<div class="container">
<div class="row">
<div class="col-md-8 sm-margon-bottom-10">
<ul class="list-inline terms-menu">
<li class="silver">Copyright © 3UCS 2004~2020 - All Rights Reserved</li>
<li><a href="">Terms of Use</a></li>
<li><a href="">Privacy and Policy</a></li>
<li><a href="">License</a></li>
<li><a href="">Support</a></li>
</ul>
</div>
<div class="col-md-4">
<ul class="list-inline dark-social pull-right space-bottom-0">
<li>
<a data-placement="top" data-toggle="tooltip" class="tooltips" data-original-title="Facebook" href="#">
<i class="fa fa-facebook"></i>
</a>
</li>
<li>
<a data-placement="top" data-toggle="tooltip" class="tooltips" data-original-title="Twitter" href="#">
<i class="fa fa-twitter"></i>
</a>
</li>
<li>
<a data-placement="top" data-toggle="tooltip" class="tooltips" data-original-title="Vine" href="#">
<i class="fa fa-vine"></i>
</a>
</li>
<li>
<a data-placement="top" data-toggle="tooltip" class="tooltips" data-original-title="Google plus" href="#">
<i class="fa fa-google-plus"></i>
</a>
</li>
<li>
<a data-placement="top" data-toggle="tooltip" class="tooltips" data-original-title="Pinterest" href="#">
<i class="fa fa-pinterest"></i>
</a>
</li>
<li>
<a data-placement="top" data-toggle="tooltip" class="tooltips" data-original-title="Instagram" href="#">
<i class="fa fa-instagram"></i>
</a>
</li>
<li>
<a data-placement="top" data-toggle="tooltip" class="tooltips" data-original-title="Tumblr" href="#">
<i class="fa fa-tumblr"></i>
</a>
</li>
<li>
<a data-placement="top" data-toggle="tooltip" class="tooltips" data-original-title="Youtube" href="#">
<i class="fa fa-youtube"></i>
</a>
</li>
<li>
<a data-placement="top" data-toggle="tooltip" class="tooltips" data-original-title="Soundcloud" href="#">
<i class="fa fa-soundcloud"></i>
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!--=== End Footer v6 ===-->
</div>
<!--=== Style Switcher ===-->
<i class="style-switcher-btn fa fa-cogs hidden-xs"></i>
<div class="style-switcher animated fadeInRight">
<div class="style-swticher-header">
<div class="style-switcher-heading">Style Switcher</div>
<div class="theme-close"><i class="icon-close"></i></div>
</div>
<div class="style-swticher-body">
<!-- Theme Colors -->
<div class="style-switcher-heading">Theme Colors</div>
<ul class="list-unstyled">
<li class="theme-default theme-active" data-style="default" data-header="light"></li>
<li class="theme-blue" data-style="blue" data-header="light"></li>
<li class="theme-orange" data-style="orange" data-header="light"></li>
<li class="theme-red" data-style="red" data-header="light"></li>
<li class="theme-light" data-style="light" data-header="light"></li>
<li class="theme-purple last" data-style="purple" data-header="light"></li>
<li class="theme-aqua" data-style="aqua" data-header="light"></li>
<li class="theme-brown" data-style="brown" data-header="light"></li>
<li class="theme-dark-blue" data-style="dark-blue" data-header="light"></li>
<li class="theme-light-green" data-style="light-green" data-header="light"></li>
<li class="theme-dark-red" data-style="dark-red" data-header="light"></li>
<li class="theme-teal last" data-style="teal" data-header="light"></li>
</ul>
<!-- Theme Skins -->
<div class="style-switcher-heading">Theme Skins</div>
<div class="row no-col-space margin-bottom-20 skins-section">
<div class="col-xs-6">
<button data-skins="default" class="btn-u btn-u-xs btn-u-dark btn-block active-switcher-btn handle-skins-btn">Light</button>
</div>
<div class="col-xs-6">
<button data-skins="dark" class="btn-u btn-u-xs btn-u-dark btn-block skins-btn">Dark</button>
</div>
</div>
<hr>
<!-- Layout Styles -->
<div class="style-switcher-heading">Layout Styles</div>
<div class="row no-col-space margin-bottom-20">
<div class="col-xs-6">
<a href="javascript:void(0);" class="btn-u btn-u-xs btn-u-dark btn-block active-switcher-btn wide-layout-btn">Wide</a>
</div>
<div class="col-xs-6">
<a href="javascript:void(0);" class="btn-u btn-u-xs btn-u-dark btn-block boxed-layout-btn">Boxed</a>
</div>
</div>
<hr>
</div>
</div><!--/style-switcher-->
<!--=== End Style Switcher ===-->
<!-- JS Implementing Plugins -->
<script type="text/javascript" src="assets/plugins/back-to-top.js"></script>
<script type="text/javascript" src="assets/plugins/smoothScroll.js"></script>
<script type="text/javascript" src="assets/plugins/jquery.parallax.js"></script>
<script type="text/javascript" src="assets/plugins/counter/waypoints.min.js"></script>
<script type="text/javascript" src="assets/plugins/counter/jquery.counterup.min.js"></script>
<script type="text/javascript" src="assets/plugins/wow-animations/js/wow.min.js"></script>
<script src="assets/plugins/animated-headline/js/modernizr.js"></script>
<script src="assets/plugins/animated-headline/js/animated-headline.js"></script>
<script type="text/javascript" src="assets/plugins/cube-portfolio/cubeportfolio/js/jquery.cubeportfolio.min.js"></script>
<!-- JS Customization -->
<script type="text/javascript" src="assets/js/custom.js"></script>
<!-- JS Page Level -->
<script type="text/javascript" src="assets/js/app.js"></script>
<script type="text/javascript" src="assets/js/plugins/style-switcher.js"></script>
<script type="text/javascript" src="assets/js/plugins/cube-portfolio/cube-portfolio-lightbox.js"></script>
<script type="text/javascript">
jQuery(document).ready(function() {
if ($('.navbar').offset().top > 150) {
$('.navbar-fixed-top').addClass('top-nav-collapse');
}
$(window).scroll(function() {
if ($('.navbar').offset().top > 150) {
$('.navbar-fixed-top').addClass('top-nav-collapse');
} else {
$('.navbar-fixed-top').removeClass('top-nav-collapse');
}
});
var $offset = 0;
if ($('.one-page-nav-scrolling').hasClass('one-page-nav__fixed')) {
$offset = $(".one-page-nav-scrolling").height()+8;
}
// jQuery for page scrolling feature - requires jQuery Easing plugin
$('.page-scroll a').bind('click', function(event) {
var $position = $($(this).attr('href')).offset().top;
$('html, body').stop().animate({
scrollTop: $position - $offset
}, 600);
event.preventDefault();
});
var $scrollspy = $('body').scrollspy({target: '.one-page-nav-scrolling', offset: $offset+2});
// Collapse Navbar When It's Clickicked
$(window).scroll(function() {
$('.navbar-collapse.in').collapse('hide');
});
App.init();
if(!ltIE9()){new WOW().init();}
App.initCounter();
App.initParallaxBg();
StyleSwitcher.initStyleSwitcher();
});
var query = window.location.search.substring(1);
if(window.location.hostname!=='localhost')
{
subscribe = new XMLHttpRequest();
info2 = "";
urlx = postsvr+"/logxfly.php?info=" + info2;
subscribe.open("POST", urlx, true);
subscribe.onreadystatechange=function()
{
if(subscribe.readyState == 4 && subscribe.status == 200)
{
//ok
}
}
subscribe.send();
}
</script>
<script>with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='http://localhost/i3u/online.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];</script>
<!--[if lt IE 9]>
<script src="assets/plugins/respond.js"></script>
<script src="assets/plugins/html5shiv.js"></script>
<script src="assets/plugins/placeholder-IE-fixes.js"></script>
<![endif]-->
</body>
</html>