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
<!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="在线英语口语培训,在线英语培训,外教一对一,英语外教一对一,英语网络教学">
<!-- 分享配置 -->
<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;
window.pageEquipment = HtmlWidth > 768 ? 'pc' : 'mobile';
})
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>
<!-- style: 732 -->
<body class="body--PM">
<!-- js统计 -->
<script src="https://img.acadsoc.com.cn/web/js/monitor/apm.web.js"></script>
<style>
/* auto generate style */
@media (min-width:769px) {
.render-jsx-261-0 .container { margin:0 auto 0 auto ;flex-direction:row;display:flex;justify-content:center;align-items:center; }.render-jsx-261-0 .text { padding:0 0 0 .3rem ;color:#0e3180;font-size:26px; }.render-jsx-261-0 .btn { background-color:#c30d23;border-radius:.4rem .4rem .4rem .4rem ;padding:.12rem .3rem .12rem .3rem ;color:#fff;font-size:22px; }.render-jsx-261-0 { background-color:#fff;padding:.12rem 0 .12rem 0 ; }.render-swiper-268-1 .container { margin:0 auto 0 auto ;position:relative;height:100%; }.render-swiper-268-1 .com { background-color:#fff;border-radius:.1rem .1rem .1rem .1rem ;padding:.3rem .25rem .3rem .25rem ;z-index:3;transform:translateY(-50%);top:50%;width:3.5rem;position:absolute;right:0; }.render-swiper-268-1 .gift { margin:.15rem auto 0 auto ;display:block; }.render-swiper-268-1 .regbtn4 { border-radius:60px 60px 60px 60px ;background-color:#c30d23;padding:0 0 0 0 ;margin:.16rem auto 0 auto ;color:white;display:block;width:100%;font-size:.18rem;height:.5rem; }.render-swiper-268-1 .text1 { color:rgba(20, 43, 136, 1);font-size:24px;line-height:1.4;text-align:center; }.render-swiper-268-1 .regphone2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.15rem auto 0 auto ;width:100%; }.render-swiper-268-1 .phone { border:1px solid #dcdcdc;border-radius:60px 60px 60px 60px ;background-color:#fff;padding:0 .25rem 0 .25rem ;margin:0 0 0 0 ;width:100%;font-size:.16rem;height:.5rem; }.render-swiper-268-1 .regcode3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.16rem auto 0 auto ;width:100%;position:relative; }.render-swiper-268-1 .code { border:1px solid #dcdcdc;border-radius:60px 60px 60px 60px ;background-color:#fff;padding:0 0 0 .25rem ;margin:0 0 0 0 ;width:100%;font-size:.16rem;height:.5rem; }.render-swiper-268-1 .regcodebtn { background-color:#c30d23;border-radius:60px;padding:0 .2rem 0 .2rem ;top:0;color:white;font-size:.16rem;position:absolute;right:0;height:100%; }.render-swiper-268-1 .swiper { z-index:2;width:100%;position:absolute;height:100%; }.render-swiper-268-1 .slide1 { background-size:cover;border-radius:0 0 0 0 ;background-repeat:no-repeat;background-image:url(https://cdnstatic.acadsoc.com.cn/landing-page/files/2021/06/09/tygz2enagzhck96b2eajzn4z41d8b2f7.jpg);padding:0 0 0 0 ;margin:0 0 0 0 ;background-position:center; }.render-swiper-268-1 .img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none; }.render-swiper-268-1 { padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative;height:578px; }.render-swiper-172-2 .lefttitle { border-radius:.1rem .1rem .1rem .1rem ;background-color:#fff;padding:0 0 0 0 ;margin:0 0 0 0 ;color:rgba(195, 13, 35, 1);font-weight:bold;display:n;width:1.6rem;font-size:24px;line-height:.46rem;text-align:center; }.render-swiper-172-2 .righttitle { border-radius:.1rem .1rem .1rem .1rem ;background-color:#fff;color:#0e3180;font-weight:bold;width:1.6rem;font-size:24px;line-height:.46rem;text-align:center; }.render-swiper-172-2 .item { border-radius:0 0 0 0 ;padding:.2rem .4rem .2rem .4rem ;background-repeat:no-repeat;margin:0 0 0 0 ;flex-direction:row;background-size:100% 100%;display:flex;width:100%;justify-content:space-between;min-height:1.5rem;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/09/9pmafgtrmbnan3cgjt2wy81dfcytw2z4.png);background-position:center center; }.render-swiper-172-2 .righttext { border-radius:0 0 0 0 ;padding-top:.2rem;padding:0 0 0 0 ;margin:20px 0 0 0 ;color:#fff;font-size:18px;line-height:1.4; }.render-swiper-172-2 .tab { border-radius:40px 40px 40px 40px ;border:1px solid #c30d23;cursor:pointer;padding:0 0 0 0 ;margin:0 0 0 0 ;color:rgba(195, 13, 35, 1);width:14%;font-size:20px;line-height:40px;text-align:center; }.render-swiper-172-2 .lefttext { border-radius:0 0 0 0 ;padding-top:.2rem;padding:0 0 0 0 ;margin:20px 0 10px 0 ;color:#fff;font-size:18px;line-height:1.4; }.render-swiper-172-2 .leftcontent { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:44%; }.render-swiper-172-2 .slide { }.render-swiper-172-2 .rightcontent { width:42%; }.render-swiper-172-2 .container { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }.render-swiper-172-2 .tabs { margin:.4rem auto .4rem auto ;flex-direction:row;display:flex;width:100%;justify-content:space-between;flex-wrap:wrap; }.render-swiper-172-2 .title { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-weight:bold;font-size:.38rem;line-height:1;text-align:center; }.render-swiper-172-2 .list { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;width:100%; }.render-swiper-172-2 .btn { color:#fff;font-size:24px;border-radius:50px 50px 50px 50px ;background-color:#b81c25;outline:none;height:.6rem;text-align:center;padding:0 0 0 0 ;margin:.4rem auto 0 auto ;display:block;width:4.2rem; }.render-swiper-172-2 { background-color:#fff;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ; }.auto-element-265-3>.container { min-height:100px;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }.auto-element-265-3>.container>.p1 { color:#333;font-size:.4rem;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 .5rem 0 ;line-height:1; }.auto-element-265-3>.container>.button3 { border-radius:60px 60px 60px 60px ;background-color:rgba(195, 13, 35, 1);padding:0 0 0 0 ;box-shadow:0px 4px 10px rgba(195,13,35,0.4);margin:.5rem auto 0 auto ;color:white;display:block;width:4.2rem;font-size:.24rem;text-align:center;height:.6rem;0px 4px 10px rgba(195,13,35,0.4) }.auto-element-265-3>.container>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:flex;min-height:100px;justify-content:space-between;flex-wrap:wrap;min-width:100px; }.auto-element-265-3>.container>.div2>.div8 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:23%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div8>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.19rem;line-height:1;text-align:center; }.auto-element-265-3>.container>.div2>.div8>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;box-shadow:0 0 .04rem .01rem rgba(150,150,150,.1);margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px;0 0 .04rem .01rem rgba(150,150,150,.1) }.auto-element-265-3>.container>.div2>.div8>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.22rem;line-height:.5rem;border-radius:0 .36rem 0 0 ;background-color:#c30d23;left:0;width:88%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div8>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div7 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:23%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div7>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.19rem;line-height:1;text-align:center; }.auto-element-265-3>.container>.div2>.div7>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;box-shadow:0 0 .04rem .01rem rgba(150,150,150,.1);margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px;0 0 .04rem .01rem rgba(150,150,150,.1) }.auto-element-265-3>.container>.div2>.div7>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.22rem;line-height:.5rem;border-radius:0 .36rem 0 0 ;background-color:#c30d23;left:0;width:88%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div7>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div6 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:23%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div6>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.19rem;line-height:1;text-align:center; }.auto-element-265-3>.container>.div2>.div6>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;box-shadow:0 0 .04rem .01rem rgba(150,150,150,.1);margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px;0 0 .04rem .01rem rgba(150,150,150,.1) }.auto-element-265-3>.container>.div2>.div6>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.22rem;line-height:.5rem;border-radius:0 .36rem 0 0 ;background-color:#c30d23;left:0;width:88%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div6>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div5 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:23%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div5>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.19rem;line-height:1;text-align:center; }.auto-element-265-3>.container>.div2>.div5>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;box-shadow:0 0 .04rem .01rem rgba(150,150,150,.1);margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px;0 0 .04rem .01rem rgba(150,150,150,.1) }.auto-element-265-3>.container>.div2>.div5>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.22rem;line-height:.5rem;border-radius:0 .36rem 0 0 ;background-color:#c30d23;left:0;width:88%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div5>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .5rem 0 ;width:23%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div4>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.19rem;line-height:1;text-align:center; }.auto-element-265-3>.container>.div2>.div4>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;box-shadow:0 0 .04rem .01rem rgba(150,150,150,.1);margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px;0 0 .04rem .01rem rgba(150,150,150,.1) }.auto-element-265-3>.container>.div2>.div4>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.22rem;line-height:.5rem;border-radius:0 .36rem 0 0 ;background-color:#c30d23;left:0;width:88%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div4>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .5rem 0 ;width:23%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div3>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.19rem;line-height:1;text-align:center; }.auto-element-265-3>.container>.div2>.div3>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;box-shadow:0 0 .04rem .01rem rgba(150,150,150,.1);margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px;0 0 .04rem .01rem rgba(150,150,150,.1) }.auto-element-265-3>.container>.div2>.div3>.div1>.p2 { color:#fff;font-size:.22rem;border-radius:0 .36rem 0 0 ;background-color:#c30d23;text-align:center;padding:0 0 0 0 ;margin:0 0 0 0 ;bottom:0;display:block;line-height:.5rem;left:0;width:88%;position:absolute; }.auto-element-265-3>.container>.div2>.div3>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .5rem 0 ;width:23%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div2>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.19rem;line-height:1;text-align:center; }.auto-element-265-3>.container>.div2>.div2>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;box-shadow:0 0 .04rem .01rem rgba(150,150,150,.1);margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px;0 0 .04rem .01rem rgba(150,150,150,.1) }.auto-element-265-3>.container>.div2>.div2>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.22rem;line-height:.5rem;border-radius:0 .36rem 0 0 ;background-color:#c30d23;left:0;width:88%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div2>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .5rem 0 ;width:23%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div1>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.19rem;line-height:1;text-align:center; }.auto-element-265-3>.container>.div2>.div1>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;box-shadow:0 0 .04rem .01rem rgba(150,150,150,.1);margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px;0 0 .04rem .01rem rgba(150,150,150,.1) }.auto-element-265-3>.container>.div2>.div1>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.22rem;line-height:.5rem;border-radius:0 .36rem 0 0 ;background-color:#c30d23;left:0;width:88%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div1>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3 { background-color:#f5f5f5;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ;min-height:100px; }.auto-element-267-4>.container { min-height:100px;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }.auto-element-267-4>.container>.button4 { border-radius:60px 60px 60px 60px ;background-color:rgba(195, 13, 35, 1);padding:0 0 0 0 ;box-shadow:0px 4px 10px rgba(195,13,35,0.4);margin:.5rem auto 0 auto ;color:white;display:block;width:4.2rem;font-size:.24rem;text-align:center;height:.6rem;0px 4px 10px rgba(195,13,35,0.4) }.auto-element-267-4>.container>.p1 { color:#333;font-size:.4rem;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 .5rem 0 ;line-height:1; }.auto-element-267-4>.container>.img3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none; }.auto-element-267-4>.container>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:block;max-width:100%; }.auto-element-267-4 { background-color:#f8f8f8;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ;min-height:100px; }.auto-element-266-5>.container { min-height:100px;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }.auto-element-266-5>.container>.button4 { border-radius:60px 60px 60px 60px ;background-color:rgba(195, 13, 35, 1);padding:0 0 0 0 ;box-shadow:0px 4px 10px rgba(195,13,35,0.4);margin:.5rem auto 0 auto ;color:white;display:block;width:4.2rem;font-size:.24rem;text-align:center;height:.6rem;0px 4px 10px rgba(195,13,35,0.4) }.auto-element-266-5>.container>.p1 { color:#333;font-size:.4rem;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 .5rem 0 ;line-height:1; }.auto-element-266-5>.container>.img3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none; }.auto-element-266-5>.container>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;max-width:100%;display:block; }.auto-element-266-5 { background-color:#fff;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ;min-height:100px; }.auto-element-264-6>.container { min-height:100px;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }.auto-element-264-6>.container>.button4 { border-radius:60px 60px 60px 60px ;background-color:rgba(195, 13, 35, 1);padding:0 0 0 0 ;box-shadow:0px 4px 10px rgba(195,13,35,0.4);margin:.5rem auto 0 auto ;color:white;display:block;width:4.2rem;font-size:.24rem;text-align:center;height:.6rem;0px 4px 10px rgba(195,13,35,0.4) }.auto-element-264-6>.container>.p1 { color:#333;font-size:.4rem;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 .32rem 0 ;line-height:1; }.auto-element-264-6>.container>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;min-height:100px;justify-content:space-between;align-items:flex-end;min-width:100px; }.auto-element-264-6>.container>.div3>.div3 { border-radius:.1rem .1rem .1rem .1rem ;background-color:#fff;padding:.4rem .3rem .35rem .3rem ;box-shadow:0 0 .04rem .01rem rgba(150,150,150,.1);margin:0 auto 0 auto ;display:flex;width:824px;min-height:100px;justify-content:space-between;min-width:100px;0 0 .04rem .01rem rgba(150,150,150,.1) }.auto-element-264-6>.container>.div3>.div3>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:30%;min-height:100px;min-width:100px; }.auto-element-264-6>.container>.div3>.div3>.div3>.p2 { border-radius:0 0 0 0 ;padding:.15rem 0 .12rem 0 ;margin:0 0 0 0 ;color:#c30d23;font-weight:bold;font-size:.2rem;line-height:1;text-align:center; }.auto-element-264-6>.container>.div3>.div3>.div3>.p3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#666;font-size:16px;line-height:1.3;text-align:center; }.auto-element-264-6>.container>.div3>.div3>.div3>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:block;height:.6rem; }.auto-element-264-6>.container>.div3>.div3>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:30%;min-height:100px;min-width:100px; }.auto-element-264-6>.container>.div3>.div3>.div2>.p2 { border-radius:0 0 0 0 ;padding:.15rem 0 .12rem 0 ;margin:0 0 0 0 ;color:#c30d23;font-weight:bold;font-size:.2rem;line-height:1;text-align:center; }.auto-element-264-6>.container>.div3>.div3>.div2>.p3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#666;font-size:16px;line-height:1.3;text-align:center; }.auto-element-264-6>.container>.div3>.div3>.div2>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:block;height:.6rem; }.auto-element-264-6>.container>.div3>.div3>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:30%;min-height:100px;min-width:100px; }.auto-element-264-6>.container>.div3>.div3>.div1>.p2 { border-radius:0 0 0 0 ;padding:.15rem 0 .12rem 0 ;margin:0 0 0 0 ;color:#c30d23;font-weight:bold;font-size:.2rem;line-height:1;text-align:center; }.auto-element-264-6>.container>.div3>.div3>.div1>.p3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#666;font-size:16px;line-height:1.3;text-align:center; }.auto-element-264-6>.container>.div3>.div3>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:block;height:.6rem; }.auto-element-264-6>.container>.div3>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none; }.auto-element-264-6>.container>.div3>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;min-height:100px;min-width:100px; }.auto-element-264-6>.container>.div3>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;max-width:100%;display:block; }.auto-element-264-6 { background-color:#f5f5f5;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ;min-height:100px; }.render-swiper-262-7 .item { }.render-swiper-262-7 .img { border-radius:.1rem .1rem .1rem .1rem ;box-shadow:0 0 .1rem .02rem rgba(108,134,194,.2);margin:0 auto 0 auto ;display:block;width:85%;0 0 .1rem .02rem rgba(108,134,194,.2) }.render-swiper-262-7 .container { margin:0 auto 0 auto ; }.render-swiper-262-7 .title { color:#333;font-weight:bold;font-size:.4rem;line-height:1;text-align:center; }.render-swiper-262-7 .list { padding:.5rem 0 .5rem 0 ;margin:0 auto 0 auto ;width:100%; }.render-swiper-262-7 { background-color:#fff;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ; }.auto-element-263-8>.container { min-height:100px;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }.auto-element-263-8>.container>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .5rem 0 ;color:#333;font-weight:bold;font-size:.4rem;line-height:1;text-align:center; }.auto-element-263-8>.container>.div6 { border-radius:.1rem .1rem .1rem .1rem ;background-color:#fff;padding:.4rem .4rem .4rem .4rem ;margin:0 0 0 0 ;min-width:100px; }.auto-element-263-8>.container>.div6>.p1 { padding:0 0 0 .24rem ;margin:0 0 0 0 ;background-size:.08rem .24rem;color:#c30d23;font-size:.26rem;line-height:1;background-position:left center;border-radius:0 0 0 0 ;background-repeat:no-repeat;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/6dt2tmwrj3ml1dh4abrw87jzat9xjblt.png); }.auto-element-263-8>.container>.div6>.img3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none; }.auto-element-263-8>.container>.div6>.div4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:flex;justify-content:space-between;flex-wrap:wrap;min-width:100px; }.auto-element-263-8>.container>.div6>.div4>.div4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:48%;min-width:100px; }.auto-element-263-8>.container>.div6>.div4>.div4>.p1 { padding:0 0 0 .24rem ;margin:0 0 0 0 ;background-size:.08rem .24rem;color:#c30d23;font-size:.26rem;line-height:1;background-position:left center;border-radius:0 0 0 0 ;background-repeat:no-repeat;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/6dt2tmwrj3ml1dh4abrw87jzat9xjblt.png); }.auto-element-263-8>.container>.div6>.div4>.div4>.p2 { border-radius:0 0 0 0 ;padding:.1rem 0 0 .26rem ;margin:0 0 0 0 ;color:#666;font-size:.2rem;line-height:1.4; }.auto-element-263-8>.container>.div6>.div4>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .2rem 0 ;width:48%;min-width:100px; }.auto-element-263-8>.container>.div6>.div4>.div3>.p1 { padding:0 0 0 .24rem ;margin:0 0 0 0 ;background-size:.08rem .24rem;color:#c30d23;font-size:.26rem;line-height:1;background-position:left center;border-radius:0 0 0 0 ;background-repeat:no-repeat;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/6dt2tmwrj3ml1dh4abrw87jzat9xjblt.png); }.auto-element-263-8>.container>.div6>.div4>.div3>.p2 { border-radius:0 0 0 0 ;padding:.1rem 0 0 .26rem ;margin:0 0 0 0 ;color:#666;font-size:.2rem;line-height:1.4; }.auto-element-263-8>.container>.div6>.div4>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .2rem 0 ;width:48%;min-width:100px; }.auto-element-263-8>.container>.div6>.div4>.div2>.p1 { padding:0 0 0 .24rem ;margin:0 0 0 0 ;background-size:.08rem .24rem;color:#c30d23;font-size:.26rem;line-height:1;background-position:left center;border-radius:0 0 0 0 ;background-repeat:no-repeat;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/6dt2tmwrj3ml1dh4abrw87jzat9xjblt.png); }.auto-element-263-8>.container>.div6>.div4>.div2>.p2 { border-radius:0 0 0 0 ;padding:.1rem 0 0 .26rem ;margin:0 0 0 0 ;color:#666;font-size:.2rem;line-height:1.4; }.auto-element-263-8>.container>.div6>.div4>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .2rem 0 ;width:48%;min-width:100px; }.auto-element-263-8>.container>.div6>.div4>.div1>.p1 { padding:0 0 0 .24rem ;margin:0 0 0 0 ;background-size:.08rem .24rem;color:#c30d23;font-size:.26rem;line-height:1;background-position:left center;border-radius:0 0 0 0 ;background-repeat:no-repeat;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/6dt2tmwrj3ml1dh4abrw87jzat9xjblt.png); }.auto-element-263-8>.container>.div6>.div4>.div1>.p2 { border-radius:0 0 0 0 ;padding:.1rem 0 0 .26rem ;margin:0 0 0 0 ;color:#666;font-size:.2rem;line-height:1.4; }.auto-element-263-8>.container>.div6>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.3rem 0 .3rem 0 ;display:block;width:100%; }.auto-element-263-8 { min-height:100px;background-color:#f8f8f8;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ; }.auto-element-230-9>.container { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }.auto-element-230-9>.container>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:-30px 0 40px 0 ;color:#666;font-size:.24rem;text-align:center; }.auto-element-230-9 { background-color:#f8f8f8;border-radius:0 0 0 0 ;padding:.3rem 0 30px 0 ;margin:-20px 0 0 0 ; }.render-jsx-221-VElXuj>.div { border-radius:.14rem;background-color:white;padding:0 0 .3rem 0 ;transform:translate(-50%, -50%);background-repeat:no-repeat;background-size:100%;top:50%;left:50%;width:4.5rem;min-height:100px;position:absolute;min-width:100px; }.render-jsx-221-VElXuj>.div>.closeimg1 { top:.2rem;width:.3rem;position:absolute;right:.2rem; }.render-jsx-221-VElXuj>.div>.regcode5 { margin:.2rem auto 0 auto ;width:4rem;position:relative; }.render-jsx-221-VElXuj>.div>.regcode5>.code { border:1px solid #A0A0A0;border-radius:60px;padding:0 0 0 .3rem ;width:100%;font-size:.16rem;height:.5rem; }.render-jsx-221-VElXuj>.div>.regcode5>.regcodebtn { background-color:#c30d23;border-radius:60px 60px 60px 60px ;padding:0 .3rem 0 .3rem ;margin:0 0 0 0 ;top:0;color:white;font-size:.16rem;position:absolute;right:0;height:100%; }.render-jsx-221-VElXuj>.div>.regphone4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.3rem auto 0 auto ;width:4rem; }.render-jsx-221-VElXuj>.div>.regphone4>.phone { border:1px solid #A0A0A0;border-radius:60px 60px 60px 60px ;padding:0 .3rem 0 .3rem ;margin:0 0 0 0 ;width:100%;font-size:.16rem;height:.5rem; }.render-jsx-221-VElXuj>.div>.img7 { margin:30px auto 0 auto ;display:block;width:4rem; }.render-jsx-221-VElXuj>.div>.regbtn6 { border-radius:60px 60px 60px 60px ;background-color:#c30d23;padding:0 0 0 0 ;margin:.2rem auto 0 auto ;color:white;font-weight:bold;display:block;width:4rem;font-size:.16rem;height:.5rem; }.render-jsx-221-VElXuj>.div>.title3 { background-color:white;color:#c30d23;font-weight:bold;display:flex;font-size:.26rem;justify-content:center;position:relative;align-items:center;text-align:center; }.render-jsx-221-VElXuj>.div>.topImg2 { width:100%; }.render-jsx-221-VElXuj { background-color:rgba(0,0,0,0.7);top:0;left:0;bottom:0;position:fixed;right:0; }
}
@media (max-width:768px) {
.render-jsx-261-0 .container { padding:0 0 0 0 ;margin:0 auto 0 auto ;flex-direction:row;display:flex;justify-content:center;align-items:center; }.render-jsx-261-0 .text { padding:0 0 0 .16rem ;color:#0e3180;font-size:.3rem; }.render-jsx-261-0 .btn { background-color:#c30d23;border-radius:.4rem .4rem .4rem .4rem ;padding:.1rem .2rem .1rem .2rem ;color:#fff;font-size:.24rem; }.render-jsx-261-0 { background-color:#fff;padding:.12rem 0 .12rem 0 ; }.render-swiper-268-1 .container { padding:0 0 0 0 ;margin:0 auto 0 auto ;position:relative; }.render-swiper-268-1 .com { background-color:#fff;border-radius:.1rem .1rem .1rem .1rem ;padding:0 .2rem 0 .2rem ;transform:translateY(0);margin:.6rem auto .6rem auto ;z-index:2;top:initial;width:92%;position:relative;right:initial; }.render-swiper-268-1 .gift { margin:.24rem auto 0 auto ;display:block; }.render-swiper-268-1 .regbtn4 { border-radius:60px 60px 60px 60px ;background-color:#c30d23;padding:0 0 0 0 ;margin:.3rem auto 0 auto ;color:white;display:block;width:100%;font-size:.32rem;height:.9rem; }.render-swiper-268-1 .text1 { color:rgba(20, 43, 136, 1);font-size:.38rem;line-height:1.4;text-align:center; }.render-swiper-268-1 .regphone2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.3rem auto 0 auto ;top:.3rem;width:100%; }.render-swiper-268-1 .phone { border:1px solid #dcdcdc;border-radius:60px 60px 60px 60px ;background-color:#fff;padding:0 .4rem 0 .4rem ;margin:0 0 0 0 ;width:100%;font-size:.28rem;height:.9rem; }.render-swiper-268-1 .regcode3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.3rem auto 0 auto ;width:100%;position:relative; }.render-swiper-268-1 .code { border:1px solid #dcdcdc;border-radius:60px 60px 60px 60px ;background-color:#fff;padding:0 0 0 .4rem ;margin:0 0 0 0 ;width:100%;font-size:.28rem;height:.9rem; }.render-swiper-268-1 .regcodebtn { background-color:#c30d23;border-radius:60px;padding:0 .3rem 0 .3rem ;top:0;color:white;font-size:.28rem;position:absolute;right:0;height:100%; }.render-swiper-268-1 .swiper { width:100%; }.render-swiper-268-1 .slide1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ; }.render-swiper-268-1 .img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:100%; }.render-swiper-268-1 { background-color:#fff;padding:0 0 .2rem 0 ;margin:0 0 0 0 ;position:relative; }.render-swiper-172-2 .lefttitle { border-radius:.1rem .1rem .1rem .1rem ;background-color:#fff;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#c30d23;font-weight:bold;width:1.7rem;font-size:.28rem;line-height:.46rem;text-align:center; }.render-swiper-172-2 .righttitle { border-radius:.1rem .1rem .1rem .1rem ;background-color:#fff;color:#0e3180;font-weight:bold;width:1.7rem;font-size:.28rem;line-height:.46rem;text-align:center; }.render-swiper-172-2 .item { border-radius:0 0 0 0 ;padding:.4rem .3rem .4rem .3rem ;background-repeat:no-repeat;margin:0 0 0 0 ;flex-direction:row;background-size:100% 100%;display:flex;width:100%;justify-content:space-between;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/09/2m7y3j3bj2fm74ab2747hrjal969ah7k.png);background-position:center center; }.render-swiper-172-2 .righttext { border-radius:0 0 0 0 ;padding-top:.2rem;padding:0 0 0 0 ;margin:10px 0 0 0 ;color:#fff;font-size:.24rem;line-height:1.4; }.render-swiper-172-2 .tab { border-radius:.4rem .4rem .4rem .4rem ;border:1px solid #c30d23;cursor:pointer;padding:0 0 0 0 ;margin:.3rem 0 0 0 ;color:rgba(195, 13, 35, 1);width:31%;font-size:.26rem;line-height:.6rem;text-align:center; }.render-swiper-172-2 .lefttext { border-radius:0 0 0 0 ;padding-top:.2rem;padding:0 0 0 0 ;margin:10px 0 0 0 ;color:#fff;font-size:.24rem;line-height:1.4; }.render-swiper-172-2 .leftcontent { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:40%; }.render-swiper-172-2 .slide { }.render-swiper-172-2 .rightcontent { width:37%; }.render-swiper-172-2 .container { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }.render-swiper-172-2 .tabs { margin:0 auto .4rem auto ;flex-direction:row;display:flex;width:100%;justify-content:space-between;flex-wrap:wrap; }.render-swiper-172-2 .title { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .3rem 0 ;color:#333;font-weight:bold;font-size:.4rem;line-height:1;text-align:center; }.render-swiper-172-2 .list { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ; }.render-swiper-172-2 .btn { padding:0 0 0 0 ;margin:.5rem auto 0 auto ;color:#fff;display:block;font-size:.32rem;line-height:.88rem;border-radius:.5rem .5rem .5rem .5rem ;background-color:#b81c25;outline:none;width:88%;height:.88rem;text-align:center; }.render-swiper-172-2 { background-color:#f8f8f8;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ; }.auto-element-265-3>.container { border-radius:0 0 0 0 ;padding:0 .3rem 0 .3rem ;margin:0 auto 0 auto ;min-height:100px; }.auto-element-265-3>.container>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .5rem 0 ;color:#333;font-size:.4rem;line-height:1.3;text-align:center; }.auto-element-265-3>.container>.button3 { border-radius:60px 60px 60px 60px ;background-color:rgba(195, 13, 35, 1);padding:0 0 0 0 ;box-shadow:0px 4px 10px rgba(195,13,35,0.4);margin:.5rem auto 0 auto ;color:white;display:block;width:90%;font-size:.32rem;text-align:center;height:.9rem;0px 4px 10px rgba(195,13,35,0.4) }.auto-element-265-3>.container>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:flex;min-height:100px;justify-content:space-between;flex-wrap:wrap;min-width:100px; }.auto-element-265-3>.container>.div2>.div8 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:48%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div8>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.26rem;line-height:1.4;text-align:center; }.auto-element-265-3>.container>.div2>.div8>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px; }.auto-element-265-3>.container>.div2>.div8>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.3rem;line-height:.6rem;border-radius:0 .4rem 0 0 ;background-color:#c30d23;left:0;width:90%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div8>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div7 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:48%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div7>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.26rem;line-height:1.4;text-align:center; }.auto-element-265-3>.container>.div2>.div7>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px; }.auto-element-265-3>.container>.div2>.div7>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.3rem;line-height:.6rem;border-radius:0 .4rem 0 0 ;background-color:#c30d23;left:0;width:90%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div7>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div6 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .4rem 0 ;width:48%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div6>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.26rem;line-height:1.4;text-align:center; }.auto-element-265-3>.container>.div2>.div6>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px; }.auto-element-265-3>.container>.div2>.div6>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.3rem;line-height:.6rem;border-radius:0 .4rem 0 0 ;background-color:#c30d23;left:0;width:90%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div6>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div5 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .4rem 0 ;width:48%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div5>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.26rem;line-height:1.4;text-align:center; }.auto-element-265-3>.container>.div2>.div5>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px; }.auto-element-265-3>.container>.div2>.div5>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.3rem;line-height:.6rem;border-radius:0 .4rem 0 0 ;background-color:#c30d23;left:0;width:90%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div5>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .4rem 0 ;width:48%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div4>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.26rem;line-height:1.4;text-align:center; }.auto-element-265-3>.container>.div2>.div4>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px; }.auto-element-265-3>.container>.div2>.div4>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.3rem;line-height:.6rem;border-radius:0 .4rem 0 0 ;background-color:#c30d23;left:0;width:90%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div4>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .4rem 0 ;width:48%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div3>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.26rem;line-height:1.4;text-align:center; }.auto-element-265-3>.container>.div2>.div3>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px; }.auto-element-265-3>.container>.div2>.div3>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.3rem;line-height:.6rem;border-radius:0 .4rem 0 0 ;background-color:#c30d23;left:0;width:90%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div3>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .4rem 0 ;width:48%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div2>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.26rem;line-height:1.4;text-align:center; }.auto-element-265-3>.container>.div2>.div2>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px; }.auto-element-265-3>.container>.div2>.div2>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.3rem;line-height:.6rem;border-radius:0 .4rem 0 0 ;background-color:#c30d23;left:0;width:90%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div2>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3>.container>.div2>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .4rem 0 ;width:48%;min-height:100px;min-width:100px; }.auto-element-265-3>.container>.div2>.div1>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.25rem 0 0 0 ;color:#666;font-size:.26rem;line-height:1.4;text-align:center; }.auto-element-265-3>.container>.div2>.div1>.div1 { border-radius:.1rem .1rem .1rem .1rem ;padding:0 0 0 0 ;margin:0 0 0 0 ;overflow:hidden;min-height:100px;position:relative;min-width:100px; }.auto-element-265-3>.container>.div2>.div1>.div1>.p2 { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;bottom:0;display:block;font-size:.3rem;line-height:.6rem;border-radius:0 .4rem 0 0 ;background-color:#c30d23;left:0;width:90%;position:absolute;text-align:center; }.auto-element-265-3>.container>.div2>.div1>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-265-3 { background-color:rgba(255, 255, 255, 1);border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ;min-height:100px; }.auto-element-267-4>.container { border-radius:0 0 0 0 ;padding:0 .3rem 0 .3rem ;margin:0 auto 0 auto ;min-height:100px; }.auto-element-267-4>.container>.button4 { border-radius:60px 60px 60px 60px ;background-color:rgba(195, 13, 35, 1);padding:0 0 0 0 ;box-shadow:0px 4px 10px rgba(195,13,35,0.4);margin:.5rem auto 0 auto ;color:white;display:block;width:90%;font-size:.32rem;text-align:center;height:.9rem;0px 4px 10px rgba(195,13,35,0.4) }.auto-element-267-4>.container>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .5rem 0 ;color:#333;font-size:.4rem;line-height:1.3;text-align:center; }.auto-element-267-4>.container>.img3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-267-4>.container>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none; }.auto-element-267-4 { background-color:#f8f8f8;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ;min-height:100px; }.auto-element-266-5>.container { border-radius:0 0 0 0 ;padding:0 .3rem 0 .3rem ;margin:0 auto 0 auto ;min-height:100px; }.auto-element-266-5>.container>.button4 { border-radius:60px 60px 60px 60px ;background-color:rgba(195, 13, 35, 1);padding:0 0 0 0 ;box-shadow:0px 4px 10px rgba(195,13,35,0.4);margin:.5rem auto 0 auto ;color:white;display:block;width:90%;font-size:.32rem;text-align:center;height:.9rem;0px 4px 10px rgba(195,13,35,0.4) }.auto-element-266-5>.container>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .5rem 0 ;color:#333;font-size:.4rem;line-height:1.3;text-align:center; }.auto-element-266-5>.container>.img3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.auto-element-266-5>.container>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none; }.auto-element-266-5 { background-color:#fff;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ;min-height:100px; }.auto-element-264-6>.container { border-radius:0 0 0 0 ;padding:0 .3rem 0 .3rem ;margin:0 auto 0 auto ;min-height:100px; }.auto-element-264-6>.container>.button4 { border-radius:60px 60px 60px 60px ;background-color:rgba(195, 13, 35, 1);padding:0 0 0 0 ;box-shadow:0px 4px 10px rgba(195,13,35,0.4);margin:0 auto 0 auto ;color:white;display:block;width:6rem;font-size:.32rem;text-align:center;height:.9rem;0px 4px 10px rgba(195,13,35,0.4) }.auto-element-264-6>.container>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .3rem 0 ;color:#333;font-size:.4rem;line-height:1.3;text-align:center; }.auto-element-264-6>.container>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;min-height:100px;min-width:100px; }.auto-element-264-6>.container>.div3>.div3 { border-radius:.1rem .1rem .1rem .1rem ;background-color:#fff;padding:.4rem .2rem .4rem .2rem ;box-shadow:0 0 .04rem .01rem rgba(150,150,150,.1);margin:0 auto .6rem auto ;display:flex;width:95%;min-height:100px;justify-content:space-between;min-width:100px;0 0 .04rem .01rem rgba(150,150,150,.1) }.auto-element-264-6>.container>.div3>.div3>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:30%;min-height:100px;min-width:100px; }.auto-element-264-6>.container>.div3>.div3>.div3>.p2 { border-radius:0 0 0 0 ;padding:.2rem 0 .15rem 0 ;margin:0 0 0 0 ;color:#c30d23;font-weight:bold;font-size:.28rem;line-height:1;text-align:center; }.auto-element-264-6>.container>.div3>.div3>.div3>.p3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#666;font-size:.24rem;line-height:1.4;text-align:center; }.auto-element-264-6>.container>.div3>.div3>.div3>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:block;height:.8rem; }.auto-element-264-6>.container>.div3>.div3>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:30%;min-height:100px;min-width:100px; }.auto-element-264-6>.container>.div3>.div3>.div2>.p2 { border-radius:0 0 0 0 ;padding:.2rem 0 .15rem 0 ;margin:0 0 0 0 ;color:#c30d23;font-weight:bold;font-size:.28rem;line-height:1;text-align:center; }.auto-element-264-6>.container>.div3>.div3>.div2>.p3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#666;font-size:.24rem;line-height:1.4;text-align:center; }.auto-element-264-6>.container>.div3>.div3>.div2>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:block;height:.8rem; }.auto-element-264-6>.container>.div3>.div3>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:30%;min-height:100px;min-width:100px; }.auto-element-264-6>.container>.div3>.div3>.div1>.p2 { border-radius:0 0 0 0 ;padding:.2rem 0 .15rem 0 ;margin:0 0 0 0 ;color:#c30d23;font-weight:bold;font-size:.28rem;line-height:1;text-align:center; }.auto-element-264-6>.container>.div3>.div3>.div1>.p3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#666;font-size:.24rem;line-height:1.4;text-align:center; }.auto-element-264-6>.container>.div3>.div3>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:block;height:.8rem; }.auto-element-264-6>.container>.div3>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ; }.auto-element-264-6>.container>.div3>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none;min-height:100px;min-width:100px; }.auto-element-264-6>.container>.div3>.div1>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:100%; }.auto-element-264-6 { background-color:#f5f5f5;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ;min-height:100px; }.render-swiper-262-7 .item { }.render-swiper-262-7 .img { border-radius:.1rem .1rem .1rem .1rem ;box-shadow:0 0 .1rem .02rem rgba(108,134,194,.2);margin:0 auto 0 auto ;display:block;width:88%;0 0 .1rem .02rem rgba(108,134,194,.2) }.render-swiper-262-7 .container { margin:0 auto 0 auto ; }.render-swiper-262-7 .title { color:#333;font-weight:bold;font-size:.4rem;line-height:1;text-align:center; }.render-swiper-262-7 .list { padding:.5rem 0 .5rem 0 ;margin:0 auto 0 auto ;width:100%; }.render-swiper-262-7 { background-color:#fff;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ; }.auto-element-263-8>.container { border-radius:0 0 0 0 ;padding:0 .3rem 0 .3rem ;margin:0 auto 0 auto ;min-height:100px; }.auto-element-263-8>.container>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .5rem 0 ;color:#333;font-weight:bold;font-size:.4rem;line-height:1;text-align:center; }.auto-element-263-8>.container>.div6 { border-radius:.1rem .1rem .1rem .1rem ;background-color:#fff;padding:.4rem .4rem .4rem .4rem ;margin:0 0 0 0 ;min-width:100px; }.auto-element-263-8>.container>.div6>.p1 { padding:0 0 0 .26rem ;margin:0 0 0 0 ;background-size:.1rem .28rem;color:#c30d23;font-size:.3rem;line-height:1;background-position:left center;border-radius:0 0 0 0 ;background-repeat:no-repeat;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/6dt2tmwrj3ml1dh4abrw87jzat9xjblt.png); }.auto-element-263-8>.container>.div6>.img3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.3rem 0 .3rem 0 ;display:block;width:100%; }.auto-element-263-8>.container>.div6>.div4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;min-width:100px; }.auto-element-263-8>.container>.div6>.div4>.div4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;min-width:100px; }.auto-element-263-8>.container>.div6>.div4>.div4>.p1 { padding:0 0 0 .26rem ;margin:0 0 0 0 ;background-size:.1rem .28rem;color:#c30d23;font-size:.3rem;line-height:1;background-position:left center;border-radius:0 0 0 0 ;background-repeat:no-repeat;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/6dt2tmwrj3ml1dh4abrw87jzat9xjblt.png); }.auto-element-263-8>.container>.div6>.div4>.div4>.p2 { border-radius:0 0 0 0 ;padding:.1rem 0 0 .26rem ;margin:0 0 0 0 ;color:#666;font-size:.26rem;line-height:1.4; }.auto-element-263-8>.container>.div6>.div4>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .2rem 0 ;min-width:100px; }.auto-element-263-8>.container>.div6>.div4>.div3>.p1 { padding:0 0 0 .26rem ;margin:0 0 0 0 ;background-size:.1rem .28rem;color:#c30d23;font-size:.3rem;line-height:1;background-position:left center;border-radius:0 0 0 0 ;background-repeat:no-repeat;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/6dt2tmwrj3ml1dh4abrw87jzat9xjblt.png); }.auto-element-263-8>.container>.div6>.div4>.div3>.p2 { border-radius:0 0 0 0 ;padding:.1rem 0 0 .26rem ;margin:0 0 0 0 ;color:#666;font-size:.26rem;line-height:1.4; }.auto-element-263-8>.container>.div6>.div4>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .2rem 0 ;min-width:100px; }.auto-element-263-8>.container>.div6>.div4>.div2>.p1 { padding:0 0 0 .26rem ;margin:0 0 0 0 ;background-size:.1rem .28rem;color:#c30d23;font-size:.3rem;line-height:1;background-position:left center;border-radius:0 0 0 0 ;background-repeat:no-repeat;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/6dt2tmwrj3ml1dh4abrw87jzat9xjblt.png); }.auto-element-263-8>.container>.div6>.div4>.div2>.p2 { border-radius:0 0 0 0 ;padding:.1rem 0 0 .26rem ;margin:0 0 0 0 ;color:#666;font-size:.26rem;line-height:1.4; }.auto-element-263-8>.container>.div6>.div4>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .2rem 0 ;min-width:100px; }.auto-element-263-8>.container>.div6>.div4>.div1>.p1 { padding:0 0 0 .26rem ;margin:0 0 0 0 ;background-size:.1rem .28rem;color:#c30d23;font-size:.3rem;line-height:1;background-position:left center;border-radius:0 0 0 0 ;background-repeat:no-repeat;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/6dt2tmwrj3ml1dh4abrw87jzat9xjblt.png); }.auto-element-263-8>.container>.div6>.div4>.div1>.p2 { border-radius:0 0 0 0 ;padding:.1rem 0 0 .26rem ;margin:0 0 0 0 ;color:#666;font-size:.26rem;line-height:1.4; }.auto-element-263-8>.container>.div6>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none; }.auto-element-263-8 { background-color:#f8f8f8;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ;min-height:100px; }.auto-element-230-9>.container { border-radius:0 0 0 0 ;padding:0 .3rem 0 .3rem ;margin:0 auto 0 auto ; }.auto-element-230-9>.container>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#666;font-size:.24rem;text-align:center; }.auto-element-230-9 { background-color:#f8f8f8;border-radius:0 0 0 0 ;padding:.3rem 0 .3rem 0 ;margin:0 0 0 0 ; }.render-jsx-221-VElXuj>.div { border-radius:.1rem;background-color:white;padding:0 0 .3rem 0 ;transform:translate(-50%, -50%);background-repeat:no-repeat;background-size:100%;top:50%;left:50%;width:6.5rem;min-height:100px;position:absolute;min-width:100px; }.render-jsx-221-VElXuj>.div>.closeimg1 { top:.3rem;width:.4rem;position:absolute;right:.3rem; }.render-jsx-221-VElXuj>.div>.regcode5 { margin:.2rem auto 0 auto ;width:6rem;position:relative; }.render-jsx-221-VElXuj>.div>.regcode5>.code { border:1px solid #A0A0A0;border-radius:60px;padding:0 0 0 .3rem ;width:100%;font-size:.28rem;height:.9rem; }.render-jsx-221-VElXuj>.div>.regcode5>.regcodebtn { background-color:#c30d23;border-radius:60px 60px 60px 60px ;padding:0 .3rem 0 .3rem ;margin:0 0 0 0 ;top:0;color:white;font-size:.28rem;position:absolute;right:0;height:100%; }.render-jsx-221-VElXuj>.div>.regphone4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.3rem auto 0 auto ;top:.3rem;width:6rem; }.render-jsx-221-VElXuj>.div>.regphone4>.phone { border:1px solid #A0A0A0;border-radius:60px 60px 60px 60px ;padding:0 .3rem 0 .3rem ;margin:0 0 0 0 ;width:100%;font-size:.28rem;height:.9rem; }.render-jsx-221-VElXuj>.div>.img7 { margin:30px auto 0 auto ;display:block;width:6rem; }.render-jsx-221-VElXuj>.div>.regbtn6 { border-radius:60px 60px 60px 60px ;background-color:#c30d23;padding:0 0 0 0 ;margin:.2rem auto 0 auto ;color:white;font-weight:bold;display:block;width:6rem;font-size:.32rem;height:.9rem; }.render-jsx-221-VElXuj>.div>.title3 { background-color:white;color:#c30d23;font-weight:bold;display:flex;font-size:.32rem;justify-content:center;position:relative;align-items:center;text-align:center; }.render-jsx-221-VElXuj>.div>.topImg2 { width:100%; }.render-jsx-221-VElXuj { background-color:rgba(0,0,0,0.7);top:0;left:0;bottom:0;position:fixed;right:0; }
}
</style>
<style>
/* PC端 */
@media (min-width:769px) {
.render-jsx-261-0 .countdown b{
padding:.04rem .08rem;color:#fff;background-color:#0e3180;border-radius:6px;margin:0 .05rem;
}
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-261-0 .countdown b{
padding:.01rem .06rem;color:#fff;background-color:#0e3180;border-radius:3px;margin:0 .04rem;
}
}
</style>
<div class="render-jsx-261-0">
<div class="container">
<button class="btn">免费领</button>
<p class="countdown text">距活动结束还剩<b>0</b><b>0</b>时<b>0</b><b>0</b>分<b>0</b><b>0</b>秒</p>
</div>
</div>
<script src="https://img.acadsoc.com.cn/web/lps/js/time-util.js"></script>
<script>
$(function(){
getTomorrowCountDown(function (res) {
let h = res.hourse.toString();
let m = res.minutes.toString();
let s = res.seconds.toString();
$('.render-jsx-261-0 .countdown').html(`距活动结束还剩 <b>${h[0]}</b><b>${h[1]}</b>时<b>${m[0]}</b><b>${m[1]}</b>分<b>${s[0]}</b><b>${s[1]}</b>秒`);
});
})
</script>
<style>
/* PC端 */
@media (min-width:769px) {
}
/* 手机端 */
@media (max-width:768px) {
}
</style>
<div class="render-swiper-268-1">
<div class="swiper swiper-container swiper-no-swiping">
<div class="swiper-wrapper">
<div class="swiper-slide slide1">
<img class="img" src="https://cdnstatic.acadsoc.com.cn/landing-page/files/2021/06/09/w7neghzp45t4fjn7h4lc5c279z69ngze.png">
</div>
</div>
</div>
<div class="container">
<div class="com">
<p class="text1"><span style="color:#c30d23;">0元</span>领取<span style="color:#c30d23;">388元</span>外教大礼包</p>
<div class="regphone2">
<input placeholder="请填写您的手机号" type="tel" name="TxtPhone" class="phone">
</div>
<div class="regcode3 duanxin" style="display:none">
<input placeholder="请输入验证码" type="tel" name="TxtCode" class="code">
<button name="btnGetSMS" class="regcodebtn">获取验证码</button>
</div>
<button name="registerSubmit" class="regbtn4">立即领取</button>
<img class="gift" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/reg-list.png">
</div>
</div>
</div>
<script>
$(function(){
new Swiper('.render-swiper-268-1 .swiper-container',HtmlWidth >= 768 ? {"loop":false} : {"loop":false} )
})
</script>
<style>
.render-swiper-172-2 .active{
background-color:#c30d23;color:#fff;border-color:#c30d23;
}
/* PC端 */
@media (min-width:769px) {
}
/* 手机端 */
@media (max-width:768px) {
.render-swiper-172-2 .swiper-pagination{
display:none;
}
}
</style>
<div class="render-swiper-172-2">
<div class="container">
<h2 class="title"><b style="color:#c30d23;font-style:italic;font-size:.5rem;">请选择</b> 您的身份</h2>
<ol class="tabs">
<li class="tab active">上班族/白领</li>
<li class="tab">零基础</li>
<li class="tab">在校学生</li>
<li class="tab">自由职业</li>
<li class="tab">雅思/托福</li>
<li class="tab">出国旅游</li>
</ol>
<div class="swiper-container list">
<div class="swiper-wrapper">
<div class="swiper-slide">
<div class="item">
<div class="leftcontent">
<h3 class="lefttitle">你的问题</h3>
<p class="lefttext">工作忙,没时间,职场竞争压力大,普通课程无法满足需求</p>
</div>
<div class="rightcontent">
<h3 class="righttitle">我们能做的</h3>
<p class="righttext">每天25分钟,一对一高效互动,个性化课程定制,轻松更高效</p>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="item">
<div class="leftcontent">
<h3 class="lefttitle">你可能面临</h3>
<p class="lefttext">自学没用,不知道怎么开始,怕学不好,不仅浪费时间还浪费金钱</p>
</div>
<div class="rightcontent">
<h3 class="righttitle">我们能做的</h3>
<p class="righttext">专业定制学习规划,外教+助教+客服全程服务,贴心伴学</p>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="item">
<div class="leftcontent">
<h3 class="lefttitle">你可能面临</h3>
<p class="lefttext">背单词,记语法,学习太枯燥无趣,无人监督,根本没办法坚持</p>
</div>
<div class="rightcontent">
<h3 class="righttitle">我们能做的</h3>
<p class="righttext">个性化定制课程,沉浸式场景教学,3对1贴心服务,全程监督</p>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="item">
<div class="leftcontent">
<h3 class="lefttitle">你可能面临</h3>
<p class="lefttext">社交上需要使用英语,不会说,很尴尬;想学,但不知道如何起步</p>
</div>
<div class="rightcontent">
<h3 class="righttitle">我们能做的</h3>
<p class="righttext">8大类型176种课程,1对1量身定制,轻松提升,学习效果看的见</p>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="item">
<div class="leftcontent">
<h3 class="lefttitle">你可能面临</h3>
<p class="lefttext">缺乏地道环境和实战演练经验,口语提升困难,找不到提升好方法</p>
</div>
<div class="rightcontent">
<h3 class="righttitle">我们能做的</h3>
<p class="righttext">外教1对1,实战演练,持证外教,口语地道,考前突击,单项提分</p>
</div>
</div>
</div>
<div class="swiper-slide">
<div class="item">
<div class="leftcontent">
<h3 class="lefttitle">你可能面临</h3>
<p class="lefttext">英语基础薄弱,哑巴英语,不敢开口说,只能抱团出国</p>
</div>
<div class="rightcontent">
<h3 class="righttitle">我们能做的</h3>
<p class="righttext">高效助力英语口语水平的全面提升,量身定制,让你轻松开口</p>
</div>
</div>
</div>
</div>
</div>
<button class="btn" data-popup-id="221" data-popup-hash-yolufk="%E6%9F%A5%E7%9C%8B%E8%A7%A3%E5%86%B3%E6%96%B9%E6%A1%88" data-popup-hash-ucehle="false" data-popup-hash-hnzbbr="%E7%AB%8B%E5%8D%B3%E6%9F%A5%E7%9C%8B" data-popup-hash-mkg75r="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-mty033="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-popup-hash-hnlpdm="%E5%A1%AB%E5%86%99%E6%82%A8%E7%9A%84%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-suwxmh="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-r87wyx="https://img.acadsoc.com.cn/web/img/sem-luo/tc.png">定制我的学习计划</button>
</div>
</div>
<script>
$(function(){
const mySwiper = new Swiper ('.render-swiper-172-2 .swiper-container', {
slidesPerView: 1,
centeredSlides: true,
initialSlide: 0,
spaceBetween: 0,
autoplay: {
delay: 3000,
stopOnLastSlide: false,
disableOnInteraction: false,
},
pagination: {
el:'.render-swiper-172-2 .swiper-pagination',
clickable :true,
},
on: {
slideChangeTransitionStart: function(){
const index = this.activeIndex;
$('.render-swiper-172-2 .tabs li').each(function(i,v){
$('.render-swiper-172-2 .tabs li').eq(index).addClass('active').siblings('li').removeClass('active')
})
},
},
});
$('.render-swiper-172-2 .tabs li').click(function(){
const index = $(this).index();
$(this).addClass('active').siblings('li').removeClass('active');
mySwiper.slideTo(index, 300, false);
})
})
</script>
<div class="auto-element-265-3 json">
<div class="container">
<p class="p1">阿卡索<i style="color:#0e3180;font-size:.5rem;;">8大优势</i> 助力学员高效学</p>
<div class="div2">
<div class="div1">
<div class="div1">
<img class="img1" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/adv-img1.png">
<p class="p2">1对1真人外教课</p>
</div>
<p class="p2">严选全球外教真人互动授课</p>
</div>
<div class="div2">
<div class="div1">
<img class="img1" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/adv-img2.png">
<p class="p2">随时随地在线学习</p>
</div>
<p class="p2">高效省时有效利用碎片时间</p>
</div>
<div class="div3">
<div class="div1">
<img class="img1" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/adv-img3.png">
<p class="p2">外教均持证上岗</p>
</div>
<p class="p2">外教经验丰富均持证教学</p>
</div>
<div class="div4">
<div class="div1">
<img class="img1" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/adv-img4.png">
<p class="p2">纯英文的语言环境</p>
</div>
<p class="p2">在家学原汁原味学地道口语</p>
</div>
<div class="div5">
<div class="div1">
<img class="img1" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/adv-img5.png">
<p class="p2">国际原版教材引进</p>
</div>
<p class="p2">在家就能畅享国际英文课堂</p>
</div>
<div class="div6">
<div class="div1">
<img class="img1" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/adv-img6.png">
<p class="p2">量身定制专属课程</p>
</div>
<p class="p2">满足不同所需定制个性课程
</p>
</div>
<div class="div7">
<div class="div1">
<img class="img1" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/adv-img7.png">
<p class="p2">3对1贴心服务</p>
</div>
<p class="p2">全程伴学随时检测并跟进效果</p>
</div>
<div class="div8">
<div class="div1">
<img class="img1" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/adv-img8.png">
<p class="p2">低至13.8元/节</p>
</div>
<p class="p2">精选8大课程且每节低至13.8</p>
</div>
</div>
<button class="button3" data-popup-id="221" data-popup-hash-yolufk="%E5%85%8D%E8%B4%B9%E8%AF%95%E5%90%AC%E8%AF%BE%E7%A8%8B" data-popup-hash-ucehle="false" data-popup-hash-hnzbbr="%E7%AB%8B%E5%8D%B3%E8%AF%95%E5%90%AC" data-popup-hash-mkg75r="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-mty033="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-popup-hash-hnlpdm="%E5%A1%AB%E5%86%99%E6%82%A8%E7%9A%84%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-suwxmh="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-r87wyx="https://img.acadsoc.com.cn/web/img/sem-luo/tc.png">免费试听课程</button>
</div>
</div>
<div class="auto-element-267-4 json">
<div class="container">
<p class="p1"><i style="color:#0e3180;font-size:.5rem;;">外教一对一</i> 助力突破学习障碍</p>
<img class="img2" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/19/babkakxzy1dabe8prt57xtzm7rcnhy8a.png">
<img class="img3" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/19/dzekapehrp24w2xk32g32ykd3kf2z3bc.png">
<button class="button4" data-popup-id="221" data-popup-hash-yolufk="%E6%9F%A5%E7%9C%8B%E5%A4%96%E6%95%99%E7%AE%80%E4%BB%8B" data-popup-hash-ucehle="false" data-popup-hash-hnzbbr="%E7%AB%8B%E5%8D%B3%E6%9F%A5%E7%9C%8B" data-popup-hash-mkg75r="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-mty033="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-popup-hash-hnlpdm="%E5%A1%AB%E5%86%99%E6%82%A8%E7%9A%84%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-suwxmh="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-r87wyx="https://img.acadsoc.com.cn/web/img/sem-luo/tc.png">查看外教简介</button>
</div>
</div>
<div class="auto-element-266-5 json">
<div class="container">
<p class="p1">个性化<i style="color:#0e3180;font-size:.5rem;;">定制课程</i> 满足多种需要</p>
<img class="img2" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/21/n89z4znce46ka83zterwba3w4ece1dn9.png">
<img class="img3" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/need-img.png">
<button class="button4" data-popup-id="221" data-popup-hash-yolufk="%E5%85%8D%E8%B4%B9%E8%AF%95%E5%90%AC%E8%AF%BE%E7%A8%8B" data-popup-hash-ucehle="false" data-popup-hash-hnzbbr="%E7%AB%8B%E5%8D%B3%E8%AF%95%E5%90%AC" data-popup-hash-mkg75r="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-mty033="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-popup-hash-hnlpdm="%E5%A1%AB%E5%86%99%E6%82%A8%E7%9A%84%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-suwxmh="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-r87wyx="https://img.acadsoc.com.cn/web/img/sem-luo/tc.png">免费试听课程</button>
</div>
</div>
<div class="auto-element-264-6 json">
<div class="container">
<p class="p1">互动课程 <i style="color:#0e3180;font-size:.5rem;;">学习更高效</i> 支持手机、ipad、电脑听课</p>
<div class="div3">
<div class="div1">
<img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/21/wm6bmezh5g9lf3kl53kakln1dm7djdmy.png">
</div>
<img class="img2" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/65xjt9ejl7c32kymzpl7f3dyxahgl7dx.png">
<div class="div3">
<div class="div1">
<img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/1dcx576lc78kwrajk9b9epzw8cf7kbry.png">
<p class="p2">课程直播</p>
<p class="p3">实时互<br>随时随地在线学</p>
</div>
<div class="div2">
<img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/xj1d4l4j1d7f4kfn81d9f3jp84r9wgyf.png">
<p class="p2">支持回放</p>
<p class="p3">重点定位<br>突破解决重难点</p>
</div>
<div class="div3">
<img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/c5m1djajb61d64d4cfjt5nby87xr3y51.png">
<p class="p2">永久回放</p>
<p class="p3">无限回放<br>反复巩固知识点</p>
</div>
</div>
</div>
<button class="button4" data-popup-id="221" data-popup-hash-yolufk="%E5%85%8D%E8%B4%B9%E8%AF%95%E5%90%AC%E8%AF%BE%E7%A8%8B" data-popup-hash-ucehle="false" data-popup-hash-hnzbbr="%E7%AB%8B%E5%8D%B3%E8%AF%95%E5%90%AC" data-popup-hash-mkg75r="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-mty033="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-popup-hash-hnlpdm="%E5%A1%AB%E5%86%99%E6%82%A8%E7%9A%84%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-suwxmh="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-r87wyx="https://img.acadsoc.com.cn/web/img/sem-luo/tc.png">免费试听课程</button>
</div>
</div>
<style>
.render-swiper-262-7 .swiper-pagination{
bottom:0;
}
.render-swiper-262-7 .swiper-pagination-bullet{
width:.1rem;height:.1rem;
}
.render-swiper-262-7 .swiper-pagination-bullet-active{
background:#0e3180;
}
/* PC端 */
@media (min-width:769px) {
}
/* 手机端 */
@media (max-width:768px) {
.render-swiper-262-7 .swiper-pagination-bullet{
margin:0 3px !important;
}
}
</style>
<div class="render-swiper-262-7">
<div class="container">
<h2 class="title">合作院校</h2>
<div class="swiper-container list">
<div class="swiper-wrapper">
<div class="swiper-slide item item1">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/school1.png">
</div>
<div class="swiper-slide item item2">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/school2.png">
</div>
<div class="swiper-slide item item3">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/school3.png">
</div>
<div class="swiper-slide item item4">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/school4.png">
</div>
<div class="swiper-slide item item5">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/school5.png">
</div>
<div class="swiper-slide item item6">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/school6.png">
</div>
<div class="swiper-slide item item7">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/school7.png">
</div>
<div class="swiper-slide item item8">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/school8.png">
</div>
<div class="swiper-slide item item9">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/school9.png">
</div>
<div class="swiper-slide item item10">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/school10.png">
</div>
<div class="swiper-slide item item11">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/school11.png">
</div>
<div class="swiper-slide item item12">
<img class="img" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/school12.png">
</div>
</div>
<div class="swiper-pagination"></div>
</div>
</div>
</div>
<script>
$(function(){
new Swiper ('.render-swiper-262-7 .swiper-container',
HtmlWidth >= 768 ? {"loop":true,"initialSlide":1,"centeredSlides":false,"slidesPerView":4,"autoplay":{"delay":4000,"stopOnLastSlide":false,"disableOnInteraction":false},"spaceBetween":0,"pagination":{"el":".render-swiper-262-7 .swiper-pagination","clickable":true}} : {"loop":true,"initialSlide":1,"centeredSlides":false,"slidesPerView":3,"autoplay":{"delay":4000,"stopOnLastSlide":false,"disableOnInteraction":false},"spaceBetween":0,"pagination":{"el":".render-swiper-262-7 .swiper-pagination","clickable":true}}
);
})
</script>
<div class="auto-element-263-8 json">
<div class="container">
<p class="p1">你关心的问题</p>
<div class="div6">
<p class="p1">开课流程</p>
<img class="img2" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/zbc7c9b4x1dabe7akha7p232hlngy5fb.png">
<img class="img3" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/21/fb2nm7klk2wb7t2z8hrz4y969whgcnbg.png">
<div class="div4">
<div class="div1">
<p class="p1">适合谁学</p>
<p class="p2">听说读写全方位,定制各种学习需求。</p>
</div>
<div class="div2">
<p class="p1">怎么上课</p>
<p class="p2">支持各种终端设备,随时随地在线学习。</p>
</div>
<div class="div3">
<p class="p1">错过直播怎么办?</p>
<p class="p2">错过直播课程也不用怕,我们的课程可以无限期回放。</p>
</div>
<div class="div4">
<p class="p1">关于学费,接受哪种支付方式?</p>
<p class="p2">我们接受多种支付方式,可以选择通过网银转账、支付宝或银行线下转账等方式来支付。</p>
</div>
</div>
</div>
</div>
</div>
<div class="auto-element-230-9 json">
<div class="container">
<p class="p1">*以上数据均为内部统计数据</p>
</div>
</div>
<style>
.fixed{position:fixed;bottom:0;left:0; z-index: 6;}
.render-jsx-46-10 { font-size:0; }
/* PC端 */
@media (min-width:769px) {
.render-jsx-46-10 { padding:0 0 0 0 ;margin:0 0 0 0 ;text-align:center; }
.render-jsx-46-10 img {pointer-events: none; border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:-140px 0 0 0 ;width:100%;height:auto; }
}
/* 手机端 */
@media (max-width:768px) {
.render-jsx-46-10 { padding:0 0 0 0 ;margin:0 0 0 0 ;text-align:center; }
.render-jsx-46-10 img {pointer-events: none; border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:-70px 0 0 0 ;width:100%;height:auto; }
}
</style>
<div class="render-jsx-46-10-top"></div>
<div class="render-jsx-46-10" data-popup-id="221" data-popup-hash-mty033="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-popup-hash-mkg75r="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-suwxmh="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-hnlpdm="%E5%A1%AB%E5%86%99%E6%82%A8%E7%9A%84%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-ucehle="false" data-popup-hash-hnzbbr="%E7%AB%8B%E5%8D%B3%E9%A2%86%E5%8F%96" data-popup-hash-yolufk="%E8%AF%95%E5%90%AC%E5%A4%A7%E7%A4%BC%E5%8C%85" data-popup-hash-r87wyx="https://img.acadsoc.com.cn/web/img/sem-luo/tc.png">
<a>
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/rplmbfmxzf26ncg3z6g4xteg1d2tck6x.png" class="pc--show pc">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/wfz4c9hpw9ja1d4lf1d42ahftalhk6kj.png" class="mobile--show mobile">
</a>
</div>
<script>
$(function () {
bottomShow();
})
function bottomShow() {
// 定位元素
let fixedBottom = $('.render-jsx-46-10');
// 头部元素
let headerFixedElement = $('body>div').eq(0);
// 底部元素
let removeFixedElement = $('.render-jsx-46-10-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>
/* PC端 */
@media (min-width:769px) {
}
/* 手机端 */
@media (max-width:768px) {
}
.render-jsx-221-VElXuj .title3::after,
.title3::before{
position:absolute;
left:10%;
content:'';
width:.6rem;
height:1px;
background:#B81C25;
}
.render-jsx-221-VElXuj .title3::before{
left:initial;
right:10%;
}
</style>
<div id="register-popup-221" style="display: none;" class="render-jsx-221-VElXuj">
<div class="div">
<img class="closeimg1 close-popup" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-modal-hash="mty033">
<img class="topimg2 topImg2" src="https://img.acadsoc.com.cn/web/img/sem-luo/tc.png" data-modal-hash="r87wyx">
<p class="title3 modal-title" data-modal-hash="yolufk">查看解决方案</p>
<div class="regphone4">
<input name="TxtPhone" class="phone" placeholder="填写您的手机号" type="tel" data-modal-hash="hnlpdm">
</div>
<div class="regcode5">
<input name="TxtCode" class="code" placeholder="请输入验证码" type="tel" data-modal-hash="mkg75r">
<button name="btnGetSMS" class="regcodebtn" data-modal-hash="suwxmh">获取验证码</button>
</div>
<button name="registerSubmit" class="regbtn6" data-modal-hash="hnzbbr">立即查看</button>
<img class="img7" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/16/dthbf8gp3gk8znhcmtxmzxb5ze6rg1d3.png">
</div>
</div>
<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/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 pageData = {
weChatGroupID: '',
};
// 支付配置
var defaultPay = {
sort: 'order',
value: '',
}
var payConfig = {
sort: '',
value: '',
};
var paytype = 'wechat'; // wechat | alipay
var _swiper = window.Swiper;
window.Swiper = function (selector, options, realOptions) {
var _options = { };
// 如果是pc or mobile
if (options.pc && options.mobile) {
options = options[pageEquipment];
}
// 自动轮播
switch (typeof options.autoplay) {
case 'object':
if (options.autoplay.delay == '0') {
_options.autoplay = false;
}
break;
case 'string':
case 'number':
if (options.autoplay == '0') {
_options.autoplay = false;
} else {
_options.autoplay = {
delay: Number(options.autoplay),
stopOnLastSlide: false,
disableOnInteraction: false,
}
}
break;
}
// 处理类型
for (const key in options) {
if (Object.hasOwnProperty.call(options, key)) {
const element = options[key];
if (!isNaN(Number(options[key])) && typeof element !== 'boolean'){
options[key] = Number(options[key]);
}
}
}
// 分页器
if (options.pagination === true) {
_options.pagination = {
el: `${selector} .swiper-pagination`,
clickable: true,
}
}
// 需要覆盖的
if (realOptions && typeof realOptions === 'object' && !Array.isArray(realOptions)) {
if (realOptions[pageEquipment] && typeof realOptions[pageEquipment] === 'object') {
Object.assign(_options, realOptions[pageEquipment]);
}
}
Object.assign(options, _options);
options.loop = !!options.loop;
return new _swiper(selector, options);
}
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);
}
})
})
}
/**
* 绑定事件
* @param selector {String} 选择器
* @param func {(event, thisElement) => void)} 选择器
* @param type {String} 事件类型 默认click
* @return void
*/
function onEvent(selector, func, type) {
if (!type) type = 'click';
$(document).on(type, selector, func);
}
const date = new Date();
const curruYear = date.getFullYear();
const currMonth = date.getMonth() + 1;
const currDate = date.getDate();
// 替换时间文字
document.querySelectorAll('.time').forEach(function(v){
if ($(v).find('*').length === 0) {
v.innerText = getToday(v.innerText);
return;
}
let $innerHTML = $(`${v.innerHTML}`);
if($innerHTML.find('*').length > 0) {
$innerHTML.find('*').each(function (_i, el) {
el.innerText = getToday(el.innerText);
})
return;
};
v.innerText = getToday(v.innerText);
})
// dynamic data
const imgIds = [];
const bgImgIds = [];
const textIds = [];
$(function () {
// 复制去微信号
// data-copy-wx 微信 data-wx-alter 复制后提示文案
onEvent('[data-copy-wx]', function(){
copyWx($(this))
})
// .wx text
// 复制微信号并跳转微信 data-to-wx 微信 data-wx-alter 复制后提示文案
onEvent('[data-to-wx]', function(){
copyWx($(this))
toHref('weixin://');
});
// 返回弹窗
if (document.querySelector('[id*=back-popup]')) {
$('[id*=back-popup]').hide();
onEvent('[id*=back-popup] [class*=close]', function(){
$('[id*=back-popup]').fadeOut();
// 取消返回,需要默认back一次
window.removeEventListener('popstate', holdBack);
history.back();
});
// 防止页面后退 监听
history.pushState({ title: 'title', url: '#back' }, 'title', '#back');
window.addEventListener('popstate', holdBack);
}
// 关闭弹窗
onEvent('.close-popup', function(){
window.payConfig = {
sort: '',
value: ''
};
$(this).parents('[id*=-popup]').fadeOut();
});
// 关闭注册弹窗
onEvent('.register-close', function(){
$(this).parents('[id*=register-popup]').fadeOut();
});
// 事件执行的前后回调
function eventBeforeAfterCall (callFn) {
return function () {
// 回调
const beforeCall = this.getAttribute('data-model-beforecall');
const afterCall = this.getAttribute('data-model-aftercall');
if ((beforeCall && window[beforeCall](this)) || !beforeCall){
// 打开弹窗
callFn && callFn.call(this);
}
afterCall && window[afterCall]();
}
}
// 打开弹窗
onEvent('[data-popup-id]', eventBeforeAfterCall(function(){
window.payConfig.sort = this.getAttribute('data-pay-sort');
window.payConfig.value = this.getAttribute('data-pay-value');
// 打开弹窗
openModal(this);
}));
// 单链接跳转
onEvent('[data-href]', eventBeforeAfterCall(function(){
location.href = $(this).attr('data-href');
}));
// 分端跳转
onEvent('[data-pm-href]', eventBeforeAfterCall(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) {
toHref($(this).attr('data-mobile-href'));
} else if (bIsIpad) {
toHref($(this).attr('data-ipad-href'));
} else {
toHref($(this).attr('data-pc-href'));
}
}));
// 跳转表单
onEvent('[data-form]', eventBeforeAfterCall(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);
// });
// }
// })
// 设置支付类型
onEvent('[data-paytype]', function(){
window.paytype = this.getAttribute('data-paytype');
});
// 注册
register.init({
successTxt: false, // 值为false时不执行
successLocation: false, // 值为false时不执行
successFn: function () {
ABRecord.registNotice();
$(".loading").hide();
// customize register code
window._agl && window._agl.push(['track', ['success', { t: 3 }]]);
window.registerCallback && window.registerCallback();
return false;
},
type: 'code', //注册类型:normal(常规),code(验证码注册),uid(带推荐人uid)
});
})
</script>
<!-- 53客服 -->
<!-- customize footer code -->
</body></html>