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
<!doctype html><html><head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=1200">
<title>阿卡索外教网_在线英语培训_外教口语一对一培训</title>
<meta name="description" content="阿卡索外教网提供在线英语口语培训,全程外教一对一教学模式,是专业的在线英语培训网站,阿卡索外教老师均毕业于国际知名的一流学府,拥有标准的英语口语以及最纯正的教学知识。您值得拥有">
<meta name="keywords" content="在线英语口语培训,在线英语培训,外教一对一,英语外教一对一,英语网络教学">
<!-- 分享配置 -->
<meta itemprop="name" content="阿卡索外教网_在线英语培训_外教口语一对一培训">
<meta itemprop="image" content="https://img.acadsoc.com.cn/share/share-default.png">
<meta name="description" itemprop="description" content="阿卡索外教网提供在线英语口语培训,全程外教一对一教学模式,是专业的在线英语培训网站,阿卡索外教老师均毕业于国际知名的一流学府,拥有标准的英语口语以及最纯正的教学知识。您值得拥有">
<!--<link rel="stylesheet" href="https://img.acadsoc.com.cn/css/bootstrap.min.css">-->
<link href="https://img.acadsoc.com.cn/js/editor/swiper.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://img.acadsoc.com.cn/web/css/header-footer.css">
<link rel="stylesheet" href="https://img.acadsoc.com.cn/web/css/editor.init.css">
<link rel="icon" href="https://www.acadsoc.com.cn/favicon.ico" type="image/x-icon">
<script type="text/javascript" src="https://img.acadsoc.com.cn/web/lps/recommend/js/jquery.min.js"></script>
<script type="text/javascript">
var html = document.documentElement;
var htmlClientWidth = 0;
var rejustRootSize = function () {
var oh = 750;
html.getBoundingClientRect().width > oh ? htmlClientWidth = oh : htmlClientWidth = html.getBoundingClientRect().width;
html.style.fontSize = htmlClientWidth / (oh / 100) + 'px';
};
rejustRootSize();
window.onresize = rejustRootSize;
</script>
<script src="https://img.acadsoc.com.cn/web/js/bootstrap.min.js"></script>
<script src="https://img.acadsoc.com.cn/web/lps/activity/js/lp.js"></script>
<!--IpRecord-->
<script type="text/javascript" src="https://www.acadsoc.com.cn/ajax/Web.UI.Fun.IpRecord.aspx"></script>
<script src="https://img.acadsoc.com.cn/web/js/IdentificationSystem.js"></script>
<script src="https://img.acadsoc.com.cn/web/lps/activity/js/Record.js"></script>
<!--微信分享-->
<script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
<script src="https://img.acadsoc.com.cn/web/lps/activity/js/wxShare.js"></script>
<script>
wxShare.init();
</script>
<!--[if lt IE 9]>
<script src="https://img.acadsoc.com.cn/web/js/vendor/html5shiv.js"></script>
<script src="https://img.acadsoc.com.cn/web/js/vendor/respond.min.js"></script>
<![endif]-->
<script>
window.HtmlWidth = 0;
$(function(){
window.HtmlWidth = document.body.clientWidth || document.documentElement.clientWidth;
})
function getQueryString(name) {
var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
var r = window.location.search.substr(1).match(reg);
if (r != null) return unescape(r[2]);
return "";
}
</script>
<style>
body{
background-color:white;
}
</style>
<!-- customize code header -->
<script src="https://img.acadsoc.com.cn/web/lps/activity/js/BaiDuStatistics.js"></script>
<script src="https://img.acadsoc.com.cn/web/SenSors/sensorsheadother.js"></script>
<script src="https://www.acadsoc.com.cn/OCPC/js/ocpc.js"></script>
</head>
<!-- : -->
<body>
<!-- js统计 -->
<script src="https://img.acadsoc.com.cn/web/js/monitor/apm.web.js"></script>
<header class="top">
<div class="header-wrap">
<a class="header-logo" href="javascript:;"></a>
<div class="header-text">省时 · 省钱 · 专业 · 贴心 · 有保障</div>
<div class="header-tel"></div>
</div>
</header>
<style>
.render-swiper-58-0 .swiper-pagination-bullet{
width:24px;height:24px;
}
.render-swiper-58-0 .swiper-pagination {bottom:35px;}
.render-swiper-58-0 .swiper-pagination-bullet-active{
background-color:rgb(195, 13, 35)
}
/* pc */
@media (min-width: 769px) {
.render-swiper-58-0 { border-radius:0 0 0 0; height:auto; padding:0 0 0 0; margin:0 0 0 0; width:100%; }
.render-swiper-58-0 img { width:100%;height:auto; }
}
</style>
<div class="render-swiper-58-0 swiper-container" data-popup-id="56">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/17/xcftep1d1dkmbafyebyjbek8z3kmj1d3.png">
</div>
<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/17/5amb6c5lc2gcawm8dzf1dn5hnb76yrjk.png">
</div>
</div>
<div class="swiper-pagination"></div>
</div>
<script>
$(function(){
new Swiper('.render-swiper-58-0',{
autoplay: {
delay: 6000,
stopOnLastSlide: false,
disableOnInteraction: false,
},
pagination: {
el: '.render-swiper-58-0 .swiper-pagination',
},
loop:true,
});
})
</script>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-14-1 {
background-color:white; border-radius:0 0 0 0; padding:80px 0 30px 0; margin:0 0 0 0; text-align:center;
}
.render-jsx-14-1 >p{
color:black; font-weight:bold; display:inline-block; width:auto; font-size:38px; line-height:1; text-align:center;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-14-1 {
background-color:white; border-radius:0 0 0 0; padding:30px 0 30px 0; margin:0 0 0 0; text-align:center;
}
.render-jsx-14-1 >p{
color:black; font-weight:bold; display:inline-block; width:auto; font-size:24px; line-height:1; text-align:center;
}
}
</style>
<div class="render-jsx-14-1">
<p>零基础?<span style="color:#b81c25;font-style:italic;font-size:1.2em;">不用愁</span></p>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-14-2 {
padding:0 0 20px 0; margin:0 0 0 0; background-color:white; border-radius:0 0 0 0; text-align:center;
}
.render-jsx-14-2 >p{
color:#444444; display:inline-block; width:auto; font-size:22px; line-height:1; text-align:center;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-14-2 {
background-color:white; padding:30px 0 30px 0; margin:0 0 0 0; text-align:center;
}
.render-jsx-14-2 >p{
color:black; font-weight:bold; display:inline-block; width:auto; font-size:24px; line-height:1; text-align:center;
}
}
</style>
<div class="render-jsx-14-2">
<p>阿卡索根据学员需求,为不同学员定制实用的外教课程,3对1的贴心服务,助力英语蜕变</p>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-50-3 { padding:0 0 80px 0; margin:0 0 0 0; background-color:white; border-radius:0 0 0 0; }
.render-jsx-50-3>.container { padding:0 0 0 0; margin:0 auto 0 auto; display:flex; border-radius:0 0 0 0; align-items:center; }
.render-jsx-50-3 .left { flex:1; display:flex; flex-wrap:wrap; }
.render-jsx-50-3 .left li { padding:30px 0 0 0; margin:0 0 0 0; border-radius:0 0 0 0; width:50%; text-align:center; }
.render-jsx-50-3 .left .img { padding:0 0 0 0; margin:0 0 0 0; border-radius:0 0 0 0; width:auto; height:auto; }
.render-jsx-50-3 .left .title { padding:0 0 0 0; margin:25px 0 15px 0; color:#192e79; font-weight:bold; font-size:22px; border-radius:0 0 0 0; }
.render-jsx-50-3 .left .text { padding:0 0 0 0; margin:0 0 9px 0; color:#676769; font-size:16px; line-height:1.9; border-radius:0 0 0 0; }
.render-jsx-50-3 .right { border:dashed #192e79 3px; padding:60px 30px 50px 30px; margin:0 0 0 0; background-color:#fcfdff; border-radius:15px; width:520px; height:548px; }
.render-jsx-50-3 .right>.title { padding:0 0 0 0; margin:0 0 0 0; color:#b81c25; font-weight:bold; font-size:30px; border-radius:0 0 0 0; text-align:center; }
.render-jsx-50-3 .right>.desc { padding:0 0 0 0; margin:0 0 0 0; color:#666; font-size:16px; line-height:3; border-radius:0 0 0 0; text-align:center; }
.render-jsx-50-3 .right>.phone { border:solid #c2c2c2 1px; padding:0 30px 0 30px; margin:20px 0 0 0; color:#888; font-size:16px; line-height:70px; border-radius:60px; width:100%; text-align:left; height:70px; }
.render-jsx-50-3 .right>.code { border:solid #c2c2c2 1px; border-radius:60px; padding:0 30px 0 30px; margin:20px 0 0 0; color:#888; width:100%; font-size:16px; line-height:70px; text-align:left; height:70px; }
.render-jsx-50-3 .right>.code>.codeBtn { border:solid #c2c2c2 1px; border-radius:60px; background-color:#b81c25; padding:0 30px 0 30px; color:white; font-size:17px; text-align:center; height:100%; }
.render-jsx-50-3 .right>.btn { border-radius:60px; background-color:#b81c25; margin:20px 0 0 0; color:white; font-weight:bold; width:100%; font-size:22px; text-align:center; height:70px; }
.render-jsx-50-3 .right>.human { margin:30px 0 0 0; color:#666; font-size:16px; text-align:center; }
}
/* 手机端 */
@media (max-width:768px) {
}
</style>
<div class="render-jsx-50-3">
<div class="container">
<ul class="left">
<li>
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/20/lcwgbp2tcg6pzmza6dgz1dxa23kwd672.png" class="img">
<p class="title">上班族</p>
<p class="text">每天25分钟,轻松学英语<br>专人督导,效果跟进</p>
</li>
<li>
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/20/wjke1d3jz4e61dpm2fhpa5kgker4knzl.png" class="img">
<p class="title">青少年</p>
<p class="text">风趣幽默外教,趣味性教学<br>让孩子能说会学,爱上英语</p>
</li>
<li>
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/20/xece82z3gh4da7z91dnywgm25ctwd9ka.png" class="img">
<p class="title">零基础</p>
<p class="text">专业定制学习计划<br>轻松入门,告别哑巴英语</p>
</li>
<li>
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/20/xb8xk3tp9bnr3x5mbewepg2w8fy9d4dr.png" class="img">
<p class="title">雅思托福</p>
<p class="text">口语在线演练,实战模考<br>
助力雅思破7,托福110+</p>
</li>
</ul>
<div class="right">
<p class="title">1对1在线互动课</p>
<p class="desc">摆脱瓶颈 快速提升</p>
<div class="phone input__div">
<input placeholder="输入您的手机号码" type="tel" id="TxtPhone" maxlength="11" name="TxtPhone" class="TxtPhone phoneinput">
</div>
<div class="code input__div">
<input placeholder="获取验证码" type="tel" maxlength="6" name="TxtCode" id="TxtCode" class="TxtCode codeinput">
<button class="btnGetSMS codeBtn" name="btnGetSMS" id="btnGetSMS">
获取验证码
</button>
</div>
<button class="registerSubmit btn" name="registerSubmit" id="registerSubmit">
免费申请1节试听课
</button>
<p class="human"> <img src="https://img.acadsoc.com.cn/web/img/sem-luo/laba.png" style="width:18px;display:inline-block;vertical-align:middle;margin-right:10px;"> 152****5623 31分钟前注册成功</p>
</div>
</div>
</div>
<script>
//随机手机号 sj-phone
function phone(){
var phone = new Array("136****2156 12", "156****7942 24", "158****8956 36",
"152****6598 17", "152****5623 31", "188****6656 26", "156****8898 50",
"133****5689 9", "182****5623 11", "136****5614 39",
"152****7982 25", "132****8879 13", "152****5556 22");
//生成随机数num,使用random
var num = Math.random()*13;
num = parseInt(num, 10);
$(".render-jsx-50-3 .human").html(`<img src='https://img.acadsoc.com.cn/web/img/sem-luo/laba.png' style='width:18px;display:inline-block;vertical-align:middle;margin-right:10px;'/>`+phone[num]+'分钟前申请成功');
}
$(function(){
phone();
setInterval('phone()',3000);
})
</script>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-14-4 {
padding:80px 0 0 0; margin:0 0 0 0; background-color:#f1f5ff; border-radius:0 0 0 0; text-align:center;
}
.render-jsx-14-4 >p{
color:black; font-weight:bold; display:inline-block; width:auto; font-size:38px; line-height:1; text-align:center;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-14-4 {
background-color:white; padding:30px 0 30px 0; margin:0 0 0 0; text-align:center;
}
.render-jsx-14-4 >p{
color:black; font-weight:bold; display:inline-block; width:auto; font-size:24px; line-height:1; text-align:center;
}
}
</style>
<div class="render-jsx-14-4">
<p>四大优势助力您 <span style="color:#b81c25;font-style:italic;font-size:1.2em;">轻松学英语</span></p>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-65-5 { padding:50px 0 20px 0; margin:0 0 0 0; background-color:#f1f5ff; border-radius:0 0 0 0; }
.render-jsx-65-5 .container { margin:0 auto; }
.render-jsx-65-5 .div1 { display:flex; justify-content:center; align-items:center; }
.render-jsx-65-5 .div2 { padding:30px 0 0; margin:0 0 0 0; display:flex; border-radius:0 0 0 0; justify-content:space-between; align-items:center; }
.render-jsx-65-5 .item0 { padding:0 45px; margin:0 0 0 0; border-radius:0 0 0 0; text-align:center; }
.render-jsx-65-5 .item1 { padding:0 45px; text-align:center; }
.render-jsx-65-5 .item2 { padding:0 45px; text-align:center; }
.render-jsx-65-5 .item3 { padding:0 45px; margin:0 0 0 0; border-radius:0 0 0 0; text-align:center; }
.render-jsx-65-5 .title { color:white; font-weight:bold; font-size:34px; border-radius:50% 50% 50% 50%; background-color:#192E79; height:120px; padding:0 0 0 0; margin:0 0 0 0; display:inline-block; line-height:120px; width:120px; }
.render-jsx-65-5 .text { padding:0 0 0 0; margin:30px 0 0 0; color:#444444; display:block; font-size:18px; line-height:1.6; border-radius:0 0 0 0; text-align:center; }
.render-jsx-65-5 .img { padding:0 45px 45px; }
}
/* 手机端 */
@media (max-width:768px) {
}
</style>
<div class="render-jsx-65-5">
<div class="container">
<div class="div1">
<div class="item0">
<p class="title">均持证</p>
<p class="text">层层严选外教,均持有TESOL等<br>资格证书,教学经验丰富</p>
</div>
<div class="item1">
<p class="title">3%</p>
<p class="text">阿卡索所有外教需经历5轮以上资格审查才<br>能进入试讲阶段,录取率仅为3%</p>
</div>
</div>
<div class="div2">
<div class="item2">
<p class="title">1对1</p>
<p class="text">告别效率低效的懒散大班,外教以<br>100%的注意力与您进行强效互动</p>
</div>
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/22/cf9rawh2a3fdwnhn27tx37w71d38gwkw.png" class="img">
<div class="item3">
<p class="title">13.8元</p>
<p class="text">每节课低至13.8元,超高性价比,<br>全程无忧助力学地道英语</p>
</div>
</div>
</div>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-7-6 {
padding:0 0 80px 0; margin:0 0 0 0; background-color:#f1f5ff; border-radius:0 0 0 0; text-align:center;
}
.render-jsx-7-6 >button {
color:white; font-weight:bold; font-size:18px; background-color:rgb(195, 13, 35); border-radius:60px 60px 60px 60px; padding:0 0 0 0; margin:0 auto 0 auto; display:block; line-height:3; width:400px;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-7-6 {
background-color:white; padding:0 0 0 0; margin:0 0 0 0; text-align:center;
}
.render-jsx-7-6 >button {
background-color:rgb(195, 13, 35); border-radius:60px 60px 60px 60px; padding:0 0 0 0; margin:0 0 0 0; color:white; font-weight:bold; width:400px; font-size:18px; line-height:2;
}
}
</style>
<div class="render-jsx-7-6">
<button data-popup-id="56">
免费试听课程
</button>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-14-7 {
background-color:white; padding:80px 0 30px 0; margin:0 0 0 0; text-align:center;
}
.render-jsx-14-7 >p{
color:black; font-weight:bold; display:inline-block; width:auto; font-size:38px; line-height:1; text-align:center;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-14-7 {
background-color:white; padding:30px 0 30px 0; margin:0 0 0 0; text-align:center;
}
.render-jsx-14-7 >p{
color:black; font-weight:bold; display:inline-block; width:auto; font-size:24px; line-height:1; text-align:center;
}
}
</style>
<div class="render-jsx-14-7">
<p>流利英语不是梦 <span style="color:#b81c25;font-style:italic;font-size:1.2em;">专业外教来帮忙</span></p>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-14-8 {
padding:0 0 20px 0; margin:0 0 0 0; background-color:white; border-radius:0 0 0 0; text-align:center;
}
.render-jsx-14-8 >p{
padding:0 0 0 0; margin:0 0 0 0; color:#444444; display:inline-block; font-size:22px; line-height:1.4; border-radius:0 0 0 0; width:auto; text-align:center;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-14-8 {
background-color:white; padding:30px 0 30px 0; margin:0 0 0 0; text-align:center;
}
.render-jsx-14-8 >p{
border-radius:0 0 0 0; padding:0 0 0 0; margin:0 0 0 0; color:black; font-weight:bold; display:inline-block; width:auto; font-size:24px; line-height:1; text-align:center;
}
}
</style>
<div class="render-jsx-14-8">
<p>仅3%的外教录取率,均持有国际教学资格证,执教经验丰富,擅长趣味性输出,<br>根据学员的需求进行精准匹配,让教学更有效,更实用。</p>
</div>
<style>
/* pc */
@media (min-width: 769px) {
.render-jsx-55-9 { padding:0 0 50px 0; margin:0 0 0 0; background-color:white; border-radius:0 0 0 0; }
.render-jsx-55-9 .container { display:flex; justify-content:center; align-items:center; }
.render-jsx-55-9 .item0 { background-color:#B81C25; border-radius:60px 60px 60px 60px; padding:10px 40px 10px 40px; margin:0 0 0 0; color:white; font-weight:bold; font-size:24px; }
.render-jsx-55-9 .item1 { background-color:#B81C25; border-radius:60px; padding:10px 40px 10px 40px; margin:0 60px 0 60px; color:white; font-weight:bold; font-size:24px; }
.render-jsx-55-9 .item2 { background-color:#B81C25; border-radius:60px; padding:10px 40px 10px 40px; margin:0 0 0 0; color:white; font-weight:bold; font-size:24px; }
}
</style>
<div class="render-jsx-55-9">
<div class="container">
<div class="item0">均持证</div><div class="item1">5轮考核</div><div class="item2">3%录用率</div>
</div>
</div>
<style>
.render-swiper-59-10 .scale-swiper .swiper-slide {
width: 35%;
}
/* pc */
@media (min-width: 769px) {
.render-swiper-59-10 { padding:0 0 10px 0; margin:0 0 0 0; background-color:white; border-radius:0 0 0 0; }
.render-swiper-59-10 img { width:100%;height:auto; }
}
</style>
<div class="render-swiper-59-10">
<div class="container">
<div class="swiper-container scale-swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/23/lb46r3b9jd68ry4bd81dthy2r98w7anp.png">
</div>
<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/23/jbdlah85ehzchp4l3ebfa1dfr458fywg.png">
</div>
<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/23/zdexlrz7fmjcet83f1d75ylyzwztbhwp.png">
</div>
</div>
</div>
</div>
</div>
<script>
$(function(){
new Swiper('.render-swiper-59-10 .swiper-container',{
autoplay: {
delay: 3000,
stopOnLastSlide: false,
disableOnInteraction: false,
},
loop:true,
slidesPerView: 'auto',
loopedSlides: 3,
centeredSlides: true,
});
})
</script>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-7-11 {
padding:0 0 80px 0; margin:0 0 0 0; background-color:white; border-radius:0 0 0 0; text-align:center;
}
.render-jsx-7-11 >button {
color:white; font-weight:bold; font-size:18px; background-color:rgb(195, 13, 35); border-radius:60px 60px 60px 60px; padding:0 0 0 0; margin:0 auto 0 auto; display:block; line-height:3; width:400px;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-7-11 {
background-color:white; padding:0 0 0 0; margin:0 0 0 0; text-align:center;
}
.render-jsx-7-11 >button {
background-color:rgb(195, 13, 35); border-radius:60px 60px 60px 60px; color:white; font-weight:bold; width:400px; font-size:18px; line-height:2;
}
}
</style>
<div class="render-jsx-7-11">
<button data-popup-id="56">
免费申请1节试听课
</button>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-14-12 {
padding:80px 0 50px 0; margin:0 0 0 0; background-color:#F3F9FF; border-radius:0 0 0 0; text-align:center;
}
.render-jsx-14-12 >p{
color:black; font-weight:bold; display:inline-block; width:auto; font-size:38px; line-height:1; text-align:center;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-14-12 {
background-color:white; padding:30px 0 30px 0; margin:0 0 0 0; text-align:center;
}
.render-jsx-14-12 >p{
color:black; font-weight:bold; display:inline-block; width:auto; font-size:24px; line-height:1; text-align:center;
}
}
</style>
<div class="render-jsx-14-12">
<p>在线学英语 <span style="color:#b81c25;font-style:italic;font-size:1.2em;">需要花多少钱?</span></p>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-54-13 { padding:0 0 80px 0; margin:0 0 0 0; background-color:#F3F9FF; border-radius:0 0 0 0; }
.render-jsx-54-13>.container { display:flex; align-items:center; }
.render-jsx-54-13 .left { border:4px solid #B81C25; padding:60px 100px 60px 0; margin:0 0 0 0; width:350px; }
.render-jsx-54-13 .left>p { background-color:#F3F9FF; margin:0 0 0 -10%; color:#333; white-space:nowrap; font-weight:bold; font-size:26px; line-height:1.6; }
.render-jsx-54-13 .left>p>span{ color:#C30D23 }
.render-jsx-54-13 .right { padding:0 0 60px 0; margin:0 0 0 90px; border-radius:10px; background-color:white; box-shadow:0 2px 10px rgba(0,0,0,0.2); flex:1; }
.render-jsx-54-13 .right .title { padding:25px 0 25px 0; margin:0 0 0 0; color:white; font-weight:bold; font-size:30px; background-color:#192E79; border-radius:10px 10px 0 0; text-align:center; }
.render-jsx-54-13 .right .bottom { padding:0 60px 0 60px; margin:0 0 0 0; border-radius:0 0 0 0; }
.render-jsx-54-13 .right .text { padding:0 0 0 10px; margin:43px 0 20px 0; color:#333333; border-left:3px solid #17317B; font-weight:bold; font-size:19px; }
.render-jsx-54-13 .right ul { padding:0 0 0 26px; display:flex; flex-wrap:wrap; }
.render-jsx-54-13 .right li { padding:10px 0 10px 0; color:#333; width:25%; font-size:16px; }
.render-jsx-54-13 .right li input {margin:0; width:22px; vertical-align:middle; height:22px; margin-right:15px; }
.render-jsx-54-13 .right .phoneinput { border:1px solid #A0A0A0; padding:0 30px 0 30px; margin:30px 0 30px 0; font-size:16px; line-height:50px; border-radius:60px; height:50px; padding: 0 30px;}
.render-jsx-54-13 .right .codeinput { border:1px solid #A0A0A0; padding:0 30px 0 30px; margin:30px 0 30px 0; font-size:16px; line-height:50px; border-radius:60px; height:50px; padding: 0 30px;}
.render-jsx-54-13 .right .codebtn { background-color:#c30d23; padding:0 30px 0 30px; color:white; font-size:16px; }
.render-jsx-54-13 .right .registerSubmit { border-radius:60px; background-color:#c30d23; color:white; font-weight:bold; width:100%; font-size:16px; height:50px; }
}
</style>
<div class="render-jsx-54-13">
<div class="container">
<div class="left">
<p>从<span>0基础</span>到脱口而出<br>选择阿卡索<span style="font-size:1.4em;">更省钱</span><br>为数十万学员节省<br><span style="font-size:2em">36%</span></p>
</div>
<div class="right">
<p class="title">让说英语不难,让好外教不贵</p>
<div class="bottom">
<p class="text">请选择预期达到的目标</p>
<ul>
<li><input type="checkbox" name="target">青少英语</li>
<li><input type="checkbox" name="target">商务交流</li>
<li><input type="checkbox" name="target">提升口语</li>
<li><input type="checkbox" name="target">出国</li>
<li><input type="checkbox" name="target">英语考研</li>
<li><input type="checkbox" name="target">雅思托福</li>
<li><input type="checkbox" name="target">四级六级</li>
<li><input type="checkbox" name="target">其他</li>
</ul>
<div class="input__div phoneinput">
<input placeholder="请输入手机号,评估学习费用" type="tel" id="TxtPhone" maxlength="11" name="TxtPhone" class="TxtPhone">
</div>
<div class="input__div codeinput duanxin" style="display:none">
<input placeholder="请输入验证码" type="tel" maxlength="6" name="TxtCode" id="TxtCode" class="TxtCode">
<button class="btnGetSMS codebtn" name="btnGetSMS" id="btnGetSMS">
获取验证码
</button>
</div>
<button class="registerSubmit" name="registerSubmit" id="registerSubmit">
免费评估
</button>
</div>
</div>
</div>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-52-14 { padding:0 0 40px 0; margin:0 0 0 0; background-size:100% 100%; background:url(https://img.acadsoc.com.cn/web/img/sem-luo/bg.png)center no-repeat; height:auto; text-align:center; background-size: 100% 100%; }
.render-jsx-52-14>.title { padding:80px 0 30px 0; color:#fff; font-weight:bold; font-size:38px; }
.render-jsx-52-14>button { background-color:#b81c25; border-radius:60px; color:#fff; font-weight:bold; width:490px; font-size:32px; line-height:1; height:90px; display:inline-block;}
.render-jsx-52-14>.text1 { margin:36px 0 50px 0; color:#fff; font-weight:bold; font-size:20px; }
.render-jsx-52-14>.text2 { margin:0 0 0 0; color:#d1d1d1; font-size:20px; }
}
</style>
<div class="render-jsx-52-14">
<p class="title">心动不如行动</p>
<button [object="" object]="">立即免费试听</button>
<p class="text1">分期付<span> · </span>0利息<span> · </span>0首付<span> · </span>轻松购</p>
<p class="text2">*以上数据均为内部统计数据</p>
</div>
<style>
.fixed{position:fixed;bottom:0;left:0; z-index: 6;}
/* PC端 */
@media (min-width:769px) {
.render-jsx-57-15 { padding:0 0 0 0; margin:-5.86% 0 0 0; display:block; border-radius:0 0 0 0; width:100%; height:auto; font-size:0; }
}
</style>
<div class="render-jsx-57-15-top"></div>
<img class="render-jsx-57-15" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/16/n7gxelang97n84rn92ek7rpyty1d3xyw.png" data-popup-id="56">
<script>
$(function () {
bottomShow();
})
function bottomShow() {
// 定位元素
let fixedBottom = $('.render-jsx-57-15');
// 头部元素
let headerFixedElement = $('body>div').eq(0);
// 底部元素
let removeFixedElement = $('.render-jsx-57-15-top');
let bTop = removeFixedElement.offset().top - 10 - $(window).height() + removeFixedElement.height();
let rTop = headerFixedElement.offset().top + headerFixedElement.height();
$(window).scroll(function () {
let sTop = $(this).scrollTop();
if (sTop > rTop) {
fixedBottom.fadeIn(300);
if (sTop >= bTop) {
fixedBottom.removeClass('fixed');
} else {
fixedBottom.addClass('fixed');
}
} else {
fixedBottom.fadeOut(300);
}
})
}
</script>
<style>
@media (min-width:769px) {
.render-jsx-60-HhFL4l .close { transform:translateX(-50%); padding:0 0 0 0; margin:0 0 0 0; bottom:-.7rem; left:50%; width:.6rem; position:absolute; }
.render-jsx-60-HhFL4l .btn { background-color:#1b2d78; border-radius:60px; transform:translateX(-50%); color:#fff; left:50%; bottom:.3rem; width:70%; font-size:.22rem; position:absolute; height:.6rem; }
.render-jsx-60-HhFL4l .text { padding:0 .1rem; top:3.3rem; color:#666; width:100%; font-size:.16rem; line-height:1.6; position:absolute; text-align:center; }
.render-jsx-60-HhFL4l .bgimg { width:100%; }
.render-jsx-60-HhFL4l .code { transform:translateX(-50%); top:1.3rem; border:3px solid rgba(225,201,159); padding:0 0 0 0; margin:0 0 0 0; left:50%; width:1.8rem; position:absolute; }
.render-jsx-60-HhFL4l .wx { color:#b71d25; padding:0 0 0 0; margin:0 0 0 0; }
.render-jsx-60-HhFL4l .con { transform:translate(-50%,-50%); top:45%; left:50%; width:4rem; position:absolute; }
.render-jsx-60-HhFL4l { background-color:rgba(0,0,0,0.5); top:0; left:0; bottom:0; position:fixed; right:0; }
}
@media (max-width:768px) {
.render-jsx-60-HhFL4l .close { transform:translateX(-50%); left:50%; bottom:-.9rem; width:.8rem; position:absolute; }
.render-jsx-60-HhFL4l .btn { background-color:#1b2d78; border-radius:60px; transform:translateX(-50%); color:#fff; left:50%; bottom:.3rem; width:70%; font-size:.3rem; position:absolute; height:.8rem; }
.render-jsx-60-HhFL4l .text { padding:0 .1rem; top:4.2rem; color:#666; width:100%; font-size:.16rem; line-height:1.6; position:absolute; text-align:center; }
.render-jsx-60-HhFL4l .bgimg { width:100%; }
.render-jsx-60-HhFL4l .code { border:3px solid rgba(225,201,159); transform:translateX(-50%); top:2rem; left:50%; width:1.8rem; position:absolute; }
.render-jsx-60-HhFL4l .wx { color:#b71d25; }
.render-jsx-60-HhFL4l .con { transform:translate(-50%,-50%); top:45%; left:50%; width:5.5rem; position:absolute; }
.render-jsx-60-HhFL4l { background-color:rgba(0,0,0,0.5); top:0; left:0; bottom:0; position:fixed; right:0; }
}
</style>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-60-HhFL4l { background-color:rgba(0,0,0,0.5); top:0; left:0; bottom:0; position:fixed; right:0; }
.render-jsx-60-HhFL4l .content { transform:translate(-50%,-50%); top:45%; left:50%; width:4rem; position:absolute; }
.render-jsx-60-HhFL4l .bgimg { width:100%; }
.render-jsx-60-HhFL4l .code { transform:translateX(-50%); top:1.3rem; border:3px solid rgba(225,201,159); padding:0 0 0 0; margin:0 0 0 0; left:50%; width:1.8rem; position:absolute; }
.render-jsx-60-HhFL4l .text { padding:0 .1rem; top:3.3rem; color:#666; width:100%; font-size:.16rem; line-height:1.6; position:absolute; text-align:center; }
.render-jsx-60-HhFL4l .wx { color:#b71d25; padding:0 0 0 0; margin:0 0 0 0; }
.render-jsx-60-HhFL4l .btn { background-color:#1b2d78; border-radius:60px; transform:translateX(-50%); color:#fff; left:50%; bottom:.3rem; width:70%; font-size:.22rem; position:absolute; height:.6rem; }
.render-jsx-60-HhFL4l .close { transform:translateX(-50%); padding:0 0 0 0; margin:0 0 0 0; bottom:-.7rem; left:50%; width:.6rem; position:absolute; }
}
/* mobile端 */
@media (max-width:768px) {
.render-jsx-60-HhFL4l { background-color:rgba(0,0,0,0.5); top:0; left:0; bottom:0; position:fixed; right:0; }
.render-jsx-60-HhFL4l .content { transform:translate(-50%,-50%); top:45%; left:50%; width:5.5rem; position:absolute; }
.render-jsx-60-HhFL4l .bgimg { width:100%; }
.render-jsx-60-HhFL4l .code { border:3px solid rgba(225,201,159); transform:translateX(-50%); top:2rem; left:50%; width:1.8rem; position:absolute; }
.render-jsx-60-HhFL4l .text { padding:0 .1rem; top:4.2rem; color:#666; width:100%; font-size:.16rem; line-height:1.6; position:absolute; text-align:center; }
.render-jsx-60-HhFL4l .wx { color:#b71d25; }
.render-jsx-60-HhFL4l .btn { background-color:#1b2d78; border-radius:60px; transform:translateX(-50%); color:#fff; left:50%; bottom:.3rem; width:70%; font-size:.3rem; position:absolute; height:.8rem; }
.render-jsx-60-HhFL4l .close { transform:translateX(-50%); left:50%; bottom:-.9rem; width:.8rem; position:absolute; }
}
</style>
<div class="render-jsx-60-HhFL4l" id="success-popup-60" style="display:none;">
<div class="content con">
<img class="bgimg" src="https://img.acadsoc.com.cn/web/lps/sem/qrcode/img/bg.png">
<img class="code" src="https://img.acadsoc.com.cn/web/lps/sem/qrcode/img/18126447601.jpg">
<p class="text">添加微信(请备注手机号)加入学员知识互动社群<br><strong style="color:#333;">更有<span style="color:#b71d25;">外教课/现金红包</span>双重好礼等你来拿!</strong><br>微信号: <span class="wx">18126447601</span></p>
<button class="btn" data-copy-wx="18126447601">复制微信号</button>
<img class="close close-popup" src="https://img.acadsoc.com.cn/web/lps/sem/qrcode/img/close.png">
</div>
</div>
<style>
.render-jsx-56-model .title{position:relative;display:flex;align-items:center;justify-content:center;}
.render-jsx-56-model .title::after,.render-jsx-56-model .title::before{
position:absolute;
left:10%;
content:'';
width:70px;
height:1px;
background:#B81C25;
}
.render-jsx-56-model .title::before{
left:initial;
right:10%;
}
.render-jsx-56-model {
display:flex;
background-color:rgba(0,0,0,0.5);
}
.render-jsx-56-model .content{
margin:auto;
text-align:center;
position:relative;
}
.render-jsx-56-model .register-close{
cursor: pointer;
}
.render-jsx-56-model .p1 input,
.render-jsx-56-model .p2 input{
padding:initial;
color:initial;
}
/* PC端 */
@media (min-width:769px) {
.render-jsx-56-model .content{
background-color:white; border-radius:10px; padding:0 0 40px 0; width:480px;
}
.render-jsx-56-model .register-close{
top:.2rem; width:.3rem; position:absolute; right:.2rem;
}
.render-jsx-56-model .title{
background-color:white; padding:0 0 0 0; margin:0 0 0 0; color:#c30d23; font-weight:bold; font-size:26px; line-height:1; text-align:center;
}
.render-jsx-56-model .register-phone{
border-radius:60px; border:1px solid #ccc; padding:0 20px 0 20px; margin:20px auto 0 auto; width:90%; font-size:16px; line-height:3.6; text-align:left;
height:.5rem;
border:1px solid #ccc;
}
.render-jsx-56-model .register-code{
border-radius:60px; border:1px solid #ccc; padding:0 20px 0 20px; margin:20px auto 0 auto; width:90%; font-size:16px; line-height:3.6; text-align:left;
height:.5rem;
border:1px solid #ccc;
}
.render-jsx-56-model .btnGetSMS{
background-color:#c30d23; border-radius:0 60px 60px 0; padding:0 20px 0 20px; color:white;
border-radius:0 60px 60px 0;
}
.render-jsx-56-model .bimg { margin:30px 0 0 0; width:90%; }
.render-jsx-56-model .registerSubmit{ background-color:#c30d23; border-radius:60px; padding:0 0 0 0; margin:20px auto 0 auto; color:white; width:90%; font-size:18px; line-height:3.2; }
}
</style>
<div class="render-jsx-56-model" id="register-popup-56" style="display:none;">
<div class="content">
<img src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" class="register-close closeimg" data-module-id="56">
<img src="https://img.acadsoc.com.cn/web/img/sem-luo/tc.png" class="topimg">
<p class="title">价值388元大礼包</p>
<div class="input__div register-phone">
<input placeholder="填写您的手机号码" type="tel" maxlength="11" name="TxtPhone" class="TxtPhone phoneinput">
</div>
<div class="input__div register-code">
<input placeholder="验证码" type="tel" maxlength="6" name="TxtCode" class="TxtCode codeinput">
<button class="btnGetSMS codebtn" name="btnGetSMS">获取验证码
</button>
</div>
<button class="registerSubmit button" name="registerSubmit">
立即领取
</button>
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/16/dthbf8gp3gk8znhcmtxmzxb5ze6rg1d3.png" class="bimg">
</div>
</div>
<footer class="footer">
<div class="footer-pc" style="display: block !important;">
<div class="footer-pc-left">
<div>
服务热线:400-600-1166<a href="http://www.miitbeian.gov.cn/" rel="nofollow" target="_blank">粤ICP备19156451号</a>
</div>
<div>本站信息由深圳市阿卡索资讯股份有限公司发布</div>
</div>
<div class="footer-pc-right">
<img src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/pcImg/footer.png" alt="Copyright">
</div>
</div>
</footer>
<!--滑动验证生成-->
<div id="captcha"></div>
<!--滑动验证生成end-->
<div class="loading" style="position:fixed;top:50%;left:50%;margin-top:-25px;margin-left:-25px;display:none;z-index:1040;">
<img src="https://img.acadsoc.com.cn/web/img/loading1.gif" style="z-index:1050;position:relative;">
<div class="modal-backdrop in" style="background-color:#fff;opacity: .8;"></div>
</div>
<script type="text/javascript" src="https://img.acadsoc.com.cn/js/register_new_double-editor.js"></script>
<script type="text/javascript" src="https://img.acadsoc.com.cn/js/gt.js"></script>
<script type="text/javascript" src="https://img.acadsoc.com.cn/js/Captcha.js"></script>
<!-- 新验证1909 End -->
<script type="text/javascript" src="https://www.acadsoc.com.cn/Ajax/Web.UI.Fun.User.aspx"></script>
<!-- abtest -->
<script src="https://img.acadsoc.com.cn/web/js/abtest.min.js"></script>
<script type="text/javascript" src="https://img.acadsoc.com.cn/js/editor/swiper-4.5.3.min.js"></script>
<script type="text/javascript" src="https://img.acadsoc.com.cn/js/editor/comm-handle.js"></script>
<script>
// 支付配置
var defaultPay = {
sort: '',
value: '',
}
var payConfig = {
sort: '',
value: '',
};
var paytype = 'wechat'; // wechat | alipay
window.onload = function(){
addFixedEls();
}
function addFixedEls(){
// 头部元素
const headerFixedElement = $('body>div').eq(0);
$('.fixed__el').each((i,v) => {
// 定位元素
const fixedEl = $(v);
// 移除元素
const removeFixedElement = fixedEl.prev();
let bTop = removeFixedElement.offset().top - 10 - $(window).height() + removeFixedElement.height();
let rTop = headerFixedElement.offset().top + headerFixedElement.height();
$(window).scroll(function () {
let sTop = $(this).scrollTop();
if (sTop > rTop) {
fixedEl.fadeIn(300);
if (sTop >= bTop) {
fixedEl.removeClass('fixed');
} else {
fixedEl.addClass('fixed');
}
} else {
fixedEl.fadeOut(300);
}
})
})
}
const date = new Date();
const curruYear = date.getFullYear();
const currMonth = date.getMonth() + 1;
const currDate = date.getDate();
// 替换时间文字
document.querySelectorAll('.time').forEach(function(v){
v.innerHTML = getToday(v.innerHTML);
})
// dynamic data
const imgIds = [];
const bgImgIds = [];
const textIds = [];
$(function () {
$('[data-copy-wx]').click(function(){
copyWx($(this).attr('data-copy-wx'),$(this).attr('data-wx-alter'))
})
$('[data-to-wx]').click(function(){
copyWx($(this).attr('data-to-wx'),$(this).attr('data-wx-alter'))
const aele = document.createElement('a');
aele.href ='weixin://';
aele.click();
});
// 返回弹窗
if (document.querySelector('[id*=back-popup]')) {
$('[id*=back-popup]').hide();
$('[id*=back-popup] [class*=close]').click(function () {
$('[id*=back-popup]').fadeOut();
// 取消返回,需要默认back一次
window.removeEventListener('popstate', holdBack);
history.back();
})
// 防止页面后退 监听
history.pushState({ title: 'title', url: '#back' }, 'title', '#back');
window.addEventListener('popstate', holdBack);
}
// 关闭弹窗
$('.close-popup').click(function(){
window.payConfig = {
sort: '',
value: ''
};
$(this).parents('[id*=-popup]').fadeOut();
})
// 关闭注册弹窗
$('.register-close').click(function(){
$(this).parents('[id*=register-popup]').fadeOut();
})
// 打开弹窗
$('[data-popup-id]').click(function(){
window.payConfig.sort = this.getAttribute('data-pay-sort');
window.payConfig.value = this.getAttribute('data-pay-value');
openModal(this);
})
// 单链接跳转
$('[data-href]').click(function(){
location.href = $(this).attr('data-href');
})
// 分端跳转
$('[data-pm-href]').click(function(){
var parameter = window.location.search;
var sUserAgent = navigator.userAgent.toLowerCase();
var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
var bIsMidp = sUserAgent.match(/midp/i) == "midp";
var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
var bIsAndroid = sUserAgent.match(/android/i) == "android";
var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
if (bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) {
location.href = $(this).attr('data-mobile-href');
} else if (bIsIpad) {
location.href = $(this).attr('data-ipad-href');
} else {
location.href = $(this).attr('data-pc-href');
}
})
// 跳转注册
$('[data-form]').click(function(){
$('body,html').stop().animate({ 'scrollTop': 0 },
{
duration: 1000,
easing: "swing"
});
})
$('[data-img-id]').each(function (i, item) {
const id = $(item).attr('data-img-id');
if (imgIds.indexOf(id) === -1) {
imgIds.push(id);
}
})
$('[data-text-id]').each(function (i, item) {
const id = $(item).attr('data-text-id');
if (textIds.indexOf(id) === -1) {
textIds.push(id);
}
})
$('[data-bg-img-id]').each(function (i, item) {
const id = $(item).attr('data-bg-img-id');
if (bgImgIds.indexOf(id) === -1) {
bgImgIds.push(id);
}
})
$.ajax({
url: 'https://dmpaio.acadsoc.com.cn/api-landingpage/PageResources/selectAllResources',
method: "POST",
dataType: "json",
headers: { 'Content-Type': 'application/json' },
data: JSON.stringify({ bgImgIds, imgIds, textIds }),
success: function (res) {
const _bgImgIds = res.data.bgImgIds;
const _imgIds = res.data.imgIds;
const _textIds = res.data.textIds;
// 背景图
_bgImgIds.forEach(function (v) {
const ele = $(`[data-bg-img-id=${v.id}]`);
// 手机banner
if (ele.hasClass('mobile-banner')) {
ele.attr('src', v.url);
} else {
ele.css('background-image', `url(${v.url})`);
}
});
_imgIds.forEach(function (v) {
const ele = $(`[data-img-id=${v.id}]`);
if(ele[0].nodeName === 'IMG'){
ele.attr('src', v.url);
}else{
ele.css('background-image', `url(${v.url})`);
}
});
_textIds.forEach(function (v) {
const ele = $(`[data-text-id=${v.id}]`);
ele.html(v.name);
});
}
})
if ($('[data-pay-sort]').length > 0){
$('[data-paytype]').click(function () {
window.paytype = this.getAttribute('data-paytype');
});
}
// 注册
register.init({
successTxt: false, // 值为false时不执行
successLocation: false, // 值为false时不执行
successFn: function () {
ABRecord.registNotice();
//百度ocpc提交成功埋码
window._agl && window._agl.push(['track', ['success', { t: 3 }]])
$(".loading").hide();
window.registerCallback && window.registerCallback();
// customize register code
return false;
},
type: 'code', //注册类型:normal(常规),code(验证码注册),uid(带推荐人uid)
activityId: 35
});
})
</script>
<!-- 53客服 -->
<script>(function () { var _53code = document.createElement("script"); _53code.src = "https://tb.53kf.com/code/code/10145332/1"; var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(_53code, s); })();</script>
<!-- customize footer code -->
</body></html>