-
Notifications
You must be signed in to change notification settings - Fork 212
/
index3.html
999 lines (996 loc) · 90.4 KB
/
index3.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
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>优云科技</title>
<meta name="viewport" content="width=device-width,minimum-scale=1,maximum-scale=1,initial-scale=no">
<meta name="apple-mobile-web-app-capable" content="yes">
<meta name="apple-mobile-web-app-status-bar-style" content="black">
<meta name="format-detection" content="telephone=no">
<style>
body,.header,.header *,.com *,.tj_box *,.btnbox *{margin:0;padding:0;}
.header,.header ul,.com ul,.tj_box ul,.btnbox ul,.header,.header li,.com li,.tj_box li,.btnbox li{list-style:none;}
input,textarea{-webkit-appearance:none;}
body{font-size:14px;}
body{font-family:"微软雅黑","宋体",Arial;background:#efefef;line-height:1.8;}
.clearfix:after{content:" ";height:0;visibility:hidden;display:block;clear:both;}
* html .clearfix{zoom:1;}
*:first-child+html .clearfix{zoom:1;}
.wrapper{_width:640px;max-width:640px;margin:0 auto;}
.tj_title,.tj_box dl{border-bottom:1px solid #c5c5c5;box-shadow:0 1px 0 #FFF;-webkit-border-bottom:none;-webkit-box-shadow:none;-webkit-border-image:url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAAl4AAAACCAMAAAC+LCIRAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA2ZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuMy1jMDExIDY2LjE0NTY2MSwgMjAxMi8wMi8wNi0xNDo1NjoyNyAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDoxNTdCRjY1RDQ2QTVFMTExOTEzOEE0ODc3QUIxNzlFOSIgeG1wTU06RG9jdW1lbnRJRD0ieG1wLmRpZDo0RkJGMjk2NkZDODcxMUUxOTlENDk5RDgzNTk0QUJDQyIgeG1wTU06SW5zdGFuY2VJRD0ieG1wLmlpZDo0RkJGMjk2NUZDODcxMUUxOTlENDk5RDgzNTk0QUJDQyIgeG1wOkNyZWF0b3JUb29sPSJBZG9iZSBQaG90b3Nob3AgQ1M2IChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjJCQURBMDA0QjNGQkUxMTFBNUY4QTFFQkFGRTM3OUNEIiBzdFJlZjpkb2N1bWVudElEPSJ4bXAuZGlkOjE1N0JGNjVENDZBNUUxMTE5MTM4QTQ4NzdBQjE3OUU5Ii8+IDwvcmRmOkRlc2NyaXB0aW9uPiA8L3JkZjpSREY+IDwveDp4bXBtZXRhPiA8P3hwYWNrZXQgZW5kPSJyIj8+GgBqZwAAAIpQTFRF////xcXF/v7+/f39/Pz8+/v7+vr69/f3+fn59fX19vb2+Pj49PT0xsbGx8fHyMjIycnJzc3Ny8vLysrK0tLSzs7O4eHhzMzM3Nzc2tra09PT1NTU3t7e1tbWz8/P39/f0dHR0NDQ1dXV2NjY3d3d2dnZ4ODg19fX29vb8/Pz4uLi5OTk4+Pj5eXlvVT1UwAAALlJREFUeNrc0okVgjAQAFFUUEAF5Bbl9MKD/tuT3U0wMXkW4G9hxhiGJ3iBB0rRFdTgCM4gB/1ojy6jE7iBEnTgAAoUowa0oAIJ2pEMhCRCAeMTj9tOZn9iK/I+fEEwibiQy5gdlzAVaUlDYobKFAemIyXBlLcTuRCqve9RzuAQ5yNTE5zmmjLjS8ad20gckStaSdYCW7KUWDLzy+LbXMv4U/PfFnqmlqWx1LAVa8VK5Soc1bTRW4ABAJ6hNNejrHxUAAAAAElFTkSuQmCC) 0 0 2 0/0 0 2px 0;}
.tj_title{margin:10px 10px 5px 10px;color:#777777;padding-bottom:5px;text-indent:10px;font-size:15px;font-weight:bold;}
.tj_box{margin:15px 10px;text-align:left;font-size:12px;overflow:hidden;}
.tj_box img{border:none;width:50px;height:50px;border-radius:25px 25px;}
.tj_box dl{margin:5px 0;padding-bottom:5px;overflow:hidden;cursor:pointer;}
.tj_box dl dt{float:right;padding:0;height:50px;}
.tj_box dl dd{float:right;width:100%;margin-right:-55px;}
.tj_box dl div{padding-right:70px;}
.tj_box dl p{color:#999999;padding-right:8px;line-height:1.5;}
.tj_box dl h3{color:#5a5a5a;font-size:14px;}
.tj_base{display:inline-block;width:55px;height:70px;line-height:15px;text-align:center;color:#808080;text-decoration:none;margin:5px 0;background-position:center 6px;background-repeat:no-repeat;background-size:45px auto;}
.header{height:54px;color:#FFF;position:relative;overflow:hidden;background-repeat:no-repeat;background-position:right top;background-size:auto 54px;-webkit-box-shadow:0 2px 10px 2px #d3d3d3;box-shadow:0 2px 10px 2px #d3d3d3;margin-bottom:10px;}
.header .left{float:left;height:100%;width:246px;background-repeat:no-repeat;background-position:left 0;background-size:246px 177px;}
.header .right{float:right;height:100%;width:64px;background-repeat:no-repeat;background-position:right bottom;background-size:246px 177px;}
.header .left h1{padding:15px 0 2px 15px;font-weight:normal;font-size:20px;line-height:23px;}
.header .left span{font-size:13px;line-height:18px;padding:0 0 0 15px;}
.header{background-image:url('./index3/mblogpic/2000.jpg');}
.menu { width:100%; height:40px; border-top:1px solid #c5c5c5; position:fixed; bottom:0; z-index:100;}
.menu a { text-decoration:none;display:block;float:left; width:33.3%;border-right:1px solid #c5c5c5;box-sizing:border-box; height:40px; color:#4a4a4a; font:normal 14px/40px 'SimSun';background:#fafafa; margin:0px; padding:0px; text-align:center; }
.menu a.a2 {font-weight:bold; color:#EB6100; text-indent:6px;}
.menu a.a3 { border:none;}
.menu a.cur{color:#d9004a;}
</style>
</head>
<body>
<div class="wrapper" id="wrapper">
<ul class="header">
<li class="left"><h1>2014年微信榜--优云科技</h1></li>
<li class="right"></li>
</ul>
<div class="tj_box">
<a style="text-decoration:none;" href="games/symdsb">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">随意门(屌丝版)</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="games/symdsb/icon.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/zwdzjs">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">植物大战僵尸</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="games/zwdzjs/icon.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/bsqpz2">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">逼死强迫症2</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="games/bsqpz2/icon.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/xksds">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">胸口碎大石</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/xksds.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/flnu">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">粉绿男女</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/flnu.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/djz">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">打击者</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/djz.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/hjkg">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">黄金矿工</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/hjkg.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/bljqzffxwz">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">反腐小王子</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/bljqzffxwz.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/znm">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">转你妹</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/znm.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/zfj">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">纸飞机</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/zfj.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/ksiphone6">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">狂射iphone6</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/ksiphone6.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/tuzi">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">小兔子快快跑</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/tuzi.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/ttg">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">跳跳狗</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/ttg.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/saolei">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">扫雷</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/saolei.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qbllk">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">奇葩连连看</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qbllk.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/maomi">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">看你有多花</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/maomi.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/kaixinlian">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">开心消消乐</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/kaixinlian.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/jinhua">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">进化</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/jinhua.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/jingzi">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">拯救精子</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/jingzi.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/dalaohu">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">打老虎</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/dalaohu.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/symh">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">色域迷惑人</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/symh.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/chezhi">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">厕纸挑战</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/chezhi.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qqppp">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">气球砰砰砰</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qqppp.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/hczz">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">横冲直闯</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/hczz.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/biaoche">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">疯狂飙车</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/biaoche.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/baba">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">粑粑去哪儿</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/baba.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/ceast">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">嫦娥爱色兔</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/ceast.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/dwy">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">打我呀打我呀</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/dwy.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/gudaye">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">股票你大爷</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/gudaye.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/jyfy">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">监狱风云</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/jyfy.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/jyfy2">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">监狱风云2</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/jyfy2.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/lbyhbyc">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">路边的野花不要采</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/lbyhbyc.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/nddsc">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">能打多少下</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/nddsc.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/njdsb">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">能接多少杯</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/njdsb.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/pxfzm">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">泼醒小房子</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/pxfzm.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/xiaosan">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">她是小三吗</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/xiaosan.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/ybdz">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">月饼大战</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/ybdz.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/zhaonige">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">麦皇争霸《找你歌》</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/zhaonige.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/mmttt">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">萌萌跳跳兔</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/mmttt.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/dlxfk">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">强力小方块</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/dlxfk.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/ndtnrgclm">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">你的童年让狗吃了吗?</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/ndtnrgclm.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/bsqpz">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">憋死强迫症</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/bsqpz.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/tzbp">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">挑战憋屁</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/tzbp.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/wbk">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">挖鼻孔</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/wbk.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/daoguo">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">岛国么么哒</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/daoguo.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qmbttz">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">全民冰桶挑战</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qmbttz.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/zqdn">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">最强大脑</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/zqdn.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/zzs">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">涨姿势</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/zzs.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/dlss">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">大力射X</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/dlss.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/bbjx">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">步步惊心</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/bbjx.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/sqs">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">神枪手</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/sqs.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/xz120">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">寻找120</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/xz120.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/monkey">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">微信抢桃</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/monkey.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/cscg">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">测试你的出轨率</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/cscg.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/mzpk">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">名字大作战</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/mzpk.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/fkfzm">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">放开房祖名</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/fkfzm.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/ymhddzc">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">樱木花道在主场</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/ymhddzc.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/gqtz">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">哥,请挺住18秒!</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/gqtz.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/blglez">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">帮龙叔捞儿子</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/blglez.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/xindonglian">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">心动连连看</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/xindonglian.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/liankan">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">连连看</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/liankan.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qedfc">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">企鹅大复仇</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qedfc.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qpjzg">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">强迫校正辊</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qpjzg.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/fytkzc">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">飞跃天空之城</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/fytkzc.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/cpp">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">戳破泡泡</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/cpp.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/wzxgz">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">围住小鬼子</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/wzxgz.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/rjd">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">扔鸡蛋</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/rjd.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qwt">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">青蛙跳</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qwt.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/jolin">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">一起寻找蔡依林</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/jolin.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/mnygl">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">木乃伊归来</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/mnygl.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/cdd">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">吃豆豆</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/cdd.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/cube">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">变态俄罗斯方块</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/cube.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/mtl">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">摩天楼</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/mtl.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/zhizhuxia">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">蜘蛛侠</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/zhizhuxia.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/tangguo">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">糖果乐园</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/tangguo.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/xiaoshuai">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">飞翔吧小帅</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/xiaoshuai.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/ice_bucket">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">冰桶挑战</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/ice_bucket.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/bttz">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">冰桶挑战-2B版</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/bttz.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qmxzfzm2">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">摇一摇寻找房祖名</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qmxzfzm2.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/yzcs">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">影子传说</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/yzcs.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qmykl">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">全民寻摇可乐</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qmykl.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/sqsdscj">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">数钱数到手抽筋</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/sqsdscj.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qmxzfzm">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">全民寻找房祖名</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qmxzfzm.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/mnbyg">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">美女啵一个</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/mnbyg.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/llll">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">萝莉来了</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/llll.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/jssjm">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">激射神经猫</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/jssjm.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/yuebing">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">吃月饼大赛</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/yuebing.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qie">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">疯狂打企鹅</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qie.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/cs">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">财神</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/cs.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/bdsjm">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">暴打神经猫</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/bdsjm.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/iq">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">智商测试</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/iq.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/gongfumao">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">功夫猫</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/gongfumao.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/dwz">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">打蚊子</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/dwz.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/ddb">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">找大便</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/ddb.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/diaoyu">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">钓鱼</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/diaoyu.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/heibai">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">黑白块</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/heibai.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/memeda">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">么么哒</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/memeda.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/ld">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">宇宙激战</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/ld.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/kuaipao">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">快跑</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/kuaipao.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/kanshu">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">砍树</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/kanshu.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/jb">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">Danger</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/jb.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qiexigua">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">切西瓜</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qiexigua.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/pigbaby">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">小猪宝宝</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/pigbaby.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/mxcz">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">梦想成真</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/mxcz.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/shenjingmao-zhuangbiban">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">神经猫-装逼版</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/shenjingmao-zhuangbiban.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qixi1">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">七夕跳跳跳</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qixi1.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/jg">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">激光战警</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/jg.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/money">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">捡钱大战</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/money.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/ygj">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">一根筋玩到底</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/ygj.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/xxoo">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">看你能XXOO多少次</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/xxoo.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/hl">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">小鳄鱼</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/dl.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/zuqiu">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">滚滚足球</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/zuqiu.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/yibihua">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">一笔画</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/ybh.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/duolao">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">看你有多老</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/duolao.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/shit">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">炸屎奇遇记</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/shit.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qifu">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">为云南鲁甸县祈</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qifu.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/weidao">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">你在别人眼中味道</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/weidao.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/zhaonimei">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">微信找你妹</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/zhaonimei.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/zazhi">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">微信杂志效果</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/zazhi.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/naoyangyang">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">疯狂挠痒痒</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/naoyangyang.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/honghaishilv">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">红还是绿</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/honghaishilv.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/jianren">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">贱人配对</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/jianren.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/diandeng">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">最强电灯泡</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/diandeng.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/baozi">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">吃包子大赛</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/baozi.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/pigu">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">敢摸大老虎屁股吗</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/pigu.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/2048">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">2048</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/2048.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/cjrst">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">超级染色体</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/cjrst.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/se2">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">看你有多色II-双飞版</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/se2.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/shenjingmao2">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">围住神经猫II-基友版</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/shenjingmao2.jpg" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/fangyan">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">新疆话方言八级考</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/fangyan.jpg" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/shouzhi">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">疯狂手指</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/shouzhi.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/dqe">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">打企鹅</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/dqe.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/zz">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">Galactians</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/zz.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/zhuogui">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">捉鬼</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/zhuogui.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/yh">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">烟花</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/yh.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/yao">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">疯狂摇一摇</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/yao.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/zhua">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">抓抓抓!</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/zhua.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/yang">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">挠挠我</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/yang.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qixi">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">七夕七夕</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qixi.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/sheqiu">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">射球</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/sheqiu.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/semo">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">色魔</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/semo.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/zuiqiangyanli">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">最强眼力</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/zqyl.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/xiongchumo">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">3D熊出没</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/xiongchumo.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/xiaopingguo">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">小苹果</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/xiaopingguo.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/xiaoniaofeifei">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">小鸟飞飞飞</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/xiaoniaofeifei.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/selang">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">色狼划船</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/selang.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/qingwa">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">小青蛙过河</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/qingwa.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/se">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">看你有多色</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/se.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/mishi">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">密室逃亡</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/mishi.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/bunengsi">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">一个都不能死</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/bunengsi.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/mingxuanyixian">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">命悬一线</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/mingxuanyixian.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/jicilang">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">一夜几次郎</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/jicilang.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/feidegenggao">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">飞的更高</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/feidegenggao.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/shenjingmao">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">围住神经猫I</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/shenjingmao.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/duxinshu">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">神奇读心术</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/duxinshu.png" /></dt>
</dl>
</a>
<a style="text-decoration:none;" href="games/duimutou">
<dl class="clearfix">
<dd><div style="position: relative;padding-right: 110px;"><h3 class="font14">堆木头</h3><p>50000000+人在玩</p><span style="display: inline-block;width: 60px; height: 33px;line-height: 33px;background-color: #44b549;border-radius: 5px;text-align: center;color:#fff;position: absolute;top: 50%;right:55px;margin-top: -17px;">开始玩</span></div></dd>
<dt class="tj_base"><img src="icon/duimutou.png" /></dt>
</dl>
</a>
</div>
</div>
<br/><br/><br/>
<div class="menu">
<a class="a0" href="http://g.lanrenmb.com/">热门小游戏</a>
<a class="a1" href="http://g.lanrenmb.com/">最火公众号</a>
<a class="a1" href="http://g.lanrenmb.com/">优云科技</a>
</div>
</body>
</html>