index.html 77.5 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 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480
<!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;
      })

    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/SenSors/sensorsheadother.js"></script>
<script type="text/javascript">
    (function () {
        var ns = document.createElement('script');ns.type = 'text/javascript';ns.async = true;
        ns.src = '//163h5.m.163.com/h5/libs/analyze.js';
        var f = document.getElementsByTagName('script')[0];f.parentNode.insertBefore(ns,f);
    })()
 </script>

</head>


<!-- style: 506 -->
<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-126-0 .btnwrap {  transform:translateY(-50%);  z-index:2;  top:60%;  width:1.2rem;  position:fixed;  right:0;  }.render-jsx-126-0 .finger {  z-index:2;  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  bottom:.2rem;  display:block;  pointer-events:none;  left:-.2rem;  width:.8rem;  position:absolute;  }.render-jsx-126-0 .btn {  z-index:1;  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:block;  width:100%;  position:relative;  }.render-jsx-126-0 .info {  padding:0 0 0 0;  z-index:0;  margin:0 0 0 0;  bottom:9px;  display:none;  right:10px;  pointer-events:none;  border-radius:0 0 0 0;  max-width:initial;  width:3rem;  position:absolute;  user-select:none;  }.render-jsx-126-0 .container {  margin:0 auto;  }.render-jsx-126-0  {  background-color:#fff;  }.render-jsx-125-4 .formgroup {  margin:0 auto .24rem;  width:100%;  position:relative;  }.render-jsx-125-4 .title {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#fff;  font-size:.36rem;  line-height:1;  text-align:center;  }.render-jsx-125-4 .content {  margin:0 auto;  width:5.6rem;  }.render-jsx-125-4 .code {  border:1px solid #fff;  padding:0 26px;  color:#fff;  display:block;  font-size:16px;  line-height:70px;  box-sizing:border-box;  background-color:none;  border-radius:50px;  outline:none;  width:100%;  position:relative;  height:70px;  }.render-jsx-125-4 .submit {  border-radius:50px;  background-color:#b81c25;  border:none;  outline:none;  color:#fff;  display:block;  width:100%;  font-size:28px;  line-height:70px;  height:70px;  text-align:center;  }.render-jsx-125-4 .phone {  border:1px solid #fff;  background-color:none;  border-radius:50px;  padding:0 26px;  outline:none;  color:#fff;  display:block;  width:100%;  font-size:16px;  line-height:70px;  box-sizing:border-box;  height:70px;  }.render-jsx-125-4 .codebtn {  color:#fff;  font-size:16px;  border-radius:0 50px 50px 0;  background-color:#b81c25;  outline:none;  top:0;  height:70px;  border:none;  padding:0 26px;  margin:0 0 0 0;  display:inline-block;  line-height:70px;  right:-1px;  position:absolute;  }.render-jsx-125-4 .desc {  border-radius:0 0 0 0;  padding:.15rem 0 .36rem 0;  margin:0 0 0 0;  color:#fff;  font-size:16px;  line-height:1;  text-align:center;  }.render-jsx-125-4 .container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  }.render-jsx-125-4  {  border-radius:0 0 0 0;  padding:.7rem 0 .9rem 0;  background-repeat:no-repeat;  margin:-.3rem auto 0 auto;  background-size:cover;  background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/11/wcb8d2gmlhkfnlflzgfernl4dw84jh9f.png);  }.render-jsx-55-10 .item0 {  background-color:#B81C25;  border-radius:60px 60px 60px 60px;  padding:10px 40px 10px 40px;  margin:0 0 0 0;  color:#fff;  font-weight:bold;  font-size:24px;  }.render-jsx-55-10 .item2 {  color:#fff;  font-weight:bold;  font-size:24px;  background-color:#B81C25;  border-radius:60px;  padding:10px 40px;  margin:0 0 0 0;  }.render-jsx-55-10 .item1 {  color:#fff;  font-weight:bold;  font-size:24px;  background-color:#B81C25;  border-radius:60px;  padding:10px 40px;  margin:0 60px;  }.render-jsx-55-10 .con {  font-size:0;  background-color:#172d79;  padding:0 0 .4rem 0;  margin:0 auto;  display:flex;  width:100%;  justify-content:center;  align-items:center;  }.render-jsx-55-10  {  background-color:#fff;  top:30px;  bottom:50px;  }.render-swiper-129-11  {  background-color:#172d79;  padding:0 0 30px;  margin:0 0 0 0;  }.render-jsx-128-14 .item {  border-radius:10px 10px 10px 10px;  padding:0 0 0 0;  margin:0 0 30px 0;  overflow:hidden;  width:31.5%;  position:relative;  }.render-jsx-128-14 .mask {  z-index:2;  color:#fff;  font-size:20px;  background-color:rgba(23,45,121,0.8);  border-radius:0 0 0 0;  top:0;  height:100%;  text-align:left;  padding:.5rem .2rem .5rem .2rem;  margin:0 0 0 0;  line-height:1.5;  left:0;  width:100%;  position:absolute;  opacity:0;  }.render-jsx-128-14 .text {  background-color:#0e3180;  z-index:1;  color:#fff;  left:0;  font-weight:bold;  bottom:0;  width:100%;  font-size:19px;  line-height:60px;  position:absolute;  height:60px;  text-align:center;  }.render-jsx-128-14 .list {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  flex-direction:row;  display:flex;  width:100%;  justify-content:space-between;  flex-wrap:wrap;  }.render-jsx-128-14 .img {  display:block;  width:100%;  }.render-jsx-128-14 .container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  }.render-jsx-128-14  {  background-color:#eff6ff;  border-radius:0 0 0 0;  padding:.5rem 0 .5rem 0;  margin:0 0 0 0;  }.render-jsx-8-lEjW1s .button {  background-size:100% 100%;  background-color:transparent;  border-radius:0 0 0 0;  transform:translateX(-50%);  background-repeat:no-repeat;  top:80%;  background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/15/4n71d8xz86h3hr5letzmrjafdz9rzyjb.gif);  height:170px;  padding:0 0 0 0;  margin:0 0 0 0;  bottom:0;  left:49.6%;  width:160px;  position:absolute;  }.render-jsx-8-lEjW1s .img {  height:auto;  padding:100px 0 0 0;  margin:0 auto;  width:375px;  }.render-jsx-8-lEjW1s .closeImg {  top:13% !important;  height:40px;  padding:0 0 0 0;  margin:0 0 0 0;  left:63%;  width:40px !important;  position:absolute;  }.render-jsx-8-lEjW1s  {  background-color:rgba(0,0,0,0.5);  border-radius:0 0 0 0;  padding:0 0 0 0;  z-index:8;  margin:0 0 0 0;  top:0;  left:0;  bottom:0;  position:fixed;  right:0;  text-align:center;  }.auto-element-304-u0ENiw>.div1 {  padding:.5rem 0 .5rem 3rem;  margin:0 0 0 0;  background-size:100% 100%;  min-height:100px;  border-radius:.14rem .14rem .14rem .14rem;  background-color:white;  transform:translate(-50%, -50%);  background-repeat:no-repeat;  top:50%;  left:50%;  width:7rem;  position:absolute;  background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/08/x41dr2ynhkgzb43a2gbr9mf6gemp1d7r.png);  min-width:100px;  }.auto-element-304-u0ENiw>.div1>.regcode6 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  width:3rem;  position:relative;  }.auto-element-304-u0ENiw>.div1>.regcode6>.code {  border:1px solid #A0A0A0;  border-radius:60px 60px 60px 60px;  background-color:white;  padding:0 0 0 .3rem;  margin:0 0 0 0;  width:100%;  font-size:.16rem;  height:.5rem;  }.auto-element-304-u0ENiw>.div1>.regcode6>.regcodebtn {  background-color:#c30d23;  border-radius:0 60px 60px 0;  padding:0 .3rem 0 .3rem;  margin:0 0 0 0;  top:0;  color:white;  font-size:.16rem;  position:absolute;  right:0;  height:100%;  }.auto-element-304-u0ENiw>.div1>.p2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:white;  font-weight:bold;  font-size:.4rem;  text-align:center;  height:1.2rem;  }.auto-element-304-u0ENiw>.div1>.regphone4 {  margin:.2rem auto 0 auto;  width:4rem;  }.auto-element-304-u0ENiw>.div1>.close8 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  top:.2rem;  width:.2rem;  position:absolute;  right:.2rem;  }.auto-element-304-u0ENiw>.div1>.regphone5 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  width:3rem;  }.auto-element-304-u0ENiw>.div1>.regphone5>.phone {  border:1px solid #A0A0A0;  border-radius:60px 60px 60px 60px;  background-color:white;  padding:0 .3rem 0 .3rem;  margin:0 0 0 0;  width:100%;  font-size:.16rem;  height:.5rem;  }.auto-element-304-u0ENiw>.div1>.button7 {  border-radius:60px 60px 60px 60px;  background-color:rgba(195, 13, 35, 1);  box-shadow:0px 4px 10px rgba(195,13,35,0.4);  padding:0 0 0 0;  margin:.3rem auto 0 auto;  color:white;  display:block;  width:3rem;  font-size:.24rem;  text-align:center;  height:.5rem;  }.auto-element-304-u0ENiw>.div1>.img2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  }.auto-element-304-u0ENiw {  background-color:rgba(0,0,0,0.7);  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  top:0;  left:0;  bottom:0;  position:fixed;  right:0;  }.auto-element-343-D7b2kw>.div1 {  background-size:100%;  min-height:100px;  border-radius:4px 4px 4px 4px;  background-color:white;  transform:translate(-50%, -50%);  background-repeat:no-repeat;  top:50%;  padding:.4rem 0 .4rem 0;  margin:0 0 0 0;  left:50%;  width:4.5rem;  position:absolute;  min-width:100px;  }.auto-element-343-D7b2kw>.div1>.p1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  font-weight:bold;  font-size:.3rem;  text-align:center;  }.auto-element-343-D7b2kw>.div1>.regbtn4 {  border-radius:4px 4px 4px 4px;  background-color:#c30d23;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  color:white;  display:block;  width:4rem;  font-size:.24rem;  height:.55rem;  }.auto-element-343-D7b2kw>.div1>.regphone2 {  margin:.2rem auto 0 auto;  width:4rem;  }.auto-element-343-D7b2kw>.div1>.regphone2>.phone {  border:1px solid #A0A0A0;  border-radius:4px 4px 4px 4px;  padding:0 .3rem 0 .3rem;  margin:0 0 0 0;  width:100%;  font-size:.16rem;  height:.5rem;  }.auto-element-343-D7b2kw>.div1>.regcode3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  width:4rem;  position:relative;  }.auto-element-343-D7b2kw>.div1>.regcode3>.code {  border:1px solid #A0A0A0;  border-radius:4px 4px 4px 4px;  padding:0 0 0 .3rem;  margin:0 0 0 0;  width:100%;  font-size:.16rem;  height:.5rem;  }.auto-element-343-D7b2kw>.div1>.regcode3>.regcodebtn {  background-color:#c30d23;  border-radius:4px 4px 4px 4px;  padding:0 .3rem 0 .3rem;  margin:0 0 0 0;  top:0;  color:white;  font-size:.16rem;  position:absolute;  right:0;  height:100%;  }.auto-element-343-D7b2kw>.div1>.close5 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  top:.2rem;  width:.2rem;  position:absolute;  right:.2rem;  }.auto-element-343-D7b2kw {  background-color:rgba(0,0,0,0.7);  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  top:0;  left:0;  bottom:0;  position:fixed;  right:0;  }.auto-element-304-IGP4K8-PD3zrL>.div1 {  padding:.5rem 0 .5rem 3rem;  margin:0 0 0 0;  background-size:100% 100%;  min-height:100px;  border-radius:.14rem .14rem .14rem .14rem;  background-color:white;  transform:translate(-50%, -50%);  background-repeat:no-repeat;  top:50%;  left:50%;  width:7rem;  position:absolute;  background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/08/x41dr2ynhkgzb43a2gbr9mf6gemp1d7r.png);  min-width:100px;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.regcode6 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  width:3rem;  position:relative;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.regcode6>.code {  border:1px solid #A0A0A0;  border-radius:60px 60px 60px 60px;  background-color:white;  padding:0 0 0 .3rem;  margin:0 0 0 0;  width:100%;  font-size:.16rem;  height:.5rem;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.regcode6>.regcodebtn {  background-color:#c30d23;  border-radius:0 60px 60px 0;  padding:0 .3rem 0 .3rem;  margin:0 0 0 0;  top:0;  color:white;  font-size:.16rem;  position:absolute;  right:0;  height:100%;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.p2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:white;  font-weight:bold;  font-size:.4rem;  text-align:center;  height:1.2rem;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.regphone4 {  margin:.2rem auto 0 auto;  width:4rem;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.close8 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  top:.2rem;  width:.2rem;  position:absolute;  right:.2rem;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.regphone5 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  width:3rem;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.regphone5>.phone {  border:1px solid #A0A0A0;  border-radius:60px 60px 60px 60px;  background-color:white;  padding:0 .3rem 0 .3rem;  margin:0 0 0 0;  width:100%;  font-size:.16rem;  height:.5rem;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.button7 {  border-radius:60px 60px 60px 60px;  background-color:rgba(195, 13, 35, 1);  box-shadow:0px 4px 10px rgba(195,13,35,0.4);  padding:0 0 0 0;  margin:.3rem auto 0 auto;  color:white;  display:block;  width:3rem;  font-size:.24rem;  text-align:center;  height:.5rem;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.img2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  }.auto-element-304-IGP4K8-PD3zrL {  background-color:rgba(0,0,0,0.7);  border-radius:0 0 0 0;  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-126-0 .btnwrap {  transform:translateY(-50%);  z-index:2;  top:60%;  width:1.2rem;  position:fixed;  right:0;  }.render-jsx-126-0 .finger {  border-radius:0 0 0 0;  padding:0 0 0 0;  z-index:2;  margin:0 0 0 0;  left:-.2rem;  bottom:.2rem;  display:block;  width:.8rem;  position:absolute;  }.render-jsx-126-0 .btn {  z-index:1;  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:block;  width:100%;  position:relative;  }.render-jsx-126-0 .info {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  }.render-jsx-126-0 .container {  margin:0 auto;  }.render-jsx-126-0  {  background-color:#fff;  }.render-jsx-125-4 .formgroup {  padding:0 0 0 0;  margin:0 auto .24rem;  width:100%;  position:relative;  }.render-jsx-125-4 .title {  color:#fff;  font-size:.36rem;  border-radius:0 0 0 0;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  line-height:1;  }.render-jsx-125-4 .content {  padding:0 0 0 0;  margin:0 auto;  width:92%;  }.render-jsx-125-4 .code {  color:#fff;  font-size:.26rem;  box-sizing:border-box;  background-color:none;  border-radius:.5rem;  outline:none;  height:.88rem;  border:1px solid #fff;  padding:0 .26rem;  margin:0 0 0 0;  display:block;  line-height:.88rem;  width:100%;  position:relative;  }.render-jsx-125-4 .submit {  border-radius:.5rem;  background-color:#b81c25;  border:none;  outline:none;  color:#fff;  display:block;  width:100%;  font-size:.3rem;  line-height:.88rem;  height:.88rem;  text-align:center;  }.render-jsx-125-4 .phone {  border:1px solid #fff;  background-color:none;  border-radius:.5rem;  padding:0 .26rem;  outline:none;  color:#fff;  display:block;  width:100%;  font-size:.26rem;  line-height:.88rem;  box-sizing:border-box;  height:.88rem;  }.render-jsx-125-4 .codebtn {  color:#fff;  font-size:16px;  border-radius:0 50px 50px 0;  background-color:#b81c25;  outline:none;  top:0;  height:.88rem;  border:none;  padding:0 .26rem;  margin:0 0 0 0;  display:inline-block;  line-height:.88rem;  right:-1px;  position:absolute;  }.render-jsx-125-4 .desc {  border-radius:0 0 0 0;  padding:.15rem 0 .36rem 0;  margin:0 0 0 0;  color:#fff;  font-size:.26rem;  line-height:1;  text-align:center;  }.render-jsx-125-4 .container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  }.render-jsx-125-4  {  border-radius:0 0 0 0;  padding:.7rem 0 .9rem 0;  background-repeat:no-repeat;  margin:-.3rem auto 0 auto;  background-size:cover;  background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/11/wcb8d2gmlhkfnlflzgfernl4dw84jh9f.png);  }.render-jsx-55-10 .item0 {  color:#fff;  font-weight:bold;  font-size:.24rem;  background-color:#B81C25;  border-radius:60px 60px 60px 60px;  text-align:center;  padding:.1rem .4rem .1rem .4rem;  margin:0 0 0 0;  width:30%;  }.render-jsx-55-10 .item2 {  color:#fff;  font-weight:bold;  font-size:.24rem;  background-color:#B81C25;  border-radius:60px;  text-align:center;  padding:.1rem .4rem;  margin:0 0 0 0;  }.render-jsx-55-10 .item1 {  color:#fff;  font-weight:bold;  font-size:.24rem;  background-color:#B81C25;  border-radius:60px;  text-align:center;  padding:.1rem .4rem;  width:30%;  }.render-jsx-55-10 .con {  font-size:0;  background-color:#172d79;  padding:0 .2rem .4rem .2rem;  margin:-1px auto 0;  display:flex;  justify-content:space-around;  align-items:center;  }.render-jsx-55-10  {  background-color:#fff;  top:30px;  bottom:50px;  }.render-swiper-129-11  {  background-color:#172d79;  padding:0 0 .3rem;  margin:-1px 0 0 0;  }.render-jsx-128-14 .item {  border-radius:.1rem .1rem .1rem .1rem;  padding:0 0 0 0;  margin:0 0 .3rem 0;  overflow:hidden;  width:47.5%;  position:relative;  }.render-jsx-128-14 .mask {  color:#666;  font-size:.24rem;  border-radius:0 0 0 0;  text-align:left;  padding:.16rem 0 0 0;  margin:0 0 0 0;  line-height:1.25;  width:100%;  }.render-jsx-128-14 .text {  color:#fff;  font-weight:bold;  font-size:.24rem;  background-color:#0e3180;  border-radius:0 0 .1rem .1rem;  height:.6rem;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  line-height:.6rem;  width:100%;  }.render-jsx-128-14 .list {  flex-wrap:wrap;  border-radius:0 0 0 0;  flex-direction:row;  padding:0 0 0 0;  margin:0 auto 0 auto;  display:flex;  width:92%;  justify-content:space-between;  }.render-jsx-128-14 .img {  padding:0 0 0 0;  margin:0 0 0 0;  display:block;  width:100%;  }.render-jsx-128-14 .container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  }.render-jsx-128-14  {  background-color:#f8f8f8;  border-radius:0 0 0 0;  padding:.5rem 0 .3rem 0;  margin:0 0 0 0;  }.render-jsx-8-lEjW1s .button {  background-size:100% 100%;  background-color:transparent;  border-radius:0 0 0 0;  transform:translateX(-50%);  background-repeat:no-repeat;  top:78%;  background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/15/4n71d8xz86h3hr5letzmrjafdz9rzyjb.gif);  height:3rem;  padding:0 0 0 0;  margin:0 0 0 0;  bottom:0;  left:49%;  width:2.8rem;  position:absolute;  }.render-jsx-8-lEjW1s .img {  height:auto;  padding:1.5rem 0 0 0;  margin:0 auto;  width:80%;  }.render-jsx-8-lEjW1s .closeImg {  top:12% !important;  height:30px;  padding:0 0 0 0;  margin:0 0 0 0;  right:10% !important;  width:30px !important;  position:absolute;  }.render-jsx-8-lEjW1s  {  background-color:rgba(0,0,0,0.5);  border-radius:0 0 0 0;  padding:0 0 0 0;  z-index:8;  margin:0 0 0 0;  top:0;  left:0;  bottom:0;  position:fixed;  right:0;  text-align:center;  }.auto-element-304-u0ENiw>.div1 {  padding:0 0 .6rem 0;  margin:0 0 0 0;  background-size:100%;  min-height:100px;  border-radius:.1rem .1rem .1rem .1rem;  background-color:#142776;  transform:translate(-50%, -50%);  background-repeat:no-repeat;  top:50%;  left:50%;  width:6.5rem;  position:absolute;  min-width:100px;  }.auto-element-304-u0ENiw>.div1>.regcode6 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.3rem auto 0 auto;  width:6rem;  position:relative;  }.auto-element-304-u0ENiw>.div1>.regcode6>.code {  border:1px solid #A0A0A0;  border-radius:60px 60px 60px 60px;  background-color:white;  padding:0 0 0 .3rem;  margin:0 0 0 0;  width:100%;  font-size:.28rem;  height:.9rem;  }.auto-element-304-u0ENiw>.div1>.regcode6>.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%;  }.auto-element-304-u0ENiw>.div1>.p2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem 0 0 0;  color:white;  font-weight:bold;  font-size:.4rem;  text-align:center;  }.auto-element-304-u0ENiw>.div1>.regphone4 {  margin:.2rem auto 0 auto;  top:.3rem;  width:6rem;  }.auto-element-304-u0ENiw>.div1>.close8 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  top:.2rem;  width:.32rem;  position:absolute;  right:.2rem;  }.auto-element-304-u0ENiw>.div1>.regphone5 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  top:.3rem;  width:6rem;  }.auto-element-304-u0ENiw>.div1>.regphone5>.phone {  border:1px solid #A0A0A0;  border-radius:60px 60px 60px 60px;  background-color:white;  padding:0 .3rem 0 .3rem;  margin:0 0 0 0;  width:100%;  font-size:.28rem;  height:.9rem;  }.auto-element-304-u0ENiw>.div1>.button7 {  border-radius:60px 60px 60px 60px;  background-color:rgba(195, 13, 35, 1);  box-shadow:0px 4px 10px rgba(195,13,35,0.4);  padding:0 0 0 0;  margin:.3rem auto 0 auto;  color:white;  display:block;  width:90%;  font-size:.32rem;  text-align:center;  height:.9rem;  }.auto-element-304-u0ENiw>.div1>.img2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:-1rem 0 0 0;  }.auto-element-304-u0ENiw {  background-color:rgba(0,0,0,0.7);  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  top:0;  left:0;  bottom:0;  position:fixed;  right:0;  }.auto-element-343-D7b2kw>.div1 {  padding:.4rem 0 .4rem 0;  margin:0 0 0 0;  background-size:100%;  min-height:100px;  border-radius:2px 2px 2px 2px;  background-color:white;  transform:translate(-50%, -50%);  background-repeat:no-repeat;  top:50%;  left:50%;  width:6.5rem;  position:absolute;  min-width:100px;  }.auto-element-343-D7b2kw>.div1>.p1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  font-weight:bold;  font-size:.4rem;  text-align:center;  }.auto-element-343-D7b2kw>.div1>.regbtn4 {  border-radius:4px 4px 4px 4px;  background-color:#c30d23;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  color:white;  display:block;  width:90%;  font-size:.32rem;  height:.9rem;  }.auto-element-343-D7b2kw>.div1>.regphone2 {  margin:.2rem auto 0 auto;  top:.3rem;  width:6rem;  }.auto-element-343-D7b2kw>.div1>.regphone2>.phone {  border:1px solid #A0A0A0;  border-radius:4px 4px 4px 4px;  padding:0 .3rem 0 .3rem;  margin:0 0 0 0;  width:100%;  font-size:.28rem;  height:.9rem;  }.auto-element-343-D7b2kw>.div1>.regcode3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  width:6rem;  position:relative;  }.auto-element-343-D7b2kw>.div1>.regcode3>.code {  border:1px solid #A0A0A0;  border-radius:4px 4px 4px 4px;  padding:0 0 0 .3rem;  margin:0 0 0 0;  width:100%;  font-size:.28rem;  height:.9rem;  }.auto-element-343-D7b2kw>.div1>.regcode3>.regcodebtn {  background-color:#c30d23;  border-radius:4px 4px 4px 4px;  padding:0 .3rem 0 .3rem;  margin:0 0 0 0;  top:0;  color:white;  font-size:.28rem;  position:absolute;  right:0;  height:100%;  }.auto-element-343-D7b2kw>.div1>.close5 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  top:0.2rem;  width:.32rem;  position:absolute;  right:.2rem;  }.auto-element-343-D7b2kw {  background-color:rgba(0,0,0,0.7);  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  top:0;  left:0;  bottom:0;  position:fixed;  right:0;  }.auto-element-304-IGP4K8-PD3zrL>.div1 {  padding:0 0 .6rem 0;  margin:0 0 0 0;  background-size:100%;  min-height:100px;  border-radius:.1rem .1rem .1rem .1rem;  background-color:#142776;  transform:translate(-50%, -50%);  background-repeat:no-repeat;  top:50%;  left:50%;  width:6.5rem;  position:absolute;  min-width:100px;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.regcode6 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.3rem auto 0 auto;  width:6rem;  position:relative;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.regcode6>.code {  border:1px solid #A0A0A0;  border-radius:60px 60px 60px 60px;  background-color:white;  padding:0 0 0 .3rem;  margin:0 0 0 0;  width:100%;  font-size:.28rem;  height:.9rem;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.regcode6>.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%;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.p2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem 0 0 0;  color:white;  font-weight:bold;  font-size:.4rem;  text-align:center;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.regphone4 {  margin:.2rem auto 0 auto;  top:.3rem;  width:6rem;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.close8 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  top:.2rem;  width:.32rem;  position:absolute;  right:.2rem;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.regphone5 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  top:.3rem;  width:6rem;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.regphone5>.phone {  border:1px solid #A0A0A0;  border-radius:60px 60px 60px 60px;  background-color:white;  padding:0 .3rem 0 .3rem;  margin:0 0 0 0;  width:100%;  font-size:.28rem;  height:.9rem;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.button7 {  border-radius:60px 60px 60px 60px;  background-color:rgba(195, 13, 35, 1);  box-shadow:0px 4px 10px rgba(195,13,35,0.4);  padding:0 0 0 0;  margin:.3rem auto 0 auto;  color:white;  display:block;  width:90%;  font-size:.32rem;  text-align:center;  height:.9rem;  }.auto-element-304-IGP4K8-PD3zrL>.div1>.img2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:-1rem 0 0 0;  }.auto-element-304-IGP4K8-PD3zrL {  background-color:rgba(0,0,0,0.7);  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  top:0;  left:0;  bottom:0;  position:fixed;  right:0;  }
    }
  </style>
  
  <header class="top">
    <div class="header-wrap">
        <a class="header-logo" href="javascript:;"></a>
        <div class="header-text">省时 · 省钱 · 专业 · 贴心 · 有保障</div>
        <div class="header-tel"></div>
    </div>
</header>

  <style>
  /* PC端 */
  @media (min-width:769px) {

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

  }
  .render-jsx-126-0 .btnwrap .finger{
    animation:scale .3s infinite alternate
  }
  @keyframes scale {
    0%{
      transform:scale(.8);
    }
    100%{
      transform:scale(1);
    }
  }
</style>

<div class="render-jsx-126-0">
  <div class="btnwrap">
    <img class="finger" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/12/a3c6d3z572x83lpx53kazb5tzgzd2tkf.png" data-popup-id="304-IGP4K8" data-popup-hash-xcvrms="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-rpkvsb="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-c92jqb="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-popup-hash-tzjodi="%3Cbr%3E%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96" data-popup-hash-6g3osb="%E7%AB%8B%E5%8D%B3%E8%8E%B7%E5%8F%96" data-popup-hash-pasrou="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-cfbhhp="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/08/pf25bralpgwt8hmyzm9mrgmjr3e51dp3.png">
    <a><img class="btn" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/12/3jzh3tgtk94a25c1dknr79mkm26dxr84.png" data-popup-id="304-IGP4K8" data-popup-hash-xcvrms="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-rpkvsb="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-c92jqb="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-popup-hash-tzjodi="%3Cbr%3E%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%9653%E8%8A%82%E5%A4%96%E6%95%99%E8%AF%BE" data-popup-hash-6g3osb="%E7%AB%8B%E5%8D%B3%E8%8E%B7%E5%8F%96" data-popup-hash-pasrou="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-cfbhhp="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/08/pf25bralpgwt8hmyzm9mrgmjr3e51dp3.png"></a>
  </div>
</div>
<link rel="stylesheet" href="https://img.acadsoc.com.cn/css/liMarquee.css">
<script src="https://img.acadsoc.com.cn/js/jquery.liMarquee.js"></script>
<style>

  @keyframes show {
    0% {
      width: 0;
      height: 100%;
      top: 0;
      transform: translateY(-100%);
    }
    10% {
      width: auto;
      height: auto;
      top: 50%;
      transform: translateY(0);
    }
    100% {
      width: auto;
      height: auto;
      top: 50%;
      transform: translateY(0);
    }
  }

  .render-jsx-42-1 .p1 img,
  .render-jsx-42-1 .p2 img{
    margin: 0 4px;
    display:inline-block;
  }

  .render-jsx-42-1 .p1 input,
  .render-jsx-42-1 .p2 input{
    color:initial;
    padding:initial;
  }


  /* PC端 */
  @media (min-width:769px) {
    .render-jsx-42-1 {
      background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/12/c4w6mp25a34axykye3mepf4lb52m5pt3.jpg);
      background-position: center center;
       padding:0 0 0 0;  margin:0 0 0 0;  position:relative;  height:603px; 
    }
    .render-jsx-42-1>.container {
       border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 auto;  max-width:100%;  width:80%;  position:relative;  height:100%; 
    }

    .render-jsx-42-1>.container>.reg-con{
       border-radius:10px 10px 10px 10px;  background-color:white;  padding:20px 20px 30px 20px;  box-shadow:0 2px 10px rgba(0,0,0,.1);  transform:translateY(-50%);  top:50%;  display:inline-block;  width:360px;  right:10%;  position:absolute;  text-align:center; 
    }



    .render-jsx-42-1 .title{  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:10px 0 0 0;  color:#0e3180;  font-weight:600;  font-size:24px;  }
    .render-jsx-42-1 .p1{  border-radius:60px 60px 60px 60px;  padding:0 0 0 16px;  margin:20px 0 0 0;  font-weight:500;  font-size:16px;  line-height:2.8;  overflow:hidden; }
    .render-jsx-42-1 .p2{  border-radius:60px 60px 60px 60px;  padding:0 0 0 16px;  margin:20px 0 0 0;  font-weight:500;  font-size:16px;  line-height:2.8;  overflow:hidden; }
    .render-jsx-42-1 .btnGetSMS{  background-color:#C30D23;  padding:0 20px 0 10px;  color:white;  font-weight:500;  font-size:16px;  }
    .render-jsx-42-1 .registerSubmit{  background-color:#C30D23;  border-radius:60px 60px 60px 60px;  box-shadow:0px 7px 10px 0px rgba(195,13,35,0.26);  margin:20px 0 0 0;  color:white;  font-weight:500;  width:100%;  font-size:18px;  line-height:2.6;  }
    .render-jsx-42-1 .button-img{  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:20px 0 0 0;  width:100%;  height:auto;  }
    .render-jsx-42-1 .pc-paoma{  z-index:3;  overflow:hidden;  color:white;  left:19%;  white-space:nowrap;  bottom:30px;  display:flex;  width:auto;  font-size:14px;  position:absolute;  align-items:center;  height:auto; left:3.7rem; }

    .render-jsx-42-1 .pc-paoma span{
      margin-left:10px;
      width: auto;
      color: white;
      transform: translateY(-100%);
      display: inline-block;
      width: 0;
      height: 100%;
      overflow: hidden;
      white-space: nowrap;
    }

    .render-jsx-42-1 .pc-paoma span.show{
      animation: show 3s linear;
    }
    .render-jsx-42-1 input{ margin-left: 40px;}

  }
  /* 手机端 */
  @media (max-width:768px) {
    .render-jsx-42-1>.container {
       background-color:white;  border-radius:0 0 0 0;  padding:30px 0 30px 0;  margin:0 0 0 0;  text-align:center;  height:auto; 
    }

    .render-jsx-42-1 .mobile-paoma>img{
      width:100%;
    }

    .render-jsx-42-1>.container>.reg-con{
       border-radius:10px 10px 10px 10px;  background-color:white;  padding:0 20px 20px 20px;  margin:0 0 0 0;  display:inline-block;  width:94%;  position:relative;  text-align:center; 
    }

    .render-jsx-42-1 .title{  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:10px 0 0 0;  color:#0e3180;  font-weight:600;  font-size:20px;  }
    .render-jsx-42-1 .p1{  border-radius:60px 60px 60px 60px;  background-color:#eeeeee;  padding:0 0 0 16px;  margin:20px 0 0 0;  font-weight:500;  font-size:14px;  line-height:2.8;  overflow:hidden; }
    .render-jsx-42-1 .p2{  border-radius:60px 60px 60px 60px;  background-color:#eeeeee;  padding:0 0 0 16px;  margin:20px 0 0 0;  font-weight:500;  font-size:14px;  line-height:2.8;  overflow:hidden; }
    .render-jsx-42-1 .btnGetSMS{  background-color:#C30D23;  padding:0 20px 0 10px;  color:white;  font-weight:500;  font-size:14px;  }
    .render-jsx-42-1 .registerSubmit{  background-color:#C30D23;  border-radius:60px 60px 60px 60px;  box-shadow:0px 7px 10px 0px rgba(195,13,35,0.26);  margin:20px 0 0 0;  color:white;  font-weight:500;  width:100%;  font-size:16px;  line-height:2.6;  }
    .render-jsx-42-1 .button-img{  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:20px 0 0 0;  width:100%;  height:auto;  }

    .render-jsx-42-1 .mobile-paoma{width:100%;position:relative;overflow:hidden;}

    .render-jsx-42-1  .marquee{
      position: absolute;
      left: 0px;
      bottom: 0px;
      width: 100%;
      height: 40px;
      background-color: rgba(0, 0, 0, 0.5);
      font-size: 12px;
      color: white;
      line-height: 40px;
    }

    .render-jsx-42-1 .marquee span {
      padding:0 40px;
      position: relative;
    }

    .render-jsx-42-1 .marquee span::before{
      content: '';
      position: absolute;
      left: 20px;
      top: 50%;
      transform: translateY(-50%);
      width: 16px;
      height: 14px;
      background-image: url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/12/tgfw5xbrptbl3ymlamctdbh3pwxarwbl.png);
      background-size: 100% 100%;
    }

    .render-jsx-42-1 input{ margin-left: 25px;}


  }

  .render-jsx-42-1 .p2 { text-align:left; }
  .render-jsx-42-1 .p2 input{
    width:auto;
  }
  @media (max-width:1700px) {
    .render-jsx-42-1 .pc-paoma{ left:2.8rem; }

  }

  @media (max-width:1480px) {
    .render-jsx-42-1 .pc-paoma{ left:2rem; }

  }
  @media (max-width:1300px) {
    .render-jsx-42-1 .pc-paoma{ left:.4rem; }

  }
</style>



<div class="render-jsx-42-1 dynamic-bg">

  <div class="pc--show pc-paoma">
    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/12/r8k7d7c2zl5m7de9y3flmawcmt56b7a3.png" class="pclaba">
    <span class="show">已累计为6,314,500学生免费提供外教课</span><span>免费课程已走进全国400所学校</span>
  </div>

  <div class="mobile-paoma mobile--show">
    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/12/b6d2mce9x1d1dzm92j5le1d959cgrck7.png" class="mobileBanner">
    <div class="marquee">
      <span>已累计为6,314,500学生免费提供外教课</span><span>免费课程已走进全国400所学校</span>
    </div>
  </div>

  <div class="container">

    <div class="reg-con">

      <p class="title">
        免费领取<span style="color:#c30d23;font-size:1.4em;">53节</span>外教课
      </p>




      <div class="input__div p1">
        <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/09/30/zn6tr45dgtgl7zwn2th78kgec2dhdeb7.png">
        <input placeholder="请填写您的手机号码" type="tel" id="TxtPhone" maxlength="11" name="TxtPhone" class="TxtPhone phoneinput inputPhone">
      </div>

      <div class="input__div p2 duanxin" style="display:none;">
        <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/09/30/re7d1dtb2g61d1dbn2g2396enj28x2fb.png">
        <input placeholder="验证码" type="tel" maxlength="6" name="TxtCode" id="TxtCode" class="TxtCode codeinput inputCode">
        <button class="btnGetSMS codebtn" name="btnGetSMS" id="btnGetSMS">
          获取验证码
        </button>

      </div>

      <button class="registerSubmit" name="registerSubmit" id="registerSubmit">
        立即免费领取
      </button>

      <img src="https://cdnstatic.acadsoc.com.cn/landing-page/files/2021/04/30/w87plk62mjl8y949ht74dhnajzeje9zh.jpg" class="button-img img">

    </div>

  </div>
</div>
<script>
  $(function(){
    let num = 0;
    const maxNum = $('.render-jsx-42-1 .pc-paoma span').length;
    setInterval(() => {
      num + 1 >= maxNum ? (num = 0) : ++num;
      const el = $('.render-jsx-42-1 .pc-paoma span').eq(num);
      $('.render-jsx-42-1 .pc-paoma span').removeClass('show');
      el.addClass('show');
    }, 3000);

    $('.marquee').liMarquee({
      hoverstop: false,
      drag: false,
    });

    $('.render-jsx-42-1 .reg-con').click(function(){
      event.stopPropagation();
    })
    $('[name=registerSubmit]').click(function(){ 	
      $('[id^=register-popup]').hide()
    })


  })

</script>
<style>
  /* PC端 */
  @media (min-width:769px) {

  .render-jsx-14-2 {
   background-color:#fff;  border-radius:0 0 0 0;  text-align:center;  padding:.8rem 0 0 0;  margin:0 0 0 0; 
  }

  .render-jsx-14-2 >p{
   color:#0e3180;  font-weight:bold;  font-size:38px;  border-radius:0 0 0 0;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1;  width:auto; 
  }

  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-14-2 {
   background-color:#fff;  border-radius:0 0 0 0;  text-align:center;  padding:.3rem 0 .3rem 0;  margin:0 0 0 0; 
  }

  .render-jsx-14-2 >p{
   color:#0e3180;  font-weight:bold;  font-size:.4rem;  border-radius:0 0 0 0;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1;  width:auto; 
  }
  }
</style>


<div class="render-jsx-14-2">
  <p class="text">你还在为孩子的学习<span style="color:#c5131e">头疼不已吗?</span></p>
</div>
<style>
  /* PC端 */
  @media (min-width:769px) {
  .render-jsx-47-3 {
   background-color:#fff;  border-radius:0 0 0 0;  text-align:center;  padding:.5rem 0 0 0;  margin:0 0 0 0; 
  }

  .render-jsx-47-3 img {
  
  }
  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-47-3 {
  	 background-color:#fff;  border-radius:0 0 0 0;  text-align:center;  padding:0 10px 0 10px;  margin:0 0 0 0; 
  }

  .render-jsx-47-3 img {
     height:auto;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%; 
   }
  }
</style>


<div class="render-jsx-47-3">
  <div class="container">
    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/12/9l8xwrmbx4d8g6g8x1d81dh4ga3peam3.png" class="pc--show pc">

    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/12/52ftpdphm2x2z4w7nkegrxw3fd5rz28c.png" class="mobile--show mobile">
  </div>
</div>
<style>
  .render-jsx-125-4 .formgroup input::-webkit-input-placeholder{
    color:#fff;
  }
  .render-jsx-125-4 .formgroup input::-moz-input-placeholder{
    color:#fff;
  }
  .render-jsx-125-4 .formgroup input::-ms-input-placeholder{
    color:#fff;
  }
/* PC端 */
@media (min-width:769px) {

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

}
</style>

<div class="render-jsx-125-4">
  <div class="container">
    <p class="title">别慌,学英语选阿卡索,不后悔</p>
    <p class="desc"></p>
    <div class="content ">
      <div class="formgroup">
          <input type="tel" autocomplete="off" placeholder="填写您的手机号码" maxlength="11" name="TxtPhone" class="phone">
        </div>
        <div class="formgroup duanxin" style="display:none;">
          <input type="tel" autocomplete="off" placeholder="请输入验证码" maxlength="6" name="TxtCode" class="code">
          <button name="btnGetSMS" class="codebtn btnGetSMS">
            获取验证码
          </button>
        </div>
        <button name="registerSubmit" class="submit">				申请免费试学
        </button>
    </div>
  </div>
</div>
<style>
  /* PC端 */
  @media (min-width:769px) {

  .render-jsx-14-5 {
   background-color:#eff6ff;  border-radius:0 0 0 0;  text-align:center;  padding:.8rem 0 0 0;  margin:0 0 0 0; 
  }

  .render-jsx-14-5 >p{
   color:#0e3180;  font-weight:bold;  font-size:45px;  border-radius:0 0 0 0;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1;  width:auto; 
  }

  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-14-5 {
   background-color:#eff6ff;  border-radius:0 0 0 0;  text-align:center;  padding:.5rem 0 0 0;  margin:0 0 0 0; 
  }

  .render-jsx-14-5 >p{
   color:#0e3180;  font-weight:bold;  font-size:.4rem;  border-radius:0 0 0 0;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1;  width:auto; 
  }
  }
</style>


<div class="render-jsx-14-5">
  <p class="text"><span style="color:#c5131e">外教一对一</span> ,让孩子变身英语达人</p>
</div>
<style>
  /* PC端 */
  @media (min-width:769px) {
  .render-jsx-47-6 {
   background-color:#eff6ff;  text-align:center;  padding:.5rem 0 0 0;  margin:0 0 0 0; 
  }

  .render-jsx-47-6 img {
  
  }
  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-47-6 {
  	 background-color:#eff6ff;  text-align:center;  padding:.5rem 10px .4rem 10px;  margin:0 0 0 0; 
  }

  .render-jsx-47-6 img {
     height:auto;  padding:0 0 0 0;  margin:0 0 0 0;  width:70%; 
   }
  }
</style>


<div class="render-jsx-47-6">
  <div class="container">
    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/25/r1dgltl4kgh5eh642t5479cwktghdhtj.png" class="pc--show pc">

    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/26/gjhaptrgz5rx62zpcb68jcjyl5eab4x5.png" class="mobile--show mobile">
  </div>
</div>
<style>
  /* PC端 */
  @media (min-width:769px) {
  .render-jsx-47-7 {
   text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:none; 
  }

  .render-jsx-47-7 img {
  
  }
  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-47-7 {
  	 background-color:#fff;  text-align:center;  padding:0 10px .5rem 10px;  margin:-1px 0 0 0; 
  }

  .render-jsx-47-7 img {
     height:auto;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%; 
   }
  }
</style>


<div class="render-jsx-47-7">
  <div class="container">
    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/26/3l9e43f6bfny5ep1dgz1dcz63cm1dmjm.png" class="pc--show pc">

    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/26/6m3lxnlxrcmzmph7ad521d5a7naclp78.png" class="mobile--show mobile">
  </div>
</div>
<style>
  /* PC端 */
  @media (min-width:769px) {

  .render-jsx-14-8 {
   background-color:#172d79;  border-radius:0 0 0 0;  text-align:center;  padding:.8rem 0 0 0;  margin:0 0 0 0; 
  }

  .render-jsx-14-8 >p{
   color:#fff;  font-weight:bold;  font-size:45px;  border-radius:0 0 0 0;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1;  width:auto; 
  }

  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-14-8 {
   background-color:#172d79;  border-radius:0 0 0 0;  text-align:center;  padding:.5rem 0 0 0;  margin:0 0 0 0; 
  }

  .render-jsx-14-8 >p{
   color:#fff;  font-size:.4rem;  border-radius:0 0 0 0;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1.4;  width:88%; 
  }
  }
</style>


<div class="render-jsx-14-8">
  <p class="text">优质外教严格选拔,懂学生的老师才是好老师</p>
</div>
<style>
  /* PC端 */
  @media (min-width:769px) {

  .render-jsx-14-9 {
   background-color:#172d79;  text-align:center;  padding:.26rem 0 .35rem 0;  margin:0 0 0 0; 
  }

  .render-jsx-14-9 >p{
   color:#fff;  font-size:.23rem;  border-radius:0 0 0 0;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1.5;  width:60%; 
  }

  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-14-9 {
   background-color:#172d79;  text-align:center;  padding:.24rem 0 .3rem 0;  margin:-1px 0 0 0; 
  }

  .render-jsx-14-9 >p{
   color:#fff;  font-size:.24rem;  border-radius:0 0 0 0;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1.5;  width:92%; 
  }
  }
</style>


<div class="render-jsx-14-9">
  <p class="text">仅3%的外教录取率,均持有国际教学资格证,执教经验丰富,深谙少儿心理,

擅长趣味性输出,根据学员的需求进行精准匹配,让教学更有效,更实用。</p>
</div>
<style>

  /* pc */
  @media (min-width: 769px) {
  .render-jsx-55-10 {  background-color:#fff;  top:30px;  bottom:50px;    }
  .render-jsx-55-10 .container {  font-size:0;  background-color:#172d79;  padding:0 0 .4rem 0;  margin:0 auto;  display:flex;  width:100%;  justify-content:center;  align-items:center;    }
  
  
.render-jsx-55-10 .item0 {  background-color:#B81C25;  border-radius:60px 60px 60px 60px;  padding:10px 40px 10px 40px;  margin:0 0 0 0;  color:#fff;  font-weight:bold;  font-size:24px;  }
.render-jsx-55-10 .item1 {  color:#fff;  font-weight:bold;  font-size:24px;  background-color:#B81C25;  border-radius:60px;  padding:10px 40px;  margin:0 60px;  }
.render-jsx-55-10 .item2 {  color:#fff;  font-weight:bold;  font-size:24px;  background-color:#B81C25;  border-radius:60px;  padding:10px 40px;  margin:0 0 0 0;  }
  }

</style>

<div class="render-jsx-55-10">
  <div class="container con">
    <div class="item0">均持证</div><div class="item1">5轮考核</div><div class="item2">3%录用率</div>
  </div>
</div>
<style>
  
  
  .render-swiper-129-11 .swiper-container {
  	padding-bottom:50px;
  }
  
  /* pc */
  @media (min-width: 769px) {
  .render-swiper-129-11 {  background-color:#172d79;  padding:0 0 30px;  margin:0 0 0 0;  }
  }

  /* mobile */
  @media (max-width: 768px) {
    .render-swiper-129-11 {  background-color:#172d79;  padding:0 0 .3rem;  margin:-1px 0 0 0;  }
		.render-swiper-129-11 .container{ padding-left:0;padding-right:0; }
    .render-swiper-129-11 .swiper-slide { width: 70%; }
  }
  
  .render-swiper-129-11 .swiper-pagination-bullet-active{
  	background-color:#C30D23;
    width:16px;
    border-radius:5px;
    transition:.2s;
  }

</style>
<div class="render-swiper-129-11">
  <div class="container">
    <div class="swiper-container scale-swiper">
      <div class="swiper-wrapper">
        
<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/25/gc3f3h2fby1d2a3brmdaglm6nxhczjb4.png">
</div>
<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/12/jzt9klgt1d8tarhpg9k278m1dap39gka.png">
</div>
<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/12/m3yd9n2gmp4ltxf8cb982frlt9ne39tf.png">
</div>
<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/25/r9hdzmtbxagpf5zx1dmpyzm8cfdnr68b.png">
</div>
<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/25/8ajlc6ye1dhcj36txj6tf6ge3dz6hwya.png">
</div>
<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/25/ang36p3r4pd46ct1dayz3lp2y4jygf65.png">
</div>
      </div>
      <div class="swiper-pagination"></div>
    </div>
  </div>
</div>
<script>
  $(function(){
    new Swiper('.render-swiper-129-11 .swiper-container',{
        initialSlide: 1,
        autoplay:  {
    delay: 4000,
    disableOnInteraction: false,
    },
        centeredSlides: true,
  			loop:true,
        pagination: {el:'.swiper-pagination'}, 
        slidesPerView: HtmlWidth <= 768 ? 'auto' : 3
    });
  })
</script>
<style>
/* PC端 */
@media (min-width:769px) {
  .render-jsx-7-12 {
   background-color:#172d79;  padding:0 0 .8rem 0;  margin:0 0 0 0; 
  }
  .render-jsx-7-12 >button {
   color:white;  font-size:.28rem;  background-color:rgb(195, 13, 35);  border-radius:60px 60px 60px 60px;  height:.7rem;  text-align:center;  padding:0 0 0 0;  margin:0 auto 0 auto;  display:block;  width:5.5rem; 
  }
}
/* 手机端 */
@media (max-width:768px) {
  .render-jsx-7-12 {
   background-color:#172d79;  padding:0 0 .5rem 0;  margin:-1px 0 0 0; 
  }
  .render-jsx-7-12 >button {
   color:white;  font-size:.28rem;  background-color:rgb(195, 13, 35);  border-radius:60px 60px 60px 60px;  height:.7rem;  text-align:center;  padding:0 0 0 0;  margin:0 auto 0 auto;  display:block;  width:5.5rem; 
  }
}
</style>

<div class="render-jsx-7-12">
  <button data-popup-id="343" data-popup-hash-ozfmse="%E5%8C%B9%E9%85%8D%E5%90%88%E9%80%82%E7%9A%84%E5%A4%96%E6%95%99" data-popup-hash-evv5q6="%E6%9F%A5%E7%9C%8B%E5%A4%96%E6%95%99" data-popup-hash-7irpjc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-lmvckf="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-rgtyey="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-9clavw="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/20/j4kwal5p35p9zfw4ntfhwk7d5zndf4mn.png">
    匹配合适外教
  </button>
</div>
<style>
  /* PC端 */
  @media (min-width:769px) {

  .render-jsx-14-13 {
   background-color:#eff6ff;  text-align:center;  padding:.8rem 0 0 0;  margin:0 0 0 0; 
  }

  .render-jsx-14-13 >p{
   color:#172d79;  font-weight:bold;  font-size:45px;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1;  width:auto; 
  }

  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-14-13 {
   background-color:#f8f8f8;  text-align:center;  padding:.5rem 0 0 0;  margin:0 0 0 0; 
  }

  .render-jsx-14-13 >p{
   color:#172d79;  font-weight:bold;  font-size:.4rem;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1;  width:auto; 
  }
  }
</style>


<div class="render-jsx-14-13">
  <p class="text">为什么<span style="color:#c5131e">众多聪明家长都选择阿卡索?</span></p>
</div>
<style>
  .render-jsx-128-14 ul li:hover .mask{
    opacity:1 !important;
    transition:0.3s;
  }
  /* PC端 */
  @media (min-width:769px) {
    
  }
  /* 手机端 */
  @media (max-width:320px) {
    .render-jsx-128-14 .mask{
      font-size:.22rem;
    }
  }
</style>

<div class="render-jsx-128-14">
  <div class="container">
    <ul class="list">
      <li class="item1 item">
        <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/26/4jptr369pe9ekg41dzfxbehpcxez5rly.png">
        <p class="text">外教均持证</p>
          <div class="mask">所有外教均持有TESOL等
国际教学资格证书,口音地道,
经验丰富。</div>
      </li>
      <li class="item2 item">
        <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/26/3d4jgtmlzk1dc5jk34p5hw7j3ne2z5pk.png">
        <p class="text">国际原版教材</p>
          <div class="mask">参照欧洲共同语言框架体系,引进欧美原版教材,并研发成适合中国孩子的教材。</div>
      </li>
      <li class="item3 item">
        <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/26/bltb4wtnel2m9dgtw93p8emk9drbhkjr.png">
        <p class="text">随时灵活学习</p>
          <div class="mask">利用pad、 手机、电脑可以随时随地在线上课,每天25分钟,有效利用碎片化时间学习。</div>
      </li>
      <li class="item4 item">
        <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/26/8x9ng1d7xdytea3nlf7h61d2tr49mj8h.png">
        <p class="text">每节课13.8元起</p>
          <div class="mask">每节课低至13.8元,平民化的价格让每一个孩子都能享受到在线少儿英语课程。</div>
      </li>
      <li class="item5 item">
        <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/26/y3k6ncxk1dt61dfxw1dmcz1dgtb1drh7.png">
        <p class="text">课后反馈和录播复习</p>
          <div class="mask">专业的课后反馈服务和录播复习,有效监控孩子学习情况,及时查漏补缺巩固学习效果。</div>
      </li>
      <li class="item6 item">
        <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/26/g9wde46a5at86zmg6nr5la1da9wdchfd.png">
        <p class="text">三对一贴心服务</p>
          <div class="mask">定制专属学习计划、严选外教1对1教学、客服全程跟进学习效果,多方位为孩子保驾护航。</div>
      </li>
    </ul>
  </div>
</div>
<style>
  /* PC端 */
  @media (min-width:769px) {

  .render-jsx-14-15 {
   background-color:white;  border-radius:0 0 0 0;  text-align:center;  padding:.8rem 0 .5rem 0;  margin:0 0 0 0; 
  }

  .render-jsx-14-15 >p{
   color:#0e3180;  font-weight:bold;  font-size:45px;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1;  width:auto; 
  }

  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-14-15 {
   background-color:white;  border-radius:0 0 0 0;  text-align:center;  padding:.5rem 0 .5rem 0;  margin:0 0 0 0; 
  }

  .render-jsx-14-15 >p{
   color:#0e3180;  font-weight:bold;  font-size:.4rem;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1;  width:auto; 
  }
  }
</style>


<div class="render-jsx-14-15">
  <p class="text"><span style="color:#c5131e">企业</span>荣誉</p>
</div>
<style>
  
  /* PC端 */
  @media (min-width:769px) {
    .render-swiper-64-16 {  background-color:white;  padding:0 0 .5rem 0;  margin:0 0 0 0;  position:relative; }
    .render-swiper-64-16 .container {  }
    .render-swiper-64-16 .swiper-slide {  border-radius:10px;  background-color:#122b88;  text-align:center;  padding:15px 15px 30px 15px;  margin:0 0 0 0;   }
    .render-swiper-64-16 .img {  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
    .render-swiper-64-16 .text {  padding:10px 0 0 0;  margin:0 0 0 0;  color:white;  font-weight:500;  display:flex;  font-size:18px;  line-height:1.4;  justify-content:center;  align-items:center;  height:60px;  }
  }
  
  /* 手机端 */
  @media (max-width:768px) {
    .render-swiper-64-16 {  background-color:white;  padding:0 0 .5rem 0;  margin:0 0 0 0;  width:100%;   position:relative;}
    .render-swiper-64-16 .container {   }
    .render-swiper-64-16 .swiper-slide {  border-radius:10px;  background-color:#122b88;  padding:15px 15px 10px 15px;  margin:0 0 0 0;  text-align:center;  width:60%; }
    .render-swiper-64-16 .img {  }
    .render-swiper-64-16 .text {  color:white;  font-weight:500;  font-size:16px;  height:54px;  padding:10px 0 0 0;  margin:0 0 0 0;  display:flex;  line-height:1.4;  justify-content:center;  align-items:center;  }
  }
  .render-swiper-64-16 .swiper-pagination-bullet {
  	margin: 0 .12rem;
    width: .16rem;
    height: .16rem;
	}
  
  .render-swiper-64-16 .swiper-slide-active,
  .render-swiper-64-16 .swiper-pagination-bullet-active{
  	background-color:rgba(195, 13, 35, 1) !important;
  }
</style>

<div class="render-swiper-64-16">
  <div class="container">
    <div class="swiper-container scale-swiper">
      <div class="swiper-wrapper">
					
<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/c63p5nyz9kn9w1d4h84ceng7k7ftxwa8.png" class="img">
<p class="text">2017中国品牌影响力<br>外语教育机构</p>
</div>


<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/7lexfjn9ef9m3xc9n1d1dltaknfkxzcj.png" class="img">
<p class="text">雅思考试合作伙伴项目<br>铜级合作伙伴</p>
</div>


<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/wab878da7nzgndbtmdb1dfh91dn395jz.png" class="img">
<p class="text">2018年度影响力<br>外语教育品牌</p>
</div>


<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/473rh43ad9lewa634fcg84nlr2r4j1d8.png" class="img">
<p class="text">2016中国行业领先教育集团</p>
</div>


<div class="swiper-slide">
<img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/trbytkmadzkgfyhj6cm29k7kl1dxhm6a.png" class="img">
<p class="text">国家级高新技术企业</p>
</div>


      </div>
    </div>
  </div>
  <div class="swiper-pagination" style="z-index:2;bottom: 0;width:100%;"></div>
</div>

<script>
  $(function(){
  new Swiper('.render-swiper-64-16 .swiper-container',{
  	loop:true,
  slidesPerView: HtmlWidth <= 768 ? 'auto' : 3,
  centeredSlides: true,
  pagination: {
    el: '.render-swiper-64-16 .swiper-pagination',
  },
  autoplay: {
    delay: 6000,
    disableOnInteraction: false,
    }
  })
 })
  
</script>
<style>
  /* PC端 */
  @media (min-width:769px) {

  .render-jsx-14-17 {
   background-color:white;  text-align:center;  padding:.5rem 0 .4rem 0;  margin:0 0 0 0; 
  }

  .render-jsx-14-17 >p{
   color:#444444;  font-size:22px;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1;  width:auto; 
  }

  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-14-17 {
   background-color:white;  text-align:center;  padding:.6rem 0 .3rem 0;  margin:0 0 0 0; 
  }

  .render-jsx-14-17 >p{
   color:#666666;  font-size:.28rem;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:inline-block;  line-height:1;  width:auto; 
  }
  }
</style>


<div class="render-jsx-14-17">
  <p class="text">*以上数据均为内部统计数据</p>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
  .render-jsx-90-18 {  background-color:rgba(0,0,0,0.7);  height:.7rem;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
  .render-jsx-90-18 .container {  border-radius:0 0 0 0;  height:100%;  padding:0 0 0 1.8rem;  margin:0 auto 0 auto;  display:flex;  position:relative;  align-items:center;  }
  .render-jsx-90-18 .img {  padding:0 0 0 0;  margin:0 0 0 0;  bottom:0;  left:0;  position:absolute;  }
  .render-jsx-90-18 .text {  color:#fff;  font-size:.3rem;  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
  .render-jsx-90-18 .btn {  background-size:100% 100%;  color:white;  font-size:20px;  border-radius:6px 6px 6px 6px;  background-color:#cd0d18;  padding:.1rem 0 .1rem 0;  margin:0 0 0 auto;  letter-spacing:2px;  width:2.4rem;  }


}
/* 手机端 */
@media (max-width:768px) {
  .render-jsx-90-18 {  background-color:rgba(0,0,0,0.7);  }
  .fixed{
  	max-width:750px;
    width:100%;
  left: 50%;
    transform: translateX(-50%);
  }
  .render-jsx-90-18 .container {  border-radius:0 0 0 0;  height:1.1rem;  padding:0 0 0 2rem;  margin:0 auto 0 auto;  display:flex;  width:100%;  position:relative;  align-items:center;  }
  .render-jsx-90-18 .img {  padding:0 0 0 0;  margin:0 0 0 0;  bottom:0;  left:.1rem;  width:1.8rem;  position:absolute;  }
  .render-jsx-90-18 .text {  color:#fff;  font-size:.35rem;  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
  .render-jsx-90-18 .btn {  background-size:100% 100%;  color:white;  font-size:.32rem;  border-radius:0 0 0 0;  background-color:#c30d23;  height:100%;  padding:.1rem .36rem .1rem .36rem;  margin:0 0 0 auto;  letter-spacing:2px;  width:auto;  }
}
  @keyframes scale {
    0%{
  		transform:scale(1);
  	}
  	100%{
  		transform:scale(1.2);
  	}
  
  }
  
</style>
<div class="render-jsx-90-18-top"></div>

<div class="render-jsx-90-18">
  <div class="container">
    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/12/py7e7dgpcxdtw8mpkan5grczfwd6a5el.png" class="img">
    <p class="text"><span style="color:#ffdb34;font-weight:bold;">53节</span>精品外教课</p>
    <button data-popup-id="304" data-popup-hash-xcvrms="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-rpkvsb="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-c92jqb="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-popup-hash-tzjodi="%3Cbr%3E%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96" data-popup-hash-6g3osb="%E7%AB%8B%E5%8D%B3%E8%8E%B7%E5%8F%96" data-popup-hash-pasrou="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-cfbhhp="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/08/pf25bralpgwt8hmyzm9mrgmjr3e51dp3.png" class="btn">免费试学</button>
  </div>
</div>



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

  function bottomShow() {
    // 定位元素
    let fixedBottom = $('.render-jsx-90-18');
    // 头部元素
    let headerFixedElement = $('body>div').eq(0);
    // 底部元素
    let removeFixedElement = $('.render-jsx-90-18-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>
  .render-jsx-8-lEjW1s{
    text-align:center;
  }
  .render-jsx-8-lEjW1s>.content{
    position:relative;
  }
  .render-jsx-8-lEjW1s > .close_img {
      cursor: pointer;
    }

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

<div class="render-jsx-8-lEjW1s" id="loading-popup-8" style="">
  <div class="content">
    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/25/3cm8zfkcwrx1dfk1djx9ft1db7x6y71d.png" class="img content_img">
    <button data-popup-id="304" data-popup-hash-xcvrms="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-rpkvsb="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-c92jqb="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-popup-hash-tzjodi="%3Cbr%3E%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96" data-popup-hash-6g3osb="%E7%AB%8B%E5%8D%B3%E8%8E%B7%E5%8F%96" data-popup-hash-pasrou="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-cfbhhp="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/08/pf25bralpgwt8hmyzm9mrgmjr3e51dp3.png" class="button close-popup">
    </button>
  </div>
  <img src="https://img.acadsoc.com.cn/web/lps/lxhd/iShow/img/close.png" class="closeImg close_img">
</div>

<script>
  $(function(){
    $('.render-jsx-8-lEjW1s .closeImg').click(function(){
      $('.render-jsx-8-lEjW1s').hide();
    })
  })
</script><div id="register-popup-304" style="display: none;" class="auto-element-304-u0ENiw">
    <div class="div1">
      
<img class="img2" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/08/pf25bralpgwt8hmyzm9mrgmjr3e51dp3.png" data-modal-hash="cfbhhp">

<p class="p2" data-modal-hash="tzjodi"><br>免费领取</p>

    <div class="regphone4">
      
    </div>
    
    <div class="regphone5">
      
  <input name="TxtPhone" class="phone" placeholder="请输入手机号" type="tel" data-modal-hash="xcvrms">
  
    </div>
    
    <div class="regcode6">
      
  <input name="TxtCode" class="code" placeholder="请输入验证码" type="tel" data-modal-hash="pasrou">
  
<button name="btnGetSMS" class="regcodebtn" data-modal-hash="rpkvsb">获取验证码</button>

    </div>
    
<button class="button7" name="registerSubmit" data-modal-hash="6g3osb">立即获取</button>

<img class="close-popup close8" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-modal-hash="c92jqb">

    </div>
    </div><div id="register-popup-343" style="display: none;" class="auto-element-343-D7b2kw">
    <div class="div1">
      
<p class="p1" data-modal-hash="ozfmse">匹配合适的外教</p>

    <div class="regphone2">
      
  <input name="TxtPhone" class="phone" placeholder="请输入手机号" type="tel" data-modal-hash="7irpjc">
  
    </div>
    
    <div class="regcode3">
      
  <input name="TxtCode" class="code" placeholder="请输入验证码" type="tel" data-modal-hash="lmvckf">
  
<button name="btnGetSMS" class="regcodebtn" data-modal-hash="rgtyey">获取验证码</button>

    </div>
    
<button name="registerSubmit" class="regbtn4" data-modal-hash="evv5q6">查看外教</button>

<img class="close-popup close5" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/20/j4kwal5p35p9zfw4ntfhwk7d5zndf4mn.png" data-modal-hash="9clavw">

    </div>
    </div><div id="register-popup-304-IGP4K8" style="display: none;" class="auto-element-304-IGP4K8-PD3zrL">
    <div class="div1">
      
<img class="img2" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/08/pf25bralpgwt8hmyzm9mrgmjr3e51dp3.png" data-modal-hash="cfbhhp">

<p class="p2" data-modal-hash="tzjodi"><br>免费领取53节外教课</p>

    <div class="regphone4">
      
    </div>
    
    <div class="regphone5">
      
  <input name="TxtPhone" class="phone" placeholder="请输入手机号" type="tel" data-modal-hash="xcvrms">
  
    </div>
    
    <div class="regcode6">
      
  <input name="TxtCode" class="code" placeholder="请输入验证码" type="tel" data-modal-hash="pasrou">
  
<button name="btnGetSMS" class="regcodebtn" data-modal-hash="rpkvsb">获取验证码</button>

    </div>
    
<button class="button7" name="registerSubmit" data-modal-hash="6g3osb">立即获取</button>

<img class="close-popup close8" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-modal-hash="c92jqb">

    </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) {
      var _options = { };
      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]))){
            options[key] = Number(options[key]);
          }
        }
      }
      return new _swiper(selector, {
        ...options,
        ..._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);
          }
        })
      })
    }

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

    // 替换时间文字
    document.querySelectorAll('.time').forEach(function(v){
      v.innerHTML =  getToday(v.innerHTML);
    })
    // dynamic data
    const imgIds = [];
    const bgImgIds = [];
    const textIds = [];

    $(function () {
      // 复制去微信号
      // data-copy-wx 微信 data-wx-alter 复制后提示文案
      $('[data-copy-wx]').click(function(){
        copyWx($(this))
      });
      // .wx text
      // 复制微信号并跳转微信 data-to-wx 微信 data-wx-alter 复制后提示文案
      $('[data-to-wx]').click(function(){
        copyWx($(this))
        toHref('weixin://');
      });

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

        // 防止页面后退 监听
        history.pushState({ title: 'title', url: '#back' }, 'title', '#back');
        window.addEventListener('popstate', holdBack);
      }

      // 关闭弹窗
      $('.close-popup').click(function(){
        window.payConfig = {
          sort: '',
          value: ''
        };
        $(this).parents('[id*=-popup]').fadeOut();
      })

      // 关闭注册弹窗
      $('.register-close').click(function(){
        $(this).parents('[id*=register-popup]').fadeOut();
      })

      // 打开弹窗
      $('[data-popup-id]').click(function(){
        window.payConfig.sort = this.getAttribute('data-pay-sort');
        window.payConfig.value = this.getAttribute('data-pay-value');
        openModal(this);
      })
      

      // 单链接跳转
      $('[data-href]').click(function(){
        location.href = $(this).attr('data-href');
      })

      // 分端跳转
      $('[data-pm-href]').click(function(){
        var parameter = window.location.search;
        var sUserAgent = navigator.userAgent.toLowerCase();
        var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
        var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
        var bIsMidp = sUserAgent.match(/midp/i) == "midp";
        var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
        var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
        var bIsAndroid = sUserAgent.match(/android/i) == "android";
        var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
        var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
        if (bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) {
          toHref($(this).attr('data-mobile-href'));
        } else if (bIsIpad) {
          toHref($(this).attr('data-ipad-href'));
        } else {
          toHref($(this).attr('data-pc-href'));
        }
      })

      // 跳转注册
      $('[data-form]').click(function(){
        $('body,html').stop().animate({ 'scrollTop': 0 },
          {
            duration: 1000,
            easing: "swing"
          });
      })

      $('[data-img-id]').each(function (i, item) {
        const id = $(item).attr('data-img-id');
        if (imgIds.indexOf(id) === -1) {
          imgIds.push(id);
        }
      })

      $('[data-text-id]').each(function (i, item) {
        const id = $(item).attr('data-text-id');
        if (textIds.indexOf(id) === -1) {
          textIds.push(id);
        }
      })

      $('[data-bg-img-id]').each(function (i, item) {
        const id = $(item).attr('data-bg-img-id');
        if (bgImgIds.indexOf(id) === -1) {
          bgImgIds.push(id);
        }
      })

      $.ajax({
        url: 'https://dmpaio.acadsoc.com.cn/api-landingpage/PageResources/selectAllResources',
        method: "POST",
        dataType: "json",
        headers: { 'Content-Type': 'application/json' },
        data: JSON.stringify({ bgImgIds, imgIds, textIds }),
        success: function (res) {
          const _bgImgIds = res.data.bgImgIds;
          const _imgIds = res.data.imgIds;
          const _textIds = res.data.textIds;
          // 背景图
          _bgImgIds.forEach(function (v) {
            const ele = $(`[data-bg-img-id=${v.id}]`);
            // 手机banner
            if (ele.hasClass('mobile-banner')) {
              ele.attr('src', v.url);
            } else {
              ele.css('background-image', `url(${v.url})`);
            }
          });
          _imgIds.forEach(function (v) {
            const ele = $(`[data-img-id=${v.id}]`);
            if(ele[0].nodeName === 'IMG'){
              ele.attr('src', v.url);
            }else{
              ele.css('background-image', `url(${v.url})`);
            }
          });

          _textIds.forEach(function (v) {
            const ele = $(`[data-text-id=${v.id}]`);
            ele.html(v.name);
          });
        }
      })

      $('[data-paytype]').click(function () {
        window.paytype = this.getAttribute('data-paytype');
      });


      // 注册
      register.init({
        successTxt: false, // 值为false时不执行
        successLocation: false, // 值为false时不执行
        successFn: function () {
          ABRecord.registNotice();
          $(".loading").hide();

          // customize register code
          _nfe.report({convert_id : '25706' ,convert_method : '1' ,convert_type : '4'}) //表单提交

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

    })


    

  </script>
  <!-- 53客服 -->
  
  <!-- customize footer code -->
  


</body></html>