index.html 80.9 KB
Newer Older
ksaria@outlook.com's avatar
ksaria@outlook.com committed
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452
<!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" src="https://img.acadsoc.com.cn/js/editor/global.js"></script>
  <script type="text/javascript">
    var html = document.documentElement;
    var htmlClientWidth = 0;
    var rejustRootSize = function () {
      var oh = 750;
      html.getBoundingClientRect().width > oh ? htmlClientWidth = oh : htmlClientWidth = html.getBoundingClientRect().width;
      html.style.fontSize = htmlClientWidth / (oh / 100) + 'px';
    };
    rejustRootSize();
    window.onresize = rejustRootSize;
  </script>
  <script src="https://img.acadsoc.com.cn/web/js/bootstrap.min.js"></script>
  <script src="https://img.acadsoc.com.cn/web/lps/activity/js/lp.js"></script>
  
  <!--IpRecord-->
  <script type="text/javascript" src="https://www.acadsoc.com.cn/ajax/Web.UI.Fun.IpRecord.aspx"></script>
  <script src="https://img.acadsoc.com.cn/web/js/IdentificationSystem.js"></script>
  <script src="https://img.acadsoc.com.cn/web/lps/activity/js/Record.js"></script>

  <!--微信分享-->
  <script src="https://res.wx.qq.com/open/js/jweixin-1.2.0.js"></script>
  <script src="https://img.acadsoc.com.cn/web/lps/activity/js/wxShare.js"></script>
  <script>
    wxShare.init();
  </script>

  <!--[if lt IE 9]>
    <script src="https://img.acadsoc.com.cn/web/js/vendor/html5shiv.js"></script>
    <script src="https://img.acadsoc.com.cn/web/js/vendor/respond.min.js"></script>
    <![endif]-->

  <script>
    window.HtmlWidth = 0;
      $(function(){
        window.HtmlWidth = document.body.clientWidth || document.documentElement.clientWidth;
      })

    function getQueryString(name) {
      var reg = new RegExp("(^|&)" + name + "=([^&]*)(&|$)", "i");
      var r = window.location.search.substr(1).match(reg);
      if (r != null) return unescape(r[2]);
      return "";
    }
  </script>

<style>
body{
  background-color:white;
  
}
</style>
<!-- customize code header -->
<script src="https://img.acadsoc.com.cn/web/lps/activity/js/BaiDuStatistics.js"></script>
<script src="https://img.acadsoc.com.cn/web/SenSors/sensorsheadother.js"></script>
<script src="https://www.acadsoc.com.cn/OCPC/js/ocpc.js"></script>
<script>
  (function(r,d,s,l){var meteor=r.meteor=r.meteor||[];meteor.methods=["track","off","on"];meteor.factory=function(method){return function(){
  var args=Array.prototype.slice.call(arguments);args.unshift(method);meteor.push(args);return meteor}};for(var i=0;i<meteor.methods.length;i++){
  var key=meteor.methods[i];meteor[key]=meteor.factory(key)}meteor.load=function(){var js,fjs=d.getElementsByTagName(s)[0];js=d.createElement(s);
  js.src="https://analytics.snssdk.com/meteor.js/v1/"+l+"/sdk";fjs.parentNode.insertBefore(js,fjs)};meteor.load();if(meteor.invoked){return}
  meteor.invoked=true;meteor.track("pageview")})(window,document,"script","1684228522800199");
</script>



</head>

<!-- :  -->
<body>

  <!-- js统计 -->
  <script src="https://img.acadsoc.com.cn/web/js/monitor/apm.web.js"></script>
  
  

  
    <style>
      @media (min-width:769px) { 
          .render-swiper-268-0 .options {  loop:false;  }
          
          .render-swiper-268-0 .img {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  }
          
          .render-swiper-268-0 .slide1 {  background-size:cover;  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/21/ym45mgpr83xcfxh3l734dtanmxa2xzwk.png);  padding:0 0 0 0;  margin:0 0 0 0;  background-position:center;  }
          
          .render-swiper-268-0 .swiper {  z-index:2;  width:100%;  position:absolute;  height:100%;  }
          
          .render-swiper-268-0 .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-0 .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-0 .regcode3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.16rem auto 0 auto;  width:100%;  position:relative;  }
          
          .render-swiper-268-0 .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-0 .regphone2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.15rem auto 0 auto;  width:100%;  }
          
          .render-swiper-268-0 .text1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:rgba(20, 43, 136, 1);  font-size:24px;  line-height:1.4;  text-align:center;  }
          
          .render-swiper-268-0 .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-0 .gift {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.20rem auto 0 auto;  display:block;  }
          
          .render-swiper-268-0 .com {  background-color:#fff;  border-radius:.1rem .1rem .1rem .1rem;  padding:.3rem .25rem .3rem .25rem;  z-index:3;  transform:translateY(-50%);  margin:0 0 0 0;  top:50%;  width:3.5rem;  position:absolute;  right:0;  }
          
          .render-swiper-268-0 .container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  position:relative;  height:100%;  }
          
          .render-swiper-268-0  {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  position:relative;  height:578px;  }
           }
      @media (max-width:768px) { 
          .render-swiper-268-0 .options {  loop:false;  }
          
          .render-swiper-268-0 .img {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
          
          .render-swiper-268-0 .slide1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
          
          .render-swiper-268-0 .swiper {  width:100%;  }
          
          .render-swiper-268-0 .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-0 .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-0 .regcode3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.3rem auto 0 auto;  width:100%;  position:relative;  }
          
          .render-swiper-268-0 .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-0 .regphone2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.3rem auto 0 auto;  top:.3rem;  width:100%;  }
          
          .render-swiper-268-0 .text1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:rgba(20, 43, 136, 1);  font-size:.38rem;  line-height:1.4;  text-align:center;  }
          
          .render-swiper-268-0 .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-0 .gift {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:30px auto 0 auto;  display:block;  }
          
          .render-swiper-268-0 .com {  padding:20px .2rem 20px .2rem;  margin:-60px auto .6rem auto;  z-index:2;  right:initial;  background-color:#fff;  border-radius:.3rem .3rem .3rem .3rem;  box-shadow:0 .1rem .1rem rgba(29,52,132,.2);  transform:translateY(0);  top:initial;  width:92%;  position:relative;  }
          
          .render-swiper-268-0 .container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  position:relative;  }
          
          .render-swiper-268-0  {  background-color:#fff;  border-radius:0 0 0 0;  padding:0 0 .2rem 0;  margin:0 0 0 0;  position:relative;  }
           } 
    </style>
<style>
  /* PC端 */
  @media (min-width:769px) {

  }
  /* 手机端 */
  @media (max-width:768px) {

  }
</style>

<div class="render-swiper-268-0">
  <div class="swiper swiper-container swiper-no-swiping">
    <div class="swiper-wrapper">
      
    	<div class="swiper-slide slide1">
    		<img class="img" src="https://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/03/03/actg4c1djxgt8797fl9x1dglzj64w31d.png">
    	</div>
    
    </div>
  </div>
  <div class="container">
    <div class="com">
      <p class="text1"><span style="color:#c30d23;"></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="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/xc37j2bc7whmrjw72df9engdnljwnmgl.png">
    </div>
  </div>
</div>
<script>
  $(function(){
    new Swiper('.render-swiper-268-0 .swiper-container',HtmlWidth >= 768 ? {"loop":false} : {"loop":false} )
  })
</script>

    <style>
      @media (min-width:769px) { 
          .render-swiper-166-1 .btn {  padding:0 0 0 0;  margin:.4rem auto 0 auto;  color:#fff;  display:block;  font-size:24px;  border-radius:50px 50px 50px 50px;  background-color:#b81c25;  box-shadow:0px 7px 10px 0px rgba(195,13,35,0.26);  outline:none;  width:4rem;  height:.6rem;  text-align:center;  }
          
          .render-swiper-166-1 .list {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  width:100%;  }
          
          .render-swiper-166-1 .title {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#2a3a6e;  font-weight:bold;  font-size:.38rem;  line-height:1;  text-align:center;  }
          
          .render-swiper-166-1 .tabs {  margin:.4rem auto .4rem auto;  flex-direction:row;  display:flex;  width:100%;  justify-content:space-between;  flex-wrap:wrap;  }
          
          .render-swiper-166-1 .container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  }
          
          .render-swiper-166-1 .item {  }
          
          .render-swiper-166-1 .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-166-1 .img {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  display:block;  width:96%;  }
          
          .render-swiper-166-1  {  background-color:#fff;  border-radius:0 0 0 0;  padding:.6rem 0 .6rem 0;  margin:0 0 0 0;  }
           }
      @media (max-width:768px) { 
          .render-swiper-166-1 .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-166-1 .list {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
          
          .render-swiper-166-1 .title {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .3rem 0;  color:#2a3a6e;  font-weight:bold;  font-size:.4rem;  line-height:1;  text-align:center;  }
          
          .render-swiper-166-1 .tabs {  margin:0 auto .4rem auto;  flex-direction:row;  display:flex;  width:100%;  justify-content:space-between;  flex-wrap:wrap;  }
          
          .render-swiper-166-1 .container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  }
          
          .render-swiper-166-1 .item {  }
          
          .render-swiper-166-1 .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-166-1 .img {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:block;  width:100%;  }
          
          .render-swiper-166-1  {  background-color:#fff;  border-radius:0 0 0 0;  padding:.6rem 0 .6rem 0;  margin:0 0 0 0;  }
           } 
    </style>
<style>
  .render-swiper-166-1 .active{
    background-color:#c30d23;color:#fff;border-color:#c30d23;
  }
  
  /* PC端 */
  @media (min-width:769px) {
		.render-swiper-166-1 .list{
      padding-bottom:.5rem;
    }
    .render-swiper-166-1 .swiper-pagination{
      bottom:0;
    }
    .render-swiper-166-1 .swiper-pagination-bullet-active{
      background-color:#c30d23;
    }
  }
  /* 手机端 */
  @media (max-width:768px) {
    .render-swiper-166-1 .swiper-pagination{
      display:none;
    }
  }
</style>

<div class="render-swiper-166-1">
  <div class="container">
    <h2 class="title"><b style="color:#333;">请选择您的身份</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">
          <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/aheya2g2f8c8b8m2rez6m254ejzdj1dj.png">
        </div>
        <div class="swiper-slide">
          <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/aheya2g2f8c8b8m2rez6m254ejzdj1dj.png">
        </div>
        <div class="swiper-slide">
          <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/8hfafeh9e83thpe746y4ratl5xb8jgl1.png">
        </div>
        <div class="swiper-slide">
          <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/fm4c7aebd4z381d9anjrah1djdkjm8n2.png">
        </div>
        <div class="swiper-slide">
          <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/el8f3y4klgp1d6gzy9kmrtkf1dn87pwp.png">
        </div>
        <div class="swiper-slide">
          <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/nmdn6yzhnye7l867amglhmp3tnel7m3d.png">
        </div>
      </div>
      <div class="swiper-pagination"></div>
    </div>

    <button class="btn" data-popup-id="175" data-popup-hash-iotxgz="%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96" data-popup-hash-pvg1sz="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/12/paj426x7jfetg56hr95h26n4ghnx6c8f.png" data-popup-hash-2rb5tg="%E5%A1%AB%E5%86%99%E6%82%A8%E7%9A%84%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-zwwk3q="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-vrzmht="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-gozvzc="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-ae7zjs="%3Cb%20style=%22color:rgba(20,%2043,%20136,%201)%22%3E%E5%AE%9A%E5%88%B6%3C/b%3E%E5%AD%A6%E4%B9%A0%E6%96%B9%E6%A1%88">查看解决方案</button>
  </div>
</div>
<script>
  $(function(){
    const mySwiper = new Swiper ('.render-swiper-166-1 .swiper-container', {
      slidesPerView: HtmlWidth >= 768 ? 3 : 1,
      centeredSlides: HtmlWidth >= 768 ? true : false,
      initialSlide: 0,
      spaceBetween: 0,
      autoplay: {
        delay: 3000,
        stopOnLastSlide: false,
        disableOnInteraction: false,
      },
      pagination: {
        el:'.render-swiper-166-1 .swiper-pagination',
        clickable :true,
      },
      on: {
        slideChangeTransitionStart: function(){
          const index = this.activeIndex;
          $('.render-swiper-166-1 .tabs li').each(function(i,v){
            $('.render-swiper-166-1 .tabs li').eq(index).addClass('active').siblings('li').removeClass('active')
          })
        },
      },
    });

    $('.render-swiper-166-1 .tabs li').click(function(){
      const index = $(this).index();
      $(this).addClass('active').siblings('li').removeClass('active');
      mySwiper.slideTo(index, 300, false);
    })
  })
</script>

    <style>
      @media (min-width:769px) { 
            .auto-element-169-2>.container>.text1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-weight:bold;  font-size:.4rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.btn3 {  color:white;  font-size:.22rem;  border-radius:60px 60px 60px 60px;  background-color:rgba(195, 13, 35, 1);  box-shadow:0px 7px 10px 0px rgba(195,13,35,0.26);  text-align:center;  height:.6rem;  padding:0 0 0 0;  margin:0 auto 0 auto;  display:block;  width:4rem;  }
            
            .auto-element-169-2>.container>.div2>.div6>.text3 {  border-radius:0 0 0 0;  padding:0 .9rem 0 0;  margin:0 0 0 0;  color:#777777;  font-size:.14rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div6>.text2 {  border-radius:0 0 0 0;  padding:.2rem .9rem .1rem 0;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-size:.24rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div6>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 190px 0 -40px;  }
            
            .auto-element-169-2>.container>.div2>.div6 {  border-radius:0 0 0 0;  padding:0 0 .5rem 0;  margin:0 0 0 0;  width:30%;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div5>.text3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#777777;  font-size:.14rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div5>.text2 {  border-radius:0 0 0 0;  padding:.2rem 0 .1rem 0;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-size:.24rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div5>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .auto-element-169-2>.container>.div2>.div5 {  border-radius:0 0 0 0;  padding:0 0 .5rem 0;  margin:0 0 0 0;  width:30%;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div4>.text3 {  border-radius:0 0 0 0;  padding:0 0 0 .9rem;  margin:0 0 0 0;  color:#777777;  font-size:.14rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div4>.text2 {  border-radius:0 0 0 0;  padding:.2rem 0 .1rem .9rem;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-size:.24rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div4>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 80px;  }
            
            .auto-element-169-2>.container>.div2>.div4 {  border-radius:0 0 0 0;  padding:0 0 .5rem 0;  margin:0 0 0 0;  width:30%;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div3>.text3 {  border-radius:0 0 0 0;  padding:0 .9rem 0 0;  margin:0 0 0 0;  color:#777777;  font-size:.14rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div3>.text2 {  border-radius:0 0 0 0;  padding:.2rem .9rem .1rem 0;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-size:.24rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div3>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 190px 0 -40px;  }
            
            .auto-element-169-2>.container>.div2>.div3 {  border-radius:0 0 0 0;  padding:0 0 .5rem 0;  margin:0 0 0 0;  width:30%;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div2>.text3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#777777;  font-size:.14rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div2>.text2 {  border-radius:0 0 0 0;  padding:.2rem 0 .1rem 0;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-size:.24rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div2>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .auto-element-169-2>.container>.div2>.div2 {  border-radius:0 0 0 0;  padding:0 0 .5rem 0;  margin:0 0 0 0;  width:30%;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div1>.text3 {  border-radius:0 0 0 0;  padding:0 0 0 .9rem;  margin:0 0 0 0;  color:#777777;  font-size:.14rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div1>.text2 {  border-radius:0 0 0 0;  padding:.2rem 0 .1rem .9rem;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-size:.24rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 80px;  }
            
            .auto-element-169-2>.container>.div2>.div1 {  border-radius:0 0 0 0;  padding:0 0 .5rem 0;  margin:0 0 0 0;  width:30%;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2 {  border-radius:0 0 0 0;  padding:.6rem 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-169-2>.container {  border-radius:0 0 0 0;  padding:.6rem 0 .6rem 0;  margin:0 auto 0 auto;  }
            
            .auto-element-169-2 {  background-color:white;  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:flex;  min-height:100px;  }
             }
      @media (max-width:768px) { 
            .auto-element-169-2>.container>.text1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-weight:bold;  font-size:.4rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.btn3 {  color:white;  font-size:.32rem;  border-radius:60px 60px 60px 60px;  background-color:rgba(195, 13, 35, 1);  box-shadow:0px 7px 10px 0px rgba(195,13,35,0.26);  text-align:center;  height:.9rem;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  display:block;  width:92%;  }
            
            .auto-element-169-2>.container>.div2>.div6>.text3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#777;  font-size:.24rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div6>.text2 {  border-radius:0 0 0 0;  padding:.3rem 0 .1rem 0;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-size:.32rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div6>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .auto-element-169-2>.container>.div2>.div6 {  border-radius:0 0 0 0;  padding:0 0 .4rem 0;  margin:0 0 0 0;  width:48%;  min-height:100px;  min-width:100px;  }
            
            .auto-element-169-2>.container>.div2>.div5>.text3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#777;  font-size:.24rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div5>.text2 {  border-radius:0 0 0 0;  padding:.3rem 0 .1rem 0;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-size:.32rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div5>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .auto-element-169-2>.container>.div2>.div5 {  border-radius:0 0 0 0;  padding:0 0 .4rem 0;  margin:0 0 0 0;  width:48%;  min-height:100px;  min-width:100px;  }
            
            .auto-element-169-2>.container>.div2>.div4>.text3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#777;  font-size:.24rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div4>.text2 {  border-radius:0 0 0 0;  padding:.3rem 0 .1rem 0;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-size:.32rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div4>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .auto-element-169-2>.container>.div2>.div4 {  border-radius:0 0 0 0;  padding:0 0 .4rem 0;  margin:0 0 0 0;  width:48%;  min-height:100px;  min-width:100px;  }
            
            .auto-element-169-2>.container>.div2>.div3>.text3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#777;  font-size:.24rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div3>.text2 {  border-radius:0 0 0 0;  padding:.3rem 0 .1rem 0;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-size:.32rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div3>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .auto-element-169-2>.container>.div2>.div3 {  border-radius:0 0 0 0;  padding:0 0 .4rem 0;  margin:0 0 0 0;  width:48%;  min-height:100px;  min-width:100px;  }
            
            .auto-element-169-2>.container>.div2>.div2>.text3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#777;  font-size:.24rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div2>.text2 {  border-radius:0 0 0 0;  padding:.3rem 0 .1rem 0;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-size:.32rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div2>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .auto-element-169-2>.container>.div2>.div2 {  border-radius:0 0 0 0;  padding:0 0 .4rem 0;  margin:0 0 0 0;  width:48%;  min-height:100px;  min-width:100px;  }
            
            .auto-element-169-2>.container>.div2>.div1>.text3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#777;  font-size:.24rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div1>.text2 {  border-radius:0 0 0 0;  padding:.3rem 0 .1rem 0;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-size:.32rem;  text-align:center;  }
            
            .auto-element-169-2>.container>.div2>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .auto-element-169-2>.container>.div2>.div1 {  border-radius:0 0 0 0;  padding:0 0 .4rem 0;  margin:0 0 0 0;  width:48%;  min-height:100px;  min-width:100px;  }
            
            .auto-element-169-2>.container>.div2 {  border-radius:0 0 0 0;  padding:.6rem .2rem 0 .2rem;  margin:0 0 0 0;  display:flex;  min-height:100px;  justify-content:space-between;  flex-wrap:wrap;  min-width:100px;  }
            
            .auto-element-169-2>.container {  border-radius:0 0 0 0;  padding:.7rem 0 .7rem 0;  margin:0 auto 0 auto;  }
            
            .auto-element-169-2 {  background-color:white;  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:flex;  min-height:100px;  }
             } 
    </style>
<div class="auto-element-169-2">
    <div class="container">
      
<p class="text1">仅需13.8元<b style="color:#333;">, 全面提升英语水平</b></p>

    <div class="div2">
      
    <div class="div1">
      
<img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/grzwzbfw36e9jx7hkylygl1dytfg9znz.png">

<p class="text2">1对1真人外教课</p>

<p class="text3">严选国际持证好外教</p>

    </div>
    
    <div class="div2">
      
<img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/zcnrbmz8fze29pex586l61de6bj75gwy.png">

<p class="text2">专业英语水平测试</p>

<p class="text3">学完就测,检验效果</p>

    </div>
    
    <div class="div3">
      
<img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/k7p8c56757592x498frc31dzbmj356lm.png">

<p class="text2">国际原版教材引进</p>

<p class="text3">畅享国际化英文课堂</p>

    </div>
    
    <div class="div4">
      
<img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/ya4e7463dw8x68fjpetedng1d9ypw1dg.png">

<p class="text2">海量外教公开课</p>

<p class="text3">根据测评制定专属规划</p>

    </div>
    
    <div class="div5">
      
<img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/38x72dr9j8c97rtb81dtw36yrybx61db.png">

<p class="text2">课程无限次回放</p>

<p class="text3">反复学习,直到消化为止</p>

    </div>
    
    <div class="div6">
      
<img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/agpz8lxehwrpc61d7z2b8653kag5kjrw.png">

<p class="text2">3对1贴心服务</p>

<p class="text3">全程监督,摆脱不自律的苦</p>

    </div>
    
    </div>
    
<button data-popup-id="175" data-popup-hash-iotxgz="%E7%AB%8B%E5%8D%B3%E5%85%8D%E8%B4%B9%E8%AF%95%E8%AF%BE" data-popup-hash-pvg1sz="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/12/paj426x7jfetg56hr95h26n4ghnx6c8f.png" data-popup-hash-2rb5tg="%E5%A1%AB%E5%86%99%E6%82%A8%E7%9A%84%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-zwwk3q="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-vrzmht="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-gozvzc="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-ae7zjs="%3Cb%20style=%22color:rgba(20,%2043,%20136,%201)%22%3E%E5%A5%BD%E8%AF%BE%3C/b%3E%E5%85%8D%E8%B4%B9%E8%AF%95%E5%90%AC" class="btn3">免费试听课程</button>

    </div>
    </div>

    <style>
      @media (min-width:769px) { 
          .render-swiper-176-3 .list {  border-radius:0 0 0 0;  padding:.1rem .1rem .1rem .1rem;  margin:0 0 0 0;  width:100%;  }
          
          .render-swiper-176-3 .tabs {  padding:.2rem 0 .2rem 0;  margin:0 auto 0 auto;  flex-direction:row;  display:flex;  width:96%;  justify-content:space-between;  }
          
          .render-swiper-176-3 .content {  flex-direction:row;  display:flex;  width:100%;  justify-content:space-between;  flex-wrap:wrap;  }
          
          .render-swiper-176-3 .btn {  color:#fff;  font-size:24px;  border-radius:50px 50px 50px 50px;  background-color:#b81c25;  box-shadow:0 .1rem .1rem rgba(195,13,35,.2);  outline:none;  height:70px;  text-align:center;  padding:0 0 0 0;  margin:.4rem auto 0 auto;  display:block;  line-height:70px;  width:420px;  }
          
          .render-swiper-176-3 .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-176-3 .container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  }
          
          .render-swiper-176-3 .item {  border-radius:5px 5px 5px 5px;  background-color:#fff;  padding:.15rem .15rem .15rem .15rem;  box-shadow:0 0 .15rem .06rem rgba(150,150,150,.1);  margin:0 auto 0 auto;  width:92%;  }
          
          .render-swiper-176-3 .tab {  border-radius:40px 40px 40px 40px;  border:1px solid #c30d23;  cursor:pointer;  padding:0 0 0 0;  margin:0 0 0 0;  color:#c30d23;  width:14%;  font-size:20px;  line-height:40px;  text-align:center;  }
          
          .render-swiper-176-3 .text {  padding:.2rem .4rem 0 .4rem;  color:#444;  font-size:18px;  line-height:1.4;  text-align:center;  }
          
          .render-swiper-176-3 .slide {  }
          
          .render-swiper-176-3 .img {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:block;  width:100%;  }
          
          .render-swiper-176-3  {  background-color:#fff;  border-radius:0 0 0 0;  padding:.6rem 0 .6rem 0;  margin:0 0 0 0;  }
           }
      @media (max-width:768px) { 
          .render-swiper-176-3 .list {  border-radius:.1rem .1rem .1rem .1rem;  box-shadow:0 0 .1rem .1rem rgba(200,200,200,.1);  flex:1;  height:5.2rem;  padding:.2rem .2rem .2rem .2rem;  margin:0 0 0 0;  }
          
          .render-swiper-176-3 .tabs {  flex-direction:column;  display:flex;  width:2rem;  justify-content:space-between;  }
          
          .render-swiper-176-3 .content {  flex-direction:row;  display:flex;  width:100%;  justify-content:space-between;  flex-wrap:wrap;  }
          
          .render-swiper-176-3 .btn {  padding:0 0 0 0;  margin:.6rem auto 0 auto;  color:#fff;  display:block;  font-size:.32rem;  line-height:.88rem;  border-radius:.5rem .5rem .5rem .5rem;  background-color:#b81c25;  box-shadow:0 .1rem .1rem rgba(195,13,35,.2);  outline:none;  width:88%;  height:.88rem;  text-align:center;  }
          
          .render-swiper-176-3 .title {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .6rem 0;  color:#333;  font-weight:bold;  font-size:.4rem;  line-height:1;  text-align:center;  }
          
          .render-swiper-176-3 .container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  }
          
          .render-swiper-176-3 .item {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
          
          .render-swiper-176-3 .tab {  border-radius:.4rem .4rem .4rem .4rem;  border:1px solid #c30d23;  cursor:pointer;  padding:0 0 0 0;  margin:0 0 0 0;  color:#c30d23;  width:90%;  font-size:.26rem;  line-height:.6rem;  text-align:center;  }
          
          .render-swiper-176-3 .text {  padding:.2rem .4rem 0 .4rem;  color:#444;  font-size:.24rem;  line-height:1.4;  text-align:center;  }
          
          .render-swiper-176-3 .slide {  }
          
          .render-swiper-176-3 .img {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:block;  width:100%;  }
          
          .render-swiper-176-3  {  background-color:#fff;  border-radius:0 0 0 0;  padding:.6rem 0 .6rem 0;  margin:0px 0 20px 0;  }
           } 
    </style>
<style>
  .render-swiper-176-3 .active{
    background-color:#c30d23;color:#fff;border-color:#c30d23;
  }

  /* PC端 */
  @media (min-width:769px) {
    
  }
  /* 手机端 */
  @media (max-width:768px) {
    
  }
</style>

<div class="render-swiper-176-3">
  <div class="container">
    <h2 class="title"><b style="color:#c30d23;">个性化定制</b>课程,满足多种需要</h2>

    <div class="content">
      <ol class="tabs">
        <li class="tab active">日常口语</li>
        <li class="tab">0基础</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 slide">
            <div class="item">
              <img class="img" src="https://img.acadsoc.com.cn/web/lps/lxhd/shaoer0808/img/zs2.jpg">
              <p class="text">沉浸式趣味教学,零基础也能轻松入门。</p>
            </div>
          </div>
          <div class="swiper-slide slide">
            <div class="item">
              <img class="img" src="https://img.acadsoc.com.cn/web/lps/sem/sogou/pz/cr/img/sec4-4.png">
              <p class="text">模拟真实生活场景,一对一对话练习。</p>
            </div>
          </div>
          <div class="swiper-slide slide">
            <div class="item">
              <img class="img" src="https://img.acadsoc.com.cn/web/lps/sem/baidu/jingming/ty/om/img/s4-3p.png">
              <p class="text">着眼听说读写,全面提升英语综合能力。</p>
            </div>
          </div>
          <div class="swiper-slide slide">
            <div class="item">
              <img class="img" src="https://img.acadsoc.com.cn/web/lps/sem/sogou/pz/cr/img/sec4-5.png">
              <p class="text">纯英文语言环境,让“说英语”成为习惯。</p>
            </div>
          </div>
          <div class="swiper-slide slide">
            <div class="item">
              <img class="img" src="https://img.acadsoc.com.cn/web/lps/acc/sem/cr/hy/cryyty/v-b-m/img/s4-3.png">
              <p class="text">掌握应试技巧,高效提升英语成绩。</p>
            </div>
          </div>
          <div class="swiper-slide slide">
            <div class="item">
              <img class="img" src="https://img.acadsoc.com.cn/web/lps/sem/sogou/pz/cr/img/sec4-6.png">
              <p class="text">严选持证好外教,教你地道用语,交流无碍。</p>
            </div>
          </div>
        </div>
      </div>
    </div>


    <button class="btn" data-popup-id="175" data-popup-hash-iotxgz="%E7%AB%8B%E5%8D%B3%E5%85%8D%E8%B4%B9%E8%AF%95%E8%AF%BE" data-popup-hash-pvg1sz="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/12/paj426x7jfetg56hr95h26n4ghnx6c8f.png" data-popup-hash-2rb5tg="%E5%A1%AB%E5%86%99%E6%82%A8%E7%9A%84%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-zwwk3q="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-vrzmht="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-gozvzc="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-ae7zjs="%3Cb%20style=%22color:rgba(20,%2043,%20136,%201)%22%3E%E5%A5%BD%E8%AF%BE%3C/b%3E%E5%85%8D%E8%B4%B9%E8%AF%95%E5%90%AC">马上试听</button>
  </div>
</div>
<script>
  $(function(){
    const mySwiper = new Swiper ('.render-swiper-176-3 .swiper-container', {
      slidesPerView: HtmlWidth >= 768 ? 3 : 1,
      centeredSlides: HtmlWidth >= 768 ? true : false,
      initialSlide: 0,
      spaceBetween: HtmlWidth >= 768 ? 0 : 20,
      autoplay: {
        delay: 3000,
        stopOnLastSlide: false,
        disableOnInteraction: false,
      },
      direction: HtmlWidth >= 768 ? 'horizontal' : 'vertical',
      on: {
        slideChangeTransitionStart: function(){
          const index = this.activeIndex;
          $('.render-swiper-176-3 .tabs li').each(function(i,v){
            $('.render-swiper-176-3 .tabs li').eq(index).addClass('active').siblings('li').removeClass('active')
          })
        },
      },
    });

    $('.render-swiper-176-3 .tabs li').click(function(){
      const index = $(this).index();
      $(this).addClass('active').siblings('li').removeClass('active');
      mySwiper.slideTo(index, 300, false);
    })
  })
</script>

    <style>
      @media (min-width:769px) { 
            .auto-element-257-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:.6rem auto 0 auto;  color:white;  display:block;  width:4.2rem;  font-size:.24rem;  text-align:center;  height:.6rem;  }
            
            .auto-element-257-4>.container>.p1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#333;  font-weight:bold;  font-size:.4rem;  line-height:1;  text-align:center;  }
            
            .auto-element-257-4>.container>.p2 {  border-radius:0 0 0 0;  padding:.25rem 0 .3rem 0;  margin:0 0 0 0;  color:#666;  font-size:.26rem;  line-height:1;  text-align:center;  }
            
            .auto-element-257-4>.container>.div3>.div2>.div3>.p2 {  border-radius:0 0 0 0;  padding:.15rem 0 .12rem 0;  margin:0 0 0 0;  color:#c30d23;  font-size:.2rem;  line-height:1;  text-align:center;  }
            
            .auto-element-257-4>.container>.div3>.div2>.div3>.p3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#666;  font-size:18px;  line-height:1.3;  text-align:center;  }
            
            .auto-element-257-4>.container>.div3>.div2>.div3>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  display:block;  height:.6rem;  }
            
            .auto-element-257-4>.container>.div3>.div2>.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-257-4>.container>.div3>.div2>.div2>.p2 {  border-radius:0 0 0 0;  padding:.15rem 0 .12rem 0;  margin:0 0 0 0;  color:#c30d23;  font-size:.2rem;  line-height:1;  text-align:center;  }
            
            .auto-element-257-4>.container>.div3>.div2>.div2>.p3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#666;  font-size:18px;  line-height:1.3;  text-align:center;  }
            
            .auto-element-257-4>.container>.div3>.div2>.div2>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  display:block;  height:.6rem;  }
            
            .auto-element-257-4>.container>.div3>.div2>.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-257-4>.container>.div3>.div2>.div1>.p2 {  border-radius:0 0 0 0;  padding:.15rem 0 .12rem 0;  margin:0 0 0 0;  color:#c30d23;  font-size:.2rem;  line-height:1;  text-align:center;  }
            
            .auto-element-257-4>.container>.div3>.div2>.div1>.p3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#666;  font-size:18px;  line-height:1.3;  text-align:center;  }
            
            .auto-element-257-4>.container>.div3>.div2>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  display:block;  height:.6rem;  }
            
            .auto-element-257-4>.container>.div3>.div2>.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-257-4>.container>.div3>.div2 {  border-radius:.1rem .1rem .1rem .1rem;  background-color:#fff;  padding:.4rem .3rem .35rem .3rem;  box-shadow:0 0 .04rem .04rem rgba(231,244,250,.3);  margin:0 0 0 0;  display:flex;  width:48%;  min-height:100px;  justify-content:space-between;  min-width:100px;  }
            
            .auto-element-257-4>.container>.div3>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .auto-element-257-4>.container>.div3>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:50%;  min-height:100px;  min-width:100px;  }
            
            .auto-element-257-4>.container>.div3 {  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;  align-items:flex-end;  min-width:100px;  }
            
            .auto-element-257-4>.container {  min-height:100px;  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  }
            
            .auto-element-257-4 {  background-color:#f5f5f5;  border-radius:0 0 0 0;  padding:.6rem 0 .6rem 0;  margin:0 0 0 0;  min-height:100px;  }
             }
      @media (max-width:768px) { 
            .auto-element-257-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:0 auto 0 auto;  color:white;  display:block;  width:92%;  font-size:.32rem;  text-align:center;  height:.9rem;  }
            
            .auto-element-257-4>.container>.p1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#333;  font-weight:bold;  font-size:.4rem;  line-height:1;  text-align:center;  }
            
            .auto-element-257-4>.container>.p2 {  border-radius:0 0 0 0;  padding:.25rem 0 .4rem 0;  margin:0 0 0 0;  color:#666;  font-size:.26rem;  line-height:1;  text-align:center;  }
            
            .auto-element-257-4>.container>.div3>.div2>.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-257-4>.container>.div3>.div2>.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-257-4>.container>.div3>.div2>.div3>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  display:block;  height:.8rem;  }
            
            .auto-element-257-4>.container>.div3>.div2>.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-257-4>.container>.div3>.div2>.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-257-4>.container>.div3>.div2>.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-257-4>.container>.div3>.div2>.div2>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  display:block;  height:.8rem;  }
            
            .auto-element-257-4>.container>.div3>.div2>.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-257-4>.container>.div3>.div2>.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-257-4>.container>.div3>.div2>.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-257-4>.container>.div3>.div2>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  display:block;  height:.8rem;  }
            
            .auto-element-257-4>.container>.div3>.div2>.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-257-4>.container>.div3>.div2 {  border-radius:.1rem .1rem .1rem .1rem;  background-color:#fff;  padding:.4rem .2rem .4rem .2rem;  box-shadow:0 0 .04rem .04rem rgba(231,244,250,.3);  margin:0 auto .6rem auto;  display:flex;  width:95%;  min-height:100px;  justify-content:space-between;  min-width:100px;  }
            
            .auto-element-257-4>.container>.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-257-4>.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-257-4>.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-257-4>.container {  border-radius:0 0 0 0;  padding:0 .3rem 0 .3rem;  margin:0 auto 0 auto;  min-height:100px;  }
            
            .auto-element-257-4 {  background-color:#f5f5f5;  border-radius:0 0 0 0;  padding:.6rem 0 .6rem 0;  margin:-20px 0 0 0;  min-height:100px;  }
             } 
    </style>
<div class="auto-element-257-4">
    <div class="container">
      
<p class="p1"><b style="color:#c30d23;">互动课程</b> 学习更高效</p>

<p class="p2">支持手机,IPAD,电脑听课</p>

    <div class="div3">
      
    <div class="div1">
      
<img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/20/65xjt9ejl7c32kymzpl7f3dyxahgl7dx.png">

    </div>
    
    <div class="div2">
      
    <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 data-popup-id="175" data-popup-hash-iotxgz="%E7%AB%8B%E5%8D%B3%E5%85%8D%E8%B4%B9%E8%AF%95%E8%AF%BE" data-popup-hash-pvg1sz="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/12/paj426x7jfetg56hr95h26n4ghnx6c8f.png" data-popup-hash-2rb5tg="%E5%A1%AB%E5%86%99%E6%82%A8%E7%9A%84%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-zwwk3q="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-vrzmht="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-gozvzc="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-ae7zjs="%3Cb%20style=%22color:rgba(20,%2043,%20136,%201)%22%3E%E5%A5%BD%E8%AF%BE%3C/b%3E%E5%85%8D%E8%B4%B9%E8%AF%95%E5%90%AC" class="button4">免费试听课程</button>

    </div>
    </div>

    <style>
      @media (min-width:769px) { 
            .auto-element-259-5>.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-259-5>.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-259-5>.container>.div6>.img3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  }
            
            .auto-element-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.container>.div6>.div4 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-width:100px;  }
            
            .auto-element-259-5>.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-259-5>.container>.div6 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-width:100px;  }
            
            .auto-element-259-5>.container {  min-height:100px;  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  }
            
            .auto-element-259-5 {  background-color:white;  border-radius:0 0 0 0;  padding:.6rem 0 .6rem 0;  margin:0 0 0 0;  min-height:100px;  }
             }
      @media (max-width:768px) { 
            .auto-element-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.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-259-5>.container>.div6>.div4 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-width:100px;  }
            
            .auto-element-259-5>.container>.div6>.img2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  }
            
            .auto-element-259-5>.container>.div6 {  border-radius:.1rem .1rem .1rem .1rem;  background-color:#f8f8f8;  padding:.4rem .4rem .4rem .4rem;  margin:0 0 0 0;  min-width:100px;  }
            
            .auto-element-259-5>.container {  border-radius:0 0 0 0;  padding:0 .3rem 0 .3rem;  margin:0 auto 0 auto;  min-height:100px;  }
            
            .auto-element-259-5 {  background-color:white;  border-radius:0 0 0 0;  padding:.6rem 0 .6rem 0;  margin:0 0 0 0;  min-height:100px;  }
             } 
    </style>
<div class="auto-element-259-5">
    <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>

    <style>
      @media (min-width:769px) { 
            .auto-element-230-6>.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-6>.container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  }
            
            .auto-element-230-6 {  background-color:white;  border-radius:0 0 0 0;  padding:.1rem 0 .3rem 0;  margin:0 0 0 0;  }
             }
      @media (max-width:768px) { 
            .auto-element-230-6>.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-6>.container {  border-radius:0 0 0 0;  padding:0 .3rem 0 .3rem;  margin:0 auto 0 auto;  }
            
            .auto-element-230-6 {  background-color:white;  border-radius:0 0 0 0;  padding:.3rem 0 .3rem 0;  margin:0 0 0 0;  }
             } 
    </style>
<div class="auto-element-230-6">
    <div class="container">
      
<p class="p1">*以上数据均为内部统计数据</p>

    </div>
    </div>

<style>
  .fixed{position:fixed;bottom:0;left:0;    z-index: 6;}
  .render-jsx-46-7 { font-size:0; }
  /* PC端 */
  @media (min-width:769px) {
    .render-jsx-46-7 {  padding:0 0 0 0;  margin:0 0 0 0;  text-align:center;  }

    .render-jsx-46-7 img {pointer-events: none;   border-radius:0 0 0 0;  padding:0 0 0 0;  margin:-50px 0 0 0;  width:100%;  height:auto;  }


  }
  /* 手机端 */
  @media (max-width:768px) {
    .render-jsx-46-7 {  padding:0 0 0 0;  margin:0 0 0 0;  text-align:center;  }

    .render-jsx-46-7 img {pointer-events: none;   border-radius:0 0 0 0;  padding:0 0 0 0;  margin:-40px 0 0 0;  width:100%;  height:auto;  }
  }
</style>
<div class="render-jsx-46-7-top"></div>

<div class="render-jsx-46-7" data-popup-id="175" data-popup-hash-iotxgz="%E7%AB%8B%E5%8D%B3%E5%85%8D%E8%B4%B9%E8%AF%95%E8%AF%BE" data-popup-hash-pvg1sz="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/12/paj426x7jfetg56hr95h26n4ghnx6c8f.png" data-popup-hash-2rb5tg="%E5%A1%AB%E5%86%99%E6%82%A8%E7%9A%84%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-zwwk3q="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-vrzmht="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-gozvzc="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-ae7zjs="%3Cb%20style=%22color:rgba(20,%2043,%20136,%201)%22%3E%E5%A5%BD%E8%AF%BE%3C/b%3E%E5%85%8D%E8%B4%B9%E8%AF%95%E5%90%AC">
  <a>
    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/d83rbxr7xy24jx3dwcx4l46j1dgk5jr3.png" class="pc--show">
    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/22/yam4b23x7294br2xyd7kzc547a9batrb.png" class="mobile--show">
  </a>
</div>



<script>
  $(function () {
    bottomShow();
  })

  function bottomShow() {
    // 定位元素
    let fixedBottom = $('.render-jsx-46-7');
    // 头部元素
    let headerFixedElement = $('body>div').eq(0);
    // 底部元素
    let removeFixedElement = $('.render-jsx-46-7-top');
    let bTop = removeFixedElement.offset().top - 10 - $(window).height() + removeFixedElement.height();
    let rTop = headerFixedElement.offset().top + headerFixedElement.height();
    $(window).scroll(function () {
      let sTop = $(this).scrollTop();
      if (sTop > rTop) {
        fixedBottom.fadeIn(300);
        if (sTop >= bTop) {
          fixedBottom.removeClass('fixed');
        } else {
          fixedBottom.addClass('fixed');
        }
      } else {
        fixedBottom.fadeOut(300);
      }
    })
  }
</script>

    <style>
      @media (min-width:769px) { 
            .render-jsx-175-model>.con>.regbtn {  border-radius:60px 60px 60px 60px;  background-color:#c30d23;  padding:0 0 0 0;  margin:0 auto 0 auto;  color:white;  font-weight:bold;  display:block;  width:4rem;  font-size:16px;  height:.55rem;  }
            
            .render-jsx-175-model>.con>.img {  margin:-.75rem 0 0;  width:100%;  }
            
            .render-jsx-175-model>.con>.regphone>.phone {  border:1px solid #A0A0A0;  border-radius:60px;  padding:0 0 0 .3rem;  width:100%;  font-size:16px;  height:.5rem;  }
            
            .render-jsx-175-model>.con>.regphone {  margin:.2rem auto 0 auto;  width:4rem;  }
            
            .render-jsx-175-model>.con>.closeimg {  top:.16rem;  width:.23rem;  right:.16rem;  position:absolute;  }
            
            .render-jsx-175-model>.con>.regcode>.code {  border:1px solid #A0A0A0;  border-radius:60px;  padding:0 0 0 .3rem;  width:100%;  font-size:16px;  line-height:.5rem;  height:.5rem;  }
            
            .render-jsx-175-model>.con>.regcode>.regcodebtn {  background-color:#c30d23;  border-radius:60px;  padding:0 30px 0 30px;  top:0;  color:white;  font-size:16px;  position:absolute;  right:0;  height:100%;  }
            
            .render-jsx-175-model>.con>.regcode {  margin:.2rem auto .2rem auto;  width:4rem;  position:relative;  }
            
            .render-jsx-175-model>.con>.title {  margin:.2rem 0;  color:rgba(195, 13, 35, 1);  font-weight:bold;  font-size:.32rem;  text-align:center;  }
            
            .render-jsx-175-model>.con {  background-color:white;  border-radius:20px;  padding:0 0 .4rem 0;  margin:0 auto 0 auto;  transform:translate(-50%,-50%);  top:50%;  left:50%;  width:4.5rem;  position:absolute;  }
            
            .render-jsx-175-model {  background-color:rgba(0,0,0,0.5);  padding:0 0 0 0;  margin:0 0 0 0;  top:0;  left:0;  bottom:0;  position:fixed;  right:0;  }
             }
      @media (max-width:768px) { 
            .render-jsx-175-model>.con>.regbtn {  border-radius:60px 60px 60px 60px;  background-color:#c30d23;  padding:0 0 0 0;  margin:0 auto 0 auto;  color:white;  font-weight:bold;  display:block;  width:6rem;  font-size:.32rem;  height:.9rem;  }
            
            .render-jsx-175-model>.con>.img {  margin:-1.18rem 0 0;  width:100%;  }
            
            .render-jsx-175-model>.con>.regphone>.phone {  border:1px solid #A0A0A0;  border-radius:60px;  padding:0 0 0 .3rem;  width:100%;  font-size:.28rem;  height:.9rem;  }
            
            .render-jsx-175-model>.con>.regphone {  margin:.2rem auto 0 auto;  top:.3rem;  width:6rem;  }
            
            .render-jsx-175-model>.con>.closeimg {  top:.3rem;  width:.4rem;  right:.3rem;  position:absolute;  }
            
            .render-jsx-175-model>.con>.regcode>.code {  border:1px solid #A0A0A0;  border-radius:60px;  padding:0 0 0 .3rem;  width:100%;  font-size:.28rem;  height:.9rem;  }
            
            .render-jsx-175-model>.con>.regcode>.regcodebtn {  background-color:#c30d23;  border-radius:60px;  padding:0 .3rem 0 .3rem;  top:0;  color:white;  font-size:.3rem;  position:absolute;  right:0;  height:100%;  }
            
            .render-jsx-175-model>.con>.regcode {  margin:.3rem auto .3rem auto;  width:6rem;  position:relative;  }
            
            .render-jsx-175-model>.con>.title {  margin:.2rem 0;  color:rgba(195, 13, 35, 1);  font-weight:bold;  font-size:.32rem;  text-align:center;  }
            
            .render-jsx-175-model>.con {  background-color:white;  border-radius:13px;  padding:0 0 .4rem 0;  margin:0 auto 0 auto;  transform:translate(-50%,-50%);  top:50%;  left:50%;  width:7rem;  position:absolute;  }
            
            .render-jsx-175-model {  background-color:rgba(0,0,0,0.5);  padding:0 0 0 0;  margin:0 0 0 0;  top:0;  left:0;  bottom:0;  position:fixed;  right:0;  }
             } 
    </style>
<div class="render-jsx-175-model" id="register-popup-175" style="display:none">
  <div class="con">
    <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/01/12/paj426x7jfetg56hr95h26n4ghnx6c8f.png" data-modal-hash="pvg1sz">
    <p class="title" data-modal-hash="ae7zjs"><b style="color:rgba(20, 43, 136, 1)">定制</b>学习方案</p>
    <img class="close-popup closeimg" src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-modal-hash="zwwk3q">
    <div class="regphone">
      <input placeholder="填写您的手机号" type="tel" name="TxtPhone" class="phone" data-modal-hash="2rb5tg">
    </div>
    <div class="regcode">
      <input placeholder="请输入验证码" type="tel" name="TxtCode" class="code" data-modal-hash="vrzmht">
      <button name="btnGetSMS" class="regcodebtn" data-modal-hash="gozvzc">获取验证码</button>
    </div>
    <button name="registerSubmit" class="regbtn" data-modal-hash="iotxgz">免费领取</button>
  </div>
</div>


  


  <!--滑动验证生成-->
  <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>

    window.onload = function(){
      addFixedEls();
    }

    function addFixedEls(){
      // 头部元素
      const headerFixedElement = $('body>div').eq(0);
      $('.fixed__el').each((i,v) => {
        // 定位元素
        const fixedEl = $(v);
        // 移除元素
        const removeFixedElement = fixedEl.prev();
        let bTop = removeFixedElement.offset().top - 10 - $(window).height() + removeFixedElement.height();
        let rTop = headerFixedElement.offset().top + headerFixedElement.height();
        $(window).scroll(function () {
          let sTop = $(this).scrollTop();
          if (sTop > rTop) {
            fixedEl.fadeIn(300);
            if (sTop >= bTop) {
              fixedEl.removeClass('fixed');
            } else {
              fixedEl.addClass('fixed');
            }
          } else {
            fixedEl.fadeOut(300);
          }
        })
      })
    }

    const date = new Date();
    const curruYear = date.getFullYear();
    const currMonth = date.getMonth() + 1;
    const currDate = date.getDate();

    // 替换时间文字
    document.querySelectorAll('.time').forEach(function(v){
      v.innerHTML =  getToday(v.innerHTML);
    })
      

    function getToday(str) {
      return str.replace(/year/gi,curruYear).replace(/month/gi,currMonth).replace(/date/gi,currDate);
    }
    
    function copyWx(wx, text='复制成功!'){
      const element = document.createElement('input');
      element.value = wx;
      document.body.append(element);
      element.select();
      document.execCommand('Copy');
      document.body.removeChild(element);
      alert(text);
    }
    
    function showSuccessModal(){
      var successPopup = document.querySelector('[id^=success-popup]');
        if(successPopup){
            $(successPopup).fadeIn();
        }else{
            alert("领取成功,稍后将有学习顾问联系您!");
            window.location = '/WebNew/user/Personal/UserInfo.aspx';
        }
    }

    $(function () {
      
      $('[data-copy-wx]').click(function(){
        copyWx($(this).attr('data-copy-wx'),$(this).attr('data-wx-alter'))
      })

      $('[data-to-wx]').click(function(){
        copyWx($(this).attr('data-to-wx'),$(this).attr('data-wx-alter'))
        const aele = document.createElement('a');
        aele.href ='weixin://';
        aele.click();
      });

      // 返回弹窗
      if (document.querySelector('[id*=back-popup]')) {
        $('[id*=back-popup]').hide();
        $('[id*=back-popup] [class*=close]').click(function () {
          $('[id*=back-popup]').fadeOut();
          // 取消返回,需要默认back一次
          window.removeEventListener('popstate', holdBack);
          history.back();
        })

        // 阻止返回
        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(){
        openModal(this);
      })
      
      function openModal(dom, selector){
        const id = $(dom).attr('data-popup-id');
        const popup = $('#register-popup-' + id);
        const attrs = dom.attributes;
        // 更改字符
        for (let i = 0; i < attrs.length; i++) {
          const name = attrs[i].name;
          const value = decodeURI(attrs[i].value);
          if(name.indexOf('data-popup-hash-') !== -1){
            const ele = popup.find('[data-modal-hash=' + name.split('data-popup-hash-')[1] + ']');
            if (!value) continue;
            if(value === 'false') {
              ele.hide();
              continue;
            } else if(value === 'true') {
              ele.show();
              continue;
            }
            if(!ele[0]) continue;
            setDomParams(ele[0], value);
          }
        }
        popup.fadeIn();
      }
      
      function setDomParams(dom, value){
        var ele = $(dom);
        switch (dom.nodeName) {
          case 'IMG':
            if (ele.attr('src') !== value) {
              ele.attr('src', value);
            }
            break;
          case 'INPUT':
            if (ele.attr('placeholder') !== value) {
              ele.attr('placeholder', value);
            }
            break;
          default:
            if (ele.html() !== value) {
              ele.html(getToday(value));
            }
            break;
        }
      }

      // 单链接跳转
      $('[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 }]])

          showSuccessModal();

          $(".loading").hide();
          // customize register code
          
meteor.track('form', {convert_id: 1690828852856843 })


          
          window.registerCallback && window.register.Callback();
          
          // if (paytype == "wechat") {
          //   var ua = window.navigator.userAgent.toLowerCase();
          //   if (ua.match(/MicroMessenger/i) == 'micromessenger') {
          //       Config.successLocation = "https://www.acadsoc.com.cn/WebNew/user/MobilePay/AuthResponse.aspx?id=" + Config.orderId + "&payid=4";
          //   } else {
          //       Config.successLocation = "https://www.acadsoc.com.cn/WebNew/user/MobilePay/MobilePay.aspx?DesCid=" + Config.orderId + "&RedPack=0&payid=11";
          //   }
          // } else if (paytype == "alipay") {
          //   Config.successLocation = "https://www.acadsoc.com.cn/WebNew/user/MobilePay/MobilePay.aspx?DesCid=" + Config.orderId + "&RedPack=0&payid=10";
          // }

          return false;
        },
        type: 'code', //注册类型:normal(常规),code(验证码注册),uid(带推荐人uid)
        
      });
      

    })


    

  </script>
  <!-- 53客服 -->
  <script>(function() {var _53code = document.createElement("script");_53code.src = "https://tb.53kf.com/code/code/10145332/4";var s = document.getElementsByTagName("script")[0]; s.parentNode.insertBefore(_53code, s);})();</script>
  <!-- customize footer code -->
  


</body></html>