cr30.html 55.6 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
<!doctype html><html><head>
  <meta charset="UTF-8">
  <meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
  <meta name="viewport" content="width=device-width,initial-scale=1,minimum-scale=1,maximum-scale=1,user-scalable=no">
  <title>阿卡索外教网_在线英语培训_外教口语一对一培训</title>
  <meta name="description" content="阿卡索外教网提供在线英语口语培训,全程外教一对一教学模式,是专业的在线英语培训网站,阿卡索外教老师均毕业于国际知名的一流学府,拥有标准的英语口语以及最纯正的教学知识。您值得拥有">
  <meta name="keywords" content="在线英语口语培训,在线英语培训,外教一对一,英语外教一对一,英语网络教学">
  <!-- 分享配置 -->
  <meta itemprop="name" content="阿卡索外教网_在线英语培训_外教口语一对一培训">
  <meta itemprop="image" content="https://img.acadsoc.com.cn/share/share-default.png">
  <meta name="description" itemprop="description" content="阿卡索外教网提供在线英语口语培训,全程外教一对一教学模式,是专业的在线英语培训网站,阿卡索外教老师均毕业于国际知名的一流学府,拥有标准的英语口语以及最纯正的教学知识。您值得拥有">
  <!--<link rel="stylesheet" href="https://img.acadsoc.com.cn/css/bootstrap.min.css">-->
  <link href="https://img.acadsoc.com.cn/js/editor/swiper.min.css" rel="stylesheet" type="text/css">
  <link rel="stylesheet" href="https://img.acadsoc.com.cn/web/css/header-footer.css">
  <link rel="stylesheet" href="https://img.acadsoc.com.cn/web/css/editor.init.css">
  <link rel="icon" href="https://www.acadsoc.com.cn/favicon.ico" type="image/x-icon">

  <script type="text/javascript" src="https://img.acadsoc.com.cn/web/lps/recommend/js/jquery.min.js"></script>
  <script type="text/javascript">
    var html = document.documentElement;
    var htmlClientWidth = 0;
    var rejustRootSize = function () {
      var oh = 750;
      html.getBoundingClientRect().width > oh ? htmlClientWidth = oh : htmlClientWidth = html.getBoundingClientRect().width;
      html.style.fontSize = htmlClientWidth / (oh / 100) + 'px';
    };
    rejustRootSize();
    window.onresize = rejustRootSize;
  </script>
  <script src="https://img.acadsoc.com.cn/web/js/bootstrap.min.js"></script>
  <script src="https://img.acadsoc.com.cn/web/lps/activity/js/lp.js"></script>
  
  <!--IpRecord-->
  <script type="text/javascript" src="https://www.acadsoc.com.cn/ajax/Web.UI.Fun.IpRecord.aspx"></script>
  <script src="https://img.acadsoc.com.cn/web/js/IdentificationSystem.js"></script>
  <script src="https://img.acadsoc.com.cn/web/lps/activity/js/Record.js"></script>

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

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

  <script>
    window.HtmlWidth = 0;
      $(function(){
        window.HtmlWidth = document.body.clientWidth || document.documentElement.clientWidth;
        window.pageEquipment = HtmlWidth > 768 ? 'pc' : 'mobile';
      })

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

<style>
body{
  background-color:white;
  
}
</style>
<!-- customize code header -->
<script src="https://img.acadsoc.com.cn/web/lps/activity/js/BaiDuStatistics.js"></script>
<script src="https://www.acadsoc.com.cn/OCPC/js/ocpc.js"></script>

</head>


<!-- page: 781 -->
<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-swiper-311-0 .container { margin:0 auto 0 auto ;position:relative;height:100%; }.render-swiper-311-0 .com { background-color:#fff;border-radius:.1rem .1rem .1rem .1rem ;padding:.3rem .2rem .3rem .2rem ;z-index:3;transform:translateY(-50%);top:50%;width:3.5rem;position:absolute;right:0; }.render-swiper-311-0 .gift { margin:.2rem auto 0 auto ;display:block;width:100%;position:relative; }.render-swiper-311-0 .giftimg { cursor:pointer;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.render-swiper-311-0 .datetext { color:#84787a;left:.16rem;bottom:.16rem;font-size:12px;line-height:1;position:absolute; }.render-swiper-311-0 .title { text-align:center; }.render-swiper-311-0 .text1 { color:#e5402d;font-size:.32rem;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 0 0 ;line-height:1; }.render-swiper-311-0 .text2 { color:#000;font-weight:bold;font-size:.26rem;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:.12rem 0 0 0 ;line-height:1;border-style:none none none none; }.render-swiper-311-0 .swiper { z-index:2;width:100%;position:absolute;height:100%; }.render-swiper-311-0 .slide1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;background-size:cover;background-attachment:scroll;background-repeat:no-repeat;background-position:center center;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/19/x51dafhbxrc6xka7gak7jtkg7mr4rpba.png);background-clip:border-box;border-style:none none none none; }.render-swiper-311-0 .img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none; }.render-swiper-311-0  { padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative;height:620px; }.auto-element-308-3>.container { min-height:100px;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }.auto-element-308-3>.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-308-3>.container>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.2rem 0 0 0 ;display:flex;min-height:100px;justify-content:space-between;align-items:center;min-width:100px; }.auto-element-308-3>.container>.div2>.p2 { color:#fff;font-size:.22rem;border-radius:0 0 0 0 ;background-color:#152cae;padding:.3rem .4rem .3rem .4rem ;margin:0 0 0 .5rem ;line-height:1.8;border-style:none none none none; }.auto-element-308-3>.container>.div2>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:3.7rem; }.auto-element-308-3 { background-color:#f6f6f6;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ;min-height:100px; }.auto-element-168-4>.container { border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 auto 0 auto ; }.auto-element-168-4>.container>.img4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none;width:50%; }.auto-element-168-4>.container>.img6 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:inline-block;width:50%; }.auto-element-168-4>.container>.img5 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:inline-block;width:50%; }.auto-element-168-4>.container>.btn7 { color:white;font-size:.22rem;border-radius:60px 60px 60px 60px ;background-color:#e5402d;text-align:center;height:.5rem;padding:0 0 0 0 ;margin:.5rem auto 0 auto ;display:block;width:4rem; }.auto-element-168-4>.container>.text1 { border-radius:0 0 0 0 ;padding:0 0 .3rem 0 ;margin:0 0 0 0 ;color:#e5402d;font-weight:bold;font-size:.34rem;text-align:center; }.auto-element-168-4>.container>.text2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#e5402d;font-weight:bold;font-size:.24rem;text-align:center; }.auto-element-168-4>.container>.div3 { border-radius:0 0 0 0 ;padding:.35rem 0 .4rem 0 ;margin:0 auto 0 auto ;display:flex;width:6rem;justify-content:space-between;min-width:100px; }.auto-element-168-4>.container>.div3>.p2 { border-radius:60px 60px 60px 60px ;background-color:#e5402d;padding:.10rem 0 .10rem 0 ;margin:0 0 0 0 ;color:rgba(255, 255, 255, 1);width:28%;font-size:.22rem;text-align:center; }.auto-element-168-4>.container>.div3>.p3 { border-radius:60px 60px 60px 60px ;background-color:#e5402d;padding:.10rem 0 .10rem 0 ;margin:0 0 0 0 ;color:rgba(255, 255, 255, 1);width:28%;font-size:.22rem;text-align:center; }.auto-element-168-4>.container>.div3>.text1 { border-radius:60px 60px 60px 60px ;background-color:#e5402d;padding:.10rem 0 .10rem 0 ;margin:0 0 0 0 ;color:rgba(255, 255, 255, 1);width:28%;font-size:.22rem;text-align:center; }.auto-element-168-4 { background-color:#EEF5FF;padding:0 0 0 0 ;margin:0 0 0 0 ;display:flex;min-height:100px; }.render-swiper-309-5 .item {  }.render-swiper-309-5 .tab { cursor:pointer;color:#152cae;font-weight:bold;font-size:20px;border-radius:40px 40px 40px 40px ;text-align:center;padding:0 0 0 0 ;margin:0 0 0 0 ;line-height:40px;width:14%;border-width:2px 2px 2px 2px;border-color:#152cae #152cae #152cae #152cae;border-style:solid solid solid solid; }.render-swiper-309-5 .img { display:block;width:100%; }.render-swiper-309-5 .container { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }.render-swiper-309-5 .tabs { margin:.3rem auto .3rem auto ;flex-direction:row;display:flex;width:100%;justify-content:space-between;flex-wrap:wrap; }.render-swiper-309-5 .title { color:#333;font-weight:bold;font-size:38px;line-height:1;text-align:center; }.render-swiper-309-5 .list { margin:0 auto 0 auto ;width:60%; }.render-swiper-309-5 .btn { color:#fff;font-size:24px;border-radius:50px 50px 50px 50px ;background-color:#b81c25;outline:none;height:70px;text-align:center;padding:0 0 0 0 ;margin:.3rem auto 0 auto ;display:none;line-height:70px;width:420px; }.render-swiper-309-5  { background-color:#fff;padding:.6rem 0 .6rem 0 ; }.render-jsx-310-6 .countdowncon { padding:.15rem 0 .15rem 0 ;color:#fff;background:#7f7f7f;width:100%;font-size:.2rem;line-height:1;text-align:center; }.render-jsx-310-6 .content { background-color:#fff;width:100%; }.render-jsx-310-6 .container { padding:0 0 0 0 ;margin:0 auto 0 auto ;position:relative;height:.7rem; }.render-jsx-310-6 .text { transform:translateY(-50%);color:#e5402d;top:50%;left:2rem;font-size:.3rem;line-height:1;position:absolute; }.render-jsx-310-6 .btn { border:none;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;display:block;font-size:.2rem;right:0;border-radius:.4rem .4rem .4rem .4rem ;background-color:#e5402d;transform:translateY(-50%);outline:none;top:50%;width:2.3rem;position:absolute;height:.44rem;text-align:center; }.render-jsx-310-6  { width:100%; }.render-jsx-317-nk1iuk>.div1 { background-size:100%;border-radius:.06rem .06rem .06rem .06rem ;background-color:#efefef;transform:translate(-50%, -50%);background-repeat:no-repeat;top:50%;padding:.4rem .2rem .2rem .2rem ;margin:0 0 0 0 ;left:50%;width:3.6rem;position:absolute;min-width:100px; }.render-jsx-317-nk1iuk>.div1>.regcode5 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.1rem auto 0 auto ;width:100%;position:relative; }.render-jsx-317-nk1iuk>.div1>.regcode5>.code { border-radius:.06rem .06rem .06rem .06rem ;background-color:#fff;padding:0 0 0 .2rem ;margin:0 0 0 0 ;width:100%;font-size:.15rem;height:.44rem; }.render-jsx-317-nk1iuk>.div1>.regcode5>.regcodebtn { background-color:#fff;border-radius:.06rem .06rem .06rem .06rem ;padding:0 .2rem 0 .2rem ;margin:0 0 0 0 ;top:0;color:#e40e2a;font-size:.15rem;position:absolute;right:0;height:100%; }.render-jsx-317-nk1iuk>.div1>.regphone4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.15rem auto 0 auto ;width:100%; }.render-jsx-317-nk1iuk>.div1>.regphone4>.phone { border-radius:.06rem .06rem .06rem .06rem ;background-color:#fff;padding:0 .2rem 0 .2rem ;margin:0 0 0 0 ;width:100%;font-size:.15rem;height:.44rem; }.render-jsx-317-nk1iuk>.div1>.regbtn7 { padding:0 0 0 0 ;margin:.2rem auto 0 auto ;background-size:auto 100%;color:white;display:block;font-size:.24rem;background-position:center center;border-radius:.06rem .06rem .06rem .06rem ;background-color:#fff;background-repeat:no-repeat;width:100%;background-image:url(https://img.acadsoc.com.cn/web/lps/lxhd/bdyd1219/img/popup-btn.png);height:.44rem; }.render-jsx-317-nk1iuk>.div1>.div6 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.2rem 0 0 0 ;display:flex;width:100%;justify-content:space-between;min-width:100px; }.render-jsx-317-nk1iuk>.div1>.div6>.div2 { border-radius:.06rem .06rem .06rem .06rem ;background-color:#fff;cursor:pointer;padding:.15rem 0 .15rem 0 ;margin:0 0 0 0 ;display:flex;width:47%;justify-content:center;align-items:center;min-width:100px; }.render-jsx-317-nk1iuk>.div1>.div6>.div2>.imgpay2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 .1rem 0 0 ;display:block;height:.3rem; }.render-jsx-317-nk1iuk>.div1>.div6>.div2>.pay2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-size:.16rem;text-align:center; }.render-jsx-317-nk1iuk>.div1>.div6>.div1 { border-radius:.06rem .06rem .06rem .06rem ;background-color:#fff;cursor:pointer;padding:.15rem 0 .15rem 0 ;margin:0 0 0 0 ;display:flex;width:47%;justify-content:center;align-items:center;min-width:100px; }.render-jsx-317-nk1iuk>.div1>.div6>.div1>.imgpay1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 .1rem 0 0 ;display:block;height:.3rem; }.render-jsx-317-nk1iuk>.div1>.div6>.div1>.pay1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-size:.16rem;text-align:center; }.render-jsx-317-nk1iuk>.div1>.close1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;top:.1rem;width:.2rem;position:absolute;right:.1rem; }.render-jsx-317-nk1iuk>.div1>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.2rem 0 0 0 ;display:flex;justify-content:center;min-width:100px; }.render-jsx-317-nk1iuk>.div1>.div3>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#e40e2a;font-size:.15rem;line-height:1;text-align:center; }.render-jsx-317-nk1iuk>.div1>.div3>.p2x { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#e40e2a;font-size:.15rem;line-height:1;text-align:center; }.render-jsx-317-nk1iuk>.div1>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.render-jsx-317-nk1iuk { 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-swiper-311-0 .container { padding:0 0 0 0 ;margin:0 auto 0 auto ;position:relative; }.render-swiper-311-0 .com { background-color:#fff;margin:.4rem auto 0 auto ;width:92%; }.render-swiper-311-0 .gift { margin:.4rem auto 0 auto ;display:block;width:100%;position:relative; }.render-swiper-311-0 .giftimg { cursor:pointer;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.render-swiper-311-0 .datetext { color:#84787a;left:.38rem;bottom:.38rem;font-size:.24rem;line-height:1;position:absolute; }.render-swiper-311-0 .title { display:flex;justify-content:center;text-align:center; }.render-swiper-311-0 .text1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#e5402d;font-size:.4rem;line-height:1; }.render-swiper-311-0 .text2 { color:#000;font-weight:bold;font-size:.4rem;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;line-height:1;border-style:none none none none; }.render-swiper-311-0 .swiper { width:100%; }.render-swiper-311-0 .slide1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;border-style:none none none none; }.render-swiper-311-0 .img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:100%; }.render-swiper-311-0  { background-color:#fff;padding:0 0 .2rem 0 ;margin:0 0 0 0 ;position:relative; }.auto-element-308-3>.container { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;width:90%;min-height:100px; }.auto-element-308-3>.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-308-3>.container>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.3rem 0 0 0 ;min-height:100px;min-width:100px; }.auto-element-308-3>.container>.div2>.p2 { color:#fff;font-size:.26rem;border-radius:0 0 0 0 ;background-color:#152cae;padding:.3rem .4rem .3rem .4rem ;margin:.35rem 0 0 0 ;line-height:1.8;border-style:none none none none; }.auto-element-308-3>.container>.div2>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:block;width:88%; }.auto-element-308-3 { background-color:#f6f6f6;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ;min-height:100px; }.auto-element-168-4>.container { border-radius:0 0 0 0 ;padding:.8rem .3rem .8rem .3rem ;margin:0 auto 0 auto ; }.auto-element-168-4>.container>.img4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ; }.auto-element-168-4>.container>.img6 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.4rem 0 0 0 ; }.auto-element-168-4>.container>.img5 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none; }.auto-element-168-4>.container>.btn7 { border-radius:60px 60px 60px 60px ;background-color:#e5402d;padding:0 0 0 0 ;box-shadow:0px 7px 10px 0px rgba(195,13,35,0.26);margin:.4rem auto 0 auto ;color:white;display:block;width:6rem;font-size:.38rem;text-align:center;height:.9rem;0px 7px 10px 0px rgba(195,13,35,0.26) }.auto-element-168-4>.container>.text1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#e5402d;font-weight:bold;font-size:.4rem;text-align:center; }.auto-element-168-4>.container>.text2 { border-radius:0 0 0 0 ;padding:.1rem 0 0 0 ;margin:0 0 0 0 ;color:#e5402d;font-weight:bold;font-size:.26rem;text-align:center; }.auto-element-168-4>.container>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.4rem 0 .4rem 0 ;display:flex;justify-content:space-between;align-items:center;min-width:100px; }.auto-element-168-4>.container>.div3>.p2 { border-radius:60px 60px 60px 60px ;background-color:#e5402d;padding:.15rem 0 .15rem 0 ;margin:0 0 0 0 ;color:rgba(255, 255, 255, 1);width:28%;font-size:.3rem;text-align:center; }.auto-element-168-4>.container>.div3>.p3 { border-radius:60px 60px 60px 60px ;background-color:#e5402d;padding:.15rem 0 .15rem 0 ;margin:0 0 0 0 ;color:rgba(255, 255, 255, 1);width:28%;font-size:.3rem;text-align:center; }.auto-element-168-4>.container>.div3>.text1 { border-radius:60px 60px 60px 60px ;background-color:#e5402d;padding:.15rem 0 .15rem 0 ;margin:0 0 0 0 ;color:rgba(255, 255, 255, 1);width:28%;font-size:.3rem;text-align:center; }.auto-element-168-4 { background-color:#EEF5FF;padding:0 0 0 0 ;margin:0 0 0 0 ;display:flex;min-height:100px; }.render-swiper-309-5 .item {  }.render-swiper-309-5 .tab { cursor:pointer;color:#152cae;font-weight:bold;font-size:.26rem;border-radius:.4rem .4rem .4rem .4rem ;text-align:center;padding:0 0 0 0 ;margin:.3rem 0 0 0 ;line-height:.6rem;width:31%;border-width:2px 2px 2px 2px;border-color:#152cae #152cae #152cae #152cae;border-style:solid solid solid solid; }.render-swiper-309-5 .img { display:block;width:100%; }.render-swiper-309-5 .container { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }.render-swiper-309-5 .tabs { margin:0 auto .2rem auto ;flex-direction:row;display:flex;width:100%;justify-content:space-between;flex-wrap:wrap; }.render-swiper-309-5 .title { margin:0 0 .2rem 0 ;color:#333;font-weight:bold;font-size:.4rem;line-height:1;text-align:center; }.render-swiper-309-5 .list {  }.render-swiper-309-5 .btn { padding:0 0 0 0 ;margin:.3rem auto 0 auto ;color:#fff;display:none;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-309-5  { background-color:#fff;padding:.6rem 0 .6rem 0 ; }.render-jsx-310-6 .countdowncon { padding:.2rem 0 .2rem 0 ;color:#fff;background:#7f7f7f;width:100%;font-size:.26rem;line-height:1;text-align:center; }.render-jsx-310-6 .content { background-color:#fff;width:100%; }.render-jsx-310-6 .container { padding:0 0 0 0 ;margin:0 auto 0 auto ;position:relative;height:1rem; }.render-jsx-310-6 .text { transform:translateY(-50%);color:#e5402d;top:50%;left:.6rem;font-size:.3rem;line-height:1.2;position:absolute; }.render-jsx-310-6 .btn { border:none;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#fff;display:block;font-size:.32rem;right:0;background-color:#e5402d;border-radius:0 0 0 0 ;transform:translateY(-50%);outline:none;top:50%;width:3.8rem;position:absolute;height:100%;text-align:center; }.render-jsx-310-6  { width:100%; }.render-jsx-317-nk1iuk>.div1 { padding:.6rem .3rem .3rem .3rem ;margin:0 0 0 0 ;background-size:100%;min-height:100px;border-radius:.1rem .1rem .1rem .1rem ;background-color:#efefef;transform:translate(-50%, -50%);background-repeat:no-repeat;top:50%;left:50%;width:6.5rem;position:absolute;min-width:100px; }.render-jsx-317-nk1iuk>.div1>.regcode5 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.2rem auto 0 auto ;width:6rem;position:relative; }.render-jsx-317-nk1iuk>.div1>.regcode5>.code { border-radius:.06rem .06rem .06rem .06rem ;background-color:#fff;padding:0 0 0 .3rem ;margin:0 0 0 0 ;width:100%;font-size:.28rem;height:.8rem; }.render-jsx-317-nk1iuk>.div1>.regcode5>.regcodebtn { background-color:#fff;border-radius:.06rem .06rem .06rem .06rem ;padding:0 .3rem 0 .3rem ;margin:0 0 0 0 ;top:0;color:#e40e2a;font-size:.28rem;position:absolute;right:0;height:100%; }.render-jsx-317-nk1iuk>.div1>.regphone4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.2rem auto 0 auto ;top:.3rem;width:6rem; }.render-jsx-317-nk1iuk>.div1>.regphone4>.phone { border-radius:.06rem .06rem .06rem .06rem ;background-color:#fff;padding:0 .3rem 0 .3rem ;margin:0 0 0 0 ;width:100%;font-size:.28rem;height:.8rem; }.render-jsx-317-nk1iuk>.div1>.regbtn7 { padding:0 0 0 0 ;margin:.3rem auto 0 auto ;background-size:auto 100%;color:white;display:block;font-size:.32rem;background-position:center center;border-radius:.06rem .06rem .06rem .06rem ;background-color:#fff;background-repeat:no-repeat;width:100%;background-image:url(https://img.acadsoc.com.cn/web/lps/lxhd/bdyd1219/img/popup-btn.png);height:.8rem; }.render-jsx-317-nk1iuk>.div1>.div6 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.3rem 0 0 0 ;display:flex;justify-content:space-between;min-width:100px; }.render-jsx-317-nk1iuk>.div1>.div6>.div2 { border-radius:.06rem .06rem .06rem .06rem ;background-color:#fff;cursor:pointer;padding:.24rem 0 .24rem 0 ;margin:0 0 0 0 ;display:flex;width:47%;justify-content:center;align-items:center;min-width:100px; }.render-jsx-317-nk1iuk>.div1>.div6>.div2>.imgpay2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 .1rem 0 0 ;display:block;height:.5rem; }.render-jsx-317-nk1iuk>.div1>.div6>.div2>.pay2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-size:.26rem;text-align:center; }.render-jsx-317-nk1iuk>.div1>.div6>.div1 { border-radius:.06rem .06rem .06rem .06rem ;background-color:#fff;cursor:pointer;padding:.24rem 0 .24rem 0 ;margin:0 0 0 0 ;display:flex;width:47%;justify-content:center;align-items:center;min-width:100px; }.render-jsx-317-nk1iuk>.div1>.div6>.div1>.imgpay1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 .1rem 0 0 ;display:block;height:.5rem; }.render-jsx-317-nk1iuk>.div1>.div6>.div1>.pay1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-size:.26rem;text-align:center; }.render-jsx-317-nk1iuk>.div1>.close1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;top:.15rem;width:.32rem;position:absolute;right:.1rem; }.render-jsx-317-nk1iuk>.div1>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.24rem 0 0 0 ;display:flex;justify-content:center;min-width:100px; }.render-jsx-317-nk1iuk>.div1>.div3>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#e40e2a;font-size:.26rem;line-height:1;text-align:center; }.render-jsx-317-nk1iuk>.div1>.div3>.p2x { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#e40e2a;font-size:.26rem;line-height:1;text-align:center; }.render-jsx-317-nk1iuk>.div1>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;width:100%; }.render-jsx-317-nk1iuk { 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) {

  }
</style>

<div class="render-swiper-311-0">
  <div class="swiper swiper-container swiper-no-swiping">
    <div class="swiper-wrapper">
      
    	<div class="swiper-slide slide1">
    		<img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/19/45aht6xy2ragwln4mpw5w4wnk7t7dpr9.png">
    	</div>
    
    </div>
  </div>
  <div class="container">
    <div class="com">
      <div class="title">
      	<h2 class="text1">【限时0元】</h2>
      <p class="text2">阿卡索精品外教课</p>
      </div>
      <a class="gift" data-popup-id="317" data-popup-hash-cp0ert="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-vbbcmj="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/19/r45cah4maxd67mtxa52hy6npjaj3axt9.png" data-popup-hash-jescrn="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/19/2yc7rjpkck6e93rwc6y421dkaya34ekf.png" data-popup-hash-5ugk8y="%E5%BE%AE%E4%BF%A1%E6%94%AF%E4%BB%98" data-popup-hash-jnu29l="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-8smguy="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-w9jo40="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-uqysvv="%E6%94%AF%E4%BB%98%E5%AE%9D" data-popup-hash-vnyotl="%E5%89%A9%E4%BD%99%E6%94%AF%E4%BB%98%E6%97%B6%E9%97%B4%EF%BC%9A" data-popup-hash-hae15u="10:00:00" data-popup-hash-gfqgyy="https://img.acadsoc.com.cn/web/lps/lxhd/bdyd1219/img/popup-img.png" data-popup-hash-djpdgs="">
      	<img class="giftimg" src="https://img.acadsoc.com.cn/web/lps/lxhd/bdyd1219/img/coupon.png">
        <span class="datetext time">有效期至year-month-date</span>
      </a>
    </div>
  </div>
</div>
<script>
  $(function(){
    new Swiper('.render-swiper-311-0 .swiper-container',HtmlWidth >= 768 ? {"loop":false} : {"loop":false} )
    
    //自定义弹框
    function toast(msg,duration){
      duration=isNaN(duration)?3000:duration;
      var m = document.createElement('div');
      m.innerHTML = msg;
      m.style.cssText="min-width: 3rem;color: #fff;padding:.2rem .3rem;text-align: center;border-radius: .1rem;position: fixed;top: 40%;left: 50%;transform:translateX(-50%);-webkit-transform:translateX(-50%);z-index: 999999;background: rgba(0, 0, 0,.8);font-size: .26rem;";
      document.body.appendChild(m);
      setTimeout(function() {
        var d = 0.5;
        m.style.webkitTransition = '-webkit-transform ' + d + 's ease-in, opacity ' + d + 's ease-in';
        m.style.opacity = '0';
        setTimeout(function() { document.body.removeChild(m) }, d * 1000);
      }, duration);
    }
    
    let cp = 1; 
    $('.render-swiper-311-0 .giftimg').click(function(){
			cp++;
     if(cp==2){$(this).attr('src','https://img.acadsoc.com.cn/web/lps/acc/sem/sher/hj/v/img/coupones.png');
               toast('领取成功',2000)
     }else{
       toast('您已领取该优惠券',2000)
     }
    })
  })
</script>
<style>
  /* PC端 */
  @media (min-width:769px) {

  .render-jsx-40-1 { background-color:white;border-radius:0 0 0 0 ;padding:80px 0 0px 0 ;margin:0 0 0 0 ;text-align:center; }

  .render-jsx-40-1 p { color:#333;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;  }
  }
  /* 手机端 */
  @media (max-width:768px) {

  .render-jsx-40-1 { background-color:white;border-radius:0 0 0 0 ;padding:30px 0 0 0 ;margin:0 0 0 0 ;text-align:center; }

  .render-jsx-40-1 p { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-weight:bold;display:inline-block;font-size:.4rem;text-align:center; }
  }
</style>

<div class="render-jsx-40-1">
  <p class="pc--show pc">再不改变,就真的晚了!</p>
  <p class="mobile--show mobile">再不改变,就真的晚了!<b style="color:#152cae;"></b></p>
</div>
<style>
  /* PC端 */
  @media (min-width:769px) {
  .render-jsx-47-2 {
  padding:0 0 0 0 ;margin:0 0 0 0 ;text-align:center;
  }

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

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


<div class="render-jsx-47-2">
  <div class="container">
    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/23/z6ma4ajl9a589yd83jxnpxn46tg23whb.png" class="pc--show pc">

    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/23/pjx475rc1d8njrahdbhbplh7jmhp41d7.png" class="mobile--show mobile">
  </div>
</div>
<div class="auto-element-308-3 json">

  <div class="container">

  <p class="p1">成人学英语难?<b style="color:#152cae;">未必!</b></p>
<div class="div2">

  <img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/18/txfmrg6g42mfkhf67j8m1drgcx1dn7p9.png">
<p class="p2">        阿卡索成人英语,风趣外教<span style="color:#ffe507;">1对1</span><span style="color:#ffe507;">在线互动教学</span>,打开<span style="color:#ffe507;">手机</span><span style="color:#ffe507;">电脑</span>,即可上课。<span style="color:#ffe507;">不背单词!不背语法!</span>每天只需<span style="color:#ffe507;">25分钟</span>,轻松学英语。30天左右,从<span style="color:#ffe507;">0基础</span><span style="color:#ffe507;">脱口而出</span>
(一节课低至<span style="color:#ffe507;">13.8元</span>,相当于一杯奶茶的价格)</p>
</div>
</div>
</div>

<div class="auto-element-168-4 json">

  <div class="container">

  <p class="text1">精挑细选 <span style="color:rgba(20, 43, 136, 1)">成就王者之师</span></p>
<p class="text2"><span style="color:rgba(20, 43, 136, 1)">我们将根据您的需求,</span> 为您匹配适合您的外教老师</p>
<div class="div3">

  <p class="text1">发音更准</p>
<p class="p2">互动更强</p>
<p class="p3">更有耐心</p>
</div>
<img class="img4" src="https://img.acadsoc.com.cn/web/lps/lxhd/omnew/img/1015/teacher1.png">
<img class="img5" src="https://img.acadsoc.com.cn/web/lps/lxhd/omnew/img/1015/teacher1.png">
<img class="img6" src="https://img.acadsoc.com.cn/web/lps/lxhd/omnew/img/1015/teacher2.png">
<button class="btn7" data-popup-id="76" data-popup-hash-s1whdx="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-dg9p2e="1%E5%AF%B91%E5%A4%96%E6%95%99%E8%AF%BE" data-popup-hash-gih3zt="%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-tcmeaj="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-g4vu0y="%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-g4iuhx="%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96">免费试学</button>
</div>
</div>

<style>
  .render-swiper-309-5 .active{
    background-color:#152cae;color:#fff;border-color:#152cae;
  }
  /* PC端 */
  @media (min-width:769px) {

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

  }
</style>

<div class="render-swiper-309-5">
  <div class="container">
    <h2 class="title">为什么都选<b style="color:#152cae;">【阿卡索】?</b></h2>

    <ol class="tabs">
      <li class="tab active">全国前二</li>
      <li class="tab">明星力荐</li>
      <li class="tab">1对1专辅</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="https://img.acadsoc.com.cn/web/lps/UGD-L/imgs/ugd0829/swp1.png">
        </div>
    
    	<div class="swiper-slide">
          <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/18/dhcn4b8k9tej8d2t3fb35yawbewj62h2.png">
        </div>
    
    	<div class="swiper-slide">
          <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/18/jc8tyrex6fbygk3g5kaczjgpk7rywajy.png">
        </div>
    
    	<div class="swiper-slide">
          <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/18/4rjpxnde69knd51dlwdj7zwrgbf6wj8m.png">
        </div>
    
    	<div class="swiper-slide">
          <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/18/fyx4zac9k3btwejbzj8df1dht1d8hjpk.png">
        </div>
    
    	<div class="swiper-slide">
          <img class="img" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/18/mn6nlkc52cdgac3nr6e53a1db5amkbzk.png">
        </div>
    
      </div>
    </div>

    <button class="btn">获取英语通关秘籍</button>
  </div>
</div>
<script>
  $(function(){
    var pc = {"loop":false,"initialSlide":0,"centeredSlides":false,"slidesPerView":1,"autoplay":{"delay":4000,"stopOnLastSlide":false,"disableOnInteraction":false},"spaceBetween":0};
    var mo = {"loop":false,"initialSlide":0,"centeredSlides":false,"slidesPerView":1,"autoplay":{"delay":4000,"stopOnLastSlide":false,"disableOnInteraction":false},"spaceBetween":0};
  pc.on = {
    slideChangeTransitionStart: function(){
      const index = this.activeIndex;
      $('.render-swiper-309-5 .tabs li').eq(index).addClass('active').siblings('li').removeClass('active')
    },
  };
  mo.on = {
    slideChangeTransitionStart: function(){
      const index = this.activeIndex;
      $('.render-swiper-309-5 .tabs li').eq(index).addClass('active').siblings('li').removeClass('active')
    },
  };
  
    const _swiper = new Swiper('.render-swiper-309-5 .swiper-container',HtmlWidth >= 768 ? pc : mo);

    $('.render-swiper-309-5 .tabs li').click(function(){
      const index = $(this).index();
      $(this).addClass('active').siblings('li').removeClass('active');
      _swiper.slideTo(index, 300, false);
    })
  })
</script>
<style>
  .render-jsx-310-6 .time i{
    font-style:normal;border-radius:4px;background:#212121;color:#fff;padding:2px .04rem;
  }
  /* PC端 */
  @media (min-width:769px) {
    .render-jsx-310-6 .text>br{
      display:none;
    }
  }
  /* 手机端 */
  @media (max-width:768px) {

  }
</style>
<div class="render-jsx-310-6-top"></div>
<div class="render-jsx-310-6 fixed__el">
  <div class="countdowncon time">活动截止:month月date日&nbsp;&nbsp;仅剩:<span><i>00</i>:<i>00</i>:<i>00</i></span></div>
  <div class="content">
    <div class="container">
      <p class="text">券后价:0.<span style="font-size:.8em;color:#e5402d">00元</span>&nbsp;&nbsp;<br><s style="color:#666;font-size:.6em;">原价:388元</s></p>
      <button data-form="" class="btn">领券购买</button>
    </div>
  </div>
</div>
<script src="https://img.acadsoc.com.cn/web/lps/js/time-util.js"></script>
<script>
	$(function(){
    getTomorrowCountDown(function (res) {
				$('.time span').html(`<i>${res.hourse}</i>:<i>${res.minutes}</i>:<i>${res.seconds}</i>`)
		 });
  })
</script>
<style>
   .render-jsx-76-A30dRB .input__div img{
    margin: 0 4px;
  }
  
  .render-jsx-76-A30dRB {
  position:fixed;
  top:0;bottom:0;left:0;right:0;
  display:flex;
    background-color:rgba(0,0,0,0.5);
  }
  
  .render-jsx-76-A30dRB .content{
  margin:auto;
  text-align:center;
  position:relative;
  }
  
   .render-jsx-76-A30dRB .register-close{
  cursor: pointer;
  }
  
   .render-jsx-76-A30dRB .p1 input,
  .render-jsx-76-A30dRB .p2 input{
    padding:initial;
  	color:initial;
  }
  
  /* PC端 */
  @media (min-width:769px) {
  .render-jsx-76-A30dRB .content{
  background-color:white;border-radius:4px;padding:.6rem .45rem .6rem .45rem ;width:6rem;
  }
  
   .render-jsx-76-A30dRB .register-close{
  top:.16rem;width:.23rem;right:.16rem;position:absolute;height:auto;
  }
  
  .render-jsx-76-A30dRB .title{
  background-color:white;padding:0 0 0 0 ;margin:0 0 0 0 ;color:black;font-weight:bold;font-size:.36rem;line-height:1;text-align:center;
  }
  
  .render-jsx-76-A30dRB .time{
  
  }
  
  .render-jsx-76-A30dRB .register-phone{
  border-radius:60px;border:1px solid #ccc;padding:0 20px 0 20px ;margin:.4rem 0 0 0 ;font-size:.28rem;line-height:.9rem;height:.9rem;
  }
  
  
  .render-jsx-76-A30dRB .register-code{
  border-radius:60px;border:1px solid #ccc;padding:0 20px 0 20px ;margin:.3rem 0 0 0 ;font-size:.28rem;line-height:.9rem;height:.9rem;
  }
  
  .render-jsx-76-A30dRB .btnGetSMS{
  background-color:#c30d23;border-radius:0 60px 60px 0;padding:0 20px 0 20px ;color:white;font-size:.28rem;
  }
  
  .render-jsx-76-A30dRB .registerSubmit{
  background-color:#c30d23;border-radius:60px;padding:0 0 0 0 ;margin:.4rem 0 0 0 ;background-repeat:no-repeat;background-size: 7%;color:white;width:100%;font-size:.34rem;line-height:2.6;background-position: 69% 75%;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/27/jr5n3dn91dtzmfdaf2rfw87dbkjghjwh.png);
  }
  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-76-A30dRB .content{
  background-color:white;border-radius:4px;padding:.6rem .45rem .6rem .45rem ;width:6.4rem;
  }
  
   .render-jsx-76-A30dRB .register-close{
  top:.16rem;width:.23rem;right:.16rem;position:absolute;height:auto;
  }
  
  .render-jsx-76-A30dRB .title{
  background-color:white;padding:0 0 0 0 ;margin:0 0 0 0 ;color:black;font-weight:bold;font-size:.36rem;line-height:1;text-align:center;
  }
  
  .render-jsx-76-A30dRB .time{
  
  }
  
  .render-jsx-76-A30dRB .register-phone{
  border-radius:60px;border:1px solid #ccc;padding:0 20px 0 20px ;margin:.4rem 0 0 0 ;font-size:.28rem;line-height:.9rem;height:.9rem;
  }
  
  
  .render-jsx-76-A30dRB .register-code{
  border-radius:60px;border:1px solid #ccc;padding:0 20px 0 20px ;margin:.3rem 0 0 0 ;font-size:.28rem;line-height:.9rem;height:.9rem;
  }
  
  .render-jsx-76-A30dRB .btnGetSMS{
  background-color:#c30d23;border-radius:0 60px 60px 0;padding:0 20px 0 20px ;color:white;font-size:.28rem;
  }
  
  .render-jsx-76-A30dRB .registerSubmit{
  padding:0 0 0 0 ;margin:.4rem 0 0 0 ;background-size: 7%;color:white;font-size:.34rem;line-height:.9rem;background-position: 69% 75%;background-color:#c30d23;border-radius:60px;background-repeat:no-repeat;width:100%;background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/27/jr5n3dn91dtzmfdaf2rfw87dbkjghjwh.png);height:.9rem;
  }
  }
</style>

<div class="render-jsx-76-A30dRB" id="register-popup-76" style="display: none;">
  <div class="content">
    <img src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" class="register-close closeimg closeImg" data-module-id="76" data-modal-hash="tcmeaj">
    <p class="title" data-modal-hash="dg9p2e">1对1外教课</p>
    
    <div class="input__div register-phone">
      <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/09/30/zn6tr45dgtgl7zwn2th78kgec2dhdeb7.png">
      <input placeholder="手机号" type="tel" maxlength="11" name="TxtPhone" class="TxtPhone phoneinput phoneInput" data-modal-hash="g4vu0y">
    </div>
    
    <div class="input__div register-code">
      
        <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" class="TxtCode codeinput codeInput" data-modal-hash="gih3zt">
      <button class="btnGetSMS codebtn codeBtn" name="btnGetSMS" data-modal-hash="s1whdx">获取验证码</button>
    </div>
    <button class="registerSubmit button" name="registerSubmit" data-modal-hash="g4iuhx">
      免费领取
    </button>
  </div>
</div><style>
  .render-jsx-317-nk1iuk .actpay{
    border:1px solid #E40E2A;position:relative;overflow:hidden;
  }
  
  .render-jsx-317-nk1iuk .actpay::after{
    display:block;content:'';background-image:url('https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/1125/icon-select.png');background-repeat:no-repeat;background-size:100% 100%;background-position:center center;position:absolute;right:-1px;top:-1px;
  }
  @media(min-width:769px){
    .render-jsx-317-nk1iuk .actpay::after{
      width:.15rem;height:.15rem;
    }
  }
  @media(max-width:768px){
    .render-jsx-317-nk1iuk .actpay::after{
      width:.3rem;height:.3rem;
    }
  }
</style>
<div id="register-popup-317" style="display: none;" class="render-jsx-317-nk1iuk">
    <div class="div1">
      
<img class="close-popup close1" src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-modal-hash="cp0ert">

<img class="img2" src="https://img.acadsoc.com.cn/web/lps/lxhd/bdyd1219/img/popup-img.png" data-modal-hash="gfqgyy">

    <div class="div3">
      
<p class="p1" data-modal-hash="vnyotl">剩余支付时间:</p>

<p class="p2x countdown" data-modal-hash="hae15u">10:00:00</p>

    </div>
    
    <div class="regphone4">
      
  <input name="TxtPhone" class="phone" placeholder="请输入手机号" type="tel" data-modal-hash="8smguy">
  
    </div>
    
    <div class="regcode5">
      
  <input name="TxtCode" class="code" placeholder="请输入验证码" type="tel" data-modal-hash="w9jo40">
  
<button name="btnGetSMS" class="regcodebtn" data-modal-hash="jnu29l">获取验证码</button>

    </div>
    
    <div class="div6 tabpay">
      
    <div class="div1 actpay">
      
<img class="imgpay1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/19/r45cah4maxd67mtxa52hy6npjaj3axt9.png" data-modal-hash="vbbcmj">

<p class="pay1" data-modal-hash="5ugk8y">微信支付</p>

    </div>
    
    <div class="div2">
      
<img class="imgpay2" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/19/2yc7rjpkck6e93rwc6y421dkaya34ekf.png" data-modal-hash="jescrn">

<p class="pay2" data-modal-hash="uqysvv">支付宝</p>

    </div>
    
    </div>
    
<button name="registerSubmit" class="regbtn7" data-modal-hash="djpdgs"> </button>

    </div>
    </div>

<script>
$(function(){
  // 前面加0
    function addPreZero (number) {
      return number < 10 || number.length < 2 ? '0' + number : number;
    }
    counTime()
    //时间倒计时
    function counTime(){
        var times = 600 * 100; // 600秒
        const countTime = setInterval(function() {
            if (times > 0) {
                times = --times < 0 ? 0 : times;
                var m = Math.floor(times / 100 / 60 % 60 ).toString();
                var s = Math.floor(times / 100 % 60).toString();
                var ms = Math.floor(times % 100 / 10).toString();
                // 获取分钟、毫秒数
                $('.render-jsx-317-nk1iuk .countdown').html(`${addPreZero(m)}:${addPreZero(s)}:${addPreZero(ms)}`)
            } else {
                //先清除倒计时再执行倒计时
                clearInterval(countTime);
                //counTime()
            }
        }, 10);
    }
  
  	$('.render-jsx-317-nk1iuk .tabpay>div').click(function(){
      $(this).addClass('actpay').siblings('div').removeClass('actpay');
    })
})
</script>

  <footer class="footer">
    <div class="footer-pc">
        <div class="footer-pc-left">
            <div>
                服务热线:400-600-1166<a href="http://www.miitbeian.gov.cn/" rel="nofollow" target="_blank">粤ICP备19156451号</a>
            </div>
            <div>本站信息由深圳市阿卡索资讯股份有限公司发布</div>
        </div>
        <div class="footer-pc-right">
            <img src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/pcImg/footer.png" alt="Copyright">
        </div>
    </div>
    <div class="footer-m">
        <div class="footer-m-logo"></div>
        <div class="footer-m-tel">
            服务热线:400-600-1166<a href="http://www.miitbeian.gov.cn/" rel="nofollow" target="_blank">粤ICP备19156451号</a>
        </div>
        <div>本站信息由深圳市阿卡索资讯股份有限公司发布</div>
    </div>
</footer>


  <!--滑动验证生成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/editor/register-editor-customeform.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> -->
	<script charset="UTF-8" type="text/javascript" src="https://cstaticdun.126.net/load.min.js"></script>
  <!-- 新验证1909 End -->
  <script type="text/javascript" src="https://www.acadsoc.com.cn/Ajax/Web.UI.Fun.User.aspx"></script>
  <!-- abtest -->
  <script src="https://img.acadsoc.com.cn/web/js/abtest.min.js"></script>
  <script type="text/javascript" src="https://img.acadsoc.com.cn/js/editor/swiper-4.5.3.min.js"></script>
  <script type="text/javascript" src="https://img.acadsoc.com.cn/js/editor/comm-handle.js"></script>

  <script>

    var pageData = {
      weChatGroupID: '',
    };

    // 支付配置
    var defaultPay = {
      sort: 'order',
      value: '',
    }
    var payConfig = {
      sort: '',
      value: '',
    };
    var paytype = 'wechat'; // wechat | alipay

    var _swiper = window.Swiper;
    window.Swiper = function (selector, options, realOptions) {
      var _options = { };
      // 如果是pc or mobile
      if (options.pc && options.mobile) {
        options = options[pageEquipment];
      }
      // 自动轮播
      switch (typeof options.autoplay) {
        case 'object':
          if (options.autoplay.delay == '0') {
            _options.autoplay = false;
          }
        break;
        case 'string':
        case 'number': 
          if (options.autoplay == '0') {
            _options.autoplay = false;
          } else {
            _options.autoplay = {
              delay: Number(options.autoplay),
              stopOnLastSlide: false,
              disableOnInteraction: false,
            }
          }
        break;
      }
      // 处理类型
      for (const key in options) {
        if (Object.hasOwnProperty.call(options, key)) {
          const element = options[key];
          if (!isNaN(Number(options[key])) && typeof element !== 'boolean'){
            options[key] = Number(options[key]);
          }
        }
      }
      // 分页器
      if (options.pagination === true) {
        _options.pagination = {
          el: `${selector} .swiper-pagination`,
          clickable: true,
        }
      }
      // 需要覆盖的
      if (realOptions && typeof realOptions === 'object' && !Array.isArray(realOptions)) {
        if (realOptions[pageEquipment] && typeof realOptions[pageEquipment] === 'object') {
          Object.assign(_options, realOptions[pageEquipment]);
        }
      }
      Object.assign(options, _options);
      options.loop = !!options.loop;
      if (options.pagination && options.pagination.el) {
        if ($(options.pagination.el).length < 1) {
          $('<div class="swiper-pagination"></div>').appendTo(selector);
        }
      }
      return new _swiper(selector, options);
    }

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

    function addFixedEls(){
      // 头部元素
      const headerFixedElement = $('body>div').eq(0);
      $('.fixed__el').each((i,v) => {
        // 定位元素
        const fixedEl = $(v);
        // 移除元素
        const removeFixedElement = fixedEl.prev();
        let bTop = removeFixedElement.offset().top - 10 - $(window).height() + removeFixedElement.height();
        let rTop = headerFixedElement.offset().top + headerFixedElement.height();
        $(window).scroll(function () {
          let sTop = $(this).scrollTop();
          if (sTop > rTop) {
            fixedEl.fadeIn(300);
            if (sTop >= bTop) {
              fixedEl.removeClass('fixed');
            } else {
              fixedEl.addClass('fixed');
            }
          } else {
            fixedEl.fadeOut(300);
          }
        })
      })
    }
    /**
     * 绑定事件
     * @param selector {String} 选择器
     * @param func {(event, thisElement) => void)} 选择器
     * @param type {String} 事件类型 默认click
     * @return void
     */
    function onEvent(selector, func, type) {
      if (!type) type = 'click';
      $(document).on(type, selector, func);
    }

    // currDate
    const date = new Date();
    const curruYear = date.getFullYear();
    const currMonth = date.getMonth() + 1;
    const currDate = date.getDate();
    // dynamic data
    const imgIds = [];
    const bgImgIds = [];
    const textIds = [];

    $(function () {
      // 替换时间文字
      document.querySelectorAll('.time').forEach(function(v) {
        eachTransTime(v.childNodes);
      })
      function eachTransTime(children = []) {
        if (!children || children.length === 0) return;
        children.forEach(v => {
          if (v.nodeName === '#text') {
            v.nodeValue = getToday(v.nodeValue);
          } else {
            eachTransTime(v.childNodes);
          }
        })
      }
      // 复制去微信号
      // data-copy-wx 微信 data-wx-alter 复制后提示文案
      onEvent('[data-copy-wx]', function(){
        copyWx($(this))
      })
      // .wx text
      // 复制微信号并跳转微信 data-to-wx 微信 data-wx-alter 复制后提示文案
      onEvent('[data-to-wx]', function(){
        copyWx($(this))
        toHref('weixin://');
      });

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

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

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

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

      // 事件执行的前后回调
      function eventBeforeAfterCall (callFn) {
        return function () {
          // 回调
          const beforeCall = this.getAttribute('data-model-beforecall');
          const afterCall = this.getAttribute('data-model-aftercall');
          if ((beforeCall && window[beforeCall](this)) || !beforeCall){
            // 打开弹窗
            callFn && callFn.call(this);
          }
          afterCall && window[afterCall]();
        }
      }

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

      // 单链接跳转
      onEvent('[data-href]', eventBeforeAfterCall(function(){
        let href = $(this).attr('data-href');
        if (this.getAttribute('data-take-query')) {
          if (href.includes('?')) {
            href += location.search.replace('?','&');
          } else {
            href += location.search;
          }
        }
        toHref(href);
      }));

      // 分端跳转
      onEvent('[data-pm-href]', eventBeforeAfterCall(function(){
        var parameter = window.location.search;
        var sUserAgent = navigator.userAgent.toLowerCase();
        var bIsIpad = sUserAgent.match(/ipad/i) == "ipad";
        var bIsIphoneOs = sUserAgent.match(/iphone os/i) == "iphone os";
        var bIsMidp = sUserAgent.match(/midp/i) == "midp";
        var bIsUc7 = sUserAgent.match(/rv:1.2.3.4/i) == "rv:1.2.3.4";
        var bIsUc = sUserAgent.match(/ucweb/i) == "ucweb";
        var bIsAndroid = sUserAgent.match(/android/i) == "android";
        var bIsCE = sUserAgent.match(/windows ce/i) == "windows ce";
        var bIsWM = sUserAgent.match(/windows mobile/i) == "windows mobile";
        let href = $(this).attr('data-pc-href');
        if (bIsIphoneOs || bIsMidp || bIsUc7 || bIsUc || bIsAndroid || bIsCE || bIsWM) {
          href = $(this).attr('data-mobile-href');
        } else if (bIsIpad) {
          href = $(this).attr('data-ipad-href');
        } 
        if (this.getAttribute('data-take-query')) {
          const search = location.search;
          if (href.includes('?')) {
            href += search.replace('?','&');
          } else {
            href += search;
          }
        }
        console.log(href);
        toHref(href);
      }));

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

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

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

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

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

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

      // 设置支付类型
      onEvent('[data-paytype]', function(){
        window.paytype = this.getAttribute('data-paytype');
      });


      // 注册
      register.init({
        successFn: function () {
					ABRecord && ABRecord.registNotice();
          $(".loading").hide();

          // customize register code
          window._agl && window._agl.push(['track', ['success', { t: 3 }]]);
Fn.User.CreateUserRegisterRecord(27); 

          
          window.registerCallback && window.registerCallback();
          return false;
        },
        "activityId":"","successLocation":"","successTxt":"","defaultFnType":"","type":"code"
      });
      

    })


    

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


</body></html>