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

</head>


<!-- style: 858 -->
<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-268-0 .container { border-radius:0 0 0 0 ;height:100%;padding:0 0 0 0 ;margin:0 auto 0 auto ;position:relative;opacity:1;border-style:none none none none; }.render-swiper-268-0 .com { z-index:3;border-radius:.1rem .1rem .1rem .1rem ;transform:translateY(-50%);top:50%;padding:.3rem .25rem .3rem .25rem ;margin:0 0 0 0 ;right:0;width:3.3rem;position:absolute;opacity:1;border-style:none none none none; }.render-swiper-268-0 .gift { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.15rem auto 0 auto ;display:none; }.render-swiper-268-0 .regbtn4 { border-radius:6px 6px 6px 6px ;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-268-0 .text1 { color:#fff;font-weight:bold;font-size:.3rem;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 .3rem 0 ;line-height:1.4;opacity:1;border-style:none none none none; }.render-swiper-268-0 .regphone2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.15rem auto 0 auto ;width:100%; }.render-swiper-268-0 .phone { font-size:.16rem;border-radius:6px 6px 6px 6px ;background-color:#fff;height:.5rem;border:1px solid #dcdcdc;padding:0 .25rem 0 .25rem ;margin:0 0 0 0 ;width:100%; }.render-swiper-268-0 .regcode3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.16rem auto 0 auto ;width:100%;position:relative;opacity:1;border-style:none none none none; }.render-swiper-268-0 .code { font-size:.16rem;border-radius:6px 6px 6px 6px ;background-color:#fff;height:.5rem;padding:0 0 0 .25rem ;margin:0 0 0 0 ;width:100%;opacity:1;border-width:1px 1px 1px 1px;border-color:#dcdcdc #dcdcdc #dcdcdc #dcdcdc;border-style:solid solid solid solid; }.render-swiper-268-0 .regcodebtn { background-color:#c30d23;border-radius:0 6px 6px 0 ;padding:0 .2rem 0 .2rem ;margin:0 0 0 0 ;top:0;color:white;font-size:.16rem;position:absolute;right:0;height:100%; }.render-swiper-268-0 .swiper { z-index:2;border-radius:0 0 0 0 ;height:100%;padding:0 0 0 0 ;margin:0 0 0 0 ;width:100%;position:absolute;opacity:1;border-style:none none none none; }.render-swiper-268-0 .slide1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;opacity:1;background-size:cover cover;background-attachment:scroll;background-repeat:no-repeat;background-position:center center;background-image:url(https://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/04/10/c1d6pmdlfdmcxd5ytlkdfzkl1d8gzn5w.png);background-clip:border-box;border-style:none none none none;box-shadow: 0 0 0  #000; }.render-swiper-268-0 .img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none;opacity:1;border-style:none none none none; }.render-swiper-268-0  { border-radius:0 0 0 0 ;height:578px;padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative;opacity:1;border-style:none none none none; }.render-jsx-423-1>.container { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:flex;width:90%;justify-content:center;align-items:center;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }.render-jsx-423-1>.container>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-size:.24rem;line-height:1;text-align:center; }.render-jsx-423-1>.container>.button2 { color:#42a8ff;font-size:.24rem;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 0 0 ;display:block;line-height:1;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }.render-jsx-423-1>.container>.checkbox { padding:0 0 0 0 ;margin:0 .06rem 0 0 ;appearance:auto;display:block;width:.22rem;height:.22rem; }.render-jsx-423-1 { background-color:white;border-radius:0 0 0 0 ;padding:.3rem 0 .3rem 0 ;margin:0 auto 0 auto ;display:none;max-width:768px;width:100%;opacity:1;border-style:none none none none; }.auto-element-132-8>.container { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;min-height:100px; }.auto-element-132-8>.container>.p1 { font-size:38px;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 0 0 ;opacity:1;border-style:none none none none; }.auto-element-132-8>.p1 { font-size:18px;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:-.2rem 0 .3rem 0 ; }.auto-element-132-8 { background-color:white;border-radius:0 0 0 0 ;padding:.6rem 0 .6rem 0 ;margin:0 0 0 0 ;min-height:100px; }.auto-element-382-9>.container { min-height:100px;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }.auto-element-382-9>.container>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative; }.auto-element-382-9>.container>.div3>.div5 { flex-wrap:wrap;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 .8rem ;display:flex;width:800px;justify-content:space-between; }.auto-element-382-9>.container>.div3>.div5>.div6 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:40%; }.auto-element-382-9>.container>.div3>.div5>.div6>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .6rem ;margin:.1rem 0 0 0 ;color:#666;font-size:.18rem; }.auto-element-382-9>.container>.div3>.div5>.div6>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative; }.auto-element-382-9>.container>.div3>.div5>.div6>.div1>.p1 { padding:0 0 0 0 ;margin:0 0 0 0 ;background-size:.45rem auto;color:#192e79;font-weight:bold;font-size:.36rem;line-height:1;background-position:0 0;border-radius:0 0 0 0 ;background-repeat:no-repeat;top:-.1rem;left:0;width:.5rem;background-image:url(https://img.acadsoc.com.cn/web/lps/lxhd/bec/img/round.png);position:absolute;text-align:right;height:.5rem; }.auto-element-382-9>.container>.div3>.div5>.div6>.div1>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .6rem ;margin:0 0 0 0 ;color:#192e79;font-weight:bold;font-size:.22rem;line-height:1; }.auto-element-382-9>.container>.div3>.div5>.div5 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .4rem 0 ;width:56%; }.auto-element-382-9>.container>.div3>.div5>.div5>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .6rem ;margin:.1rem 0 0 0 ;color:#666;font-size:.18rem; }.auto-element-382-9>.container>.div3>.div5>.div5>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative; }.auto-element-382-9>.container>.div3>.div5>.div5>.div1>.p1 { padding:0 0 0 0 ;margin:0 0 0 0 ;background-size:.45rem auto;color:#192e79;font-weight:bold;font-size:.36rem;line-height:1;background-position:0 0;border-radius:0 0 0 0 ;background-repeat:no-repeat;top:-.1rem;left:0;width:.5rem;background-image:url(https://img.acadsoc.com.cn/web/lps/lxhd/bec/img/round.png);position:absolute;text-align:right;height:.5rem; }.auto-element-382-9>.container>.div3>.div5>.div5>.div1>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .6rem ;margin:0 0 0 0 ;color:#192e79;font-weight:bold;font-size:.22rem;line-height:1; }.auto-element-382-9>.container>.div3>.div5>.div4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .4rem 0 ;width:40%; }.auto-element-382-9>.container>.div3>.div5>.div4>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .6rem ;margin:.1rem 0 0 0 ;color:#666;font-size:.18rem; }.auto-element-382-9>.container>.div3>.div5>.div4>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative; }.auto-element-382-9>.container>.div3>.div5>.div4>.div1>.p1 { padding:0 0 0 0 ;margin:0 0 0 0 ;background-size:.45rem auto;color:#192e79;font-weight:bold;font-size:.36rem;line-height:1;background-position:0 0;border-radius:0 0 0 0 ;background-repeat:no-repeat;top:-.1rem;left:0;width:.5rem;background-image:url(https://img.acadsoc.com.cn/web/lps/lxhd/bec/img/round.png);position:absolute;text-align:right;height:.5rem; }.auto-element-382-9>.container>.div3>.div5>.div4>.div1>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .6rem ;margin:0 0 0 0 ;color:#192e79;font-weight:bold;font-size:.22rem;line-height:1; }.auto-element-382-9>.container>.div3>.div5>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .4rem 0 ;width:56%; }.auto-element-382-9>.container>.div3>.div5>.div3>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .6rem ;margin:.1rem 0 0 0 ;color:#666;font-size:.18rem; }.auto-element-382-9>.container>.div3>.div5>.div3>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative; }.auto-element-382-9>.container>.div3>.div5>.div3>.div1>.p1 { padding:0 0 0 0 ;margin:0 0 0 0 ;background-size:.45rem auto;color:#192e79;font-weight:bold;font-size:.36rem;line-height:1;background-position:0 0;border-radius:0 0 0 0 ;background-repeat:no-repeat;top:-.1rem;left:0;width:.5rem;background-image:url(https://img.acadsoc.com.cn/web/lps/lxhd/bec/img/round.png);position:absolute;text-align:right;height:.5rem; }.auto-element-382-9>.container>.div3>.div5>.div3>.div1>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .6rem ;margin:0 0 0 0 ;color:#192e79;font-weight:bold;font-size:.22rem;line-height:1; }.auto-element-382-9>.container>.div3>.div5>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .4rem 0 ;width:40%; }.auto-element-382-9>.container>.div3>.div5>.div2>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .6rem ;margin:.1rem 0 0 0 ;color:#666;font-size:.18rem; }.auto-element-382-9>.container>.div3>.div5>.div2>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative; }.auto-element-382-9>.container>.div3>.div5>.div2>.div1>.p1 { padding:0 0 0 0 ;margin:0 0 0 0 ;background-size:.45rem auto;color:#192e79;font-weight:bold;font-size:.36rem;line-height:1;background-position:0 0;border-radius:0 0 0 0 ;background-repeat:no-repeat;top:-.1rem;left:0;width:.5rem;background-image:url(https://img.acadsoc.com.cn/web/lps/lxhd/bec/img/round.png);position:absolute;text-align:right;height:.5rem; }.auto-element-382-9>.container>.div3>.div5>.div2>.div1>.p3 { border-radius:0 0 0 0 ;padding:0 0 0 .6rem ;margin:0 0 0 0 ;color:#192e79;font-weight:bold;font-size:.22rem;line-height:1; }.auto-element-382-9>.container>.div3>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 -1.1rem -1.2rem 0 ;bottom:0;display:block;width:440px;position:absolute;right:-30px; }.auto-element-382-9 { background-color:white;border-radius:0 0 0 0 ;padding:.6rem 0 1.6rem 0 ;margin:-.6rem 0 0 0 ;min-height:100px; }.auto-element-424-15>.container { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }.auto-element-424-15>.container>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:flex;justify-content:space-between;align-items:center;min-width:100px; }.auto-element-424-15>.container>.div2>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ; }.auto-element-424-15>.container>.div2>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;line-height:2;opacity:1;min-width:100px;border-style:none none none none; }.auto-element-424-15>.container>.div2>.div1>.p1 { color:#999;font-size:.14rem;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;line-height:1;opacity:1;border-style:none none none none; }.auto-element-424-15>.container>.div2>.div1>.p2 { color:#999;font-size:.14rem;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.06rem 0 .06rem 0 ;line-height:1;opacity:1;border-style:none none none none; }.auto-element-424-15>.container>.div2>.div1>.p3 { color:#999;font-size:.14rem;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;line-height:1;opacity:1;border-style:none none none none; }.auto-element-424-15>.container>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:none; }.auto-element-424-15 { background-color:#333;border-radius:0 0 0 0 ;padding:.3rem 0 .3rem 0 ;margin:0 0 0 0 ;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }.render-jsx-126-16 .btnwrap { transform:translateY(-50%);z-index:2;top:60%;width:1.2rem;position:fixed;right:0; }.render-jsx-126-16 .finger { border-radius:0 0 0 0 ;padding:0 0 0 0 ;z-index:2;margin:0 0 0 0 ;left:-.2rem;bottom:.2rem;display:none;width:.8rem;position:absolute; }.render-jsx-126-16 .btn { border-radius:0 0 0 0 ;padding:0 0 0 0 ;z-index:1;margin:0 0 0 0 ;display:block;width:100%;position:relative; }.render-jsx-126-16 .info { border-radius:0 0 0 0 ;padding:0 0 0 0 ;z-index:0;margin:0 0 0 0 ;max-width:initial;bottom:9px;display:none;width:3rem;position:absolute;right:10px; }.render-jsx-126-16 .container { margin:0 auto 0 auto ; }.render-jsx-126-16  { background-color:#fff; }.render-jsx-175-BvOtWs-uyjYAT>.con { background-color:white;border-radius:20px 20px 20px 20px ;transform:translate(-50%,-50%);top:50%;padding:1.2rem 0 .4rem 0 ;margin:0 auto 0 auto ;left:50%;width:4.5rem;position:absolute;opacity:1;border-style:none none none none; }.render-jsx-175-BvOtWs-uyjYAT>.con>.regbtn { border-radius:60px;background-color:#c30d23;margin:0 auto;color:white;font-weight:bold;display:block;width:4rem;font-size:16px;height:.55rem; }.render-jsx-175-BvOtWs-uyjYAT>.con>.img { border-radius:0 0 0 0 ;text-align:center;padding:0 .28rem 0 .2rem ;margin:-.75rem 0 0 0 ;width:100%;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }.render-jsx-175-BvOtWs-uyjYAT>.con>.regphone { margin:.2rem auto 0 auto ;width:4rem; }.render-jsx-175-BvOtWs-uyjYAT>.con>.regphone>.phone { font-size:16px;border-radius:60px 60px 60px 60px ;height:.5rem;padding:0 0 0 .3rem ;margin:0 0 0 0 ;width:100%;opacity:1;border-width:1px 1px 1px 1px;border-color:#A0A0A0 #A0A0A0 #A0A0A0 #A0A0A0;border-style:solid solid solid solid; }.render-jsx-175-BvOtWs-uyjYAT>.con>.closeimg { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;top:.16rem;width:.23rem;right:.16rem;position:absolute; }.render-jsx-175-BvOtWs-uyjYAT>.con>.regcode { margin:.2rem auto .2rem auto ;width:4rem;position:relative; }.render-jsx-175-BvOtWs-uyjYAT>.con>.regcode>.code { border:1px solid #A0A0A0;border-radius:60px;padding:0 0 0 .3rem ;width:100%;font-size:16px;line-height:.5rem;height:.5rem; }.render-jsx-175-BvOtWs-uyjYAT>.con>.regcode>.regcodebtn { background-color:#c30d23;border-radius:60px;padding:0 30px 0 30px ;top:0;color:white;font-size:16px;position:absolute;right:0;height:100%; }.render-jsx-175-BvOtWs-uyjYAT>.con>.title { font-size:18px;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:.1rem 0 .2rem 0 ;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }.render-jsx-175-BvOtWs-uyjYAT { background-color:rgba(0,0,0,0.5);border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:fixed;opacity:1;border-style:none none none none; }.render-jsx-288-DrV0mL-eNi4nb>.div1 { background-size:100%;min-height:100px;border-radius:.14rem .14rem .14rem .14rem ;background-color:white;transform:translate(-50%, -50%);background-repeat:no-repeat;top:50%;padding:.4rem 0 .4rem 0 ;margin:0 0 0 0 ;left:50%;width:4.5rem;position:absolute;min-width:100px; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.p1 { font-weight:bold;font-size:26px;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 0 0 ;opacity:1;border-style:none none none none; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.regcode5 { margin:.2rem auto 0 auto ;width:4rem;position:relative; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.regcode5>.code { border:1px solid #A0A0A0;border-radius:60px 60px 60px 60px ;padding:0 0 0 .3rem ;margin:0 0 0 0 ;width:100%;font-size:.16rem;height:.5rem; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.regcode5>.regcodebtn { background-color:#c30d23;border-radius:60px;padding:0 .3rem 0 .3rem ;top:0;color:white;font-size:.16rem;position:absolute;right:0;height:100%; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.img3 { border-radius:0 0 0 0 ;padding:.2rem 0 0 0 ;margin:0 auto 0 auto ;display:none; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.p2 { color:#666;font-size:18px;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:.1rem 0 0 0 ;display:none;line-height:1.4;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.regphone4 { margin:.2rem auto 0 auto ;width:4rem; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.regphone4>.phone { border:1px solid #A0A0A0;border-radius:60px 60px 60px 60px ;padding:0 .3rem 0 .3rem ;margin:0 0 0 0 ;width:100%;font-size:.16rem;height:.5rem; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.img7 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;top:.15rem;position:absolute;right:.15rem; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.regbtn6 { border-radius:60px 60px 60px 60px ;background-color:#c30d23;box-shadow:0px 4px 10px rgba(195,13,35,0.4);padding:0 0 0 0 ;margin:.2rem auto 0 auto ;color:white;display:block;width:400px;font-size:20px;height:50px;0px 4px 10px rgba(195,13,35,0.4) }.render-jsx-288-DrV0mL-eNi4nb { background-color:rgba(0,0,0,0.7);border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;top:0;left:0;bottom:0;position:fixed;right:0; }.auto-element-425-55smNV-2vXHKj>.div1 { z-index:10;background-size:100%;min-height:100px;border-radius:.14rem .14rem .14rem .14rem ;background-color:white;transform:translate(-50%, -50%);background-repeat:no-repeat;top:50%;height:80%;padding:.25rem .25rem .25rem .25rem ;margin:0 0 0 0 ;left:50%;width:6.6rem;position:absolute;min-width:100px; }.auto-element-425-55smNV-2vXHKj>.div1>.button2 { color:coral;font-size:.24rem;border-radius:0 0 0 0 ;text-align:center;padding:0 .1rem 0 .1rem ;margin:.12rem auto 0 auto ;display:block;line-height:1; }.auto-element-425-55smNV-2vXHKj>.div1>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:100%;min-height:100px;overflow-y:scroll;min-width:100px;height:96%; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p12 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.1rem 0 .2rem 0 ;color:#333;font-size:.14rem;line-height:1.5; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-weight:bold;font-size:.26rem;line-height:1;text-align:center; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p11 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-weight:bold;font-size:.16rem;line-height:1.2; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p3 { color:#333;font-weight:bold;font-size:.14rem;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.2rem 0 .2rem 0 ;line-height:1.2; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-weight:bold;font-size:.16rem;line-height:1.2; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p5 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.1rem 0 .2rem 0 ;color:#333;font-size:.14rem;line-height:1.5; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p6 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-weight:bold;font-size:.16rem;line-height:1.2; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p7 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.1rem 0 .2rem 0 ;color:#333;font-size:.14rem;line-height:1.5; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p8 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-weight:bold;font-size:.16rem;line-height:1.2; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p9 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.1rem 0 .2rem 0 ;color:#333;font-size:.14rem;line-height:1.5; }.auto-element-425-55smNV-2vXHKj { background-color:rgba(0,0,0,0.7);border-radius:0 0 0 0 ;padding:0 0 0 0 ;z-index:10;margin:0 0 0 0 ;top:0;left:0;bottom:0;position:fixed;right:0; }
    }
    @media (max-width:768px) { 
      .render-swiper-268-0 .container { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;position:relative;opacity:1;border-style:none none none none; }.render-swiper-268-0 .com { z-index:2;background-color:#fff;border-radius:.1rem .1rem .1rem .1rem ;transform:translateY(0);top:initial;padding:0 .2rem 0 .2rem ;margin:.4rem auto .4rem auto ;right:initial;width:92%;position:relative;opacity:1;border-style:none none none none; }.render-swiper-268-0 .gift { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.24rem auto 0 auto ;display:none; }.render-swiper-268-0 .regbtn4 { border-radius:6px 6px 6px 6px ;background-color:#192e79;padding:0 0 0 0 ;margin:.3rem auto 0 auto ;color:white;display:block;width:100%;font-size:.32rem;height:.9rem; }.render-swiper-268-0 .text1 { color:rgba(20, 43, 136, 1);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 ;line-height:1.4;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }.render-swiper-268-0 .regphone2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.3rem auto 0 auto ;top:.3rem;width:100%; }.render-swiper-268-0 .phone { border:1px solid #dcdcdc;border-radius:6px 6px 6px 6px ;background-color:#fff;padding:0 .4rem 0 .4rem ;margin:0 0 0 0 ;width:100%;font-size:.28rem;height:.9rem; }.render-swiper-268-0 .regcode3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.3rem auto 0 auto ;width:100%;position:relative;opacity:1;border-style:none none none none; }.render-swiper-268-0 .code { font-size:.28rem;border-radius:6px 6px 6px 6px ;background-color:#fff;height:.9rem;padding:0 0 0 .4rem ;margin:0 0 0 0 ;width:100%;opacity:1;border-width:1px 1px 1px 1px;border-color:#dcdcdc #dcdcdc #dcdcdc #dcdcdc;border-style:solid solid solid solid; }.render-swiper-268-0 .regcodebtn { background-color:#c30d23;border-radius:0 6px 6px 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-268-0 .swiper { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:100%;opacity:1;border-style:none none none none; }.render-swiper-268-0 .slide1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;opacity:1;border-style:none none none none; }.render-swiper-268-0 .img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:100%;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }.render-swiper-268-0  { background-color:#fff;border-radius:0 0 0 0 ;padding:0 0 .1rem 0 ;margin:0 0 0 0 ;position:relative;opacity:1;border-style:none none none none; }.render-jsx-423-1>.container { border-radius:0 0 0 0 ;padding:0 .3rem 0 .3rem ;margin:0 auto 0 auto ;display:flex;justify-content:center;align-items:center;opacity:1;border-style:none none none none; }.render-jsx-423-1>.container>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-size:.32rem;line-height:1;text-align:center; }.render-jsx-423-1>.container>.button2 { color:#42a8ff;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;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }.render-jsx-423-1>.container>.checkbox { padding:0 0 0 0 ;margin:0 .1rem 0 0 ;appearance:auto;display:block;width:.3rem;height:.3rem; }.render-jsx-423-1 { background-color:white;border-radius:0 0 0 0 ;padding:.1rem 0 .3rem 0 ;margin:0 0 0 0 ;opacity:1;border-style:none none none none; }.auto-element-132-8>.container { border-radius:0 0 0 0 ;padding:0 .3rem -.3rem .3rem ;margin:0 auto 0 auto ;min-height:100px; }.auto-element-132-8>.container>.p1 { font-size:24px;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 0 0 ;opacity:1;border-style:none none none none; }.auto-element-132-8>.p1 { font-size:14px;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:-1rem 0 0 0 ; }.auto-element-132-8 { background-color:white;border-radius:0 0 0 0 ;padding:.3rem 0 .3rem 0 ;margin:0 0 0 0 ;min-height:100px; }.auto-element-382-9>.container { border-radius:0 0 0 0 ;padding:0 .3rem 0 .3rem ;margin:-.2rem auto 0 auto ;min-height:100px; }.auto-element-382-9>.container>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative; }.auto-element-382-9>.container>.div3>.div5 { border-radius:0 0 0 0 ;padding:0 0 .2rem 0 ;margin:0 0 0 0 ;width:57%; }.auto-element-382-9>.container>.div3>.div5>.div6 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .2rem 0 ; }.auto-element-382-9>.container>.div3>.div5>.div6>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .74rem ;margin:.15rem .5rem 0 0 ;color:#666;font-size:.24rem;line-height:1.4; }.auto-element-382-9>.container>.div3>.div5>.div6>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative; }.auto-element-382-9>.container>.div3>.div5>.div6>.div1>.p1 { padding:0 0 0 0 ;margin:0 0 0 0 ;background-size:.5rem auto;color:#192e79;font-weight:bold;font-size:.4rem;background-position:left top;border-radius:0 0 0 0 ;background-repeat:no-repeat;top:-.1rem;left:0;width:.6rem;background-image:url(https://img.acadsoc.com.cn/web/lps/lxhd/bec/img/round.png);position:absolute;text-align:right;height:.5rem; }.auto-element-382-9>.container>.div3>.div5>.div6>.div1>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .74rem ;margin:0 0 0 0 ;color:#192e79;font-weight:bold;font-size:.28rem;line-height:1; }.auto-element-382-9>.container>.div3>.div5>.div5 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .2rem 0 ; }.auto-element-382-9>.container>.div3>.div5>.div5>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .74rem ;margin:.15rem .5rem 0 0 ;color:#666;font-size:.24rem;line-height:1.4; }.auto-element-382-9>.container>.div3>.div5>.div5>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative; }.auto-element-382-9>.container>.div3>.div5>.div5>.div1>.p1 { padding:0 0 0 0 ;margin:0 0 0 0 ;background-size:.5rem auto;color:#192e79;font-weight:bold;font-size:.4rem;background-position:left top;border-radius:0 0 0 0 ;background-repeat:no-repeat;top:-.1rem;left:0;width:.6rem;background-image:url(https://img.acadsoc.com.cn/web/lps/lxhd/bec/img/round.png);position:absolute;text-align:right;height:.5rem; }.auto-element-382-9>.container>.div3>.div5>.div5>.div1>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .74rem ;margin:0 0 0 0 ;color:#192e79;font-weight:bold;font-size:.28rem;line-height:1; }.auto-element-382-9>.container>.div3>.div5>.div4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .2rem 0 ; }.auto-element-382-9>.container>.div3>.div5>.div4>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .74rem ;margin:.15rem 0 0 0 ;color:#666;font-size:.24rem;line-height:1.4; }.auto-element-382-9>.container>.div3>.div5>.div4>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative; }.auto-element-382-9>.container>.div3>.div5>.div4>.div1>.p1 { padding:0 0 0 0 ;margin:0 0 0 0 ;background-size:.5rem auto;color:#192e79;font-weight:bold;font-size:.4rem;background-position:left top;border-radius:0 0 0 0 ;background-repeat:no-repeat;top:-.1rem;left:0;width:.6rem;background-image:url(https://img.acadsoc.com.cn/web/lps/lxhd/bec/img/round.png);position:absolute;text-align:right;height:.5rem; }.auto-element-382-9>.container>.div3>.div5>.div4>.div1>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .74rem ;margin:0 0 0 0 ;color:#192e79;font-weight:bold;font-size:.28rem;line-height:1; }.auto-element-382-9>.container>.div3>.div5>.div3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .2rem 0 ; }.auto-element-382-9>.container>.div3>.div5>.div3>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .74rem ;margin:.15rem 0 0 0 ;color:#666;font-size:.24rem;line-height:1.4; }.auto-element-382-9>.container>.div3>.div5>.div3>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative; }.auto-element-382-9>.container>.div3>.div5>.div3>.div1>.p1 { padding:0 0 0 0 ;margin:0 0 0 0 ;background-size:.5rem auto;color:#192e79;font-weight:bold;font-size:.4rem;background-position:left top;border-radius:0 0 0 0 ;background-repeat:no-repeat;top:-.1rem;left:0;width:.6rem;background-image:url(https://img.acadsoc.com.cn/web/lps/lxhd/bec/img/round.png);position:absolute;text-align:right;height:.5rem; }.auto-element-382-9>.container>.div3>.div5>.div3>.div1>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .74rem ;margin:0 0 0 0 ;color:#192e79;font-weight:bold;font-size:.28rem;line-height:1; }.auto-element-382-9>.container>.div3>.div5>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 .2rem 0 ; }.auto-element-382-9>.container>.div3>.div5>.div2>.p2 { border-radius:0 0 0 0 ;padding:0 0 0 .74rem ;margin:.15rem 0 0 0 ;color:#666;font-size:.24rem;line-height:1.4; }.auto-element-382-9>.container>.div3>.div5>.div2>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:relative; }.auto-element-382-9>.container>.div3>.div5>.div2>.div1>.p1 { padding:0 0 0 0 ;margin:0 0 0 0 ;background-size:.5rem auto;color:#192e79;font-weight:bold;font-size:.4rem;background-position:left top;border-radius:0 0 0 0 ;background-repeat:no-repeat;top:-.1rem;left:0;width:.6rem;background-image:url(https://img.acadsoc.com.cn/web/lps/lxhd/bec/img/round.png);position:absolute;text-align:right;height:.5rem; }.auto-element-382-9>.container>.div3>.div5>.div2>.div1>.p3 { border-radius:0 0 0 0 ;padding:0 0 0 .74rem ;margin:0 0 0 0 ;color:#192e79;font-weight:bold;font-size:.28rem;line-height:1; }.auto-element-382-9>.container>.div3>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;overflow:hidden;bottom:0;display:block;width:5.8rem;position:absolute;right:-33%; }.auto-element-382-9 { background-color:white;border-radius:0 0 0 0 ;padding:.5rem 0 0 0 ;margin:0 0 0 0 ;overflow:hidden;min-height:100px; }.auto-element-424-15>.container { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;width:90%; }.auto-element-424-15>.container>.div2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ; }.auto-element-424-15>.container>.div2>.img2 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none; }.auto-element-424-15>.container>.div2>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;opacity:1;border-style:none none none none; }.auto-element-424-15>.container>.div2>.div1>.p1 { color:#999;font-size:.26rem;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 0 0 ;line-height:1;opacity:1;border-style:none none none none; }.auto-element-424-15>.container>.div2>.div1>.p2 { color:#999;font-size:.26rem;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:.14rem 0 .14rem 0 ;line-height:1;opacity:1;border-style:none none none none; }.auto-element-424-15>.container>.div2>.div1>.p3 { color:#999;font-size:.26rem;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 0 0 ;line-height:1.4;opacity:1;border-style:none none none none; }.auto-element-424-15>.container>.img1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto .36rem auto ;display:block; }.auto-element-424-15 { background-color:#333;border-radius:0 0 0 0 ;padding:.3rem 0 .3rem 0 ;margin:0 0 0 0 ;opacity:1;border-style:none none none none; }.render-jsx-126-16 .btnwrap { transform:translateY(-50%);z-index:2;top:60%;width:1.2rem;position:fixed;right:0; }.render-jsx-126-16 .finger { z-index:2;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;bottom:.2rem;display:none;left:-.2rem;width:.8rem;position:absolute; }.render-jsx-126-16 .btn { border-radius:0 0 0 0 ;padding:0 0 0 0 ;z-index:1;margin:0 0 0 0 ;display:block;width:100%;position:relative; }.render-jsx-126-16 .info { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none; }.render-jsx-126-16 .container { margin:0 auto 0 auto ; }.render-jsx-126-16  { background-color:#fff; }.render-jsx-175-BvOtWs-uyjYAT>.con { background-color:white;border-radius:13px 13px 13px 13px ;transform:translate(-50%,-50%);top:50%;padding:1.2rem 0 .4rem 0 ;margin:0 auto 0 auto ;left:50%;width:7rem;position:absolute;opacity:1;border-style:none none none none; }.render-jsx-175-BvOtWs-uyjYAT>.con>.regbtn { border-radius:60px;background-color:#c30d23;margin:0 auto;color:white;font-weight:bold;display:block;width:6rem;font-size:.32rem;height:.9rem; }.render-jsx-175-BvOtWs-uyjYAT>.con>.img { border-radius:10rem 10rem 0 0 ;padding:0 0 0 0 ;margin:-1.18rem 0 0 0 ;width:100%;opacity:1;border-style:none none none none; }.render-jsx-175-BvOtWs-uyjYAT>.con>.regphone { margin:.2rem auto 0 auto ;top:.3rem;width:6rem; }.render-jsx-175-BvOtWs-uyjYAT>.con>.regphone>.phone { font-size:.28rem;border-radius:60px 60px 60px 60px ;height:.9rem;padding:0 0 0 .3rem ;margin:0 0 0 0 ;width:100%;opacity:1;border-width:1px 1px 1px 1px;border-color:#A0A0A0 #A0A0A0 #A0A0A0 #A0A0A0;border-style:solid solid solid solid; }.render-jsx-175-BvOtWs-uyjYAT>.con>.closeimg { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;top:.3rem;width:.4rem;right:.3rem;position:absolute; }.render-jsx-175-BvOtWs-uyjYAT>.con>.regcode { margin:.3rem auto .3rem auto ;width:6rem;position:relative; }.render-jsx-175-BvOtWs-uyjYAT>.con>.regcode>.code { border:1px solid #A0A0A0;border-radius:60px;padding:0 0 0 .3rem ;width:100%;font-size:.28rem;height:.9rem; }.render-jsx-175-BvOtWs-uyjYAT>.con>.regcode>.regcodebtn { background-color:#c30d23;border-radius:60px;padding:0 .3rem 0 .3rem ;top:0;color:white;font-size:.3rem;position:absolute;right:0;height:100%; }.render-jsx-175-BvOtWs-uyjYAT>.con>.title { color:rgba(195, 13, 35, 1);font-weight:bold;font-size:.32rem;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:.2rem 0 .2rem 0 ;opacity:1;border-style:none none none none; }.render-jsx-175-BvOtWs-uyjYAT { background-color:rgba(0,0,0,0.5);border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;position:fixed;opacity:1;border-style:none none none none; }.render-jsx-288-DrV0mL-eNi4nb>.div1 { padding:.4rem 0 .4rem 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:6.5rem;position:absolute;min-width:100px; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.p1 { 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 ;opacity:1;border-style:none none none none; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.regcode5 { margin:.2rem auto 0 auto ;width:6rem;position:relative; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.regcode5>.code { border:1px solid #A0A0A0;border-radius:60px 60px 60px 60px ;padding:0 0 0 .3rem ;margin:0 0 0 0 ;width:100%;font-size:.28rem;height:.9rem; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.regcode5>.regcodebtn { background-color:#c30d23;border-radius:60px;padding:0 .3rem 0 .3rem ;top:0;color:white;font-size:.28rem;position:absolute;right:0;height:100%; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.img3 { border-radius:0 0 0 0 ;padding:.2rem 0 0 0 ;margin:0 auto 0 auto ;display:block;width:80%; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.p2 { color:#666;font-size:.24rem;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none;opacity:1;border-style:none none none none; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.regphone4 { margin:.2rem auto 0 auto ;top:.3rem;width:6rem; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.regphone4>.phone { border:1px solid #A0A0A0;border-radius:60px 60px 60px 60px ;padding:0 .3rem 0 .3rem ;margin:0 0 0 0 ;width:100%;font-size:.28rem;height:.9rem; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.img7 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;top:.2rem;width:.4rem;position:absolute;right:.2rem; }.render-jsx-288-DrV0mL-eNi4nb>.div1>.regbtn6 { border-radius:60px 60px 60px 60px ;background-color:#c30d23;box-shadow:0px 4px 10px rgba(195,13,35,0.4);padding:0 0 0 0 ;margin:.2rem auto 0 auto ;color:white;display:block;width:90%;font-size:.32rem;height:.9rem;0px 4px 10px rgba(195,13,35,0.4) }.render-jsx-288-DrV0mL-eNi4nb { background-color:rgba(0,0,0,0.7);border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;top:0;left:0;bottom:0;position:fixed;right:0; }.auto-element-425-55smNV-2vXHKj>.div1 { padding:.3rem .3rem .3rem .3rem ;z-index:10;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:90%;position:absolute;min-width:100px;height:80%; }.auto-element-425-55smNV-2vXHKj>.div1>.button2 { padding:0 .2rem 0 .2rem ;margin:.2rem auto 0 auto ;color:coral;display:block;font-size:.32rem;line-height:1;border-radius:0 0 0 0 ;text-align:center; }.auto-element-425-55smNV-2vXHKj>.div1>.div1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:100%;min-height:100px;overflow-y:scroll;min-width:100px;height:96%; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p12 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.1rem 0 .2rem 0 ;color:#333;font-size:.24rem;line-height:1.6; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-weight:bold;font-size:.36rem;line-height:1;text-align:center; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p11 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-weight:bold;font-size:.29rem;line-height:1; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.2rem 0 .2rem 0 ;color:#333;font-weight:bold;font-size:.26rem;line-height:1.3; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p4 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-weight:bold;font-size:.29rem; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p5 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.1rem 0 .2rem 0 ;color:#333;font-size:.24rem;line-height:1.6; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p6 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-weight:bold;font-size:.29rem;line-height:1; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p7 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.1rem 0 .2rem 0 ;color:#333;font-size:.24rem;line-height:1.6; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p8 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#333;font-weight:bold;font-size:.29rem;line-height:1; }.auto-element-425-55smNV-2vXHKj>.div1>.div1>.p9 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:.1rem 0 .2rem 0 ;color:#333;font-size:.24rem;line-height:1.6; }.auto-element-425-55smNV-2vXHKj { background-color:rgba(0,0,0,0.7);border-radius:0 0 0 0 ;padding:0 0 0 0 ;z-index:10;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-268-0">
  <div class="swiper swiper-container swiper-no-swiping">
    <div class="swiper-wrapper">
      
    	<div class="swiper-slide slide1" data-popup-id="175-BvOtWs" data-popup-hash-wg4iml="%E5%A1%AB%E5%86%99%E6%82%A8%E7%9A%84%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-tdfeo5="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-bqtote="" data-popup-hash-m8qrbd="0%E5%85%83%E8%AF%95%E8%AF%BE" data-popup-hash-pmusml="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-5dtefe="https://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/04/17/m7lgfkgnmkmf3et5z9fjgf56wz1dn97t.png" data-popup-hash-9lnket="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png">
    		<img class="img" src="https://cdnstatic.acadsoc.com.cn/landing-page/files/2021/06/11/tx31djxnrx8ex97w5j86xmnyc8rdwf2k.jpg">
    	</div>
    
    </div>
  </div>
  <div class="container">
    <div class="com">
      <p class="text1" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E4%BB%B7%E5%80%BC388%E5%85%83%E5%A4%96%E6%95%99%E5%A4%A7%E7%A4%BC%E5%8C%85%E5%85%8D%E8%B4%B9%E9%A2%86" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E9%A2%84%E7%BA%A6%E8%AF%95%E5%90%AC%E8%AF%BE%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8816%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96">0元领取外教大礼包 <span style="color:#b81c25">免费体验</span></p>
      <div class="regphone2">
        <input placeholder="请填写您的手机号" type="tel" name="TxtPhone" class="phone">
      </div>
      <div class="regcode3 duanxin">
        <input placeholder="请输入验证码" type="tel" name="TxtCode" class="code">
        <button name="btnGetSMS" class="regcodebtn">获取验证码</button>
      </div>
      <button name="registerSubmit" class="regbtn4">立即领取</button>
      <img class="gift" src="https://img.acadsoc.com.cn/web/lps/aoc/sem/ty/hy/zhyy1/v/img/reg-list.png">
    </div>
  </div>
</div>
<script>
  $(function(){
    new Swiper('.render-swiper-268-0 .swiper-container',HtmlWidth >= 768 ? {"pagination":false,"loop":false,"initialSlide":0,"slidesPerView":1,"autoplay":0,"spaceBetween":0,"direction":"horizontal"} : {"pagination":false,"loop":false,"initialSlide":0,"slidesPerView":1,"autoplay":0,"spaceBetween":0,"direction":"horizontal"} )
  })
</script>
<div class="render-jsx-423-1">
  <div class="container">
		<input class="checkbox" placeholder=" " type="checkbox">
    <p class="p1">同意</p>

    <button data-popup-id="425-55smNV" data-popup-hash-8stlml="%E5%9B%9B%E3%80%81%E9%80%9A%E7%9F%A5%E5%92%8C%E4%BF%AE%E8%AE%A2" data-popup-hash-1fjjc1="1%E3%80%81%E6%82%A8%E5%90%8C%E6%84%8F%E6%88%91%E4%BB%AC%E9%80%9A%E8%BF%87%E5%A6%82%E4%B8%8B%E6%96%B9%E5%BC%8F%E4%BD%BF%E7%94%A8%E5%8F%8A%E5%AF%B9%E5%A4%96%E5%85%B1%E4%BA%AB%20%E6%82%A8%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E7%9A%84%E6%83%85%E5%86%B5(%E5%8C%85%E5%90%AB%E5%AF%B9%E4%BA%8E%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E7%9A%84%E5%AD%98%E5%82%A8%20%E5%92%8C%E5%A4%84%E7%90%86%EF%BC%89%EF%BC%9A%3Cbr%3E%3Cbr%3E%0A&amp;nbsp;&amp;nbsp;&amp;nbsp;1)%E6%88%91%E4%BB%AC%E5%9C%A8%E5%90%88%E6%B3%95%E6%AD%A3%E5%BD%93%E7%9A%84%E8%8C%83%E5%9B%B4%E5%86%85%E4%BD%BF%E7%94%A8%EF%BC%9B%3Cbr%3E%0A&amp;nbsp;&amp;nbsp;&amp;nbsp;2%EF%BC%89%E6%88%91%E4%BB%AC%E5%90%91%E6%82%A8%E6%8E%88%E6%9D%83%E7%9A%84%E6%9C%8D%E5%8A%A1%E6%8F%90%E4%BE%9B%E6%96%B9%E5%88%86%E4%BA%AB%E5%B9%B6%E7%94%B1%E5%85%B6%E5%9C%A8%20%E5%90%88%E6%B3%95%E6%AD%A3%E5%BD%93%E7%9A%84%E8%8C%83%E5%9B%B4%E5%86%85%E4%BD%BF%E7%94%A8%EF%BC%9B%3Cbr%3E%0A&amp;nbsp;&amp;nbsp;&amp;nbsp;3%EF%BC%89%E6%88%91%E4%BB%AC%E5%8F%8A%E7%9B%B8%E5%85%B3%E7%89%B9%E5%AE%9A%E8%A1%8C%E4%B8%9A%E7%9A%84%E6%9C%8D%E5%8A%A1%E6%8F%90%E4%BE%9B%E6%96%B9%E4%B8%BA%E6%BB%A1%E8%B6%B3%20%E6%82%A8%E7%9A%84%E9%9C%80%E6%B1%82%EF%BC%8C%E5%8F%AF%E8%83%BD%E4%BC%9A%E9%80%9A%E8%BF%87%E6%82%A8%E6%8F%90%E4%BE%9B%E7%9A%84%E4%BF%A1%E6%81%AF%E4%B8%8E%E6%82%A8%E8%81%94%20%E7%B3%BB%EF%BC%9B%3Cbr%3E%0A&amp;nbsp;&amp;nbsp;&amp;nbsp;4)%E4%B8%BA%E4%BA%86%E7%9C%81%E5%8E%BB%E6%82%A8%E6%89%8B%E5%8A%A8%E8%BE%93%E5%85%A5%E7%9A%84%E6%93%8D%E4%BD%9C%EF%BC%8C%E6%82%A8%E7%94%A8%E4%BA%8E%E6%B3%A8%E5%86%8C%20%E5%BF%AB%E6%89%8B%E7%9A%84%E6%89%8B%E6%9C%BA%E5%8F%B7%E5%8F%AF%E8%83%BD%E5%B7%B2%E7%BB%8F%E5%B1%95%E7%A4%BA%E5%9C%A8%E4%BF%A1%E6%81%AF%E5%BD%95%E5%85%A5%E7%95%8C%E9%9D%A2%EF%BC%8C%20%E4%BD%86%E8%BF%99%E5%B9%B6%E4%B8%8D%E4%BB%A3%E8%A1%A8%E7%AC%AC%E4%B8%89%E6%96%B9%E5%B7%B2%E7%BB%8F%E8%8E%B7%E5%8F%96%E7%9B%B8%E5%85%B3%E4%BF%A1%E6%81%AF%E3%80%82%E5%BD%93%E4%B8%94%20%E4%BB%85%E5%BD%93%E5%9C%A8%E5%90%8C%E6%84%8F%E3%80%8A%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E6%8E%88%E6%9D%83%E4%B8%8E%E4%BF%9D%E6%8A%A4%E5%A3%B0%E6%98%8E%E3%80%8B%E7%9A%84%E5%89%8D%20%E6%8F%90%E4%B8%8B%EF%BC%8C%E6%88%91%E6%96%B9%E8%8E%B7%E5%BE%97%E6%82%A8%E6%8E%88%E6%9D%83%E5%BF%AB%E6%89%8B%E4%B8%8E%E7%AC%AC%E4%B8%89%E6%96%B9%E5%88%86%E4%BA%AB%E6%82%A8%E7%9A%84%20%E7%9B%B8%E5%85%B3%E4%BF%A1%E6%81%AF(%E5%85%B7%E4%BD%93%E6%8E%88%E6%9D%83%E4%BF%A1%E6%81%AF%E7%B1%BB%E5%9E%8B%E4%BB%A5%E9%A1%B5%E9%9D%A2%E6%8F%90%E7%A4%BA%E4%B8%BA%20%E5%87%86)%E7%9A%84%E8%AE%B8%E5%8F%AF%E5%90%8E%EF%BC%8C%E6%88%91%E6%96%B9%E6%89%8D%E4%BC%9A%E5%90%91%E7%AC%AC%E4%B8%89%E6%96%B9%E5%8A%9E%E6%B3%95%E8%AE%BF%E9%97%AE%E6%82%A8%20%E4%BF%A1%E6%81%AF%E7%9A%84%E4%BB%A4%E7%89%8C%E3%80%82%E8%8B%A5%E6%82%A8%E6%8B%92%E7%BB%9D%E4%BD%BF%E7%94%A8%E9%A2%84%E5%A1%AB%E5%85%85%E5%8A%9F%E8%83%BD%EF%BC%8C%E6%88%96%E8%80%85%20%E6%8B%9F%E6%92%A4%E5%9B%9E%E4%BD%BF%E7%94%A8%E9%A2%84%E5%A1%AB%E5%85%85%E5%8A%9F%E8%83%BD%E7%9A%84%E6%8E%88%E6%9D%83%EF%BC%8C%E4%B8%8D%E5%BD%B1%E5%93%8D%E6%82%A8%E4%B8%BB%E5%8A%A8%20%E8%BE%93%E5%85%A5%E7%9B%B8%E5%85%B3%E4%BF%A1%E6%81%AF%E5%B9%B6%E7%BB%A7%E7%BB%AD%E4%BD%BF%E7%94%A8%E7%AC%AC%E4%B8%89%E6%96%B9%E7%9A%84%E4%BA%A7%E5%93%81/%E6%9C%8D%E5%8A%A1%3Cbr%3E%0A&amp;nbsp;&amp;nbsp;&amp;nbsp;5)%E6%88%91%E4%BB%AC%E5%8F%8A%E6%82%A8%E6%8E%88%E6%9D%83%E8%8C%83%E5%9B%B4%E5%86%85%E7%9A%84%E6%9C%8D%E5%8A%A1%E6%8F%90%E4%BE%9B%E6%96%B9%E5%8F%AF%E8%83%BD%E5%AE%9A%20%E6%9C%9F%E6%88%96%E4%B8%8D%E5%AE%9A%E6%9C%9F%E5%90%91%E6%82%A8%E5%8F%91%E9%80%81%E6%9C%89%E5%85%B3%E4%BA%A7%E5%93%81%E3%80%81%E6%9C%8D%E5%8A%A1%E6%88%96%E7%9B%B8%E5%85%B3%E6%B4%BB%20%E5%8A%A8%E7%9A%84%E4%BF%A1%E6%81%AF%EF%BC%8C%E6%82%A8%E5%90%8C%E6%84%8F%E6%8E%A5%E6%94%B6%E4%B8%8A%E8%BF%B0%E4%BF%A1%E6%81%AF%E3%80%82%E5%BD%93%E6%88%91%E4%BB%AC%E8%B6%85%E5%87%BA%20%E4%B8%8E%E6%9C%AC%E5%A3%B0%E6%98%8E%E5%8F%8A%E3%80%8A%E9%9A%90%E7%A7%81%E6%9D%83%E4%BF%9D%E6%8A%A4%E6%94%BF%E7%AD%96%E3%80%8B%E6%89%80%E5%A3%B0%E7%A7%B0%E7%9A%84%E7%9B%AE%E7%9A%84%20%E5%85%B7%E6%9C%89%E7%9B%B4%E6%8E%A5%E6%88%96%E5%90%88%E7%90%86%E5%85%B3%E8%81%94%E7%9A%84%E8%8C%83%E5%9B%B4%E5%90%8E%E4%BD%BF%E7%94%A8%E6%82%A8%E7%9A%84%E4%B8%AA%E4%BA%BA%E4%BF%A1%20%E6%81%AF%E7%9A%84%EF%BC%8C%E6%88%91%E4%BB%AC%E4%BC%9A%E5%86%8D%E6%AC%A1%E5%90%91%E6%82%A8%E5%91%8A%E7%9F%A5%E5%B9%B6%E5%BE%81%E5%BE%97%E6%82%A8%E7%9A%84%E5%90%8C%E6%84%8F%E3%80%82%20%E6%82%A8%E5%90%8C%E6%84%8F%E5%85%8D%E9%99%A4%E4%B8%8A%E8%BF%B0%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E7%9A%84%E6%8E%A5%E6%94%B6%E5%92%8C/%E6%88%96%E4%BD%BF%E7%94%A8%E6%96%B9%20%E5%9C%A8%E6%8C%89%E7%85%A7%E6%9C%AC%E5%A3%B0%E6%98%8E%E6%89%80%E8%BF%B0%E6%83%85%E5%BD%A2%E4%B8%8B%E8%BF%9B%E8%A1%8C%E4%BF%A1%E6%81%AF%E6%8A%AB%E9%9C%B2%E5%92%8C%E4%BD%BF%E7%94%A8%20%E8%80%8C%E5%AF%BC%E8%87%B4%E7%9A%84%E6%88%96%E5%8F%AF%E8%83%BD%E5%AF%BC%E8%87%B4%E7%9A%84%E6%89%80%E6%9C%89%E7%B4%A2%E8%B5%94%E3%80%81%E8%B4%A3%E4%BB%BB%E5%92%8C%E6%8D%9F%E5%A4%B1%3Cbr%3E%3Cbr%3E%0A2%E3%80%81%E6%88%91%E4%BB%AC%E5%B7%B2%E5%9C%A8%E7%9B%B8%E5%BA%94%E7%9A%84%E5%8A%9F%E8%83%BD%E6%A8%A1%E5%9D%97%E6%98%8E%E7%A4%BA%E5%BE%81%E5%BE%97%E4%BA%86%E6%82%A8%E7%9A%84%20%E5%90%8C%E6%84%8F%E3%80%82%E6%88%91%E4%BB%AC%E5%B7%B2%E7%BB%8F%E8%A6%81%E6%B1%82%E5%85%B6%E5%BA%94%E5%AF%B9%E6%82%A8%E7%9A%84%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E8%BF%9B%E8%A1%8C%20%E4%B8%A5%E6%A0%BC%E4%BF%9D%E5%AF%86%EF%BC%8C%E8%A6%81%E6%B1%82%E5%85%B6%E6%8C%89%E7%85%A7%E6%88%91%E4%BB%AC%E7%9A%84%E8%AF%B4%E6%98%8E%E3%80%81%E3%80%8A%E9%9A%90%E7%A7%81%E6%9D%83%20%E4%BF%9D%E6%8A%A4%E6%94%BF%E7%AD%96%E3%80%8B%E4%BB%A5%E5%8F%8A%E5%85%B6%E4%BB%96%E4%BB%BB%E4%BD%95%E7%9B%B8%E5%85%B3%E7%9A%84%E4%BF%9D%E5%AF%86%E5%92%8C%E5%AE%89%E5%85%A8%E6%8E%AA%20%E6%96%BD%E6%9D%A5%E5%A4%84%E7%90%86%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E3%80%82%3Cbr%3E%0A3%E3%80%81%E5%9C%A8%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E5%8C%BF%E5%90%8D%E5%8C%96%E6%88%96%E5%8E%BB%E6%A0%87%E8%AF%86%E5%8C%96%E7%9A%84%E5%89%8D%E6%8F%90%E4%B8%8B%EF%BC%8C%20%E6%9C%AC%E5%B9%B3%E5%8F%B0%E6%9C%89%E6%9D%83%E5%AF%B9%E6%82%A8%E6%8F%90%E4%BE%9B%E7%9A%84%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E8%BF%9B%E8%A1%8C%E6%95%B0%E6%8D%AE%E5%88%86%20%E6%9E%90%EF%BC%8C%E5%B9%B6%E5%AF%B9%E7%94%A8%E6%88%B7%E6%95%B0%E6%8D%AE%E5%BA%93%E5%8A%A0%E4%BB%A5%E5%95%86%E4%B8%9A%E5%8C%96%E4%BD%BF%E7%94%A8%E3%80%82%3Cbr%3E" data-popup-hash-gnosc5="%E4%B8%89%E3%80%81%E6%9B%B4%E6%AD%A3%E6%88%96%E6%8A%95%E8%AF%89" data-popup-hash-vqisbd="%E5%A6%82%E6%9E%9C%E6%82%A8%E9%9C%80%E8%A6%81%E6%9F%A5%E8%AF%A2%E3%80%81%E4%BF%AE%E6%94%B9%E6%88%96%E6%9B%B4%E6%AD%A3%E3%80%81%E6%92%A4%E9%94%80%E6%8E%88%E6%9D%83%E6%82%A8%E7%9A%84%20%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%EF%BC%8C%E6%88%96%E5%AF%B9%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E4%BF%9D%E6%8A%A4%E9%97%AE%E9%A2%98%E6%9C%89%E4%BB%BB%E4%BD%95%E7%96%91%E9%97%AE%20%E6%88%96%E6%8A%95%E8%AF%89%EF%BC%8C%E6%82%A8%E5%8F%AF%E4%BB%A5%E9%80%9A%E8%BF%87%E4%BB%A5%E4%B8%8B%E6%96%B9%E5%BC%8F%E8%81%94%E7%B3%BB%E6%88%91%E4%BB%AC%EF%BC%9A%E6%8B%A8%E6%89%93%20%E7%94%B5%E8%AF%9D4001260088%E3%80%82%3Cbr%3E" data-popup-hash-odjvqm="%E5%B0%8A%E6%95%AC%E7%9A%84%E7%94%A8%E6%88%B7%EF%BC%8C%E2%80%9C%E5%BF%AB%E6%89%8B%E2%80%9D%E5%8F%8A%E5%85%B6%E5%85%B3%E8%81%94%E5%85%AC%E5%8F%B8(%E4%BB%A5%E4%B8%8B%E7%AE%80%E7%A7%B0%20%E2%80%9C%E6%88%91%E4%BB%AC%E2%80%9D)%E5%B0%86%E6%8C%89%E7%85%A7%E6%9C%AC%E5%A3%B0%E6%98%8E%E5%8F%8A%E3%80%8A%E9%9A%90%E7%A7%81%E6%9D%83%E4%BF%9D%E6%8A%A4%E6%94%BF%E7%AD%96%E3%80%8B%20%E7%9A%84%E8%A7%84%E5%AE%9A%E6%94%B6%E9%9B%86%E3%80%81%E4%BF%9D%E5%AD%98%E3%80%81%E4%BD%BF%E7%94%A8%E3%80%81%E5%82%A8%E5%AD%98%E3%80%81%E5%88%86%E4%BA%AB%E3%80%81%E6%8A%AB%E9%9C%B2%20%E5%8F%8A%E4%BF%9D%E6%8A%A4%E6%82%A8%E7%9A%84%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E3%80%82%E5%9B%A0%E6%AD%A4%E8%AF%B7%E6%82%A8%E5%8A%A1%E5%BF%85%E8%AE%A4%E7%9C%9F%E5%AE%8C%E6%95%B4%20%E9%98%85%E8%AF%BB%E5%B9%B6%E7%90%86%E8%A7%A3%E6%9C%AC%E5%A3%B0%E6%98%8E%EF%BC%8C%E5%B0%A4%E5%85%B6%E6%98%AF%E9%BB%91%E4%BD%93%E5%8A%A0%E7%B2%97%E7%9A%84%E9%83%A8%E5%88%86,%20%E5%A6%82%E6%9E%9C%E6%82%A8%E4%B8%8D%E5%90%8C%E6%84%8F%E6%9C%AC%E5%A3%B0%E6%98%8E%EF%BC%8C%E8%AF%B7%E5%8B%BF%E8%BF%9B%E8%A1%8C%E4%B8%8B%E4%B8%80%E6%AD%A5%E6%93%8D%E4%BD%9C%E3%80%82" data-popup-hash-yy9caq="%E4%B8%80%E3%80%81%E6%88%91%E4%BB%AC%E6%94%B6%E9%9B%86%E5%92%8C%E4%BD%BF%E7%94%A8%E6%82%A8%E7%9A%84%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E7%B1%BB%E5%9E%8B%E5%92%8C%E7%9B%AE%E7%9A%84" data-popup-hash-pe6ekf="%E7%9F%A5%E9%81%93%E4%BA%86" data-popup-hash-w6doh4="1%E3%80%81%E4%B8%BA%E7%BB%99%E6%82%A8%E6%8F%90%E4%BE%9B%E5%AE%8C%E5%96%84%E7%9A%84%E6%9C%8D%E5%8A%A1%EF%BC%8C%E9%9C%80%E8%A6%81%E6%82%A8%E5%90%91%E6%88%91%E4%BB%AC%E6%8F%90%20%E4%BE%9B%E4%B8%80%E4%BA%9B%E4%BF%A1%E6%81%AF%EF%BC%8C%E6%88%91%E4%BB%AC%E6%94%B6%E9%9B%86%E6%82%A8%E7%9A%84%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E7%9A%84%E6%9C%80%E7%BB%88%E7%9B%AE%20%E7%9A%84%E6%98%AF%E4%B8%BA%E4%BA%86%E5%90%91%E6%82%A8%E6%8F%90%E4%BE%9B%E6%9B%B4%E5%A5%BD%E7%9A%84%E4%BA%A7%E5%93%81%E3%80%81%E6%9C%8D%E5%8A%A1%EF%BC%8C%E4%BC%98%E5%8C%96%E5%B9%B6%20%E4%B8%B0%E5%AF%8C%E6%82%A8%E7%9A%84%E7%94%A8%E6%88%B7%E4%BD%93%E9%AA%8C%EF%BC%8C%E8%BF%99%E4%BA%9B%E4%B8%AA%E4%BA%BA%E5%83%96%E6%81%AF%E7%B3%BB%E8%83%BD%E5%A4%9F%E5%8D%95%E7%8B%AC%20%E6%88%96%E8%80%85%E4%B8%8E%E5%85%B6%E4%BB%96%E4%BF%A1%E6%81%AF%E7%BB%93%E5%90%88%E8%AF%86%E5%88%AB%E6%82%A8%E7%9A%84%E4%B8%AA%E4%BA%BA%E8%BA%AB%E4%BB%BD%E7%9A%84%E4%BF%A1%20%E6%81%AF%EF%BC%8C%E5%8C%85%E6%8B%AC%E4%BD%86%E4%B8%8D%E9%99%90%E4%BA%8E%EF%BC%9A%3Cbr%3E%0A%3Cbr%3E%0A&amp;nbsp;&amp;nbsp;&amp;nbsp;(1)%E5%A7%93%E5%90%8D%3Cbr%3E%0A&amp;nbsp;&amp;nbsp;&amp;nbsp;(2)%E6%89%8B%E6%9C%BA%E5%8F%B7%E7%A0%81%3Cbr%3E%0A&amp;nbsp;&amp;nbsp;&amp;nbsp;(3)%E6%82%A8%E5%9C%A8%E6%9C%8D%E5%8A%A1%E6%8F%90%E4%BE%9B%E6%96%B9%E6%89%80%E5%BB%BA%E8%90%BD%E5%9C%B0%E9%A1%B5%E9%9D%A2%E8%BE%93%E5%85%A5%E6%88%96%E4%B8%8A%20%E8%BD%BD%E7%9A%84%E5%85%B6%E4%BB%96%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E3%80%82%3Cbr%3E%3Cbr%3E%0A2%E3%80%81%E6%82%A8%E6%8E%88%E6%9D%83%E6%88%91%E4%BB%AC%E5%B0%86%E4%B8%8A%E8%BF%B0%E4%BF%A1%E6%81%AF%E5%85%B1%E4%BA%AB%E7%BB%99%E6%82%A8%E5%9C%A8%E6%B5%8F%E8%A7%88%E7%95%8C%20%E9%9D%A2%E6%89%80%E7%9C%8B%E5%88%B0%E7%9A%84%E7%89%B9%E5%AE%9A%E8%A1%8C%E4%B8%9A%E5%AF%B9%E5%BA%94%E7%9A%84%E6%9C%8D%E5%8A%A1%E6%8F%90%E4%BE%9B%E6%96%B9%EF%BC%8C%E4%B9%8B%E5%90%8E%20%E6%82%A8%E4%BC%9A%E6%94%B6%E5%88%B0%E6%9D%A5%E8%87%AA%E8%AF%A5%E6%9C%8D%E5%8A%A1%E6%8F%90%E4%BE%9B%E6%96%B9%E7%9A%84%E7%94%B5%E8%AF%9D%E6%88%96%E7%9F%AD%E4%BF%A1%EF%BC%8C%E4%BB%A5%20%E5%90%91%E6%82%A8%E6%8F%90%E4%BE%9B%E7%9B%B8%E5%85%B3%E6%9C%8D%E5%8A%A1%E7%9A%84%E9%82%80%E8%AF%B7%E6%88%96%E9%9C%80%E6%B1%82%E6%B2%9F%E9%80%9A%EF%BC%8C%E5%8C%85%E5%90%AB%E4%BD%86%20%E4%B8%8D%E9%99%90%E4%BA%8E%EF%BC%9A%3Cbr%3E%0A%3Cbr%3E%0A&amp;nbsp;&amp;nbsp;&amp;nbsp;(1)%E6%B1%BD%E8%BD%A6%E8%A1%8C%E4%B8%9A%E6%9C%8D%E5%8A%A1%E6%8F%90%E4%BE%9B%E6%96%B9%EF%BC%8C%E9%82%80%E8%AF%B7%E6%82%A8%E8%AF%95%E9%A9%BE%E3%80%81%E5%88%B0%204s%E5%BA%97%E7%9C%8B%E8%BD%A6%E3%80%81%E5%8F%82%E4%B8%8E%E8%BD%A6%E5%8F%8B%E4%BC%9A%E6%B4%BB%E5%8A%A8%EF%BC%9B%3Cbr%3E%0A&amp;nbsp;&amp;nbsp;&amp;nbsp;(2)%E6%95%99%E8%82%B2%E8%A1%8C%E4%B8%9A%E6%9C%8D%E5%8A%A1%E6%8F%90%E4%BE%9B%E6%96%B9%EF%BC%8C%E9%82%80%E8%AF%B7%E6%82%A8%E8%AF%95%E5%90%AC%E8%AF%BE%E7%A8%8B%E3%80%81%20%E6%B2%9F%E9%80%9A%E8%AF%BE%E7%A8%8B%E9%9C%80%E6%B1%82%EF%BC%9B%3Cbr%3E%0A&amp;nbsp;&amp;nbsp;&amp;nbsp;(3%EF%BC%89%E6%97%85%E6%B8%B8%E8%A1%8C%E4%B8%9A%E6%9C%8D%E5%8A%A1%E6%8F%90%E4%BE%9B%E6%96%B9%EF%BC%8C%E4%B8%8E%E6%82%A8%E9%A2%84%E7%BA%A6%E6%B2%9F%E9%80%9A%E8%87%AA%E7%94%B1%20%E8%A1%8C%E9%9C%80%E6%B1%82%EF%BC%8C%E6%88%96%E6%B2%9F%E9%80%9A%E5%AE%9A%E5%88%B6%E6%B8%B8%E9%9C%80%E6%B1%82%EF%BC%9B%3Cbr%3E%0A&amp;nbsp;&amp;nbsp;&amp;nbsp;(4)%E5%AE%B6%E8%A3%85%E8%A1%8C%E4%B8%9A%E6%9C%8D%E5%8A%A1%E6%8F%90%E4%BE%9B%E6%96%B9%EF%BC%8C%E4%B8%8E%E6%82%A8%E9%A2%84%E7%BA%A6%E4%B8%8A%E9%97%A8%E6%B5%8B%20%E9%87%8F%E3%80%81%E9%A2%84%E7%BA%A6%E8%AE%BE%E8%AE%A1%E5%B8%88%E6%B2%9F%E9%80%9A%E8%A3%85%E4%BF%AE%E9%9C%80%E6%B1%82%EF%BC%9B%3Cbr%3E%0A&amp;nbsp;&amp;nbsp;&amp;nbsp;(5)%E5%85%B6%E4%BB%96%E9%9C%80%E8%A6%81%E8%81%94%E7%B3%BB%E6%82%A8%EF%BC%8C%E4%BB%A5%E4%BE%BF%E6%82%A8%E6%8E%A5%E5%8F%97%E7%BA%BF%E4%B8%8B%E6%9C%8D%E5%8A%A1%EF%BC%8C%20%E5%AE%9E%E5%9C%B0%E4%BD%93%E9%AA%8C%E7%9A%84%E5%9C%BA%E6%99%AF%E3%80%82%3Cbr%3E%0A%3Cbr%3E%0A3%E3%80%81%E5%BD%93%E6%82%A8%E4%BD%BF%E7%94%A8%E5%9C%A8%E7%BA%BF%E9%80%9A%E8%AF%9D%E6%9C%8D%E5%8A%A1%E6%97%B6%EF%BC%8C%E4%B8%BA%E4%BA%86%E4%BF%9D%E8%AF%81%E6%9C%8D%E5%8A%A1%20%E6%96%B9%E7%9A%84%E6%9C%8D%E5%8A%A1%E8%B4%A8%E9%87%8F%EF%BC%8C%E6%82%A8%E7%9A%84%E9%80%9A%E8%AF%9D%E5%8F%AF%E8%83%BD%E4%BC%9A%E8%A2%AB%E5%BD%95%E9%9F%B3%E3%80%82%E5%A6%82%E6%82%A8%20%E5%AF%B9%E6%AD%A4%E6%9C%89%E6%89%80%E5%BC%82%E8%AE%AE%EF%BC%8C%E8%AF%B7%E6%82%A8%E4%B8%8D%E8%A6%81%E7%82%B9%E5%87%BB%E2%80%9C%E7%94%B5%E8%AF%9D%E2%80%9D%E6%8C%89%E9%92%AE%E3%80%82%3Cbr%3E%0A4%E3%80%81%E4%BB%A5%E4%B8%8A%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E5%9D%87%E6%98%AF%E6%82%A8%E8%87%AA%E6%84%BF%E6%8F%90%E4%BE%9B%EF%BC%8C%E5%A6%82%E6%9E%9C%E6%82%A8%E6%8B%92%20%E7%BB%9D%E5%90%8C%E6%84%8F%E6%8F%90%E4%BE%9B%E7%9A%84%EF%BC%8C%E5%B0%86%E6%97%A0%E6%B3%95%E4%BD%BF%E7%94%A8%E8%AF%A5%E4%BA%A7%E5%93%81%E5%8A%9F%E8%83%BD%EF%BC%8C%E4%BD%86%E4%B8%8D%20%E4%BC%9A%E5%BD%B1%E5%93%8D%E6%82%A8%E6%AD%A3%E5%B8%B8%E4%BD%BF%E7%94%A8%E5%85%B6%E5%AE%83%E5%8A%9F%E8%83%BD%E3%80%82%3Cbr%3E%0A5%E3%80%81%E5%AF%B9%E4%BA%8E%E4%B8%8D%E6%BB%A118%E5%91%A8%E5%B2%81%E7%9A%84%E7%94%A8%E6%88%B7%EF%BC%8C%E9%A1%BB%E5%9C%A8%E5%85%B6%E6%B3%95%E5%AE%9A%E7%9B%91%20%E6%8A%A4%E4%BA%BA%E5%B7%B2%E7%BB%8F%E9%98%85%E8%AF%BB%E6%9C%AC%E6%94%BF%E7%AD%96%E5%B9%B6%E4%B8%94%E8%AE%B8%E5%8F%AF%E7%9A%84%E6%83%85%E5%86%B5%E4%B8%8B%EF%BC%8C%E9%80%9A%E8%BF%87%20%E7%BD%91%E7%AB%99%E6%8F%90%E4%BA%A4%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E3%80%82%3Cbr%3E" data-popup-hash-dvvp2t="%E4%BA%8C%E3%80%81%E6%88%91%E4%BB%AC%E5%A6%82%E4%BD%95%E4%BD%BF%E7%94%A8%E5%8F%8A%E5%85%B1%E4%BA%AB%E6%82%A8%E7%9A%84%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF" data-popup-hash-fep2ig="%E6%88%91%E4%BB%AC%E5%8F%AF%E8%83%BD%E9%80%82%E6%97%B6%E4%BF%AE%E6%94%B9%E6%9C%AC%E5%A3%B0%E6%98%8E%EF%BC%8C%E5%AF%B9%E4%BA%8E%E9%87%8D%E5%A4%A7%E5%8F%98%E6%9B%B4%EF%BC%8C%E6%88%91%20%E4%BB%AC%E4%BC%9A%E6%8F%90%E4%BE%9B%E6%9B%B4%E6%98%BE%E8%91%97%E7%9A%84%E9%80%9A%E7%9F%A5%EF%BC%8C%E6%82%A8%E5%8F%AF%E4%BB%A5%E9%80%89%E6%8B%A9%E5%81%9C%E6%AD%A2%E4%BD%BF%E7%94%A8%20%E5%BF%AB%E6%89%8B%E6%8F%90%E4%BE%9B%E7%9A%84%E4%BA%A7%E5%93%81/%E6%9C%8D%E5%8A%A1%EF%BC%9B%E5%9C%A8%E8%AF%A5%E7%A7%8D%E6%83%85%E5%86%B5%E4%B8%8B%EF%BC%8C%E5%A6%82%E6%82%A8%20%E4%BB%8D%E7%84%B6%E7%BB%A7%E7%BB%AD%E4%BD%BF%E7%94%A8%E6%88%91%E4%BB%AC%E7%9A%84%E4%BA%A7%E5%93%81/%E6%9C%8D%E5%8A%A1%EF%BC%8C%E5%8D%B3%E8%A1%A8%E7%A4%BA%E5%90%8C%E6%84%8F%20%E6%8E%A5%E5%8F%97%E7%BB%8F%E4%BF%AE%E8%AE%A2%E7%9A%84%E6%9C%AC%E5%A3%B0%E6%98%8E%E5%8F%8A%E3%80%8A%E9%9A%90%E7%A7%81%E6%9D%83%E4%BF%9D%E6%8A%A4%E6%94%BF%E7%AD%96%E3%80%8B%E7%9A%84%20%E7%BA%A6%E6%9D%9F%E3%80%82%3Cbr%3E" data-popup-hash-kmrbkv="%E4%B8%AA%E4%BA%BA%E4%BF%A1%E6%81%AF%E6%8E%88%E6%9D%83%E4%B8%8E%E4%BF%9D%E6%8A%A4%E5%A3%B0%E6%98%8E" class="button2">《个人信息授权与保护声明》</button>

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

  .render-jsx-14-2 {
  background-color:white;border-radius:0 0 0 0 ;text-align:center;padding:60px 0 50px 0 ;margin:0 0 0 0 ;opacity:1;border-style:none none none none;
  }

  .render-jsx-14-2 >p{
  color:black;font-size:38px;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 0 0 ;display:inline-block;width:100%;opacity:1;border-style:none none none none;
  }

  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-14-2 {
  background-color:white;border-radius:0 0 0 0 ;text-align:center;padding:20px 0 20px 0 ;margin:0 0 0 0 ;opacity:1;border-style:none none none none;
  }

  .render-jsx-14-2 >p{
  color:black;font-weight:=;font-size:24px;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:-.2rem 0 0 0 ;display:inline-block;width:auto;opacity:1;border-style:none none none none;
  }
  }
</style>


<div class="render-jsx-14-2">
  <p class="text" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E9%A2%84%E7%BA%A6%E8%AF%95%E5%90%AC%E8%AF%BE%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%8E%A5%E6%94%B6%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC">四大优势助力您轻松学英语</p>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
  .render-jsx-32-3 { background-color:white;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ; }
  .render-jsx-32-3>.container { flex-wrap:wrap;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:flex;width:1000px;justify-content:space-between;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }

	
	.render-jsx-32-3 .item0 { background-color:#f8f8f8;border-radius:18px 18px 18px 18px ;padding:0 0 0 0 ;margin:0 0 0 0 ;flex-direction:row-reverse;display:flex;width:470px;align-items:center; }
	.render-jsx-32-3 .item0 img { border-radius:0 0 0 0 ;height:auto;padding:0 0 0 0 ;margin:0 0 0 0 ;width:40%;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }

  .render-jsx-32-3 .item0>div { border-radius:0 0 0 0 ;padding:0 8px 0 8px ;margin:0 0 0 0 ;opacity:1;border-style:none none none none; }
  .render-jsx-32-3 .item0 .title { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#b81c25;font-weight:400;width:242px;font-size:18px;text-align:center;
	 }
  .render-jsx-32-3 .item0 .text { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:8px 0 0 .1rem ;color:#666;width:242px;font-size:15px;line-height:22px;height:66px;
	 }
	

	.render-jsx-32-3 .item1 { background-color:#f8f8f8;border-radius:18px 18px 18px 18px ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:flex;width:470px;align-items:center; }
	.render-jsx-32-3 .item1 img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:40%;height:auto; }

  .render-jsx-32-3 .item1>div { border-radius:0 0 0 0 ;padding:0 8px 0 8px ;margin:0 0 0 0 ;flex:1; }
  .render-jsx-32-3 .item1 .title { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#b81c25;font-weight:400;width:242px;font-size:18px;text-align:center;
	 }
  .render-jsx-32-3 .item1 .text { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:8px 0 0 .1rem ;color:#666;width:242px;font-size:15px;line-height:22px;height:66px;
	 }
	

	.render-jsx-32-3 .item2 { background-color:#f8f8f8;border-radius:18px 18px 18px 18px ;padding:0 0 0 0 ;margin:40px 0 0 0 ;flex-direction:row-reverse;display:flex;width:470px;align-items:center; }
	.render-jsx-32-3 .item2 img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:40%;height:auto; }

  .render-jsx-32-3 .item2>div { padding:0 8px 0 8px ;margin:0 0 0 0 ;flex:1; }
  .render-jsx-32-3 .item2 .title { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#b81c25;font-weight:400;width:242px;font-size:18px;text-align:center;
	 }
  .render-jsx-32-3 .item2 .text { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:8px 0 0 .1rem ;color:#666;width:242px;font-size:15px;line-height:22px;height:66px;
	 }
	

	.render-jsx-32-3 .item3 { background-color:#f8f8f8;border-radius:18px 18px 18px 18px ;padding:0 0 0 0 ;margin:40px 0 0 0 ;display:flex;width:470px;align-items:center; }
	.render-jsx-32-3 .item3 img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:40%;height:auto; }

  .render-jsx-32-3 .item3>div { border-radius:0 0 0 0 ;padding:0 8px 0 8px ;margin:0 0 0 0 ;flex:1; }
  .render-jsx-32-3 .item3 .title { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#b81c25;font-weight:400;width:242px;font-size:18px;text-align:center;
	 }
  .render-jsx-32-3 .item3 .text { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:8px 0 0 .1rem ;color:#666;width:242px;font-size:15px;line-height:22px;height:66px;
	 }
	

}
/* 手机端 */
@media (max-width:768px) {
  .render-jsx-32-3 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ; }
  .render-jsx-32-3>.container { flex-wrap:wrap;background-color:white;border-radius:0 0 0 0 ;padding:0 20px 0 20px ;margin:0 0 0 0 ;display:flex;justify-content:space-between;opacity:1;border-style:none none none none; }
  
	.render-jsx-32-3 .item0 { background-color:#f8f8f8;border-radius:18px 18px 18px 18px ;padding:0 0 0 0 ;margin:20px 0 0 0 ;flex-direction:row-reverse;display:flex;width:100%;align-items:center; }
	.render-jsx-32-3 .item0 img { border-radius:0 0 0 0 ;height:auto;padding:0 0 0 0 ;margin:0 0 0 0 ;width:40%;opacity:1;border-style:none none none none; }

  .render-jsx-32-3 .item0>div { border-radius:0 0 0 0 ;padding:0 10px 0 10px ;margin:0 0 0 0 ;opacity:1;border-style:none none none none; }
  .render-jsx-32-3 .item0 .title { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#b81c25;font-weight:normal;font-size:14px;text-align:center;
	 }
  .render-jsx-32-3 .item0 .text { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:8px 0 0 0 ;color:#666;font-size:12px;line-height:18px;
	 }
	

	.render-jsx-32-3 .item1 { background-color:#f8f8f8;border-radius:18px 18px 18px 18px ;padding:0 0 0 0 ;margin:20px 0 0 0 ;display:flex;width:100%;align-items:center; }
	.render-jsx-32-3 .item1 img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:40%;height:auto; }

  .render-jsx-32-3 .item1>div { border-radius:0 0 0 0 ;padding:0 10px 0 10px ;margin:0 0 0 0 ;flex:1; }
  .render-jsx-32-3 .item1 .title { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#b81c25;font-weight:normal;font-size:14px;text-align:center;
	 }
  .render-jsx-32-3 .item1 .text { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:8px 0 0 0 ;color:#666;font-size:12px;line-height:18px;
	 }
	

	.render-jsx-32-3 .item2 { background-color:#f8f8f8;border-radius:18px 18px 18px 18px ;padding:0 0 0 0 ;margin:20px 0 0 0 ;flex-direction:row-reverse;display:flex;width:100%;align-items:center; }
	.render-jsx-32-3 .item2 img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:40%;height:auto; }

  .render-jsx-32-3 .item2>div { padding:0 10px 0 10px ;margin:0 0 0 0 ;flex:1; }
  .render-jsx-32-3 .item2 .title { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#b81c25;font-weight:normal;font-size:14px;text-align:center;
	 }
  .render-jsx-32-3 .item2 .text { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:8px 0 0 0 ;color:#666;font-size:12px;line-height:18px;
	 }
	

	.render-jsx-32-3 .item3 { background-color:#f8f8f8;border-radius:18px 18px 18px 18px ;padding:0 0 0 0 ;margin:20px 0 0 0 ;display:flex;width:100%;align-items:center; }
	.render-jsx-32-3 .item3 img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:40%;height:auto; }

  .render-jsx-32-3 .item3>div { border-radius:0 0 0 0 ;padding:0 10px 0 10px ;margin:0 0 0 0 ;flex:1; }
  .render-jsx-32-3 .item3 .title { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#b81c25;font-weight:normal;font-size:14px;text-align:center;
	 }
  .render-jsx-32-3 .item3 .text { 
		border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:8px 0 0 0 ;color:#666;font-size:12px;line-height:18px;
	 }
	

}
</style>

<div class="render-jsx-32-3">
  <div class="container">
    
	<div class="item0" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%8E%A5%E6%94%B6%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC">
	<img src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining3/img/advantageImg1-blue.png">
  <div>
    <p class="title">专注在线英语教育10年</p>
    <p class="text">阿卡索专注在线英语教育10年,有丰富的教育资源和教学经验,更值得您的信赖。</p>
  </div>
</div>

	<div class="item1" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%8E%A5%E6%94%B6%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC">
	<img src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining3/img/advantageImg2-blue.png">
  <div>
    <p class="title">课程量身定制</p>
    <p class="text">了解学员真实水平,建立学习档案,定制个人学习方案,你需要的是放心学,用心学。</p>
  </div>
</div>

	<div class="item2" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%8E%A5%E6%94%B6%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC">
	<img src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining3/img/advantageImg3-blue.png">
  <div>
    <p class="title">随时随地自主约课</p>
    <p class="text">随时随地在线约课,学习自主更自由,碎片化时间高效利用,学习本不应受更多束缚。</p>
  </div>
</div>

	<div class="item3" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%8E%A5%E6%94%B6%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC">
	<img src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining3/img/advantageImg4-blue.png">
  <div>
    <p class="title">价格净省36%</p>
    <p class="text">阿卡索高性价比英语学习课程,一节课低至13.8元,梦想本不应被金钱捆绑。</p>
  </div>
</div>

  </div>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
  .render-jsx-7-4 {
  background-color:white;border-radius:0 0 0 0 ;text-align:center;padding:50px 0 60px 0 ;margin:0 0 0 0 ;
  }
  .render-jsx-7-4 >button {
  color:white;font-size:28px;background-color:#192e79;border-radius:60px 60px 60px 60px ;height:56px;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:block;line-height:2;width:380px;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000;
  }
}
/* 手机端 */
@media (max-width:768px) {
  .render-jsx-7-4 {
  background-color:white;border-radius:0 0 0 0 ;padding:30px 0 30px 0 ;margin:0 0 0 0 ;text-align:center;
  }
  .render-jsx-7-4 >button {
  color:white;font-weight:500;font-size:18px;background-color:#192e79;border-radius:6px 6px 6px 6px ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:block;line-height:2.6;width:90%;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000;
  }
}
</style>

<div class="render-jsx-7-4 render-jsx-7-4 json" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%8E%A5%E6%94%B6%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC">
  <button data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%8E%A5%E6%94%B6%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC" class="text">查看不同课程价格</button>
</div>
<style>
  /* PC端 */
  @media (min-width:769px) {

  .render-jsx-14-5 {
  background-color:#f8f8f8;border-radius:0 0 0 0 ;padding:60px 0 20px 0 ;margin:0 0 0 0 ;text-align:center;
  }

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

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

  .render-jsx-14-5 >p{
  border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:black;font-weight:500;display:inline-block;width:auto;font-size:24px;line-height:1;text-align:center;
  }
  }
</style>


<div class="render-jsx-14-5">
  <p class="text" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="0%E5%85%83%E8%AF%95%E6%95%88%E6%9E%9C" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96">英语稳步提升,升职求学无压力</p>
</div>
<style>
  .render-jsx-34-6 .title-111::after{
    content:'';
    width:20px;
    height:20px;
    left:-30px;
    background-color:#192e79;
    position:absolute;
    border-radius:50%;
   }
  /* PC端 */
  @media (min-width:769px) {
  .render-jsx-34-6 { background-color:#f8f8f8;border-radius:0 0 0 0 ;padding:0 0 50px 0 ;margin:0 0 0 0 ; }
  .render-jsx-34-6>.container { padding:0 0 0 0 ;margin:0 auto 0 auto ; }

  
.render-jsx-34-6 .item0 { border-radius:0 0 0 0 ;padding:30px 0 30px 0 ;margin:0 0 0 0 ;display:flex;align-items:center;borderBottom:2px dashed #cccccc; }
.render-jsx-34-6 .item0 img { margin:0 0 0 0 ;width:200px;height:auto; }
.render-jsx-34-6 .item0 .middle { padding:0 0 0 0 ;margin:0 0 0 80px ;flex:1; }
.render-jsx-34-6 .item0 .title { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#192e79;font-weight:normal;display:flex;font-size:24px;align-items:center;position:relative; }
.render-jsx-34-6 .item0 .text { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:25px 0 0 0 ;color:#666;font-weight:normal;width:600px;font-size:18px;line-height:1.4;height:28px; }
.render-jsx-34-6 .item0 button { color:white;font-weight:normal;font-size:18px;border-radius:60px 60px 60px 60px ;background-color:#192e79;text-align:center;height:40px;padding:6px 30px 6px 30px ;margin:0 0 0 30px ;width:205px;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }


.render-jsx-34-6 .item2 { border-radius:0 0 0 0 ;padding:30px 0 30px 0 ;margin:0 0 0 0 ;display:flex;align-items:center; }
.render-jsx-34-6 .item2 img { margin:0 0 0 0 ;width:200px;height:auto; }
.render-jsx-34-6 .item2 .middle { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 80px ;flex:1; }
.render-jsx-34-6 .item2 .title { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#192e79;font-weight:normal;display:flex;font-size:24px;align-items:center;position:relative; }
.render-jsx-34-6 .item2 .text { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:25px 0 0 0 ;color:#666;font-weight:normal;width:600px;font-size:18px;line-height:1.4;height:56px; }
.render-jsx-34-6 .item2 button { color:white;font-weight:normal;font-size:18px;border-radius:60px 60px 60px 60px ;background-color:#192e79;text-align:center;height:40px;padding:6px 30px 6px 30px ;margin:0 0 0 30px ;width:205px;opacity:1;border-style:none none none none; }


.render-jsx-34-6 .item1 { border-radius:0 0 0 0 ;padding:30px 0 30px 0 ;margin:0 0 0 0 ;display:flex;align-items:center;borderBottom:2px dashed #cccccc; }
.render-jsx-34-6 .item1 img { margin:0 0 0 0 ;width:200px;height:auto; }
.render-jsx-34-6 .item1 .middle { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 80px ;flex:1; }
.render-jsx-34-6 .item1 .title { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#192e79;font-weight:normal;display:flex;font-size:24px;align-items:center;position:relative; }
.render-jsx-34-6 .item1 .text { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:25px 0 0 0 ;color:#666;font-weight:normal;width:600px;font-size:18px;line-height:1.4;height:56px; }
.render-jsx-34-6 .item1 button { color:white;font-weight:normal;font-size:18px;border-radius:60px 60px 60px 60px ;background-color:#192e79;text-align:center;height:40px;padding:6px 30px 6px 30px ;margin:0 0 0 30px ;width:204px;opacity:1;border-style:none none none none; }



  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-34-6 { background-color:#f8f8f8;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ; }
  .render-jsx-34-6>.container { padding:0 10px 0 10px ;margin:0 auto 0 auto ; }
  
  
.render-jsx-34-6 .item0 { border-radius:0 0 0 0 ;padding:12px 0 12px 0 ;margin:0 0 0 0 ;display:flex;align-items:center; }
.render-jsx-34-6 .item0 img { margin:0 0 0 0 ;width:130px;height:auto; }
.render-jsx-34-6 .item0 .middle { padding:0 0 0 0 ;margin:0 0 0 30px ;flex:1; }
.render-jsx-34-6 .item0 .title { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#192e79;font-weight:normal;display:flex;font-size:14px;align-items:center;position:relative; }
.render-jsx-34-6 .item0 .text { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:10px 0 0 0 ;color:#666;font-weight:normal;font-size:12px;line-height:1.4; }
.render-jsx-34-6 .item0 button { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none;opacity:1;border-style:none none none none; }


.render-jsx-34-6 .item2 { border-radius:0 0 0 0 ;padding:12px 0 12px 0 ;margin:0 0 0 0 ;display:flex;align-items:center; }
.render-jsx-34-6 .item2 img { margin:0 0 0 0 ;width:130px;height:auto; }
.render-jsx-34-6 .item2 .middle { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 30px ;flex:1; }
.render-jsx-34-6 .item2 .title { padding:0 0 0 0 ;margin:0 0 0 0 ;color:#192e79;font-weight:normal;display:flex;font-size:14px;align-items:center;position:relative; }
.render-jsx-34-6 .item2 .text { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:10px 0 0 0 ;color:#666;font-weight:normal;font-size:12px;line-height:1.4; }
.render-jsx-34-6 .item2 button { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none;opacity:1;border-style:none none none none; }


.render-jsx-34-6 .item1 { border-radius:0 0 0 0 ;padding:12px 0 12px 0 ;margin:0 0 0 0 ;flex-direction:row-reverse;display:flex;align-items:center; }
.render-jsx-34-6 .item1 img { margin:0 0 0 0 ;width:130px;height:auto; }
.render-jsx-34-6 .item1 .middle { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 30px 0 30px ;flex:1; }
.render-jsx-34-6 .item1 .title { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:#192e79;font-weight:normal;display:flex;font-size:14px;align-items:center;position:relative; }
.render-jsx-34-6 .item1 .text { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:10px 0 0 0 ;color:#666;font-weight:normal;font-size:12px;line-height:1.4; }
.render-jsx-34-6 .item1 button { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none;opacity:1;border-style:none none none none; }




  .render-jsx-34-6 .title-111::after{
    width:10px ;
    height:10px ;
    background-color:#B81D26;
    left:-20px;
    top: .5em;
    }
  
    .render-jsx-34-6 .btns { border-radius:0 0 0 0 ;padding:0 10px 30px 10px ;margin:30px auto 0 auto ;display:flex;width:100%;align-items:center;opacity:1;border-style:none none none none; }
  .render-jsx-34-6 .btns .btn1 { color:#b81c25;font-size:16px;border-radius:6px 6px 6px 6px ;height:50px;text-align:center;padding:0 0 0 0 ;margin:0 0 0 0 ;line-height:50px;width:100%;opacity:1;border-width:1px 1px 1px 1px;border-color:#b81c25 #b81c25 #b81c25 #b81c25;border-style:solid solid solid solid; }
  .render-jsx-34-6 .btns .btn2 { color:white;font-size:16px;border-radius:6px 6px 6px 6px ;background-color:#192e79;height:50px;text-align:center;padding:0 0 0 0 ;margin:0 0 0 10px ;line-height:50px;width:100%;opacity:1;border-width:1px 1px 1px 1px;border-color:#192e79 #192e79 #192e79 #192e79;border-style:solid solid solid solid; }
  }
</style>

<div class="render-jsx-34-6">
  <div class="container">
    
<div class="item0">
<img src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining3/img/systemImg1-blue.png">
<div class="middle">
<p class="title">外教1对1,打造沉浸式互动课堂</p>
<p class="text">全英文环境,告别“哑巴英语”流利口语,升职求学更进一步</p>
</div>
<button data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E5%A4%96%E6%95%99%E7%AE%80%E4%BB%8B" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E5%A4%96%E6%95%99%E7%AE%80%E4%BB%8B%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%8E%A5%E5%8F%97%E5%A4%96%E6%95%99%E7%AE%80%E4%BB%8B">我也要1对1外教</button>
</div>

<div class="item1">
<img src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining3/img/systemImg2-blue.png">
<div class="middle">
<p class="title">短时高频,效果看得见</p>
<p class="text">每天25分钟线上约课,短时集中高效专注力,高频练习,口语提高明显,学习会上瘾,竞争力会上升</p>
</div>
<button data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="0%E5%85%83%E8%AF%95%E6%95%88%E6%9E%9C" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96">我也要好效果</button>
</div>

<div class="item2">
<img src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining3/img/systemImg3-blue.png">
<div class="middle">
<p class="title">三对一贴心服务</p>
<p class="text">课程顾问、外教老师、贴心客服关注追踪学习动态,学习路上不孤单,升职求学更容易</p>
</div>
<button data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="0%E5%85%83%E8%AF%95%E6%95%88%E6%9E%9C" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96">我也要3对1服务</button>
</div>

    
    <div class="btns mobile--show">
      <button class="btn1" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="0%E5%85%83%E8%AF%95%E6%95%88%E6%9E%9C" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%8E%A5%E6%94%B6%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC">免费预约试听课</button>
      <button class="btn2" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%8E%A5%E6%94%B6%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC">查看课程价格</button>
    </div>
  </div>
</div>
<style>
/* PC端 */
@media (min-width:769px) {
  
  .render-jsx-41-7 { background-color:#192e79;border-radius:0 0 0 0 ;padding:60px 0 60px 0 ;margin:0 0 0 0 ;text-align:center; }
  
  .render-jsx-41-7 .title { color:white;font-weight:normal;font-size:38px;border-radius:0 0 0 0 ;text-align:center;padding:0 0 0 0 ;margin:0 0 0 0 ;width:1140px; }
  .render-jsx-41-7 .title1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:50px auto 0 auto ;color:white;font-weight:normal;width:912px;font-size:24px;line-height:1.6;text-align:center; }
  .render-jsx-41-7 .img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:50px auto 0 auto ;display:block;width:50%; }
  .render-jsx-41-7 .text { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:50px auto 0 auto ;color:#FFFFFF99;font-weight:normal;width:912px;font-size:18px;line-height:1.6;text-align:center;height:60px; }
  
}
/* 手机端 */
@media (max-width:768px) {
  
   
    .render-jsx-41-7 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ; }
  
  .render-jsx-41-7 .title { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ; }
  .render-jsx-41-7 .title1 { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ; }
  .render-jsx-41-7 .img { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ; }
  .render-jsx-41-7 .text { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ; }
}
</style>


<div class="render-jsx-41-7 pc--show">
  <div class="container">
    <p class="title" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="0%E5%85%83%E8%AF%95%E6%95%88%E6%9E%9C" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96">阿卡索上线外教资质公示平台 外教均持证教学</p>
    
    <p class="title1">这一次,不再为外教资质而担忧!阿卡索上线国内首例外教资质公示平台,每个证书均可在阿卡索官网查询,好外教放心选,地道英语开心学。</p>
    
    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/19/r3lm8rg1d1d7rc91dbahrxyzry1dwepr.png" class="img" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="0%E5%85%83%E8%AF%95%E6%95%88%E6%9E%9C" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E5%85%8D%E8%B4%B9%E9%A2%86%E5%8F%96">
    
    <p class="text">*TESOL是国际英语教师资格证书和英语教学行业职业资格的权威国际证明。目前,阿卡索已上线外教资质公示平台,随时随地可查外教TESOL证。</p>
    
  </div>
  
</div>
<div class="auto-element-132-8 json" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E5%A4%96%E6%95%99%E7%AE%80%E4%BB%8B" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%8E%A5%E5%8F%97%E5%A4%96%E6%95%99%E7%AE%80%E4%BB%8B">

  <div class="container">

  <p class="p1">5层严格筛选外教</p>
</div>
<p class="p1">外教均完成TESOL等资格认证,TESOL外教持证者可于全球范围进行对外英语教学,是英语教学职业资格的证明</p>
</div>

<div class="auto-element-382-9 json">

  <div class="container">

  <div class="div3">

  <img class="img2" src="https://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/03/09/74c5zhjx9468hp21dcga1d5y5y2h5ypf.png">
<div class="div5">

  <div class="div2">

  <div class="div1">

  <p class="p1">01</p>
<p class="p3">简历筛选</p>
</div>
<p class="p2">知名大学毕业、持有国际外教TESOL等认证证书</p>
</div>
<div class="div3">

  <div class="div1">

  <p class="p1">02</p>
<p class="p2">HR面试</p>
</div>
<p class="p2">丰富的教学经验、口语地道、通过综合水平测试</p>
</div>
<div class="div4">

  <div class="div1">

  <p class="p1">03</p>
<p class="p2">试讲考核</p>
</div>
<p class="p2">思路清晰、擅长引导、灵活互动</p>
</div>
<div class="div5">

  <div class="div1">

  <p class="p1">04</p>
<p class="p2">上岗培训</p>
</div>
<p class="p2">熟悉课程体系、多元化沟通、教育心理学、企业文化培训</p>
</div>
<div class="div6">

  <div class="div1">

  <p class="p1">05</p>
<p class="p2">考试上岗</p>
</div>
<p class="p2">1000道题库中随机考核100道题,95分以上才予以录取</p>
</div>
</div>
</div>
</div>
</div>

<style>
  img{max-width:100%;}
  /* PC端 */
  @media (min-width:769px) {
  .render-jsx-13-10 {
  background-color:white;padding:0 0 0 0 ;margin:0 0 0 0 ;text-align:center;
  }

  .render-jsx-13-10 img {
  border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none;width:auto;height:auto;
  }
  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-13-10 {
  background-color:white;padding:0 0 0 0 ;margin:0 0 0 0 ;text-align:center;
  }

  .render-jsx-13-10 img {
  border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;display:none;width:98%;height:auto;
  }
  }
</style>


<div class="render-jsx-13-10">
    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/09/28/fx7h1d4hgc3hb7agkm2jx7wa1dmafyzm.png" class="img">
</div>
<style>
  /* PC端 */
  @media (min-width:769px) {

  .render-jsx-14-11 {
  background-color:#f8f8f8;border-radius:0 0 0 0 ;padding:60px 0 50px 0 ;margin:0 0 0 0 ;font-size:38px;text-align:center;
  }

  .render-jsx-14-11 >p{
  border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:black;display:inline-block;width:100%;line-height:1;text-align:center;
  }

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

  .render-jsx-14-11 >p{
  border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;color:black;display:inline-block;width:auto;font-size:24px;line-height:1;text-align:center;
  }
  }
</style>


<div class="render-jsx-14-11">
  <p class="text" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%9F%A5%E7%9C%8B%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7">学员印象</p>
</div>
<style>
  img{max-width:100%;}
  /* PC端 */
  @media (min-width:769px) {
  .render-jsx-13-12 {
  background-color:#f8f8f8;padding:0 0 0 0 ;margin:0 0 0 0 ;text-align:center;
  }

  .render-jsx-13-12 img {
  border-radius:0 0 0 0 ;background-color:white;height:auto;padding:0 0 0 0 ;margin:0 0 0 0 ;width:840px;
  }
  }
  /* 手机端 */
  @media (max-width:768px) {
  .render-jsx-13-12 {
  background-color:#f8f8f8;padding:0 0 0 0 ;margin:0 0 0 0 ;text-align:center;
  }

  .render-jsx-13-12 img {
  border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;width:90%;height:auto;
  }
  }
</style>


<div class="render-jsx-13-12">
    <img src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining3/img/impressionImg_pc1108.gif" class="container img" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E9%A2%84%E7%BA%A6%E8%AF%95%E5%90%AC%E8%AF%BE%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%9F%A5%E7%9C%8B%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7">
</div>
<style>
/* PC端 */
@media (min-width:769px) {
  .render-jsx-7-13 {
  background-color:#f8f8f8;border-radius:0 0 0 0 ;text-align:center;padding:50px 0 60px 0 ;margin:0 0 0 0 ;
  }
  .render-jsx-7-13 >button {
  color:white;font-size:28px;background-color:#192e79;border-radius:60px 60px 60px 60px ;height:56px;text-align:center;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:block;line-height:2;width:380px;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000;
  }
}
/* 手机端 */
@media (max-width:768px) {
  .render-jsx-7-13 {
  background-color:#f8f8f8;border-radius:0 0 0 0 ;padding:30px 0 30px 0 ;margin:0 0 0 0 ;text-align:center;
  }
  .render-jsx-7-13 >button {
  color:white;font-weight:bold;font-size:18px;background-color:#192e79;border-radius:6px 6px 6px 6px ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:block;line-height:2.6;width:90%;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000;
  }
}
</style>

<div class="render-jsx-7-13 render-jsx-7-13 json" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%9F%A5%E7%9C%8B%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7">
  <button data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%9F%A5%E7%9C%8B%E5%AD%A6%E5%91%98%E8%AF%84%E4%BB%B7" class="text">查看学员评价</button>
</div>
<style>
  .fixed{position:fixed;bottom:0;left:0;}
/* PC端 */
@media (min-width:769px) {
  .render-jsx-39-14 { background-color:#4a4a4a;padding:0 0 0 0 ;margin:0 0 0 0 ;width:100%; }
  .render-jsx-39-14>.container { border-radius:0 0 0 0 ;height:60px;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:flex;width:80%;align-items:center;position:relative;opacity:1;border-style:none none none none; }
  
  .render-jsx-39-14 img{ border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 0 ;left:0;bottom:0;width:auto;position:absolute;height:130px; }
  .render-jsx-39-14 p{ color:#fff;font-weight:normal;font-size:20px;border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 0 0 120px ;width:488px;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }
  .render-jsx-39-14 .btn1{ color:#333;font-size:18px;background-color:white;border-radius:6px 6px 6px 6px ;height:40px;padding:0 20px 0 20px ;margin:0 0 0 auto ;line-height:40px;opacity:1;border-style:none none none none;box-shadow: 0 0 0  #000; }
  .render-jsx-39-14 .btn2{ color:white;font-size:18px;background-color:#df2118;border-radius:6px 6px 6px 6px ;height:40px;padding:0 20px 0 20px ;margin:0 0 0 20px ;line-height:40px;opacity:1;border-style:none none none none; }


}
/* 手机端 */
@media (max-width:768px) {
  .render-jsx-39-14 { background-color:#4a4a4a;padding:0 0 0 0 ;margin:0 0 0 0 ;width:100%; }
  .render-jsx-39-14>.container { border-radius:0 0 0 0 ;padding:0 0 0 0 ;margin:0 auto 0 auto ;display:flex;width:100%;align-items:center;position:relative;opacity:1;border-style:none none none none; }
  
  
  .render-jsx-39-14 .btn1{ color:#333;font-size:18px;background-color:white;border-radius:0 0 0 0 ;height:40px;text-align:center;padding:0 20px 0 20px ;margin:0 0 0 0 ;line-height:40px;width:100%;opacity:1;border-style:none none none none; }
  .render-jsx-39-14 .btn2{ color:white;font-size:18px;background-color:#df2118;border-radius:0 0 0 0 ;height:40px;text-align:center;padding:0 20px 0 20px ;margin:0 0 0 0 ;line-height:40px;width:100%;opacity:1;border-style:none none none none; }
}
</style>
<div class="render-jsx-39-14-top"></div>

<div class="render-jsx-39-14">
  <div class="container">
    
    <img src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/02/25/78wfae8dn7kpg7xk4ebfgr58xylt4xrm.png" class="pc--show img">
    <p class="pc--show title">现在预约试听<span style="font-size:1.6em"> 免费领取 </span>外教大礼包</p>
    
    <button class="btn1" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E9%A2%84%E7%BA%A6%E8%AF%95%E5%90%AC%E8%AF%BE" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E9%A2%84%E7%BA%A6%E8%AF%95%E5%90%AC%E8%AF%BE%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E5%85%8D%E8%B4%B9%E9%A2%84%E7%BA%A6%E8%AF%95%E5%90%AC%E8%AF%BE">免费预约试听课</button>
    <button class="btn2" data-popup-id="288-DrV0mL" data-popup-hash-fq5umw="" data-popup-hash-o60ue6="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-popup-hash-uflacs="%E6%9F%A5%E7%9C%8B%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC" data-popup-hash-8o2xtd="%E8%8E%B7%E5%8F%96%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-18vwag="%E5%B7%B2%E6%9C%89%3Cspan%20style='color:#b81c25'%3E5895767%3C/span%3E%E4%BA%BA%E6%94%B6%E5%88%B0%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC%3Cbr%3E%20%0A%EF%BC%88%E6%AD%A4%E6%95%B0%E6%8D%AE%E6%88%AA%E8%87%B3%E5%88%B02021%E5%B9%B44%E6%9C%8815%E6%97%A5%EF%BC%89" data-popup-hash-wat8rn="%E8%AF%B7%E8%BE%93%E5%85%A5%E9%AA%8C%E8%AF%81%E7%A0%81" data-popup-hash-scztnc="%E8%AF%B7%E8%BE%93%E5%85%A5%E6%89%8B%E6%9C%BA%E5%8F%B7" data-popup-hash-x6ismr="%E6%8E%A5%E6%94%B6%E8%AF%BE%E7%A8%8B%E4%BB%B7%E6%A0%BC">获取课程价格</button>
    
  </div>
</div>



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

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

  <div class="container">

  <img class="img1" src="https://img.acadsoc.com.cn/web/img/logo-white.png">
<div class="div2">

  <div class="div1">

  <p class="p1">服务热线:400-600-1166 &nbsp;&nbsp;&nbsp;&nbsp;&nbsp;</p>
<p class="p2">本站信息由 深圳市新世纪咨询服务有限公司发布</p>
<p class="p3">公司地址:深圳市罗湖区笋岗街道笋西社区桃园路260号HALO广场四期八层</p>
</div>
<img class="img2" src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/pcImg/footer.png">
</div>
</div>
</div>

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

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

  }
  .render-jsx-126-16 .btnwrap .finger{
    animation:scale .3s infinite alternate
  }
  @keyframes scale {
    0%{
      transform:scale(.8);
    }
    100%{
      transform:scale(1);
    }
  }
  .render-jsx-126-16 .info{
    animation:scaleStart .3s;
    transform-origin:left top;
  }
  .render-jsx-126-16 .scaleEnd{
    animation:scaleEnd .3s forwards;
    transform-origin:90% bottom;
  }
  @keyframes scaleStart {
    0%{
      transform:scale(0);
    }
    100%{
      transform:scale(1);
    }
  }
  @keyframes scaleEnd {
    0%{
      transform:scale(1);
    }
    100%{
      transform:scale(0);
    }
  }
</style>

<div class="render-jsx-126-16">
  <div class="btnwrap">
    <img class="finger" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/12/a3c6d3z572x83lpx53kazb5tzgzd2tkf.png" data-href="https://awt.zoosnet.net/LR/Chatpre.aspx?id=AWT50725747&amp;lng=cn">
    <a><img class="btn" src="https://cdnstatic.acadsoc.com.cn/landing-page/files/2021/04/15/w25d6f4nmkb2rxyg9l72ngtge1dlr64n.png" data-href="https://awt.zoosnet.net/LR/Chatpre.aspx?id=AWT50725747&amp;lng=cn"></a>
    <img class="info" src="http://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2020/12/12/ydkpadapcak4ex6463e92bych94arjb5.png">
  </div>
</div>
<script>
  setTimeout(()=>{
    $('.render-jsx-126-16 .info').addClass('scaleEnd')
  },10000)
</script>
<div class="render-jsx-175-BvOtWs-uyjYAT" id="register-popup-175-BvOtWs" style="display: none;">
  <div class="con">
    <img class="img" src="https://acadsoc-development-oss.acadsoc.com.cn/landing-page/files/2021/04/17/m7lgfkgnmkmf3et5z9fjgf56wz1dn97t.png" data-modal-hash="5dtefe">
    <p class="title" data-modal-hash="bqtote"></p>
    <img class="close-popup closeimg" src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-modal-hash="9lnket">
    <div class="regphone">
      <input placeholder="填写您的手机号" type="tel" name="TxtPhone" class="phone" data-modal-hash="wg4iml">
    </div>
    <div class="regcode">
      <input placeholder="请输入验证码" type="tel" name="TxtCode" class="code" data-modal-hash="tdfeo5">
      <button name="btnGetSMS" class="regcodebtn" data-modal-hash="pmusml">获取验证码</button>
    </div>
    <button name="registerSubmit" class="regbtn" data-modal-hash="m8qrbd">0元试课</button>
  </div>
</div><div id="register-popup-288-DrV0mL" style="display: none;" class="render-jsx-288-DrV0mL-eNi4nb">
    <div class="div1">
      
<p class="p1" data-modal-hash="uflacs">查看课程价格</p>

<p class="p2 time" data-modal-hash="18vwag">已有<span style="color:#b81c25">5895767</span>人预约试听课<br> 
(此数据截至到2021年4月15日)</p>

<img class="img3" src="" data-modal-hash="fq5umw">

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

    </div>
    
<button name="registerSubmit" class="regbtn6" data-modal-hash="x6ismr">接收课程价格</button>

<img class="img7 close-popup" src="https://img.acadsoc.com.cn/web/lps/pages/englishTraining/img/close.png" data-modal-hash="o60ue6">

    </div>
    </div><div id="register-popup-425-55smNV" style="display: none;" class="auto-element-425-55smNV-2vXHKj">
    <div class="div1">
      
    <div class="div1">
      
<p class="p1" data-modal-hash="kmrbkv">个人信息授权与保护声明</p>

<p class="p3" data-modal-hash="odjvqm">尊敬的用户,“快手”及其关联公司(以下简称 “我们”)将按照本声明及《隐私权保护政策》 的规定收集、保存、使用、储存、分享、披露 及保护您的个人信息。因此请您务必认真完整 阅读并理解本声明,尤其是黑体加粗的部分, 如果您不同意本声明,请勿进行下一步操作。

</p>

<p class="p4" data-modal-hash="yy9caq">一、我们收集和使用您的个人信息类型和目的
</p>

<p class="p5" data-modal-hash="w6doh4">1、为给您提供完善的服务,需要您向我们提 供一些信息,我们收集您的个人信息的最终目 的是为了向您提供更好的产品、服务,优化并 丰富您的用户体验,这些个人僖息系能够单独 或者与其他信息结合识别您的个人身份的信 息,包括但不限于:<br>
<br>
&nbsp;&nbsp;&nbsp;(1)姓名<br>
&nbsp;&nbsp;&nbsp;(2)手机号码<br>
&nbsp;&nbsp;&nbsp;(3)您在服务提供方所建落地页面输入或上 载的其他个人信息。<br><br>
2、您授权我们将上述信息共享给您在浏览界 面所看到的特定行业对应的服务提供方,之后 您会收到来自该服务提供方的电话或短信,以 向您提供相关服务的邀请或需求沟通,包含但 不限于:<br>
<br>
&nbsp;&nbsp;&nbsp;(1)汽车行业服务提供方,邀请您试驾、到 4s店看车、参与车友会活动;<br>
&nbsp;&nbsp;&nbsp;(2)教育行业服务提供方,邀请您试听课程、 沟通课程需求;<br>
&nbsp;&nbsp;&nbsp;(3)旅游行业服务提供方,与您预约沟通自由 行需求,或沟通定制游需求;<br>
&nbsp;&nbsp;&nbsp;(4)家装行业服务提供方,与您预约上门测 量、预约设计师沟通装修需求;<br>
&nbsp;&nbsp;&nbsp;(5)其他需要联系您,以便您接受线下服务, 实地体验的场景。<br>
<br>
3、当您使用在线通话服务时,为了保证服务 方的服务质量,您的通话可能会被录音。如您 对此有所异议,请您不要点击“电话”按钮。<br>
4、以上个人信息均是您自愿提供,如果您拒 绝同意提供的,将无法使用该产品功能,但不 会影响您正常使用其它功能。<br>
5、对于不满18周岁的用户,须在其法定监 护人已经阅读本政策并且许可的情况下,通过 网站提交个人信息。<br></p>

<p class="p6" data-modal-hash="dvvp2t">二、我们如何使用及共享您的个人信息
</p>

<p class="p7" data-modal-hash="1fjjc1">1、您同意我们通过如下方式使用及对外共享 您个人信息的情况(包含对于个人信息的存储 和处理):<br><br>
&nbsp;&nbsp;&nbsp;1)我们在合法正当的范围内使用;<br>
&nbsp;&nbsp;&nbsp;2)我们向您授权的服务提供方分享并由其在 合法正当的范围内使用;<br>
&nbsp;&nbsp;&nbsp;3)我们及相关特定行业的服务提供方为满足 您的需求,可能会通过您提供的信息与您联 系;<br>
&nbsp;&nbsp;&nbsp;4)为了省去您手动输入的操作,您用于注册 快手的手机号可能已经展示在信息录入界面, 但这并不代表第三方已经获取相关信息。当且 仅当在同意《个人信息授权与保护声明》的前 提下,我方获得您授权快手与第三方分享您的 相关信息(具体授权信息类型以页面提示为 准)的许可后,我方才会向第三方办法访问您 信息的令牌。若您拒绝使用预填充功能,或者 拟撤回使用预填充功能的授权,不影响您主动 输入相关信息并继续使用第三方的产品/服务<br>
&nbsp;&nbsp;&nbsp;5)我们及您授权范围内的服务提供方可能定 期或不定期向您发送有关产品、服务或相关活 动的信息,您同意接收上述信息。当我们超出 与本声明及《隐私权保护政策》所声称的目的 具有直接或合理关联的范围后使用您的个人信 息的,我们会再次向您告知并征得您的同意。 您同意免除上述个人信息的接收和/或使用方 在按照本声明所述情形下进行信息披露和使用 而导致的或可能导致的所有索赔、责任和损失<br><br>
2、我们已在相应的功能模块明示征得了您的 同意。我们已经要求其应对您的个人信息进行 严格保密,要求其按照我们的说明、《隐私权 保护政策》以及其他任何相关的保密和安全措 施来处理个人信息。<br>
3、在个人信息匿名化或去标识化的前提下, 本平台有权对您提供的个人信息进行数据分 析,并对用户数据库加以商业化使用。<br></p>

<p class="p8" data-modal-hash="gnosc5">三、更正或投诉
</p>

<p class="p9" data-modal-hash="vqisbd">如果您需要查询、修改或更正、撤销授权您的 个人信息,或对个人信息保护问题有任何疑问 或投诉,您可以通过以下方式联系我们:拨打 电话4001260088。<br></p>

<p class="p11" data-modal-hash="8stlml">四、通知和修订
</p>

<p class="p12" data-modal-hash="fep2ig">我们可能适时修改本声明,对于重大变更,我 们会提供更显著的通知,您可以选择停止使用 快手提供的产品/服务;在该种情况下,如您 仍然继续使用我们的产品/服务,即表示同意 接受经修订的本声明及《隐私权保护政策》的 约束。<br></p>

    </div>
    
<button class="button2 close-popup" data-modal-hash="pe6ekf">知道了</button>

    </div>
    </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/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(){
        location.href = $(this).attr('data-href');
      }));

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

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

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

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

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

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

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

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


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

          // customize register code
          MgaH5.track("form",{convert_id: "051bf5898b1b317c08ac096c99b1b24b"})


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

    })


    

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


</body></html>