index.html 72.7 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
<!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/lps/activity/js/BaiDuStatistics.js"></script>
<script src="https://img.acadsoc.com.cn/web/SenSors/sensorsheadother.js"></script>
<script src="https://www.acadsoc.com.cn/OCPC/js/ocpc.js"></script>

</head>

<!-- :  -->
<body>

  <!-- js统计 -->
  <script src="https://img.acadsoc.com.cn/web/js/monitor/apm.web.js"></script>
  
  <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>
      @media (min-width:769px) { 
          .render-swiper-298-0 .options {  loop:false;  }
          
          .render-swiper-298-0 .img {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  }
          
          .render-swiper-298-0 .slide1 {  background-size:cover;  border-radius:0 0 0 0;  background-repeat:no-repeat;  background-image:url(https://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/03/13/tn7geg1dmg1dre6dl8wh9d3n3afwyxkt.jpg);  padding:0 0 0 0;  margin:0 0 0 0;  background-position:center;  }
          
          .render-swiper-298-0 .swiper {  z-index:2;  width:100%;  position:absolute;  height:100%;  }
          
          .render-swiper-298-0 .text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.16rem 0 0 0;  color:#555;  font-size:14px;  line-height:1;  text-align:center;  }
          
          .render-swiper-298-0 .regcodebtn {  background-color:#b81c25;  border-radius:0 20px 20px 0;  padding:0 .15rem 0 .15rem;  margin:0 0 0 0;  top:0;  color:white;  font-size:.16rem;  position:absolute;  right:0;  height:100%;  }
          
          .render-swiper-298-0 .code {  background-color:#ececec;  border-radius:20px 20px 20px 20px;  padding:0 0 0 .2rem;  margin:0 0 0 0;  width:100%;  font-size:.16rem;  height:.5rem;  }
          
          .render-swiper-298-0 .regcode3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.16rem auto 0 auto;  width:100%;  position:relative;  }
          
          .render-swiper-298-0 .phone {  background-color:#ececec;  border-radius:20px 20px 20px 20px;  padding:0 .2rem 0 .2rem;  margin:0 0 0 0;  width:100%;  font-size:.16rem;  height:.5rem;  }
          
          .render-swiper-298-0 .regphone2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  width:100%;  }
          
          .render-swiper-298-0 .text1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:rgba(195, 13, 35, 1);  font-size:.2rem;  line-height:1.5;  text-align:center;  }
          
          .render-swiper-298-0 .regbtn4 {  border-radius:20px 20px 20px 20px;  background-color:#b81c25;  padding:0 0 0 0;  margin:.16rem auto 0 auto;  color:white;  display:block;  width:100%;  font-size:.18rem;  height:.5rem;  }
          
          .render-swiper-298-0 .gift {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  display:none;  width:90%;  }
          
          .render-swiper-298-0 .content {  background-color:#fff;  border-radius:10px 10px 10px 10px;  padding:40px 20px 20px 20px;  margin:-1px auto 0 auto;  width:100%;  position:relative;  text-align:center;  }
          
          .render-swiper-298-0 .titleimg {  padding:0 0 0 0;  margin:0 0 0 0;  background-size:100% 100%;  color:#fff;  display:none;  font-size:34px;  line-height:76px;  border-radius:0 0 0 0;  background-repeat:no-repeat;  width:100%;  background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/10/zxnwn2w9aw4htpy8geg72y58cmrng368.png);  height:86px;  text-align:center;  }
          
          .render-swiper-298-0 .com {  border-radius:.1rem .1rem .1rem .1rem;  padding:0 0 0 0;  z-index:3;  transform:translateY(-50%);  margin:0 0 0 0;  top:50%;  width:3.3rem;  position:absolute;  right:0;  }
          
          .render-swiper-298-0 .container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  position:relative;  height:100%;  }
          
          .render-swiper-298-0  {  padding:0 0 0 0;  margin:0 0 0 0;  position:relative;  height:580px;  }
           }
      @media (max-width:768px) { 
          .render-swiper-298-0 .options {  loop:false;  }
          
          .render-swiper-298-0 .img {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
          
          .render-swiper-298-0 .slide1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
          
          .render-swiper-298-0 .swiper {  width:100%;  }
          
          .render-swiper-298-0 .text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.3rem 0 0 0;  color:#555;  font-size:.24rem;  line-height:1;  text-align:center;  }
          
          .render-swiper-298-0 .regcodebtn {  background-color:#b81c25;  border-radius:0 .2rem .2rem 0;  padding:0 .3rem 0 .3rem;  margin:0 0 0 0;  top:0;  color:white;  font-size:.28rem;  position:absolute;  right:0;  height:100%;  }
          
          .render-swiper-298-0 .code {  background-color:#ececec;  border-radius:.2rem .2rem .2rem .2rem;  padding:0 0 0 .4rem;  margin:0 0 0 0;  width:100%;  font-size:.28rem;  height:.8rem;  }
          
          .render-swiper-298-0 .regcode3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.3rem auto 0 auto;  width:90%;  position:relative;  }
          
          .render-swiper-298-0 .phone {  background-color:#ececec;  border-radius:.2rem .2rem .2rem .2rem;  padding:0 .4rem 0 .4rem;  margin:0 0 0 0;  width:90%;  font-size:.28rem;  height:.8rem;  }
          
          .render-swiper-298-0 .regphone2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.3rem auto 0 auto;  top:.4rem;  width:100%;  }
          
          .render-swiper-298-0 .text1 {  color:rgba(195, 13, 35, 1);  font-size:.4rem;  border-radius:0 0 0 0;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  line-height:1;  }
          
          .render-swiper-298-0 .regbtn4 {  border-radius:.2rem .2rem .2rem .2rem;  background-color:#b81c25;  padding:0 0 0 0;  margin:.3rem auto 0 auto;  color:white;  display:block;  width:90%;  font-size:.36rem;  height:.8rem;  }
          
          .render-swiper-298-0 .gift {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.4rem auto 0 auto;  display:none;  width:90%;  }
          
          .render-swiper-298-0 .content {  background-color:#fff;  border-radius:0 0 .1rem .1rem;  padding:.5rem .4rem .4rem .4rem;  margin:-.3rem 0 0 0;  width:100%;  position:relative;  text-align:center;  }
          
          .render-swiper-298-0 .titleimg {  padding:0 0 0 0;  margin:0 0 0 0;  background-size:100% 100%;  color:#fff;  display:none;  font-size:.5rem;  line-height:.95rem;  border-radius:0 0 0 0;  background-repeat:no-repeat;  width:100%;  background-image:url(http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/02/acl7m7kg7f37dfwgrd29f49zm3p47jfh.png);  height:1.1rem;  text-align:center;  }
          
          .render-swiper-298-0 .com {  border-radius:.3rem .3rem .3rem .3rem;  box-shadow:0 0 .1rem .1rem rgba(25,42,130,.1);  padding:0 0 0 0;  margin:0 auto 0 auto;  z-index:2;  width:92%;  position:relative;  }
          
          .render-swiper-298-0 .container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  position:relative;  }
          
          .render-swiper-298-0  {  background-color:#fff;  padding:0 0 .2rem 0;  margin:0 0 0 0;  position:relative;  }
           } 
    </style>
<style>
  /* PC端 */
  @media (min-width:769px) {

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

  }
</style>

<div class="render-swiper-298-0">
  <div class="swiper swiper-container swiper-no-swiping">
    <div class="swiper-wrapper">
      
    	<div class="swiper-slide slide1">
    		<img class="img" src="https://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/03/13/5pfh5m8h46flpfrldjdm82fb1dfm4l1d.jpg">
    	</div>
    
    </div>
  </div>
  <div class="container">
    <div class="com">
      <div class="titleimg">免费领取</div>
      <div class="content">
        <h2 class="text1"><b style="color:#5d5c5c;">免费领取</b>388元试课礼包<br>和海量英语学习资料<br></h2>
        <img class="gift" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/02/41d6z83anrdhm2ahjh6br4zh7d7863e4.png">
        <div class="regphone2">
          <input placeholder="请填写您的手机号" type="tel" name="TxtPhone" class="phone">
        </div>
        <div class="regcode3 duanxin" style="display:none">
          <input placeholder="请输入验证码" type="tel" name="TxtCode" class="code">
          <button name="btnGetSMS" class="regcodebtn">获取验证码</button>
        </div>
        <button name="registerSubmit" class="regbtn4">马上领取</button>
        <p class="text2 time">名额有限,每天仅限前<b style="color:rgba(195, 13, 35, 1);">100名</b></p>
      </div>
    </div>
  </div>
</div>
<script>
  $(function(){
    new Swiper('.render-swiper-298-0 .swiper-container',HtmlWidth >= 768 ? {"loop":false} : {"loop":false} )
  })
</script>

    <style>
      @media (min-width:769px) { 
            .auto-element-131-1>.p1 {  color:#061A57;  font-weight:bold;  font-size:.48rem;  border-radius:0 0 0 0;  text-align:center;  padding:0 0 0 0;  margin:0 0 20px 0;  }
            
            .auto-element-131-1>.p3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 30px 0;  color:#061A57;  font-weight:bold;  font-size:.24rem;  text-align:center;  }
            
            .auto-element-131-1>.p4 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 30px 0;  color:#061A57;  font-weight:bold;  font-size:.24rem;  text-align:center;  }
            
            .auto-element-131-1 {  min-height:100px;  background-color:white;  border-radius:0 0 0 0;  padding:40px 0 0 0;  margin:0 0 0 0;  }
             }
      @media (max-width:768px) { 
            .auto-element-131-1>.p1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:40px 0 10px 0;  font-weight:bold;  font-size:.4rem;  text-align:center;  }
            
            .auto-element-131-1>.p3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  color:#061a57;  font-weight:bold;  width:95%;  font-size:.26rem;  line-height:2;  text-align:center;  }
            
            .auto-element-131-1>.p4 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  color:#061a57;  font-weight:bold;  font-size:.26rem;  text-align:center;  }
            
            .auto-element-131-1 {  background-color:white;  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-height:100px;  }
             } 
    </style>
<div class="auto-element-131-1">
<p class="p1">海量英语学习资料<b style="color:#b51b2e;">免费领取</b></p>

<p class="p3">幼儿启蒙/小学/初中/高中/大学四六级/专业四八级/考研英语</p>

<p class="p4">/雅思托福/商务英语/VOA/BBC等</p>
</div>

    <style>
      @media (min-width:769px) { 
            .auto-element-131-2>.button2 {  padding:0 0 0 0;  margin:40px auto 40px auto;  color:white;  display:block;  font-size:.2rem;  border-radius:10px 10px 10px 10px;  background-color:rgba(195, 13, 35, 1);  box-shadow:0px 4px 10px rgba(195,13,35,0.4);  width:2rem;  text-align:center;  height:.5rem;  }
            
            .auto-element-131-2>.img1 {  border-radius:0 0 0 0;  padding:40px 0 0 0;  margin:0 0 0 0;  }
            
            .auto-element-131-2 {  background-size:50% auto;  min-height:100px;  background-color:white;  border-radius:30px 30px 30px 30px;  background-repeat:no-repeat;  background-image:url(https://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/03/13/ckjg8c6mwp8d1dw31d64c82g71df8kmk.png);  border:13px solid rgb(208, 24, 53);  padding:0 .4rem 0 .4rem;  margin:0 auto 0 auto;  background-position:center 40%;  width:1180px;  }
             }
      @media (max-width:768px) { 
            .auto-element-131-2>.button2 {  border-radius:10px 10px 10px 10px;  background-color:rgba(195, 13, 35, 1);  box-shadow:0px 4px 10px rgba(195,13,35,0.4);  padding:0 0 0 0;  margin:10px auto 10px auto;  color:white;  display:block;  width:40%;  font-size:.24rem;  text-align:center;  height:.6rem;  }
            
            .auto-element-131-2>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:10px auto 0 auto;  background-repeat:no-repeat;  background-size:40% auto;  display:block;  width:92%;  background-image:url(https://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/03/13/ckjg8c6mwp8d1dw31d64c82g71df8kmk.png);  background-position:center 40%;  }
            
            .auto-element-131-2 {  background-color:white;  border-radius:10px 10px 10px 10px;  border:5px solid rgb(208, 24, 53);  padding:0 0 0 0;  margin:0 auto 0 auto;  width:92%;  min-height:100px;  }
             } 
    </style>
<div class="auto-element-131-2">
<img class="img1" src="https://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/03/13/ytyre9h7thwmarghtph4xhzxlcpx1db4.png">

<button data-popup-id="340" data-popup-hash-plrabq="%3Cb%20style=%22color:#c30d23;%22%3E%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96%3C/b%3E388%E5%85%83%E8%AF%95%E8%AF%BE%E7%A4%BC%E5%8C%85%3C/br%3E%E5%92%8C%E6%B5%B7%E9%87%8F%E8%8B%B1%E8%AF%AD%E5%AD%A6%E4%B9%A0%E8%B5%84%E6%96%99%3C/br%3E" data-popup-hash-kwu8lz="%E7%AB%8B%E5%8D%B3%E9%A2%86%E5%8F%96" data-popup-hash-7e3lmr="%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-hdubai="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-aismo8="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7%E7%A0%81" data-popup-hash-akjdc7="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/20/j4kwal5p35p9zfw4ntfhwk7d5zndf4mn.png" class="button2">马上领取免费资料</button>
</div>

    <style>
      @media (min-width:769px) { 
            .render-jsx-157-3>.container>.text1 {  font-size:.48rem;  border-radius:0 0 0 0;  text-align:center;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  line-height:1;  }
            
            .render-jsx-157-3>.container>.btn4 {  color:rgba(255, 255, 255, 1);  font-size:30px;  border-radius:.5rem .5rem .5rem .5rem;  background-color:rgba(195, 13, 35, 1);  text-align:center;  height:.6rem;  padding:0 0 0 0;  margin:.5rem auto 0 auto;  display:none;  width:3.8rem;  }
            
            .render-jsx-157-3>.container>.text2 {  border-radius:0 0 0 0;  padding:0 0 48px 0;  margin:0 0 0 0;  font-size:.48rem;  line-height:1;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div8>.div2>.text1 {  border-radius:0 0 0 0;  padding:.2rem 0 0 0;  margin:0 0 0 0;  font-size:20px;  line-height:1;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div8>.div2>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div8>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div8>.div1>.text2 {  padding:.2rem .2rem .2rem .2rem;  margin:0 0 0 0;  color:#fff;  display:flex;  font-size:16px;  line-height:1.6;  border-radius:.12rem .12rem .12rem .12rem;  background-color:rgba(106,100,97,0.8);  top:0;  left:0;  width:100%;  justify-content:center;  position:absolute;  align-items:center;  opacity:0;  text-align:left;  height:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div8>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div8>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-height:100px;  position:relative;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div8 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:22%;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div7>.div2>.text1 {  border-radius:0 0 0 0;  padding:.2rem 0 0 0;  margin:0 0 0 0;  font-size:20px;  line-height:1;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div7>.div2>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div7>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div7>.div1>.text2 {  padding:.2rem .2rem .2rem .2rem;  margin:0 0 0 0;  color:#fff;  display:flex;  font-size:16px;  line-height:1.6;  border-radius:.12rem .12rem .12rem .12rem;  background-color:rgba(106,100,97,0.8);  top:0;  left:0;  width:100%;  justify-content:center;  position:absolute;  align-items:center;  opacity:0;  text-align:left;  height:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div7>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div7>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-height:100px;  position:relative;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div7 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:22%;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div6>.div2>.text1 {  border-radius:0 0 0 0;  padding:.2rem 0 0 0;  margin:0 0 0 0;  font-size:20px;  line-height:1;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div6>.div2>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div6>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div6>.div1>.text2 {  padding:.2rem .2rem .2rem .2rem;  margin:0 0 0 0;  color:#fff;  display:flex;  font-size:16px;  line-height:1.6;  border-radius:.12rem .12rem .12rem .12rem;  background-color:rgba(106,100,97,0.8);  top:0;  left:0;  width:100%;  justify-content:center;  position:absolute;  align-items:center;  opacity:0;  text-align:left;  height:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div6>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div6>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-height:100px;  position:relative;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div6 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:22%;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div5>.div2>.text1 {  border-radius:0 0 0 0;  padding:.2rem 0 0 0;  margin:0 0 0 0;  font-size:20px;  line-height:1;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div5>.div2>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div5>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div5>.div1>.text2 {  padding:.2rem .2rem .2rem .2rem;  margin:0 0 0 0;  color:#fff;  display:flex;  font-size:16px;  line-height:1.6;  border-radius:.12rem .12rem .12rem .12rem;  background-color:rgba(106,100,97,0.8);  top:0;  left:0;  width:100%;  justify-content:center;  position:absolute;  align-items:center;  opacity:0;  text-align:left;  height:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div5>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div5>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-height:100px;  position:relative;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div5 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:22%;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div4>.div2>.text1 {  border-radius:0 0 0 0;  padding:.2rem 0 0 0;  margin:0 0 0 0;  font-size:20px;  line-height:1;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div4>.div2>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div4>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div4>.div1>.text2 {  color:#fff;  font-size:16px;  border-radius:.12rem .12rem .12rem .12rem;  background-color:rgba(106,100,97,0.8);  top:0;  text-align:left;  height:100%;  padding:.2rem .2rem .2rem .2rem;  margin:0 0 0 0;  display:flex;  line-height:1.6;  left:0;  width:100%;  justify-content:center;  position:absolute;  align-items:center;  opacity:0;  }
            
            .render-jsx-157-3>.container>.div3>.div4>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div4>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-height:100px;  position:relative;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div4 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .3rem 0;  width:22%;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div3>.div2>.text1 {  border-radius:0 0 0 0;  padding:.2rem 0 0 0;  margin:0 0 0 0;  font-size:20px;  line-height:1;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div3>.div2>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div3>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div3>.div1>.text2 {  padding:.2rem .2rem .2rem .2rem;  margin:0 0 0 0;  color:#fff;  display:flex;  font-size:16px;  line-height:1.6;  border-radius:.12rem .12rem .12rem .12rem;  background-color:rgba(106,100,97,0.8);  top:0;  left:0;  width:100%;  justify-content:center;  position:absolute;  align-items:center;  opacity:0;  text-align:left;  height:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div3>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div3>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-height:100px;  position:relative;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .3rem 0;  width:22%;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div2>.div2>.text1 {  border-radius:0 0 0 0;  padding:.2rem 0 0 0;  margin:0 0 0 0;  font-size:20px;  line-height:1;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div2>.div2>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div2>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div2>.div1>.text2 {  padding:.2rem .2rem .2rem .2rem;  margin:0 0 0 0;  color:#fff;  display:flex;  font-size:16px;  line-height:1.6;  border-radius:.12rem .12rem .12rem .12rem;  background-color:rgba(106,100,97,0.8);  top:0;  left:0;  width:100%;  justify-content:center;  position:absolute;  align-items:center;  opacity:0;  text-align:left;  height:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div2>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div2>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-height:100px;  position:relative;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .3rem 0;  width:22%;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div1>.div2>.text1 {  border-radius:0 0 0 0;  padding:.2rem 0 0 0;  margin:0 0 0 0;  font-size:20px;  line-height:1;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div1>.div2>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div1>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div1>.div1>.text2 {  padding:.2rem .2rem .2rem .2rem;  margin:0 0 0 0;  color:#fff;  display:flex;  font-size:16px;  line-height:1.6;  flex-wrap:flex,;  border-radius:.12rem .12rem .12rem .12rem;  background-color:rgba(106,100,97,0.8);  top:0;  left:0;  width:100%;  justify-content:center;  position:absolute;  align-items:center;  opacity:0;  text-align:left;  height:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div1>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
            
            .render-jsx-157-3>.container>.div3>.div1>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-height:100px;  position:relative;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .3rem 0;  width:22%;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:flex;  min-height:100px;  justify-content:space-between;  flex-wrap:wrap;  min-width:100px;  }
            
            .render-jsx-157-3>.container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  }
            
            .render-jsx-157-3 {  background-color:white;  border-radius:0 0 0 0;  padding:.8rem 0 .8rem 0;  margin:0 0 0 0;  display:flex;  }
             }
      @media (max-width:768px) { 
            .render-jsx-157-3>.container>.text1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  font-weight:600;  display:none;  font-size:.36rem;  line-height:1.5;  text-align:center;  }
            
            .render-jsx-157-3>.container>.btn4 {  border-radius:.5rem .5rem .5rem .5rem;  background-color:#ce0e2d;  padding:0 0 0 0;  margin:0 auto 0 auto;  color:rgba(255, 255, 255, 1);  display:none;  width:90%;  font-size:.3rem;  text-align:center;  height:.9rem;  }
            
            .render-jsx-157-3>.container>.text2 {  border-radius:0 0 0 0;  padding:0 0 .5rem 0;  margin:0 0 0 0;  font-size:.48rem;  line-height:1;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div8>.div2>.text1 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  font-weight:bold;  font-size:.26rem;  line-height:1;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div8>.div2>.text2 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  color:#757575;  font-size:.24rem;  line-height:1.4;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div8>.div2 {  border-radius:0 0 0 0;  padding:0 .2rem 0 0;  margin:0 0 0 0;  flex:1;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div8>.div1>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div8>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .render-jsx-157-3>.container>.div3>.div8>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:2.4rem;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div8 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .4rem 0;  flex-direction:row-reverse;  display:flex;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div7>.div2>.text1 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  font-weight:bold;  font-size:.26rem;  line-height:1;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div7>.div2>.text2 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  color:#757575;  font-size:.24rem;  line-height:1.4;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div7>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 .2rem;  margin:0 0 0 0;  flex:1;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div7>.div1>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div7>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .render-jsx-157-3>.container>.div3>.div7>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:2.4rem;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div7 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .4rem 0;  display:flex;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div6>.div2>.text1 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  font-weight:bold;  font-size:.26rem;  line-height:1;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div6>.div2>.text2 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  color:#757575;  font-size:.24rem;  line-height:1.4;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div6>.div2 {  border-radius:0 0 0 0;  padding:0 .2rem 0 0;  margin:0 0 0 0;  flex:1;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div6>.div1>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div6>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .render-jsx-157-3>.container>.div3>.div6>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:2.4rem;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div6 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .4rem 0;  flex-direction:row-reverse;  display:flex;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div5>.div2>.text1 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  font-weight:bold;  font-size:.26rem;  line-height:1;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div5>.div2>.text2 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  color:#757575;  font-size:.24rem;  line-height:1.4;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div5>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 .2rem;  margin:0 0 0 0;  flex:1;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div5>.div1>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div5>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .render-jsx-157-3>.container>.div3>.div5>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:2.4rem;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div5 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .4rem 0;  display:flex;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div4>.div2>.text1 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  font-weight:bold;  font-size:.26rem;  line-height:1;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div4>.div2>.text2 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  color:#757575;  font-size:.24rem;  line-height:1.4;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div4>.div2 {  border-radius:0 0 0 0;  padding:0 .2rem 0 0;  margin:0 0 0 0;  flex:1;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div4>.div1>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div4>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .render-jsx-157-3>.container>.div3>.div4>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:2.4rem;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div4 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .4rem 0;  flex-direction:row-reverse;  display:flex;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div3>.div2>.text1 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  font-weight:bold;  font-size:.26rem;  line-height:1;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div3>.div2>.text2 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  color:#757575;  font-size:.24rem;  line-height:1.4;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div3>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 .2rem;  margin:0 0 0 0;  flex:1;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div3>.div1>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div3>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .render-jsx-157-3>.container>.div3>.div3>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:2.4rem;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .4rem 0;  display:flex;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div2>.div2>.text1 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  font-weight:bold;  font-size:.26rem;  line-height:1;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div2>.div2>.text2 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  color:#757575;  font-size:.24rem;  line-height:1.4;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div2>.div2 {  border-radius:0 0 0 0;  padding:0 .2rem 0 0;  margin:0 0 0 0;  flex:1;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div2>.div1>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div2>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .render-jsx-157-3>.container>.div3>.div2>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:2.4rem;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .4rem 0;  flex-direction:row-reverse;  display:flex;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div1>.div2>.text1 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  font-weight:bold;  font-size:.26rem;  line-height:1;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div1>.div2>.text2 {  border-radius:0 0 0 0;  padding:.1rem 0 0 0;  margin:0 0 0 0;  color:#757575;  font-size:.24rem;  line-height:1.4;  text-align:left;  }
            
            .render-jsx-157-3>.container>.div3>.div1>.div2 {  border-radius:0 0 0 0;  padding:0 0 0 .2rem;  margin:0 0 0 0;  flex:1;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div1>.div1>.text2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  font-size:14px;  text-align:center;  }
            
            .render-jsx-157-3>.container>.div3>.div1>.div1>.img1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  }
            
            .render-jsx-157-3>.container>.div3>.div1>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:2.4rem;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3>.div1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 .4rem 0;  display:flex;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container>.div3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  min-height:100px;  min-width:100px;  }
            
            .render-jsx-157-3>.container {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 auto 0 auto;  width:92%;  }
            
            .render-jsx-157-3 {  background-color:white;  border-radius:0 0 0 0;  padding:.6rem 0 0 0;  margin:0 0 0 0;  display:flex;  min-height:100px;  }
             } 
    </style>
<style>
  @media (min-width:769px) {
    .render-jsx-157-3 .item:hover .mask{
      opacity:1 !important;transition:0.3s;
    }
  }
</style>
<div class="render-jsx-157-3">
      <div class="container">
  <p class="text1">让每个人都能享受到<b style="color:#b51b2e;">高品质</b>在线英语教育</p>
  
  <p class="text2">阿卡索外教英语<b style="color:#b51b2e;">8 大优势</b></p>
  
      <div class="div3">
      <div class="div1 item">
      <div class="div1">
  <img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/03/kt2p2393d69xg96jypxhlxzbt48jrc7c.png">
  
  <p class="text2 mask">英语外教1对1在线授课,确保外教将精力,100%放在一个学员的英语提升过程上。</p>
  
      </div>
      
      <div class="div2">
  <p class="text1">严选外教一对一</p>
  
  <p class="text2">英语外教1对1在线授课,确保外教将精力,100%放在一个学员的英语提升过程上。</p>
  
      </div>
      
      </div>
      
      <div class="div2 item">
      <div class="div1">
  <img class="img1" src="https://img.acadsoc.com.cn/web/lps/om-tg/img/ys2.png">
  
  <p class="text2 mask">阿卡索成人英语在线课程,彻底解决学员“上课时间不定”、“上课距离遥远”等问题。</p>
  
      </div>
      
      <div class="div2">
  <p class="text1">随时随地在线学</p>
  
  <p class="text2">阿卡索成人英语在线课程,彻底解决学员“上课时间不定”、“上课距离遥远”等问题。</p>
  
      </div>
      
      </div>
      
      <div class="div3 item">
      <div class="div1">
  <img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/03/h1d2wepwk3bl64ebw37lxbj4mtlnzr1d.png">
  
  <p class="text2 mask">全英环境母语式熏陶,沉浸式深度灌输,让你学会直接用英语思维进行理解,快速养成英语用语习惯。</p>
  
      </div>
      
      <div class="div2">
  <p class="text1">纯英文语言环境</p>
  
  <p class="text2">全英环境母语式熏陶,沉浸式深度灌输,让你学会直接用英语思维进行理解,快速养成英语用语习惯。</p>
  
      </div>
      
      </div>
      
      <div class="div4 item">
      <div class="div1">
  <img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/18/7lxedptp5j7pctbgc5gw1dy3bp7n64e6.png">
  
  <p class="text2 mask">阿卡索保证,所有外教均持TESOL等国际教学证书,且在全球范围内受官方认可。</p>
  
      </div>
      
      <div class="div2">
  <p class="text1">外教均持证</p>
  
  <p class="text2">阿卡索保证,所有外教均持TESOL等国际教学证书,且在全球范围内受官方认可。</p>
  
      </div>
      
      </div>
      
      <div class="div5 item">
      <div class="div1">
  <img class="img1" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/03/49akfxktw3adck3ye9rbz6h4gb3dwc2y.png">
  
  <p class="text2 mask">严选外教+学习顾问+贴心客服,全程跟进您的学习进度,为您的学习保驾护航。</p>
  
      </div>
      
      <div class="div2">
  <p class="text1">3对1贴心服务</p>
  
  <p class="text2">严选外教+学习顾问+贴心客服,全程跟进您的学习进度,为您的学习保驾护航。</p>
  
      </div>
      
      </div>
      
      <div class="div6 item">
      <div class="div1">
  <img class="img1" src="https://img.acadsoc.com.cn/web/lps/om-tg/img/ys6.png">
  
  <p class="text2 mask">阿卡索率先引进国际英语原版教材,对标国际品质教学标准,让您的英语晋升之路,起步则与世界同步。</p>
  
      </div>
      
      <div class="div2">
  <p class="text1">国际原版教材</p>
  
  <p class="text2">阿卡索率先引进国际英语原版教材,对标国际品质教学标准,让您的英语晋升之路,起步则与世界同步。</p>
  
      </div>
      
      </div>
      
      <div class="div7 item">
      <div class="div1">
  <img class="img1" src="https://img.acadsoc.com.cn/web/lps/om-tg/img/ys7.png">
  
  <p class="text2 mask">阿卡索重新调整发展战略,大大降低运营成本和学员入学门槛,全面打造“高性价比课程”。</p>
  
      </div>
      
      <div class="div2">
  <p class="text1">低至13.8元/课</p>
  
  <p class="text2">阿卡索重新调整发展战略,大大降低运营成本和学员入学门槛,全面打造“高性价比课程”。</p>
  
      </div>
      
      </div>
      
      <div class="div8 item">
      <div class="div1">
  <img class="img1" src="https://img.acadsoc.com.cn/web/lps/om-tg/img/ys8.png">
  
  <p class="text2 mask">课程根据学员的基础水平、性格特征、学习目的等维度,量身定制,针对性提升。</p>
  
      </div>
      
      <div class="div2">
  <p class="text1">量身定制课程</p>
  
  <p class="text2">课程根据学员的基础水平、性格特征、学习目的等维度,量身定制,针对性提升。</p>
  
      </div>
      
      </div>
      
      </div>
      
  <button class="btn4" data-popup-id="304" data-popup-hash-ktyvoe="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-wp8rrb="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-auus4v="%3Cbr%3E%E9%A9%AC%E4%B8%8A%E5%85%8D%E8%B4%B9%E4%BD%93%E9%AA%8C" data-popup-hash-i8mggc="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/10/21/h5z5kjktrjbyz2y9gjrhfxm68xajh68k.png" data-popup-hash-ubbhk1="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-xugu8q="%E9%A9%AC%E4%B8%8A%E4%BD%93%E9%AA%8C" data-popup-hash-x8aofx="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/08/pf25bralpgwt8hmyzm9mrgmjr3e51dp3.png">马上免费体验</button>
  
      </div>
      </div>

    <style>
      @media (min-width:769px) { 
            .render-jsx-365-1VfWYR>.con>.div>.wx {  color:#b71d25;  }
            
            .render-jsx-365-1VfWYR>.con>.div>.text {  border-radius:0 0 0 0;  padding:0 .1rem 0 .1rem;  margin:0 0 0 0;  color:#666;  font-size:.24rem;  line-height:1.6;  text-align:center;  }
            
            .render-jsx-365-1VfWYR>.con>.div {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.6rem 0 0 0;  top:3.3rem;  width:100%;  position:absolute;  text-align:center;  }
            
            .render-jsx-365-1VfWYR>.con>.code {  border-radius:0 0 0 0;  transform:translateX(-50%);  top:1.3rem;  border:3px solid rgba(225,201,159);  padding:0 0 0 0;  margin:0 0 0 0;  left:50%;  width:60%;  position:absolute;  }
            
            .render-jsx-365-1VfWYR>.con>.bgimg {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
            
            .render-jsx-365-1VfWYR>.con>.btn {  color:#fff;  font-size:.22rem;  background-color:#1b2d78;  border-radius:60px 60px 60px 60px;  transform:translateX(-50%);  height:.6rem;  padding:0 0 0 0;  margin:0 0 0 0;  bottom:.3rem;  display:none;  left:50%;  width:70%;  position:absolute;  }
            
            .render-jsx-365-1VfWYR>.con>.close {  transform:translateX(-50%);  left:50%;  bottom:-.7rem;  width:.6rem;  position:absolute;  }
            
            .render-jsx-365-1VfWYR>.con {  transform:translate(-50%,-50%);  top:45%;  left:50%;  width:4rem;  position:absolute;  }
            
            .render-jsx-365-1VfWYR {  background-color:rgba(0,0,0,0.5);  top:0;  left:0;  bottom:0;  position:fixed;  right:0;  }
             }
      @media (max-width:768px) { 
            .render-jsx-365-1VfWYR>.con>.div>.wx {  color:#b71d25;  }
            
            .render-jsx-365-1VfWYR>.con>.div>.text {  color:#666;  font-size:.3rem;  border-radius:0 0 0 0;  text-align:center;  padding:0 .1rem 0 .1rem;  margin:0 0 0 0;  line-height:1.6;  width:100%;  }
            
            .render-jsx-365-1VfWYR>.con>.div {  border-radius:0 0 0 0;  top:4.2rem;  text-align:center;  padding:0 0 0 0;  margin:1.4rem 0 0 0;  width:100%;  position:absolute;  }
            
            .render-jsx-365-1VfWYR>.con>.code {  border:3px solid rgba(225,201,159);  border-radius:0 0 0 0;  padding:0 0 0 0;  transform:translateX(-50%);  margin:0 0 0 0;  top:2rem;  left:50%;  width:60%;  position:absolute;  }
            
            .render-jsx-365-1VfWYR>.con>.bgimg {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  width:100%;  }
            
            .render-jsx-365-1VfWYR>.con>.btn {  padding:0 0 0 0;  margin:0 0 0 0;  color:#fff;  bottom:.3rem;  display:none;  font-size:.3rem;  background-color:#1b2d78;  border-radius:60px 60px 60px 60px;  transform:translateX(-50%);  left:50%;  width:70%;  position:absolute;  height:.8rem;  }
            
            .render-jsx-365-1VfWYR>.con>.close {  transform:translateX(-50%);  left:50%;  bottom:-.9rem;  width:.8rem;  position:absolute;  }
            
            .render-jsx-365-1VfWYR>.con {  transform:translate(-50%,-50%);  top:45%;  left:50%;  width:5.5rem;  position:absolute;  }
            
            .render-jsx-365-1VfWYR {  background-color:rgba(0,0,0,0.5);  top:0;  left:0;  bottom:0;  position:fixed;  right:0;  }
             } 
    </style>
<style>
  /* PC端 */
  @media (min-width:769px) {

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

  }
</style>
<div class="render-jsx-365-1VfWYR" id="success-popup-365">
  <div class="con">
    <img class="bgimg" src="https://img.acadsoc.com.cn/web/lps/sem/qrcode/img/bg.png">
    <img class="code" src="https://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/03/13/r7kxncnxdrbrnw2zpendap3axb1d7wx9.jpg">
    <div class="div">
      <span class="text">扫码关注公众号<br><strong style="color:#333;"><span style="color:#b71d25;">领取海量免费资料</span></strong></span><strong style="color:#333;">
      <span class="wx"></span>
    </strong></div><strong style="color:#333;">
    <button class="btn" data-copy-wx="">复制微信号</button>
    <img class="close close-popup" src="https://img.acadsoc.com.cn/web/lps/sem/qrcode/img/close.png">
  </strong></div><strong style="color:#333;">
</strong></div>
    <style>
      @media (min-width:769px) { 
            .auto-element-304-model>.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-model>.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-model>.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-model>.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-model>.div1>.regphone4 {  margin:.2rem auto 0 auto;  width:4rem;  }
            
            .auto-element-304-model>.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-model>.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-model>.div1>.regphone5 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  width:3rem;  }
            
            .auto-element-304-model>.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-model>.div1>.img2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  display:none;  }
            
            .auto-element-304-model>.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-model {  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) { 
            .auto-element-304-model>.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-model>.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-model>.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-model>.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-model>.div1>.regphone4 {  margin:.2rem auto 0 auto;  top:.3rem;  width:6rem;  }
            
            .auto-element-304-model>.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-model>.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-model>.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-model>.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-model>.div1>.img2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:-1rem 0 0 0;  }
            
            .auto-element-304-model>.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-model {  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>
<div id="register-popup-304" style="display:none;" class="auto-element-304-model">
    <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="x8aofx">

<p class="p2" data-modal-hash="auus4v"><br>马上免费体验</p>

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

    </div>
    
<button =""="" class="button7" name="registerSubmit" data-modal-hash="xugu8q">马上体验</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="i8mggc">

    </div>
    </div>

    <style>
      @media (min-width:769px) { 
            .auto-element-340-model>.div1>.p1 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  font-weight:bold;  font-size:.28rem;  text-align:center;  }
            
            .auto-element-340-model>.div1>.regbtn5 {  border-radius:10px 10px 10px 10px;  background-color:#c30d23;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  color:white;  display:block;  width:86%;  font-size:.2rem;  background-image:linear-gradient(#e8373f, #c02029, #b81c25, #c02029,#e8373f);  height:.5rem;  }
            
            .auto-element-340-model>.div1>.regcode4>.code {  border:1px solid #b81c25;  border-radius:10px 10px 10px 10px;  padding:0 0 0 .3rem;  margin:0 0 0 8px;  width:56%;  font-size:.16rem;  height:.5rem;  }
            
            .auto-element-340-model>.div1>.regcode4>.regcodebtn {  background-color:#c30d23;  border-radius:10px 10px 10px 10px;  padding:0 .3rem 0 .3rem;  margin:0 6px 0 0;  top:0;  color:white;  font-size:.16rem;  position:absolute;  right:0;  background-image:linear-gradient(#e8373f, #c02029, #b81c25, #c02029,#e8373f);  height:100%;  }
            
            .auto-element-340-model>.div1>.regcode4 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  width:4rem;  position:relative;  text-align:left;  }
            
            .auto-element-340-model>.div1>.regphone3>.phone {  border:1px solid #b81c25;  border-radius:10px 10px 10px 10px;  padding:0 .3rem 0 .3rem;  margin:0 0 0 8px;  width:96%;  font-size:.16rem;  height:.5rem;  }
            
            .auto-element-340-model>.div1>.regphone3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  width:4rem;  text-align:left;  }
            
            .auto-element-340-model>.div1>.close2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  top:.2rem;  width:.18rem;  position:absolute;  right:.2rem;  }
            
            .auto-element-340-model>.div1 {  padding:40px 0 40px 0;  margin:0 0 0 0;  background-size:100%;  min-height:100px;  border-radius:.1rem .1rem .1rem .1rem;  background-color:white;  transform:translate(-50%, -50%);  background-repeat:no-repeat;  top:50%;  left:50%;  width:4.5rem;  position:absolute;  min-width:100px;  }
            
            .auto-element-340-model {  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) { 
            .auto-element-340-model>.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-340-model>.div1>.regbtn5 {  border-radius:.1rem .1rem .1rem .1rem;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  color:white;  display:block;  width:6rem;  font-size:.32rem;  background-image:linear-gradient(#e8373f, #c02029, #b81c25, #c02029,#e8373f);  height:.9rem;  }
            
            .auto-element-340-model>.div1>.regcode4>.code {  border:1px solid #A0A0A0;  border-radius:.1rem .1rem .1rem .1rem;  padding:0 0 0 .3rem;  margin:0 0 0 0;  width:60%;  font-size:.28rem;  height:.9rem;  }
            
            .auto-element-340-model>.div1>.regcode4>.regcodebtn {  background-color:#c30d23;  border-radius:.1rem .1rem .1rem .1rem;  padding:0 .3rem 0 .3rem;  margin:0 0 0 0;  top:0;  color:white;  font-size:.28rem;  position:absolute;  right:0;  background-image:linear-gradient(#e8373f, #c02029, #b81c25, #c02029,#e8373f);  height:100%;  }
            
            .auto-element-340-model>.div1>.regcode4 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  width:6rem;  position:relative;  text-align:left;  }
            
            .auto-element-340-model>.div1>.regphone3>.phone {  border:1px solid #A0A0A0;  border-radius:.1rem .1rem .1rem .1rem;  padding:0 .3rem 0 .3rem;  margin:0 0 0 0;  width:100%;  font-size:.28rem;  height:.9rem;  }
            
            .auto-element-340-model>.div1>.regphone3 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:.2rem auto 0 auto;  top:.3rem;  width:6rem;  }
            
            .auto-element-340-model>.div1>.close2 {  border-radius:0 0 0 0;  padding:0 0 0 0;  margin:0 0 0 0;  top:0.3rem;  width:.32rem;  position:absolute;  right:.2rem;  }
            
            .auto-element-340-model>.div1 {  padding:0.6rem .2rem 0.6rem .2rem;  margin:0 0 0 0;  background-size:100%;  min-height:100px;  border-radius:.1rem .1rem .1rem .1rem;  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-340-model {  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>
<div id="register-popup-340" style="display:none;" class="auto-element-340-model">
    <div class="div1">
      
<p class="p1" data-modal-hash="plrabq"><b style="color:#c30d23;">免费领取</b>388元试课礼包<br>和海量英语学习资料<br></p>

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

    <div class="regphone3">
      
  <input name="TxtPhone" class="phone" placeholder="请输入手机号码" type="tel" data-modal-hash="aismo8">
  
    </div>
    
    <div class="regcode4">
      
  <input name="TxtCode" class="code" placeholder="验证码" type="tel" data-modal-hash="7e3lmr">
  
<button name="btnGetSMS" class="regcodebtn" data-modal-hash="hdubai">获取验证码</button>

    </div>
    
<button name="registerSubmit" class="regbtn5" data-modal-hash="kwu8lz">立即领取</button>

    </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 defaultPay = {
      sort: '',
      value: '',
    }
    var payConfig = {
      sort: '',
      value: '',
    };
    var paytype = 'wechat'; // wechat | alipay

    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]').click(function(){
        copyWx($(this).attr('data-copy-wx'),$(this).attr('data-wx-alter'))
      })

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

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

        // 防止页面后退 监听
        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) {
          location.href = $(this).attr('data-mobile-href');
        } else if (bIsIpad) {
          location.href = $(this).attr('data-ipad-href');
        } else {
          location.href = $(this).attr('data-pc-href');
        }
      })

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

      $('[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);
          });
        }
      })

      if ($('[data-pay-sort]').length > 0){
        $('[data-paytype]').click(function () {
          window.paytype = this.getAttribute('data-paytype');
        });
      }


      // 注册
      register.init({
        successTxt: false, // 值为false时不执行
        successLocation: false, // 值为false时不执行
        successFn: function () {
          ABRecord.registNotice();
          //百度ocpc提交成功埋码
          window._agl && window._agl.push(['track', ['success', { t: 3 }]])
          $(".loading").hide();
          window.registerCallback && window.registerCallback();
          // customize register code
          
          return false;
        },
        type: 'code', //注册类型:normal(常规),code(验证码注册),uid(带推荐人uid)
        
      });
      

    })


    

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


</body></html>