-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathlist.html
2109 lines (2095 loc) · 155 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="en">
<head>
<meta charset="UTF-8">
<meta name="viewport" content="width=device-width, initial-scale=1.0">
<meta http-equiv="X-UA-Compatible" content="ie=edge">
<title>豆瓣同城_北京</title>
<link rel="stylesheet" href="assets/css/list.css">
</head>
<body>
<div class="global-nav">
<div class="bd">
<div class="top-nav-info">
<a href="https://www.douban.com/accounts/login?source=main" class="nav-login" rel="nofollow">登录</a>
<a href="https://www.douban.com/accounts/register?source=main" class="nav-register" rel="nofollow">注册</a>
</div>
<div class="top-nav-doubanapp">
<a href="https://www.douban.com/doubanapp/app?channel=top-nav" class="lnk-doubanapp">下载豆瓣客户端</a>
<div id="top-nav-appintro" class="more-items">
<p class="appintro-title">豆瓣</p>
<p class="slogan">我们的精神角落</p>
<p class="qrcode">扫码直接下载</p>
<div class="download">
<a href="https://www.douban.com/doubanapp/redirect?channel=top-nav&direct_dl=1&download=iOS">iPhone</a>
<span>·</span>
<a href="https://www.douban.com/doubanapp/redirect?channel=top-nav&direct_dl=1&download=Android" class="download-android">Android</a>
</div>
</div>
</div>
<div class="global-nav-items">
<ul>
<li class="on">
<a href="https://www.douban.com">豆瓣</a>
</li>
<li class="">
<a href="https://book.douban.com">读书</a>
</li>
<li class="">
<a href="https://movie.douban.com">电影</a>
</li>
<li class="">
<a href="https://music.douban.com">音乐</a>
</li>
<li class="">
<a href="https://www.douban.com/location">同城</a>
</li>
<li class="">
<a href="https://www.douban.com/group">小组</a>
</li>
<li class="">
<a href="https://read.douban.com/?dcs=top-nav&dcm=douban">阅读</a>
</li>
<li class="">
<a href="https://douban.fm/?from_=shire_top_nav">FM</a>
</li>
<li class="">
<a href="https://www.douban.com/time/?dt_time_source=douban-web_top_nav">时间</a>
</li>
<li class="">
<a href="https://dongxi.douban.com/?dcs=top-nav&dcm=douban">东西</a>
</li>
<li class="">
<a href="https://market.douban.com/?utm_campaign=douban_top_nav&utm_source=douban&utm_medium=pc_web">市集</a>
</li>
<li>
<a href="#more" class="bn-more">更多</a>
</li>
</ul>
</div>
</div>
</div>
<nav>
<div class="nav-wrap">
<div class="nav-primary">
<div class="nav-logo">
<a href="https://beijing.douban.com/">豆瓣同城_北京</a>
</div>
<div class="local-label">
<a href="https://beijing.douban.com/" class="label">北京<i></i></a>
<div id="db-nav-location-list" class="nav-local-list">
<ul>
<li><a href="https://www.douban.com/location/beijing/">北京</a></li>
<li><a href="https://www.douban.com/location/shanghai/">上海</a></li>
<li><a href="https://www.douban.com/location/guangzhou/">广州</a></li>
<li><a href="https://www.douban.com/location/wuhan/">武汉</a></li>
<li><a href="https://www.douban.com/location/chengdu/">成都</a></li>
<li><a href="https://www.douban.com/location/shenzhen/">深圳</a></li>
<li><a href="https://www.douban.com/location/hangzhou/">杭州</a></li>
<li><a href="https://www.douban.com/location/xian/">西安</a></li>
<li><a href="https://www.douban.com/location/nanjing/">南京</a></li>
<li><a href="https://www.douban.com/location/zhengzhou/">郑州</a></li>
<li><a href="https://www.douban.com/location/changsha/">长沙</a></li>
<li><a href="https://www.douban.com/location/wenzhou/">温州</a></li>
<li><a href="https://www.douban.com/location/fuzhou/">福州</a></li>
<li><a href="https://www.douban.com/location/shenyang/">沈阳</a></li>
<li><a href="https://www.douban.com/location/world/">更多城市</a></li>
</ul>
</div>
</div>
<div class="nav-search">
<form action="https://www.douban.com/search" method="get">
<label for="inp-query" style="display: none;">活动 / 舞台剧 / 地点</label>
<div class="inp">
<input id="inp-query" name="q" size="22" maxlength="60" autocomplete="off" value="" placeholder="活动/舞台剧/地点">
</div>
<div class="inp-btn"><input type="submit" value="搜索"></div>
</form>
</div>
<div class="nav-items">
<ul>
<li><a href="https://beijing.douban.com/events">近期活动</a></li>
<li>
<a href="https://beijing.douban.com/hosts">主办方</a>
</li>
<li>
<a href="https://www.douban.com/location/drama/">舞台剧</a>
</li>
<li>
<a href="https://www.douban.com/location/drama/annual2016">2016舞台剧榜单</a>
</li>
</ul>
</div>
</div>
</div>
</nav>
<div class="wrapper">
<div id="content">
<article>
<div id="db-events-guess" class="mod ui-slides">
<div class="hd">
<h2>热门活动</h2>
<div class="ui-slide-control">
<span class="ui-slide-counter pl">1/4</span>
<a class="btn-prev btn-prev-disabled" href="javascript:void(0)"></a>
<a class="btn-next btn-next-disabled" href="javascript:void(0)"></a>
</div>
</div>
<div class="bd ui-slide-screen">
<ul class="ui-slide-contents gallery gallery-pic110" id="gallery">
<li>
<div class="pic on-sale">
<a href="https://www.douban.com/event/28782753/"><img alt="" src="https://img3.doubanio.com/view/event_poster/large/public/086e15f4536f3f5.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/28782753/" title="中国当代著名导演作品邀请展:田沁鑫导演作品《聆听弘一》">中国当代著名导演作品邀请展:...</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/29156851/"><img alt="" src="https://img1.doubanio.com/view/event_poster/large/public/81f3c8b3d78d3b9.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/29156851/" title="大道文化出品-陈佩斯、杨立新主演《戏台》" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">大道文化出品-陈佩斯、杨立新...</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" href="https://www.douban.com/event/28927815/"><img alt="" src="https://img1.doubanio.com/view/event_poster/large/public/3961f8011d676ca.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/28927815/" title="林奕华舞台剧《小飞侠彼得潘之机场无真爱》2017北京站" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">林奕华舞台剧《小飞侠彼得潘之...</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/29228316/"><img alt="" src="https://img1.doubanio.com/view/event_poster/large/public/60316a5526b893c.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/29228316/" title="美国旧金山歌剧院制作英文原版歌剧《红楼梦》北京站(保利和乐中国之夜)" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">美国旧金山歌剧院制作英文原版...</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/29260499/"><img alt="" src="https://img3.doubanio.com/view/event_poster/large/public/9629a9f9d4fdb26.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/29260499/" title="秋日私语——北欧天籁音乐会" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">秋日私语——北欧天籁音乐会</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/28342200/"><img alt="" src="https://img1.doubanio.com/view/event_poster/large/public/d2754d2884c2998.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/28342200/" title="汪峰2017岁月超级巡回演唱会" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">汪峰2017岁月超级巡回演唱会</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/29142465/"><img alt="" src="https://img3.doubanio.com/view/event_poster/large/public/b6694854dd13f96.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/29142465/" title="舞台剧《月亮和六便士》" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">舞台剧《月亮和六便士》</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/29006841/"><img alt="" src="https://img3.doubanio.com/view/event_poster/large/public/d06d5049cb5d562.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/29006841/" title="百老汇原版经典喜剧音乐剧《修女也疯狂》 北京站" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">百老汇原版经典喜剧音乐剧《修...</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/28772189/"><img alt="" src="https://img1.doubanio.com/view/event_poster/large/public/9dcdb28bad18da8.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/28772189/" title="改编自电影《十二怒汉》/话剧 《12個人》12 Angry Men" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">改编自电影《十二怒汉》/话剧 ...</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/28966887/"><img alt="" src="https://img3.doubanio.com/view/event_poster/large/public/4189ca544ef905d.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/28966887/" title="双人展│你不是一个人跟世界单挑" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">双人展│你不是一个人跟世界单挑</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/28961953/"><img alt="" src="https://img3.doubanio.com/view/event_poster/large/public/87931f755373add.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/28961953/" title="易中天执笔·民国悲喜剧《模范监狱》" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">易中天执笔·民国悲喜剧《模范...</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/28813204/"><img alt="" src="https://img1.doubanio.com/view/event_poster/large/public/73b7fc7c2a32608.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/28813204/" title="《枕头人》鼓楼西人气冠军 三年连演不衰 颠覆性神作" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">《枕头人》鼓楼西人气冠军 三...</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/29203867/"><img alt="" src="https://img1.doubanio.com/view/event_poster/large/public/5b0d77157151a6b.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/29203867/" title="话剧:《洋麻将》" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">话剧:《洋麻将》</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/29246066/"><img alt="" src="https://img1.doubanio.com/view/event_poster/large/public/822aeffa0b0a1ca.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/29246066/" title="爱乐汇· 《夜的钢琴曲》——石进钢琴作品音乐会 北京站" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">爱乐汇· 《夜的钢琴曲》——...</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/28076112/"><img alt="" src="https://img3.doubanio.com/view/event_poster/large/public/f3e3da2487d949d.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/28076112/" title="北京音乐厅2017国际古典音乐季 从巴赫到披头士—瑞典吉他大师格兰•索舍尔专场音乐会" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">北京音乐厅2017国际古典音乐季...</a>
</div>
</li>
<li>
<div class="pic on-sale">
<a tabindex="-1" onclick="moreurl(this, {from:'loc-index-guess-beijing'})" href="https://www.douban.com/event/29089752/"><img alt="" src="https://img3.doubanio.com/view/event_poster/large/public/570afcda81cbb16.jpg" width="110" height="165"></a>
</div>
<div class="title">
<a href="https://www.douban.com/event/29089752/" title="光荣绽放:“生命的律动”王弢单簧管独奏音乐会" onclick="moreurl(this, {from:'loc-index-guess-beijing'})">光荣绽放:“生命的律动”王弢...</a>
</div>
</li>
</ul>
</div>
</div>
<div class="mod cats-board inline-list">
<ul class="crow">
<li class="col">
<div class="cats-detail">
<h5>
<a href="events/week-music">音乐»</a>
</h5>
<ul>
<li>
<a href="events/week-1001">小型现场</a>
</li>
<li>
<a href="events/week-1002">音乐会</a>
</li>
<li>
<a href="events/week-1003">演唱会</a>
</li>
<li>
<a href="events/week-1004">音乐节</a>
</li>
</ul>
</div>
</li>
<li class="col">
<div class="cats-detail">
<h5>
<a href="events/week-drama">戏剧»</a>
</h5>
<ul>
<li>
<a href="events/week-1101">话剧</a>
</li>
<li>
<a href="events/week-1102">音乐剧</a>
</li>
<li>
<a href="events/week-1103">舞剧</a>
</li>
<li>
<a href="events/week-1104">歌剧</a>
</li>
<li>
<a href="events/week-1105">戏曲</a>
</li>
<li>
<a href="events/week-1106">其他</a>
</li>
</ul>
</div>
</li>
<li class="col">
<div class="cats-detail">
<h5>
<a href="events/week-party">聚会»</a>
</h5>
<ul>
<li>
<a href="events/week-1401">生活</a>
</li>
<li>
<a href="events/week-1402">集市</a>
</li>
<li>
<a href="events/week-1403">摄影</a>
</li>
<li>
<a href="events/week-1404">外语</a>
</li>
<li>
<a href="events/week-1405">桌游</a>
</li>
<li>
<a href="events/week-1407">交友</a>
</li>
<li>
<a href="events/week-1408">美食</a>
</li>
<li>
<a href="events/week-1409">派对</a>
</li>
</ul>
</div>
</li>
<li class="col">
<div class="cats-detail">
<h5>
<a href="events/week-film">电影»</a>
</h5>
<ul>
<li>
<a href="events/week-1801">主题放映</a>
</li>
<li>
<a href="events/week-1802">影展</a>
</li>
<li>
<a href="events/week-1803">影院活动</a>
</li>
</ul>
</div>
</li>
<li class="col">
<div class="cats-detail">
<h5>
<a href="events/week-all">其他»</a>
</h5>
<ul>
<li>
<a href="events/week-salon">讲座</a>
</li>
<li>
<a href="events/week-exhibition">展览</a>
</li>
<li>
<a href="events/week-sports">运动</a>
</li>
<li>
<a href="events/week-travel">旅行</a>
</li>
<li>
<a href="events/week-commonweal">公益</a>
</li>
<li>
<a href="events/week-competition">赛事</a>
</li>
<li>
<a href="events/week-course">课程</a>
</li>
<li>
<a href="events/week-kids">亲子</a>
</li>
</ul>
</div>
</li>
</ul>
</div>
<div class="ad">
<div style="position: relative; margin: 0px 0px 40px; display: block; width: 590px; height: 112px;">
<div style="line-height: 1; text-align: center; background-color: rgba(0, 0, 0, 0.3); color: rgb(255, 255, 255); font-size: 12px; position: absolute; padding: 4px; right: 0px; bottom: 0px;">广告</div>
</div>
</div>
<div id="picked-events">
<div class="mod event-mod">
<div class="hd">
<h2>
<span class="title">音乐</span>
</h2>
<span class="pl rr">
<a href="events/week-music">更多》</a>
</span>
<div class="tabs">
<a class="on" href="events/week-music">
<span>最热</span>
</a>
<a href="events/week-1001" data-i="0">
<span>小型现场</span>
</a>
<a href="events/week-1002" data-i="1">
<span>音乐会</span>
</a>
<a href="events/week-1003" data-i="2">
<span>演唱会</span>
</a>
<a href="events/week-1004" data-i="3">
<span>音乐节</span>
</a>
</div>
</div>
<div class="bd">
<ul class="events-list events-list-2col events-list-pic70">
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/28821874/">
<img alt="" data-lazy="https://img1.doubanio.com/view/event_poster/small/public/0f60c516f6e78b7.jpg" src="./assets/images/list/音乐1.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/28821874/" title="管风琴时光之旅—辉煌500年名曲音乐会">管风琴时光之旅—辉煌500年名曲音乐会</a>
</div>
<div class="datetime">
<span class="month">9月</span><span class="day">5日 周二</span> <span class="time">00:00 - 21:30</span>
</div>
<address title="北京 中山音乐堂">中山音乐堂</address>
<div>
187人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/28090001/">
<img alt="" data-lazy="https://img1.doubanio.com/view/event_poster/small/public/d14bb39b8545399.jpg" src="./assets/images/list/音乐2.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/28090001/" title="从巴赫到披头士——瑞典吉他大师格兰•索舍尔专场音乐会">从巴赫到披头士——瑞典吉他大师格兰•索舍尔专场音...</a>
</div>
<div class="datetime">
<span class="month">9月</span><span class="day">22日 周五</span> <span class="time">19:30 - 22:00</span>
</div>
<address title="北京 西城区 北新华街1号 北京音乐厅">北新华街1号 北京音乐厅</address>
<div>
248人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/29140516/">
<img alt="" data-lazy="https://img3.doubanio.com/view/event_poster/small/public/9fabb4f71c4dbe0.jpg" src="./assets/images/list/音乐3.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29140516/" title="2017年国家艺术院团演出季:“永恒的贝多芬”中央歌剧院交响音乐会">2017年国家艺术院团演出季:“永恒的贝多芬”中央歌剧...</a>
</div>
<div class="datetime">
<span class="month">9月</span><span class="day">22日 周五</span> <span class="time">19:30 - 21:30</span>
</div>
<address title="北京 北京市西城区西长安街2号(人民大会堂西侧)">北京市西城区西长安街2号(...</address>
<div>
22人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/28065360/">
<img alt="" data-lazy="https://img3.doubanio.com/view/event_poster/small/public/ee6a51a5dcdf3c2.jpg" src="./assets/images/list/音乐4.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/28065360/" title="雨中花园——盛原色彩演绎德彪西钢琴独奏音乐会"> 雨中花园——盛原色彩演绎德彪西钢琴独奏音乐会</a>
</div>
<div class="datetime">
<span class="month">11月</span><span class="day">24日 周五</span> <span class="time">19:30 - 22:00</span>
</div>
<address title="北京 西城区 北新华街1号 北京音乐厅">北新华街1号 北京音乐厅</address>
<div>
44人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/28342200/">
<img alt="" data-lazy="https://img1.doubanio.com/view/event_poster/small/public/d2754d2884c2998.jpg" src="./assets/images/list/音乐5.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/28342200/" title="汪峰2017岁月超级巡回演唱会">汪峰2017岁月超级巡回演唱会</a>
</div>
<div class="datetime">
<span class="month">9月</span><span class="day">9日 周六</span> <span class="time">19:00 - 22:30</span>
</div>
<address title="北京 朝阳区 亚运村 国家体育场(鸟巢)">国家体育场(鸟巢)</address>
<div>
88人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/29006512/">
<img alt="" data-lazy="https://img1.doubanio.com/view/event_poster/small/public/592595179b9575b.jpg" src="./assets/images/list/音乐6.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29006512/" title="爱乐汇·“天空之城”久石让&宫崎骏动漫作品视听音乐会 北京站">爱乐汇·“天空之城”久石让&宫崎骏动漫作品视听音乐... </a>
</div>
<div class="datetime">
<span class="month">11月</span><span class="day">26日 周日</span> <span class="time">19:30 - 21:30</span>
</div>
<address title="北京 北京音乐厅">北京音乐厅</address>
<div>
53人关注
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="mod event-mod">
<div class="hd">
<h2>
<span class="title">
戏剧
</span>
</h2>
<span class="pl rr">
<a href="events/week-drama">更多》</a>
</span>
<div class="tabs">
<a class="on" href="events/week-drama">
<span>最热</span>
</a>
<a href="events/week-1101" data-i="0">
<span>话剧</span>
</a>
<a href="events/week-1102" data-i="1">
<span>音乐剧</span>
</a>
<a href="events/week-1103" data-i="2">
<span>舞剧</span>
</a>
<a href="events/week-1104" data-i="3">
<span>歌剧</span>
</a>
<a href="events/week-1105" data-i="4">
<span>戏曲</span>
</a>
<a href="events/week-1106" data-i="5">
<span>其他</span>
</a>
</div>
</div>
<div class="bd">
<ul class="events-list events-list-2col events-list-pic70">
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/29075158/">
<img alt="" data-lazy="https://img3.doubanio.com/view/event_poster/small/public/2524e1422249d9d.jpg" src="assets/images/list/戏剧1.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29075158/" title="【北京站】靳东出品、陈数主演、易卜生原著——话剧《海上夫人》">【北京站】靳东出品、陈数主演、易卜生原著——话剧《...</a>
</div>
<div class="datetime">
<span class="month">9月</span><span class="day">27日</span> 至 <span class="month">9月</span><span class="day">30日</span>
</div>
<address title="北京 西城区 北京天桥艺术中心 (西城区天桥南大街9号楼)">北京天桥艺术中心 (西城区...</address>
<div>
555人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/29089737/">
<img alt="" data-lazy="https://img3.doubanio.com/view/event_poster/small/public/6fa6de3835daf96.jpg" src="assets/images/list/戏剧2.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29089737/" title="2017国家大剧院国际戏剧季:瑞典皇家戏剧院《命运之影》">2017国家大剧院国际戏剧季:瑞典皇家戏剧院《命运之影》</a>
</div>
<div class="datetime">
<span class="month">9月</span><span class="day">7日</span> 至 <span class="month">9月</span><span class="day">9日</span>
</div>
<address title="北京 北京市西城区西长安街2号(人民大会堂西侧)">北京市西城区西长安街2号(...</address>
<div>
51人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/29142465/">
<img alt="" data-lazy="https://img3.doubanio.com/view/event_poster/small/public/b6694854dd13f96.jpg" src="assets/images/list/戏剧3.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29142465/" title="舞台剧《月亮和六便士》">舞台剧《月亮和六便士》</a>
</div>
<div class="datetime">
<span class="month">9月</span><span class="day">8日</span> 至 <span class="month">9月</span><span class="day">10日</span>
</div>
<address title="北京 西城区 梅兰芳大剧院">梅兰芳大剧院</address>
<div>
365人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/28742030/">
<img alt="" data-lazy="https://img3.doubanio.com/view/event_poster/small/public/f3139ccf3b04980.jpg" src="assets/images/list/戏剧4.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/28742030/" title="【北京站】孟京辉戏剧作品独角戏《一个陌生女人的来信》">【北京站】孟京辉戏剧作品独角戏《一个陌生女人的来信》</a>
</div>
<div class="datetime">
<span class="month">11月</span><span class="day">14日</span> 至 <span class="month">12月</span><span class="day">3日</span>
</div>
<address title="北京 东城区 蜂巢剧场">蜂巢剧场</address>
<div>
101人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/29205292/">
<img alt="" data-lazy="https://img1.doubanio.com/view/event_poster/small/public/a2c12145893c197.jpg" src="assets/images/list/戏剧5.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29205292/" title="话剧《蒋公的面子》">话剧《蒋公的面子》</a>
</div>
<div class="datetime">
<span class="month">10月</span><span class="day">12日</span> 至 <span class="month">10月</span><span class="day">13日</span>
</div>
<address title="北京 海淀剧院">海淀剧院</address>
<div>
17人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic">
<a tabindex="-1" href="https://www.douban.com/event/29021468/">
<img alt="" data-lazy="https://img1.doubanio.com/view/event_poster/small/public/fedc12ebd06cfb8.jpg" src="assets/images/list/戏剧6.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29021468/" title="第四届(2017)Aimer北京国际女性戏剧节《萨拉•凯恩在4.48上书写》">第四届(2017)Aimer北京国际女性戏剧节《萨拉•凯...</a>
</div>
<div class="datetime">
<span class="month">8月</span><span class="day">23日</span> 至 <span class="month">8月</span><span class="day">27日</span>
</div>
<address title="北京 鼓楼西剧场">鼓楼西剧场</address>
<div>
43人关注
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="mod event-mod">
<div class="hd">
<h2>
<span class="title">聚会</span>
</h2>
<span class="pl rr"><a href="events/week-party">更多》</a></span>
<div class="tabs">
<a class="on" href="events/week-party">
<span>最热</span>
</a>
<a href="events/week-1401" data-i="0">
<span>生活</span>
</a>
<a href="events/week-1402" data-i="1">
<span>集市</span>
</a>
<a href="events/week-1403" data-i="2">
<span>摄影</span>
</a>
<a href="events/week-1404" data-i="3">
<span>外语</span>
</a>
<a href="events/week-1405" data-i="4">
<span>桌游</span>
</a>
<a href="events/week-1406" data-i="5">
<span>夜店</span>
</a>
<a href="events/week-1407" data-i="6">
<span>交友</span>
</a>
<a href="events/week-1408" data-i="7">
<span>美食</span>
</a>
<a href="events/week-1409" data-i="8">
<span>派对</span>
</a>
</div>
</div>
<div class="bd">
<ul class="events-list events-list-2col events-list-pic70">
<li class="list-entry">
<div class="pic">
<a tabindex="-1" href="https://www.douban.com/event/29187648/">
<img alt="" data-lazy="https://img1.doubanio.com/view/event_poster/small/public/96e52296b14d828.jpg" src="assets/images/list/聚会1.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29187648/" title="《反骨女孩》此项目会一直拍下去。">《反骨女孩》此项目会一直拍下去。</a>
</div>
<div class="datetime">
<span class="month">8月</span><span class="day">1日</span> 至 <span class="month">8月</span><span class="day">31日</span>
</div>
<address title="北京 朝阳区 朝阳北路黄渠地铁站附近">朝阳北路黄渠地铁站附近</address>
<div>
11人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic">
<a tabindex="-1" href="https://www.douban.com/event/28884478/">
<img alt="" data-lazy="https://img1.doubanio.com/view/event_poster/small/public/5e84e7141eee719.jpg" src="assets/images/list/聚会2.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/28884478/" title="好玩的不像话的交友聚会">好玩的不像话的交友聚会</a>
</div>
<div class="datetime">
<span class="month">8月</span><span class="day">2日</span> 至 <span class="month">9月</span><span class="day">16日</span>
</div>
<address title="北京 朝阳区 建外大街 建外 大街">建外 大街</address>
<div>
74人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic">
<a tabindex="-1" href="https://www.douban.com/event/29158140/">
<img alt="" data-lazy="https://img3.doubanio.com/view/event_poster/small/public/69e5eab02bb93b4.jpg" src="assets/images/list/聚会3.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29158140/" title="【正经疯人院】一个周末的时间,用创意颠覆平庸,挑拨无趣">【正经疯人院】一个周末的时间,用创意颠覆平庸,挑拨...</a>
</div>
<div class="datetime">
<span class="month">7月</span><span class="day">26日</span> 至 <span class="month">8月</span><span class="day">26日</span>
</div>
<address title="北京 朝阳区 朝阳其它 铜牛电影产业园4栋G座3层10SPACE">铜牛电影产业园4栋G座3层10...</address>
<div>
28人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic">
<a tabindex="-1" href="https://www.douban.com/event/29224887/">
<img alt="" data-lazy="https://img3.doubanio.com/view/event_poster/small/public/8d88472a1625046.jpg" src="assets/images/list/聚会4.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29224887/" title="心灵魔术PARTY。这里将教授你最震撼的心灵术!最接近超能力的魔术">心灵魔术PARTY。这里将教授你最震撼的心灵术!最接近...</a>
</div>
<div class="datetime">
<span class="month">8月</span><span class="day">12日</span> 至 <span class="month">8月</span><span class="day">31日</span>
</div>
<address title="北京 东城区 北京市东城区白桥大街28号花舍咖啡(广渠门店)">北京市东城区白桥大街28号...</address>
<div>
68人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic">
<a tabindex="-1" href="https://www.douban.com/event/29016688/">
<img alt="" data-lazy="https://img1.doubanio.com/view/event_poster/small/public/f46c6b279ae8da8.jpg" src="assets/images/list/聚会5.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29016688/" title="教堂、寺庙、公园丨2人结伴出游(8月~9月)">教堂、寺庙、公园丨2人结伴出游(8月~9月)</a>
</div>
<div class="datetime">
<span class="month">8月</span><span class="day">1日</span> 至 <span class="month">9月</span><span class="day">30日</span>
</div>
<address title="北京 东城区 朝阳门 朝阳门">朝阳门</address>
<div>
38人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic">
<a tabindex="-1" href="https://www.douban.com/event/29188740/">
<img alt="" data-lazy="https://img1.doubanio.com/view/event_poster/small/public/dfe819cff952bca.jpg" src="assets/images/list/聚会6.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29188740/" title="手作体验 | 亲手为主子制作可爱的银制宠物名牌">手作体验 | 亲手为主子制作可爱的银制宠物名牌</a>
</div>
<div class="datetime">
<span class="month">8月</span><span class="day">5日</span> 至 <span class="month">9月</span><span class="day">16日</span>
</div>
<address title="北京 海淀区 华清嘉园甲15号楼">华清嘉园甲15号楼</address>
<div>
21人关注
</div>
</div>
</li>
</ul>
</div>
</div>
<div class="mod event-mod">
<div class="hd">
<h2>
<span class="title">电影</span>
</h2>
<span class="pl rr"><a href="events/week-film">更多》</a></span>
<div class="tabs">
<a class="on" href="events/week-film">
<span>最热</span>
</a>
<a href="events/week-1801" data-i="0">
<span>主题放映</span>
</a>
<a href="events/week-1802" data-i="1">
<span>影展</span>
</a>
<a href="events/week-1803" data-i="2">
<span>影院活动</span>
</a>
</div>
</div>
<div class="bd">
<ul class="events-list events-list-2col events-list-pic70">
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/29163021/">
<img alt="" data-lazy="https://img3.doubanio.com/view/event_poster/small/public/f86b84650879d64.jpg" src="assets/images/list/电影1.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29163021/" title="【世界顶级剧院现场】来袭!">【世界顶级剧院现场】来袭!</a>
</div>
<div class="datetime">
<span class="month">8月</span><span class="day">5日</span> 至 <span class="month">10月</span><span class="day">14日</span>
</div>
<address title="北京 海淀区 杏石口路中间艺术区内中间剧场">杏石口路中间艺术区内中间剧场</address>
<div>
43人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/29109741/">
<img alt="" data-lazy="https://img1.doubanio.com/view/event_poster/small/public/ca5c15fb66dc107.jpg" src="assets/images/list/电影2.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29109741/" title="阿尔梅达剧院现场《理查三世》、布拉纳剧团现场《罗密欧与朱丽叶》">阿尔梅达剧院现场《理查三世》、布拉纳剧团现场《罗密...</a>
</div>
<div class="datetime">
<span class="month">8月</span><span class="day">12日</span> 至 <span class="month">8月</span><span class="day">26日</span>
</div>
<address title="北京 朝阳区 798艺术区尤伦斯当代艺术中心 报告厅">798艺术区尤伦斯当代艺术中...</address>
<div>
126人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic hot">
<a tabindex="-1" href="https://www.douban.com/event/29111134/">
<img alt="" data-lazy="https://img3.doubanio.com/view/event_poster/small/public/487492ef8835d54.jpg" src="assets/images/list/电影3.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29111134/" title="X-LIVE全力呈现:日本剧团新感线GEKI x CINE系列戏剧影像">X-LIVE全力呈现:日本剧团新感线GEKI x CINE系列戏剧影像</a>
</div>
<div class="datetime">
<span class="month">8月</span><span class="day">13日</span> 至 <span class="month">9月</span><span class="day">10日</span>
</div>
<address title="北京 朝阳区 798艺术区尤伦斯当代艺术中心 报告厅">798艺术区尤伦斯当代艺术中...</address>
<div>
49人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic">
<a tabindex="-1" href="https://www.douban.com/event/29260819/">
<img alt="" data-lazy="https://img1.doubanio.com/view/event_poster/small/public/98012896a8019f9.jpg" src="assets/images/list/电影4.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29260819/" title="北京酒吧The Dirty Duck播放权利的游戏!Game of Thrones!">北京酒吧The Dirty Duck播放权利的游戏!Game of Thro...</a>
</div>
<div class="datetime">
<span class="month">8月</span><span class="day">14日</span> 至 <span class="month">8月</span><span class="day">28日</span>
</div>
<address title="北京 东城区 安定门 北锣鼓巷19号The Dirty Duck">北锣鼓巷19号The Dirty Duck</address>
<div>
10人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic">
<a tabindex="-1" href="https://www.douban.com/event/29183830/">
<img alt="" data-lazy="https://img3.doubanio.com/view/event_poster/small/public/967641045a9c94e.jpg" src="assets/images/list/电影5.jpg" width="70">
</a>
</div>
<div class="info">
<div class="title">
<a href="https://www.douban.com/event/29183830/" title="双城咖啡周日電影院">双城咖啡周日電影院</a>
</div>
<div class="datetime">
<span class="month">8月</span><span class="day">6日</span> 至 <span class="month">8月</span><span class="day">27日</span>
</div>
<address title="北京 东城区 北京市東城區安定門內大街方家胡同46号双城咖啡">北京市東城區安定門內大街...</address>
<div>
19人关注
</div>
</div>
</li>
<li class="list-entry">
<div class="pic">
<a tabindex="-1" href="https://www.douban.com/event/29301070/">
<img alt="" data-lazy="https://img3.doubanio.com/view/event_poster/small/public/66c8b55b7478656.jpg" src="assets/images/list/电影6.jpg" width="70">
</a>