learningContent.html 36.9 KB
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
<html>

<head>
    <!-- META DATA -->
    <meta charset="utf-8" />
    <meta http-equiv="X-UA-Compatible" content="IE=edge" />
    <meta name="viewport" content="width=device-width, initial-scale=1" />
    <meta name="description" content="Free Bootstrap Themes - Free Responsive Html5 Templates">
    <meta name="author" content="#">

    <title>Study</title>

    <!-- Bootstrap Core CSS -->
    <link rel="stylesheet" href="css/bootstrap.min.css" type="text/css">
    <!-- <link rel="stylesheet" href="css/bootstrap1.min.css" type="text/css"> -->

    <!-- Owl Carousel Assets -->
    <link href="owl-carousel/owl.carousel.css" rel="stylesheet">
    <link href="owl-carousel/owl.theme.css" rel="stylesheet">

    <!-- Custom CSS -->
    <link rel="stylesheet" href="css/style2.css">

    <!-- Custom Fonts -->
    <link rel="stylesheet" href="font-awesome-4.4.0/css/font-awesome.min.css" type="text/css">
    <link href='http://fonts.googleapis.com/css?family=Asap:400,700' rel='stylesheet' type='text/css'>
    <style>
        .login-footer-all {
            display: none;
        }
        
        #subnav h2.active {
            background-color: #0f4679;
        }
        
        .learn-all {
            display: flex;
        }
        
        .allList {
            flex: 3;
            padding: 2% 5%;
        }
        
        .intern-program {
            font-size: 18px;
            font-family: PingFangSC, PingFangSC-Medium;
            font-weight: 500;
            text-align: left;
            color: #66ca94;
            line-height: 25px;
            letter-spacing: 1px;
        }
        
        .qiuzhi,
        .jinrong {
            font-size: 40px;
            font-family: Helvetica;
            text-align: left;
            color: #323232;
            line-height: 60px;
        }
        
        #particulars {
            padding: 30px 0;
            font-size: 18px;
            font-family: Helvetica;
            text-align: left;
            color: #323232;
            line-height: 40px;
        }
        
        .learn-proFinish {
            font-size: 18px;
            font-family: PingFangSC, PingFangSC-Medium;
            font-weight: 500;
            text-align: left;
            color: #66ca94;
            line-height: 25px;
            letter-spacing: 1px;
        }
        
        .show1-txt2 {
            padding: 2% 0;
            width: 310px;
            line-height: 30px;
        }
        
        .show1-BtnAll {
            display: flex;
            justify-content: space-between;
        }
        
        #accomplish {
            padding: 30px 0;
        }
        
        #downloadWork {
            background-color: #f0f0f0;
            padding: 0 20px;
        }
        
        .show1-Btn1-a {
            display: flex;
            place-content: center;
            place-items: center;
        }
        
        .show1-Btn2 {
            background-color: #f0f0f0;
            padding: 0 20px;
            display: flex;
            cursor: pointer;
            place-content: center;
            place-items: center;
        }
        
        .show1-Btn3 {
            background-color: #66CA94;
            padding: 0 20px;
            cursor: pointer;
            display: flex;
            place-content: center;
            place-items: center;
        }
        
        .show1-Btn3-img {
            width: 16%;
        }
        
        .show1-Btn2 span,
        .show1-Btn1-a span {
            font-size: 18px;
            font-family: PingFangSC, PingFangSC-Semibold;
            font-weight: 600;
            text-align: left;
            color: #323232;
            line-height: 80px;
        }
        
        .show1-Btn3 span {
            font-size: 18px;
            font-family: PingFangSC, PingFangSC-Semibold;
            font-weight: 600;
            text-align: left;
            color: #ffffff;
            line-height: 80px;
        }
        
        .learn-next {
            display: flex;
            place-items: center;
            cursor: pointer;
        }
        
        .learn-next-yuan {
            position: absolute;
            background-color: #97DAB6;
            border-radius: 50%;
            z-index: 2;
            width: 40px;
            height: 40px;
        }
        
        .learn-next-Btn {
            position: relative;
            left: 20px;
            color: #323232;
            z-index: 5;
        }
        
        .learn-next-Btn1 {
            display: none;
        }
        
        .show1-TwoBtn {
            display: flex;
            justify-content: space-between;
            padding-top: 5%;
        }
        
        .div-show2-all {
            padding: 2% 5%;
            flex: 3;
        }
        
        .all-text {
            margin-bottom: 5%;
        }
        
        .dati-text,
        .all-text {
            font-size: 40px;
            font-family: SourceHanSansCN, SourceHanSansCN-Regular;
            font-weight: 400;
            text-align: left;
            color: #323232;
            line-height: 60px;
        }
        
        .show2-timu {
            padding: 40px;
            font-size: 26px;
            font-family: SourceHanSansCN, SourceHanSansCN-Medium;
            text-align: left;
            color: #323232;
        }
        
        #timu1 {
            display: none;
        }
        
        .show-Btn-last-yuan {
            position: absolute;
            background-color: #97DAB6;
            border-radius: 50%;
            z-index: 2;
            width: 40px;
            height: 40px;
        }
        
        .show2-last-Btn {
            position: relative;
            left: 20px;
            color: #323232;
            z-index: 5;
        }
        
        .show2-last-Btn1 {
            display: none;
        }
        
        .show2-Btn-all {
            display: flex;
            justify-content: space-between;
            padding-top: 5%;
        }
        
        .show3-all {
            flex: 3;
            padding: 2% 5%;
        }
        
        .show4-all {
            flex: 3;
            padding: 2% 5%;
        }
        
        .luru {
            font-size: 18px;
            font-family: PingFangSC, PingFangSC-Medium;
            font-weight: 500;
            text-align: left;
            color: #66ca94;
            line-height: 25px;
            letter-spacing: 1px;
        }
        
        .dayin,
        .shengcheng {
            font-size: 40px;
            font-family: SourceHanSansCN, SourceHanSansCN-Regular;
            font-weight: 400;
            text-align: left;
            color: #323232;
            line-height: 60px;
        }
        
        .show3-self-info {
            border: 10px solid #97dab6;
            padding: 10%;
            display: flex;
            flex-direction: column;
            place-content: center;
            place-items: center;
            margin-top: 50px;
        }
        
        .show3-indo-btn1 {
            padding: 2% 14%;
            margin-bottom: 50px;
            background-color: #66ca94;
            color: #fff;
            border: 1px solid #66ca94;
        }
        
        .haveZS {
            font-size: 18px;
            font-family: PingFangSC, PingFangSC-Medium;
            font-weight: 500;
            text-align: left;
            color: #66ca94;
            line-height: 25px;
            letter-spacing: 1px;
        }
        
        .show4-down-title {
            margin-bottom: 5%;
            font-size: 40px;
            font-family: SourceHanSansCN, SourceHanSansCN-Regular;
            font-weight: 400;
            text-align: left;
            color: #323232;
            line-height: 60px;
        }
        
        .show4-fini-title {
            font-size: 40px;
            font-family: SourceHanSansCN, SourceHanSansCN-Regular;
            font-weight: 400;
            text-align: left;
            color: #323232;
            line-height: 60px;
        }
        
        .show4-zi {
            padding-top: 2%;
            font-size: 36px;
            font-family: SourceHanSansCN, SourceHanSansCN-Medium;
            font-weight: 500;
            text-align: left;
            color: #323232;
            line-height: 54px;
            letter-spacing: 0px;
        }
        
        .show-fini-title {
            padding-top: 2%
        }
        
        .show4-ul {
            margin-left: -25px;
        }
        
        .show4-ul li {
            font-size: 16px;
            font-family: SourceHanSansCN, SourceHanSansCN-Regular;
            font-weight: 400;
            text-align: left;
            color: #5a5a5a;
            line-height: 24px;
            letter-spacing: 0px;
        }
        
        .show4-qianming {
            padding-right: 50%;
        }
        
        .show4-qianming1 p,
        .show4-qianming p {
            font-size: 16px;
            font-family: SourceHanSansCN, SourceHanSansCN-Normal;
            font-weight: Normal;
            text-align: left;
            color: #000000;
            line-height: 24px;
            letter-spacing: 0px;
        }
        
        .show4-qianming-all {
            display: flex;
            padding: 5% 0
        }
        
        @media(max-width:768px) {
            .login-footer-all {
                display: flex;
                background: #323232;
                flex-direction: column;
                place-items: center;
                display: flex;
            }
            footer {
                display: none;
            }
            header {
                height: 70px;
            }
            .header-btnL {
                display: none;
            }
            .header-loginBtn {
                display: none;
            }
            .header-txt1 {
                place-items: center;
                padding: 12px 20px;
                margin: 0;
            }
            .header-right-btn {
                position: static;
                margin-right: 0px;
            }
            .header-text {
                padding-left: 0px;
                right: 0;
                width: 100%;
            }
            footer {
                display: none;
            }
            .header-img1 {
                width: 30%;
            }
            .learn-all {
                display: flex;
                flex-direction: column;
            }
            .allList {
                flex: 3;
                padding: 0px;
            }
            .div_show1 {
                padding: 20px 40px 40px;
            }
            .intern-program {
                font-size: 9px;
                font-family: PingFangSC, PingFangSC-Medium;
                font-weight: 500;
                text-align: left;
                color: #66ca94;
                line-height: 16px;
            }
            .qiuzhi,
            .jinrong {
                font-size: 14px;
                font-family: PingFangSC, PingFangSC-Semibold;
                font-weight: 600;
                text-align: left;
                color: #323232;
                line-height: 24px;
            }
            #particulars {
                font-size: 9px;
                font-family: Helvetica;
                text-align: justify;
                color: #5a5a5a;
                line-height: 20px;
                padding: 10px 0;
            }
            .learn-proFinish {
                font-size: 9px;
                font-family: PingFangSC, PingFangSC-Medium;
                font-weight: 500;
                text-align: left;
                color: #66ca94;
                line-height: 16px;
            }
            .show1-txt2 {
                font-size: 9px;
                font-family: Helvetica;
                text-align: justify;
                color: #5a5a5a;
                line-height: 20px;
                padding: 0px;
            }
            .show1-BtnAll {
                flex-direction: column;
            }
            #accomplish {
                padding: 10px 0 30px;
            }
            #downloadWork {
                background-color: #f0f0f0;
                padding: 20px 60px;
                margin-bottom: 10px;
            }
            .show1-Btn1-a {
                display: flex;
                place-items: center;
                place-content: center;
            }
            .show1-Btn2 span,
            .show1-Btn1-a span {
                font-size: 14px;
                font-family: PingFangSC, PingFangSC-Semibold;
                font-weight: 600;
                text-align: right;
                color: #323232;
                line-height: 60px;
            }
            .show1-Btn2 {
                background-color: #f0f0f0;
                padding: 20px 60px;
                margin-bottom: 10px;
                display: flex;
                place-items: center;
                place-content: center;
            }
            .show1-Btn3-img {
                width: 10%;
            }
            .show1-Btn3 {
                padding: 20px 60px;
                display: flex;
                place-items: center;
                place-content: center;
            }
            .show1-Btn3 span {
                font-size: 14px;
                font-family: PingFangSC, PingFangSC-Semibold;
                font-weight: 600;
                text-align: right;
                color: #ffffff;
                line-height: 60px;
            }
            .learn-next {
                display: flex;
                place-items: center;
                cursor: pointer;
            }
            .learn-next-yuan {
                display: none;
            }
            .learn-next-Btn {
                display: none;
            }
            .show2-last-Btn1,
            .learn-next-Btn1 {
                display: block;
                font-size: 12px;
                font-family: PingFangSC, PingFangSC-Medium;
                font-weight: 500;
                text-align: center;
                color: #323232;
                line-height: 12px;
                padding: 9px 25px;
                background: #97dab6;
                border-radius: 15px;
            }
            .show1-TwoBtn {
                padding-top: 20px;
            }
            .div-show2-all {
                padding: 10px;
            }
            .generate {
                font-size: 9px;
                font-family: PingFangSC, PingFangSC-Regular;
                font-weight: 400;
                text-align: left;
                color: #66ca94;
                line-height: 16px;
                letter-spacing: 0px;
                padding-left: 20px;
            }
            .dati-text,
            .all-text {
                font-size: 14px;
                font-family: PingFangSC, PingFangSC-Semibold;
                font-weight: 600;
                text-align: left;
                color: #323232;
                line-height: 24px;
                padding-left: 20px;
            }
            .all-text {
                margin-bottom: 20px;
            }
            .show2-timu {
                padding: 20px 20px 0 10px;
                font-size: 16px;
                font-family: SourceHanSansCN, SourceHanSansCN-Regular;
                font-weight: 400;
                text-align: left;
                color: #323232;
                line-height: 24px;
                letter-spacing: 0px;
            }
            .list-left {
                display: none;
            }
            #timu1 {
                display: block;
            }
            #dati-list {
                display: flex;
            }
            #timu1 {
                font-size: 14px;
                font-family: SourceHanSansCN, SourceHanSansCN-Regular;
                font-weight: 400;
                text-align: left;
                color: #323232;
                line-height: 23px;
                letter-spacing: 0px;
            }
            #timu {
                display: none;
            }
            .list-right {
                margin-left: 0px;
            }
            .all-list {
                padding: 0 10px;
            }
            .checkBtn {
                margin: 20px;
                font-size: 14px;
                font-family: PingFangSC, PingFangSC-Semibold;
                font-weight: 600;
                text-align: right;
                color: #ffffff;
                line-height: 60px;
                text-align: center;
                padding: 0;
            }
            .show-Btn-last-yuan {
                display: none;
            }
            .show2-last-Btn {
                display: none;
            }
            .show2-Btn-all {
                display: flex;
                justify-content: space-between;
                padding: 30px;
            }
            .show3-all {
                padding: 10px;
            }
            .show4-all {
                padding: 10px;
            }
            .luru {
                padding-left: 20px;
                font-size: 9px;
                font-family: PingFangSC, PingFangSC-Regular;
                font-weight: 400;
                text-align: left;
                color: #66ca94;
                line-height: 16px;
                letter-spacing: 0px;
            }
            .dayin,
            .shengcheng {
                padding-left: 20px;
                font-size: 14px;
                font-family: PingFangSC, PingFangSC-Semibold;
                font-weight: 600;
                text-align: left;
                color: #323232;
                line-height: 24px;
                padding-bottom: 20px;
            }
            .show3-self-info {
                margin-top: 0;
                border: 10px solid #97dab6;
                padding: 16px 20px 30px;
                display: flex;
                flex-direction: column;
                place-items: start;
                /* place-content: center;
                place-items: center; */
            }
            .show3-self-info p {
                font-size: 9px;
                font-family: SourceHanSansCN, SourceHanSansCN-Regular;
                font-weight: 400;
                text-align: justify;
                color: #5a5a5a;
                line-height: 20px;
            }
            .show3-indo-btn1 {
                width: 100%;
                font-size: 14px;
                font-family: PingFangSC, PingFangSC-Semibold;
                font-weight: 600;
                text-align: center;
                color: #ffffff;
                line-height: 60px;
                margin-bottom: 20px;
            }
            .haveZS {
                font-size: 9px;
                font-family: PingFangSC, PingFangSC-Regular;
                font-weight: 400;
                text-align: left;
                color: #66ca94;
                line-height: 16px;
                letter-spacing: 0px;
                padding-left: 20px;
            }
            .show4-down-title,
            .show4-fini-title {
                padding-left: 20px;
                font-size: 14px;
                font-family: PingFangSC, PingFangSC-Semibold;
                font-weight: 600;
                text-align: left;
                color: #323232;
                line-height: 24px;
            }
            .show4-zi {
                font-size: 15px;
                font-family: SourceHanSansCN, SourceHanSansCN-Regular;
                font-weight: 400;
                text-align: left;
                color: #323232;
                line-height: 23px;
                letter-spacing: 0px;
            }
            .show-fini-title {
                font-size: 12px;
                font-family: SourceHanSansCN, SourceHanSansCN-Normal;
                font-weight: Normal;
                text-align: left;
                color: #000000;
                line-height: 18px;
                letter-spacing: 0px;
            }
            .show4-ul li {
                font-size: 9px;
                font-family: SourceHanSansCN, SourceHanSansCN-Normal;
                font-weight: Normal;
                text-align: left;
                color: #5a5a5a;
                line-height: 15px;
                letter-spacing: 0px;
                padding-bottom: 4px;
            }
            .show4-qianming {
                padding-right: 0;
            }
            .show4-qianming1 p,
            .show4-qianming p {
                font-size: 9px;
                font-family: SourceHanSansCN, SourceHanSansCN-Normal;
                font-weight: Normal;
                text-align: left;
                color: #000000;
                line-height: 14px;
                letter-spacing: 0px;
            }
            .show4-qianming-all {
                display: flex;
                flex-direction: column;
                padding: 20px 0;
            }
        }
    </style>

</head>

<body>
    <header>
        <nav>
            <div class="header-txt1" style="display: flex;justify-content: space-between;">
                <div class="header-img1">
                    <img src="./img/portfolio/B1.png" onclick="window.location.href='index.html'">
                </div>
                <div class="header-right1">
                    <div class="header-btnL">
                        <a href="login.html">
                            <div class="header-loginBtn" style="color: #323232;border-bottom: 1px solid #323232;margin-right: 30px;">退出登录</div>
                        </a>
                    </div>
                    <div>
                        <!-- <a href="index.html"><img src="./img/portfolio/Y9.png"></a> -->
                        <a class="header-right-btn" onclick="setPersonal()">
                            <!-- <h1 class="header-h1-btn" style="background-color: #66CA94;position: absolute;width: 40px;border-radius: 50%;">&nbsp;</h1>
                            <div class="header-xian">
                                <div class="header-xian1">&nbsp;</div>
                                <div class="header-xian2">&nbsp;</div>
                            </div> -->
                            <img src="./img/portfolio/circle.png" style="width: 50px;height: 50px;">
                        </a>
                    </div>
                </div>
            </div>
        </nav>


    </header>

    <div class="learn-all">
        <div style="flex:1;background-color: #f0f0f0;overflow-y: scroll;padding: 2% 2% 2% 5%;">
            <h2 style='cursor:default'>实习内容</h2>
            <div id="title-content"></div>
        </div>

        <div class="allList">
            <!-- 内容页 -->
            <div class="div_show1 divClass" style="display: none;">
                <p class="intern-program">实习流程 Intern Program Process</p>
                <div class="jinrong">金融界的顶尖名企</div>
                <div class="qiuzhi">求知若渴的职场技能</div>
                <p id="particulars"></p>
                <p class="learn-proFinish">已完成的实习项目<span style="padding-left: 10px;">3</span></p>
                <p class="show1-txt2">start-line虚拟实习项目,传授顶尖名企求知若渴的职场技能,助理学生成功开启职场道路</p>
                <p class="learn-proFinish">已完成的实习项目<span style="padding-left: 10px;">3</span></p>
                <div class="show1-img1">
                    <img src="./images/03-1.png" style='width:100%;'>
                </div>
                <p id="accomplish"></p>
                <div class="show1-BtnAll">
                    <div id="downloadWork">
                        <!-- <a href="" target="_blank">
                                <img src='./images/03-4.png' style="padding-right: 5%;">
                                <span>下载实习作业</span>
                            </a> -->
                    </div>
                    <div class="show1-Btn2">
                        <div class="show1-Btn2-img">
                            <img src='./images/03-5.png' style="width: 100%;">
                        </div>
                        <span style="padding-left: 10px;">提交实习作业</span>
                        <!-- <input type="file" class="selected-btn" id="file" name="file" style="padding-left: 10px;"> -->
                    </div>
                    <div class="show1-Btn3" onclick="postData();">
                        <div class="show1-Btn3-img">
                            <img src='./images/bingo.png' style="width: 100%;">
                        </div>
                        <span style="color: #fff;padding-left: 10px;">恭喜你,完成</span>
                    </div>
                </div>
                <div class="show1-TwoBtn">
                    <div style="display: flex;place-items: center;cursor: pointer;">
                        <!-- <h5 style="position: absolute;background-color: #97DAB6;border-radius: 50%;z-index: 2;width: 40px;height: 40px;">&nbsp;</h5>
                            <a style="position: relative;left: 20px;color:#323232; z-index: 5;" onclick="last()">
                                <上一步骤</a> -->
                        <div> </div>
                    </div>
                    <!-- <div id="overchange">
                            <div style="display: flex;place-items: center;">
                                <h5 style="position: absolute;background-color: #97DAB6;border-radius: 50%;z-index: 2;width: 40px;height: 40px;">&nbsp;</h5>
                                <div onclick="setQuestionId()" style="position: relative;left: 20px;color:#323232; z-index: 5;">完成步骤></div>
                            </div>
                        </div> -->
                    <div id="nextchange">
                        <div class="learn-next">
                            <h5 class="learn-next-yuan">&nbsp;</h5>
                            <div class="learn-next-Btn" onclick="next()">下一步骤></div>
                            <div class="learn-next-Btn1" onclick="next()">下一步骤</div>
                        </div>
                    </div>
                </div>
            </div>
            <!-- 答题 -->
            <div class="div_show2 divClass" style="display: none;">
                <div class="div-show2-all">
                    <p style="color: #66CA94;" class="generate">答题测试 Generate certificate</p>
                    <div class="dati-text">答题测试</div>
                    <div class="all-text">完成全部答题即可查看答案</div>

                    <div style="border: 10px solid #97dab6;display: flex;flex-direction: column;">
                        <div style="overflow-y: scroll;">
                            <p class="show2-timu">选择题(共十道题,已完成0/10)</p>
                            <div id="recommend-List">
                            </div>
                        </div>
                        <button class="checkBtn" onclick="getValue()">完成答题查看答案</button>
                    </div>
                    <div class="show2-Btn-all">
                        <div style="display: flex;place-items: center;cursor: pointer;">
                            <h5 class="show-Btn-last-yuan">&nbsp;</h5>
                            <a onclick="last()" class="show2-last-Btn">
                                <上一步骤</a>
                                    <a onclick="last()" class="show2-last-Btn1">
                                        上一步骤</a>
                        </div>
                        <div style="display: flex;place-items: center;cursor: pointer;">
                            <h5 class="learn-next-yuan">&nbsp;</h5>
                            <div class="learn-next-Btn" onclick="next()">下一步骤></div>
                            <div class="learn-next-Btn1" onclick="next()">下一步骤</div>
                        </div>
                    </div>

                </div>
            </div>
            <!-- 录入信息页 -->
            <div class="div_show3 divClass" style="display: none;">
                <div class="show3-all">
                    <p style="color: #66CA94;" class="luru">录入信息 Input information</p>
                    <div class="dayin">打印生成的证书</div>
                    <div class="shengcheng">将按照您提供的姓名生成</div>

                    <div class="show3-self-info">
                        <p>1.请浏览个人中心,确认姓氏和名字是否正确。</p>
                        <p>实习证书将按照您提供的信息打印。如希望检查或修改,请点击以下按钮。</p>
                        <button class="show3-indo-btn1" onclick="setPersonal()">我的信息</button>
                        <p>2.确认无误后,请点击右下角“完成步骤”按钮。</p>
                        <p>页面将自动返回,你将可以在页面顶部发现“下载证书”并提示下载</p>
                        <!-- <button class="checkBtn" onclick="setQuestionId()">生成证书</button> -->
                        <button class="show3-indo-btn1" onclick="setQuestionId()">生成证书</button>
                    </div>
                    <div class="show2-Btn-all">
                        <div style="display: flex;place-items: center;cursor: pointer;">
                            <h5 class="show-Btn-last-yuan">&nbsp;</h5>
                            <a onclick="last()" class="show2-last-Btn">
                                <上一步骤</a>
                                    <a onclick="last()" class="show2-last-Btn1">
                                        上一步骤</a>
                        </div>
                        <div style="display: flex;place-items: center;cursor: pointer;">
                            <h5 class="learn-next-yuan">&nbsp;</h5>
                            <div class="learn-next-Btn" onclick="next()">下一步骤></div>
                            <div class="learn-next-Btn1" onclick="next()">下一步骤</div>
                        </div>
                    </div>
                </div>
            </div>
            <!-- 证书页 -->
            <div class="div_show4 divClass" style="display: none;">
                <div class='show4-all'>
                    <p class="haveZS">生成证书 Generate certificate</p>
                    <div class="show4-fini-title">证书生成完毕</div>
                    <div class="show4-down-title">您可直接下载保存您的证书</div>
                    <div style="border: 10px solid #97dab6;display: flex;flex-direction: column;">
                        <div style="border-left: 5px solid #66ca97;
                            margin: 4%; border-right: 5px solid #66ca94;
                            background-color: #fff;padding: 0 5%;">

                            <div>
                                <img src="./images/pingan.png" style="margin-top:1%">

                            </div>

                            <div class="show4-zi">兹证明</div>
                            <div class="show4-zi">宁靖同学于2020年12月25日</div>
                            <div class="show4-zi">参与并完成了XX公司在Start_Line的XX实习项目</div>
                            <p class="show-fini-title">完成实习可获得提升一下专业能力</p>
                            <ul class='show4-ul'>
                                <li>1.请浏览个人中心,确认姓氏和名字是否正确。</li>
                                <li>2.请浏览个人中心,确认姓氏和名字是否正确。</li>
                                <li>3.请浏览个人中心,确认姓氏和名字是否正确。</li>
                            </ul>
                            <div class="show4-qianming-all">
                                <div class="show4-qianming">
                                    <p>签名:</p>
                                    <p>部门职位:</p>
                                    <p>公司名称:</p>
                                </div>
                                <div class="show4-qianming1">
                                    <p>签名:</p>
                                    <p>部门职位:</p>
                                    <p>公司名称:</p>
                                </div>
                            </div>
                        </div>
                        <button class="checkBtn">下载保存</button>
                        <!-- <button style="padding: 2% 18%;
                            background-color: #66ca94;
                            border:1px solid #66ca94;
                            color: #fff;font-size: 1.5em;margin: 0 27% 4%;">下载保存</button> -->



                    </div>

                    <div class="show2-Btn-all">
                        <div style="display: flex;place-items: center;cursor: pointer;">
                            <h5 class="show-Btn-last-yuan">&nbsp;</h5>
                            <a onclick="last()" class="show2-last-Btn">
                                <上一步骤</a>
                                    <a onclick="last()" class="show2-last-Btn1">
                                        上一步骤</a>
                        </div>
                        <div style="display: flex;place-items: center;cursor: pointer;">
                            <h5 class="learn-next-yuan">&nbsp;</h5>
                            <div class="learn-next-Btn" onclick="next()">下一步骤></div>
                            <div class="learn-next-Btn1" onclick="next()">下一步骤</div>
                        </div>
                    </div>
                </div>
            </div>

        </div>
    </div>
    <div class="login-footer-all">
        <div class="login-footer-img" style="width: 25%;margin-top: 45px;">
            <img src="img/portfolio/whiteLogo.png" width="100%">
        </div>
        <div style="color: #fff;
        font-family: PingFangSC, PingFangSC-Regular;
        text-align: center;
        font-size: 9px;margin-top: 12px;">成功职场第一步,从Start-Line开始</div>
        <div style="color: #66CA94;font-size: 12px;font-family: PingFangSC, PingFangSC-Regular;margin: 60px 0 20px;">关注Start-Line</div>
        <div style="width: 25%;margin-bottom: 200px;">
            <img src="img/portfolio/EWM.png" width="100%">
        </div>
    </div>

    <footer>
        <div class="wrap-footer" style="background-color: #323232;">
            <div class="container">
                <div class="row" style="display: flex;justify-content: space-between;">
                    <div class="col-footer col-md-3" style="display: flex;flex-direction: column;place-content: center;">
                        <img src="img/portfolio/B2.png" width="50%">
                        <p class="footer-title" style="color: #fff;padding-top: 10%;font-size: 0.8em; text-transform:capitalize">成功职场第一步,从Start-Line开始</p>
                    </div>
                    <div class="col-footer col-md-3 widget_recent_entries" style="display: flex;flex-direction: column;place-items: center;place-content: center;">
                        <a class="footer-title" href="index.html" style="color:#66CA94">网站导航</a>
                        <a class="footer-title" href="index.html">网站首页</a>
                        <a class="footer-title" href="participated.html">实习项目</a>
                    </div>
                    <div class="col-footer col-md-3" style="display: flex;flex-direction: column;place-items: center;place-content: center;">
                        <a class="footer-title" href="index.html" style="color:#66CA94">关于我们</a>
                        <a class="footer-title" href="index.html">关于Start-Line</a>
                        <a class="footer-title" href="participated.html">联系我们</a>
                    </div>
                    <div class="col-footer col-md-3" style="display: flex;flex-direction: column;place-items: center;place-content: center;" id="sevenimg4">
                        <h2 class="footer-title" style="color: #66CA94;text-transform:capitalize">关注Start-Line</h2>
                        <div id='ewm-footer' style="text-align: center;">
                        </div>
                        <!-- <img src="img/portfolio/EWM.png" style="width: 50%;"> -->
                    </div>

                </div>
            </div>
        </div>

    </footer>

    <!-- jQuery -->
    <script type="text/javascript" src="js/jquery-2.1.1.js"></script>
    <script type="text/javascript" src="js/bootstrap.min.js"></script>

    <!-- Custom Theme JavaScript -->
    <script src="js/agency.js"></script>

    <!-- Plugin JavaScript -->
    <script src="js/jquery.easing.min.js"></script>
    <script src="js/classie.js"></script>
    <script src="js/cbpAnimatedHeader.js"></script>
    <script src='learningContent.js'></script>
    <script src="config.js"></script>
    <!-- carousel -->
    <script src="owl-carousel/owl.carousel.js"></script>
    <script>
        $(document).ready(function() {
            $("#owl-brand").owlCarousel({
                autoPlay: 3000,
                items: 1,
                itemsDesktop: [1199, 1],
                itemsDesktopSmall: [979, 2],
                navigation: false,
                navigationText: ['<i class="fa fa-chevron-left fa-5x"></i>', '<i class="fa fa-chevron-right fa-5x"></i>']
            });
        });
    </script>
</body>

</html>