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
<!doctype html><html><head>
<meta charset="UTF-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
<title>阿卡索外教网_在线英语培训_外教口语一对一培训</title>
<meta name="description" content="阿卡索外教网提供在线英语口语培训,全程外教一对一教学模式,是专业的在线英语培训网站,阿卡索外教老师均毕业于国际知名的一流学府,拥有标准的英语口语以及最纯正的教学知识。您值得拥有">
<meta name="keywords" content="在线英语口语培训,在线英语培训,外教一对一,英语外教一对一,英语网络教学">
<!--<link rel="stylesheet" href="https://img.acadsoc.com.cn/css/bootstrap.min.css">-->
<link href="https://img.acadsoc.com.cn/web/WebNew/assets/global/css/swiper.min.css" rel="stylesheet" type="text/css">
<link rel="stylesheet" href="https://img.acadsoc.com.cn/web/css/header-footer.css">
<link rel="icon" href="https://www.acadsoc.com.cn/favicon.ico" type="image/x-icon">
<!--神策代码-->
<script src="https://img.acadsoc.com.cn/web/SenSors/sensorsheadother.js"></script>
<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>
<!--百度统计代码-->
<!-- 百度ocpc基础代码 -->
<script src="https://www.acadsoc.com.cn/OCPC/js/ocpc.js"></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>
.fixed{
position: fixed;
bottom: 0;
left: 0;
z-index: 6;
font-size: 0;
}
.container {
padding-right: 15px;
padding-left: 15px;
margin-right: auto;
margin-left: auto;
max-width: 100%;
}
@media (min-width: 768px) {
.container {
width: 750px;
}
}
@media (min-width: 992px) {
.container {
width: 970px;
}
}
@media (min-width: 1200px) {
.container {
width: 1170px;
}
}
* {
padding: 0;
margin: 0;
outline: 0;
border: 0;
box-sizing: border-box;
list-style: none;
background:none;
}
body{
background:none;
font-size:0;
background-color:white;
}
img{max-width:100%;}
/* 弹窗 */
[id*=register-popup],
[id*=loading-popup],
[id*=back-popup],
[id*=success-popup]{
position:fixed;
top:0;
bottom:0;
left:0;
right:0;
background-color:rgba(0,0,0,0.5);
z-index:7 !important;
}
[id*=register-popup]{
z-index:8 !important;
}
[id*=success-popup]{
z-index:9 !important;
}
/* 输入框 */
.input__div {
position: relative;
width: 100%;
}
.input__div img{
position: absolute;
left: .2rem;
top: 50%;
transform: translateY(-50%);
}
.input__div img ~ input{
padding-left:.5rem;
}
.input__div > input {
font-size: inherit;
width: 100%;
line-height: inherit;
padding:initial;
color:initial;
display:block;
height:100%;
}
.input__div > button {
position: absolute;
right: 0;
top: 0;
height: 100%;
}
[data-popup-id]{
cursor:pointer;
}
/* 按钮 */
button {
max-width: 100%;
display: inline-block;
cursor:pointer;
}
button:disabled{
background-color: #aeaeae !important;
cursor: no-drop !important;
}
/* swiper */
.swiper-container{
padding-bottom:50px;
}
.swiper-wrapper {
height: auto !important;
}
.scale-swiper .swiper-slide {
width: 100%;
}
.swiper-slide > img {
width: 100%;
}
.scale-swiper .swiper-slide:not(.swiper-slide-active) {
transform: scale(0.85);
}
.banner {
width: 100%;
position: relative;
background-repeat: no-repeat;
background-position: center center;
}
/* pc */
@media (min-width: 769px) {
.mobile--show {
display: none !important;
}
.banner > .container {
height: 100%;
position: relative;
}
}
/* mobile */
@media (max-width: 768px) {
.pc--show {
display: none !important;
}
.banner {
background-image: none !important;
}
.banner > .container {
text-align: center;
}
}
</style>
</head><body>
<!-- js统计 -->
<script src="https://img.acadsoc.com.cn/web/js/monitor/apm.web.js"></script>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-22-0 { border-radius:0 0 0 0; background-image:url(https://img.acadsoc.com.cn/web/lps/img-new/pc1_9.png); height:600px; padding:0 0 0 0; margin:0 0 0 0; }
.render-jsx-22-0 mbanner { width:100%; }
.render-jsx-22-0 .container { border-radius:0 0 0 0; height:100%; padding:0 0 0 0; margin:0 auto; position:relative; }
.render-jsx-22-0 .con{ border-radius:10px; background-color:white; transform:translateY(-50%); top:50%; padding:30px 30px; margin:0 0 0 0; right:-8%; width:400px; position:absolute; }
.render-jsx-22-0 .text1{ color:#122A88; font-weight:bold; font-size:22px; border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:10px 0 0; }
.render-jsx-22-0 .text2{ color:#333; font-size:16px; border-radius:0 0 0 0; text-align:center; padding:.1rem 0 0 0; margin:0 0 0 0; }
.render-jsx-22-0 .phone{ font-size:.17rem; border-radius:4px; height:.5rem; border:1px solid #999; padding:0 0 0 16px; margin:20px 0 0; line-height:.5rem; }
.render-jsx-22-0 .code{ font-size:.17rem; border-radius:4px; height:.5rem; border:1px solid #999; padding:0 0 0 16px; margin:20px 0 0; line-height:.5rem; position:relative; }
.render-jsx-22-0 .codebtn{ color:white; font-size:.17rem; background-color:#C30D23; border-radius:0 0 0 0; top:0; height:100%; padding:0 15px; margin:0 0 0 0; right:0; position:absolute; }
.render-jsx-22-0 .btn{ color:white; font-size:.24rem; background-color:#C30D23; border-radius:4px; height:.5rem; padding:0 0 0 0; margin:10px 0 0; line-height:.5rem; width:100%; }
.render-jsx-22-0 .img{ border-radius:0 0 0 0; padding:0 0 0 0; margin:10px 0 0; width:100%; }
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-22-0 { margin:0; }
.render-jsx-22-0 mbanner { border-radius:0 0 0 0; padding:0 0 0 0; margin:0 0 0 0; width:100%; }
.render-jsx-22-0 .container { background-size:100% 100%; border-radius:0 0 0 0; background-image:url(https://img.acadsoc.com.cn/web/lps/shaoer1/img/new-bg.jpg); padding:30px 0 1rem; margin:0 0 0 0; background-position:center center; }
.render-jsx-22-0 .con{ border-radius:10px; background-color:white; padding:.3rem; margin:0 auto; right:0; width:90%; position:relative; }
.render-jsx-22-0 .text1{ color:#122A88; font-weight:bold; font-size:.44rem; border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:10px 0 0; }
.render-jsx-22-0 .text2{ color:#333; font-size:.32rem; border-radius:0 0 0 0; text-align:center; padding:.1rem 0 0 0; margin:0 0 0 0; }
.render-jsx-22-0 .phone{ font-size:.32rem; border-radius:4px; height:.9rem; border:1px solid #999; padding:0 0 0 16px; margin:20px 0 0; line-height:.9rem; }
.render-jsx-22-0 .code{ font-size:.32rem; border-radius:4px; height:.9rem; border:1px solid #999; padding:0 0 0 16px; margin:20px 0 0; line-height:.9rem; position:relative; }
.render-jsx-22-0 .codebtn{ background-color:#C30D23; padding:0 15px; color:white; top:0; font-size:14px; position:absolute; right:0; height:100%; }
.render-jsx-22-0 .btn{ color:white; font-size:.36rem; background-color:#C30D23; border-radius:4px; height:.9rem; padding:0 0 0 0; margin:10px 0 0; line-height:.9rem; width:100%; }
.render-jsx-22-0 .img{ border-radius:0 0 0 0; padding:0 0 0 0; margin:10px 0 0; width:100%; }
}
</style>
<div class="render-jsx-22-0">
<img src="https://img.acadsoc.com.cn/web/lps/img-new/mbanner1_9.png" class="mobile--show mbanner">
<div class="container">
<div class="con">
<p class="text1">注册领取<span style="font-size:1.6em;color:#C30D23;">388元</span>试听课礼包</p>
<p class="text2">名额有限,每天仅限前100名</p>
<div class="input__div">
<input placeholder="手机号" type="tel" id="TxtPhone" name="TxtPhone" class="TxtPhone phone">
</div>
<div class="input__div duanxin" style="display:none;">
<input placeholder="验证码" type="tel" maxlength="6" name="TxtCode" class="TxtCode code">
<button class="btnGetSMS codebtn" name="btnGetSMS">
获取验证码
</button>
</div>
<button class="registerSubmit btn" name="registerSubmit">
免费领取
</button>
<img src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/kc.png" class="img">
</div>
</div>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-14-1 {
background-color:white; border-radius:0 0 0 0; text-align:center; padding:.5rem 0 .2rem 0; margin:0 0 0 0;
}
.render-jsx-14-1 >p{
color:rgba(20, 43, 136, 1); font-size:.35rem; border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:0 0 0 0; display:inline-block; line-height:1; width:auto;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-14-1 {
background-color:white; border-radius:0 0 0 0; text-align:center; padding:.6rem 0 0 0; margin:0 0 0 0;
}
.render-jsx-14-1 >p{
color:rgba(20, 43, 136, 1); font-size:.4rem; border-radius:0 0 0 0; text-align:center; padding:0 1.1rem 0 1.1rem; margin:0 0 0 0; display:inline-block; line-height:1.5; width:auto;
}
}
</style>
<div class="render-jsx-14-1">
<p>优质外教一对一在线教学,趣味性互动学习</p>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-14-2 {
color:#333; background-color:white; border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:0 0 0 0;
}
.render-jsx-14-2 >p{
color:black; font-size:.24rem; border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:0 0 0 0; display:inline-block; line-height:1; width:auto;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-14-2 {
background-color:white; border-radius:0 0 0 0; text-align:center; padding:.2rem 0 .2rem 0; margin:0 0 0 0;
}
.render-jsx-14-2 >p{
color:black; font-size:.32rem; border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:0 0 0 0; display:inline-block; line-height:1; width:auto;
}
}
</style>
<div class="render-jsx-14-2">
<p>孩子乐意学,听、说、读、写样样强</p>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-14-3 {
background-color:white; border-radius:0 0 0 0; text-align:center; padding:.3rem 0 0 0; margin:0 0 0 0;
}
.render-jsx-14-3 >p{
color:#444; font-size:.17rem; border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:0 0 0 0; display:inline-block; line-height:2; width:10rem;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-14-3 {
background-color:white; border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:0 0 0 0;
}
.render-jsx-14-3 >p{
color:black; font-size:.26rem; border-radius:0 0 0 0; text-align:center; padding:0 .3rem .2rem .3rem; margin:0 0 0 0; display:inline-block; line-height:1.75; width:auto;
}
}
</style>
<div class="render-jsx-14-3">
<p>阿卡索少儿英语是专为3-18岁孩子设计的趣味性互动课程,课程根据孩子的特点及水平定制,采用一对一外教在线教学方式,坚持为孩子打造一个纯母语式的教学环境。</p>
</div>
<style>
.render-jsx-16-4 .img-div{
position:relative;
display:inherit;
align-items:inherit;
flex-direction:inherit;
justify-content:inherit;
}
/* PC端 */
@media (min-width:769px) {
.render-jsx-16-4 { background-color:white; }
.render-jsx-16-4 .container { border-radius:0 0 0 0; padding:.5rem 0 .8rem; margin:0 auto; display:flex; justify-content:space-between; }
.render-jsx-16-4 .img { padding:15px; width:2.27rem; }
.render-jsx-16-4 .text { padding:0 .2rem; color:white; bottom:15px; display:none; font-size:.16rem; line-height:2; right:15px; border-radius:50%; background-color:rgba(25,41,101,.8); top:15px; left:15px; justify-content:center; align-items:center; position:absolute; }
.render-jsx-16-4 .item0 { display:inline-block; text-align:center; }
.render-jsx-16-4 .item1 { display:inline-block; text-align:center; }
.render-jsx-16-4 .item2 { display:inline-block; text-align:center; }
.render-jsx-16-4 [class*=item]:hover:hover img{
background:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/11/13/7xrwdmpc63c4ymjw1dm4pnr8749cgxp3.png) no-repeat center center;
background-size: 100%;
}
.render-jsx-16-4 [class*=item]:hover:hover p{display:flex !important;}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-16-4 { background-color:white; }
.render-jsx-16-4 .container { padding:0 .2rem; margin:0 auto; }
.render-jsx-16-4 .img { border-radius:0 0 0 0; flex:0; padding:15px; margin:0 0 0 0; width:40%; }
.render-jsx-16-4 .text { padding:0 .2rem; color:black; font-size:.28rem; line-height:1.4; text-align:center; }
.render-jsx-16-4 .item0 { border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:0 0 0 0; display:flex; align-items:center; }
.render-jsx-16-4 .item1 { flex-direction:row-reverse; display:flex; align-items:center; text-align:center; }
.render-jsx-16-4 .item2 { display:flex; align-items:center; text-align:center; }
.render-jsx-16-4 .div img{
background:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/11/13/7xrwdmpc63c4ymjw1dm4pnr8749cgxp3.png) no-repeat center center;
background-size: 100%;
}
}
</style>
<div class="render-jsx-16-4">
<div class="container">
<div class="item0">
<div class="img-div">
<img src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/stu1-new.png" class="img">
<p class="text">为不同基础的孩子定制专属学习课程</p>
</div>
</div><div class="item1">
<div class="img-div">
<img src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/stu2-new.png" class="img">
<p class="text">浸入式教学,激发孩子学习兴趣,敢于开口</p>
</div>
</div><div class="item2">
<div class="img-div">
<img src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/stu3-new.png" class="img">
<p class="text">趣味轻松的学习环境,全面提高听、说、读、写综合应用能力</p>
</div>
</div>
</div>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-25-5 { background-size:100% 100%; border-radius:0 0 0 0; background-repeat:no-repeat; background-image:url(https://img.acadsoc.com.cn/web/lps/shaoer1/img/bg2-new.png); padding:1rem 0; margin:0 0 0 0; background-position:center center; }
.render-jsx-25-5 .container { border-radius:0 0 0 0; padding:0; margin:0 auto; }
.render-jsx-25-5 .title1 { color:white; font-size:.35rem; border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:.1rem 0 0; }
.render-jsx-25-5 .title2 { color:white; font-size:.24rem; border-radius:0 0 0 0; text-align:center; padding:.2rem 0 0 0; }
.render-jsx-25-5 .book { border-radius:0 0 0 0; padding:.4rem 0 0 0; display:flex; align-items:center; }
.render-jsx-25-5 .left { flex:50%; position:relative; }
.render-jsx-25-5 .leftimg { transform:translateY(-50%); z-index:2; top:50%; left:-18%; width:2.2rem; position:absolute; height:auto; }
.render-jsx-25-5 .lefttext { color:#fff; font-size:.18rem; border-radius:.1rem; flex:50%; text-align:left; border:3px dashed #fff; padding:6% 5% 6% 22%; margin:0 0 0 0; display:block; line-height:2.2; }
.render-jsx-25-5 .right { flex:50%; }
.render-jsx-25-5 .item { border-radius:0 0 0 0; padding:.1rem 0 .1rem .3rem; margin:0 0 0 0; display:flex; align-items:center; }
.render-jsx-25-5 .img { width:.5rem; height:auto; }
.render-jsx-25-5 .text { margin:0 0 0 .1rem; color:#fff; font-size:.17rem; }
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-25-5 { padding:.8rem 0; background-repeat:no-repeat; background-size:auto 100%; background-image:url(https://img.acadsoc.com.cn/web/lps/shaoer1/img/bg2-m-n.png); }
.render-jsx-25-5 .container { padding:0 .3rem; margin:0 auto; }
.render-jsx-25-5 .title1 { color:white; font-size:.4rem; border-radius:0 0 0 0; text-align:center; padding:0 1rem; margin:.2rem 0 0; }
.render-jsx-25-5 .title2 { padding:0 0 .4rem; margin:.2rem 0 0; color:white; font-size:.32rem; text-align:center; }
.render-jsx-25-5 .book { margin:.2rem 0 0; }
.render-jsx-25-5 .left { margin:0 0 .3rem; width:100%; position:relative; }
.render-jsx-25-5 .leftimg { transform:translateY(-50%); z-index:2; top:50%; left:-2%; width:2.4rem; position:absolute; height:auto; }
.render-jsx-25-5 .lefttext { border:2px dashed #fff; border-radius:.1rem; padding:2% 2% 2% 20%; margin:0 0 0 auto; color:#fff; display:block; width:6rem; font-size:14px; line-height:20px; text-align:left; }
.render-jsx-25-5 .right { width:100%; }
.render-jsx-25-5 .item { padding:..1rem 0 .1rem; display:flex; justify-content:center; align-items:center; }
.render-jsx-25-5 .img { width:.7rem; height:auto; }
.render-jsx-25-5 .text { margin:0 0 0 .2rem; color:#fff; font-size:.28rem; }
}
</style>
<div class="render-jsx-25-5">
<div class="container">
<p class="title1">欧美原版教材科学撰写,让孩子对接国际教育标准</p>
<p class="title2">知识与实践相结合,稳步提升英语学习能力</p>
<div class="book">
<div class="left">
<img class="leftimg" src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/book-new.png">
<p class="lefttext">阿卡索少儿英语,基于孩子的语言能力,参照欧洲共同语言框架体系(CEFR)标准、将欧美原版教材引进中国,并研发成适合中国孩子的教材,全面覆盖国家新课标(中小学阶段),及少儿英语考试的英语学习课程。</p>
</div>
<div class="right">
<div class="item">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/no1-n.png">
<p class="text"> 培养英语语感,内容新颖,注重趣味性 </p>
</div>
<div class="item">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/no2-n.png">
<p class="text"> 激发自主学习兴趣,培养应用口语习惯 </p>
</div>
<div class="item">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/no3-n.png">
<p class="text"> 学习和实践相结合,熟练掌握所学知识 </p>
</div>
<div class="item">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/no4-n.png">
<p class="text"> 对接K12人群,针对性教学,减轻压力 </p>
</div>
</div>
</div>
</div>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-14-6 {
background-color:white; border-radius:0 0 0 0; text-align:center; padding:.5rem 0 .2rem 0; margin:0 0 0 0;
}
.render-jsx-14-6 >p{
color:rgba(20, 43, 136, 1); font-size:.35rem; border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:0 0 0 0; display:inline-block; line-height:1; width:auto;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-14-6 {
background-color:white; border-radius:0 0 0 0; text-align:center; padding:.6rem 0 0 0; margin:0 0 0 0;
}
.render-jsx-14-6 >p{
color:rgba(20, 43, 136, 1); font-size:.4rem; border-radius:0 0 0 0; text-align:center; padding:0 1.5rem 0 1.5rem; margin:0 0 0 0; display:inline-block; line-height:1.5; width:auto;
}
}
</style>
<div class="render-jsx-14-6">
<p>随时随地线上趣味学习孩子自主家长省心</p>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-14-7 {
color:#333; background-color:white; border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:0 0 0 0;
}
.render-jsx-14-7 >p{
color:black; font-size:.24rem; border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:0 0 0 0; display:inline-block; line-height:1; width:auto;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-14-7 {
background-color:white; border-radius:0 0 0 0; text-align:center; padding:.2rem 0 .3rem 0; margin:0 0 0 0;
}
.render-jsx-14-7 >p{
color:black; font-size:.32rem; border-radius:0 0 0 0; text-align:center; padding:0 0 0 0; margin:0 0 0 0; display:inline-block; line-height:1; width:auto;
}
}
</style>
<div class="render-jsx-14-7">
<p>花更少的时间和费用,达同样的效果</p>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-20-8 { color:rgba(255, 255, 255, 1); border-radius:0 0 0 0; padding:.3rem 0 0 0; margin:0 auto; }
.render-jsx-20-8 .container { margin:0 auto; }
.render-jsx-20-8 .div { border:2px dashed #b81d25; border-radius:5px; padding:1%; margin:0 auto; width:100%; }
.render-jsx-20-8 .p { background-color:#B81D25; border-radius:10px; padding:1% 5%; color:white; font-size:.2rem; line-height:30px; text-align:center; }
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-20-8 { margin:0 auto; }
.render-jsx-20-8 .container { margin:0 auto; }
.render-jsx-20-8 .div { border:2px dashed #b81d25; border-radius:5px; padding:1%; margin:0 auto; width:100%; }
.render-jsx-20-8 .p { color:white; font-size:.28rem; background-color:#B81D25; border-radius:10px; text-align:center; padding:1% 5%; margin:0 0 0 0; line-height:1.5; }
}
</style>
<div class="render-jsx-20-8">
<div class="container">
<div class="div">
<div class="p">
阿卡索打破时间与空间的限制,拥有强大的线上授课平台,孩子足不出户,在家即可随时随地用平板电脑、手机、电脑等与外教学习国际课程。
</div>
</div>
</div>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-18-9 { background-color:white; border-radius:0 0 0 0; padding:0 0 .8rem 0; margin:0; }
.render-jsx-18-9 .container { margin:0 auto; display:flex; justify-content:space-between; align-items:center; }
.render-jsx-18-9 .left-img { margin:0 20px 0 6%; width:40%; }
.render-jsx-18-9 .right { width:50%; }
.render-jsx-18-9 .item { padding:20px 0 0; margin:3% 0; display:flex; align-items:center; }
.render-jsx-18-9 .right-img { margin:0 5% 0 0; width:65px; }
.render-jsx-18-9 .text1 { padding:0 0 5% 0; color:#b81d25; font-weight:bold; font-size:18px; }
.render-jsx-18-9 .text2 { color:#999; font-size:16px; }
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-18-9 { background-color:white; margin:0; }
.render-jsx-18-9 .container { border-radius:0 0 0 0; padding:.3rem 0 .3rem; margin:0 auto; }
.render-jsx-18-9 .left-img { margin:0 auto; display:block; width:90%; }
.render-jsx-18-9 .right { item.rightstyle.mobile }
.render-jsx-18-9 .item { border-radius:0 0 0 0; padding:.2rem .4rem 0; margin:3% 0; display:flex; align-items:center; }
.render-jsx-18-9 .right-img { margin:0 5% 0 0; width:65px; }
.render-jsx-18-9 .text1 { color:#b81d25; font-weight:bold; font-size:.36rem; border-radius:0 0 0 0; padding:0 0 5% 0; margin:0 0 0 0; }
.render-jsx-18-9 .text2 { color:#999; font-size:.26rem; border-radius:0 0 0 0; padding:0 0 0 0; margin:0 0 0 0; }
}
</style>
<div class="render-jsx-18-9">
<div class="container">
<img src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/girl-new.png" class="left-img">
<div class="right">
<div class="item">
<img src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/con1-new.png" class="right-img">
<div>
<p class="text1">碎片化教学时间</p>
<p class="text2">每天坚持25分钟,1个月效果看得见</p>
</div>
</div>
<div class="item">
<img src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/con2-new.png" class="right-img">
<div>
<p class="text1">超高的性价比</p>
<p class="text2">每节外教课低至13.2元,人人负担的起</p>
</div>
</div>
<div class="item">
<img src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/con3-new.png" class="right-img">
<div>
<p class="text1">3对1的服务</p>
<p class="text2">学习顾问+贴心客服+专属外教,周到服务</p>
</div>
</div>
</div>
</div>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-swiper-26-10 { background-size:100% 100%; border-radius:0 0 0 0; background-repeat:no-repeat; background-image:url(https://img.acadsoc.com.cn/web/lps/shaoer1/img/bg3-new.png); padding:.8rem 0; margin:0 0 0 0; background-position:center center; background-color:white; }
.render-swiper-26-10 .container { padding:0; margin:0 auto; }
.render-swiper-26-10 .swiper-container { padding:0.8rem 0 0; }
.render-swiper-26-10 .swiper-slide { border-radius:0 0 0 0; padding:0 .2rem; margin:0 0 0 0; width:70%; }
.render-swiper-26-10 .item{ background-color:white; border-radius:.1rem; text-align:center; padding:0 .2rem .3rem; margin:0 0 0 0; width:100%; position:relative; }
.render-swiper-26-10 .topimg { transform:translate(-50%, -50%); top:0; left:50%; width:1.1rem; position:absolute; }
.render-swiper-26-10 .img { border-radius:0 0 0 0; padding:.7rem 0 0; margin:0 0 0 0; width:100%; }
.render-swiper-26-10 .text1 { color:rgba(195, 13, 35, 1); font-weight:bold; font-size:.18rem; border-radius:0 0 0 0; padding:0 0 0 0; margin:0.06rem 0 0; }
.render-swiper-26-10 .line { background-color:rgba(195, 13, 35, 1); border-radius:0 0 0 0; height:.03rem; padding:0 0 0 0; margin:0.04rem; display:inline-block; width:.32rem; }
.render-swiper-26-10 .text2 { color:black; font-size:0.16rem; border-radius:0 0 0 0; padding:0 0 0 0; margin:.06rem 0 0; line-height:1.6; }
.scale-swiper .swiper-slide:not(.swiper-slide-active){
transform: scale(1);
}
}
/* 手机端 */
@media (max-width:768px) {
.render-swiper-26-10 { background-size:100% 100%; border-radius:0 0 0 0; background-repeat:no-repeat; background-image:url(https://img.acadsoc.com.cn/web/lps/shaoer1/img/bg3-new-m.png); padding:1.2rem 0 .8rem; margin:0 0 0 0; background-position:center center; background-color:white; }
.render-swiper-26-10 .container { border-radius:0 0 0 0; padding:0; margin:0 auto; }
.render-swiper-26-10 .swiper-container { padding:0.8rem 0 0; }
.render-swiper-26-10 .swiper-slide { border-radius:0 0 0 0; padding:0 .2rem; margin:0 0 0 0; width:70%; }
.render-swiper-26-10 .item{ background-color:white; border-radius:.1rem; text-align:center; padding:0 .4rem .4rem; margin:0 0 0 0; width:100%; position:relative; }
.render-swiper-26-10 .topimg { transform:translate(-50%, -50%); top:0; left:50%; width:1.4rem; position:absolute; }
.render-swiper-26-10 .img { padding:.8rem 0 0; width:100%; }
.render-swiper-26-10 .text1 { color:rgba(195, 13, 35, 1); font-weight:bold; font-size:.36rem; border-radius:0 0 0 0; padding:0 0 0 0; margin:0.12rem 0 0; }
.render-swiper-26-10 .line { background-color:rgba(195, 13, 35, 1); border-radius:0 0 0 0; height:.06rem; padding:0 0 0 0; margin:0.08rem; display:inline-block; width:.64rem; }
.render-swiper-26-10 .text2 { color:black; font-size:0.32rem; border-radius:0 0 0 0; padding:0 0 0 0; margin:.12rem 0 0; }
}
</style>
<div class="render-swiper-26-10">
<div class="container">
<p class="title1">真人外教严格选拔,懂学生的老师才是好老师</p>
<p class="title2">深谙少儿心理,多样化教学技巧</p>
<div class="swiper-container scale-swiper">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="item">
<img class="topimg" src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/j4-new.png">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/p1-n.png">
<p class="text1">全球优质少儿外教</p>
<div class="line"></div>
<p class="text2">外教均来自官方语言或母语为英语的国家, 保证外教口音纯正。</p>
</div>
</div>
<div class="swiper-slide">
<div class="item">
<img class="topimg" src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/j6-new.png">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/p3-n.png">
<p class="text1">筛选与培训机制</p>
<div class="line"></div>
<p class="text2">所有外教都需经过层层严格筛选机制及不定期考核,并采用淘汰制。</p>
</div>
</div>
<div class="swiper-slide">
<div class="item">
<img class="topimg" src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/j5-new.png">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/shaoer1/img/p2-n.png">
<p class="text1">丰富的授课经验</p>
<div class="line"></div>
<p class="text2">外教们拥有丰富的青少儿授课经验,有独特的教学技巧。</p>
</div>
</div>
</div>
</div>
</div>
</div>
<script>
$(function(){
new Swiper('.render-swiper-26-10 .swiper-container',{
initialSlide:1,
observeParents: true,
observer: true,
slideToClickedSlide: true,
centeredSlides: true,
slidesPerView: HtmlWidth > 768 ? 3 : 'auto',
})
})
</script>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-7-11 {
background-color:#B81D25; border-radius:0 0 0 0; text-align:center; padding:0 0 .4rem 0; margin:0 0 0 0;
}
.render-jsx-7-11 >button {
margin:0 auto;
color:rgba(195, 13, 35, 1); font-weight:bold; font-size:.18rem; background-color:rgba(255, 255, 255, 1); border-radius:10px 10px 10px 10px; height:.5rem; padding:0 0 0 0; margin:0 0 0 0; letter-spacing:4px; line-height:.5rem; width:400px;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-7-11 {
color:rgba(195, 13, 35, 1); background-color:#B81D25; border-radius:0 0 0 0; text-align:center; padding:0 0 .6rem 0; margin:0 0 0 0;
}
.render-jsx-7-11 >button {
margin:0 auto;
color:rgba(195, 13, 35, 1); font-weight:bold; font-size:.36rem; background-color:rgba(255, 255, 255, 1); border-radius:.1rem .1rem .1rem .1rem; height:1rem; padding:0 0 0 0; margin:0 0 0 0; line-height:1rem; width:90%;
}
}
</style>
<div class="render-jsx-7-11">
<button data-form>
领取免费体验课
</button>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-74-undefined { background-color:rgba(0,0,0,0.5); top:0; left:0; bottom:0; position:fixed; right:0; }
.render-jsx-74-undefined .el { transform:translate(-50%,-50%); top:50%; left:50%; width:5.5rem; position:absolute; }
.render-jsx-74-undefined .img { width:100%; }
.render-jsx-74-undefined .wx { border-radius:0 0 0 0; top:2.4rem; padding:0 0 0 0; margin:0 0 0 0; right:.4rem; width:2.4rem; position:absolute; }
.render-jsx-74-undefined .close-popup { transform:translateX(-50%); left:50%; bottom:-.7rem; width:.5rem; position:absolute; }
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-74-undefined { background-color:rgba(0,0,0,0.5); top:0; left:0; bottom:0; position:fixed; right:0; }
.render-jsx-74-undefined .el { transform:translate(-50%,-50%); top:50%; left:50%; width:5.5rem; position:absolute; }
.render-jsx-74-undefined .img { width:100%; }
.render-jsx-74-undefined .wx { top:2.4rem; width:2.4rem; position:absolute; right:.4rem; }
.render-jsx-74-undefined .close-popup { transform:translateX(-50%); left:50%; bottom:-.7rem; width:.5rem; position:absolute; }
}
</style>
<div id="success-popup-74" class="render-jsx-74-undefined" style="display:none;">
<div class="el">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/29/a61dfjpx1d9l8btm5yt9jajxhpbx7a92.png" class="img">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/11/14/8gc7p6g9w7t3x7xdanhacfp837n9ykxg.jpg" class="wx">
<img src="https://img.acadsoc.com.cn/web/lps/sem/qrcode/img/close.png" class="close-popup">
</div>
</div>
<script>
$(function(){
// 关闭弹窗
$('.close-popup').click(function(){
$(this).parents('[id*=-popup]').fadeOut();
})
})
</script>
<footer class="footer ">
<div class="footer-pc">
<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>
<div class="footer-m">
<div class="footer-m-logo"></div>
<div class="footer-m-tel">
服务热线:400-600-1166<a href="http://www.miitbeian.gov.cn/" rel="nofollow" target="_blank">粤ICP备19156451号</a>
</div>
<div>本站信息由深圳市阿卡索资讯股份有限公司发布</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/web/js/swiper-4.0.5.min.js"></script>
<script>
const date = new Date();
const curruYear = date.getFullYear();
const currMonth = date.getMonth() + 1;
const currDate = date.getDate();
// 替换时间文字
document.querySelectorAll('.time').forEach(function(v){
v.innerText = getToday(v.innerText);
})
function getToday(str) {
return str.replace(/year/gi,curruYear).replace(/month/gi,currMonth).replace(/date/gi,currDate);
}
function copyWx(wx){
const element = document.createElement('input');
element.value = wx;
document.body.append(element);
element.select();
document.execCommand('Copy');
document.body.removeChild(element);
alert('复制成功!');
}
$(function () {
$('[data-copy-wx]').click(function(){
copyWx($(this).attr('data-copy-wx'))
})
$('[data-to-wx]').click(function(){
copyWx($(this).attr('data-to-wx'))
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();
})
// 阻止返回
function holdBack() {
$('[id*=back-popup]').fadeIn();
history.pushState(null, null, document.URL);
}
// 防止页面后退 监听
history.pushState(null, null, document.URL);
window.addEventListener('popstate', holdBack);
}
// 关闭弹窗
$('.close-popup').click(function(){
$(this).parents('[id*=-popup]').fadeOut();
})
// 关闭注册弹窗
$('.register-close').click(function(){
$(this).parents('[id*=register-popup]').fadeOut();
})
// 打开弹窗
$('[data-popup-id]').click(function(){
const id = $(this).attr('data-popup-id');
const popup = $('#register-popup-' + id);
const attrs = this.attributes;
// 更改字符
for (let i = 0; i < attrs.length; i++) {
const name = attrs[i].name;
const value = attrs[i].value;
if(name.indexOf('data-params-') !== -1){
const ele = popup.find('.' + name.split('data-params-')[1]);
if (!value) continue;
if(value === 'false') {
ele.hide();
continue;
} else if(value === 'true') {
ele.show();
continue;
}
// 根据标签名修改
switch (ele[0].nodeName) {
case 'IMG':
ele.attr('src', value);
break;
case 'INPUT':
ele.attr('placeholder', value)
break;
default:
ele.html(getToday(value));
break;
}
}
}
popup.fadeIn();
})
// 单链接跳转
$('[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"
});
})
// dynamic data
const imgIds = [];
const bgImgIds = [];
const textIds = [];
$('[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);
});
}
})
})
// 注册
register.init({
successTxt: false, // 值为false时不执行
successLocation: false, // 值为false时不执行
successFn: function () {
ABRecord.registNotice();
//百度ocpc提交成功埋码
window._agl && window._agl.push(['track', ['success', { t: 3 }]])
var urlval = getQueryString("search");
$(".loading").hide();
var successPopup = document.querySelector('[id^=success-popup]');
if(successPopup){
$(successPopup).fadeIn();
}else{
alert("领取成功,稍后将有学习顾问联系您!");
window.location = '/WebNew/user/Personal/UserInfo.aspx';
}
return false;
},
type: 'code', //注册类型:normal(常规),code(验证码注册),uid(带推荐人uid)
});
</script>
<!-- 53客服 -->
</body></html>