-
Notifications
You must be signed in to change notification settings - Fork 1
/
list.html
1002 lines (861 loc) · 39.6 KB
/
list.html
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="zh-CN">
<head>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1">
<meta http-equiv="Cache-Control" content="no-siteapp">
<meta name="renderer" content="webkit">
<meta charset=utf-8">
<title>readfree.me</title>
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=1, minimal-ui">
<meta name="description" content="基于豆瓣和Kindle,电子书推送和下载">
<meta name="keywords" content="Douban,Kindle,Duokan,eBook,Read,Free,Push,mobi,免费,阅读,豆瓣,电子书,多看,爱看豆,推送">
<meta name="author" content="guoqiao">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black-translucent">
<meta name="baidu-site-verification" content="OWoHq3dtZcsoffFb" />
<meta name="baidu_union_verify" content="ca74f9b82d82cbd51b01262367daf29b">
<meta property="qc:admins" content="246446362146255655" />
<link rel="icon" href="/static/img/icon24.png">
<link rel="shortcut icon" href="/static/img/icon24.png">
<link rel="stylesheet" type="text/css" href="http://cdn.staticfile.org/chosen/1.1.0/chosen.min.css" />
<link rel="stylesheet" type="text/css" href="http://cdn.staticfile.org/messenger/1.4.0/css/messenger.css" />
<link rel="stylesheet" type="text/css" href="http://cdn.staticfile.org/messenger/1.4.0/css/messenger-theme-future.css" />
<link rel="stylesheet" type="text/css" type="text/css" href="/static/bootstrap/css/bootstrap.min.282663d1dc8a.css" />
<link rel="stylesheet" type="text/css" type="text/css" href="/static/bootstrap/css/bootstrap-responsive.min.365a247af403.css" />
<link rel="stylesheet" type="text/css" type="text/css" href="/static/build/main.min.97b4501ffad2.css" />
<script src="http://cdn.staticfile.org/jquery/2.1.1/jquery.min.js"></script>
<script src="http://cdn.staticfile.org/underscore.js/1.7.0/underscore-min.js"></script>
</head>
<body>
<div class="navbar navbar-fixed-top" id="navbar">
<div class="navbar-inner">
<div class="container">
<button type="button" class="btn btn-navbar" data-toggle="collapse" data-target=".nav-collapse">
<span class="icon-bar"></span>
<span class="icon-bar"></span>
<span class="icon-bar"></span>
</button>
<a class="brand" href="/"></a>
<div class='nav-collapse collapse'>
<ul class="nav">
<li class="nav-item "><a href="/shuffle/"><i class="icon-random icon-white"></i>推荐</a></li>
<li class="nav-item "><a href="/psyche/"><i class="icon-heart icon-white"></i>精华</a></li>
<li class="nav-item "><a href="/rank/7/"><i class="icon-fire icon-white"></i>热门</a></li>
<li class="nav-item "><a href="/heros/7/"><i class="icon-list icon-white"></i>贡献</a></li>
<li class="nav-item "><a href="/tags/"><i class="icon-tags icon-white"></i>分类</a></li>
</ul>
<form class="navbar-search"
action="/search/" method="get">
<input id="q" class="search-query" name="q" value="" placeholder="书名/作者/出版社/ISBN" type="text" >
</form>
<ul class="nav pull-right">
<li class="nav-item">
<a href="/accounts/signin/">
<i class="icon-user icon-white"></i> 登录
</a>
</li>
</ul>
</div>
</div>
</div>
</div>
<!-- Modal -->
<div id="wechat-qrcode" class="modal hide fade" tabindex="-1" role="dialog" aria-labelledby="myModalLabel" aria-hidden="true">
<div class="modal-header">
<button type="button" class="close" data-dismiss="modal" aria-hidden="true">×</button>
<h3 id="myModalLabel">readfree 微信公众号</h3>
</div>
<div class="modal-body">
<img width=150 height=150 src="/static/img/wechat.cff4aae8a25e.jpg" alt="wechat: readfree">
<p>支持搜索和推送本站书籍. 欢迎试用:)</p>
</div>
<div class="modal-footer">
<button class="btn btn-primary" data-dismiss="modal" aria-hidden="true">知道啦:)</button>
</div>
</div>
<div id="lightbox">
<div id="pjax" class="container"></div>
</div>
<div class="loading-container">
<div class="loading"></div>
<div id="loading-text">loading..</div>
</div>
<div id="container" class='container'>
<ul class='unstyled book-index'>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/25982198/">
<img class='book-cover img-rounded' src="https://img3.doubanio.com/mpic/s28019380.jpg" alt="社会心理学"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/25982198/">
社会心理学
</a>
<p>
<small>戴维·迈尔斯 (David Myers)</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">9.6</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/1418098/">
<img class='book-cover img-rounded' src="https://img3.doubanio.com/mpic/s1656925.jpg" alt="正念的奇迹"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/1418098/">
正念的奇迹
</a>
<p>
<small>一行禅师</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">8.9</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/5323008/">
<img class='book-cover img-rounded' src="https://img3.doubanio.com/mpic/s6933046.jpg" alt="超越平凡的平面设计"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/5323008/">
超越平凡的平面设计
</a>
<p>
<small>[美] 麦克韦德</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">8.8</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/26421453/">
<img class='book-cover img-rounded' src="https://img1.doubanio.com/mpic/s28106298.jpg" alt="基因革命"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/26421453/">
基因革命
</a>
<p>
<small>沙伦·莫勒姆</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">7.8</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/25742411/">
<img class='book-cover img-rounded' src="https://img3.doubanio.com/mpic/s27995540.jpg" alt="亲历投行"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/25742411/">
亲历投行
</a>
<p>
<small>班妮</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">7.4</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/1021530/">
<img class='book-cover img-rounded' src="https://img1.doubanio.com/mpic/s1014778.jpg" alt="宋氏三姐妹"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/1021530/">
宋氏三姐妹
</a>
<p>
<small>陈廷一</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">7.3</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/25760310/">
<img class='book-cover img-rounded' src="https://img1.doubanio.com/mpic/s27120117.jpg" alt="麻衣世家"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/25760310/">
麻衣世家
</a>
<p>
<small>御风楼主人</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">7.0</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/2111791/">
<img class='book-cover img-rounded' src="https://img3.doubanio.com/mpic/s8960796.jpg" alt="哲学问题"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/2111791/">
哲学问题
</a>
<p>
<small>[英] 伯特兰·罗素</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">8.7</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/1269900/">
<img class='book-cover img-rounded' src="https://img3.doubanio.com/mpic/s1265183.jpg" alt="活法"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/1269900/">
活法
</a>
<p>
<small>(日)稻盛和夫</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">8.2</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/4904712/">
<img class='book-cover img-rounded' src="https://img3.doubanio.com/mpic/s4458902.jpg" alt="投机者的扑克"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/4904712/">
投机者的扑克
</a>
<p>
<small>扁虫鱼</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">8.4</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/4260618/">
<img class='book-cover img-rounded' src="https://img1.doubanio.com/mpic/s4220739.jpg" alt="设计模式之禅"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/4260618/">
设计模式之禅
</a>
<p>
<small>秦小波</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">7.6</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/3057556/">
<img class='book-cover img-rounded' src="https://img1.doubanio.com/mpic/s28036829.jpg" alt="狂热分子"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/3057556/">
狂热分子
</a>
<p>
<small>[美] 埃里克·霍弗</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">9.1</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/26775569/">
<img class='book-cover img-rounded' src="https://img3.doubanio.com/mpic/s28733053.jpg" alt="别生气,我又不是在说你"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/26775569/">
别生气,我又不是在说你
</a>
<p>
<small>韩国辉,左小祖咒</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">7.0</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/1056461/">
<img class='book-cover img-rounded' src="https://img1.doubanio.com/mpic/s1888079.jpg" alt="旅行的艺术"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/1056461/">
旅行的艺术
</a>
<p>
<small>[英] 阿兰·德波顿</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">8.3</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/6712255/">
<img class='book-cover img-rounded' src="https://img1.doubanio.com/mpic/s6643217.jpg" alt="天真的人类学家"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/6712255/">
天真的人类学家
</a>
<p>
<small>[英] 奈吉尔·巴利</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">8.8</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/26422579/">
<img class='book-cover img-rounded' src="https://img3.doubanio.com/mpic/s28107372.jpg" alt="Learning Data Mining with Python"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/26422579/">
Learning Data Mining with Python
</a>
<p>
<small>Robert Layton</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">0.0</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/2344057/">
<img class='book-cover img-rounded' src="https://img3.doubanio.com/mpic/s5773800.jpg" alt="投资大百科"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/2344057/">
投资大百科
</a>
<p>
<small>张海滨</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">0.0</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/2006338/">
<img class='book-cover img-rounded' src="https://img1.doubanio.com/mpic/s26042169.jpg" alt="论系统工程"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/2006338/">
论系统工程
</a>
<p>
<small>钱学森</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">8.0</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/3350772/">
<img class='book-cover img-rounded' src="https://img1.doubanio.com/mpic/s8887249.jpg" alt="项目经理案头手册"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/3350772/">
项目经理案头手册
</a>
<p>
<small>刘易斯</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">8.5</span>
</span>
</div>
</div>
</li>
<li>
<div class="well">
<div class='row-fluid'>
<div class="span6" style="width:48%;float:left;">
<a class="pjax" href="/book/4920818/">
<img class='book-cover img-rounded' src="https://img3.doubanio.com/mpic/s6200763.jpg" alt="数码单反相机使用从入门到精通"/>
</a>
</div>
<div class="span6" style="width:48%;float:left;padding-left:5px;">
<a class="pjax" href="/book/4920818/">
数码单反相机使用从入门到精通
</a>
<p>
<small>光合网</small>
</p>
</div>
</div>
<div class='row-fluid meta muted'>
<small title='推送'>
<i class="icon-share-alt"></i>
0
</small>
<small title='下载'>
<i class="icon-download-alt"></i>
0
</small>
<small title='评论'>
<i class="icon-comment"></i>
0
</small>
<span class='douban'>
<span class="badge badge-success" title="豆瓣评分">0.0</span>
</span>
</div>
</div>
</li>
<div class='clearfix'></div>
</ul>
<div class="pagination pagination-centered">
<ul>
<li><a title='上一页' href="?page=3">«</a></li>
<li class="hidden-phone"><a href="?page=1">1</a></li>
<li class="hidden-phone"><a href="?page=2">2</a></li>
<li class="hidden-phone"><a href="?page=3">3</a></li>
<li class='active'><span>4</span></li>
<li class="hidden-phone"><a href="?page=5">5</a></li>
<li class="hidden-phone"><a href="?page=6">6</a></li>
<li class="hidden-phone"><a href="?page=7">7</a></li>
<li class="hidden-phone"><span>...</span></li>
<li class="hidden-phone"><a href="?page=1132">1132</a></li>
<li class="hidden-phone"><a href="?page=1133">1133</a></li>
<li><a title='下一页' href="?page=5">»</a></li>
<form id="go-to" class="form-inline pull-right" action="" method="get">
<input class="input-mini" id="id_goto" name="page" type="number"
min="1" max="1133" value="249">
<button type="submit" class="btn btn-small">
<i class="icon-random"></i>
</button>
</form>
</ul>
</div>
</div>
<div id="footer">
<div class="container text-center">
<ul class='inline'>
<li><a target='_blank' href="http://www.weibo.com/readfreeme/">新浪微博</a></li>
<li><a target='_blank' href="http://www.douban.com/group/readfree.me/">豆瓣小组</a></li>
<li><a target='_blank' href="/wenli/">豆瓣插件</a></li>
<li><a target='_blank' href="/faq/">常见问题</a></li>
<li><a target='_blank' href="/contact/">联系站长</a></li>
<li><a href="/chat/">聊天室</a></li>
<li class="muted">QQ群: 312929250 验证信息: rf</li>
</ul>
</div>
</div>
<script src="http://cdn.staticfile.org/chosen/1.1.0/chosen.jquery.min.js"></script>
<script src="http://cdn.staticfile.org/jquery.pjax/1.9.2/jquery.pjax.min.js"></script>
<script src="http://cdn.staticfile.org/messenger/1.4.0/js/messenger.min.js"></script>
<script src="http://cdn.staticfile.org/messenger/1.4.0/js/messenger-theme-future.js"></script>
<script src="/static/bootstrap/js/bootstrap.min.db7b0633195a.js"></script>
<script type="text/javascript">
var g_url_back = '/';
var g_url_wish = '/edition/wish';
var g_url_push = '/edition/push';
var g_show_ads = 1;
</script>
<script src="/static/js/main.76c7235c3711.js"></script>
<script type="text/javascript" name="baidu-tc-cerfication" src="http://apps.bdimg.com/cloudaapi/lightapp.js#043d5ddd499ae59115b19c7a15b1c0b6"></script>
<script type="text/javascript">
window.bd && bd._qdc && bd._qdc.init({app_id: 'ff18da941948ee15e3ed05ad'});
</script>