-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest.txt
More file actions
1534 lines (1527 loc) · 80.1 KB
/
test.txt
File metadata and controls
1534 lines (1527 loc) · 80.1 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
<!doctype html>
<html>
<head>
<meta charset="gbk" />
<title>???? ???·???? - ????????</title>
<meta name="generator" content="" />
<meta name="description" content="????????" />
<meta name="keywords" content="???? ???·???? - ????????" />
<link rel="stylesheet" href="images/pw_core.css?20111111" />
<!--css-->
<style type="text/css">
/*Spacing*/
.pdD{padding:.3em .5em}
.pd5{padding:0 5px;}
.pd15{padding:0 15px;}
/*form*/
input.btn,input.bt{cursor:pointer;padding:.1em 1em;*padding:0 1em;font-size:9pt; line-height:130%; overflow:visible;}
input.btn{border:1px solid #ff5500;background:#ff8800;margin:0 3px;color:#fff;}
input.bt{border:1px solid #c2d8ee;background:#fff;margin:0 3px;color:#333;}
/*layout*/
html{background-color:#fff;overflow-y:scroll;}
body{font:12px/1.5 Arial; color:#333;background:#fff url(images/wind/bg.jpg) center top repeat-x;min-height:500px;}
.wrap,#top{min-width:820px;margin:auto;}
/*????????*/
a{text-decoration:none;color:#333333;}
a:hover,.alink a,.link{text-decoration:underline;}
/*????°???*/
.bta{cursor:pointer;color:#333333;padding:0 5px;margin:0 3px;white-space:nowrap;border:1px solid #d5e6ed;line-height:22px;background:#ffffff;}
.bta:hover{border:1px solid #bdcfdd;text-decoration:none;}
/*main color ????×??¨??*/
.f_one,.t_one,.r_one{background:#ffffff;}
.f_two,.t_two,.r_two{background:#f3f9fb;}
/*?·??*/
#head,.main-wrap,#footer,#searchA,#navA,#navB,.top{width:980px;margin:0 auto;max-width:1200px;}
#top{height:23px;border-bottom:1px solid #fff;background:url(images/wind/topbar.png) 0 bottom repeat-x;_background:#e9f1f4;line-height:23px;overflow:hidden;}
.top li{float:left;margin-right:10px;}
.top a{color:#666;}
/*????*/
#navA{height:35px;background-color:#176eac;}
.navA,.navAL,.navAR,.navA li,.navA li a,#td_mymenu{background:url(images/wind/navA.png?20111111) 999em 999em no-repeat;}
.navAL,.navAR{width:5px;height:35px;}
.navAL{ background-position:0 -80px;_margin-right:-3px;}
.navAR{ background-position:0 -150px;_margin-left:-3px;}
.navA{ background-position:0 -115px;height:35px;overflow:hidden; background-repeat:repeat-x;}
.navA ul{font-size:14px;overflow:hidden;}
.navA li{float:left;margin-left:-1px;}
.navA li a{float:left;color:#ffffff;padding:0 15px;height:35px;line-height:35px;outline:none;font-weight:700; background-position:0 -35px;}
.navA li a:hover{text-decoration:none;color:#ffea00;}
.navA .current a,.navA .current:hover a,.navA .current a:hover{background-position:center top;display:inline;text-decoration:none;text-shadow:none;}
/*?ì??????*/
#td_mymenu{ background-position:-20px -150px;cursor:pointer;float:right;width:75px;color:#fff;height:23px;overflow:hidden;line-height:23px;padding-left:10px;margin:5px 2px 0 0;_display:inline}
#fast_menu .menuList{width:81px;}
.navB,.navBbg{background:url(images/wind/navB.png) right bottom repeat-x;}
.navBbg{padding:0;background-position:left bottom;margin-right:4px;_position:relative;}
.navB ul{padding:4px 4px 4px 16px;}
.navB li{float:left;height:25px;line-height:25px;margin:0 10px 0 0;}
.navB li a{display:block;padding:0 5px; font-size:14px;}
.navB li a:hover{ text-decoration:none;color:#014c90;}
/*???÷*/
#searchA{margin:0 auto 10px;height:41px;overflow:hidden;}
#searchA,.searchA_right{background:url(images/wind/searchA.png) no-repeat;}
.searchA_right{ background-position:right 0;height:41px;width:5px;}
.searchA{padding:8px 0 0 55px;}
.searchA .ip,.s_select{background:#fff url(images/wind/search_input.png) left top no-repeat;}
.searchA .ip{width:300px;float:left;border:1px solid #dddddd;height:20px;padding:4px 5px 0;overflow:hidden;}
.searchA .ip input{border:0;background:none;padding:0;line-height:16px; font-size:14px;width:100%;float:left;margin:0;}
.s_select{float:left;border:1px solid #dddddd;border-left:0;margin-right:7px;width:49px; background-position:-40px 0;}
.s_select h6{display:block;padding:0 15px 0 10px;height:24px;line-height:24px;cursor:pointer;background:url(images/wind/down.png) 35px center no-repeat;color:#666;}
.s_select ul{ position:absolute;border:1px solid #dddddd;background:#fff;line-height:22px;width:49px;margin:24px 0 0 -1px;display:none;z-index:1;}
.s_select ul li{padding:0 10px;cursor:pointer;white-space:nowrap;}
.s_select ul li:hover{background:#f7f7f7;}
.searchA button{width:45px;height:25px;border:0 none;background:url(images/wind/search_btn.png) no-repeat; font-size:14px; font-weight:700;line-height:25px;padding:0 0 3px 0;}
.s_tags{padding:3px 0 0 30px; font-size:14px;height:20px;line-height:20px;overflow:hidden;margin:0;}
.s_tags a{margin:0 8px 0 0;}
/*????????*/
#infobox .fr li,#breadCrumb .fr li{float:left;}
#infobox .fr li a,#breadCrumb .fr li a{float:left;}
/*??°ü??*/
#breadCrumb{zoom:1;margin-bottom:10px;}
#breadCrumb em{ font-family:Simsun;margin:0 5px;}
#breadCrumb .breadEm{float:left;width:0;position:absolute;}
#breadCrumb img.breadHome{float:left;margin:0 5px 0 0;}
/*????????*/
.pw_ulC{padding-left:5px;}
.pw_ulC li{float:left;border-right:1px solid #ddd;padding:0 5px;}
.pw_ulC li em{color:#666;-webkit-transition: all 0.2s ease-out;-o-transition: all 0.2s ease-out;padding-left:5px;background:url(images/wind/colon.png) 0 5px no-repeat;margin-left:2px;}
.pw_ulC li em a{color:#666;}
.pw_ulC li:hover em{-webkit-transform: scale(1.5);-o-transform: scale(1.5);}
.pw_ulC li.none{border:0;}
/*??×?????*/
.textMes{margin:0 auto 10px;border:1px solid #d5e6ed;border-bottom:0;background:#ffffff;}
.textMes .tr3 td,.textMes .tr3 th{border-bottom:1px solid #d5e6ed;padding:.4em .6em;border-top:0;}
/*????????*/
#pw_content{background:#ffffff;border:1px solid #bdcfdd;border-top:2px solid #065792;}
.t{border:1px solid #bdcfdd;padding:1px;_display:inline-block;margin-bottom:10px;background:#ffffff;}
.tTable{margin:0 10px;}
#pw_content .t{border:0;padding:0;margin:0;}
/*?×????°?*/
.newInfor{padding-bottom:10px;}
.newInfor h4{font-weight:700;overflow:hidden;color:#666;}
.newInfor .switchItem .view-hover,.newInfor .switchItem .view-current{min-height:240px;_height:240px;}
.newflash{width:360px;height:240px;overflow:hidden;}
.flashimg img{height:240px;margin-bottom:8px;}
.flashimg p a{color:#fff;font-weight:700;text-shadow:1px 1px 0px #333;}
.flashimg p{overflow:hidden;width:260px;bottom:4px;position:absolute;text-indent:12px;z-index:2;left:0;}
.flashBg{ position:absolute;bottom:0;width:100%;height:27px;background:#000;filter:alpha(opacity=60);-moz-opacity:0.6;opacity:0.6; z-index:1;}
.an{ position:absolute;right:5px;z-index:2;bottom:5px;}
.an li{float:left;margin-left:5px;}
.an li a{float:left;background:#fff;color:#333;overflow:hidden;line-height:16px;padding:0 3px;-webkit-transition: all 0.2s ease-out;-o-transition: all 0.2s ease-out;}
.an li.current a,.an li a:hover{background:#ff6600;color:#fff; text-decoration:none;}
.an li a:hover{-webkit-transform: scale(1.4);-o-transform: scale(1.4);}
.newHotA dd{padding:5px 0;}
.newHotA{width:500px;}
.newHotB li{float:left;width:47.5%;padding-right:2%;line-height:22px;height:22px;overflow:hidden;}
.newHotB li em a{ font-family:Simsun;margin-right:5px;}
/*????*/
.noticebg{padding:5px 10px;}
#notice{padding:5px;}
#notice li{white-space:nowrap;padding-left:20px;height:18px;float:left;}
#notice a{padding-right:.5em;}
#notice0{height:18px;line-height:18px;overflow:hidden;background:url(images/wind/file/anc.gif) 0 0 no-repeat;}
.noticebg_newinfo{position:absolute;top:3px;right:5px;padding:0;}
.noticebg_newinfo #notice0{float:right;}
/*?¨??±ê????*/
.h{border-bottom:1px solid #c6d9e7;border-top:1px solid #c6d9e7;background:#eaf1f7 url(images/wind/h.png) 0 0 repeat-x;color:#1b72af;padding:5px 10px;overflow:hidden;}
.h a{color:#1b72af}
.h span a,.h span{color:#1b72af;}
.closeicon{*margin-top:4px;height:10px;}
.cate_fold{padding:0 5px 0 5px;text-decoration:none;}
.cate_fold:hover{text-decoration:none;}
/*???????ò????±ê????*/
.hB{background:url(images/wind/hB.png) 0 bottom repeat-x;height:33px;line-height:33px;overflow:hidden;padding:0 10px;}
/*±ê??????tab????*/
.tabB{margin-top:4px;height:32px;padding-left:10px;}
.tabB li{float:left;}
.tabB li a{font-weight:100;padding:0 15px;float:left;line-height:23px;height:27px;padding-top:2px;}
.tabB li.current a{border:1px solid #dcdcdc;border-bottom:0;background:#ffffff;padding-top:1px; font-weight:700;}
.tabB li a:hover{ text-decoration:none;}
/*h2°??é????h3·??à°??é??*/
h2{font-weight:700;display:inline;}
h2 a{color:#333;}
h3{font-weight:700;display:inline;}
h3 a:hover{ text-decoration:none;color:#ff5500;}
/*table±í??*/
.tr3 td,.tr3 th{border-bottom:1px dotted #ddd;}
.tr3none th,.tr3none td{border-bottom:none;}
.tr3 .old,.tr3 .new,.tr3 .lock{padding:10px 5px 10px 45px;color:#444;font-weight:100;height:35px;}
.tr3 .old{background:url(images/wind/old.gif) 0 center no-repeat;}/*???÷??°??é*/
.tr3 .new{background:url(images/wind/new.gif) 0 center no-repeat;}/*???÷??°??é*/
.tr3 .lock{background:url(images/wind/lock.gif) 0 center no-repeat;}/*???¨°??é*/
.tr2 td,.tr2 th{padding:5px 5px 3px;color:#666;background:#f7f7f7;border-bottom:1px solid #eaeaea;}
.tr2 th,.tr3 th{font-weight:100;}
.tr3 td,.tr3 th{padding:5px;}
.thread_sort a{color:#014c90;}
.thread_sort a.s6{color:#666;}
td.num{color:#444; font-size:11px;-webkit-text-size-adjust:none;}
td.num em{color:#014c90;}
.tr3 td.subject{padding-left:10px;}
.re{width:220px;}
.author{width:95px;}
.author a{color:#444;}
.author p,.author p a{color:#999;font-size:11px;-webkit-text-size-adjust:none;}
.view,.fNum,.fNum a,.adminlist a,.adminlist{color:#444;}
.tr3 td.icon{padding:5px 0;}
.adminbox{padding:0 0 0 0;margin:-3px 3px 0 0;*margin:0 0 0 -5px;}
.tr4 td{padding:3px 5px;border-bottom:1px solid #eaeaea;border-top:1px solid #eaeaea;color:#666;background:#f3f9fb;}
.tr4 td .current{color:#000;}
.z tr:hover td,.z tr:hover th{background-color:#f3f9fb;}
.bt0 td{border-top:0;}
.tr5 td{border:0;}
.threadCommon .tr3 td{line-height:1.3;}/*??±í????*/
.hrA{height:1px; background:#d5e6ed;color:#d5e6ed;border:0;margin:8px 0;overflow:hidden;}
.tpage{ font-family:Simsun;}
.subject_t:visited{/*color:#666;*/}
/*old table*/
.t3 td{padding:2px 5px;}
/*·???????*/
.post,.replay{height:30px;overflow:hidden;width:74px; text-align:center; font-weight:700; font-size:14px; line-height:30px;}
.post:hover,.replay:hover{text-decoration:none;}
.replay{ background:url(images/wind/reply.png?101129) no-repeat;color:#d74700;}
.post{ background:url(images/wind/post.png?101129) no-repeat;color:#fff;}
.post:hover{color:#ffea00;}
/*??±í??·??à*/
.pw_ulA{height:auto;background:#eaf1f7;border-bottom:1px solid #c6d9e7;overflow:hidden;}
.pw_ulA ul{padding-bottom:8px;*padding-bottom:6px;margin-left:-1px;}
.pw_ulA li{float:left;border-left:1px solid #ccc;margin-top:8px;}
.pw_ulA li a{line-height:14px;height:14px;padding:0 12px;float:left;color:#1b72af;font-weight:100; white-space:nowrap;}
.pw_ulA li.current a{color:#333; font-weight:700;}
/*°??÷????,??×é??±í*/
.pw_ulB{padding:10px 0 10px 10px;}
.pw_ulB li{line-height:22px;height:22px;overflow:hidden;}
.pw_ulB li a{padding-left:13px;background: url(images/pwicon/related_li.gif) 0 3px no-repeat;}
.pw_ulB li em a{padding:0;background:none;}
.pw_ulB .adel{margin:4px 40px 0 0 ;}
.pw_ulB .one{float:left;width:90px;margin:0 15px 0 0;}
.pw_ulB .one p,.pw_ulB .two p{text-align:center;height:22px;overflow:hidden;}
.pw_ulB .two{float:left;width:90px;margin:0 15px 10px 0;height:120px;}
.pw_ulB .two a{padding-left:0;background:none;}
/*?à??°??é??±í*/
.pw_ulD{padding:5px;}
.pw_ulD li{padding:0 5px;line-height:22px;}
.pw_ulD li:hover{background:#d5e6ed;}
.pw_ulD li.current{background:#2e84c1;}
.pw_ulD li.current a{color:#fff;}
.pw_ulD li a:hover{ text-decoration:none;}
.pw_ulD li del{margin-top:3px;display:none;}
.pw_ulD li:hover del,.pw_ulD li.current del,.pw_ulD li.hover del{display:block;}
.sideForum .pw_ulD{border-top:1px solid #d5e6ed;}
.sideForum dt{line-height:29px;height:29px;padding:0 10px; background:url(images/wind/thread/sideForumDt.gif) right 0;cursor:pointer;overflow:hidden;}
.sideForum dd{display:none;}
.sideForum .one dt{background-position:right -30px; font-weight:700;}
.sideForum .one dd{display:block;}
/*??±í?à??*/
.sidebar{float:left;overflow:hidden;margin-right:-1px;margin-bottom:-1px;}
.content_thread{background:#ffffff;_float:right;}
.sideClose .content_thread{margin:0;border:0;float:none;}
.f_tree{background:#f3f9fb;}
/*??±í??×÷??±ê*/
.history,.pw_ulD del,.switch,.keep,.keepOn{background:url(images/wind/thread/sideicon.gif) 9999px 9999px no-repeat;cursor:pointer;}
.history,.pw_ulD del{float:right;width:16px;height:16px;overflow:hidden;display:block;text-indent:-2000em;}
.history{ background-position:0 0;}
.switch{float:left;width:9px;height:27px;display:block; text-indent:-2000em;overflow:hidden; background-position:0 -40px;margin-top:1px; position:absolute;}
.switch:hover{ background-position:-9px -40px;}
.sideClose .switch{background-position:-1px -68px;width:8px;}
.sideClose .switch:hover{background-position:-10px -68px;}
.pw_ulD del{ background-position:0 -20px;}
.pw_ulD del:hover{ background-position:-20px -20px;}
.keep,.keepOn{float:left;background-position:-120px 0;height:16px;margin:8px 10px 0 0;width:16px;text-indent:-2000em;overflow:hidden;}
.keep:hover{background-position:-120px -20px;}
.keepOn,.keepOn:hover{ background-position:-120px -40px;}
/*?à????????°??é*/
.myForum h6{color:#666;padding:6px 10px 5px;}
.myForum .pw_ulD li{height:22px;overflow:hidden;}
/*??±í??×??à??tab*/
.tabA{border-bottom:1px solid #bdcfdd;height:28px;padding:0 5px;}
.tabA ul{_position:absolute;font-size:14px;overflow:hidden;height:29px;}
.tabA li{float:left;margin-left:5px;}
.tabA li a{float:left;color:#014c90;line-height:1.2;padding:0 20px;overflow:hidden;border:1px solid #e4e4e4;line-height:27px;background:#f7f7f7;border-bottom:0;}
.tabA li.current a,.tabA li.current a:hover,.tabA li a:hover{color:#333;border-color:#bdcfdd;line-height:28px;font-weight:700;background:#eaf1f7;position:relative;}
.tabA li a:hover{ font-weight:100;line-height:27px; text-decoration:none;}
/*??×???±í???í??×÷*/
.manageCheck{border-bottom:1px solid #d5e6ed;border-top:1px solid #d5e6ed;background:#f3f9fb;padding:5px 7px;margin-top:-1px;}
/*??±í???ò????*/
.thread_sort span.gray{ font-family:Simsun;color:#ccc;padding:0 10px;}
/*??×??????á??*/
.floot{ table-layout:fixed;}
.floot_left{width:160px;background:#f3f9fb;border-right:1px solid #d5e6ed; vertical-align:top;}
.floot_leftdiv{padding:10px 10px 50px 15px;}
.floot_right{background:#ffffff;padding:10px 20px 0;vertical-align:top;}
.floot_bottom{vertical-align:bottom;padding:0 20px;}
.readTop{background:#f3f9fb;}
/*??????*/
.flootbg{background:#d5e6ed;height:3px;border-top:1px solid #ffffff;border-bottom:1px solid #ffffff;overflow:hidden;table-layout:fixed;}
/*??×?????*/
.tipTop{padding:0 0 10px;border-bottom:1px dotted #ccc;margin-bottom:10px;}
/*????*/
.overprint{overflow:hidden;position:absolute;margin-left:440px;margin-top:-35px;}
.overprint_opl {height:200px;overflow:auto;}
.overprint_opl a{display:block;float:left;padding:3px;margin:3px}
.overprint_opl a.current{border:1px solid #ccc;padding:2px}
.overprint_opl a:hover{border:1px solid #ddd;padding:2px;background:#f3f9fb;}
/*??×????§????*/
.honor{color:#777;overflow:hidden;line-height:1.3;}
.user-infoWrap2 li{line-height:20px;height:20px;overflow:hidden;}
.user-infoWrap2 li em{float:left;width:60px;}
.user-pic{margin-left:-2px;}
.face_img img{padding:3px;border:1px solid #d5e6ed;}
/*??×???×÷*/
.tipBottom{padding:10px 0;border-top:1px dotted #ccc;margin-top:10px;}
.readbot a{list-style:none;padding:0 0 0 1.5em;margin:0;float:left;cursor:pointer;background:url(images/wind/read/yin.gif) no-repeat;width:3.5em;height:16px;}
.readbot .r-quote:hover{background-position:0 0;}
.readbot .r-reply:hover {background-position:0 -20px;}
.readbot .r-score:hover {background-position:0 -40px;}
.readbot .r-keep:hover {background-position:0 -60px;}
.readbot .r-recommend:hover {background-position:0 -160px;}
.readbot .r-report:hover{background-position:0 -200px;}
.readbot .r-quote {background-position:0 -80px;}
.readbot .r-reply {background-position:0 -100px;}
.readbot .r-score {background-position:0 -120px;}
.readbot .r-keep {background-position:0 -140px;}
.readbot .r-recommend {background-position:0 -180px;}
.readbot .r-report {background-position:0 -220px;}
/*??×?±ê??*/
h1.read_h1{padding:0 20px;}
.read_h1,.read_h1 a{font-size:16px;color:#014c90; font-weight:700;line-height:1.2;padding:0;margin:0;}
/*??×????????ò*/
blockquote{margin-left:12px;}
.tpc_content{padding:0 2px 20px;margin:0;line-height:1.8em;}
.tpc_content font{line-height:1.5em;}
.tpc_content a{text-decoration:none;color:#0070AF;}
.tpc_content a:hover{text-decoration:underline}
.tpc_content ol,.tpc_content ol li{list-style-type:decimal;}
.tpc_content ul,.tpc_content ul li{list-style-type:disc;}
.blockquote{zoom:1;padding:5px 8px 5px;line-height:1.3;background:#fffae1;margin:0 0 10px 0;}
.tips{border:1px solid #bdcfdd;background:#f3f9fb;padding:3px 10px;display:inline-block;_float:left;}
/*??×??ú??*/
.blockquote2{border: 1px solid; border-color: #c0c0c0 #ededed #ededed #c0c0c0;margin:0px;padding:0 0 0 2em;line-height:2em;overflow:hidden;background:#ffffff;margin-left:0;}
.blockquote2 ol{margin:0 0 0 1.5em;padding:0;}
.blockquote2 ol li{border-left:1px solid #ccc;background:#f7f7f7;padding-left:10px;font-size:12px;list-style-type:decimal-leading-zero;padding-right:1em;}
.blockquote2 ol li:hover{background:#ffffff;color:#008ef1;}
.blockquote2 ol li{list-style-type:decimal;}
/*??×?????*/
.blockquote3{clear:left;border:1px dashed #CCC;background:#f7f7f7 url(images/blockquote3.png) right top no-repeat;padding:5px 10px;margin-left:0;}
.blockquote3 .quote{color:#999;font-size:12px;}
.blockquote3 .text{padding:0 10px 10px 10px; font-size:12px;}
.blockquote3 img{ vertical-align:middle;}
.blockquote3 span{ font-size:12px;}
/*??×?±í??*/
.read_form td{height:20px;padding:0 5px;border-style:solid; border-width:1px;}
/*·?????*/
.sigline {background: url(images/wind/read/sigline.gif) left bottom no-repeat;height:16px;}
/*??×?????*/
.signature {padding:10px 0 0 0;height:expression(this.scrollHeight>parseInt(this.currentStyle.maxHeight)?this.currentStyle.maxHeight:"auto");}
/*????*/
.tpc_content .down{background:#f0f0f0 url(images/post/down.gif) 5px center no-repeat;padding:5px 5px 5px 30px;border: 1px solid; border-color: #cccccc #999999 #999999 #cccccc;color:#333;margin:0 10px 0 0;line-height:40px;font-size:12px;}
.tpc_content .down:hover{ text-decoration:none;color:#ff5500;}
/*·??à????*/
.cates{margin:0 0 10px;border-top:1px solid #e4e4e4; font-size:12px;}
.cates .cate-list li{line-height:1.5;font-weight:500;color:#444444;list-style:none;border-bottom:1px solid #e4e4e4;padding:5px 0;_padding:6px 0 4px;}
.cates .cate-list em{ font-style:normal;width:100px;display:inline-block;text-align:right; font-weight:700;}
.cates .cate-list cite{font-style:normal; display:inline-block;width:430px;vertical-align:top;font-family:Simsun;line-height:18px;}
.cates input{ vertical-align:middle;}
.cates .w{margin-right:10px;}
.cates .two{background:#f7f7f7;}
.cate_meg_player {float:right;padding:4px;background:#ffffff;border:1px solid #e4e4e4;border-top:0 none;}
/*??×???flash*/
.readFlash{position:relative;height:160px;width:200px;overflow:hidden;text-align:center;line-height:160px;}
.readFlash img{width:100%;}
.readFlash ul {position:absolute;right:8px;bottom:8px;z-index:3;}
.readFlash ul li {list-style:none;float:left;width:18px;height:13px;line-height:13px;text-align:center;margin-left:2px;background:#ffffff;}
.readFlash ul li a {display:block;width:18px;height:13px;font-size:10px;color:#333333;}
.readFlash ul li a:hover,.flash ul li a.sel {color:#fff;text-decoration:none;background:#ffa900;}
/*???é????*/
.sharelink{border-bottom:1px dotted #ddd;padding:10px 0;word-break: keep-all;}
.sharelink dt{padding-top:3px;}
.sharelink dd a{color:#369;}
.sharelink2{padding:10px 0 5px;*padding:10px 0;}
.sharelink2 a{margin:0 10px 5px 0;white-space:nowrap;float:left;}
.sharelink2 img{float:left;}
/*?ú???á?±*/
.brithcache span{float:left;width:100px;line-height:22px;height:22px;overflow:hidden;}
/*?×??*/
#footer:first-letter{text-transform:uppercase;}
#footer img{vertical-align:top;}
/*css3.0*/
.history,del,.keep{-webkit-transition: all 0.2s ease-out;transition: all 0.2s ease-out;}
/*·???-?????ù????pw_core??*/
.pages a{border:1px solid #bdcfdd;background-color:#f9f9f9;color:#666;}
.pages b,.pages a:hover{background-color:#72b0d7;color:#ffffff;border:1px solid #72b0d7;}
.pages .fl{color:#666;}
.pages input{border:1px solid #bdcfdd;}
.pages button{background-color:#f4f8fb;color:#666;border-left:1px solid #bdcfdd;}
/*menu*/
.menu{position:absolute;background:#ffffff;border:1px solid #d5e6ed;}
.menu a{display:block;padding:4px 8px;}
/*?????ò*/
.menu-post{border:1px solid #bdcfdd;}
.menu-post .menu-b{background:#ffffff;border:3px solid #d5e6ed;}
.menu_tasksA .menu-b{border-width:8px;}
/*?¨?????????ò*/
.pw_menu{border:1px solid #bdcfdd;background:#ffffff;/*-webkit-box-shadow:2px 2px 2px #bbb;*/;}
.pw_menuBg{padding:0 10px 10px;}
.pw_menu h6{border-color:#bdcfdd;background:#ffffff;}
/*??????±í*/
.menuList{background:#ffffff;}
.menuList a:hover{background:#f3f9fb;}
/*????????*/
.menuHalf{margin-right:-1px;padding:5px 0;}
.menuHalf li{float:left;width:50%;border-right:1px dashed #d5e6ed;margin-right:-1px;}
ul#post_typeChoose a{padding:0;}
/*??×?*/
.follow,.following{ background:url(u/images/follow.png) no-repeat;line-height:16px;}
.follow{padding-left:16px; background-position:-4px -43px;_background-position:-4px -40px;}
.following{padding-left:22px; background-position:-20px -22px;}
/*????????*/
.s1{color:#ff0000;} /*red*/
.s2{color:#ff6600;} /*org*/
.s3{color:#008800;} /*green*/
.s4{color:#014c90;} /*blue*/
.s5{color:#333333;} /*black*/
.s6{color:#666;}/*black*/
.s7{color:#68b;}/*min blue*/
.gray{color:#999;}
.gray2{color:#bbb;}
.dilmW {width:980px; position:relative; height:171px; padding:10px;  margin: 0 auto; overflow:hidden;}
.ainGILYZ {float:left;margin:0 4px 10px 0;padding:1px;width:468px;height:60px;}
.ciCZ {float:left;margin-bottom:10px;padding:1px;width:468px;height:60px;}
.mrFNUZ {float:left;margin:0;padding:1px;width:960px;height:90px;overflow: hidden;} /*×??¨??css*/
</style><!--css-->
<link rel="icon" href="favicon.ico?v=3" type="image/x-icon" />
<script type="text/javascript" src="js/core/core.js"></script>
<script type="text/javascript" src="js/pw_ajax.js"></script>
<script>
var imgpath = 'images';
var verifyhash = '400a7343671836fe';
var modeimg = '';
var modeBase = '';
var winduid = '';
var windid = '';
var groupid = 'guest';
var basename = '';
var temp_basename = '';
var db_shiftstyle = '3';
var pw_baseurl = "https://rm93.com";
function shiftStyle(){
if(db_shiftstyle == 1){
if (getObj('widthCfg').innerHTML=='???????í°?') {
if(!getObj('fullscreenStyle')) {
var l = document.createElement('link');
l.id="fullscreenStyle";
l.rel="stylesheet";
l.type="text/css";
l.href="images/fullscreen.css";
l.media="all";
document.body.appendChild(l);
}else {
getObj('fullscreenStyle').disabled = false;
}
getObj('widthCfg').innerHTML='????????°?';
var widthCfg = 1;
} else {
var widthCfg = 0;
getObj('fullscreenStyle').disabled=true;
getObj('widthCfg').innerHTML='???????í°?';
}
SetCookie('widthCfg',widthCfg);
if(typeof goTop!="undefined"){
goTop.setStyle();
}
if(typeof messagetip!="undefined"&&typeof messagetip.db!="undefined"){
messagetip.setStyle();
messagetip.update();
}
}
};
</script>
<!--[if IE 9 ]>
<meta name="msapplication-task" content="name=?????×??; action-uri=https://rm93.com; icon-uri=favicon.ico" />
<meta name="msapplication-task" content="name=????????; action-uri=u.php; icon-uri=images/ico/home.ico" />
<meta name="msapplication-task" content="name=??????×?; action-uri=apps.php?q=article; icon-uri=images/ico/post.ico" />
<meta name="msapplication-task" content="name=????????; action-uri=message.php; icon-uri=images/ico/mail.ico" />
<meta name="msapplication-task" content="name=?????è??; action-uri=profile.php; icon-uri=images/ico/edit.ico" />
<![endif]-->
<link rel='archives' title="????????" href="simple/" />
<link rel="alternate" type="application/rss+xml" title="RSS" href="https://rm93.com/rss.php?fid=53" />
</head>
<body>
<div id="top">
<div class="top cc">
<a href="javascript:;" id="td_skin" class="fr" style="width:28px;overflow:hidden;"><img src="images/pwicon/style.gif" class="fr" style="margin:4px 5px 0 0;" alt="????·???????" /></a> <ul>
<li><a id="nav_key_up_81" href="http://ai.taobao.com?pid=mm_10026934_132178_9841730" title="" target="_blank"><font color="#0000FF"><b>??????????±????·???·</b></font></a></li>
<li><a id="nav_key_up_82" href="./read.php?tid=50878" title="" target="_blank"><font color="#FF0000"><b>?è?ú????????</b></font></a></li>
<li><a id="nav_key_up_14" href="" title="" >????·???</a></li>
<div style="display: none;" class="pw_menu" id="nav_key_sub_14">
<ul class="menuList">
<li><a id="nav_key_up_43" href="hack.php?H_name=bank" title="" >????</a></li>
<li><a id="nav_key_up_46" href="hack.php?H_name=toolcenter" title="" >????????</a></li>
</ul>
</div>
<li><a id="nav_key_up_15" href="member.php" title="" >?á?±??±í</a></li>
<li><a id="nav_key_up_16" href="sort.php" title="" >????????</a></li>
<div style="display: none;" class="pw_menu" id="nav_key_sub_16">
<ul class="menuList">
<li><a id="nav_key_up_19" href="sort.php" title="" >?ù±?????</a></li>
<li><a id="nav_key_up_20" href="sort.php?action=ipstate" title="" >??·?IP????</a></li>
<li><a id="nav_key_up_21" href="sort.php?action=team" title="" >???í????</a></li>
<li><a id="nav_key_up_22" href="sort.php?action=admin" title="" >???í????</a></li>
<li><a id="nav_key_up_23" href="sort.php?action=online" title="" >?????á?±</a></li>
<li><a id="nav_key_up_24" href="sort.php?action=member" title="" >?á?±????</a></li>
<li><a id="nav_key_up_25" href="sort.php?action=forum" title="" >°??é????</a></li>
<li><a id="nav_key_up_26" href="sort.php?action=article" title="" >??×?????</a></li>
</ul>
</div>
<li><a id="nav_key_up_17" href="search.php" title="" >???÷</a></li>
<li><a id="nav_key_up_18" href="faq.php" title="" >°??ú</a></li>
</ul>
</div>
</div>
<div class="wrap">
<div id="header">
<div id="head" class="cc">
<a href="https://rm93.com/"><img src="images/wind/logo.png" class="fl" title="????????" /></a>
<form action="login.php" name="login_FORM" method="post" onsubmit="return headerAjaxLogin.login(document.login_FORM);">
<input type="hidden" name="jumpurl" value="https://rm93.com/thread.php?fid=53" />
<input type="hidden" name="step" value="2" />
<input type="hidden" name="ajax" value="1" />
<input type="hidden" name="verify" value="400a7343671836fe" />
<div class="header_login fr">
<table style="table-layout:fixed;">
<tr>
<td width="145">
<div class="login_row mb5"><label for="nav_pwuser" class="login_label">???§??</label><input type="text" class="input fl" name="pwuser" id="nav_pwuser" placeholder="???????§??"></div>
<div class="login_row"><label for="showpwd" class="login_label">??????</label><input type="password" name="pwpwd" id="showpwd" class="input fl"></div>
</td>
<td width="75">
<div class="login_checkbox" title="????×???????"><input type="checkbox" id="head_checkbox" name="cktime" value="31536000"><label for="head_checkbox">??×?????</label></div>
<span class="bt2 fl"><span><button type="submit" name="head_login" style="width:70px;">????</button></span></span>
</td>
<td width="70">
<a href="sendpwd.php" class="login_forget" rel="nofollow">????????</a>
<span class="btn2 fl"><span><button type="button" style="width:70px;" onClick="location.href='gregi.php#breadCrumb';">×??á</button></span></span>
</td>
</tr>
</table>
</div>
<input type="hidden" name="lgt" id="nav_lgt" value="0">
</form>
<script type="text/javascript">
var default_login_type = '0';
var default_input_value = '????' + '???§??';
function showLoginType(){
var login_type = getObj('login_type_list');
login_type.style.display = login_type.style.display === 'none' ? '' : 'none';
if (IsElement('nav_logintab')){
getObj('nav_logintab').style.display = 'none';
}
}
function placeHolder(elem){
var placeholder;
if(elem.getAttribute("placeholder")){
placeholder=elem.getAttribute("placeholder");
}
elem.value=placeholder;
var style=elem.style;
style.color="#888";
elem.onfocus=function(){
if(this.value==placeholder){
this.value="";
style.color="#000";
}
}
elem.onblur=function(){
if(this.value.replace(/\s*/g,"")==""){
this.value=placeholder;
style.color="#888";
}
}
}
function changeDefaultInputValue(text){
var nav_pwuser=getObj('nav_pwuser');
nav_pwuser.setAttribute("placeholder",text);
placeHolder(nav_pwuser);
getObj('nav_lgt').value = default_login_type;
}
function selectLoginType(type,text){
var nav_pwuser = getObj('nav_pwuser');
nav_pwuser.setAttribute("placeholder","????"+text);
placeHolder(nav_pwuser);
getObj('nav_lgt').value = type;
getObj('login_type_list').style.display = 'none';
}
changeDefaultInputValue(default_input_value);
var headerAjaxLogin = {
'username' : '',
'pwd' : '',
'login' : function(obj) {
var _this = this;
var username = obj.pwuser.value;
if ((!username || username.indexOf('????')===0) && !obj.pwpwd.value) {
document.location.href="login.php";
return false;
}
obj.head_login.disabled = true;
_this.username = obj.pwuser.value;
_this.pwd = obj.pwpwd.value;
_this.submitBasicInfo(obj);
return false;
},
'submitBasicInfo' : function(obj) {
var url = 'login.php';
ajax.send(url, obj, function() {
var rText = ajax.request.responseText.split(' ');
if (rText[0] == 'error') {
showDlg('error', rText[1], 2);
obj.head_login.disabled = false;
} else if (rText[0] == 'success') {
document.location.href = rText[1];
} else {
ajax.get('', '1','',1);
//???±????
var dd=document.documentElement;
var cw=dd.clientWidth;
var sh=Math.max(dd.scrollHeight,dd.clientHeight);
var div=document.createElement("div");
div.setAttribute("id","headerTmpMask");
div.style.position="absolute";
div.style.width=cw+"px";
div.style.height=sh+"px";
div.style.left=0;
div.style.top=0;
div.style.backgroundColor="#333";
div.style.opacity="0.5";
div.style.filter="alpha(opacity=50)";
div.style.zIndex=1000;
document.body.appendChild(div);
//end
}
});
return false;
},
'submitCheckInfo' : function(obj) {
var _this = this;
var url = 'login.php';
var ifChangeGdcode = true;
obj.pwuser.value = _this.username;
obj.pwpwd.value = _this.pwd;
ajax.send(url, obj, function() {
var rText = ajax.request.responseText.split(' ');
if (rText[0] == 'error') {
if (rText[1] == 'gdcodeerror') {
getObj('headrajaxlogintip').innerHTML = '?é?¤???????·?ò??????';
} else if (rText[1] == 'ckquestionerror') {
getObj('headrajaxlogintip').innerHTML = '?????????·???é?¤??????°?';
} else if (rText[1] == 'safequestionerror') {
getObj('headrajaxlogintip').innerHTML = '°????????í?ó,?ú?????????? ' + rText[2] + ' ??';
}
getObj('headrajaxlogintip').style.display = '';
} else if (rText[0] == 'success') {
location.href = rText[1];
ifChangeGdcode = false;
} else {
getObj('headrajaxlogintip').innerHTML = rText[0];
getObj('headrajaxlogintip').style.display = '';
}
if (ifChangeGdcode && getObj('changeGdCode')) getObj('changeGdCode').onclick();
});
return false;
},
'close' : function(obj) {
document.login_FORM.head_login.disabled = false;
closep();
//????????
if(getObj("headerTmpMask")){
var mask=getObj("headerTmpMask");
mask.parentNode.removeChild(mask);
}
//end
}
};
</script>
</div>
<div class="nav_wrap">
<div id="navA">
<div class="navAL fl"> </div>
<div class="navAR fr"> </div>
<div class="navA">
<div id="td_mymenu" style="cursor:pointer" onClick="read.open('menu_mymenu_old','td_mymenu',3);">?ì???¨??</div>
<div id="menu_mymenu_old" class="popout" style="display:none;"><table border="0" cellspacing="0" cellpadding="0"><tbody><tr><td class="bgcorner1"></td><td class="pobg1"></td><td class="bgcorner2"></td></tr><tr><td class="pobg4"></td><td><div class="popoutContent">
<div style="width:250px;">
<div class="p10">
<a href="javascript:;" onClick="read.close();" class="adel">??±?</a>
?ú?????????????ì???¨?????????????ó??????????
<a href="login.php#breadCrumb" class="s4" rel="nofollow">????????</a>
<div class="divHr mb10"></div>
???????????? ???? <a href="gregi.php" class="s4" rel="nofollow">×??á????</a>
</div>
</div>
</div></td><td class="pobg2"></td></tr><tr><td class="bgcorner4"></td><td class="pobg3"></td><td class="bgcorner3"></td></tr></tbody></table></div>
<ul class="cc">
<li class="current" onmouseover="tmpHideAllCross('nav_key_sub_40',false);"><a id="nav_key_up_40" href="./" title="" >?????×??</a></li>
</ul>
</div>
</div>
</div>
<script>
var timeoutSpecifyId = {};
var navBStyle = '';
function tmpClose(elementId) {
timeoutSpecifyId[elementId] = setTimeout(function() {
getObj(elementId).style.display = 'none';
}, 100);
}
function tmpHideAllCross(currentSubMenuId,showNavB) {
if(!getObj('navB')) return;
if (showNavB) {
getObj('navB').style.display = '';
}
var elements = getElementsByClassName('navB', getObj('navB'));
if(elements.length){
for (var i=0,len = elements.length; i<len; i++) {
if (elements[i].id != '' && elements[i].id != currentSubMenuId) elements[i].style.display = 'none';
}
}
}
function ctrlSubMenu(parentId, subMenuId) {
try {
clearTimeout(timeoutSpecifyId[subMenuId]);
tmpHideAllCross(subMenuId,true);
getObj(subMenuId).style.display = '';
getObj(parentId).onmouseout = function() {
tmpClose(subMenuId);
timeoutSpecifyId[parentId] = setTimeout(function() {
if (navBStyle) {
getObj('navB').style.display = 'none';
}
}, 100);
getObj(parentId).onmouseout = '';
};
getObj(subMenuId).onmouseout = function() {
tmpClose(subMenuId);
if (navBStyle) {
getObj('navB').style.display = 'none';
}
};
getObj(subMenuId).onmouseover = function() {
clearTimeout(timeoutSpecifyId[subMenuId]);
clearTimeout(timeoutSpecifyId[parentId]);
getObj(subMenuId).style.display = '';
getObj('navB').style.display = '';
};
}catch(e){}
}
</script>
<div id="searchA">
<div class="searchA_right fr"> </div>
<div class="searchA cc">
<script>
var ins_method = 'AND';
var ins_sch_area = '1';
var ins_time = 'all';
var ins_fid = '53';
</script>
<form action="searcher.php" method="post" onSubmit="return searchInput();">
<input value="AND" type="hidden" name="method" id="ins_method">
<input value="1" type="hidden" name="sch_area" id="ins_sch_area">
<input value="all" type="hidden" name="sch_time" id="ins_time">
<input value="53" type="hidden" name="fid" id="ins_fid">
<input type="hidden" value="400a7343671836fe" name="verify">
<input value="2" type="hidden" name="step">
<input value="thread" type="hidden" id="search_type" name="type">
<div class="ip"><input id="search_input" type="text" value="???÷???????ò????" class="gray" name="keyword" onFocus="searchFocus(this)" onBlur="searchBlur(this)" /></div>
<div class="s_select" onMouseOut="this.firstChild.style.display='none';" onMouseOver="this.firstChild.style.display='block';"><ul onClick="getSearchType(event)"><li type="thread" style="display:none" id="inner_forum">±?°?</li>
<li type="thread">??×?</li><li type="user">???§</li><li type="forum">°??é</li></ul><h6 class="w">±?°?</h6></div>
<button type="submit" class="fl cp">???÷</button>
</form>
<div class="s_tags">
</div>
</div>
</div>
<div id="menu_skin" class="pw_menu" style="display:none;">
<div class="pw_menuBg">
<div class="fl"><h6><img src="images/pwicon/style.gif" align="top" alt="·???????" /></h6></div>
<div class="c mb10"> </div>
<ul class="cc menuSkin">
<li class="current">
<a href="javascript:;" onClick="window.location=('/thread.php?fid=53&skinco=wind');return false;">
<i style="background:url(images/wind/preview.jpg) no-repeat"> </i>
<p class="tac">?????ì??</p>
</a>
</li>
<li >
<a href="javascript:;" onClick="window.location=('/thread.php?fid=53&skinco=wind8gray');return false;">
<i style="background:url(images/wind8gray/preview.jpg) no-repeat"> </i>
<p class="tac">????????</p>
</a>
</li>
<li >
<a href="javascript:;" onClick="window.location=('/thread.php?fid=53&skinco=wind8black');return false;">
<i style="background:url(images/wind8black/preview.jpg) no-repeat"> </i>
<p class="tac">??????·?</p>
</a>
</li>
<li >
<a href="javascript:;" onClick="window.location=('/thread.php?fid=53&skinco=wind8green');return false;">
<i style="background:url(images/wind8green/preview.jpg) no-repeat"> </i>
<p class="tac">???????ó</p>
</a>
</li>
<li >
<a href="javascript:;" onClick="window.location=('/thread.php?fid=53&skinco=wind8purple');return false;">
<i style="background:url(images/wind8purple/preview.jpg) no-repeat"> </i>
<p class="tac">×???????</p>
</a>
</li>
<li >
<a href="javascript:;" onClick="window.location=('/thread.php?fid=53&skinco=wind85');return false;">
<i style="background:url(images/wind85/preview.jpg) no-repeat"> </i>
<p class="tac">????°???</p>
</a>
</li>
</ul>
</div>
</div>
<script>var td_skin = {pz : 22}</script>
</div>
<div class="tac mb5">
<script async src="//pagead2.googlesyndication.com/pagead/js/adsbygoogle.js"></script>
<!-- ?·???á·ù -->
<ins class="adsbygoogle"
style="display:inline-block;width:728px;height:90px"
data-ad-client="ca-pub-6145753533980212"
data-ad-slot="8671513325"></ins>
<script>
(adsbygoogle = window.adsbygoogle || []).push({});
</script>
</div>
<div class="main-wrap">
<div id="main">
<div class="textMes">
<table width="100%" cellspacing="0" cellpadding="0">
<tr class="tr3">
<td class="tac" width="25%"><a href="./read.php?tid=16076" target="_blank" style="font-size:12px;" >????±????????????????÷?é</a></td>
<td class="tac" width="25%"><a href="./index.php?cateid=73" target="_blank" style="font-size:12px;" >??????????</a></td>
<td class="tac" width="25%"><a href="./thread.php?fid=94" target="_blank" style="font-size:12px;" >???è?ó</a></td>
<td width="25%"> </td>
</tr>
</table>
</div>
<!--ads end-->
<div id="breadCrumb" class="cc">
<ul class="fr">
<li class="mr10"><a href="searcher.php?sch_time=newatc">????</a></li>
<li class="mr5"><a href="searcher.php?digest=1">????</a></li>
</ul>
<img id="td_cate" src="images/wind/thread/home.gif" title="?ì????×???????°??é" onClick="return pwForumList(false,false,null,this);" class="cp breadHome" /><em class="breadEm"></em><a href="index.php?m=bbs" title="????????">????????</a><em>></em><a href="thread.php?fid=53">???? ???·????</a>
<a href="rss.php?fid=53" target="_blank" title="????"><img src="images/pwicon/rss.png" align="absmiddle" alt="????" /></a>
</div>
<div id="pw_content" class="mb10">
<div id="sidebar" class="f_tree cc">
<div class="content_thread cc">
<div class="content_ie">
<div class="hB mb10" style="padding-right:10px;">
<span class="fr">
</span>
<h2 class="mr5 fl f14">???? ???·????</h2>
<span id="shortcut">
<a href="javascript:;" onclick="javascript:shortCut();" title="??±?°??é?í?????????é??" class="keep">????</a>
</span>
</div>
<div class="threadInfo mb10" style="overflow:hidden;">
<table width="100%">
<tr class="vt">
<td width="10">
</td>
<td style="padding-right:10px;">
<p class="mb5 s6 cc">????: <span class="s2 mr10">0</span><span class="gray2 mr10">|</span>?÷??: <span class="s2 mr10">1684</span><span class="gray2 mr10">|</span>????: <span class="s2">23196</span></p>
<p class="s6" style="width:100%;">???????? ???°???? ???ê ???ò??×? ????100% ????±??? ???? ?í?????? ????????</p>
</td>
</tr>
</table>
</div>
<table width="100%" style="table-layout:fixed;"><tr><td style="padding:0 12px 10px;">
<span class="mr20"><div align="center"> <img src="https://rm93.com/images/gg/9962123.gif" border="0" onclick="if(this.parentNode.tagName!='A'&&this.width>=910) window.open('https://rm93.com/images/gg/9962123.gif');" style="max-width:910px;" onload="if(is_ie6&&this.offsetWidth>910)this.width=910;" ></span><a class="s4 w" href="notice.php?fid=53#118">?ü?à</a>
</td></tr></table>
<div id="c">
<div class="sidePd10 mb10">
</div>
<div class="cc" style="padding:0 10px 10px;" id="tabA">
<a href="post.php?fid=53#breadCrumb" class="post fr" id="td_post" rel="nofollow">·???</a>
<div style="padding-top:4px;">
<div class="pages"><b>1</b><a href="thread.php?fid=53&page=2">2</a><a href="thread.php?fid=53&page=3">3</a><a href="thread.php?fid=53&page=4">4</a><a href="thread.php?fid=53&page=5">5</a><a href="thread.php?fid=53&page=6">6</a><a href="thread.php?fid=53&page=85">...85</a><a class="pages_next" href="thread.php?fid=53&page=2">下一页</a><div class="fl">到第</div><input type="text" size="3" onkeydown="javascript: if(event.keyCode==13){var value = parseInt(this.value); var page=(value>85) ? 85 : value; location='thread.php?fid=53&page='+page+''; return false;}"><div class="fl">页</div><button onclick="javascript:var value = parseInt(this.previousSibling.previousSibling.value); var page=(value>85) ? 85 : value; location='thread.php?fid=53&page='+page+''; return false;">确认</button></div>
</div>
</div>
<div id="menu_post" class="pw_menu tac" style="display:none;">
<ul class="menuList" style="width:70px;">
<li><a href="post.php?fid=53" title="????" hidefocus="true">????</a></li>
</ul>
</div>
<div class="sidePd10">
<div class="tabA">
<ul class="cc">
<li class="current"><a href="thread.php?fid=53&search=all#tabA" hidefocus="true" rel="nofollow">????</a></li>
<li id="thread_type_digest"><a href="thread.php?fid=53&search=digest#tabA" hidefocus="true">????</a></li>
<li ><a href="thread.php?fid=53&special=1#tabA" hidefocus="true" rel="nofollow">???±</a></li>
</ul>
</div>
<div id="ajaxtable">
<div class="pw_ulA cc">
<style>
.pw_ulA{border-bottom:0 none;}
.tr2 td{background:#eaf1f7;border-bottom:1px solid #c6d9e7;}
</style>
<ul class="cc" style="display:none;" id="id_allpcid">
</ul>
<ul class="cc" style="display:none;" id="id_allactmid">
</ul>
<ul class="cc" style="display:none;" id="id_allmodelid">
</ul>
</div>
<div class="threadCommon">
<style>
/*??°?±?????*/
.tr3 td.subject{padding-left:10px;}
.tr3 td.subject .adminbox{padding:0 0 0 0;margin:-3px 3px 0 0;*margin:0 0 0 -5px;width:auto;}
</style>
<table width="100%" style="table-layout:fixed;">
<tr class="tr2 thread_sort">
<td style="padding-left:12px;">
<span class="checkbox fr mr10" id="newwindows" unselectable="on">???°</span>
<script>
var orderThreadsClass = {
orderThreads : function(orderway){
var orderway = orderway || 'lastpost';
var form = document.createElement("form");
form.action = "thread.php?fid=53&search=all&page=1#tabA";
form.method = "post";
var h_type = this.createInput("hidden","type","0");
var h_search = this.createInput("hidden","search","1000");
var h_special = this.createInput("hidden","special","0");
var h_orderway = this.createInput("hidden","orderway",orderway);
var h_asc = this.createInput("hidden","asc","DESC");
form.appendChild(h_type);
form.appendChild(h_search);
form.appendChild(h_special);
form.appendChild(h_orderway);
form.appendChild(h_asc);
document.body.appendChild(form);
setTimeout(function(){/*ie6*/
form.submit();
},0);
return false;
},
createInput : function(type,name,value){
var hidden = document.createElement("input");
hidden.type = type;
hidden.name = name;
hidden.value = value;//??
return hidden;
}
}
function orderThreads(orderway){
orderThreadsClass.orderThreads(orderway);
}
</script>
???ò?? <a href="thread.php?fid=53&search=all&orderway=postdate&asc=DESC&page=1&type=0&special=0#tabA" title="°?·?±í?±?????ò" >×???·???</a><span class="gray">|</span><a href="thread.php?fid=53&search=all&orderway=lastpost&asc=DESC&page=1&type=0&special=0#tabA" title="°?×??ó?????±?????ò" class='s6 current'>×??ó????</a><span class="gray">|</span><a href="thread.php?fid=53&search=all&orderway=replies&asc=DESC&page=1&type=0&special=0#tabA" title="°??????????ò" >??????</a><span class="gray">|</span><a href="thread.php?fid=53&search=all&orderway=hits&asc=DESC&page=1&type=0&special=0#tabA" title="°????÷?????ò" >???÷??</a></td>
<td class="author">
<div id="pw_all_pos_usercard" style="width:0;height:0;line-height:0;font-size:0;overflow:hidden;"> </div>
<div class="fl" id="pw_all_tip_usercard" style="display:none;margin-left:-30px;margin-top:-35px;">
<div style="position:absolute;z-index:99;">
<table><tr><td style="padding:0;background:none;">
<div class="pw_all_tip">
<a href="javascript:void(0)" class="adel">??±?</a>
<dl class="cc">
<dt>?ó±ê???????á??????????????</dt>
<dd><a class="bb_close" href="javascript:void(0)">??????</a></dd>
</dl>
</div>
<div class="pw_all_angle_bot"></div>
</td></tr></table>
</div>
</div>
×÷??</td>
<td width="60">????</td>
<td class="author">×??ó·?±í</td>
</tr>
</table>
<table width="100%" style="table-layout:fixed;" class="z">
<tbody id="threadlist">
<tr class="tr3">
<td class="icon tar" width="30" height="28"><img src="images/wind/thread/anc.gif" alt="????" /></td>
<td class="subject f14">????????: <a href="./read.php?tid=810169" class="mr10"><b><font color=red>???÷???????á?±????×???????°??????è??????????????????</font></b></a><a href="./read.php?tid=810169" class="f10 gray">2016-07-18 15:12</a>
</td>
<td class="author">
<a href="u.php?username=admin" target="_blank" class=" _cardshow" data-card-url="pw_ajax.php?action=smallcard&type=showcard&username=admin" data-card-key="admin">admin</a>
</td>
<td class="num" width="60"> </td>
<td class="author"> </td>
</tr>
<tr class="tr3">
<td class="icon tar" width="30"> <a href="read.php?tid=16076" target="_blank">
<img src="images/wind/file/headtopic_3.gif" align="absmiddle" alt="??????" title="??????"/>
</a>
</td>
<td class="subject" id="td_16076">
<a href="read.php?tid=16076" name="readlink" id="a_ajax_16076" class="subject_t f14"><b><font color=green>?????ì???á???°??????????±????±?×?????????±(?????á?±±?????</font></b></a> <img src="images/wind/file/img.gif" alt="img" align="absmiddle"> <span class="s2 w"></span><span class="w"> <img src="images/wind/file/multipage.gif" align="absmiddle" alt="pages"> <span class="tpage"> <a href="read.php?tid=16076&page=2">2</a> <a href="read.php?tid=16076&page=3">3</a> <a href="read.php?tid=16076&page=4">4</a> <a href="read.php?tid=16076&page=5">5</a> .. <a href="read.php?tid=16076&page=235">235</a></span> </span></td>
<td class="author">
<a href="u.php?uid=1" class=" _cardshow" data-card-url="pw_ajax.php?action=smallcard&type=showcard&uid=1" target="_blank" data-card-key="admin">admin</a>
<!--2016 <a href="u.php?uid=1">1</a> 201607-->
<p >2006-08-15</p></td>
<td class="num" width="60"><em>2341</em>/390520</td>
<td class="author"><a href="u.php?username=?÷???ú??" target="_blank" class=" _cardshow" data-card-url="pw_ajax.php?action=smallcard&type=showcard&username=%C3%F7%C4%DE%B9%FA%CB%B9" data-card-key="?÷???ú??">?÷???ú??</a><p><a href="read.php?tid=16076&page=e#a" title="2017-08-12 17:38">?°?ì 17:38</a></p></td>
</tr>
<tr class="tr3">
<td class="icon tar" width="30"> <a href="read.php?tid=14151" target="_blank">
<img src="images/wind/file/headtopic_3.gif" align="absmiddle" alt="??????" title="??????"/>
</a>
</td>
<td class="subject" id="td_14151">
<a href="read.php?tid=14151" name="readlink" id="a_ajax_14151" class="subject_t f14">??<<?????????????ù?÷>>??</a> <img src="images/wind/file/img.gif" alt="img" align="absmiddle"> <span class="s2 w"></span><span class="w"> <img src="images/wind/file/multipage.gif" align="absmiddle" alt="pages"> <span class="tpage"> <a href="read.php?tid=14151&page=2">2</a> <a href="read.php?tid=14151&page=3">3</a> <a href="read.php?tid=14151&page=4">4</a> <a href="read.php?tid=14151&page=5">5</a> .. <a href="read.php?tid=14151&page=80">80</a></span> </span></td>
<td class="author">
<a href="u.php?uid=1" class=" _cardshow" data-card-url="pw_ajax.php?action=smallcard&type=showcard&uid=1" target="_blank" data-card-key="admin">admin</a>
<!--2016 <a href="u.php?uid=1">1</a> 201607-->
<p >2006-05-24</p></td>
<td class="num" width="60"><em>790</em>/384011</td>
<td class="author"><a href="u.php?username=hezufa784" target="_blank" class=" _cardshow" data-card-url="pw_ajax.php?action=smallcard&type=showcard&username=hezufa784" data-card-key="hezufa784">hezufa784</a><p><a href="read.php?tid=14151&page=e#a" title="2017-08-04 10:07">08-04</a></p></td>
</tr>
<tr class="tr4"><td width="30"></td><td style="padding-left:0;">???¨?÷??</td><td width="95"></td><td width="60"></td><td width="95"></td></tr>
<tr class="tr3">
<td class="icon tar" width="30"> <a title="??·??÷??" href="read.php?tid=859781" target="_blank"><img src="images/wind/thread/topicnew.gif" align="absmiddle"></a>
</td>
<td class="subject" id="td_859781">
<a href="read.php?tid=859781" name="readlink" id="a_ajax_859781" class="subject_t f14">?§???????????????¤?á????????</a> <span class="s2 w"></span></td>
<td class="author">
<a href="u.php?uid=277247" class=" _cardshow" data-card-url="pw_ajax.php?action=smallcard&type=showcard&uid=277247" target="_blank" data-card-key="magaoyang6">magaoyang6</a>
<!--2016 <a href="u.php?uid=277247">277247</a> 201607-->
<p >2017-08-08</p></td>
<td class="num" width="60"><em>0</em>/185</td>
<td class="author"><a href="u.php?username=magaoyang6" target="_blank" class=" _cardshow" data-card-url="pw_ajax.php?action=smallcard&type=showcard&username=magaoyang6" data-card-key="magaoyang6">magaoyang6</a><p><a href="read.php?tid=859781&page=e#a" title="2017-08-08 19:55">08-08</a></p></td>
</tr>