-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathindex.html
More file actions
3483 lines (3375 loc) · 210 KB
/
index.html
File metadata and controls
3483 lines (3375 loc) · 210 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
<!doctype html>
<html lang="en">
<head>
<link rel="alternate" media="handheld" href="#" />
<meta charset="utf-8">
<title>陈秋龙的简历</title>
<meta content="陈秋龙、乘风、乘风gg、Faithree" name="description">
<meta content="陈秋龙、乘风、乘风gg、Faithree" name="keywords">
</head>
<body>
<div id="body">
<div id="container">
<style type="text/css">
body{margin: 0;padding: 0;font: 14px/22px "微软雅黑","宋体",Arial;color: #333;word-wrap: break-word;}
.clearfixs:before,.clearfixs:after{content:"";display:table;}
.clearfixs:after{display:block;clear:both;}
.clearfixs{*zoom:1;}
input[type="text"]:focus{border:1px solid #32dbb3;}
.mr_created input[type="text"]:focus{border-width:1px;}
.mr_content input[type="text"]:focus{border:none;}
.mr_created input{border:none;}
a:hover{color:#00b88d;}
.fl{float:left;}
h1, h2, h3, h4, h5 {
font-weight: normal;
}
/* 为创建在线简历 */
.dn{display:none;}
.mr_created input,.mr_created textarea{font-size:14px;}
.mr_uncreate *{list-style:none;}
.mr_uncreate *,.mr_created *{margin:0;padding:0;}
.mr_created .city_s .xl_list ,.mr_uncreate .city_s .xl_list{height:130px;}
.mr_created .mr_selCity,.mr_uncreate .mr_selCity{top:0;}
.mr_created .mr_selCity ul.mr_province ul,.mr_uncreate .mr_selCity ul.mr_province ul{width:287px;height:110px;padding:10px;}
.mr_created #mr_mr_head *,.mr_created .mr_myresume_r *{list-style:none;}
.mr_created #mr_mr_head{margin-bottom:0;}
.mr_created .mr_baseinfo{border-bottom:none;border-bottom-right-radius:0px;border-bottom-left-radius:0px;}
.mr_created .mr_infoed{margin-bottom:0px;}
.mr_myresume_l{float:left;width:702px;margin-bottom:20px;}
#mr_mr_head{margin-bottom:22px;}
.mr_created #mr_mr_head{margin-bottom:0;}
.mr_created #mr_mr_head *,.mr_created .mr_myresume_r *{list-style:none;}
.mr_top_bg{position:relative;height:135px;background:url(http://www.lagou.com/images/myresume/head_bg.jpg);z-index:2;}
.mr_top_bg *{position:absolute;width:128px;height:128px;top:42px;left:287px;}
.mr_top_bg .opa{top:0px;left:0;width:100%;height:170px;z-index:2;}
.mr_top_bg input{opacity:0;filter:alpha(opacity:0);cursor:pointer;border-radius:50%;}
.mr_top_bg .shadow{width:116px;height:116px;top:47px;left:293px;display:none;}
.mr_baseinfo{position:relative;min-height:118px;padding:56px 0 10px 0;background-color: #fafafa;border:1px solid #f2f2f2;border-bottom-right-radius:3px;border-bottom-left-radius:3px;}
.mr_left_bg,.mr_right_bg{position:absolute;background: url(http://www.lagou.com/images/myresume/top_bg.png) no-repeat;width:12px;height:34px;top:76px;}
.mr_left_bg{left:-1px;background-position:0 0;}
.mr_right_bg{right:-2px;background-position:-40px 0;}
.mr_my_qr{position:absolute;cursor:pointer;z-index:10;right:52px;top:0;width:48px;height:50px;background:#f2f2f2 url(http://www.lagou.com/images/myresume/qr_bg.png) 10px 10px no-repeat;}
.mr_my_qr .dropdown_menu {width:288px;height:154px;background:url(http://www.lagou.com/images/qr/saowo_bg.png) no-repeat;color: #fff;display:block;padding:18px 8px 8px 8px;margin:50px 0 0 -220px;opacity: 0;visibility: hidden;-webkit-transition:.25s;transition:.25s;}
.open>.dropdown_menu{margin-top:58px !important;*margin:70px 0 0 -220px !important;opacity:1;visibility:visible}
.mr_w604{width:604px;margin:0 auto;}
.mr_p_name{height:40px;line-height:38px;margin-bottom:8px;}
.mr_name{display:block;height:40px;width:468px;margin:0 auto;line-height:40px;font-size:30px;color:#333;text-align:center;}
.mr_intro{display:block;color:#333;text-align:center;margin:0 auto;}
.mr_p_introduce .mr_intro{font-size:16px;width:468px;line-height:26px;}
.mr_p_introduce .mr_intro_grey{color:#bdbdbd;font-style: italic;}
.mr_edit{float:right;margin-right:12px;cursor:pointer;}
.mr_edit em{font-size:16px;color:#00b38a;}
.mr_edit i{display:inline-block;width:12px;height:14px;background:url(../images/myresume/icons_mr.png) -53px -6px no-repeat;margin-right:7px;}
.mr_edit *{vertical-align: middle;}
.mr_active{background-color: #fefef2;}
/* 未创建在线 基本信息 */
.mr_myresume_l input{margin:0;}
.mr_p_info{position:relative;color:#666;padding:5px 0 7px 0;}
.mr_p_info .mr_edit{position:absolute;right:0px;top:4px;}
.mr_edit i {display: inline-block;width: 12px;height: 14px;background: url(http://www.lagou.com/images/myresume/icons_mr.png) -53px -6px no-repeat;margin-right: 7px;}
.mr_name_edit,.mr_intro_edit{padding-left:154px;margin-bottom:8px;}
.mr_name_edit input,.mr_name_edit a,.mr_intro_edit input,.mr_introduce_edit *{vertical-align: middle;}
.mr_name_edit .ed_name,.mr_intro_edit .ed_name{width:368px; height:30px;border:1px solid #eeeff1;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;margin:0;text-align:center;font: 30px/30px "微软雅黑","宋体",Arial;margin-right:12px;}
.mr_name_edit input[type="text"]:focus,.mr_intro_edit input[type="text"]:focus{border-width:1px;}
.mr_name_edit .save,.mr_intro_edit .save{border:none;margin:0;display:inline;padding:0 11px;*padding:0 4px;font-size:14px;height:30px;text-align:center;line-height:30px;color:#fff;background-color: #00b38a;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;margin-right:12px;}
.mr_intro_edit .ed_name{font-size:16px;}
.mr_name_edit .cancel,.mr_intro_edit .cancel{color:#00b38a;}
.mr_p_info .info_t{text-align:center;margin-bottom:8px;}
.mr_p_info .info_b{text-align:center;}
.mr_p_info .mobile{margin-right:18px;}
.mr_p_info .mobile i{width:12px;height:14px;background-position:-131px -70px;}
.mr_p_info .email i{width:14px;height:10px;background-position:-150px -73px;}
.mr_info_edit{padding:40px 0 50px 155px;background-color:#fefef2;}
.mr_info_edit label{display:block;color:#afafa9;padding-bottom:4px;padding-left:3px;}
.mr_info_on{padding-left:83px;}
.form_wrap{position:relative;cursor:pointer;width:396px;height:46px;border:1px solid #f1f3e9;background-color:#fff;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;margin-bottom:9px;}
.form_wrap .mr_button{text-align:left;padding-left:17px;width:327px;height:46px;background-color:#fff;}
.form_wrap .mr_input{width:327px;padding:0 0 0 17px;border:none;height:46px;}
.form_wrap .mr_input:focus{border:none;}
.form_wrap .mr_selCity{width:395px;}
.form_wrap_y .mr_button{width:150px;}
.mr_sns_m .mr_button:focus{border:none;}
.mr_sj{position:absolute;right:18px;top:20px;border: 6px solid #fff;border-color: #d3d3d3 transparent transparent;display: block;font-size: 0px;height: 0;width: 0;}
.form_wrap_y .xl_list{width:190px;}
.xl_list{position:absolute;top:49px;left:-1px;z-index:2;width:395px;background-color:#fff;border:1px solid #e7e7e7;box-shadow:2px 2px 4px #efefe4;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}
.xl_list li{height:36px;line-height:36px;padding-left:17px;}
.xl_list li:hover{background-color:#f4f4f4;}
.xl_list .mr_selCity{margin:0;}
.xl_list *{list-style:none;}
.form_wrap_y{width:188px;}
.mr_basic .mr_basicform .mr_topdegree ul li,.mr_basic .mr_basicform .mr_workyear ul li,.mr_selCity ul.mr_province li,.mr_selCity ul.mr_province li,.mr_education ul li{ height: 33px;font-size: 14px;padding-left: 15px;line-height: 33px; cursor: pointer;}
.mr_selCity ul.mr_province li{padding: 0;text-align: center;}
.mr_selCity{height: 130px; background: #fff;width: 300px; overflow: hidden; margin-left: -1px;top: 45px; position: absolute;box-shadow:2px 2px 4px #efefe4;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;border:1px solid #e7e7e7;}
.mr_selCity{height: 130px; background: #fff;width: 300px; overflow: hidden; margin-left: -1px;top: 45px; position: absolute;box-shadow:2px 2px 4px #efefe4;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;border:1px solid #e7e7e7;}
.mr_selCity ul.mr_province{width: 90px; border-right: 1px solid #ececec;font-size: 14px;text-align: center;line-height: 33px; height: 130px; overflow: auto;}
.mr_selCity ul.mr_province li span{ cursor: pointer; display: inline-block;width: 73px;}
.mr_selCity ul.mr_province li ul{position: absolute;top:0;left: 90px;width: 209px;height: 130px;overflow: auto; color: #555}
.mr_selCity ul.mr_province li ul li{float: left;padding: 0px 8px;border-radius: 3px;margin:4px;height: 23px; line-height: 23px; cursor: pointer;}
.mr_locks{position:absolute;width:30px;height:30px;top:8px;right:8px;background:url(http://www.lagou.com/images/myresume/icons_mr.png) -144px -83px no-repeat;}
/*已创建在线简历 jason 2014/9/8*/
.mr_p_introduce{min-height:34px;line-height:32px;margin-bottom:4px;}
.mr_add_m{position:absolute;top:44px;left:0;padding:18px 0 0 20px;background-color:#fff;z-index:2;border:1px solid #e7e7e7;box-shadow:2px 2px 4px #efefe4;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}
.mr_add_m li.mr0{margin-right:0;}
.mr_month .mr0{margin-right:0;}
.mr_year_se span i,.mr_year_se span em{vertical-align:middle;}
.mr_year_se i{margin-right:11px;}
.mr_years,.mr_man{margin-right:12px;}
span.mr_man,span.mr_women{width:63px;padding-left:27px;color:#b5b5b5;;height:46px;line-height:46px;border:1px solid #f1f3e9;background-color:#fff;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;cursor:pointer;}
span.active{color:#333;}
span.mr_man i,span.mr_women i{display:inline-block;width:16px;height:16px;background:url(http://www.lagou.com/images/myresume/icons_mr.png) no-repeat;}
span.mr_man i{background-position:-4px -25px;}
span.mr_man i.active{background-position:-4px -5px;}
span.mr_women i{background-position:-27px -25px;}
span.mr_women i.active{background-position:-27px -5px;}
.sns_area .mr_sns_m{position:relative;width:534px;margin-bottom:16px;}
.mr_add_sns{position:relative;}
.mr_add_sns i,.mr_add_sns em{vertical-align:middle;}
.mr_add_sns i{display:inline-block;margin-right:10px;width:15px;height:15px;background:url(http://www.lagou.com/images/myresume/icons_mr.png) -5px -69px no-repeat;}
.mr_add_sns em{color:#afafa9;}
.mr_add_m i,.mr_add_m em{position:absolute;background:none;top:-16px;border: 8px solid #e7e7e7;border-color: transparent transparent #e7e7e7;display: block;font-size: 0px;height: 0;width: 0;}
.mr_add_m em{border-color: transparent transparent #fff;top:-15px;}
.mr_add_m ul{width:276px;}
.mr_add_m li{float:left;width:42px;height:42px;margin:0 4px 10px 0;}
.mr_add_m li.mr0{margin-right:0;}
.mr_add_m .sns1{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -2px 3px no-repeat;}
.mr_add_m .sns2{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -54px 3px no-repeat;}
.mr_add_m .sns3{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -106px 3px no-repeat;}
.mr_add_m .sns4{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -158px 3px no-repeat;}
.mr_add_m .sns5{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -210px 3px no-repeat;}
.mr_add_m .sns6{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -261px 3px no-repeat;}
.mr_add_m .sns7{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -312px 3px no-repeat;}
.mr_add_m .sns8{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -364px 3px no-repeat;}
.mr_add_m .sns9{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -415px 3px no-repeat;}
.mr_add_m .sns10{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -467px 3px no-repeat;}
.mr_add_m .sns11{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -518px 3px no-repeat;}
.mr_add_m .sns12{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -570px 3px no-repeat;}
.mr_add_m .sns1.active{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -1px -43px no-repeat;}
.mr_add_m .sns2.active{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -54px -43px no-repeat;}
.mr_add_m .sns3.active{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -106px -43px no-repeat;}
.mr_add_m .sns4.active{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -158px -43px no-repeat;}
.mr_add_m .sns5.active{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -210px -43px no-repeat;}
.mr_add_m .sns6.active{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -261px -43px no-repeat;}
.mr_add_m .sns7.active{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -313px -43px no-repeat;}
.mr_add_m .sns8.active{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -364px -43px no-repeat;}
.mr_add_m .sns9.active{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -415px -43px no-repeat;}
.mr_add_m .sns10.active{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -467px -43px no-repeat;}
.mr_add_m .sns11.active{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -518px -43px no-repeat;}
.mr_add_m .sns12.active{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -570px -43px no-repeat;}
.mr_add_op{padding:10px 0;margin-left:-20px;background-color:#fafafa;}
.mr_add_op a{vertical-align:middle;}
.mr_add_op .mr_none_my{float:left;color:#b5b5b5;padding:6px 0;margin-left:20px;}
.mr_add_op .sns_cancel,.mr_add_op .sns_save{float:right;padding:6px 13px;text-align:center;}
.mr_add_op .sns_save{background-color:#00b88d;color:#fff;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}
.sns_add{cursor:pointer;}
.mr_sns_m i{position:absolute;left:-43px;top:7px;width:30px;height:30px;background:url(http://www.lagou.com/images/myresume/sns_bg.png) no-repeat;}
.mr_sns_m .mr_button{width:467px;padding:0 0 0 17px;border:none;}
.mr_sns_m em{position:absolute;width:20px;height:20px;right:10px;top:13px;}
.mr_sns_m .mr_ok{background:url(http://www.lagou.com/images/myresume/icons_mr.png) -4px -46px no-repeat;}
#expectJob .mr_moudle_content{padding-bottom:25px;}
/*在线简历页面主内容区域*/
.mr_myresume_l .mr_content{padding-top:26px;background-color: #fafafa;border: 1px solid #f2f2f2;border-bottom:2px solid #f2f2f2;border-top:none;border-bottom-right-radius: 3px;border-bottom-left-radius: 3px;}
.mr_moudle_head{margin-bottom:23px;}
#customBlock .mr_moudle_head{margin-bottom:33px;}
.mr_moudle_head .mr_head_l{float:left;}
.mr_moudle_head .mr_head_r{float:right;margin-top:3px;cursor:pointer;}
.mr_title span{vertical-align:middle;display:inline-block;}
.mr_title .mr_title_l{width:230px;height:0;border-top:1px solid #ededed;}
.mr_title .mr_title_c{font-size:18px;padding:6px 24px;text-align:center;background-color:#eee;-moz-border-radius:26px;-webkit-border-radius:26px;border-radius:26px;margin:0 13px;}
.mr_title .mr_title_r{width:152px;height:0;border-top:1px solid #ededed;}
.mr_moudle_head .mr_head_r *{vertical-align:middle;}
.mr_moudle_head .mr_head_r em{font-size:16px;color:#00b88d;}
.mr_moudle_head .mr_head_r i{display: inline-block;width: 15px;height: 15px;background: url(http://www.lagou.com/images/myresume/icons_mr.png) -5px -69px no-repeat;margin-right:6px;}
.mr_moudle_content{padding-bottom:21px;color:#555;font-size:14px;} /* 块 margin-bottom 48*/
.mr_moudle_content .mr_content_l{float:left;max-width: 445px;}
.mr_moudle_content .mr_content_r{float:right;}
.mr_content_l .l1{float:left;margin-right:10px;}
.mr_content_l .l2{position: relative;float: left;padding-top: 10px;max-width: 380px;}
#workExperience .mr_content_l .l2,#educationalBackground .mr_content_l .l2{padding-top:4px;}
.mr_content_l .l2 a.projectTitle{/* position:relative; */font-size:16px;color:#555;text-decoration:none}
.mr_content_l .l2 a.projectTitle:hover{color:#00b88d}
.mr_content_l .l2 a.nourl{cursor:default;}
.mr_content_l .l2 a.nourl:hover{color:#555;}
.mr_content_l .l2 p{color:#999;}
.mr_content_l .l2 a.projectTitle span{position:absolute;top:14px;right:-18px;width:12px;height:12px;background:url(http://www.lagou.com/images/myresume/icons_mr.png) -95px -197px no-repeat;}
.mr_content_l .l1 img{width:46px;height:46px;border:2px solid #eee;}
.mr_content_l .l2 h4{font-size:16px;}
.mr_content_l .l2 span{color:#999;display:block;}
.mr_c_r_t{text-align:right;margin:5px 0 2px 0;*margin-top:8px;float:none;}
.mr_content_r span{color:#999;}
.mr_content_m{padding:14px 0 0 0px;*padding-left:1px;color:#555;}
.mb46{margin-bottom:46px;}
.mr_jobe_list{padding-bottom:44px;}
/* #educationalBackground .mr_moudle_content{padding-bottom:15px;} */
.mr_wo_show{padding:13px 18px 46px 42px;background-color:#00b88d;margin-bottom:38px;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}
.mr_wo_show p{line-height:26px;color:#fff;}
.mr_self_site{color:#fff;margin-bottom:8px;font-size:24px;}
.mr_self_sitelink {font-weight:bold;text-decoration:none;/* display:inline-block;width:558px; */word-break:break-all;color: #fff;}
.mr_self_sitelink:hover{color:#fff;}
.mr_wo_show .mr_c_r_t em{color:#50f9d2;}
.mr_wo_show .mr_c_r_t i{background:url(http://www.lagou.com/images/myresume/icons_mr.png) -131px -115px no-repeat;}
.wh43{width:100%;}
.mr_work_upload .l2 span{display:inline-block;}
.mr_wu_con .mr_work_title{margin:0 6px;}
.mr_wu_show{margin-bottom:20px;}
.mr_wu_show .mr_c_r_t{padding-top:4px;}
.mr_wu_con .l2 span{color:#333;}
.mr_wu_show .mr_wu_con_m{color:#555;}
.mr_self_l{position:relative;height:81px;}
#selfDescription .mr_head_r i,#expectJob .mr_head_r i,#skillsAssess .mr_head_r i,#customBlock .mr_head_r i{display: inline-block;width: 15px;height: 15px;background: url(http://www.lagou.com/images/myresume/icons_mr.png) -53px -6px no-repeat;margin-right: 7px;}
/* .mr_self_l img{width:73px;height:73px;border-radius:50%;border:4px solid #f7f7f7;box-shadow:0px 2px 3px #dfdfdf;} */
.mr_self_l img{position:absolute;left:4px;width:73px;height:73px;top:8px;}
.mr_self_l i{position:absolute;z-index:2;width:81px;height:81px;background:url(http://www.lagou.com/images/myresume/mr_txs.png) no-repeat;}
.mr_moudle_content .mr_self_l{float:left;width:100px;padding-top:5px;}
.mr_moudle_content .mr_self_r{float:left;width:504px;color:#555;line-height:26px;}
#selfDescription .mr_moudle_content{padding-bottom:48px;}
#expectJob .expectjob_list{position:relative;}
#expectJob .mr_job_des i{position:absolute;width:32px;height:31px;background:url(http://www.lagou.com/images/myresume/icons_mr.png) no-repeat;}
#expectJob .mr_moudle_content .mr_job_t{left:0;top:1px;background-position:-160px -110px;}
#expectJob .mr_moudle_content .mr_job_b{right:0;bottom:5px;background-position:-160px -153px;}
.mr_moudle_content .mr_job_info{text-align:center;padding-left:28px;}
.mr_job_info{color:#555;}
.mr_job_info li{list-style:none;float:left;text-align:left;height:24px;line-height:24px;overflow:hidden;white-space:nowrap;text-overflow: ellipsis;}
.mr_name_li{width:188px;}
.mr_jobtype_li{width:128px;}
.mr_city_li{width:124px;}
.mr_sns .sns10 span{min-width:56px;}
.mr_jobrange_li{width:94px;}
.mr_job_info i{display:inline-block;margin-right:10px;background:url(http://www.lagou.com/images/myresume/icons_mr.png) no-repeat;}
.mr_name_li i{width:9px;height:19px;background-position:-97px -220px;}
.mr_jobtype_li i{width:17px;height:17px;background-position:-93px -247px;}
.mr_city_li i{width:14px;height:17px;background-position:-93px -273px;}
.mr_jobrange_li i{width:18px;height:18px;background-position:-92px -294px;}
.mr_job_info li *{vertical-align:middle;}
.mr_job_info li{overflow:hidden;white-space:nowrap;text-overflow: ellipsis;}
.mr_job_info p .mr_333{color:#333;}
.expectjob_list .mr_job_des {position:relative;margin-top:28px;padding:15px 38px 25px 50px;}.mr_moudle_content .mr_job_info{text-align:center;}
.mr_job_info{color:#555;}
.mr_job_info p .mr_333{color:#333;}
.expectjob_list .clearfixs li{font-size:16px;}
/*
#skillsAssess{padding-bottom:50px;}
.mr_skill_con{padding-left:20px;margin-bottom:18px;}
.mr_skill_con span{vertical-align:middle;display:inline-block;}
.mr_skill_con .mr_skill_name{width:90px;height:22px;text-align:right;margin-right:13px;word-wrap:break-word;white-space:nowrap;overflow:hidden;text-overflow: ellipsis;}
.mr_skill_con .mr_skill_name:after{
content:"...";
}
.mr_skill_con .mr_skill_plan{position:relative;width:420px;height:8px;border-radius:4px;background-color:#eee;margin-right:21px;overflow:hidden;}
.mr_skill_plan em{position:absolute;left:0;top:0;display:inline-block;height:8px;width:370px;background-color:#00b88d;border-radius:4px;overflow:hidden;} */
#skillsAssess{padding-bottom:12px;}
.mr_skill_con{padding-left:16px;margin-bottom:14px;position:relative;}
.mr_skill_con span{vertical-align:middle;display:inline-block;}
.mr_skill_con .mr_skill_name{width:90px;height:22px;text-align:right;margin-right:13px;word-wrap:break-word;white-space:nowrap;overflow:hidden;text-overflow: ellipsis;}
/* .mr_skill_con .mr_skill_name:after{
content:"...";
} */
.mr_skill_con .mr_skill_plan{position:relative;width:410px;height:8px;border-radius:4px;background-color:#eee;margin-right:21px;overflow:hidden;}
.mr_skill_plan em{position:absolute;left:0;top:0;display:inline-block;height:8px;background-color:#00b88d;border-radius:4px;overflow:hidden;}
.mr_skill_con .mr_skill_delete{width:13px;height:13px;background:url(http://www.lagou.com/images/myresume/skill_delete.png) center top no-repeat;cursor:pointer;}
.mr_moudle_content .mr_skill_add{padding-left:125px;*padding-left:104px;color:#999999;font-size:16px;}
.mr_skill_add span{display:inline-block;width:88px;text-indent:22px;background:url(http://www.lagou.com/images/myresume/skill_add.png) left 3px no-repeat;cursor:pointer;}
#customBlock{padding-bottom:30px;}
#customBlock .mr_title{position:relative;}
.mr_title .cust_title{position:absolute;top:-4px;left: 50%;padding:0 13px;background-color:#FAFAFA;}
#customBlock #width604{width:604px;}
#customBlock .mr_line_tl{width:528px;height: 0;border-top: 1px solid #ededed;}
.cust_title span{padding:6px 24px;text-align: center;font-size: 18px;background-color: #eee;-moz-border-radius: 26px;-webkit-border-radius: 26px;border-radius: 26px;}
#customBlock .mr_prolink .mr_btn{width:484px;}
.mr_skill_con .mr_skill_circle{display:inline-block;width:20px;height:19px;position:absolute;left:122px;top:3px;background:url(http://www.lagou.com/images/myresume/skill_circle.png) no-repeat center top;}
.mr_skill_circle em{display:inline-block;width:29px;height:23px;position:absolute;right: -4px;top: -22px;text-align: center;line-height:18px;padding: 0px;color: #ffffff;background:url(http://www.lagou.com/images/myresume/skill_img.png) center top no-repeat;font-size:10px;}
/****一句话介绍****/
.mrcenter{margin:0 auto 20px auto; float:none;}
/*创建在线简历 基本信息样式*/
.mr_infoed{margin-bottom:63px;}
.mr_created .mr_infoed{margin-bottom:0px;}
.mr_p_info .shenfen{margin-right:10px;}
.mr_p_info .shenfen i{width:14px;height:12px;background-position:-90px -72px;}
.mr_p_info .base_info{}
.mr_p_info .base_info i{width:13px;height:13px;background-position:-111px -70px;}
.mr_p_info .base_info em{margin-right:12px;}
.mr_p_info .base_info em.mr0{margin:0;}
#workExperience .mr_content_m{padding:4px 0 1px 0;}
#workExperience .list_show{padding-bottom:6px;}
#workExperience .mr_moudle_content{padding-bottom:0;}
#educationalBackground .mb46{margin-bottom:0;}
#educationalBackground .mr_moudle_content{padding-bottom:5px;}
#projectExperience .mr_content_m{padding-top:8px;}
#projectExperience .mr_jobe_list{padding-bottom:32px;}
#projectExperience .mr_moudle_content{padding-bottom:18px;}
.mr_sns a{position:relative;display:inline-block;width:30px;background:none;height:30px;margin:0 8px;}
.mr_sns a span{position:absolute;min-width:28px;display:none;top:-29px;left:50%;height:20px;line-height:20px;line-height:18px\9;color:#fff;text-align:center;background-color:#666660;padding:0 10px;-moz-border-radius:10px;-webkit-border-radius:10px;border-radius:10px;}
.mr_sns a em{position:absolute; top:20px;left:50%;margin-left:-4px;font-size:0px; height:0; width:0; border-width:4px 4px 0; border-style:solid dashed; border-color:#666 transparent transparent;overflow: hidden;-webkit-transition:all 0.4s ease 0s;-moz-transition:all 0.4s ease 0s;-o-transition:all 0.4s ease 0s;transition:all 0.4s ease 0s;}
.mr_sns .mr0{margin-right:0;}
.mr_sns i{display:inline-block;width:30px;background:none;height:30px;margin-right:17px;}
.mr_sns .sns1,.mr_sns_m .sns1,.mr_add_m .sns1{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -4px -5px no-repeat;}
.mr_sns .sns2,.mr_sns_m .sns2,.mr_add_m .sns2{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -56px -5px no-repeat;}
.mr_sns .sns3,.mr_sns_m .sns3,.mr_add_m .sns3{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -108px -5px no-repeat;}
.mr_sns .sns4,.mr_sns_m .sns4,.mr_add_m .sns4{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -160px -5px no-repeat;}
.mr_sns .sns5,.mr_sns_m .sns5,.mr_add_m .sns5{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -212px -5px no-repeat;}
.mr_sns .sns6,.mr_sns_m .sns6,.mr_add_m .sns6{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -263px -5px no-repeat;}
.mr_sns .sns7,.mr_sns_m .sns7,.mr_add_m .sns7{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -314px -5px no-repeat;}
.mr_sns .sns8,.mr_sns_m .sns8,.mr_add_m .sns8{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -366px -5px no-repeat;}
.mr_sns .sns9,.mr_sns_m .sns9,.mr_add_m .sns9{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -417px -5px no-repeat;}
.mr_sns .sns10,.mr_sns_m .sns10,.mr_add_m .sns10{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -469px -5px no-repeat;}
.mr_sns .sns11,.mr_sns_m .sns11,.mr_add_m .sns11{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -520px -5px no-repeat;}
.mr_sns .sns12,.mr_sns_m .sns12,.mr_add_m .sns12{background:url(http://www.lagou.com/images/myresume/sns_bg.png) -572px -5px no-repeat;}
.mr_infoed .mr_sns{text-align:center;padding-top:20px;}
#projectExperience .mr_content_l .l2{padding-top:4px;}
.mr_ope .mr_delete{position:relative;cursor:pointer;float:right;font-size:16px;color:#ff685e;margin-top:13px;}
.mr_ope{padding-top:34px;}
.mr_ope .mr_save,.mr_ope .mr_cancel{padding:12px 18px;font-size:16px;vertical-align:middle;}
.mr_cancel{color:#00b88d;}
.mr_save{background-color:#00b38a;margin-right:5px;color:#fff;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}
/*底部求职者职场状态*/
.mr_self_state{position:relative;height:94px;background-color:#f6f6f6;color:#555;font-size:14px;text-align: center;}
.mr_self_state *{list-style:none;}
.mr_self_state .form_wrap{position:absolute;top:50%;left:50%;margin:-24px 0 0 -135px;border:1px solid #eaeced;width:270px;}
.mr_self_state .mr_button{width:240px;}
.mr_self_state .select_color{border-color:#32dbb3;}
.mr_self_state .xl_list{width:270px;}
.mr_bottom{margin-top:5px;}
.mr_bottom *{list-style:none;}
.mr_bottom .mr_bottom_l{float:left;position:relative;cursor:pointer;}
.mr_bottom .mr_bottom_r{float:right;}
.mr_bottom_l i{display:inline-block;margin-right:10px;width:16px;height:12px;background:url(http://www.lagou.com/images/myresume/icons_mr.png) -90px -140px no-repeat;}
.mr_bottom_l em{color:#c5c5c5;}
.mr_bottom .mr_down:hover em{color:#333;}
.mr_bottom .mr_down:hover i{background:url(http://www.lagou.com/images/myresume/icons_mr.png) -117px -140px no-repeat;}
.mr_bottom_r{text-align:right;color:#c6c6c6;}
.mr_bottom_l .mr_down_tip{position:absolute; width:96px;height:116px;top:-126px;left:12px;background-color:#fff;border:1px solid #e7e7e7;-moz-border-radius:3px;-webkit-border-radius:3px;border-radius:3px;}
.mr_down_tip i, .mr_down_tip em {position: absolute;background: none;border: 8px solid #e7e7e7;border-color:#e7e7e7 transparent transparent;display: block;font-size: 0px;height: 0;width: 0;}
.mr_down_tip i{right:2px;bottom:-16px;}
.mr_down_tip em{right:12px;bottom:-15px;border-color:#fff transparent transparent;;}
.mr_down_tip li{height:38px;line-height:38px;}
.mr_down_tip li a{display:block;text-align:center;}
.mr_down_tip li.active a{background-color:#00b88d;color:#fff;}
.mr_sns_m .mr_no{background:url(http://www.lagou.com/images/myresume/icons_mr.png) -28px -46px no-repeat;}
.mr_sns_m .sns_del{position:absolute;width:16px;height:16px;right:-30px;top:15px;background:url(http://www.lagou.com/images/myresume/icons_mr.png) -57px -49px no-repeat;}
.mr_add_sns{position:relative;}
.m_portrait{width:100%;height:135px;position:relative;z-index:2;background:url(http://www.lagou.com/images/myresume/head_bg.jpg) no-repeat;}
.m_portrait .opa{position:absolute;}
.mr_wo_preview ol,.mr_wu_con_m ol,.mr_self_r ol,.mr_expjob_content ol,.mr_wo_preview ul,.mr_wu_con_m ul,.mr_self_r ul,.mr_expjob_content ul{padding-left:19px;}
.olpf ol,.olpf ul{padding-left:19px;}
.mr_wo_preview {color:#fff;}
.mr_preview .mr_title .mr_title_r{width:228px;}
.resume_status {background: #f6f6f6;border: none!important;text-align: center;margin: -12px 0 0 -135px!important;cursor: default;}
.m_portrait div {
/* background: url(http://www.lagou.com/images/profile_cover.png) no-repeat;
width: 120px;
height: 120px;
position: absolute;
z-index: 5; */
width:200px;
height:132px;
position:absolute;
left:41%;
top:39px;
z-index:100;
}
.mr_city_li{
margin-left :70px;
}
.mr_jobtype_li {
margin-left:50px;
}
</style>
<div class="clearfixs mr_created mr_preview">
<div class="mr_myresume_l mrcenter">
<div id="mr_mr_head">
<div class="m_portrait mr_top_bg">
<!--<img src="http://www.lagou.com//images/myresume/tou.png" class="opa" alt="" />-->
<!--<img src="http://www.lagou.com/i/image/M00/2D/C0/CgpEMlkrAbCADKKOAAEiR-c5CLc406.JPG" width="120" height="120" alt="" />-->
</div>
<div class="mr_baseinfo">
<i class="mr_left_bg"></i>
<i class="mr_right_bg"></i>
<div class="mr_p_name mr_w604 clearfixs">
<span class="mr_name">陈秋龙</span>
</div>
<div class="mr_p_introduce mr_w604 clearfixs">
<span class="mr_intro">不要怂,就是干</span>
</div>
<div class="mr_p_info mr_infoed mr_w604 clearfixs">
<div class="info_t">
<!-- 需要加判断 -->
<!-- 用户有工作经历没有教育经历 -->
<span class="shenfen">
<i></i>
网络与新媒体 · 广州大学华软软件学院
</span>
<!-- 用户教育经历和工作经历都存在 -->
</div>
<div class="info_t">
<span class="base_info"><i></i>男 22岁 本科
<span class="job_span"> 2018届毕业生</span> 广州</span>
</div>
<div class="info_b">
<span class="mobile"><i></i>15626504962</span>
<span class="email"><i></i>359790031@qq.com</span>
</div>
<div class="mr_sns">
<!-- -------------------社交账号 ----------------- -->
<a href="https://github.com/Faithree" target="_blank" data-sns="6" data-site="https://github.com/Faithree"><span><em></em></span></a>
<!-- <a href="https://segmentfault.com/u/jielaoge" target="_blank" data-sns="11" data-site="https://segmentfault.com/u/jielaoge"><span><em></em></span></a>
<a href="https://m.weibo.cn/p/1005055732505589" target="_blank" data-sns="10" data-site="https://m.weibo.cn/p/1005055732505589"><span><em></em></span></a>-->
</div>
</div>
</div>
</div>
<!-- 工作经历 -->
<div class="mr_content">
<div class="mr_w604">
<div id="workExperience">
<div>
<div class="mr_moudle_head clearfixs">
<div class="mr_head_l">
<div class="mr_title">
<span class="mr_title_l"></span><span class="mr_title_c"> 实习经历 </span><span class="mr_title_r"></span>
</div>
</div>
</div>
<div class="mr_moudle_content">
<div class="list_show">
2017暑假在一家创业公司实习两个月(公司名字简历有),使用vue+less技术栈独立负责公司PC官网开发,移动端演示宣传页的开发,部分后台系统(时间关系),积累了一定的经验。
</div>
</div>
</div>
</div>
<div id="educationalBackground">
<div>
<div class="mr_moudle_head clearfixs">
<div class="mr_head_l">
<div class="mr_title">
<span class="mr_title_l"></span><span class="mr_title_c">教育经历</span><span class="mr_title_r"></span>
</div>
</div>
</div>
<div class="mr_moudle_content">
<div class="list_show">
<div class="clearfixs mb46 mr_jobe_list">
<div class="mr_content_l">
<div class="l2">
<h4>广州大学华软软件学院</h4>
<span>本科 · 网络与新媒体</span>
</div>
</div>
<div class="mr_content_r">
<span>2018年毕业(预计)</span>
</div>
</div>
</div>
</div>
</div>
</div>
<div id="projectExperience">
<div>
<div class="mr_moudle_head clearfixs">
<div class="mr_head_l">
<div class="mr_title">
<span class="mr_title_l"></span><span class="mr_title_c">项目经验</span><span class="mr_title_r"></span>
</div>
</div>
</div>
<div class="mr_moudle_content" id="projectList">
<div class="mr_jobe_list">
<div class="clearfixs">
<div class="mr_content_l">
<div class="l2">
<a class="projectTitle" target="_blank" href="https://github.com/Faithree/vue2.0-film"><span></span>开源项目:vue-film</a>
<p>前端</p>
</div>
</div>
<div class="mr_content_r">
<span>2016.10月 -- 2016.12月</span>
</div>
</div>
<div class="mr_content_m olpf">
<p>技术栈: </p>
<ul>
<li><p>Vue全家桶+mintUI+bootstrap</p></li>
<li><p>webpack</p></li>
</ul>
<p>虽然这是一个练手的项目,但在当时vue还没有完全火起来的时期,掌握了vue全家桶,懂得什么是组件化思想和模块化思想,说明我是一个肯追求新技术人</p>
</div>
</div>
</div>
<div class="mr_moudle_content" id="projectList">
<div class="mr_jobe_list">
<div class="clearfixs">
<div class="mr_content_l">
<div class="l2">
<a class="projectTitle" target="_blank" href="https://github.com/Faithree/Eliminate-crow-game"><span></span>开源项目:Eliminate-crow-game</a>
<p>前端</p>
</div>
</div>
<div class="mr_content_r">
<span>2016.8月 -- 2016.9月</span>
</div>
</div>
<div class="mr_content_m olpf">
<p>技术栈: </p>
<ul>
<li><p>canvas</p></li>
<li><p>create.js</p></li>
</ul>
<p>这也是一个练手项目,这算是我第一个前端项目,因为我以前是学flash和as3.0的语言,我就想着用html5做一款游戏。</p>
</div>
</div>
</div>
</div>
</div>
<!-- 作品展示 -->
<div id="worksShow">
<div>
<div class="mr_moudle_head clearfixs">
<div class="mr_head_l">
<div class="mr_title">
<span class="mr_title_l"></span><span class="mr_title_c">作品展示</span><span class="mr_title_r"></span>
</div>
</div>
</div>
<div class="mr_moudle_content">
<div class="mr_work_online">
<div class="mr_wo_show">
<div>
<div class="mr_c_r_t">
</div>
</div>
<div class="mr_self_site">
<a class="mr_self_sitelink" href="http://www.lonlong.cn:3001/" target="_blank">前端公益项目</a>
</div>
<div class="mr_wo_preview olpf">
<ul>
<li><p>vue+mock,实现前后分离</p></li>
<li><p>node+express</p></li>
</ul>
<p>简介:这是一个演示项目,并未完全的开发完成,也算是个人第一次做的比较正式一点的项目,做这个项目,虽然有团队,但是团队水平层次不齐,除了页面部分是团队的成员写的,其他的大部分都是我一个人扛起来的,这次项目,我学到的东西真的非常非常多。</p>
<p>不足:首屏加载渲染速度太慢了,将会进一步学习关于前端性能优化、webpack关于懒加载、分离css、js还有ssr的技术</p></div>
</div>
</div>
<div class="mr_work_online">
<div class="mr_wo_show">
<div>
<div class="mr_c_r_t">
</div>
</div>
<div class="mr_self_site">
<a class="mr_self_sitelink" href="https://juejin.im/post/591f9852a0bb9f005f3c3aac" target="_blank">可能是前端工程师最好的weex入门教程</a>
</div>
<div class="mr_wo_preview olpf">
<ul>
<li><p>vue native</p></li>
</ul>
<p>
简介:一直以来我都想写一个手机app,在有项目的情况下,每天坚持挤出一小时去学习新技术,挤出时间学习自己感兴趣的东西
</p></div>
</div>
</div>
<div class="mr_work_online">
<div class="mr_wo_show">
<div>
<div class="mr_c_r_t">
</div>
</div>
<div class="mr_self_site">
<a class="mr_self_sitelink" href="https://juejin.im/post/58f9eec0a22b9d00658ee4b7" target="_blank">mock入门教程</a>
</div>
<div class="mr_wo_preview olpf"><ul>
<li><p>vue+mock,实现前后分离,解决跨域问题</p></li>
</ul>
<p>
简介:这个是我在做项目的时候,首次前后端分离遇到的问题,加入后端不给我数据,我又想看到效果,就可以用mock了,真的很好用,而且在前后端分离中,还学习了一点http的知识,明白了什么是简单请求和非简单请求。
</p></div>
</div>
</div>
<div class="mr_work_online">
<div class="mr_wo_show">
<div>
<div class="mr_c_r_t">
</div>
</div>
<div class="mr_self_site">
<a href="https://juejin.im/post/591a4f2a128fe1005cda28df" class="mr_self_sitelink"> javascrit设计模式系列</a>
</div>
<div class="mr_wo_preview olpf"><ul>
<li><p>内功心法</p></li>
</ul>
<p>
简介:这个是我一直所追求的,因为我不是科班生,数据结构还有算法,还有设计模式,包括上面提到的http知识,都是我的短板,如果说html、css、js是前端的三辆马车,数据结构和算法、设计模式、tcp和ip的知识就是程序员的三辆马车,我会慢慢的啃完这些知识。
</p></div>
</div>
</div>
</div>
</div>
</div>
<!-- 自我描述 -->
<div id="selfDescription">
<div>
<div class="mr_moudle_head clearfixs">
<div class="mr_head_l">
<div class="mr_title">
<span class="mr_title_l"></span><span class="mr_title_c">自我描述</span><span class="mr_title_r"></span>
</div>
</div>
</div>
<div class="mr_moudle_content clearfixs">
<div class="mr_self_l">
<!-- 自我描述头像为基本信息页面上传的头像,稍后和后台确认这个 -->
<i></i>
<!--<img src="http://www.lagou.com/i/image/M00/2D/C0/CgpEMlkrAbCADKKOAAEiR-c5CLc406.JPG" alt="陈秋龙"/>-->
</div>
<div class="mr_self_r">
<ul>
<li><p>个人特性:肯钻研,肯创新。<br /></p></li>
<li><p>近期书单:《javascript设计模式》《ES6标准入门》</p></li>
<li><p>技术栈:Vue全家桶(ssr)</p></li>
<ul>
<li><p>前端:熟练掌握HTML、css(移动端更有兴趣)、js(es6)、vue全家桶、了解angular </p></li>
<li><p>后端:了解Node.js (Express、koa2)</p></li>
<li><p>数据库:了解MongoDB、MySQL</p></li>
<li><p>自动化构建:了解Webpack、Gulp</p></li>
<li><p>版本管理:Git</p></li>
<li><p>其他:了解一点点数据结构、http、性能优化、有阅读英语文档的习惯</p></li>
</ul>
<li><p>短期学习目标:</p></li>
<ul>
<li><p>开源一个node的mongodb数据操作中间件,支持koa2<br /></p></li>
<li><p>熟练掌握前端性能优化</p></li>
<li><p>看vue和express源码</p></li>
<li><p>函数式编程</p></li>
</ul>
</ul>
</div>
</div>
</div>
</div>
<!-- 期望工作 -->
<div id="expectJob">
<div>
<div class="mr_moudle_head clearfixs mr_w604">
<div class="mr_head_l">
<div class="mr_title">
<span class="mr_title_l"></span><span class="mr_title_c">期望工作</span><span class="mr_title_r"></span>
</div>
</div>
</div>
<div class="mr_moudle_content clearfixs mr_w604">
<div class="expectjob_list">
<input id="expHideId" type="hidden" value="$!expectJobses.id" />
<div class="mr_job_info" data-id="$!expectJobses.id">
<ul class="clearfixs">
<li class="mr_name_li" ><i></i><span class="mr_job_name" title="前端开发">前端开发</span></li>
<li class="mr_jobtype_li"> <i></i><span class="mr_job_type" title="$!expectJobses.positionType">实习</span></li>
<li class="mr_city_li"> <i></i><span class="mr_job_adr" title="$!expectJobses.city">广州、深圳</span></li>
</ul>
</div>
</div>
</div>
</div>
</div>
<!-- 自定义模块 -->
<div id="customBlock">
<div>
<div class="mr_moudle_head clearfixs">
<div class="mr_head_l">
<div class="mr_title">
<span class="mr_line_tl" id="width604"></span>
<div class="cust_title">
<span>校内经历</span>
</div>
</div>
</div>
</div>
<div class="mr_moudle_content olpf">
<ul>
<li><p>在所在系工作室内,正在做一个捐赠网站的项目,准备参加互联网创新创业大赛。<br /></p></li>
学到了什么是迭代开发。如何快速开发知道如何处理团队内的分工,用业务的眼光去看待。
</ul>
</ul>
</div>
</div>
</div>
</div><!-- end mr_w604 -->
<div class="mr_self_state">
<div class="form_wrap mr_self_s resume_status">
· 我是应届毕业生 ·
</div>
</div>
</div>
</div>
</div>
</div><!-- end #container -->
</div><!-- end #body -->
<script>
(function (e, t) {
var n, r, i = typeof t, o = e.document, a = e.location, s = e.jQuery, u = e.$, l = {}, c = [], p = "1.9.1",
f = c.concat, d = c.push, h = c.slice, g = c.indexOf, m = l.toString, y = l.hasOwnProperty, v = p.trim,
b = function (e, t) {
return new b.fn.init(e, t, r)
}, x = /[+-]?(?:\d*\.|)\d+(?:[eE][+-]?\d+|)/.source, w = /\S+/g, T = /^[\s\uFEFF\xA0]+|[\s\uFEFF\xA0]+$/g,
N = /^(?:(<[\w\W]+>)[^>]*|#([\w-]*))$/, C = /^<(\w+)\s*\/?>(?:<\/\1>|)$/, k = /^[\],:{}\s]*$/,
E = /(?:^|:|,)(?:\s*\[)+/g, S = /\\(?:["\\\/bfnrt]|u[\da-fA-F]{4})/g,
A = /"[^"\\\r\n]*"|true|false|null|-?(?:\d+\.|)\d+(?:[eE][+-]?\d+|)/g, j = /^-ms-/, D = /-([\da-z])/gi,
L = function (e, t) {
return t.toUpperCase()
}, H = function (e) {
(o.addEventListener || "load" === e.type || "complete" === o.readyState) && (q(), b.ready())
}, q = function () {
o.addEventListener ? (o.removeEventListener("DOMContentLoaded", H, !1), e.removeEventListener("load", H, !1)) : (o.detachEvent("onreadystatechange", H), e.detachEvent("onload", H))
};
b.fn = b.prototype = {
jquery: p, constructor: b, init: function (e, n, r) {
var i, a;
if (!e)return this;
if ("string" == typeof e) {
if (i = "<" === e.charAt(0) && ">" === e.charAt(e.length - 1) && e.length >= 3 ? [null, e, null] : N.exec(e), !i || !i[1] && n)return !n || n.jquery ? (n || r).find(e) : this.constructor(n).find(e);
if (i[1]) {
if (n = n instanceof b ? n[0] : n, b.merge(this, b.parseHTML(i[1], n && n.nodeType ? n.ownerDocument || n : o, !0)), C.test(i[1]) && b.isPlainObject(n))for (i in n)b.isFunction(this[i]) ? this[i](n[i]) : this.attr(i, n[i]);
return this
}
if (a = o.getElementById(i[2]), a && a.parentNode) {
if (a.id !== i[2])return r.find(e);
this.length = 1, this[0] = a
}
return this.context = o, this.selector = e, this
}
return e.nodeType ? (this.context = this[0] = e, this.length = 1, this) : b.isFunction(e) ? r.ready(e) : (e.selector !== t && (this.selector = e.selector, this.context = e.context), b.makeArray(e, this))
}, selector: "", length: 0, size: function () {
return this.length
}, toArray: function () {
return h.call(this)
}, get: function (e) {
return null == e ? this.toArray() : 0 > e ? this[this.length + e] : this[e]
}, pushStack: function (e) {
var t = b.merge(this.constructor(), e);
return t.prevObject = this, t.context = this.context, t
}, each: function (e, t) {
return b.each(this, e, t)
}, ready: function (e) {
return b.ready.promise().done(e), this
}, slice: function () {
return this.pushStack(h.apply(this, arguments))
}, first: function () {
return this.eq(0)
}, last: function () {
return this.eq(-1)
}, eq: function (e) {
var t = this.length, n = +e + (0 > e ? t : 0);
return this.pushStack(n >= 0 && t > n ? [this[n]] : [])
}, map: function (e) {
return this.pushStack(b.map(this, function (t, n) {
return e.call(t, n, t)
}))
}, end: function () {
return this.prevObject || this.constructor(null)
}, push: d, sort: [].sort, splice: [].splice
}, b.fn.init.prototype = b.fn, b.extend = b.fn.extend = function () {
var e, n, r, i, o, a, s = arguments[0] || {}, u = 1, l = arguments.length, c = !1;
for ("boolean" == typeof s && (c = s, s = arguments[1] || {}, u = 2), "object" == typeof s || b.isFunction(s) || (s = {}), l === u && (s = this, --u); l > u; u++)if (null != (o = arguments[u]))for (i in o)e = s[i], r = o[i], s !== r && (c && r && (b.isPlainObject(r) || (n = b.isArray(r))) ? (n ? (n = !1, a = e && b.isArray(e) ? e : []) : a = e && b.isPlainObject(e) ? e : {}, s[i] = b.extend(c, a, r)) : r !== t && (s[i] = r));
return s
}, b.extend({
noConflict: function (t) {
return e.$ === b && (e.$ = u), t && e.jQuery === b && (e.jQuery = s), b
}, isReady: !1, readyWait: 1, holdReady: function (e) {
e ? b.readyWait++ : b.ready(!0)
}, ready: function (e) {
if (e === !0 ? !--b.readyWait : !b.isReady) {
if (!o.body)return setTimeout(b.ready);
b.isReady = !0, e !== !0 && --b.readyWait > 0 || (n.resolveWith(o, [b]), b.fn.trigger && b(o).trigger("ready").off("ready"))
}
}, isFunction: function (e) {
return "function" === b.type(e)
}, isArray: Array.isArray || function (e) {
return "array" === b.type(e)
}, isWindow: function (e) {
return null != e && e == e.window
}, isNumeric: function (e) {
return !isNaN(parseFloat(e)) && isFinite(e)
}, type: function (e) {
return null == e ? e + "" : "object" == typeof e || "function" == typeof e ? l[m.call(e)] || "object" : typeof e
}, isPlainObject: function (e) {
if (!e || "object" !== b.type(e) || e.nodeType || b.isWindow(e))return !1;
try {
if (e.constructor && !y.call(e, "constructor") && !y.call(e.constructor.prototype, "isPrototypeOf"))return !1
} catch (n) {
return !1
}
var r;
for (r in e);
return r === t || y.call(e, r)
}, isEmptyObject: function (e) {
var t;
for (t in e)return !1;
return !0
}, error: function (e) {
throw Error(e)
}, parseHTML: function (e, t, n) {
if (!e || "string" != typeof e)return null;
"boolean" == typeof t && (n = t, t = !1), t = t || o;
var r = C.exec(e), i = !n && [];
return r ? [t.createElement(r[1])] : (r = b.buildFragment([e], t, i), i && b(i).remove(), b.merge([], r.childNodes))
}, parseJSON: function (n) {
return e.JSON && e.JSON.parse ? e.JSON.parse(n) : null === n ? n : "string" == typeof n && (n = b.trim(n), n && k.test(n.replace(S, "@").replace(A, "]").replace(E, ""))) ? Function("return " + n)() : (b.error("Invalid JSON: " + n), t)
}, parseXML: function (n) {
var r, i;
if (!n || "string" != typeof n)return null;
try {
e.DOMParser ? (i = new DOMParser, r = i.parseFromString(n, "text/xml")) : (r = new ActiveXObject("Microsoft.XMLDOM"), r.async = "false", r.loadXML(n))
} catch (o) {
r = t
}
return r && r.documentElement && !r.getElementsByTagName("parsererror").length || b.error("Invalid XML: " + n), r
}, noop: function () {
}, globalEval: function (t) {
t && b.trim(t) && (e.execScript || function (t) {
e.eval.call(e, t)
})(t)
}, camelCase: function (e) {
return e.replace(j, "ms-").replace(D, L)
}, nodeName: function (e, t) {
return e.nodeName && e.nodeName.toLowerCase() === t.toLowerCase()
}, each: function (e, t, n) {
var r, i = 0, o = e.length, a = M(e);
if (n) {
if (a) {
for (; o > i; i++)if (r = t.apply(e[i], n), r === !1)break
} else for (i in e)if (r = t.apply(e[i], n), r === !1)break
} else if (a) {
for (; o > i; i++)if (r = t.call(e[i], i, e[i]), r === !1)break
} else for (i in e)if (r = t.call(e[i], i, e[i]), r === !1)break;
return e
}, trim: v && !v.call("\ufeff\u00a0") ? function (e) {
return null == e ? "" : v.call(e)
} : function (e) {
return null == e ? "" : (e + "").replace(T, "")
}, makeArray: function (e, t) {
var n = t || [];
return null != e && (M(Object(e)) ? b.merge(n, "string" == typeof e ? [e] : e) : d.call(n, e)), n
}, inArray: function (e, t, n) {
var r;
if (t) {
if (g)return g.call(t, e, n);
for (r = t.length, n = n ? 0 > n ? Math.max(0, r + n) : n : 0; r > n; n++)if (n in t && t[n] === e)return n
}
return -1
}, merge: function (e, n) {
var r = n.length, i = e.length, o = 0;
if ("number" == typeof r)for (; r > o; o++)e[i++] = n[o]; else while (n[o] !== t)e[i++] = n[o++];
return e.length = i, e
}, grep: function (e, t, n) {
var r, i = [], o = 0, a = e.length;
for (n = !!n; a > o; o++)r = !!t(e[o], o), n !== r && i.push(e[o]);
return i
}, map: function (e, t, n) {
var r, i = 0, o = e.length, a = M(e), s = [];
if (a)for (; o > i; i++)r = t(e[i], i, n), null != r && (s[s.length] = r); else for (i in e)r = t(e[i], i, n), null != r && (s[s.length] = r);
return f.apply([], s)
}, guid: 1, proxy: function (e, n) {
var r, i, o;
return "string" == typeof n && (o = e[n], n = e, e = o), b.isFunction(e) ? (r = h.call(arguments, 2), i = function () {
return e.apply(n || this, r.concat(h.call(arguments)))
}, i.guid = e.guid = e.guid || b.guid++, i) : t
}, access: function (e, n, r, i, o, a, s) {
var u = 0, l = e.length, c = null == r;
if ("object" === b.type(r)) {
o = !0;
for (u in r)b.access(e, n, u, r[u], !0, a, s)
} else if (i !== t && (o = !0, b.isFunction(i) || (s = !0), c && (s ? (n.call(e, i), n = null) : (c = n, n = function (e, t, n) {
return c.call(b(e), n)
})), n))for (; l > u; u++)n(e[u], r, s ? i : i.call(e[u], u, n(e[u], r)));
return o ? e : c ? n.call(e) : l ? n(e[0], r) : a
}, now: function () {
return (new Date).getTime()
}
}), b.ready.promise = function (t) {
if (!n)if (n = b.Deferred(), "complete" === o.readyState) setTimeout(b.ready); else if (o.addEventListener) o.addEventListener("DOMContentLoaded", H, !1), e.addEventListener("load", H, !1); else {
o.attachEvent("onreadystatechange", H), e.attachEvent("onload", H);
var r = !1;
try {
r = null == e.frameElement && o.documentElement
} catch (i) {
}
r && r.doScroll && function a() {
if (!b.isReady) {
try {
r.doScroll("left")
} catch (e) {
return setTimeout(a, 50)
}
q(), b.ready()
}
}()
}
return n.promise(t)
}, b.each("Boolean Number String Function Array Date RegExp Object Error".split(" "), function (e, t) {
l["[object " + t + "]"] = t.toLowerCase()
});
function M(e) {
var t = e.length, n = b.type(e);
return b.isWindow(e) ? !1 : 1 === e.nodeType && t ? !0 : "array" === n || "function" !== n && (0 === t || "number" == typeof t && t > 0 && t - 1 in e)
}
r = b(o);
var _ = {};
function F(e) {
var t = _[e] = {};
return b.each(e.match(w) || [], function (e, n) {
t[n] = !0
}), t
}
b.Callbacks = function (e) {
e = "string" == typeof e ? _[e] || F(e) : b.extend({}, e);
var n, r, i, o, a, s, u = [], l = !e.once && [], c = function (t) {
for (r = e.memory && t, i = !0, a = s || 0, s = 0, o = u.length, n = !0; u && o > a; a++)if (u[a].apply(t[0], t[1]) === !1 && e.stopOnFalse) {
r = !1;
break
}
n = !1, u && (l ? l.length && c(l.shift()) : r ? u = [] : p.disable())
}, p = {
add: function () {
if (u) {
var t = u.length;
(function i(t) {
b.each(t, function (t, n) {
var r = b.type(n);
"function" === r ? e.unique && p.has(n) || u.push(n) : n && n.length && "string" !== r && i(n)
})
})(arguments), n ? o = u.length : r && (s = t, c(r))
}
return this
}, remove: function () {
return u && b.each(arguments, function (e, t) {
var r;
while ((r = b.inArray(t, u, r)) > -1)u.splice(r, 1), n && (o >= r && o--, a >= r && a--)
}), this
}, has: function (e) {
return e ? b.inArray(e, u) > -1 : !(!u || !u.length)
}, empty: function () {
return u = [], this
}, disable: function () {
return u = l = r = t, this
}, disabled: function () {
return !u
}, lock: function () {
return l = t, r || p.disable(), this
}, locked: function () {
return !l
}, fireWith: function (e, t) {
return t = t || [], t = [e, t.slice ? t.slice() : t], !u || i && !l || (n ? l.push(t) : c(t)), this
}, fire: function () {
return p.fireWith(this, arguments), this
}, fired: function () {
return !!i
}
};
return p
}, b.extend({
Deferred: function (e) {
var t = [["resolve", "done", b.Callbacks("once memory"), "resolved"], ["reject", "fail", b.Callbacks("once memory"), "rejected"], ["notify", "progress", b.Callbacks("memory")]],
n = "pending", r = {