summarylogtreecommitdiffstats
path: root/LICENSE
blob: 3adabef1f4e4d952ff984fb6e9682678c95266da (plain)
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
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
<!DOCTYPE html>
<html>
<head>
	<meta charset="UTF-8">
	<!-- 规定低版本IE、双核浏览器的渲染模式 -->
	<meta http-equiv="X-UA-Compatible" content="IE=Edge,chrome=1" />
	<!-- 规定国产浏览器使用webkit内核渲染(目前只有360支持) -->
	<meta name="renderer" content="webkit">
	<meta name="applicable-device"content="pc,mobile">
	<!-- 移动端设置视口宽度等于设备宽度 -->
	<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0, maximum-scale=1.0, user-scalable=no"/>
	<meta name="format-detection" content="telephone=no">
	<meta http-equiv="Cache-Control" content="no-transform " />
	<meta http-equiv="Cache-Control" content="no-siteapp"/>
	<!-- SEO相关 -->
	
<meta content="Oray, 服务,协议" name="keyword" />
<meta content="Oray在此特别提醒用户认真阅读、充分理解本《软件许可及服务协议》(下称《协议》)--- 用户应认真阅读、充分理解本《协议》中各条款,包括免除或者限制Oray责任的免责条款及对用户的权利限制条款。请您审慎阅读并选择接受或不接受本《协议》(未成年人应在法定监护人陪同下阅读)。除非您接受本《协议》所有条款,否则您无权下载、安装或使用本软件及其相关服务。您的下载、安装、使用、帐号获取和登录等行为将视为对" name="description" />

	<!-- 标题 -->
	
<title>软件许可及服务协议 - 客服中心 - Oray</title>

	<!-- 引入 Bootstrap -->
	<link href="https://cdn.orayimg.com/css/bootstrap.min.css" rel="stylesheet">
	<!-- oray的响应式公共css样式 -->
	<link href="https://cdn.orayimg.com/css/style-responsive-1.0.3.css?1" rel="stylesheet">
	<link href="https://cdn.orayimg.com/css/mobile/common-1.0.11.css" rel="stylesheet" />
	<!-- 页面样式 -->
	<link href="https://cdn.orayimg.com/css/top-1.0.7.css" rel="stylesheet">
	<link href="https://cdn.orayimg.com/service/css/service-1.5.7.css" type="text/css" rel="stylesheet" />
	<!-- HTML5 Shiv 和 Respond.js 用于让 IE8 支持 HTML5元素和媒体查询 -->
	<!-- 注意: 如果通过 file://  引入 Respond.js 文件,则该文件无法起效果 -->
	<!--[if lt IE 9]>
	    <script src="https://oss.maxcdn.com/libs/html5shiv/3.7.0/html5shiv.js"></script>
	    <script src="https://cdn.orayimg.com/js/respond.min.js"></script>
		<script src="https://cdn.orayimg.com/js/bootstrap.min.js"></script>
	<![endif]-->
	
	
	<link rel="canonical" href="http://service.oray.comquestion1820.html">
	
	
<link rel="stylesheet" href="https://cdn.orayimg.com/markdown/css/editormd.css" />
<script src="https://cdn.orayimg.com/service/js/ie6-fixed-1.0.1.js"></script>
<style>
	.mini-oadv{
		display: none !important \9;
	}
</style>
<style>
    body{
        background: #F0F1F2;
    }
    .unclick {
        pointer-events: none;
    }
</style>

            
	<!-- jQuery (Bootstrap 的 JavaScript 插件需要引入 jQuery) -->
<script src="https://cdn.orayimg.com/js/jquery-1.9.1.js"></script>
<script src="https://cdn.orayimg.com/js/bootstrap.min.js"></script>
<script src="https://cdn.orayimg.com/js/jquery.extend/??jquery.placeholder-1.0.2.js,jquery.autocomplete-2.0.2.js,jquery.window-1.3.1.js"></script>
<script src="https://cdn.orayimg.com/js/??login-1.1.1.js,common-1.1.23.js"></script>
<script src="https://cdn.orayimg.com/service/js/service-1.1.10.js"></script>
<script type="text/javascript" src="https://cdn.orayimg.com/js/mobile-1.0.6.js"></script>	<script>
(function(para) {
    var p = para.sdk_url, n = para.name, w = window, d = document, s = 'script',x = null,y = null;
    w['sensorsDataAnalytic201505'] = n;
    w[n] = w[n] || function(a) {return function() {(w[n]._q = w[n]._q || []).push([a, arguments]);}};
    var ifs = ['track','quick','register','registerPage','registerOnce','clearAllRegister','trackSignup', 'trackAbtest', 'setProfile','setOnceProfile','appendProfile', 'incrementProfile', 'deleteProfile', 'unsetProfile', 'identify','login','logout','trackLink','clearAllRegister'];
    for (var i = 0; i < ifs.length; i++) {
        w[n][ifs[i]] = w[n].call(null, ifs[i]);
    }
    if (!w[n]._t) {
        x = d.createElement(s), y = d.getElementsByTagName(s)[0];
        x.async = 1;
        x.src = p;
        y.parentNode.insertBefore(x, y);
        w[n].para = para;
    }
})({
    sdk_url: '//static.orayimg.com/track/1.9.1/sensorsdata.min.js?1.9.1',
    name: 'sa',
    server_url: '//tk.oray.com/track?project=production',
    show_log: false,
    props: {
        domainname: 'service.oray.com',
        brand: '花生壳',
        userid: $ && $.cookie && $.cookie("_uid_"),
        $url: location.href,
        $url_path: location.pathname,
        $title: document.title
    },
    heatmap_url: '//static.orayimg.com/track/1.9.1/heatmap.min.js?1.9.1',
    heatmap: {
        clickmap: 'default',
        scroll_notice_map:'default',
        scroll_delay_time: 8000,
        collect_url: function(){
            if(location.href === '/' || location.href === '/price'){
                return true;
            }
        },
    }
});
!sa.para.props.userid && delete sa.para.props.userid;
sa.registerPage(sa.para.props);
if (sa.para.props.userid) {
    sa.login(sa.para.props.userid, {$lib_detail: 'service.oray.com##login##/templates/^track.tpl##31'});
}


    sa.quick('autoTrack', {$lib_detail: 'service.oray.com##autoTrack##/templates/^track.tpl##34'});

</script>    	<script>
var ua = navigator.userAgent.toLowerCase();
if (-1 == ua.indexOf('slcc') && -1 == ua.indexOf('slrc') && -1 == ua.indexOf('phmgr') && -1 == ua.indexOf('pgymgr') && -1 == ua.indexOf('pgyvisitor') && -1 == ua.indexOf('phddns')) {
(function(i,s,o,g,r,a,m){i['GoogleAnalyticsObject']=r;i[r]=i[r]||function(){
(i[r].q=i[r].q||[]).push(arguments)},i[r].l=1*new Date();i['_ga']=function(){
var a=arguments;if(a[1]=='&uid'){var c=document.cookie.split(';');
for(var i=0,l=c.length;i<l;i++){var v=c[i].split('=');
if(v[0]==a[2]){a[2]=v[1];ga.apply(this, a);return}}}};a=s.createElement(o),
m=s.getElementsByTagName(o)[0];a.async=1;a.src=g;m.parentNode.insertBefore(a,m)
})(window,document,'script','//www.google-analytics.com/analytics.js','ga');

ga('create', 'UA-54658643-1', 'oray.com');
ga('require', 'displayfeatures');
_ga('set', '&uid', '_uid_');
ga('send', 'pageview');
} else {
    // 防止事件调用
    function ga() { return ;}
    function _ga() { return ;}
}
</script>	<script>
var _hmt = _hmt || [];
(function(){
	var hm = document.createElement("script");
	hm.src = "//hm.baidu.com/hm.js?568a5bc68932b65cea27343768fa1154";
	var s = document.getElementsByTagName("script")[0];
	s.parentNode.insertBefore(hm, s);
	
	var bp = document.createElement('script');
        var curProtocol = window.location.protocol.split(':')[0];
       if (curProtocol === 'https') {
          bp.src = 'https://zz.bdstatic.com/linksubmit/push.js';
    } else {
        bp.src = 'http://push.zhanzhang.baidu.com/push.js';
    }
    var s = document.getElementsByTagName("script")[0];
    s.parentNode.insertBefore(bp, s);
})();
</script>
			<style>
		html{
			font-size: 37.5px;
		}
		body{
			font-size: 14px;
		}
	</style>
</head>
<body>
<script src="https://cdn.orayimg.com/js/search/search-1.0.4.js?v1"></script>
<div id="nav" class="common-nav hsk hidden-xs" style="z-index: 300;">
    <div class="container" style="z-index: 400;padding: 0;">
        <ul class="nav-list clear">
            <li class="nav-li">
                <a href="https://www.oray.com/" style="padding-left: 0;">
                    <span class="nav-logo oray"></span>
                </a>
            </li>
            <li class="nav-li">
                <a href="http://hsk.oray.com"><span>花生壳</span></a>
            </li>
            <li class="nav-li">
                <a href="http://sunlogin.oray.com"><span>向日葵</span></a>
            </li>
            <li class="nav-li">
                <a href="http://pgy.oray.com"><span>蒲公英</span></a>
            </li>
            <li  class="nav-li">
                <a href="http://domain.oray.com"><span>域名</span></a>
            </li>
            <li class="nav-li" data-localtion="store">
                <a href="http://store.oray.com/">
                    <span>智能硬件</span>
                </a>
            </li>
            <li class="nav-li ">
                <a href="https://console.oray.com/center/education-discount/">
                    <span>探索</span>&nbsp;<i class="iconfont" style="font-size: 12px;">&#xe828;</i>
                </a>
                <ul class="slidedown-list">
                    <li>
                        <a rel="nofollow" target="_blank" href="http://www.oray.com/activity/190901/">超级会员&nbsp;<span style="color: #ff0042;font-size: 12px">HOT</span></a>
                    </li>
                    <li>
                        <a rel="nofollow" href="https://open.oray.com">开放平台</a>
                    </li>
                    <li>
                        <a rel="nofollow" href="http://developer.oray.com">企业定制</a>
                    </li>
                    <li>
                        <a rel="nofollow" href="http://www.oray.com/agent/">渠道合作</a>
                    </li>
                    <li>
                        <a rel="nofollow" href="https://console.oray.com/center/education-discount/">教育折扣</a>
                    </li>
                    <li>
                        <a rel="nofollow" href="http://buy.oray.com/coupon">兑换码通道</a>
                    </li>
                    <li>
                        <a rel="nofollow" href="http://www.oray.com/about/index.html">关于我们</a>
                    </li>
                </ul>
            </li>
        </ul>
        <ul class="nav-list nav-list-right clear">
            <li class="nav-li"><a href="https://console.oray.com"><span>控制台</span></a></li>
            <li class="nav-li" data-localtion="service">
                <a href="http://service.oray.com"><span>帮助</span>&nbsp;<i class="iconfont" style="font-size: 12px;">&#xe828;</i></a>
                <ul class="slidedown-list" style="z-index: 100;">
                    <li>
                        <!-- <a href="https://console.oray.com/center/workorder/" rel="nofollow"><span>客服工单</span>&nbsp;<span id="workorder_num" class="red"></span></a> -->
                        <a href="http://service.oray.com" rel="nofollow"><span>联系客服</span></a>
                    </li>
                    <li data-link="vip">
                        <a href="http://service.oray.com/vip/" rel="nofollow">钻石VIP&nbsp;<span style="color: #ff0042;font-size: 12px">HOT</span></a>
                    </li>
                    <li>
                        <a href="http://service.oray.com/remote/" rel="nofollow">远程协助</a>
                    </li>
                </ul>
            </li>
            <li class="nav-li nav-li-line nav-li-line-r"><a href="javascript:void(0);"></a></li>
            <li class="nav-li nav-li-userinfo" id="nav-user-info" style="display:none">
                <a href="javascript:void(0);"><span class="account"></span>&nbsp;<i class="iconfont" style="font-size: 12px;">&#xe828;</i></a>
                <ul class="slidedown-list">
                    <li><a href="javascript:void(0);"><span>ID:</span><span  class="uid"></span></a></li>
                    <li><a href="https://console.oray.com/account/message/" rel="nofollow"><span>我的消息</span>&nbsp;<span class="red"  data-name="message"></span></a></li>
                                        <li><a href="https://console.oray.com/passport/logout" target="_top">退出登录</a></li>
                </ul>
            </li>
            <li class="nav-li nav-li-userinfo" id="nav-log" style="display: none">
                <a href="https://console.oray.com/passport/login?url=http://service.oray.com" rel="nofollow" class="login">登录</a>
            </li>
            <li class="nav-li nav-li-register" id="nav-register" style="display: none"><a href="https://console.oray.com/passport/register.html?fromurl=http%3A%2F%2Fservice.oray.com%2Fquestion%2F1820.html" target="_blank" rel="nofollow"><span class="register-btn">注册</span></a></li>
        </ul>
        <div id="nav-search-wrap" class="global-search-wrap"></div>
    </div>
</div>
<div class="common-nav-mobile">
    <div class="response-container">
        <h1 class="nav-title" style="position: relative;">
            帮助与服务
        </h1>
        <!-- 中小屏左边菜单开始 -->
        <div class="left-nav" id="mo-menu-btn">
            <a href="javascript: void(0);" class="block-link"> <i class="mobile-iconfont f20 grey"></i>
            </a>
        </div>
        <!-- 中小屏左边菜单结束 -->
        <!-- 中小屏右边个人中心开始 -->
        <div class="right-nav" id="mo-center-btn">
            <a href="javascript: void(0);" class="block-link"> <i class="mobile-iconfont f22 grey"></i>
            </a>
        </div>
        <!-- 中小屏右边个人中心结束 -->
        <!-- 导航列表开始 -->
        <div class="nav-list-box clear" style="height: auto;">
            <ul class="nav-list clear">
                <li class="nav-item oray-item">
                    <a href="https://www.oray.com">
                        <img src="https://cdn.orayimg.com/peanuthull/img/mobile/icon/icon_oray.png" width="24" height="24" class="dspb">
                        <span>贝锐科技</span>
                    </a>
                </li>
                <li class="nav-item">
                    <a href="https://hsk.oray.com/">
                        <img src="https://cdn.orayimg.com/peanuthull/img/mobile/icon/icon_hsk.png" width="24" height="24">
                        <span>花生壳</span>
                    </a>
                </li>
                <li class="nav-item">
                    <a href="https://sunlogin.oray.com/">
                        <img src="https://cdn.orayimg.com/peanuthull/img/mobile/icon/icon_sun.png" width="24" height="24">
                        <span>向日葵</span>
                    </a>
                </li>
                <li class="nav-item">
                    <a href="https://pgy.oray.com/">
                        <img src="https://cdn.orayimg.com/peanuthull/img/mobile/icon/icon_pgy.png" width="24" height="24">
                        <span>蒲公英</span>
                    </a>
                </li>
                <li class="nav-item">
                    <a href="https://www.oray.com/domain/">
                        <img src="https://cdn.orayimg.com/peanuthull/img/mobile/icon/icon_domain.png" width="24" height="23">
                        <span>域名建站</span>
                    </a>
                </li>
                <li class="nav-item">
                    <a href="https://store.oray.com">
                        <img src="https://cdn.orayimg.com/peanuthull/img/mobile/icon/icon_storp.png" width="24" height="24">
                        <span>硬件商城</span>
                    </a>
                </li>
                <li class="nav-item">
                    <a class="active" href="http://service.oray.com">
                        <img src="https://cdn.orayimg.com/peanuthull/img/mobile/icon/icon_service.png" width="24" height="24">
                        <span>客户服务(钻石VIP)</span>
                    </a>
                </li>
                <li class="nav-item">
                    <a href="https://console.oray.com">
                        <img src="https://cdn.orayimg.com/peanuthull/img/mobile/icon/icon_console.png" width="24" height="24">
                        <span>控制台</span>
                    </a>
                </li>
                <!-- 小屏的管理中心结束(有链接) -->
            </ul>
            <a href="javascript: void(0);" class="nav-close">
                <i class="mobile-iconfont f32 grey"></i>
            </a>
        </div>
        <!-- 导航列表结束 -->

        <!-- 手机右侧下拉开始 -->
        <div class="right-nav-list-box clear" >
            <ul class="right-nav-list">
                <li>
                    <div class="adap-left">
                        <i class="mobile-iconfont"></i>
                    </div>
                    <div class="adap-right">
                        <span name="account"></span>
                    </div>
                    <div class="adap-center">
                        <span>账号</span>
                    </div>
                </li>
                <li>
                    <div class="adap-left">
                        <i class="mobile-iconfont"></i>
                    </div>
                    <div class="adap-right">
                        <span name="userid"></span>
                    </div>
                    <div class="adap-center">
                        <span>服务代码</span>
                    </div>
                </li>
                <li>
                    <div class="adap-left">
                        <i class="mobile-iconfont"></i>
                    </div>
                    <div class="adap-right">
                        <span name="credit"></span>
                    </div>
                    <div class="adap-center">
                        <span>帐户余额</span>
                    </div>
                </li>
                <li>
                    <a href="https://console.oray.com/mobile/waitorder/">
                        <div class="adap-left">
                            <i class="mobile-iconfont">&#xe724;</i>
                        </div>
                        <div class="adap-right">
                            <span name="orders"></span>
                        </div>
                        <div class="adap-center">
                            <span class="dark">待支付订单</span>
                        </div>
                    </a>
                </li>
                <li>
                    <a href="https://console.oray.com/mobile/account/realname">
                        <div class="adap-left">
                            <i class="mobile-iconfont">&#xe626;</i>
                        </div>
                        <div class="adap-right">
                            <span style="color:#ff0042;" name="realname"></span>
                        </div>
                        <div class="adap-center">
                            <span class="dark">实名认证</span>
                        </div>
                    </a>
                </li>
            </ul>
            <ul class="right-btn-ul clear" id="login_account">
                <li>
                    <a href="https://login.oray.com/login/?tplname=mobile" class="btn btn-primary" rel="nofollow">登录</a>
                </li>
                <li>
                    <a href="https://login.oray.com/register/" class="btn" rel="nofollow">注册</a>
                </li>
            </ul>
            <a href="javascript: void(0);" class="nav-close">
                <i class="mobile-iconfont f32 grey"></i>
            </a>
        </div>
        <!-- 手机右侧下拉结束 -->
    </div>
</div>


<style type="text/css">
    .slidedown-list li a {
        color: #fff !important;
    }
    .global-search-wrap .search-wrap .search-box{
        padding: 0;
    }
    .global-search-wrap .search-box a{
      padding: 0;
    }
    .global-search-wrap a:hover{
      background-color: inherit;
    }
</style>


<script type="text/javascript">
    $(function() {
        var url = window.location.href;
        for(var i = 0, l = $('.nav-list .nav-li').length; i < l; i++) {
            var str = $($('.nav-list .nav-li').eq(i)).data('localtion');
            if(url.indexOf(str) !== -1) {
                $($('.nav-list .nav-li').eq(i)).addClass('active');
            }
        }
        for(var i = 0, l = $('.nav-list .nav-li .slidedown-list li').length; i < l; i++) {
            var str = $($('.nav-list .nav-li .slidedown-list li').eq(i)).data('link');
            var str1 = $($('.nav-list .nav-li .slidedown-list li').eq(i)).parents('.nav-li').data('localtion');
            if(url.indexOf(str) !== -1 && url.indexOf(str1) !== -1) {
                $($('.nav-list .nav-li .slidedown-list li').eq(i)).addClass('active');
            }
        }
    })
</script>

<script type="text/javascript">

    var _initNav = function(obj) {

        if(obj.status == 0 ){
            $('#nav-log, #nav-register').css('display','block');
        } else {
            $('#nav-user-info span.account').html(obj.user);
            $('#nav-user-info span.uid').html($.cookie('_uid_'));
            if (obj.message != 0){
                $('#nav-user-info .tips-dot').show();
                $('[data-name="message"]').html(obj.message).show();
            }
            if (obj.workorder && obj.workorder != 0 ) {
                $("#workorder_num").html(obj.workorder); 
            }
            $('#nav-user-info').css('display','block');
        }
    };

    $(function() {
        var url = window.location.href;
        $('#nav-log a:eq(0)').data('url',url);
        $('.common-nav .nav-li').mouseenter(function(e) {
            var slidedownList = $(this).find('.slidedown-list');
            if(slidedownList.size() > 0) {
                slidedownList.stop(true,true).slideDown(400)
            }
            e.preventDefault();
        })
        $('.common-nav .nav-li').mouseleave(function(e) {
            var slidedownList = $(this).find('.slidedown-list');
            if(slidedownList.size() > 0) {
                slidedownList.stop(true,true).slideUp(400)
            }
            e.preventDefault();
        });

        $('.common-nav .nav-li').click(function() {
            var slidedownList = $(this).find('.slidedown-list');

            if(slidedownList.is(":hidden")) {
                slidedownList.stop(true,true).slideDown(400);
            }else{
                slidedownList.stop(true,true).slideUp(400);
            }
        })
    })


    // 移动端展开菜单
      var deviceHeight=$(window).height();
      $("#mo-menu-btn").click(function(event){
         event.stopImmediatePropagation(); 
         $(".right-nav-list-box").hide();
         $(".nav-list-box").css("height",deviceHeight);
         $(".nav-list-box").addClass("visible-xs-block visible-sm-block");
         if($(".nav-list-box").css("display")=="block"){
            $("html").addClass("noscroll noscroll-long");
         }else{
            $("html").removeClass("noscroll noscroll-long");
         }
      });
      $(".nav-list-box .nav-close").click(function(){
         $("html").removeClass("noscroll noscroll-long");
         $(".nav-list-box").removeClass("visible-xs-block visible-sm-block");
      });
      $(window).resize(function(){
         var deviceWidth=$(window).width();
         if(deviceWidth>750){
            $(".nav-list-box").css("height","auto");
            $("html").removeClass("noscroll noscroll-long");
            $(".nav-list-box").removeClass("visible-xs-block visible-sm-block");
            $(".right-nav-list-box").removeClass("visible-xs-block visible-sm-block");
         }
      });
      $("#mo-center-btn").click(function(event){
         $.ajax({
            type: 'GET',
            dataType: 'jsonp',
            jsonp: 'callback',
            jsonpCallback: 'userHandler',
            url:  login + '/passport',
            success: function(json){
               if(json.islogin == true ) {
                  $('.right-nav-list span[name=account]').html(json.account);
                  $('.right-nav-list span[name=userid]').html(json.userid);
                  $('.right-nav-list span[name=credit]').html(json.credit + '<em style="margin-left: 2px;">元</em>');
                  if(json.orders == 0) {
                     $('.right-nav-list span[name=orders]').parents('li').hide();
                  } else {
                     if(json.fmorders == 0 && json.maorders != 0) {
                        $('.right-nav-list span[name=orders]').parents('a').attr("href",conurl+"/mobile/mallwaitorder/");
                     }

                     $('.right-nav-list span[name=orders]').html(json.orders + '<span class="mobile-iconfont" style="margin-left: 1px;margin-right: -4px;float: right;">&#xe60c;</span>');
                  }
                  $('.right-nav-list span[name=realname]').html(json.realstatus + '<span class="mobile-iconfont" style="margin-left: 1px;margin-right: -4px;float: right;">&#xe60c;</span>');
                  $('#login_account').html('<li style="float:none; margin: 0 auto"><a href="'+conurl+'/passport/logout" class="btn">退出当前帐号</a></li>');
               } else {
                  $('#login_account').html('<li><a href="'+login+'/login/?tplname=mobile" class="btn btn-primary">登录</a></li><li><a href="'+login+'/register/" class="btn">注册</a></li>');
               }

            }
         });

         event.stopImmediatePropagation(); 
         $(".nav-list-box").hide();
         $(".right-nav-list-box").css("height",deviceHeight);
         $(".right-nav-list-box").addClass("visible-xs-block visible-sm-block");
         if($(".right-nav-list-box").css("display")=="block"){
            $("html").addClass("noscroll noscroll-long");
         }else{
            $("html").removeClass("noscroll noscroll-long");
         }
      });
      $(".right-nav-list-box .nav-close").click(function(){
         $("html").removeClass("noscroll noscroll-long");
         $(".right-nav-list-box").removeClass("visible-xs-block visible-sm-block");
      });
      
      var login   = 'https://login.oray.com';
      var conurl = 'https://console.oray.com';

</script>

<script src="https://console.oray.com/index/getheader?callback=_initNav" async></script>
<div class="window-wrapper" id="account-switch-win" style="display:none;">
    <div class="window">
        <div class="window-opt">
            <a href="javascript:void(0)" class="iconfont close"></a>
        </div>
        <div class="window-header" name="title">切换帐号</div>
        <div class="window-body" id="sw-account-view">

            <iframe width="100%" height="300px" id="changeframe" scrolling="auto" frameborder="0" src="javascript:void(0);"></iframe>
            <div style="margin-top: 20px;"><input type="button" class="btn close" value="取消" /></div>
        </div>
    </div>
</div>

<script type="text/javascript">
    $(function() {
        window.OR.GlobalSearch($('#nav-search-wrap'));
    })
</script>

<div class="service-header hidden-xs">
    <div class="header-inner container">
        <div class="logo">
            <a href="http://service.oray.com"> <strong>帮助与服务</strong>
            </a>
        </div>
        <div class="nav clear" id="nav">
            <ul>
                <li class="nav-item">
                    <a href="http://service.oray.com" style="color:red;">首页</a>
                </li>
                <li class="nav-item">
                    <a rel="nofollow" href="http://service.oray.com/vip/" >IT专家服务</a>
                </li>
                <li class="nav-item">
                    <a rel="nofollow" href="http://service.oray.com/remote/" >远程协助</a>
                </li>
            </ul>
        </div>
    </div>
</div><script id="adver-SERVICE_ARTICAL_BANNER" src="/category/adver?ad=SERVICE_ARTICAL_BANNER"></script>
<span class="totop" id="toTop" style="visibility: visible; display: block;"> <em>返回顶部</em></span>
<div class="vip-wrap" >
    <div class="response-container ">
        <!-- 链接导航开始 -->
        <div class="indexNavBar hidden-xs" >
            您的位置:
            <a class="link" href="http://www.oray.com">Oray首页</a>
            &gt;
            <a class="link" href="/">帮助与服务首页</a>
            &gt;
            <a class="link" href="/category/peanut.html">花生壳</a>
            &gt; 软件许可及服务协议
        </div>
        <!-- 链接导航结束 -->
        <div class="category-wrap clear">
            <!-- 页面左边导航开始 -->
			<!-- 页面左边导航开始 -->
<div class="page-sidebar" id="sidebar" style="height: auto;">
    <a href="javascript:void(0);" id="turn-down-btn" class="turn-btn turn-down-btn ">
        <i class="iconfont">&#xe606;</i>
    </a>
    <ul class="menu-level-1">
        <li class="level-1-item ">
            <a class="toggle-item" href="/category/passport.html">
                <i class="iconfont">&#xe902;</i>
                <span>帐号相关</span>
            </a>
            <ul class="menu-level-2">
		        		        <li><a href="/category/110_1.html"><span class="text">1分钟新手入门</span></a></li>
		        		        <li class="active"><a href="/category/41_1.html"><span class="text">常见问题</span></a></li>
		        		        <li><a href="/category/125_1.html"><span class="text">应用案例</span></a></li>
		        		        <li><a href="/category/126_1.html"><span class="text">--网站搭建</span></a></li>
		        		        <li><a href="/category/127_1.html"><span class="text">--企业管理系统</span></a></li>
		        		        <li><a href="/category/128_1.html"><span class="text">--财务系统</span></a></li>
		        		        <li><a href="/category/129_1.html"><span class="text">--开发调试</span></a></li>
		        		        <li><a href="/category/130_1.html"><span class="text">--小程序应用</span></a></li>
		        		        <li><a href="/category/149_1.html"><span class="text">--游戏运营</span></a></li>
		        		        <li><a href="/category/150_1.html"><span class="text">--远程数据</span></a></li>
		        		        <li><a href="/category/151_1.html"><span class="text">--物联网智能设备</span></a></li>
		        		        <li><a href="/category/152_1.html"><span class="text">--安防系统</span></a></li>
		        		        <li><a href="/category/153_1.html"><span class="text">--远程桌面</span></a></li>
		        		        <li><a href="/category/154_1.html"><span class="text">--其他</span></a></li>
		        		        <li><a href="/category/118_1.html"><span class="text">智能硬件案例</span></a></li>
		        		        <li><a href="/category/123_1.html"><span class="text">嵌入式案例</span></a></li>
		                    </ul>
        </li>
        <li class="level-1-item open active">
            <a class="toggle-item" href="/category/peanut.html">
                <i class="iconfont">&#xe843;</i>
                <span>花生壳</span>
            </a>
            <ul class="menu-level-2">
                		        <li><a href="/category/110_1.html"><span class="text">1分钟新手入门</span></a></li>
		        		        <li class="active"><a href="/category/41_1.html"><span class="text">常见问题</span></a></li>
		        		        <li><a href="/category/125_1.html"><span class="text">应用案例</span></a></li>
		        		        <li><a href="/category/126_1.html"><span class="text">--网站搭建</span></a></li>
		        		        <li><a href="/category/127_1.html"><span class="text">--企业管理系统</span></a></li>
		        		        <li><a href="/category/128_1.html"><span class="text">--财务系统</span></a></li>
		        		        <li><a href="/category/129_1.html"><span class="text">--开发调试</span></a></li>
		        		        <li><a href="/category/130_1.html"><span class="text">--小程序应用</span></a></li>
		        		        <li><a href="/category/149_1.html"><span class="text">--游戏运营</span></a></li>
		        		        <li><a href="/category/150_1.html"><span class="text">--远程数据</span></a></li>
		        		        <li><a href="/category/151_1.html"><span class="text">--物联网智能设备</span></a></li>
		        		        <li><a href="/category/152_1.html"><span class="text">--安防系统</span></a></li>
		        		        <li><a href="/category/153_1.html"><span class="text">--远程桌面</span></a></li>
		        		        <li><a href="/category/154_1.html"><span class="text">--其他</span></a></li>
		        		        <li><a href="/category/118_1.html"><span class="text">智能硬件案例</span></a></li>
		        		        <li><a href="/category/123_1.html"><span class="text">嵌入式案例</span></a></li>
		                    </ul>
        </li>
        <li class="level-1-item ">
            <a class="toggle-item" href="/category/sunlogin.html">
                <img src="https://cdn.orayimg.com/home/img/help_11.01.png" style="margin: 0 7px 0 35px;" class="not">
                <img src="https://cdn.orayimg.com/home/img/help_hot_11.01.png" style="margin: 0 7px 0 35px;display:none" class="hot">
                <span>向日葵</span>
            </a>
            <style>
                @media (max-width: 750px){
                    .level-1-item.active .toggle-item .not,.level-1-item.active .toggle-item .hot{
                        margin: 0 4px 0 15px!important;
                    }
                }
            </style>
            <ul class="menu-level-2">
						        <li><a href="/category/110_1.html"><span class="text">1分钟新手入门</span></a></li>
		        		        <li class="active"><a href="/category/41_1.html"><span class="text">常见问题</span></a></li>
		        		        <li><a href="/category/125_1.html"><span class="text">应用案例</span></a></li>
		        		        <li><a href="/category/126_1.html"><span class="text">--网站搭建</span></a></li>
		        		        <li><a href="/category/127_1.html"><span class="text">--企业管理系统</span></a></li>
		        		        <li><a href="/category/128_1.html"><span class="text">--财务系统</span></a></li>
		        		        <li><a href="/category/129_1.html"><span class="text">--开发调试</span></a></li>
		        		        <li><a href="/category/130_1.html"><span class="text">--小程序应用</span></a></li>
		        		        <li><a href="/category/149_1.html"><span class="text">--游戏运营</span></a></li>
		        		        <li><a href="/category/150_1.html"><span class="text">--远程数据</span></a></li>
		        		        <li><a href="/category/151_1.html"><span class="text">--物联网智能设备</span></a></li>
		        		        <li><a href="/category/152_1.html"><span class="text">--安防系统</span></a></li>
		        		        <li><a href="/category/153_1.html"><span class="text">--远程桌面</span></a></li>
		        		        <li><a href="/category/154_1.html"><span class="text">--其他</span></a></li>
		        		        <li><a href="/category/118_1.html"><span class="text">智能硬件案例</span></a></li>
		        		        <li><a href="/category/123_1.html"><span class="text">嵌入式案例</span></a></li>
		                    </ul>
        </li>
        <li class="level-1-item ">
            <a class="toggle-item" href="/category/pgy.html">
                <i class="iconfont">&#xe832;</i>
                <span>蒲公英</span>
            </a>
            <ul class="menu-level-2">
               		        <li><a href="/category/110_1.html"><span class="text">1分钟新手入门</span></a></li>
		        		        <li class="active"><a href="/category/41_1.html"><span class="text">常见问题</span></a></li>
		        		        <li><a href="/category/125_1.html"><span class="text">应用案例</span></a></li>
		        		        <li><a href="/category/126_1.html"><span class="text">--网站搭建</span></a></li>
		        		        <li><a href="/category/127_1.html"><span class="text">--企业管理系统</span></a></li>
		        		        <li><a href="/category/128_1.html"><span class="text">--财务系统</span></a></li>
		        		        <li><a href="/category/129_1.html"><span class="text">--开发调试</span></a></li>
		        		        <li><a href="/category/130_1.html"><span class="text">--小程序应用</span></a></li>
		        		        <li><a href="/category/149_1.html"><span class="text">--游戏运营</span></a></li>
		        		        <li><a href="/category/150_1.html"><span class="text">--远程数据</span></a></li>
		        		        <li><a href="/category/151_1.html"><span class="text">--物联网智能设备</span></a></li>
		        		        <li><a href="/category/152_1.html"><span class="text">--安防系统</span></a></li>
		        		        <li><a href="/category/153_1.html"><span class="text">--远程桌面</span></a></li>
		        		        <li><a href="/category/154_1.html"><span class="text">--其他</span></a></li>
		        		        <li><a href="/category/118_1.html"><span class="text">智能硬件案例</span></a></li>
		        		        <li><a href="/category/123_1.html"><span class="text">嵌入式案例</span></a></li>
		                    </ul>
        </li>
        <li class="level-1-item ">
            <a class="toggle-item" href="/category/domain.html">
                <i class="iconfont">&#xe834;</i>
                <span>域名</span>
            </a>
            <ul class="menu-level-2">
						        <li><a href="/category/110_1.html"><span class="text">1分钟新手入门</span></a></li>
		        		        <li class="active"><a href="/category/41_1.html"><span class="text">常见问题</span></a></li>
		        		        <li><a href="/category/125_1.html"><span class="text">应用案例</span></a></li>
		        		        <li><a href="/category/126_1.html"><span class="text">--网站搭建</span></a></li>
		        		        <li><a href="/category/127_1.html"><span class="text">--企业管理系统</span></a></li>
		        		        <li><a href="/category/128_1.html"><span class="text">--财务系统</span></a></li>
		        		        <li><a href="/category/129_1.html"><span class="text">--开发调试</span></a></li>
		        		        <li><a href="/category/130_1.html"><span class="text">--小程序应用</span></a></li>
		        		        <li><a href="/category/149_1.html"><span class="text">--游戏运营</span></a></li>
		        		        <li><a href="/category/150_1.html"><span class="text">--远程数据</span></a></li>
		        		        <li><a href="/category/151_1.html"><span class="text">--物联网智能设备</span></a></li>
		        		        <li><a href="/category/152_1.html"><span class="text">--安防系统</span></a></li>
		        		        <li><a href="/category/153_1.html"><span class="text">--远程桌面</span></a></li>
		        		        <li><a href="/category/154_1.html"><span class="text">--其他</span></a></li>
		        		        <li><a href="/category/118_1.html"><span class="text">智能硬件案例</span></a></li>
		        		        <li><a href="/category/123_1.html"><span class="text">嵌入式案例</span></a></li>
		                    </ul>
        </li>
        <li class="level-1-item ">
            <a class="toggle-item" href="/category/olivemail.html">
                <i class="iconfont">&#xe838;</i>
                <span>橄榄邮</span>
            </a>
            <ul class="menu-level-2">
						        <li><a href="/category/110_1.html"><span class="text">1分钟新手入门</span></a></li>
		        		        <li class="active"><a href="/category/41_1.html"><span class="text">常见问题</span></a></li>
		        		        <li><a href="/category/125_1.html"><span class="text">应用案例</span></a></li>
		        		        <li><a href="/category/126_1.html"><span class="text">--网站搭建</span></a></li>
		        		        <li><a href="/category/127_1.html"><span class="text">--企业管理系统</span></a></li>
		        		        <li><a href="/category/128_1.html"><span class="text">--财务系统</span></a></li>
		        		        <li><a href="/category/129_1.html"><span class="text">--开发调试</span></a></li>
		        		        <li><a href="/category/130_1.html"><span class="text">--小程序应用</span></a></li>
		        		        <li><a href="/category/149_1.html"><span class="text">--游戏运营</span></a></li>
		        		        <li><a href="/category/150_1.html"><span class="text">--远程数据</span></a></li>
		        		        <li><a href="/category/151_1.html"><span class="text">--物联网智能设备</span></a></li>
		        		        <li><a href="/category/152_1.html"><span class="text">--安防系统</span></a></li>
		        		        <li><a href="/category/153_1.html"><span class="text">--远程桌面</span></a></li>
		        		        <li><a href="/category/154_1.html"><span class="text">--其他</span></a></li>
		        		        <li><a href="/category/118_1.html"><span class="text">智能硬件案例</span></a></li>
		        		        <li><a href="/category/123_1.html"><span class="text">嵌入式案例</span></a></li>
		                    </ul>
        </li>
        <li class="level-1-item ">
            <a class="toggle-item" href="/category/hosting.html">
                <i class="iconfont">&#xe835;</i>
                <span>云主机</span>
            </a>
            <ul class="menu-level-2">
						        <li><a href="/category/110_1.html"><span class="text">1分钟新手入门</span></a></li>
		        		        <li class="active"><a href="/category/41_1.html"><span class="text">常见问题</span></a></li>
		        		        <li><a href="/category/125_1.html"><span class="text">应用案例</span></a></li>
		        		        <li><a href="/category/126_1.html"><span class="text">--网站搭建</span></a></li>
		        		        <li><a href="/category/127_1.html"><span class="text">--企业管理系统</span></a></li>
		        		        <li><a href="/category/128_1.html"><span class="text">--财务系统</span></a></li>
		        		        <li><a href="/category/129_1.html"><span class="text">--开发调试</span></a></li>
		        		        <li><a href="/category/130_1.html"><span class="text">--小程序应用</span></a></li>
		        		        <li><a href="/category/149_1.html"><span class="text">--游戏运营</span></a></li>
		        		        <li><a href="/category/150_1.html"><span class="text">--远程数据</span></a></li>
		        		        <li><a href="/category/151_1.html"><span class="text">--物联网智能设备</span></a></li>
		        		        <li><a href="/category/152_1.html"><span class="text">--安防系统</span></a></li>
		        		        <li><a href="/category/153_1.html"><span class="text">--远程桌面</span></a></li>
		        		        <li><a href="/category/154_1.html"><span class="text">--其他</span></a></li>
		        		        <li><a href="/category/118_1.html"><span class="text">智能硬件案例</span></a></li>
		        		        <li><a href="/category/123_1.html"><span class="text">嵌入式案例</span></a></li>
		                    </ul>
        </li>
        <li class="level-1-item ">
            <a class="toggle-item" href="/category/site.html">
                <i class="iconfont">&#xe837;</i>
                <span>建站</span>
            </a>
            <ul class="menu-level-2">
               		        <li><a href="/category/110_1.html"><span class="text">1分钟新手入门</span></a></li>
		        		        <li class="active"><a href="/category/41_1.html"><span class="text">常见问题</span></a></li>
		        		        <li><a href="/category/125_1.html"><span class="text">应用案例</span></a></li>
		        		        <li><a href="/category/126_1.html"><span class="text">--网站搭建</span></a></li>
		        		        <li><a href="/category/127_1.html"><span class="text">--企业管理系统</span></a></li>
		        		        <li><a href="/category/128_1.html"><span class="text">--财务系统</span></a></li>
		        		        <li><a href="/category/129_1.html"><span class="text">--开发调试</span></a></li>
		        		        <li><a href="/category/130_1.html"><span class="text">--小程序应用</span></a></li>
		        		        <li><a href="/category/149_1.html"><span class="text">--游戏运营</span></a></li>
		        		        <li><a href="/category/150_1.html"><span class="text">--远程数据</span></a></li>
		        		        <li><a href="/category/151_1.html"><span class="text">--物联网智能设备</span></a></li>
		        		        <li><a href="/category/152_1.html"><span class="text">--安防系统</span></a></li>
		        		        <li><a href="/category/153_1.html"><span class="text">--远程桌面</span></a></li>
		        		        <li><a href="/category/154_1.html"><span class="text">--其他</span></a></li>
		        		        <li><a href="/category/118_1.html"><span class="text">智能硬件案例</span></a></li>
		        		        <li><a href="/category/123_1.html"><span class="text">嵌入式案例</span></a></li>
		                    </ul>
        </li>
        <li class="level-1-item ">
            <a class="toggle-item" href="/category/wechat.html">
                <i class="iconfontv2">&#xe917;</i>
                <span>小程序</span>
            </a>
            <ul class="menu-level-2">
               		        <li><a href="/category/110_1.html"><span class="text">1分钟新手入门</span></a></li>
		        		        <li class="active"><a href="/category/41_1.html"><span class="text">常见问题</span></a></li>
		        		        <li><a href="/category/125_1.html"><span class="text">应用案例</span></a></li>
		        		        <li><a href="/category/126_1.html"><span class="text">--网站搭建</span></a></li>
		        		        <li><a href="/category/127_1.html"><span class="text">--企业管理系统</span></a></li>
		        		        <li><a href="/category/128_1.html"><span class="text">--财务系统</span></a></li>
		        		        <li><a href="/category/129_1.html"><span class="text">--开发调试</span></a></li>
		        		        <li><a href="/category/130_1.html"><span class="text">--小程序应用</span></a></li>
		        		        <li><a href="/category/149_1.html"><span class="text">--游戏运营</span></a></li>
		        		        <li><a href="/category/150_1.html"><span class="text">--远程数据</span></a></li>
		        		        <li><a href="/category/151_1.html"><span class="text">--物联网智能设备</span></a></li>
		        		        <li><a href="/category/152_1.html"><span class="text">--安防系统</span></a></li>
		        		        <li><a href="/category/153_1.html"><span class="text">--远程桌面</span></a></li>
		        		        <li><a href="/category/154_1.html"><span class="text">--其他</span></a></li>
		        		        <li><a href="/category/118_1.html"><span class="text">智能硬件案例</span></a></li>
		        		        <li><a href="/category/123_1.html"><span class="text">嵌入式案例</span></a></li>
		                    </ul>
        </li>
    </ul>
    <a href="javascript:void(0);" id="turn-up-btn" class="turn-btn turn-up-btn ">
        <i class="iconfont">&#xe607;</i>
    </a>
</div>
<!-- 页面左边导航结束 -->
<script type="text/javascript">
    $(function(){
        var winW=$(window).width();
        var winH=$(window).height();
        var offsetTop=$('#sidebar').offset().top;
        var sliderH=$('#sidebar').outerHeight(true);
        var nowH=sliderH;
        var h=$('#article').outerHeight(true);
        if(winW>749){
            //$('#sidebar').outerHeight(Math.max(h,sliderH));
        }else{
            $('#sidebar').find('.menu-level-1').height(winH-86);
        }
     
        $(window).resize(function(){
            winW=$(window).width();
            winH=$(window).height();
            if(winW>749){
                $('.menu-level-1').show().css('height','auto');
                $('html').removeClass('noscroll noscroll-long');
            }else{
                if($('.menu-level-1').css('display')=='block'){
                    $('html').addClass('noscroll noscroll-long');
                }else{
                	$('html').removeClass('noscroll noscroll-long');
                }
                $('#sidebar').find('.menu-level-1').height(winH-86);
            }
            h=$('#article').outerHeight(true);
            $('#sidebar').outerHeight(nowH);
        })


    })
</script>

<script type="text/javascript">
 $(function(){

 })
</script>

<script type="text/javascript">
    $('#turn-down-btn').click(function(){
        $('html').addClass('noscroll noscroll-long');
        $('#sidebar').css('height','inherit !important');
        $('.menu-level-1').show();
        $(this).hide();
        $('#turn-up-btn').css('display','block');
    })
    $('#turn-up-btn').click(function(){
        $('html').removeClass('noscroll noscroll-long');
        $('#sidebar').css('height','auto !important');
        $('.menu-level-1').hide();
        $(this).hide();
        $('#turn-down-btn').css('display','block');
    })
</script>
        
<script type="text/javascript">
 $(function(){
	 var vipOffsetTop=$('.vip-wrap').offset().top;
	 var vipH=$('.vip-wrap').outerHeight(true);
	 var windowH=$(window).height();
	 var footerH=$('.mobile-footer').outerHeight(true);
	 var windowW=$(window).width();
	 if(windowW<1030){
	     if((windowH-vipOffsetTop-footerH)>vipH){
	         $('.mobile-footer').addClass('fixed-b');
	     }
	 }   
	 $(window).resize(function(){
	     windowW=$(window).width();
	     vipOffsetTop=$('.vip-wrap').offset().top;
	     vipH=$('.vip-wrap').outerHeight(true);
	     windowH=$(window).height();
	     footerH=$('.mobile-footer').outerHeight(true);
	     if(windowW<1030){
	         if((windowH-vipOffsetTop-footerH)>vipH){
	             $('.mobile-footer').addClass('fixed-b');
	         }
	     }  
	 })
     $('.toggle-item').click(function(){
         $('.not').css('display','none');
         $('.hot').css('display','inline-block');
     })
 })
</script>            <!-- 页面左边导航结束 -->
            <!-- 文章内容开始 -->
            <div class="article-wrap" id="article">
                <div class="article-con">
                    <!-- 搜索开始 -->
             		<div class="search-box">
					<div id="bdcs">
                      <div class="bdcs-container">
                        <meta http-equiv="x-ua-compatible" content="IE=9" />
                        <!-- 嵌入式 -->
                        <div class="bdcs-main bdcs-clearfix" id="default-searchbox">
                          <div class="bdcs-search bdcs-clearfix" id="bdcs-search-inline">
                            <form
                              action="http://search-service.oray.com/cse/search"
                              method="get"
                              target="_blank"
                              class="bdcs-search-form"
                              autocomplete="off"
                              id="bdcs-search-form"
                            >
                              <input type="hidden" name="s" value="15963594344300625959" />
                              <input type="hidden" name="entry" value="1" />
                              <input
                                type="text"
                                name="q"
                                class="bdcs-search-form-input"
                                id="bdcs-search-form-input"
                                placeholder="快速搜索"
                                style="height: 58px; line-height: 58px;"
                              />
                              <input
                                type="submit"
                                class="bdcs-search-form-submit "
                                id="bdcs-search-form-submit"
                                value="搜索"
                              />
                            </form>
                          </div>
                        </div>
                      </div>
                    </div>
                    <button type="submit" class="bdcs-search-form-submit" id="search">
                            <i class="iconfont"></i>
                    </button>
					<div id="keywords-box" style="display:none;"></div>
				    </div>
                    <!-- 搜索结束 -->
                    <!-- 文章开始 -->
    			
					<div class="qb-title" style="position: static;"><h1>软件许可及服务协议</h1></div>
					<div class="markdown-body editormd-html-preview"><h4>重要须知:</h4>
<p><strong>Oray在此特别提醒用户认真阅读、充分理解本《软件许可及服务协议》(下称《协议》)--- 用户应认真阅读、充分理解本《协议》中各条款,包括免除或者限制Oray责任的免责条款及对用户的权利限制条款。请您审慎阅读并选择接受或不接受本《协议》(未成年人应在法定监护人陪同下阅读)。除非您接受本《协议》所有条款,否则您无权下载、安装或使用本软件及其相关服务。您的下载、安装、使用、帐号获取和登录等行为将视为对本《协议》的接受,并同意接受本《协议》各项条款的约束。</strong></p>
<p>本《协议》是您(下称“用户”)与上海贝锐信息科技股份有限公司(下称“Oray”)及其运营合作单位(下称“合作单位”)之间关于用户下载、安装、使用、复制;<a href='https://hsk.oray.com/' target='_blank'>花生壳</a>软件:花生壳远程协助、花生壳<a href='https://sunlogin.oray.com/personal/' target='_blank'>远程控制</a>、花生壳<a href='https://hsk.oray.com/' target='_blank'><a href='https://hsk.oray.com/' target='_blank'>动态域名</a></a>注册、使用、管理Oray帐号;以及使用Oray相关服务所订立的协议。本《协议》描述Oray与用户之间关于“软件”许可使用及服务相关方面的权利义务。“用户”是指通过Oray提供的获取软件授权和帐号注册的途径获得软件产品及号码授权许可以及使用Oray相关服务的个人或组织。</p>
<p><strong>本《协议》可由Oray随时更新,更新后的协议条款一旦公布即代替原来的协议条款,恕不再另行通知。用户可重新下载安装本软件或网站查阅最新版协议条款。在<a href="http://www.oray.com" target="_blank">Oray</a>修改《协议》条款后,如果用户不接受修改后的条款,请立即停止使用Oray提供的软件和服务,用户继续使用Oray提供的软件和服务将被视为已接受了修改后的协议。</strong></p>
<ul>
<li> </li>
</ul>
<h4>1.知识产权声明</h4>
<p>1.1 本“软件”是由Oray开发。“软件”的一切版权、商标权、专利权、商业秘密等知识产权,以及与“软件”相关的所有信息内容,包括但不限于:文字表述及其组合、图标、图饰、图表、色彩、界面设计、版面框架、有关数据、印刷材料、或电子文档等均受中华人民共和国著作权法、商标法、专利法、反不正当竞争法和相应的国际条约以及其他知识产权法律法规的保护,除涉及第三方授权的软件或技术外,Oray享有上述知识产权。</p>
<p>1.2 未经Oray书面同意,用户不得为任何营利性或非营利性的目的自行实施、利用、转让或许可任何三方实施、利用、转让上述知识产权,Oray保留追究上述未经许可行为的权利。</p>
<ul>
<li> </li>
</ul>
<h4>2.“软件”授权范围</h4>
<p>2.1 用户不得对该软件或者该软件运行过程中释放到任何计算机终端内存中的数据及该软件运行过程中客户端与服务器端的交互数据进行复制、更改、修改、挂接运行或创作任何衍生作品,形式包括但不限于使用插件、外挂或非经授权的第三方工具/服务接入本“软件”和相关系统。<br>2.2 保留权利:未明示授权的其他一切权利仍归Oray所有,用户使用其他权利时须另外取得Oray的书面同意。</p>
<ul>
<li> </li>
</ul>
<h4>3.Oray帐号</h4>
<p>要使用本“软件”,用户需填写并提交个人或组织资料注册Oray帐号。作为帐号注册过程的一部分,用户必须同意:(1) 按照帐号注册过程的提示信息,提供有关您本人的真实信息(此类信息必须保持最新、完整且准确);(2) 根据需要维护并更新注册人信息,使之始终保持最新、完整且准确。如果您未满 18 周岁,应在法定监护人陪同下阅读并提交帐号注册。</p>
<p>3.1 用户可以通过注册Oray帐号使用Oray提供的各种服务。服务包括但不限于PC端及手持终端软件、玉米酷、橄榄邮等可以通过Oray帐号登录或使用的服务,Oray保留对公司未来服务改变和说明的权利。无论用户通过何种方式获得Oray帐号,均受本协议约束。用户通过Oray帐号使用Oray的服务时,须同时遵守各项服务的服务条款。</p>
<p>3.2 Oray帐号的所有权归Oray所有,用户完成申请注册手续后,获得Oray帐号的使用权。</p>
<p>3.3 Oray帐号使用权仅属于初始申请注册人,禁止赠与、借用、租用、转让或售卖。如果Oray发现使用者并非帐号初始注册人,Oray有权在未经通知的情况下回收该帐号而无需向该帐号使用人承担法律责任,由此带来的包括并不限于用户通讯中断、用户资料等清空等损失由用户自行承担。Oray禁止用户私下有偿或无偿转让帐号,以免因帐号问题产生纠纷,用户应当自行承担因违反此要求而遭致的任何损失,同时Oray保留追究上述行为人法律责任的权利。</p>
<p>3.4 用户承担Oray帐号与密码的保管责任,并就其帐号及密码项下之一切活动负全部责任。用户须重视Oray帐号密码和公开邮箱的密码保护。用户同意如发现他人未经许可使用其帐号时立即通知Oray。</p>
<p>3.5 用户Oray帐号在丢失或遗忘密码后,须遵照Oray的申诉途径及时申诉请求找回帐号。用户应提供能增加帐号安全性的个人密码保护资料。用户可以凭初始注册资料及个人密码保护资料填写申诉向Oray申请找回帐号,Oray的密码找回机制仅负责识别申诉单上所填资料与系统记录资料的正确性,而无法识别申诉人是否系真正帐号权使用人。对用户因被他人冒名申诉而致的任何损失,Oray不承担任何责任,用户知晓Oray帐号及密码保管责任在于用户,Oray并不承诺Oray帐号丢失或遗忘密码后用户一定能通过申诉找回帐号。</p>
<p>3.6 用户注册Oray帐号后如果长期不使用,Oray有权回收帐号,以免造成资源浪费,由此带来的包括并不限于用户通信中断、用户资料、邮件等损失由用户自行承担。</p>
<ul>
<li> </li>
</ul>
<h4>4.“软件”使用</h4>
<p>用户在遵守法律及本《协议》的前提下可依本《协议》使用本”软件”。用户无权实施包括但不限于下列行为:<br>4.1 用户通过非Oray开发、授权或认可的三方兼容软件、系统登录或使用Oray软件及服务,用户针对Oray公司的软件和服务使用非Oray公司开发、授权或认证的插件和外挂;</p>
<p>4.2 删除本“软件”及其他副本上所有关于版权的信息、内容;</p>
<p>4.3 对本“软件”进行反向工程、反向汇编、反向编译等;</p>
<p>4.4 对于本“软件”相关信息等,未经Oray书面同意,用户擅自实施包括但不限于下列行为:使用、出租、出借、复制、修改、链接、转载、汇编、发表、出版,建立镜像站点、擅自借助本软件发展与之有关的衍生产品、作品、服务、插件、外挂、兼容、互联等。</p>
<p>4.5 利用本“软件”发表、传送、传播、储存违反国家法律、危害国家安全、祖国统一、社会稳定、公序良俗的内容,或任何不当的、侮辱诽谤的、淫秽的、暴力的及任何违反国家法律法规政策的内容。</p>
<p>4.6 利用本“软件”发表、传送、传播、储存侵害他人知识产权、商业秘密权等合法权利的内容;</p>
<p>4.7 制造虚假身份以误导、欺骗他人;</p>
<p>4.8 利用本“软件”批量发表、传送、传播广告信息及垃圾信息;</p>
<p>4.9 传送或散布以其他方式实现传送含有受到知识产权法律保护的图像、相片、软件或其他资料的文件,作为举例(但不限于此):包括版权或商标法(或隐私权或公开权),除非用户拥有或控制着相应的权利或已得到所有必要的认可;</p>
<p>4.10 使用任何包含有通过侵犯商标、版权、专利、商业机密或任何一方的其他专有权利的方式利用本“软件”获得的图像或相片的资料或信息;</p>
<p>4.11 任何人进行任何危害计算机网络安全的行为,包括但不限于:使用未经许可的数据或进入未经许可的服务器/帐号;未经允许进入公众计算机网络或者他人计算机系统并删除、修改、增加存储信息;未经许可,企图探查、扫描、测试本“软件”系统或网络的弱点或其它实施破坏网络安全的行为;企图干涉、破坏本“软件”系统或网站的正常运行,故意传播恶意程序或病毒以及其他破坏干扰正常网络信息服务的行为;伪造TCP/IP数据包名称或部分名称;</p>
<p>4.12 不得通过修改或伪造软件作品运行中的指令、数据、数据包,增加、删减、变动软件的功能或运行效果,不得将用于上述用途的软件通过信息网络向公众传播或者运营;</p>
<p>4.13 将本软件及Oray提供的服务用于核设施运行、生命维持或其他会使人类及其财产处于危险之中的重大设备。用户明白本软件及Oray提供的服务并非为以上目的而设计,如果因为软件和服务的原因导致以上操作失败而带来的人员伤亡、严重的财产损失和环境破坏,Oray将不承担任何责任;</p>
<p>4.14 禁止用户制作、发布、传播用于窃取Oray帐号及他人专属信息、财产、保密信息的软件;</p>
<p>4.15 在未经Oray公司书面明确授权前提下,出售、出租、出借、散布、转移或转授权软件和服务或相关的链接或从使用软件和服务或软件和服务的条款中获利,无论以上使用是否为直接经济或金钱收益;</p>
<p>4.16 其他以任何不合法的方式、为任何不合法的目的、或以任何与本协议不一致的方式使用本软件和和Oray提供的其他服务;<br>4.17 用户若违反上述规定,Oray有权采取终止、完全或部分中止、限制用户帐号的使用功能。</p>
<p>4.18 使用本“软件”必须遵守国家有关法律和政策等,维护国家利益,保护国家安全,并遵守本《协议》。对于用户违法或违反本《协议》的使用而引起的一切责任,由用户负全部责任,一概与Oray及合作单位无关;导致Oray及合作单位损失的,Oray及合作单位有权要求用户赔偿,并有权保留相关记录。而且,对于用户违法或违反本《协议》以及违反了利用本软件和Oray帐号访问的Oray或合作单位的其他服务规定的相关服务条款,Oray有权视用户的行为性质,在不事先通知用户的情况下,采取包括但不限于中断使用许可、停止提供服务、限制使用、回收用户Oray帐号、法律追究等措施。对利用Oray帐号进行违法活动、骚扰、欺骗其他用户等行为,Oray有权回收其帐号。由此带来的包括并不限于用户通信中断、用户资料、邮件和游戏道具丢失等损失由用户自行承担。</p>
<p>4.19 本“软件”同大多数互联网软件一样,受包括但不限于用户原因、网络服务质量、社会环境等因素的差异影响,可能受到各种安全问题的侵扰,如他人利用用户的资料,造成现实生活中的骚扰;用户下载安装的其它软件或访问的其他网站中含有“特洛伊木马”等病毒,威胁到用户的计算机信息和数据的安全,继而影响本“软件”的正常使用等等。用户应加强信息安全及使用者资料的保护意识,要注意加强密码保护,以免遭致损失和骚扰。</p>
<p>4.20 非经Oray或Oray授权开发并正式发布的其它任何由本“软件”衍生的软件均属非法,下载、安装、使用此类软件,将可能导致不可预知的风险,由此产生的一切法律责任与纠纷一概与Oray无关。用户不得轻易下载、安装、使用此类软件,否则,Oray有权在不事先通知用户的情况下单方面终止用户Oray帐号的使用资格。<br>用户只能通过Oray提供的本“软件”及其他合法通道登录使用花生壳。用户不得通过其他未经Oray授权开发的包括但不限于非法兼容型软件、程序或者其他非Oray明示许可的方式,登录使用Oray帐号,否则,Oray有权在不事先通知用户的情况下单方面终止用户的Oray帐号的使用资格。</p>
<p>4.21 用户同意个人隐私信息是指那些能够对用户进行个人辨识或涉及个人通信的信息,包括下列信息:用户的姓名,身份证号,手机号码,IP地址,电子邮件地址信息。而非个人隐私信息是指用户对本软件的操作状态以及使用习惯等一些明确且客观反映在Oray服务器端的基本记录信息和其他一切个人隐私信息范围外的普通信息。 尊重用户个人隐私信息的私有性是Oray的一贯制度,Oray将会采取合理的措施保护用户的个人隐私信息,除法律或有法律赋予权限的政府部门要求或用户同意等原因外,Oray未经用户同意不向除合作单位以外的第三方公开、 透露用户个人隐私信息。 但是用户在注册时选择或同意,或用户与Oray及合作单位之间就用户个人隐私信息公开或使用另有约定的除外,同时用户应自行承担因此可能产生的任何风险,Oray对此不予负责。同时为了运营和改善Oray的技术和服务,我们将可能会自己收集使用或向第三方提供用户的非个人隐私信息,这将有助于向用户提供更好的用户体验和提高我们的服务质量。</p>
<p>4.22 一般而言,Oray公司基于下列原因需要使用到用户的信息资源:(1)执行软件验证服务;(2)执行软件升级服务;(3)提高用户的使用安全性并提供客户支持;(4)因用户使用Oray花生壳特定功能如远程控制等或因用户要求Oray或合作单位提供特定服务时,Oray或合作单位则需要把用户的信息提供给与此相关联的第三方;(5)将各种非个人隐私数据用于商业目的,包括但不限于向第三方提供增值服务、广告、定位广告、营销、联合注册其它服务、促销或其它任何活动(统称为;商业活动);(6)执行Oray的《隐私保护声明》,用户可访问Oray网站查阅该声明;(7)其他有利于用户和Oray利益的。</p>
<p>4.23 本“软件”需要用户共同享用、维护其所提供的利益,用户在此确认同意本“软件”在必要时使用您计算机的处理器和带宽等资源,用作容许其它本“软件”使用者与您通讯联络、分享本“软件”及服务的有限目的。此项同意可能会影响用户的使用感受和带来不可预知的风险。您应认真考虑并做出选择,承担风险。</p>
<p>4.24 用户同意本“软件”将会尽其合理努力以保护您的计算机资源及计算机通讯的隐私性和完整性,但是,您承认和同意Oray不能就此事提供任何保证。</p>
<p>4.25 “用户同意”的方式有:(1)通过点击“用户同意”或者其他方式接受本《协议》及Oray发布的其他服务条款;(2)用户通过电子邮件、电话、传真、即时通信等方式所作的口头或书面表示;(3)本《协议》或其他服务声明中有“默认同意”条款,用户对此无异议的;(4)其他Oray与用户均认可的方式。</p>
<p>4.26  Oray保留在任何时候根据适用法律、法规、法律程序或政府要求的需要而披露任何信息,或由Oray自主决定全部或部分地编辑、拒绝张贴或删除任何信息或资料的权利。</p>
<p>4.27  本“软件”的替换、修改和升级:Oray保留在任何时候通过为您提供本“软件”替换、修改、升级版本的权利以及为替换、修改或升级收取费用的权利。本“软件”为用户默认开通“升级提示”功能,视用户使用的“软件”版本差异,Oray提供给用户自行选择是否需要开通此功能。软件新版本发布后,Oray不保证旧版本软件的继续可用。Oray保留因业务发展需要,单方面对软件的部分功能效果进行改变或进行限制,用户需承担此风险。</p>
<p>4.28  Oray和/或合作单位将根据市场与技术的发展,向用户提供与本“软件”相关的各种互联网以及移动通信增值服务,包括免费和收费的增值服务。Oray和/或合作单位保留对相关增值服务收取费用及改变收费标准、方式的权利;如相关服务由免费变更为收费服务,Oray和/或合作单位将以适当的形式通知,用户可自主选择接受或拒绝收费服务,并保证在使用收费服务时,将按照Oray和/或合作单位相关收费规定支付费用,如拒付或拖欠费用,Oray和/或合作单位有权停止服务,并依法追偿损失及赔偿。</p>
<p>4.29  Oray公司有权在服务中或经过服务投放各种广告和宣传信息,该广告可能以系统消息或弹出窗口等形式出现。</p>
<p>4.30 本“软件”可能会使用第三方的软件或技术,该等使用均是获得了合法授权的。如因本“软件”使用的第三方软件或技术引发的任何纠纷,由该第三方负责解决,Oray不承担任何责任。 Oray不对该第三方软件或技术提供客服支持,若用户需要获取支持,请与该第三方联系。</p>
<ul>
<li> </li>
</ul>
<h4>5.法律责任与免责</h4>
<p>5.1   利用的许可</p>
<p>5.1.1 许可利用您的计算机:为了得到本“软件”所提供的利益,用户在此许可Oray利用用户计算机的处理器和宽带,用作容许其它Oray花生壳软件使用者与用户通讯联络的有限目的。</p>
<p>5.1.2 保护用户的计算机(资源):用户认可Oray花生壳软件将会尽其商业上的合理努力以保护用户的计算机资源及计算机通讯的隐私性和完整性,但是,用户承认和同意Oray不能就此事提供任何保证。</p>
<p>5.1.3 本软件为网络交互型软件,Oray可以根据用户软件使用状态和行为,为了改善软件服务和体验、完善业务内容,自己或与合作方合作开发新的服务或者调整软件功能。</p>
<p>5.2   Oray特别提请用户注意:Oray为了保障公司业务发展和调整的自主权,Oray拥有随时自行修改或中断软件授权而不需通知用户的权利,如有必要,修改或中断会以通告形式公布于Oray网站重要页面上。</p>
<p>5.3   用户违反本《协议》或相关的服务条款的规定,导致或产生的任何第三方主张的任何索赔、要求或损失,包括合理的律师费,用户同意赔偿Oray与合作公司、关联公司,并使之免受损害。对此,Oray有权视用户的行为性质,在不事先通知用户的情况下,采取本《协议》第4.18条所述的措施及其他相应的措施。</p>
<p>5.4   使用本“软件”由用户自己承担风险,Oray及合作单位对本“软件”不作任何类型的担保,不论是明示的、默示的或法令的保证和条件,包括但不限于本“软件”的适销性、适用性、无病毒、无疏忽或无技术瑕疵问题、所有权和无侵权的明示或默示担保和条件,对在任何情况下因使用或不能使用本软件所产生的直接、间接、偶然、特殊及后续的损害及风险,Oray及合作单位不承担任何责任。</p>
<p>5.5   使用本“软件”涉及到互联网服务,可能会受到各个环节不稳定因素的影响,存在因不可抗力、计算机病毒、黑客攻击、系统不稳定、用户所在位置、用户关机,非法内容信息、骚扰信息屏蔽以及其他任何网络、技术、通信线路、信息安全管理措施等原因造成的服务中断、受阻等不能满足用户要求的风险,用户须明白并自行承担以上风险,用户因此不能发送或接收阅读消息,或接、发错消息,Oray及合作单位不承担任何责任。</p>
<p>5.6   使用本“软件”可能存在来自他人匿名或冒名的含有威胁、诽谤、令人反感或非法内容的信息的风险,用户须明白并自行承担以上风险,Oray及合作单位不对任何有关信息真实性、适用性、合法性承担责任。</p>
<p>5.7   用户因第三方如电信部门的通讯线路故障、技术问题、网络、电脑故障、系统不稳定性及其他各种不可抗力原因而遭受的一切损失,Oray及合作单位不承担责任。</p>
<p>5.8   因技术故障等不可抗事件影响到服务的正常运行的,Oray及合作单位承诺在第一时间内与相关单位配合,及时处理进行修复,但用户因此而遭受的一切损失,Oray及合作单位不承担责任。</p>
<p>5.9   用户之间通过本“软件”与其他用户交互,因受误导或欺骗而导致或可能导致的任何心理、生理上的伤害以及经济上的损失,由过错方依法承担所有责任,一概与Oray及合作单位无关。</p>
<ul>
<li> </li>
</ul>
<h4>6.其他条款</h4>
<p>6.1   协议的完整性:本《协议》以及第三方授权软件或技术的使用协议和许可条款,共同构成了本“软件”及其支持服务的完整协议。</p>
<p>6.2   本《协议》所定的任何条款的部分或全部无效者,不影响其它条款的效力。<br>6.3   本《协议》的所有标题仅仅是为了醒目及阅读方便,本身并无实际涵义,不能作为本《协议》涵义解释之依据。<br>6.4   本《协议》签订地为上海。本《协议》的解释、效力及纠纷的解决,适用于中华人民共和国法律。若用户和Oray之间发生任何纠纷或争议,首先应友好协商解决,协商不成的,用户在此完全同意将纠纷或争议提交Oray所在地即上海市有管辖权的人民法院管辖。<br>本《协议》版权由Oray所有,Oray保留一切解释权利。花生壳、<a href="http://www.oray.com/olivemail/#price?ici=www_olivemail&icn=service_olivemail#price" target="_blank">橄榄邮</a>、玉米酷、Oray等本文中提及的软件和服务名称有可能为Oray的注册商标或商标,受法律保护。</p>
<p>版权所有 2001-2017 Oray, Inc. 保留所有权利。</p></div>
                    <div class="share-box hidden-xs">
                            <span class="title">分享至</span>
                            <div class="bdsharebuttonbox">
                                <a href="#" class="bds_sqq" data-cmd="sqq" title="分享到QQ好友"></a>
                                <a href="#" class="bds_weixin" data-cmd="weixin" title="分享到微信"></a>
                                <a href="#" class="bds_tsina" data-cmd="tsina" title="分享到新浪微博"></a>
                                <a href="#" class="bds_qzone" data-cmd="qzone" title="分享到QQ空间"></a>
                                <a href="#" class="bds_tieba" data-cmd="tieba" title="分享到贴吧"></a>
                            </div>
                    </div>

                     <!-- 帮助文档建议模块开始 -->
                    <div class="form-data">
                        <form id="helpful" action="">
                            <input type="hidden" name="userid" value="0">
                            <div class="help-wrap helpful" data-qid="1820" data-help="">
                                <em class="icon-img"></em><span class="hashelp">有帮助 <i class="helpful-num">(6)</i> </span>
                            </div>
                            <div class="help-wrap helpless" data-helpless="">
                                <em class="icon-img"></em><span>无帮助</span>
                            </div>
                            <div class="text-area" style="display: none;">
                                <input name="qid" type="hidden" value="1820">
                                <textarea name="content" class="tweet" placeholder="来吐槽一下吧~" maxlength="500"></textarea>
                                <span class="value-length">0/500</span>
                                <div class="form-btn">
                                    <button type="button" class="determine-btn">确定</button>
                                    <button type="button" class="cancel-btn">取消</button>
                                </div>
                            </div>
                        </form>
                    </div>
                    <!-- 帮助文档建议模块结束 -->
    			
                </div>
                <!-- 文章结束 -->
            </div>
            <!-- 文章内容结束 -->
        </div>
        <div class="article-other-info clear hidden-xs ">
                    <div class="other-left">&nbsp;</div>
                    <div class="other-info-con">
                        <div class="more-article-wrap" style="text-align: center;">
                            <span class="item">上一篇:<a class="link" href="/question/870.html">如何在tomato中内核路由器设置花生壳服务</a></span>
                            &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;
                            <span class="item">下一篇:<a class="link" href="/question/2856.html">如何开启路由器DHCP?</a></span>
                        </div>
                        <div class="list-wrap clear">
                            <div class="section section-list">
                                <div class="title">
                                    <h2>相关问题</h2>
                                </div>
                                <ul>
                                                                            <li><a href="/question/8156.html" title="如何使用花生壳5设置HTTPS映射" target="_blank">如何使用花生壳5设置HTTPS映射</a></li>
                                                                            <li><a href="/question/5252.html" title="阿里云APP上传资料及真实性核验" target="_blank">阿里云APP上传资料及真实性核验</a></li>
                                                                            <li><a href="/question/5225.html" title="添加网站备案流程说明( 原阿里云备案用户)" target="_blank">添加网站备案流程说明( 原阿里云备案用户)</a></li>
                                                                            <li><a href="/question/870.html" title="如何在tomato中内核路由器设置花生壳服务" target="_blank">如何在tomato中内核路由器设置花生壳服务</a></li>
                                                                            <li><a href="/question/10818.html" title="线路迁移使用帮助" target="_blank">线路迁移使用帮助</a></li>
                                                                    </ul>
                            </div>
                            <div class="section section-list">
                                <div class="title">
                                    <h2>其他问题</h2>
                                </div>
                                <ul>
                                                                            <li><a href="/question/10541.html" title="使用“花生壳”解决微信小程序访问难题" target="_blank">使用“花生壳”解决微信小程序访问难题</a></li>
                                                                            <li><a href="/question/4767.html" title="校园监控的解决方案" target="_blank">校园监控的解决方案</a></li>
                                                                            <li><a href="/question/12143.html" title="蒲公英X1 - 远程访问私有云指南" target="_blank">蒲公英X1 - 远程访问私有云指南</a></li>
                                                                            <li><a href="/question/8610.html" title="【智能制造】数控机床远程监控运维方案" target="_blank">【智能制造】数控机床远程监控运维方案</a></li>
                                                                            <li><a href="/question/1491.html" title="国际域名转出授权委托书" target="_blank">国际域名转出授权委托书</a></li>
                                                                    </ul>
                            </div>
                            <div class="section section-list">
                                                                <div class="title">
                                    <h2>口袋里的花生壳</h2>
                                </div>
                                <div class="clear">
                                    <img class="fl" height="116" src="https://cdn.orayimg.com/peanuthull/img/download_code_v2.png" alt="花生壳管理APP">                        
                                    <ul style="overflow: hidden;width: auto;padding-left: 24px;">
                                        <li>• 多帐号便捷管理</li>
                                        <li>• 实时状态监控</li>
                                        <li>• 免费获取流量包</li>
                                    </ul>
                                </div>
                                      
                            </div>
                        </div>
                    </div>
                </div>
        </div>
        <!-- 建议提交弹窗开始 -->
        <div class="help-mask" style="display: none;">
            <div class="mask-head">
                <p class="til">提交</p>
                <em class="close"></em>
            </div>
            <div class="mask-main">
                <p class="smiling-img"></p>
                <p class="sub-sec">提交成功,感谢您的建议</p>
                <p><a class="return" href="javascript:void(0)">返回文章</a></p>
            </div>
        </div>

        <!-- 建议提交弹窗结束 -->
    </div>

    <div class="other-wrap hidden-xs">
        <a target="_blank" href="/vip">
            <div class="oadv-186-wrap"></div>
        </a>
        
        <!--<div class="response-container">
            <div class="changepage-wrap">
                上一篇:
                <a class="link" href="/question/870.html">如何在tomato中内核路由器设置花生壳服务</a>
                &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;&nbsp;下一篇:
                <a class="link" href="/question/2856.html">如何开启路由器DHCP?</a>
            </div>
            <div class="list-wrap" >
                <div class="section section-list" style="margin-left:0;">
                    <div class="title">
                        <h2>相关问题</h2>
                    </div>
                    <ul>
                    	                        <li><a href="/question/8156.html" title="如何使用花生壳5设置HTTPS映射" target="_blank">如何使用花生壳5设置HTTPS映射</a></li>
                                                <li><a href="/question/5252.html" title="阿里云APP上传资料及真实性核验" target="_blank">阿里云APP上传资料及真实性核验</a></li>
                                                <li><a href="/question/5225.html" title="添加网站备案流程说明( 原阿里云备案用户)" target="_blank">添加网站备案流程说明( 原阿里云备案用户)</a></li>
                                                <li><a href="/question/870.html" title="如何在tomato中内核路由器设置花生壳服务" target="_blank">如何在tomato中内核路由器设置花生壳服务</a></li>
                                                <li><a href="/question/10818.html" title="线路迁移使用帮助" target="_blank">线路迁移使用帮助</a></li>
                                            </ul>
                </div>
            </div>
            <div class="box"><div class="bdsharebuttonbox"><a href="#" class="bds_weixin" data-cmd="weixin" title="分享到微信"></a><a href="#" class="bds_tsina" data-cmd="tsina" title="分享到新浪微博"></a><a href="#" class="bds_sqq" data-cmd="sqq" title="分享到QQ好友"></a><a href="#" class="bds_qzone" data-cmd="qzone" title="分享到QQ空间"></a><a href="#" class="bds_tieba" data-cmd="tieba" title="分享到百度贴吧"></a><a href="#" class="bds_more" data-cmd="more"></a></div></div>
        </div>-->
    </div>
</div>

 <!-- vip悬浮开始 -->
 <div class="fixed-vip-wrap">
    <a href="javascript:void(0);"></a>
    <div class="hover-box">
        <div class="hover-img-box">
            <img src="https://cdn.orayimg.com/service/img/index/icon_diamond_80.png">
        </div>
        <p class="til">钻石VIP</p>
        <p class="desc-text">无需等待,尊享服务<br/>IT专家24小时在线远程</p>
        <a href="/vip/" class="btn btn-primary go-btn" data-software="{software:'钻石VIP_马上了解'}">马上了解</a>
    </div>
</div>
 <!-- vip悬浮结束 -->
<script>
    qid = $('.helpful')[0].dataset.qid;
    userId = $('#helpful').find('[name="userid"]').val();
    isHelp = $('.helpful')[0].dataset.help || localStorage.getItem(userId+'_question_helpful_'+qid);
    isHelpless = $('.helpless')[0].dataset.helpless || localStorage.getItem(userId+'_question_helpless_'+qid);
    if (isHelp || isHelpless) {
        $('.helpless').addClass('unclick');
        if (isHelp) {
             $('.helpful').addClass('select');
             $('.hashelp').css('color','red');
        }
        if (isHelpless) {
             $('.helpless').addClass('select');
        }
    }
    function helpAction(data)
    {
        $.ajax({
            type: 'POST',
            dataType: 'json',
            data: data,
            url: '/question/help',
            beforeSend: function(){
               $('.help-wrap').attr('disabled', true);
            },
            success: function(ret){
                if (!ret.success) {
                    $('.help-wrap').removeAttr('disabled');
                    alert('网络异常,请稍后重试!');
                    return false;
                }
                if (data.help) {
                   localStorage.setItem(userId+'_question_helpful_'+qid,1);
                   var num = parseInt($('.helpful-num').text().replace(/\(|\)/g,'')) + 1;
                   $('.helpful-num').text('('+num+')');
                   $('.helpless').addClass('unclick');
                } else {
                    localStorage.removeItem(userId+'_question_helpful_'+qid,1);
                    var num = parseInt($('.helpful-num').text().replace(/\(|\)/g,'')) - 1;
                    $('.helpful-num').text('('+num+')');
                    $('.helpless').removeClass('unclick');
                };
            },
            error: function(res){
               $('.help-wrap').removeAttr('disabled');
               alert('网络异常,请稍后重试!');
               return false;
            }
        });
    }

    $('.tweet').bind('input propertychange',function(){
        var remain = $(this).val().length;
        var pattern = '';
        if(remain >= 500){
            pattern = "500/500";
            $('.tweet').val($(this).val().slice(0,500));
            $('.value-length').css('color','red');
        }else{
            $('.value-length').css('color','#C4C4C4');
            pattern = remain + '/500';
        }
        $('.value-length').text(pattern);
    })
    $('.helpful').click(function(){
      if (!$(this).hasClass('select')) {
        var data = {qid:qid,help:true};
        helpAction(data);
        $(this).addClass('select');
        $('.hashelp').css('color','red');
        $(this).siblings().removeClass('select');
        return;
      }
      if ($(this).hasClass('select')) {
        var data = {qid:qid,help:false};
        helpAction(data);
        $(this).removeClass('select');
        $('.hashelp').css('color','#6a6a6a');
        $(this).siblings().removeClass('select');
      }
    })
    $('.helpful').click(function(){
        $(this).siblings('.text-area').hide()
    })
    $('.helpless').click(function(){
        $(this).siblings('.text-area').show()
    })
</script>
<script>
    $(function () {
        $('.determine-btn').click(function () {
            var form = $('#helpful');
            var content = form.find('[name=content]');
            if (!content.val()) {
                content.focus();
                return;
            }
            $.ajax({
                type: 'POST',
                dataType: 'json',
                data: form.serializeArray(),
                url: '/question/feedback-suggest',
                beforeSend: function(){
                   form.find('button').attr('disabled', true);
                },
                success: function(ret){
                    if (!ret.success) {
                        form.find('button').removeAttr('disabled');
                        alert('网络异常,请稍后重试!');
                        return false;
                    }
                    localStorage.setItem(userId+'_question_helpless_'+qid,1);
                    $('.helpful').addClass('unclick');
                    $('.helpless').addClass('select unclick');
                    $('.help-mask').show();
                },
                error: function(res){
                   form.find('button').removeAttr('disabled');
                   alert('网络异常,请稍后重试!');
                   return false;
                }
            });
        })
        $('.cancel-btn').click(function() {
           $('.text-area').hide()
        })
        $('.close').click(function(){
            $(this).parents('.help-mask').hide()
            $('.text-area').hide()
        })
        $('.return').click(function(){
            $(this).parents('.help-mask').hide()
            $('.text-area').hide()
        })
    })
</script>
 <script type="text/javascript">
     $('.fixed-vip-wrap').mouseenter(function(){
         $(this).find('.understand-wrap').stop(true,true).fadeIn(300);
     })
     $('.fixed-vip-wrap').mouseleave(function(){
         $(this).find('.understand-wrap').stop(true,true).fadeOut(300);
     })
     $('.fixed-vip-wrap .close').click(function(){
         $(this).parents('.understand-wrap').hide();
     })
 </script>

<script>
    var ua = navigator.userAgent;

    if (ua.toLowerCase().indexOf('iphone') === -1
    && ua.toLowerCase().indexOf('ipad') === -1
    && ua.toLowerCase().indexOf('ipod') === -1
    && ua.toLowerCase().indexOf('android') === -1) {
        window._bd_share_config={"common":{"bdSnsKey":{},"bdText":"","bdMini":"2","bdMiniList":false,"bdPic":"","bdStyle":"0","bdSize":"32"},"share":{}};with(document)0[(getElementsByTagName('head')[0]||body).appendChild(createElement('script')).src='/static/api/js/share.js?v=89860593.js?cdnversion='+~(-new Date()/36e5)];
    }

    if (ua.toLowerCase().indexOf('hskforward') > -1) {
        $('.common-nav-mobile, .page-sidebar, .search-box').hide()
    }
</script>

<script>
$('#search').click(function () {
   $('#bdcs-search-form-submit').click();
});
//回到最上
ie6fixed(
    document.getElementById('toTop'),
    {
        bottom: 170,
        right: 25
    }
);
var $toTop = $('#toTop');

$(window).bind('scroll', function() {
    var isshow = $(document).scrollTop() > $(window).height()/2;
    if(isshow){
        $toTop.css('visibility','visible').show();
    }else{
        $toTop.hide();
    }
} );
$toTop.click(function(){
    var $body = (window.opera)
            ? (document.compatMode == "CSS1Compat" ? $('html') : $('body'))
            : $('html,body');
    $body.animate({scrollTop: 0}, 300);
    return false;
});
$toTop.mouseover(function(){
    $(this).addClass("totop-hover");
}).mouseout(function(){
    $(this).removeClass("totop-hover");
});
</script>

<div class="footer-wrap">
    <div class="response-container">
        <a id="backtop-btn" href="javascript:void(0);" class="backtop-btn visible-xs-block" style="text-align: center;">回到顶部</a>
        <div class="footer-list" id="footer-list">
            <div class="item">
                <p class="til"><i class="iconfont"></i><span>热门产品</span></p>
                <ul class="list">
                    <li><a href="https://hsk.oray.com" target="_blank">花生壳</a></li>
                    <li><a href="https://sunlogin.oray.com" target="_blank">向日葵</a></li>
                    <li><a href="https://pgy.oray.com" target="_blank">蒲公英</a></li>
                </ul>
                <p class="til"><i class="iconfont"></i><span>域名建站</span></p>
                <ul class="list marb0">
                    <li><a href="https://domain.oray.com/domain" target="_blank">域名注册</a></li>
                    <!-- <li><a href="https://domain.oray.com/website" target="_blank">网站建设</a></li> -->
                    <!-- <li><a href="https://domain.oray.com/website/wechat" target="_blank">微信小程序</a></li> -->
                    <li><a href="https://domain.oray.com/ssl" target="_blank">SSL证书</a></li>
                    <!-- <li><a href="https://domain.oray.com/seo" target="_blank">花生推广</a></li> --><!-- 
                    <li class="hidden-xs"><a href="https://domain.oray.com/seo#email" target="_blank">营销邮</a></li>
                    <li class="hidden-xs"><a href="https://domain.oray.com/seo#messages" target="_blank">短信营销</a></li> -->
                </ul>
            </div>
            <div class="item">
                <p class="til"><i class="iconfont"></i><span>智能硬件</span></p>
                <ul class="list">
                    <li><a href="https://hsk.oray.com/device/hsbpro" target="_blank">花生壳硬件</a></li>
                    <li><a href="https://sunlogin.oray.com/zh_CN/hardware" target="_blank">向日葵硬件</a></li>
                    <li class="hidden-xs"><a href="https://pgy.oray.com/router/index.html" target="_blank">蒲公英路由器</a></li>
                    <li class="visible-xs-block"><a href="https://weidian.com/item_classes.html?userid=820262052&amp;c=63564889" target="_blank">蒲公英路由器</a></li>
                </ul>
                <p class="til"><i class="iconfont"></i><span>购买渠道</span></p>
                <ul class="list">
                    <li class="hidden-xs"><a href="https://store.oray.com" target="_blank">官方商城</a></li>
                    <li><a href="https://huashengbang.tmall.com/" rel="nofollow" target="_blank">天猫旗舰店<span style="display: inline-block;position: relative;width: 6px;height: 6px;border-radius: 3px;background: #ff0042;left: 6px;top: -8px;"></span></a></li>
                    <li><a href="https://mall.jd.com/index-731433.html" rel="nofollow" target="_blank">京东旗舰店</a></li>
                </ul>
                <p class="til"><i class="iconfont"></i><span>热门下载</span></p>
                <ul class="list marb0">
                    <li><a href="https://hsk.oray.com/download" target="_blank">花生壳·内网穿透</a></li>
                    <li><a href="https://sunlogin.oray.com/zh_CN/download" target="_blank">向日葵·远程控制</a></li>
                    <li><a href="https://pgy.oray.com/download" target="_blank">蒲公英·VPN组网</a></li>
                </ul>
            </div>
            <div class="item">
                <p class="til"><i class="iconfont"></i><span>控制台</span></p>
                <ul class="list">
                    <li><a href="https://console.oray.com/account/real-name" target="_blank">实名认证</a></li>
                    <li class="hidden-xs"><a href="https://console.oray.com/account/profile" rel="nofollow" target="_blank">帐号信息</a></li>
                    <li class="visible-xs-block"><a href="https://console.oray.com/mobile/account" rel="nofollow" target="_blank">帐号信息</a></li>
                    <li class="hidden-xs"><a href="https://console.oray.com/payment/service/renew" rel="nofollow" target="_blank">产品续费</a></li>
                    <li class="visible-xs-block"><a href="https://console.oray.com/mobile/service/renew" rel="nofollow" target="_blank">产品续费</a></li>
                    <li><a href="https://console.oray.com/payment/storeorder" rel="nofollow" target="_blank">我的订单</a></li>
                    <li><a href="https://console.oray.com/payment/invoice/enable" rel="nofollow" target="_blank">发票管理</a></li>
                    <li class="hidden-xs"><a href="https://console.oray.com/center/store-return/return" rel="nofollow" target="_blank">我的退换货</a></li>
                    <li><a href="https://b.oray.com" rel="nofollow" target="_blank">花生壳管理</a></li>
                    <li><a href="https://sunlogin.oray.com/console/remote/" rel="nofollow" target="_blank">向日葵管理</a></li>
                    <li><a href="https://pgy.oray.com/console/network/" rel="nofollow" target="_blank">蒲公英管理</a></li>
                    <li><a href="https://console.oray.com/domain/root" rel="nofollow" target="_blank">域名建站管理</a></li>
                </ul>
                <p class="til hidden-xs"><i class="iconfont"></i><span>推广计划</span></p>
                <ul class="list marb0 hidden-xs">
                    <li><a href="https://hsk.oray.com/money-plan" rel="nofollow" target="_blank">摇钱树</a></li>
                </ul>
            </div>
            <div class="item">
                <p class="til"><i class="iconfont"></i><span>帮助与支持</span></p>
                <ul class="list">
                    <li><a href="http://service.oray.com" target="_blank">联系客服</a></li>
                    <!-- <li><a href="https://livechat.oray.com/live800/chatClient/chatbox.jsp?companyID=9025&amp;configID=2" rel="nofollow" target="_blank">在线咨询</a></li>
                    <li class="hidden-xs"><a href="https://console.oray.com/center/workorder" rel="nofollow" target="_blank">客服工单</a></li>
                    <li class="visible-xs-block"><a href="https://console.oray.com/mobile/workorder" rel="nofollow" target="_blank">客服工单</a></li> -->
                    <li><a href="http://service.oray.com/vip" rel="nofollow" target="_blank">钻石VIP&nbsp;<span style="color: #ff0042;font-size: 12px">HOT</span></a></li>
                    <li class="hidden-xs"><a href="http://service.oray.com/remote" target="_blank">远程协助</a></li>
                </ul>
                <p class="til hidden-xs"><i class="iconfont"></i><span>合作共赢</span></p>
                <ul class="list hidden-xs">
                    <li><a href="http://www.tudu.im/" rel="nofollow" target="_blank">图度办公</a></li>
                    <li><a href="https://developer.oray.com" rel="nofollow" target="_blank">开放平台</a></li>
                    <li><a href="https://www.oray.com/agent" rel="nofollow" target="_blank">渠道合作<span style="display: inline-block;position: absolute;width: 6px;height: 6px;border-radius: 3px;background: #ff0042;margin: 0 4px;"></span></a></li>
                </ul>
                <p class="til hidden-xs"><i class="iconfont"></i><span>优惠</span></p>
                <ul class="list marb0 hidden-xs">
                    <li><a href="http://www.oray.com/activity/190901/" rel="nofollow" target="_blank">超级会员&nbsp;<span style="color: #ff0042;font-size: 12px">HOT</span></a></li>
                    <li><a href="https://buy.oray.com/coupon" rel="nofollow" target="_blank">兑换码通道</a></li>
                    <li><a href="https://console.oray.com/center/education-discount/" rel="nofollow" target="_blank"><span>教育折扣</span></a></li>
                </ul>
            </div>
            <div class="item">
                <p class="til"><i class="iconfont"></i><span>关于贝锐科技</span></p>
                <ul class="list">
                    <li><a href="https://www.oray.com/about/index.html" rel="nofollow" target="_blank">关于我们</a></li>
                    <li><a href="https://www.oray.com/about/join.html" rel="nofollow" target="_blank">加入我们</a></li>
                    <li><a href="https://www.oray.com/about/contact.html" rel="nofollow" target="_blank">商务合作</a></li>
                    <li class="hidden-xs"><a href="https://www.oray.com/news" rel="nofollow" target="_blank">新闻公告</a></li>
                </ul>
                <p class="til hidden-xs"><i class="iconfont"></i><span>购买咨询</span></p>
                <ul class="list marb0 hidden-xs">
                    <li>020-29195609</li>
                    <li>(周一至周六 9:00-18:00)</li>
                </ul>
            </div>
            <div class="item visible-xs-block">
                <p class="visible-til"><i class="iconfont" style="visibility: hidden;"></i><span>购买咨询</span></p>
                <ul class="list marb0" style="display: block !important;">
                    <li>020-29195609(周一至周六 9:00-18:00)</li>
                </ul>
            </div>
        </div>
        <div class="info-wrap clear">
            <div class="code-box" style="padding-right: 0;">
                <div class="img-box">
                                        <img style="display: block;" height="120" src="https://cdn.orayimg.com/home/img/code_190507.png" alt="贝锐科技微信公众号">
                                    </div>
                <p class="code-text" style="position: absolute;left: 50%;white-space: nowrap;margin-left: -72px;">绑定 "贝锐科技" 领红包</p>
            </div>
            <div class="info-box">
                <div class="link-wrap">
                    <a href="https://www.2cto.com/" target="_blank">红黑联盟</a>
                    <a href="http://www.17jita.com/" target="_blank">吉他谱</a>
                    <a href="http://www.yibaixun.com/" target="_blank">网站建设</a>
                    <a href="https://www.sojson.com/" target="_blank">JSON格式化</a>
                    <a href="https://www.chuangkit.com/" target="_blank">平面设计</a>
                </div>
                <div class="other-info">
                    <a href="javascript:void(0);" class="jc-box">
                        <div class="tip-box">
                            亲爱的市民朋友,上海警方反诈劝阻电话“962110”系专门针对<br>避免您财产被骗受损而设,请您一旦收到来电,立即接听。
                        </div>
                    </a>
                    <div><span class="line">上海贝锐信息科技股份有限公司</span><span class="line">Copyright © 2002-2019 Oray. All Rights Reserved</span>
                        <span class="clause-wrap"><a href="http://service.oray.com/question/976.html" rel="nofollow" target="_blank">用户协议</a><span class="separate">|</span><a target="_blank" rel="nofollow" href="http://service.oray.com/question/1820.html">服务条款</a><span class="separate">|</span><a rel="nofollow" target="_blank" href="http://service.oray.com/question/5387.html">隐私政策</a></span>
                    </div>
                    <div><span class="line">沪公安备案:<a href="http://www.beian.gov.cn/portal/registerSystemInfo?recordcode=31011002000069" rel="nofollow" target="_blank">31011002000069</a></span><span class="line">增值电信业务经营许可证:沪B2-20100004</span></div>
                    <div><span class="line">域名注册服务批文号:沪通信管互【2018】17号</span><span class="line">网站备案:<a href="http://www.beian.miit.gov.cn/" rel="nofollow" target="_blank">沪B2-20100004-1</a></span><a id="vpn-certificate-btn" href="javascript:void(0);" class="line">VPN虚拟专用网证号:B1-20180222</a></div>
                </div>
            </div>
        </div>
    </div>
</div>

<div class="vpn-certificate-win" id="vpn-certificate-win">
    <img class="certificate-img" src="https://cdn.orayimg.com/img/svn_certificate.png">
</div>

<style type="text/css">
    .vpn-certificate-win{
        display: none;
        position: fixed;
        left: 0;
        top: 0;
        right: 0;
        bottom: 0;
        z-index: 8002;
        text-align: center;
        background-color: rgba(0, 0, 0, 0.5);
    }
    .vpn-certificate-win .certificate-img{
        position: absolute;
        width: 380px;
        height: 524px;
        top: 50%;
        left: 50%;
        margin-top: -262px;
        margin-left: -190px;
        z-index: 8003;
    }
</style>

<script type="text/javascript">
    $(function() {
        $("#vpn-certificate-btn").click(function() {
            $("#vpn-certificate-win").fadeIn(300);
        })
        $("#vpn-certificate-win").click(function() {
            $("#vpn-certificate-win").fadeOut(300);
        })
    })
</script>

<script type="text/javascript">
    //移动端点击展开底部
    $("#footer-list .til").click(function() {
        var deviceWidth=$(window).width();
        if(deviceWidth <= 750){
            $(this).next('.list').slideToggle(250);
            $(this).toggleClass('open');
        }
    })
    $("#backtop-btn").click(function() {
        $('html , body').animate({scrollTop: 0});
    })
</script><script>
    var ua = navigator.userAgent;
    if (ua.toLowerCase().indexOf('pgymgr') > -1
	|| ua.toLowerCase().indexOf('pgyvisitor') > -1
	|| ua.toLowerCase().indexOf('pgygame') > -1
	|| ua.toLowerCase().indexOf('slcc') > -1
	|| ua.toLowerCase().indexOf('phmgr') > -1) {
        $('#nav').remove();
        $('#header').remove();
        $('#sidebar').hide();
		$('.common-nav-mobile').hide();
		$('.vip-wrap .category-wrap').css('padding', 0);
		$('#article .search-box').hide();
		$('.footer-wrap').remove();
		$('.common-nav-mobile').remove();

		// APP内所有链接去除新开窗口防止内部浏览器不能打开
		$('a').removeAttr('target');
    }
</script>
<script>
	if(OR && OR.initexpiredadv) {
		OR.initexpiredadv({'login':'https://login.oray.com'});
	}
</script>
</body>
</html>