-
Notifications
You must be signed in to change notification settings - Fork 21
/
style.css
executable file
·1893 lines (1804 loc) · 153 KB
/
style.css
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
/*
Theme Name: Tincetion
Theme URI: http://www.zhiyanblog.com/tinection.html
Description: Tinection主题,WordPress多模板主题,知言博客自用主题
Version: 1.1.8
Date: 2015.5.27
Author: Zhiyan
Author URI: http://www.zhiyanblog.com/
Text Domain: tinection
Tags: light, one-column, two-columns, fluid-layout, fixed-layout, custom-colors, custom-background, custom-menu, featured-images, flexible-header, full-width-template, post-formats, sticky-post, theme-options, threaded-comments, translation-ready, photoblogging
Copyright: (c) 2014-2015 Tinection@Zhiyanblog
License: GNU General Public License v3.0
License URI: http://www.gnu.org/licenses/gpl-3.0.html
*/
@font-face {
font-family: 'consolas';
src: url('fonts/consolas/consolas-webfont.eot');
src: url('fonts/consolas/consolas-webfont.eot') format('embedded-opentype'),
url('fonts/consolas/consolas-webfont.woff') format('woff'),
url('fonts/consolas/consolas-webfont.ttf') format('truetype'),
url('fonts/consolas/consolas-webfont.svg') format('svg');
font-weight: normal;
font-style: normal;
}
/* ------------------------------------------------------------------------- *
* Reset
* ------------------------------------------------------------------------- */
html,body,button,div,span,applet,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,article,big,cite,code,del,dfn,em,font,img,ins,kbd,q,s,samp,section,small,strike,strong,sub,tt,var,b,u,i,center,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td,tr {margin:0;padding:0;border:none;outline:0;font-weight:inherit;font-style:inherit;vertical-align:baseline;background:transparent;font-family:"Microsoft YaHei","微软雅黑",Arial,"Open Sans",SimSun,sans-serif;list-style:none;}
html {font-size:62.5%;text-rendering:optimizeLegibility;-webkit-font-smoothing:antialiased;-moz-osx-font-smoothing:grayscale;min-height:100%;}
*:focus {outline:none;}
textarea {resize:none;}
*,*:before,*:after {-webkit-box-sizing:border-box;-moz-box-sizing:border-box;box-sizing:border-box}
/* ------------------------------------------------------------------------- *
* Base Styles
/* ------------------------------------------------------------------------- */
body {font: 12px/1.5 'Microsoft Yahei','Simsun';-ms-word-break:break-all;word-break:break-all;word-wrap:break-word;overflow-wrap:break-word;background:#fff;font-weight: normal;background-size:100% 100%;background-attachment:fixed;}
input,select,option,textarea{font-family:"Microsoft YaHei","微软雅黑",Arial,"Open Sans",SimSun,sans-serif;color:inherit;}
div {display:block;}
img {max-width:100%;height:auto;}
img.avatar{display:inline-block!important;}
body a {color:#60717e;text-decoration:none;background:transparent;font-size:100%;margin:0;padding:0;vertical-align:baseline;-webkit-transition:all 0.2s ease;-moz-transition:all 0.2s ease;transition:all 0.2s ease;cursor:pointer;}
body a:hover{color:#d9534f;}
address,cite,em {font-style:italic;}
strong, .strong {font-weight:600;font-weight:bold;}
u {text-decoration:underline;}
blockquote {margin:10px 0;padding:10px 10px 10px 40px;border:1px solid #f5f5f5;border-left: 5px solid #f5f5f5;font-size:13px;position:relative;}
blockquote:before{content: "\f10d"; color: #f5f5f5; font-size: 30px;font-style: normal; font-family: FontAwesome; text-align: center; position: absolute; left: 5px; top: 0;}
code {font-family: consolas,'Microsoft Yahei',arial !important;padding: 2px 4px;font-size: 90%;color: #c7254e;background-color: #f9f2f4;border-radius: 4px;}
textarea{font-family: consolas,'Microsoft Yahei',arial !important;}
.left,.alignleft { float: left; }
.right,.alignright { float: right; }
.aligncenter { margin-left: auto; margin-right: auto; }
.clr:after{content: "";display: block;height: 0;clear: both;visibility: hidden;zoom: 1;}
.clear{clear:both;}
h1,h2,h3,h4,h5,h6{color:#555;line-height:130%;font-weight:600;text-transform: capitalize;}
h1 a:hover,h2 a:hover,h3 a:hover,h4 a:hover,h5 a:hover,h6 a:hover{text-decoration: none;}
h1 {font-size: 24px;}
h2 {font-size: 20px;}
h3 {font-size: 18px;}
h4 {font-size: 16px;}
h5 {font-size: 14px;}
h6 {font-size: 12px;}
article h2,article h3{text-transform: capitalize;}
.hide{display: none}
.trans{-webkit-transition: all .4s ease;-moz-transition: all .4s ease;-o-transition: all .4s ease;}
/* Scrollbar */
::-webkit-scrollbar {width: 8px; height:8px; }
.content ::-webkit-scrollbar{height:5px;}
::-webkit-scrollbar-thumb{background-color:#33BBBA !important;}
.nicescroll-rails div{border:0 !important;border-radius: 0 !important;}
/* Header */
#body-container{position: relative;top: 0;left: 0;z-index: 0;display: block;overflow: hidden;}
#navmenu-mobile{display:none;position: fixed;top: 0;left: 0;z-index: 1;width: 250px;height: 100%;background: #34393d;color: #fff;}
#navmenu-mobile::-webkit-scrollbar{width:0;}
#navmenu-mobile a{color:#fff;}
#content-container{position: relative;top: 0;left: 0;z-index: 2;margin: 0;}
.header-wrap {width:100%; height: 80px; background:#fff;z-index: 999;box-shadow: 0 0 2px rgba(0,0,0,.2);}
.nav-wrap {max-width:1200px; width:100%; margin-left:auto; margin-right:auto;position: relative;}
.hidefixnav{height: 80px;/* background: url(images/pix.png) repeat 2px 2px; */}
#nav-scroll {position: fixed; top:0px;}
#nav-scroll.tofix{position: fixed;transition: all 0.5s;-webkit-transition: all 0.5s;height: 60px;box-shadow: 0px 2px 5px 0px rgba(0,0,0,.15);opacity:0.9;filter: alpha(opacity=90);}
#nav-scroll.tofix .logo a img{height: 60px;}
#nav-scroll.tofix .login-yet-click{display: none;}
#nav-scroll.tofix #login-reg{height: 60px;padding: 13px 0;}
#nav-scroll.tofix li{line-height: 52px;height: 60px;}
#nav-scroll.tofix li li{line-height: 20px;height: auto;}
#nav-scroll.tofix .menu-item-has-children > a:after, #nav-scroll.tofix .page_item_has_children > a:after{line-height: 50px;}
#nav-scroll.tofix .logo-title a{line-height:60px;}
#nav-scroll.tofix .search-btn-click{line-height: 60px;width:50px;}
.logo {display: inline-block; float: left; margin-right: 20px;}
.logo a img {height: 80px; width: auto; margin-top: 0px;}
.logo-title {float:left;display: inline-block;margin-right: 20px;}
.logo-title a {color:#888;line-height:80px; font-size:30px;white-space:nowrap}
.logo-title a:hover {color:#ddd;}
.header-bar-search {float: right; height: 60px; line-height: 60px; width: 100px;}
.header-bar-search input[type="search"] {width:100%; display: block; color: #202020; font-size: 16px;-moz-box-sizing: border-box; -webkit-appearance: none !important; -webkit-box-sizing: border-box; -webkit-writing-mode: horizontal-tb; background: #fff; box-sizing: border-box; line-height: 16px; margin-top: 15px; padding: 6px 5px; border-radius: 3px; outline: none;border:0;-webkit-box-shadow: none;box-shadow: none;}
.header-bar-search input[type="search"]:focus{outline: none;border:0;-webkit-box-shadow: none;box-shadow: none;}
.toggle-menu{display: none;line-height: 60px;font-size: 20px;width: 50px; margin-right: 5px;top:0;left:0;color: #888;cursor:pointer;}
.search-btn-click{line-height: 80px;font-size: 16px;width: 60px; margin-left: 5px;position:relative;float:right;color: #888;cursor:pointer;text-align: center;}
.search-btn-click i {font-size: 23px;}
.header-search-slide input:focus .search-btn-click{background:#aaa;}
.header-search-slide{display: none;position: absolute;right: 0;width: 100%;clear: both;border: 1px solid #eee;background: rgba(255,255,255,.9);z-index: 1;}
.header-search-slide form{padding: 25px 25%;overflow: hidden;}
.header-search-slide input[type="search"]{border: 0;width: 90%;height: 50px;float: left;padding-right: 10px;margin: 0 auto;font-size: 17px;line-height: 30px;border: solid 2px #ddd;border-right: none;border-radius: 2px;}
.header-search-slide input[type="search"]:focus{box-shadow:none;}
.search-btn{color: #fff;border: none;background: #45B6F7;height: 50px;font-size: 16px;padding: 0 12px;border-radius: 0 2px 2px 0;width: 10%;cursor: pointer;-webkit-transition: all 0.25s;-moz-transition: all 0.25s;-ms-transition: all 0.25s;-o-transition: all 0.25s;transition: all 0.25s;}
.search-btn:hover{color: #fff;opacity: 0.85;filter: alpha(opacity=85);}
.site_loading{background:#f00;height:2px;position:absolute;z-index:99999;top: 0;}
/* Focus us */
#focus-us{display: inline-block;float: right;line-height: 80px;font-size: 16px;margin: 0 5px;padding:0 25px 0 10px;cursor: pointer;position:relative;color: #999999;}
#focus-us:before{-webkit-font-smoothing: antialiased;content: "\f0d7";display: inline-block;font: normal 8px/80px FontAwesome;position: absolute;right: 12px;vertical-align: text-bottom;}
#nav-scroll.tofix #focus-us,#nav-scroll.tofix #focus-us:before{line-height: 60px;}
#focus-us:hover,#focus-us:focus{background:#fff;}
#focus-slide{color:#aaa;position:absolute;top:100%;display:none;background: #fff;right: 0;min-width: 230px;padding: 10px 15px;box-shadow: 2px 2px 6px rgba(0,0,0,.2);cursor: default;}
#nav-scroll.tofix #focus-slide{top: 60px;}
.focus-title{border-bottom:1px solid #aaa;line-height:30px;}
.focus-title, .focus-title a, .focus-content span, .focus-content a {font-size:14px;}
.focus-content{line-height:36px;}
.focus-content a:hover{color:#428bca;}
.focus-content input,input.focus-email{width:100%;height:30px;line-height:30px;padding:0 5px;border:0;border: 1px solid #eee;margin: 10px 0 0;background: #fafafa;color: #aaa;}
#focus-slide form{line-height: 40px;}
input.focus-email-submit{width:100%;height:30px;background:#00b5a9;color:#fff;border:0;cursor: pointer;}
.focus-content span{width:50%;float:left;line-height:36px;padding-left:2px;}
.focus-content span i{margin-right:10px;}
.focus-title i{margin-left:5px;}
/* Mobile leftslide */
.mobile-login-field{margin: 30px 0 20px;padding: 0 10px 0 28px;}
.login-box-mobile-form a.btns{width:30px;height:30px;margin:5px;display: inline-block;}
.login-box-mobile-form a.btn-qq {background-image:url('images/qq_32x32.png');}
.login-box-mobile-form a.btn-weibo {background-image:url('images/weibo_32x32.png');}
.login-box-mobile-form input{width:160px;height:30px;margin-bottom:10px;border-radius:3px;padding-left:5px;border:0;}
.login-box-mobile-form input[type=submit]{background:#3bbfaf;color:#fff;}
.login-box-mobile-form input:focus{box-shadow:none;}
.login-box-mobile-submit{width:160px;height:40px;}
.login-box-mobile-form input[type=submit]{width:45px;float:right;margin-top:5px;}
.login-box-mobile-register a{font-size:12px;line-height:160%;color:#fff;}
.login-yet-mobile-avatar .avatar{border-radius: 60px;border: 2px solid #fff;float: left;}
.login-yet-mobile-manageinfo{float: left;padding-left: 20px;position:relative;}
.login-yet-mobile-manageinfo a.new-message-notify{color: #3cabda !important;top: 28px;right: -12px;}
.login-yet-mobile-manageinfo a{display: block;height: 30px;}
.login-yet-mobile-manageinfo a.title{font-size: 16px;font-weight: normal;line-height: 35px;}
.login-yet-mobile-manageinfo a.name{font-size: 12px;color:#3cabda !important;line-height: 25px;}
#menu-mobile{display:none;}
#menu-mobile li{line-height:1.7;}
#menu-mobile ul{background:#404549;}
#menu-mobile li a:hover, #menu-mobile a.current, #menu-mobile li.current-menu-item > a{background-color: #34c0e0;}
#menu-mobile a.current:after, #menu-mobile li.current-menu-item > a:after{color:#fff !important;}
#menu-mobile a {-webkit-transition: background 0.12s;-moz-transition: background 0.12s;transition: background 0.12s;-webkit-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;-webkit-tap-highlight-color: rgba(0,0,0,0);-webkit-touch-callout: none;position: relative;z-index: 1;display: block;padding: 0 10px 0 28px;height: 46px;color: #fff;font-size: 14px;line-height: 46px;}
#menu-mobile li.menu-item-has-children>a:after{line-height:46px;content: "\f107"; display: inline-block; font-style: normal; font-family: FontAwesome; text-align: center; position: absolute; right: 5px;font-size: 20px;color:#888;width: 20px;}
#menu-mobile li.expand>a:after{content:"\f106";}
#menu-mobile li li.menu-item-has-children>a:after{content: "";}
#menu-mobile li.menu-item-has-children span.child-menu-block{position: absolute;height: 46px;width: 100%;z-index: 9;-webkit-transform: translate3d(0,0,0);transform: translate3d(0,0,0);-webkit-transform: rotate(0deg);-moz-transform: rotate(0deg);-ms-transform: rotate(0deg);-o-transform: rotate(0deg);transform: rotate(0deg);}
#menu-mobile ul li a{padding: 0 10px 0 38px;}
/* Primary Navigation */
.pri-nav {float: left; font-size: 16px;margin: 0; padding: 0; text-transform: uppercase;}
.pri-nav .nav-menu {border-bottom: 0; display: block;}
.pri-nav.toggled-on {border-bottom: 0; margin: 0; padding: 0;}
.pri-nav li {display: inline-block; height: 80px; line-height: 72px; position: relative;}
.pri-nav li.current-menu-item a {color: #fff;font-weight:bold;}
.pri-nav a {display: inline-block; padding: 0 12px; white-space: nowrap; color:#fff;}
.pri-nav ul ul {display:none; background-color: #1e2629; float: left; margin: 0; position: absolute; top: 100%;z-index: 99999;min-width: 125px; text-transform: capitalize;box-shadow: 2px 2px 6px rgba(0,0,0,.2);}
.pri-nav li li {border: 0; border-top:0; display: block; height: auto; line-height: 20px;}
.pri-nav li li.current-menu-item,
.pri-nav li li.current_page_item {border-top: 0;}
.pri-nav ul ul ul {left: -999em; top: 0;}
.pri-nav ul ul a {padding: 12px 12px !important; white-space: nowrap; width: 100%;text-align: center;}
.pri-nav li a:hover{color: #428bca;}
.pri-nav li.current-menu-item a {border-bottom: 4px solid #428bca;}
.pri-nav ul ul {border-bottom: 4px solid #428bca;}
.pri-nav a {padding-top: 4px;border-bottom: 4px solid transparent;_border-bottom-color: #fff;}
.pri-nav a:hover {border-bottom-color: #428bca;}
.pri-nav ul li ul li a {border-bottom: 0;}
.pri-nav .menu-item-has-children > a:hover {border-bottom-color: transparent;}
.pri-nav ul ul li {border-bottom: 1px solid #eee;}
.pri-nav ul ul li:hover {background: #f3f3f3;}
.logo a img, #focus-us, #focus-us:before, #login-reg, .search-btn-click, .pri-nav .menu-item-has-children > a:after, .pri-nav .page_item_has_children > a:after {transition: all 0.4s; -webkit-transition: all 0.4s;}
.pri-nav ul li a,.pri-nav ul ul li a{-webkit-transition: all .4s ease-out;-moz-transition: all .4s ease-out;-o-transition: all .4s ease-out;}
.pri-nav li > a {color: #777;font-size:16px;}
.pri-nav li:hover > a,.pri-nav li.focus > a {color: #fff;}
.pri-nav .menu-item-has-children > a,.pri-nav .page_item_has_children > a {padding-right: 22px;}
.pri-nav .menu-item-has-children > a:after,.pri-nav .page_item_has_children > a:after { -webkit-font-smoothing: antialiased; content: "\f0d7"; display: inline-block; font: normal 10px/72px FontAwesome; position: absolute; right: 12px; vertical-align: text-bottom;}
.pri-nav li .menu-item-has-children > a,.pri-nav li .page_item_has_children > a {width: 100%;}
.pri-nav .menu-item-has-children li.menu-item-has-children > a:after,.pri-nav .menu-item-has-children li.page_item_has_children > a:after,.pri-nav .page_item_has_children li.menu-item-has-children > a:after,.pri-nav .page_item_has_children li.page_item_has_children > a:after {content: "";}
li.menu-item a span{display:none;}
/* breadcrumbs */
.breadcrumbs{background-color:#fcfcfc;padding: 30px 0;border-bottom: 1px solid rgba(0,0,0,0.05);border-top: 1px solid rgba(0,0,0,0.05);}
body.home .breadcrumbs {background: #fff; padding: 25px 0;}
.header-search {position: absolute; right: 0; width:300px; height: 40px; margin-top:10px;}
.header-search input{font-size:14px;height:40px;line-height:40px;}
#searchform{height: 40px;}
#searchsubmit{color:#fff;background:#a1a1a1;height:40px;line-height:40px;width:40px;text-align:center;top:0;right:0;margin-top:0;font-size:16px;outline: none;position: absolute;cursor: pointer;}
#searchsubmit:hover{background:#919191}
#searchsubmit i{position:relative;}
.breadcrumbs-text {font-size: 14px;line-height:20px;}
.breadcrumbs-text a, .breadcrumbs-text a:hover{color: #989898;}
.breadcrumbs-text a:hover{text-decoration: underline;}
#breadcrumbs{padding-right: 325px;}
#breadcrumbs h1{font-size:25px;line-height: 40px;overflow: hidden;}
#breadcrumbs h1 i{margin-right:5px;}
/* Main Wrap*/
body {width: 100%;}
body.home #main-wrap-left,body.archive #main-wrap-left,body.search #main-wrap-left,body.page-template-page-articles-php #main-wrap-left{border: 0px solid #eaeaea;}
#main-wrap { width:100%; max-width: 100%; margin:0 auto; position:relative; clear: both; overflow:auto;}
body.page-template-page-articles-php #main-wrap{max-width: 1200px;}
#main-wrap-left {max-width:830px; width:100%; float:left;border-radius: 3px;margin-bottom: 10px;border: 1px solid #eaeaea;}
.container {max-width: 1200px;min-width: 240px;width:100%;margin: 0 auto; position:relative;}
.container-row {max-width: 1200px;min-width: 240px;width: 100%;margin: 0 auto; position:relative; overflow: hidden;}
.two-col-container{padding-right:360px !important;margin-top: 10px;}
body.home .two-col-container{margin-top: 10px;}
.pagewrapper{background-color: #fff;position: relative;border: 1px solid #eaeaea;margin-top:10px;}
/* Slider */
#home-featured {background: #f5f5f5; padding:0; margin-bottom: 10px;overflow: hidden;/*background: url(images/slider/slider-bg.jpg) no-repeat center top;*/border-bottom: 1px inset rgba(0,0,0,.05);display: block;}
.home-featured-title{position:relative}
.home-featured-meta {margin-top: 20px; font-size:100%;}
.home-featured-links {margin-top: 20px;}
#home-slider{z-index: 0}
#home-slider a{transition:0;}
.slider-img{display: inline-block;float: right;margin: 0 0px 0 10px;width: 600px;max-height: 336px;overflow: hidden;}
.slider-img img{width: 100%;display:block;}
.slider-text{width: 100%;max-width:560px;padding: 20px 0;float: left;position: relative;}
.slider-text .cl{zoom:1;}
.slider-meta{position: relative;}
.slider-meta .num{position: absolute;font-size: 44px;left: 0;text-align: right;line-height: 38px;color: #fff;}
.slider-meta .author{line-height: 15px;position: absolute;left: 60px;font-size: 15px;color: #afafaf;margin-left: 0;}
.slider-meta .date{font-size: 11px;position: absolute;left: 60px;top: 19px;color: #afafaf;}
.slider-text h2{display: block;margin: 0 0 5px 0;padding: 0;;line-height: 32px;width: 100%;max-width:400px;float: right;text-align: right;}
.slider-text h2 a{font-size: 18px;text-decoration: none;font-weight: bold;color: #60717e;}
.slider-text h2 a:hover{color:#51ADED;}
.slider-text .slider-excerpt{line-height: 30px;text-align: left;font-size: 15px;margin-top: 40px;float: left;color: #8c8c8c;min-height:60px;max-height: 120px;overflow: hidden;}
.slider-text .slider-readmore{margin:0;display: block;float: right;}
.slider-readmore a{display: block;border: 1px solid #f98181;border-radius: 20px;line-height: 24px;padding: 0 15px;font-style: italic;font-size: 12px !important;color: #f98181;text-decoration: none !important;float: right;margin-top: 20px;}
.slider-readmore a:hover{background: #f98181;color:#fff;}
.flexslider{position:relative;width:100%;max-height:336px;/*overflow:hidden;*/zoom:1;padding: 16px 0 28px;margin:0 auto;}
.flex-viewport{max-height:2000px;-webkit-transition:all 1s ease;-moz-transition:all 1s ease;transition:all 1s ease;overflow: hidden;}
.flexslider .slides{zoom:1;overflow: hidden;}
.flex-direction-nav a{color:#60717e;width:30px;line-height:60px;font-size: 60px;text-decoration: none;font-family: 'Simsun','Open Sans','sans-serif','宋体' !important;overflow:hidden;margin:-30px 0 0;display:block;position:absolute;top:50%;z-index:10;cursor:pointer;opacity:1;filter:alpha(opacity=100);-webkit-transition:all .3s ease;}
.flex-direction-nav a:hover{color: #a8a8a8;}
.flex-direction-nav .flex-next{background-position:0 -90px;right:-100px;}
.flex-direction-nav .flex-prev{left:-100px;}
.flexslider:hover .flex-next{opacity:1;filter:alpha(opacity=100);}
.flexslider:hover .flex-prev{opacity:1;filter:alpha(opacity=100);}
.flexslider:hover .flex-next:hover, .flexslider:hover .flex-prev:hover{opacity:1;filter:alpha(opacity=50);}
.flex-control-nav{width:100%;position:absolute;bottom:3px;text-align:center;z-index: 2;}
.flex-control-nav li{margin:0 5px;display:inline-block;zoom:1;*display:inline;}
.flex-control-paging li a{background:url(images/slider/dot.png) no-repeat 0 -16px;display:block;height:16px;overflow:hidden;text-indent:-99em;width:16px;cursor:pointer;transition: 0;}
.flexslider-nar .flex-control-paging li a{background-position:0 -56px;}
.flex-control-paging li a.flex-active{background-position:0 0;}
.flexslider-nar .flex-control-paging li a.flex-active{background-position:0 -32px;}
.flexslider-nar{width:60%;float:left;margin:16px 0;padding:0;overflow: hidden;}
.flexslider-nar .flex-viewport{background: #fff;}
#flexslider-right{width:40%;float:left;height:336px;margin-top:16px;padding-left:20px;}
.slider-newest{background:#fff;width: 100%;height: 100%;display: block;padding:10px 0;overflow: hidden;}
.flexslider-nar .slides li{position:relative;overflow: hidden;}
.flexslider-nar .slides li .slider-img{width:100%;margin:0;padding-left: 0;}
.flexslider-nar .slides li h2{position:absolute;bottom:0;background:rgba(0,0,0,.6);width: 100%;line-height:45px;height:45px;z-index: 1;opacity: 0.8}
.flexslider-nar .slides li h2 a{color:#fff;padding:0 100px 0 20px;overflow:hidden;font-weight:normal;font-size:16px;}
.flexslider-nar .flex-direction-nav{display:none;}
.flexslider-nar .flex-control-nav{position:absolute;bottom:14px;right:36px;height: 16px;width: auto;}
.slider-newest-title{padding:0 15px 10px;border-bottom:1px solid #eaeaea;line-height:20px;}
.slider-newest-articles{padding:0 10px;}
.slider-newest-articles article{padding:5px 0;border-bottom:1px solid #f5f5f5;}
.slider-newest-articles article:nth-child(3){border-bottom:0;}
.slider-newest-articles article:nth-child(4){display:none;}
.slider-newest-title h2{line-height:20px;font-size:16px;font-weight:normal;}
.slider-newest-title a{float:right;font-size:14px;color:#60717c;}
.slider-newest-title i{float:right;margin-right:8px;font-size:14px;line-height:20px;}
.slider-newest-articles h3{overflow:hidden;height:50px;line-height:20px;padding-top:8px;margin-bottom: 8px;}
.slider-newest-articles h3 a{font-size:14px;font-weight:normal;color:#323232;}
.slider-newest-articles h3 a:hover{text-decoration:underline;color:#60717c;}
.slider-newest-articles span.reviewer{text-transform: capitalize;}
.slider-newest-articles a.fancyimg{width:106px;max-height:88px;float:left;margin-right:10px;padding-left:0;}
.slider-video{position: absolute;top: 0;left: 0;width: 100%;height: 100%;background: rgba(0,0,0,.2);cursor: pointer;}
.slider-video.playing{z-index: 2;}
.slider-video a{display: block;height: 100%;}
.slider-video span{position: absolute;top:50%;left: 50%;margin-top: -25px;margin-left: -25px;width: 50px;height: 50px;background: url('images/slider/play.png') no-repeat;background-size:cover;}
.slider-video.playing a{background:rgba(0,0,0,.6);}
.slider-video.playing a span{top:15px;left:100%;margin-top:0;margin-left:-40px;width:25px;height:25px;background: url('images/slider/play.png') no-repeat;background-position: 0 -50px;}
/* Stickys */
.stickys{margin: 0 0 10px;background: #fff;padding: 10px;border: 1px solid #eaeaea;}
.cms-bar .stickys .heading-text-cms{border-bottom-color:transparent;cursor:pointer;padding-left:2px;padding-right:2px;}
.cms-bar .stickys .heading-text-cms.active{border-bottom-color:#f85555;}
.stickys-container.stickys-two-col article{width:50%;float:left;margin-bottom:5px;}
.stickys-container.stickys-two-col article:nth-child(2n+1) {padding-right:5px;}
.stickys-container.stickys-two-col article:nth-child(2n+2) {padding-left:5px;}
.stickys-container.stickys-one-col article{width:100%;margin-bottom: 10px;}
#main-wrap-left .stickys-container.stickys-two-col a.fancyimg{float: left;width: 100px;margin: 5px 15px 0 0;padding:0;}
#main-wrap-left .stickys-container.stickys-one-col a.fancyimg{float:left;width:300px;margin: 0 25px 0 0;padding:0;}
.stickys-container .meta{margin:5px 0 5px;}
.stickys .col-small h3{height: 24px;line-height: 24px;overflow: hidden;}
.stickys .stickys-one-col .col-small h3{height:auto;}
.stickys .col-small h3 a{font-weight: normal;font-size: 16px;}
.home .stickys .col-small p{font-size: 12px;line-height: 25px;height: 50px;overflow: hidden;}
.home .stickys-one-col .col-small p{height: auto;max-height: 125px;}
.latest-container{display:none;}
.latest-container .col-small{margin-bottom:10px !important;}
.latest-container article h3,.latest-container article h3 a{font-weight:normal;font-size:15px;line-height:25px;}
.latest-container article h3{padding-right:150px;position:relative;}
.latest-container article h3 .date,.latest-container article h3 .views,.latest-container article h3 .comments{position:absolute;top:0;font-size:12px;color:#aaa;line-height: 25px;}
.latest-container article h3 .date{right:110px;}
.latest-container article h3 .views{right: 50px}
.latest-container article h3 .comments{right:0;}
.latest-container article .num{font-size:13px;padding: 0 6px;vertical-align:bottom;background:#aaa;color:#fff;margin-right:10px;}
.latest-container article:nth-child(5n+1) .num{background:#f98181;}
.latest-container article:nth-child(5n+2) .num{background:#8DD566;}
.latest-container article:nth-child(5n+3) .num{background:#40BDEA;}
/* Home loop */
.catlist{width: 100%;}
.catlist_1_of_2{width: 50%;float:left;}
/* Catlist Child */
.catlist_1_of_2{width: 50%;float:left;}
.catlist .catlist_1_of_2:nth-child(2n+1) .catlist-container {margin-right: 5px; clear: both;}
.catlist .catlist_1_of_2:nth-child(2n+2) .catlist-container {margin-left: 5px; clear: both;}
.catlist .catlist_1_of_2:nth-child(2n+1) {clear: both;}
.catlist-container,.bloglist-container{margin: 0 0 10px;background: #fff;padding: 10px 10px 0;border: 1px solid #eaeaea;border-radius:2px;}
.home-heading{margin: 0 0 20px;font-size: 16px;font-weight:normal; position: relative;border-bottom: 2px solid #eee;padding: 6px 0 6px;}
.home-heading a{position: absolute;right: 0;top: 4px;font-size: 11px !important;text-transform: uppercase;color: #fff;font-weight:normal;line-height: 10px;padding: 7px 9px;border-radius: 3px;letter-spacing: 1px;opacity:0.8;}
.home-heading a:hover{color:#fff;opacity:1;}
.catlist_1_of_2 .home-heading a{background:transparent;}
.catlist_1_of_2 .home-heading a:hover{font-style:italic}
.home-blog-entry{position:relative;}
.home-blog-entry-rand{margin-left:6px;margin-right:6px;border: 1px solid #eaeaea;padding: 0;border-radius:2px;}
.catlist-container-rand{margin-left:-6px;margin-right:-6px;}
.catlist-container-rand .col{padding-left:0 !important;padding-right:0 !important;float:left !important;clear:none !important;}
.col{display: block;float: left;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box; padding-bottom:20px ;position: relative;}
.col-1{clear: both;margin-left: 0;}
.container-row .col {margin: 0 0 20px 0;}
.container-row .col-1 {margin-left: 0;}
#main-wrap-left .col {margin: 0 0 10px 0;padding-bottom: 0;}
.span_1_of_2.col article,.span_1_of_3.col article,.span_1_of_4.col article{background:#fff;}
.span_1_of_2{width: 50%;}
.span_1_of_3{width: 33.33%;border-radius: 0px 0px 5px 5px;}
.span_1_of_3.col-1{padding-right:6px;}
.span_1_of_3.col-2{padding-left:3px;padding-right:3px;}
.span_1_of_3.col-3{padding-left:6px;float: left;}
.span_1_of_4{width: 25%;border-radius: 0px 0px 5px 5px;}
.span_1_of_4.col-1{padding-right:6px;clear:left !important;}
.span_1_of_4.col-2{padding-left:3px;padding-right:3px;}
.span_1_of_4.col-3{padding-left:6px;padding-right:3px;}
.span_1_of_4.col-4{padding-left:6px;float: right;}
.span_1{width:100%;webkit-transition: all 0.3s ease-out;-moz-transition: all 0.3s ease-out;-o-transition: all 0.3s ease-out;-ms-transition: all 0.3s ease-out;transition: all 0.3s ease-out;background-color: #fff;overflow: hidden;border-bottom: 1px solid #f2f2f2;margin-bottom:15px !important;padding-bottom: 15px !important;}
.span_1:last-child{border-bottom:0;}
#home-blog-wrap,#single-blog-wrap{;margin-top: 10px;}
#category-cms-wrap{margin-top: 20px;width: 100%;}
#main-wrap-left a.fancyimg {width:260px; float:left;max-height:230px;overflow:hidden;}
#main-wrap-left .span_1 a.fancyimg {width:300px;padding:0;margin-right: 20px;margin-bottom: 0;max-height:215px;}
#main-wrap-left .span_1 a.fancyimg span{max-height:215px;}
.catlist-container article h3 a{font-weight: normal !important;}
/* Catlist style1 */
.cms-bar .s1{width:50%;float:left;}
.cms-bar .s1 span.views{position: absolute;background: rgba(0,0,0,0.5);padding: 2px 8px;z-index: 2;color: #fff;font-size: 13px;left:0;}
.cms-bar .s1 .col-small,.cms-bar .s2 .col-small,.cms-bar .s3 .col-small{position:relative;}
.cms-bar .s1 .col-small .meta-views-float,.cms-bar .s3 .col-small .meta-views-float{background:rgba(45,55,66,0.6);position: absolute;top: 0;left: 0;font-size: 14px;color: #FFF;height: 25px;line-height: 25px;padding: 0 10px;z-index:2;}
.cms-bar .s1.left{padding-right:15px;}
.cms-bar .s1.right{padding-left:15px;}
/* Catlist style2 */
.cms-bar .heading-text,.heading-text-blog{border-bottom: 2px solid #f85555;padding-bottom: 6px;position: relative;}
.cms-bar .col-left.s2{width:44%;padding-right:20px;padding-bottom:10px;float:left;}
.cms-bar .col-right.s2{width:56%;float:left;}
.cms-bar #main-wrap-left a.fancyimg{width:100%;float:none;padding:0;}
.cms-bar .col-left.s2 .postlist-meta,.cms-bar .col-right.s3 .postlist-meta,.cms-bar .col-left.s4 .postlist-meta,.cms-bar .col-right.s4 .postlist-meta{margin-top: 15px;border-bottom: 1px solid #e5e5e5;font-size: 12px;line-height:30px;height:30px;}
.cms-bar .postlist-meta .postlist-meta-views,.cms-bar .postlist-meta .postlist-meta-comments{margin:0;}
.cms-bar .home-blog-entry h3 a{font-size: 16px;line-height:25px;}
.cms-bar .home-blog-entry p{margin-top:20px;font-size:12px;line-height:25px;max-height: 75px;overflow:hidden;}
.delim{position: relative;height: 30px;padding-right: 10px;margin-right: 10px;border-right: 1px solid #e5e5e5;float:left;}
.cms-bar #main-wrap-left .home-small-entry a.fancyimg{float:left;}
.cms-bar .col-small{margin:0 0 15px;}
.cms-bar .col-left.s3 .col-small{margin:0 0 15px;}
.cms-bar .home-small-entry-wrap .col-small{margin:0;}
.cms-bar .col-small h3{height:25px;line-height:25px;overflow:hidden;}
.cms-bar .col-small h3 a{font-size: 16px;}
.cms-bar .col-small h3 a:hover{text-decoration: underline;}
.cms-bar .col-small p{font-size:12px;line-height:20px;height:40px;overflow:hidden;margin-top:5px;}
.cms-bar #main-wrap-left .col-right.s2 .col-small a.fancyimg,.cms-bar #main-wrap-left .col-left.s3 .col-small a.fancyimg,.cms-bar #main-wrap-left .s1 .col-small a.fancyimg{float:left;width:100px;margin:0 15px 0 0;max-height:75px;}
.cms-bar #main-wrap-left .col-right.s2 .col-small a.fancyimg img{height:75px;}
.cms-bar .col-left.s2 h3,.cms-bar .col-right.s3 h3{height:50px;}
/* Catlist style3 */
.cms-bar .col-left.s3{width:56%;float:left;}
.cms-bar .col-right.s3{width:44%;float:left;padding-left:20px;padding-bottom: 10px;}
.cms-bar .s3 .col-small .meta-views-float{display:none;}
.cms-bar #main-wrap-left .col-left.s3 .col-small a.fancyimg img{height:75px;}
/* Catlist style4 */
.cms-bar .col-left.s4{width:50%;padding-right:25px;float:left;padding-bottom:10px;}
.cms-bar .col-right.s4{width:50%;float:left;}
.cms-bar .col-left.s4 .thumb-title{position:relative;overflow:hidden;}
.cms-bar #main-wrap-left .col-left.s4 .thumb-title a{overflow:hidden;margin-bottom:0 !important;max-height:255px;}
.cms-bar .col-left.s4 .thumb-title a .thumb-img:hover img{-webkit-transform: scale(1);-moz-transform: scale(1);-ms-transform: scale(1);-o-transform: scale(1);}
.cms-bar .col-left.s4 .thumb-title h3{position:absolute;bottom:0;line-height:20px;background:rgba(0,0,0,0.8);text-align:center;width:100%;padding:5px 10px;margin-bottom: -50px;-webkit-transition: all 1s ease; -moz-transition: all 1s ease; transition: all 1s ease;max-height:50px;overflow:hidden;}
.cms-bar .col-left.s4 .thumb-title:hover h3{margin-bottom:0;}
.cms-bar .col-left.s4 .thumb-title h3 a{color:#fff;font-size:16px;}
.cms-bar .col-left.s4 .thumb-title h3 a:hover{color:#fff;}
.cms-bar .col-right.s4 .col-small h3 a:hover{text-decoration:underline;}
.cms-bar .col-right.s4 .col-small p{position:relative;height: 60px;}
.cms-bar .col-right.s4 .col-small p:before{/*content: "\f10d";color: #00a67c;*/font-size: 16px;font-style: normal;font-family: FontAwesome;position: absolute;left: 3px;top: 0;text-indent: 0;}
/* Catlist style5 */
.cms-bar .col-small .fancyimg span i,.stickys .stickys-two-col .col-small .fancyimg span i{width: 30px;height: 30px;margin: -15px 0 0 -15px;}
.cms-bar .col-small .fancyimg span i:before,.stickys .stickys-two-col .col-small .fancyimg span i:before{font-size: 16px;position: absolute;top: 8px;left: 8px;}
.stickys .stickys-one-col .col-small .fancyimg span i{width: 50px;height: 50px;margin: -25px 0 0 -25px;}
.cms-bar .s5 a.fancyimg,.cms-bar .s5 a.fancyimg span{max-height:175px !important;}
.cms-bar .s5 .col-small .fancyimg span i{display:none}
.cms-bar .s5 .col-small .thumb-img{margin-top:3px;}
.cms-bar .s5 .col-small h3{height: 50px;line-height: 25px;}
.cms-bar .s5 .col-small h3 a{font-size: 14px;}
.cms-bar .s5 .home-blog-entry h3{height: 50px;margin-bottom: 5px;}
.cms-bar .s5 .home-blog-entry h3 a{line-height: 25px;font-size: 16px;}
.cms-bar .s5 .home-blog-entry h3 a:hover{text-decoration: underline;}
.cms-bar .s5 .home-blog-entry p{margin-top:0;max-height: 80px;}
.span_1.home-blog-entry-thumb{box-shadow:none !important;}
.fancyimg{padding: 8px;background: #fff;display: block;box-sizing: border-box;-moz-box-sizing: border-box;-webkit-box-sizing: border-box;}
.fancyimg img {display: block;}
.s5.span_1_of_3 .home-blog-entry-text{padding: 10px 0 15px;}
/* Catlist style6 */
.cms-bar #main-wrap-left .col-up.s6 a.fancyimg{width:300px;float:left;margin: 0 25px 0 0;max-height:200px;}
.col-up.s6{width:100%;display:block;padding-bottom:20px;border-bottom: 1px solid #ddd;margin-bottom: 15px;}
.col-up.s6 h3{overflow:hidden;max-height:50px;}
.col-up.s6 h3 a{font-size:16px;line-height:25px}
.col-up.s6 h3 a:hover{text-decoration: underline;}
.cms-bar .col-up.s6 .home-blog-entry p{max-height: 125px;margin-top: 30px;}
.col-down.s6 .col-small{width:50%;float:left;position:relative;padding-right:10px}
.col-down.s6 .col-small a.fancyimg{width:100px !important;float:left !important;margin-right:15px;max-height:70px !important;}
.col-down.s6 .col-small h3{overflow:hidden;height:50px;line-height:25px;}
.col-down.s6 .col-small h3 a{font-size:14px;}
.col-down.s6 .col-small .postlist-meta{position:absolute;bottom:5px;margin-top:5px;width: auto;left:120px;}
/* Catlist style default */
.cms-bar #main-wrap-left .col-up.s0 a.fancyimg{width:150px;float:left;margin-right:15px;max-height:100px;}
.col-up.s0 h3{overflow:hidden;max-height:40px;line-height:20px;}
.col-up.s0 h3 a{line-height: 20px;}
.col-up.s0 p{margin-top:5px;font-size: 13px;line-height:20px;max-height: 60px;}
.col-down.s0 i {color:#ccc;margin-right:6px;}
.col-down.s0 h3{border-bottom:1px dotted #f5f5f5;padding-right:80px;overflow:hidden;position:relative}
.col-down.s0 h3,.col-down.s0 h3 a{font-size:14px;font-weight:normal;height:36px;line-height:36px;}
.col-down.s0 .home-smalllist-entry-text:hover a{padding-left:3px;}
.col-down.s0 .home-smalllist-entry .postlist-meta-time{float:none;color:#aaa;position:absolute;right:2px;top:0}
/* Category Blocks */
.blocks{margin-top:10px;}
#blocks-bar.two-col-container{padding-right:320px !important;margin-top: 10px;}
#blocks-bar #main-wrap-left{max-width:880px;padding-right:10px;}
#blocks-bar .bloglist-container{padding:0;background: transparent;border: 0;}
#blocks-bar .bloglist-container:hover{border:0;box-shadow: none;}
#blocks-bar #sidebar{width:320px;margin-right: -320px;}
#blocks-bar #sidebar .floatwidget-container{width:320px;}
#blocks-bar #sidebar input#subscribe{width:220px;}
#blocks-bar a.fancyimg{float:none;width:100%;}
#blocks-bar .span_1_of_3{padding-bottom:20px}
#blocks-bar .span_1_of_3 article{margin-left: 3px;margin-right: 3px;border: 1px solid #eaeaea;padding: 0 0 10px;}
/* Blocks ajax load more */
.ajax_btn{margin-top:100px;}
.aload,.bload,.aload_loading{text-align:center;display:none;}
.aload a,.bload a{border-radius:3px;display:inline-block;padding:20px 10px;font-size:14px;width:300px;}
.aload a{background:#35c273;color:#fff;}
.bload a,.bload a:hover{background:#ddd;color:#888;}
.aload a:hover{background:#46b175;color:#fff;}
/* Home Small List */
.home-small-entry-wrap{overflow: hidden;clear: both;background: #fff;padding-top: 10px;padding-bottom:10px;border-top: 2px solid #f5f5f5;margin-bottom: 20px;}
.home-small-entry-wrap .col{padding-bottom:0;}
.home-small-entry{margin-top:5px;}
.home-small-entry .postlist-meta{padding-left:5px;}
.span_1_of_3 .home-small-entry a.fancyimg, .span_1_of_4 .home-small-entry a.fancyimg{width: 60px !important;float: left;margin-left: 5px;margin-bottom: 0;}
.span_1_of_3 .home-small-entry a.fancyimg img, .span_1_of_4 .home-small-entry a.fancyimg img{height:50px;}
.span_1_of_3 .home-small-entry .home-small-entry-text, .span_1_of_4 .home-small-entry .home-small-entry-text{margin-left: 70px;padding: 0 5px 0 10px;}
.home-small-entry-text h3{font-size: 15px;height: 40px;overflow: hidden;}
.home-small-entry-text h3 a {font-size: 13px;line-height: 150%;font-weight: normal;/*color: #00a67c;*/}
.home-small-entry-text h3 a:hover{text-decoration: underline;}
.home-small-entry-text .postlist-meta {display: inline-block;margin-top: 0;}
.home-small-entry-text .line{margin:0 auto;}
.home-small-entry-text .postlist-meta-collect span{display: none;}
.span_1_of_3 a.fancyimg,.span_1_of_4 a.fancyimg{padding:0;max-height:185px;overflow:hidden;}
.span_1_of_3.masonry-box a.fancyimg,.span_1_of_4.masonry-box a.fancyimg,.span_1_of_3.masonry-box a.fancyimg span,.span_1_of_4.masonry-box a.fancyimg span{max-height:250px;}
.home-blog-entry-thumb{margin-bottom: 5px;}
.span_1 .home-blog-entry-text{padding:0;width: 100%;}
.span_1_of_3 .home-blog-entry-text,.span_1_of_4 .home-blog-entry-text{padding:10px 12px 15px;position: relative;}
.line{height: 1px;background: #e8e8e8;margin-left: auto;margin-right: auto;margin-top:8px;margin-bottom:8px;}
.ribbon{display:none;height: 41px;width: 100px;padding-right:20px;overflow:hidden;z-index: 99;position: absolute;color: #FFF;font-family: "Microsoft Yahei","微软雅黑",helvetica, Arial;font-weight: 500;font-size: 13px;line-height: 21px;margin-top: -30px;padding: 5px;margin-left: -22px;text-align: center;}
.ribbon-pink{background: url('images/ribbon-pink.png') no-repeat;background-size: 100% 41px;}
.ribbon-orange{background: url('images/ribbon-orange.png') no-repeat;background-size: 100% 41px;}
.ribbon-yellow{background: url('images/ribbon-yellow.png') no-repeat;background-size: 100% 41px;}
.ribbon-green{background: url('images/ribbon-green.png') no-repeat;background-size: 100% 41px;}
.ribbon-blue{background: url('images/ribbon-blue.png') no-repeat;background-size: 100% 41px;}
.ribbon-indigo{background: url('images/ribbon-indigo.png') no-repeat;background-size: 100% 41px;}
.ribbon-purple{background: url('images/ribbon-purple.png') no-repeat;background-size: 100% 41px;}
.span_1 .home-blog-entry-text h3{margin-bottom:10px;max-height: 60px;overflow: hidden;}
.span_1 .home-blog-entry-text h3 a{font-size:18px;line-height:30px;font-weight: normal;}
.home-blog-entry-text h3 a{font-size: 15px;}
.home-blog-entry-rand .home-blog-entry-text h3{height: 48px;overflow: hidden;}
.masonry-box{position:absolute;top:0;left:0;display:none;}
.masonry-box .home-blog-entry-rand .home-blog-entry-text h3{height:auto;margin-bottom:5px;}
.home-blog-entry-rand .home-blog-entry-text h3 a{font-weight: normal;line-height: 24px;}
.contentcms-entry-text h3{height:48px;overflow:hidden;}
.span_1 .home-blog-entry-text p {margin-top: 10px;font-size: 14px;line-height: 25px;white-space: normal;max-height: 100px;overflow:hidden;}
.span_1_of_3 .home-blog-entry-text p,.span_1_of_4 .home-blog-entry-text p {font-size: 12px;height:80px;overflow:hidden;line-height: 20px;}
.span_1_of_3.masonry-box .home-blog-entry-text p,.span_1_of_4.masonry-box .home-blog-entry-text p {height:auto;}
.span_1_of_3 .home-blog-entry-text h3 a,.span_1_of_4 .home-blog-entry-text h3 a{font-weight: normal;}
.home-blog-entry-meta{width:100%; border-top:1px solid #f0f0f0; padding:8px;overflow:hidden;}
.postlist-meta,.stickys-container .meta {width:100%; color:#aaa; font-size: 12px;line-height: 12px;line-height:16px}
.postlist-meta,.postlist-meta a,.stickys-container .meta,.stickys-container .meta a{font-family:consolas,"Microsoft YaHei","微软雅黑","Open Sans",Arial,SimSun,sans-serif;}
.contentcms-entry-text .postlist-meta{font-size:12px;}
.postlist-meta-author{float:left;margin-right: 10px;}
.span_1 .meta span{float:none !important;margin:0 10px 0 0 !important;color: #747F8C;font-size: 12px;}
.span_1 .meta span span{margin:0 !important;}
.span_1 .meta a{color: #747F8C;}
.span_1 .meta span i{margin-right:5px;}
.postlist-meta-time {float:left;}
.postlist-meta-tags {float:left; max-width:400px;overflow:hidden; margin-left: 20px;height: 16px;line-height: 16px;}
.postlist-meta-views {float:left;text-align:center; margin-left:20px;}
.span_1_of_3 .postlist-meta-views,.span_1_of_4 .postlist-meta-views{margin-left:0;}
.postlist-meta-comments {float:right;}
.postlist-meta .like-btn{cursor: pointer;}
.postlist-meta .like-btn.love-animate i{animation: heartbomb .8s; -moz-animation: heartbomb .8s; -ms-animation: heartbomb .8s; -webkit-animation: heartbomb .8s; -o-animation: heartbomb .8s;}
.postlist-meta .collect-no{cursor:pointer;}
.postlist-meta .collect.collect-animate i{animation: starrotate 1.5s; -webkit-animation: starrotate 1.5s; -ms-animation: starrotate 1.5s; -o-animation: starrotate 1.5s; -moz-animation: starrotate 1.5s;}
.postlist-meta .love-yes{cursor: default;}
.postlist-meta .love-yes i{color:#f35454;}
.postlist-meta .collect-yes i{color:#ff9933;}
/* Single post
/* ------------ */
#single-blog-wrap.container {border-radius:5px;padding-top:0;border-color: rgba(218,222,225,0.8); border-width:1px;margin-top: 10px;}
#single-meta{border-bottom: 1px dotted #d8d8d8;padding: 5px 0 10px; margin-bottom: 15px;}
#single-meta span{line-height: 160%;padding:3px;}
#single-meta span,#single-meta span a{font-size:14px;}
.single-meta-comments,.single-meta-views{float:right;}
.single-thumb{margin-bottom:10px;overflow: hidden;}
.single-thumb img{width: 100%;}
.single-text{line-height: 180%;color: #333;font-size: 16px;}
.content {width: 100%; background: #fff; font-size: 14px; padding: 10px 20px;font-family: "Microsoft YaHei","微软雅黑",Arial,"Open Sans",SimSun,sans-serif;}
.content h2 {margin: 10px 0 10px -25px;border-left:5px solid #888; padding:0 5px 0 20px; background:#fafafa;line-height:35px;}
.content h1,.content h3,.content h4,.content h5,.content h6{margin: 10px 0;}
.content p {text-indent:0;}
.content .single-text p {text-indent:2em;line-height: 180%;margin: 10px 0}
.content p a{text-decoration: none;border-bottom: 2px solid #eaeaea;margin: 0 5px;color:#333;}
.content p a:hover{text-decoration: none;border-color:#666669;color:#333;}
.content p a:after{content: ""; font:normal 12px/12px FontAwesome;padding-left: 3px;}
.single-thumb img{border-radius: 3px; box-shadow: 0 1px 4px rgba(0, 0, 0, 0.2);}
.content img{margin: 0 auto;display: block;}
.content blockquote{overflow:hidden;}
.single-text img{margin:20px auto;}
.single-text img.wp-smiley{margin:0;}
.single-text ul li{margin-left: 20px;}
.single-text ul li:before{content:"\f0da" ;font-family: FontAwesome;color:#4cc6a9;margin-right: 5px;}
#content-index-control{cursor: pointer; color: #f00;position: absolute;top:3px;right:5px;}
#content-index-wrap {float:right;position: relative;max-width: 280px;margin: 0 0 5px;background:#fff;font-size: 14px;}
#content-index {background:#F7F7F7;border: 1px solid #DEDFE1;float: right;padding: 0 6px 0 10px;line-height: 24px;margin-left:10px;min-width:120px;}
#content-index b {display: block;line-height: 30px;font-weight: bold;}
#index-ul {margin: 0;padding-bottom: 5px;border-top:1px dashed #DDDDDD}
#index-ul li {background: none repeat scroll 0 0 transparent;list-style-type: decimal;padding: 0;margin:3px 0 3px 20px;}
#index-ul li:before{content:"";}
#index-ul a{text-decoration:none;}
.centered{display: block;margin-left: auto;margin-right: auto;margin-bottom: 10px;}
.alignnone{margin:0 0 10px 0;display: inline;}
.alignleft {display:inline;float:left;margin: 0 10px 10px 0;}
.alignright {display:inline;float:right;margin:0 0 10px 10px;}
.aligncenter {clear:both;display:block;margin-left:auto;margin-right:auto;}
/* Post rating */
.rates {margin: 20px 0 20px;clear: both;}
.ratesdes {border-style: solid;border-width: 0 0 0 3px;padding: 5px 5px 5px 10px;}
.ratingCount,.ratingValue {font-weight:600px; font-weight:bold;}
.stars {cursor:pointer; color:#F03F3F; font-size:16px;}
.single-intro{background:#f5f5f5;}
.single-intro span{font-weight:bold}
.sg-dl {margin:20px 0 10px 0; text-align:center;}
.sg-dl .sg-dl-span{margin:0 auto;}
.sg-dl .sg-dl-span .demo {margin:0 10px;}
.sg-dl .sg-dl-span .dl-mail {}
.sg-dl .sg-dl-span .dl-mail input[type=text] {width:200px; border-radius:3px; font-size:14px;font-style:italic; line-height:14px; padding:6px 10px;}
.sg-dl .sg-dl-span .dl-mail button[type=button] {margin:0 5px; border-radius:3px; font-size:13px;font-style:italic; line-height:14px; padding:7px 12px 7px 10px; color: #fff;background: #F80000;background: -webkit-linear-gradient(top, #F80000, #B44C4C);progid: DXImageTransform.Microsoft.gradient(startcolorstr=#ffF80000,endcolorstr=#ffB44C4C,gradientType=0);cursor:pointer;}
.sg-dl .sg-dl-span .dl-mail button[type=button]:hover {opacity: 0.8; filter: alpha(opacity=80); -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=80)"}
.sg-dl .dl-terms {font-size:12px;margin-top: 10px;}
.sg-dl .dl-terms a{border-bottom:1px solid #00a67c;}
.sg-dl .dl-terms p{display: block; color:#f00; font-size:12px;line-height:20px; margin:0;}
.sg-dl .sg-dl-span .dl-link {}
.mail-dl-success i{margin:0 5px;}
.sg-dl p.mail-dl-success{font-style:italic; line-height:20px; padding:5px 20px; margin-bottom:10px;}
.sg-tag {margin: 15px 0;}
.sg-tag a {display:inline-block; color:#fff; font-size: 12px;border-radius: 3px; padding:5px 12px; margin:2px;background: #9f9f9f;-webkit-transition: all .3s ease-out;-moz-transition: all .3s ease-out;transition: all .3s ease-out;}
.sg-tag a:hover{color:#fff;background: #00a67c;}
.sg-tag a,.tags a{text-transform: capitalize;}
.sg-cp {border-radius: 3px; background:#fcf8e3; margin:10px 0; padding: 12px 20px 12px 40px; font-size: 15px;position:relative}
.sg-cp i{position:absolute;top:50%;left:10px;font-size:20px;line-height:20px;margin-top:-10px}
.sg-cp p {line-height: 25px;font-size: 13px;}
.sg-cp p a {text-decoration: none; outline: none; border: 0;}
.sg-cp p a:hover {text-decoration:underline;}
.sg-cp p a:after{content: "";}
.sg-author{padding: 15px 0;margin-top:20px;clear: both;background:#fbfbfb;position:relative}
.sg-author .img{display:inline-block;position:absolute;margin-left:20px;z-index:2;}
.sg-author img{box-shadow:none;width:100px;height:100px;}
.sg-author-info{min-height: 100px;position:relative;margin-left: 135px;}
.word{padding:5px 0;}
.authordes{padding: 10px 10px 10px 0;line-height:150%;overflow:hidden;min-height: 50px;}
.authorsocial a{padding:3px 4px;font-size:14px;line-height:18px;position:relative;}
.authorsocial i{font-size:16px;width:20px;height:18px;}
.authorsocial a:hover{background: #ddd}
.social-icon-wrap{margin-right: 5px;margin-bottom: 5px; -webkit-transition: opacity 0.4s; -moz-transition: opacity 0.4s; -o-transition: opacity 0.4s; transition: opacity 0.4s; display: inline-block;}
.as-img {background:#f5f5f5;text-align:center;display:inline-block;border-radius: 2px;white-space:nowrap;}
.as-home{color:#DADA0E;}
.as-home i,.as-donate i{margin-right:5px;}
.as-sinawb{color: #D52C2B;}
.as-qqwb{color: #0b8fba;}
.as-twitter{color: #2CBCC2;}
.as-googleplus{color: #498bf4;}
.as-weixin{color: #2FAF16;}
.as-donate{color: #34db77;}
#as-weixin-a{position: relative;}
#as-weixin-qr,#as-donate-qr{width: 130px; height: 130px; padding:5px; position:absolute; display: none; bottom: 60px; right:-25px; opacity: 1; background: #ddd; border-radius: 5px; border: 3px solid #ddd;}
.as-qq{color: #F887B0;}
.as-email{color: #834DD5;}
.wp-caption {max-width: 100%;padding: 4px;}
.wp-caption-text{text-align:center; margin-top:10px; font-size:16px;}
/* Post page links */
#article-page-links{text-align: center;color:#000;padding:10px 0}
#article-page-links a{text-decoration: none;display: inline-block;margin: 6px 3px;padding: 3px 10px;background: #65c0ef;color: #fff;line-height: 22px;-moz-border-radius: 3px;-khtml-border-radius: 3px;-webkit-border-radius: 3px;border-radius: 3px}
#article-page-links a:hover{background:#ccc;}
/* Relatedpost */
.relpost {margin-top:20px;}
.relpost ul{width:100%; overflow:hidden;}
.relpost ul li{width:25%; float:left;display:inline-block; padding:5px;}
.relpost-inner-pic{position:relative;max-height:135px;overflow:hidden;}
.relpost-inner-pic img{display:block;width:100%;border-radius:0;box-shadow:none;}
.relpost-inner-pic span {position:relative; opacity:0; filter: alpha(opacity=0); -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=0)"; background:rgba(0,0,0,0.3); width: 100%; height: 100%;float: left; position: absolute; top:0; left: 0; border-radius: 3px; -webkit-transition: all 450ms ease;-moz-transition: all .6s ease;-ms-transition: all .6s ease;-o-transition: all .6s ease;transition: all .6s ease;max-height: 135px;}
.relpost-inner-pic span:hover {display: block;opacity: 1;filter: alpha(opacity=100);-ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=100)";}
.relpost-inner-pic span i {width: 50px;height: 50px;margin: -25px 0 0 -25px;text-align: center; color: #6ab4ce;color: rgba(0,0,0,.5); position: absolute; top:50%; left: 50%; float: left; border-radius: 50px;background: rgba(255,255,255,0.8); padding: 9px;}
.relpost-inner-pic span i:before{font-size: 32px;height: 32px;width: 32px;}
.relpost-inner-text{font-size: 14px;text-align:center;padding:10px 0;}
/* Navigation */
.navigation {font-size: 14px;font-weight: bold; overflow: hidden; text-align: center; padding: 0 20px 20px; margin:10px -20px 20px;background:#fbfbfb;}
.navigation .navigation-left {float: left; text-align: left; position: relative; padding-left: 40px; width: 49%;}
.navigation .navigation-right {float: right; text-align: right; position: relative; padding-right: 40px; width: 49%;}
.navigation span {display: block; color: #aab2bd; margin-top: 20px; font-size: 12px;}
.navigation a {font-weight: normal;}
.navigation a:hover {text-decoration: underline;}
.navigation .navigation-left a:after {left: 0; content: '«';}
.navigation .navigation-right a:after {right: 0; content: '»';}
.navigation a:after {position: absolute; top: 34%; margin-top: 0; height: 22px; color: #ccc; font-size: 60px;line-height: 22px;}
/* Post Activity */
.content .sg-act {padding-top: 20px;height: 60px;font-size: 13px;}
.sg-act .share-btn{height:32px; -webkit-transition:background-color 0s;-moz-transition:background-color 0s; transition:background-color 0s; line-height: 32px; background:none; border:0px solid;border-radius:20px;position: relative; color:#333; float:left; padding:0px 16px 0px 36px;}
.sg-act .share-btn i{width:24px; height: 24px; position: absolute; left: 8px; top:4px; font-size:16px;line-height:24px;text-align:center;}
.sg-act .mark-like-btn {float: left;margin-bottom: 10px;}
.sg-act .mark-like-btn a {margin-right: 10px;}
.sg-act .collect{ border-color: #ff9933;cursor:pointer;color: #ff9933;}
.sg-act .collect i{font-size:18px;}
.sg-act .collect:hover{background-color:#ff9933; color:#fff;}
.sg-act .collect:hover a{color:#fff !important; opacity:1 !important;filter: alpha(opacity=100) !important;}
.sg-act .collect.collect-yes{cursor: default;color:#fff;background-color:#ff9933;white-space: nowrap;}
.sg-act .collect.collect-yes i{background-position: 2px -45px;}
.sg-act .collect.collect-animate i{animation: starrotate 1.5s; -webkit-animation: starrotate 1.5s; -ms-animation: starrotate 1.5s; -o-animation: starrotate 1.5s; -moz-animation: starrotate 1.5s;}
.sg-act .like-btn{ border-color: #f35454;cursor:pointer;color: #f35454;}
.sg-act .like-btn i{padding-top:1px;}
.sg-act .like-btn:hover{background-color:#f35454; color:#fff;}
.sg-act .like-btn:hover a{color:#fff !important;opacity:1 !important;filter: alpha(opacity=100) !important;}
.sg-act .like-btn.love-yes{cursor:default;background:#f35454; color:#fff;}
.sg-act .like-btn.love-animate i{animation: heartbomb .8s; -moz-animation: heartbomb .8s; -ms-animation: heartbomb .8s; -webkit-animation: heartbomb .8s; -o-animation: heartbomb .8s;}
.sg-act .weibo-btn{border-color: #e14d4c;color: #e14d4c;}
.sg-act .weibo-btn:hover{background-color:#e14d4c; color:#fff;}
.sg-act .weixin-btn{ border-color: #40b440;color: #40b440;}
.sg-act .weixin-btn:hover{background-color:#40b440; color:#fff;}
.sg-act .weixin-btn:hover a{color:#fff !important; opacity:1 !important; filter: alpha(opacity=100) !important;}
.sg-act .baidu-share .more-btn{border-color:#4593e4; color:#4593e4; height:32px; line-height: 32px;background-image: none !important;}
.sg-act .baidu-share .more-btn:hover a{color:#fff;}
.sg-act .baidu-share .more-btn:hover{background-color:#4593e4 !important;}
.sg-act .baidu-share{float:right !important; margin-bottom: 10px;}
.sg-act .baidu-share a{margin:0px 0px 0px 10px;font-family:"Microsoft YaHei","微软雅黑",Arial,"Open Sans",SimSun,sans-serif !important;}
.sg-act .baidu-share a:hover{color:#fff !important; opacity:1 !important;filter: alpha(opacity=100) !important;}
.bdshare_popup_box{display: none !important;}
.weixin-btn{position: relative;}
#weixin-qt{position: absolute; display: none; left:-55px; top:40px; width:260px; box-shadow: 0px 2px 3px #eee; z-index: 10; background: #fff; border:1px solid #e0e0e0;}
#weixin-qt img{display: block; float:left; width:120px;}
#weixin-qt span{width:0px; height: 0px; display: block; position: absolute; border:8px solid; border-color:transparent transparent #e0e0e0 transparent; top:-16px; left:60px;}
#weixin-qt-msg{line-height: 1.4; float:right; width:120px; padding:15px 15px 0 0;}
#weixin-qt-msg:hover{color:#333 !important;}
.content .weixin-btn:hover #weixin-qt-msg{color:#333;}
.more-btn .mobile-text{display:none;}
/* Pagination */
div.pagination {padding: 0px; margin: 25px 0 40px; text-align: center; font-size: 17px;line-height:17px; position:relative;}
.pagination .pg-filler-1 { width:35%;}
.pagination .pg-filler-2 { width:40%;}
.pagination .pg-item a, .pagination .pg-item .current,.pagination .pg-dots, .pagination .pg-item .disabled{display:inline-block; color:#666; padding:9px 13px; border-radius:3px; -webkit-border-radius:3px; -moz-border-radius:3px; text-decoration:none; margin:0 1px; min-width:10px; }
.pagination .pg-item a {-webkit-transition: background .2s linear;-moz-transition: background .2s linear;-ms-transition: background .2s linear;-o-transition: background .2s linear;transition: background .2s linear;-webkit-backface-visibility: hidden;-moz-backface-visibility: hidden;}
.pagination .pg-next { position:absolute; right:10px;}
.pagination .pg-prev { position:absolute; left:10px;}
.pg-nav-item { text-transform:uppercase;}
.pagination .pg-item .current, .pagination .pg-item a:hover { background:#5CBDE7; color:#fff;}
div.pagination span.current, div.pagination a {padding:0px;}
div.pagination a.navbutton {margin:0 2px;border: 1px solid #eaeaea;}
/* Page */
.pagesidebar{position: absolute;top: 0;left: 0;width: 200px;background-color: #fbfbfb;bottom: 0;}
.pagecontent{margin-left: 200px;min-height: 500px;border-left: 1px solid #eee;position: relative;margin-bottom: 15px;padding: 25px;}
.pagesider-menu a{font-size: 16px;line-height:20px;padding: 12px 20px;color: #888;cursor: pointer;overflow: hidden;border-bottom: 1px solid #eee;display: block;}
.pagesider-menu a:hover {background-color: #f7f7f7;color: #666;text-decoration:none;}
#page-sort-menu-btn{display:none}
.pagesider-menu li.active a, .pagesider-menu li.current_page_item a, .pagesider-menu li.current-menu-item a {color: #fff;background-color: #61b3e6;}
.page-links{margin: 20px 0;}
.page-links ul{margin-left: -10px;margin-right:-10px;}
.page-links li {display: inline-block; width: 25%;text-align: center;font-family:consolas,"Microsoft YaHei","微软雅黑",Arial,"Open Sans",SimSun,sans-serif}
.page-links li div{background: #f9f9f9;margin:10px;padding:10px;position:relative;border: dashed 1px #ccc;}
.page-links img{width: 30px; height: 30px; box-shadow: none; margin-right: 10px;vertical-align: bottom;display: inline-block;position:absolute;bottom:-5px;left:50%;margin-left:-10px;margin-bottom:-10px;border-radius: 50%;padding: 1px;border: 1px solid #bbb;background: #fff;-webkit-transition: all 0.5s ease;-moz-transition: all 0.5s ease;transition: all 0.5s ease}
.page-links li div:hover img, .page-links img:hover {transform: rotate(360deg);-webkit-transform: rotate(360deg);}
.page-links li p{border-top: 1px solid #ddd;margin-top: 3px;margin-bottom: 10px;padding-top: 3px;height: 40px;line-height:20px;overflow: hidden;font-size: 12px;color: #999;}
.page-links a {font-size: 13px;line-height: 20px; color:#666;}
.page-links a:hover{text-decoration:none;color:#61b3e6}
.links-page-content{line-height: 180%;}
.links-page-content > ul{margin: 20px 0 !important;}
.links-page-content > ul li{padding-left: 10px;}
.links-page-content > ul li:before{content:"\f0a4" ;font-family: FontAwesome; font-size: 12px;margin-right: 6px; color: #222; display: inline-block!important; width: 1em; text-align: center;}
/* 404 page */
body.error404 .main{margin:0 auto;width:440px;height:350px;position:relative;margin-top:70px;font-size:14px;}
.holmes-bear-wrap{position:absolute;background:url('images/404.png') no-repeat 0 0 transparent;width:137px;height:234px;left:0;top:0;}
.error-wrap{position:absolute;right:0;top:45px;}
.error-text-title-wrap{font-weight:bold;font-size:14px;}
body.error404 .clearfix{display:block;}
body.error404 .clearfix:after{content:".";display:block;height:0;clear:both;visibility:hidden;}
.error-number{font-weight:normal;font-size:60px;color:#00aeef;font-style:normal;float:left;display:inline;font-family:Arial;}
.error-text-title{float:left;margin-top:22px;width:122px;display:inline;line-height:16px;}
.error-text-content{color:#333;padding:10px 0;width:280px;line-height:14px;}
.handle-way-list{color:#666;margin-top:20px;margin-left:5px;list-style:none;}
.handle-way-list li{line-height:2;}
.handle-way-list a{color:#06C;text-decoration:none;}
.error-search{position:absolute;bottom:0;width:100%;text-align:center;}
.error-search input{width:250px;height:35px;padding:0 10px;line-height:35px;border:1px solid #ddd;box-sizing:border-box;}
.error-search input:focus{outline:none;border-color:#ddd;border-color:rgba(82,168,236,.8);-webkit-box-shadow:0 0 8px rgba(82,168,236,.6);box-shadow:0 0 8px rgba(82,168,236,.6);}.error-search button{height:35px;width:60px;background:#00aeef;color:#fff;border:0;cursor:pointer;}
body.error404 .footer{margin:0 auto;font-size:14px;font-family:'Microsoft Yahei';arial;text-align:center;color:Gray;margin:50px 0;}
body.error404 .footer a{font-size:14px;}
body.error404 #footer-copyright a:hover{color:initial;}
/* User page */
#author-page .pagecontent{margin-bottom:0}
.user-basic-info{margin:10px;}
.user-avatar{float:left;margin-right:10px;width:80px;height:80px;}
h4.user-display-name{font-size:18px;}
.user-display-name small {font-size: 12px;margin: 0 5px;}
.user-display-name small a{opacity:0.8;filter: alpha(opacity=80);font-weight:normal;}
.user-display-name small a:hover{text-decoration:underline;opacity:1;filter: alpha(opacity=100);}
.user-register-time{margin:5px 0;font-size:12px;}
.user-register-time span{margin: 0 5px;background: #f5f5f5;padding: 2px 3px;}
.user-msg {padding: 0;margin: 0;list-style: none;}
.user-msg p{margin:0 0 10px;}
.user-msg .message-content{background: #f8f8f8;padding: 8px 10px;color: #39495a;line-height: 150%;}
.user-msg .message-content p{padding:5px 10px !important;background:transparent !important;}
.message-content img.avatar{margin-right: 5px;}
.user-msg p.info{font-style: italic;color: #bbb;font-size: 12px;margin-bottom: 0;}
.user-msg li{padding: 0 5px;margin-bottom: 10px;line-height: 32px;border-bottom: 1px solid #eee;color: #888;font-size: 13px;}
.user-msg li.tip,.site-order-list li.tip{line-height: 32px;padding: 0 10px;border: 0;background: #f8f8f8;margin: 20px 0;border-radius: 3px;}
#author-page .archive{border: 0;box-shadow: none;border-radius: 0;border-bottom: 1px solid #eee;margin-bottom: 30px;}
#author-page .archive.thumb{padding-right:250px;position:relative;}
#author-page .archive.thumb a.fancyimg{width:240px;height:160px;position:absolute;top:0;right:0}
#author-page .archive.thumb p{min-height:80px;}
#author-page .archive h3{white-space: nowrap;text-overflow: ellipsis;-o-text-overflow: ellipsis;overflow: hidden;margin: 10px 0 15px;line-height: 34px;}
#author-page .archive h3 a{font-weight:normal;}
#author-page .archive .postlist-meta{overflow:hidden;color: #999;font-size: 12px;padding-bottom:5px;}
#author-page .archive .postlist-meta .collect-yes,#author-page .archive .postlist-meta .love-yes{background-color:initial;color:#999;}
.archive-excerpt{font-size: 14px;line-height: 24px;overflow: hidden;margin:0 0 10px;}
p.archive-excerpt{text-indent:2em;}
.archive .postlist-meta-category a:hover{text-decoration: underline;}
#author-page .archive.thumb .item{float:left !important;margin-left:20px;display:inline-block;}
#author-page .archive.thumb .item:first-child{margin-left:0;}
#author-page .archive div.pagination a.btn{padding: 6px 12px !important; border: 1px solid transparent !important;}
#author-page .form-group a.btn:hover{color:#fff;}
#author-page .form-group{margin-bottom:15px;}
.panel {margin-bottom: 20px;background-color: #fff;border: 1px solid transparent;border-radius: 4px;-webkit-box-shadow: 0 1px 1px rgba(0,0,0,.05);box-shadow: 0 1px 1px rgba(0,0,0,.05);}
.panel-danger {border-color: #ebccd1;}
.panel-success {border-color: #B1E4B1;}
.panel-heading {padding: 10px 15px;border-bottom: 1px solid transparent;border-top-left-radius: 3px;border-top-right-radius: 3px;}
.panel-danger>.panel-heading {color: #a94442;background-color: #f2dede;border-color: #ebccd1;}
.panel-success>.panel-heading {color: #44a042;background-color: #CEFACE;border-color: #B1E4B1;}
.panel-body {padding: 15px;}
.panel-body p{margin: 0 0 10px;}
.radio-inline, .checkbox-inline {display: inline-block;padding-left: 20px;padding-right:20px;margin-bottom: 0;font-weight: 400;vertical-align: middle;cursor: pointer;}
.panel-body input[type=radio], .panel-body input[type=checkbox] {margin: 4px 10px 0 0;line-height: normal;margin-left: -20px;}
.panel-body label{max-width: 100%;}
.alert-success {color: #3c763d;background-color: #dff0d8;border-color: #d6e9c6;}
.alert {padding: 15px;margin-bottom: 20px;border: 1px solid transparent;border-radius: 4px;}
.form-inline .form-group {display: inline-block;margin-bottom: 0;vertical-align: middle;}
.form-inline .input-group {display: inline-table;vertical-align: middle;position: relative;border-collapse: separate;}
.input-group-addon {padding: 6px 12px;font-size: 14px;font-weight: 400;line-height: 1;color: #555;text-align: center;background-color: #f5f5f5;border: 1px solid #ccc;border-radius: 4px;display: table-cell;white-space: nowrap;vertical-align: middle;}
.input-group .form-control:last-child{border-top-left-radius: 0;border-bottom-left-radius: 0;}
.input-group .form-control {display: table-cell;position: relative;z-index: 2;float: left;margin-bottom: 0;}
.input-group-addon:first-child {border-right: 0;border-top-right-radius: 0;border-bottom-right-radius: 0;}
.help-block {display: block;margin-top: 5px;margin-bottom: 10px;color: #737373;}
p.help-block{margin-top:10px;}
.btn-default:hover, .btn-default:focus, .btn-default:active, .btn-default.active, .open>.dropdown-toggle.btn-default {color: #333;background-color: #e6e6e6;border-color: #adadad;}
button[disabled],html input[disabled]{cursor:default}
.credit-table,.promote-table,.orders-table {margin: 15px 0;width: 100%;max-width: 100%;border-spacing: 0;border-collapse: collapse;}
.promote-table,.orders-table{text-align:center;}
.table-bordered {border: 1px solid #ddd;}
.table>caption+thead>tr:first-child>th, .table>colgroup+thead>tr:first-child>th, .table>thead:first-child>tr:first-child>th, .table>caption+thead>tr:first-child>td, .table>colgroup+thead>tr:first-child>td, .table>thead:first-child>tr:first-child>td {border-top: 0;}
.table>thead>tr>td.active, .table>tbody>tr>td.active, .table>tfoot>tr>td.active, .table>thead>tr>th.active, .table>tbody>tr>th.active, .table>tfoot>tr>th.active, .table>thead>tr.active>td, .table>tbody>tr.active>td, .table>tfoot>tr.active>td, .table>thead>tr.active>th, .table>tbody>tr.active>th, .table>tfoot>tr.active>th {background-color: #f5f5f5;}
.table-bordered>thead>tr>th, .table-bordered>thead>tr>td {border-bottom-width: 2px;}
.table-bordered>thead>tr>th, .table-bordered>tbody>tr>th, .table-bordered>tfoot>tr>th, .table-bordered>thead>tr>td, .table-bordered>tbody>tr>td, .table-bordered>tfoot>tr>td {border: 1px solid #ddd;}
.table>thead>tr>th {vertical-align: bottom;border-bottom: 2px solid #ddd;}
.table>thead>tr>th, .table>tbody>tr>th, .table>tfoot>tr>th, .table>thead>tr>td, .table>tbody>tr>td, .table>tfoot>tr>td {padding: 8px;line-height: 1.42857143;vertical-align: top;border-top: 1px solid #ddd;}
.credit-table th {text-align: left;font-weight: bold;}
.credit-table td, .credit-table th {display: table-cell;vertical-align: inherit;color:#333;}
.pull-left {float: left!important;}
.pull-right{float: right !important;}
.content .user-msg p a:after{content:"" !important;}
.content .user-msg p a{border:none !important;}
.content .user-msg p a:hover{text-decoration:underline;}
.form-control {display: block;width: 100%;height: 34px;padding: 6px 12px;font-size: 14px;line-height: 1.42857143;color: #555;background-color: #fff;background-image: none;border: 1px solid #ccc;border-radius: 4px;-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);box-shadow: inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;}
.form-control:focus {border-color: #66afe9;outline: 0;-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);box-shadow: inset 0 1px 1px rgba(0,0,0,.075),0 0 8px rgba(102,175,233,.6);}
textarea.form-control{height:auto;}
#author-profile {width: 100%;line-height: 26px;background: #f8f8f8;color: #555;padding:5px;border-radius:3px;}
#author-profile .title {width: 80px;text-align: right;}
#author-profile tr:first-child td {border: 0;}
#author-profile tr td:last-child {color:#aaa;}
#author-profile td {padding: 6px 10px;}
.page-header{margin: 20px 0;padding-bottom: 0px;border-bottom: 1px solid #eee;}
#author-page .page-header small{font-size:12px;color:#aaa;font-weight:normal;}
.form-horizontal .control-label {text-align: left;padding-top: 7px;margin-bottom: 0;}
.col-sm-3 {width: 25%;position: relative;min-height: 1px;padding-right: 15px;padding-left: 15px;float:left;}
.col-sm-9 {width: 75%;float:left;}
.col-sm-offset-3 {margin-left: 25%;}
.form-horizontal .form-group{margin-bottom:15px;}
.form-horizontal .radio, .form-horizontal .checkbox {min-height: 27px;}
.form-horizontal .radio, .form-horizontal .checkbox, .form-horizontal .radio-inline, .form-horizontal .checkbox-inline {padding-top: 7px;margin-top: 0;margin-bottom: 0;}
.form-control-static {padding-top: 7px;padding-bottom: 7px;margin-bottom: 0;}
.clearfix:before,.clearfix:after,.content:before,.content:after,.form-group:before,.form-group:after,.user-msg p:before,.user-msg p:after,#author-page:before, #author-page:after{content: " ";display: table;clear:both;-webkit-box-sizing: border-box;-moz-box-sizing: border-box;box-sizing: border-box;}
#author-page .radio img{vertical-align: middle;}
input[name="post_title"]{margin-bottom:10px;}
select[name="post_cat[]"]{margin:10px 0;}
.text-right {text-align: right;}
select[name="post_status"] {height: 34px;padding: 6px 12px;font-size: 14px;line-height: 1.42857143;margin-top:5px;margin-bottom:5px;color: #555;background-color: #fff;background-image: none;border: 1px solid #ccc;border-radius: 4px;-webkit-box-shadow: inset 0 1px 1px rgba(0,0,0,.075);box-shadow: inset 0 1px 1px rgba(0,0,0,.075);-webkit-transition: border-color ease-in-out .15s,-webkit-box-shadow ease-in-out .15s;-o-transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;transition: border-color ease-in-out .15s,box-shadow ease-in-out .15s;}
#wrap #wp-link-wrap{font-size:14px;}
#wrap #wp-link-wrap span.screen-reader-text{position: absolute;margin: -1px;padding: 0;height: 1px;width: 1px;overflow: hidden;clip: rect(0 0 0 0);border: 0;}
#wrap #wp-link-wrap input[type=text],#wrap #wp-link-wrap input[type=search],#wrap #wp-link-wrap input[type=submit]{height:25px;padding:5px;line-height:15px;font-size:12px;}
#author-page .archive .entry-meta{overflow:hidden;color: #999;font-size: 12px;margin-bottom:10px;padding-bottom:5px;}
.user-msg .unread p.info span.tag{color:#08cf08;}
#edit-avatar{color: #d9534f;cursor: pointer;font-size: 14px;}
#upload-input{margin:10px 0;display: none}
#upload-input span{cursor: pointer;background: #E9E9E9;padding: 6px 10px;line-height: 100%;font-size: 14px;}
#upload-avatar-msg{display: none;font-size: 14px;color:#f00;}
#author-page .pay-history #the-list{font-size: 12px;}
/* Archives */
#archives{font-size: 14px;}
a#al_expand_collapse:after{content: "";}
#archives h3{margin: 15px 0;padding-left: 10px;border-bottom: 1px solid #f2f2f2;color: #666;font-size: 18px;line-height: 28px;}
#archives p{margin: 5px 0 10px;color: #666;text-indent: 2em;font-size: 14px;line-height: 180%;}
#archives em{padding: 0 2px;color: #a40000;}
#archives ul{padding: 5px 10px;}
#archives ul li{list-style: circle;margin-left: 20px;line-height: 200%;}
#al_expand_collapse,#archives span.al_mon{cursor: pointer;}
/* Articles */
#guide{padding-top: 15px;}
#guide .group {height: 50px;border-bottom: 1px solid #d8d8d8;}
#guide .group ul li {float: left;position: relative;margin-right: 20px;font-size: 14px;height: 50px;}
#guide .group ul li a {color: #666;display: block;padding: 11px 10px 16px 10px;}
#guide .group:after {content: "";display: block;height: 0;clear: both;visibility: hidden;}
#guide .group ul li a.current {-webkit-transition: none;-moz-transition: none;-o-transition: none;transition: none;width: 130px;text-align: center;}
#guide .group ul li:hover a.current {box-shadow: 1px 1px 1px rgba(0,0,0,0.2);background: #fff;border-radius: 6px 6px 0 0;}
#guide .group ul li a i {margin-right: 5px;}
#guide .group ul li a i.arrow {margin: 0 0 0 10px;color: #999;-webkit-transition: transform .2s linear;-moz-transition: transform .2s linear;-o-transition: transform .2s linear;transition: transform .2s linear;}
#guide .group ul li .sub {display: none;position: absolute;left: 0;top: 44px;z-index: 99;width: 130px;box-shadow: 1px 2px 2px rgba(0,0,0,0.2);background-color: #fff;overflow: hidden;border-radius: 0 0 6px 6px;}
#guide .group ul li:hover .sub{display:block;}
#guide .group ul li .sub li {float: none;margin: 0;font-size: 12px;height: inherit;}
#guide .group ul li .sub li a, #guide .group ul li .sub li.cat-item-none {padding: 12px 10px;text-align:center;}
#guide .group ul li .sub li a:hover {background-color: #ddd;color: #fff;}
/* Sidebar */
#sidebar {position:relative; width:360px; margin-right:-360px;float:right;}
/* Ad */
#loopad.container{width: 100%;text-align: center;overflow: hidden;margin-right: 10px; margin-bottom: 10px;background: #fff;max-width: 830px;}
#header-banner {padding: 15px 0 5px;text-align: center;}
#bottom-banner {padding: 20px 0;text-align: center;}
#singletop-banner,#singlethumb-banner,#singlebottom-banner,#cmnt-banner1,#cmnt-banner2 {background: #fff;text-align: center;margin: 10px 0;}
#singletop-banner img,#singlethumb-banner img,#singlebottom-banner img,#cmnt-banner1 img,#cmnt-banner2 img{box-shadow:none;border-radius:0;}
/* Footer wrap */
.separator{width: 100%;height: 5px;background: url('images/separator.png') repeat-x;}
#footer-widgets .widget ::selection{background: gray;color: white;text-shadow: none;}
#footer-wrap {background:#333;margin-bottom:0; margin-top:0;position:relative; /*min-height: 200px;*/}
.layout-wrap {margin:auto; max-width:1200px; position:relative; width:100%; overflow: hidden;padding:20px 0;}
#footer-nav-left {width: 50%; float: left; overflow: hidden; height: 45px;}
#footer-nav-right {width: 46%; float: right; overflow: hidden;}
#footermenu {overflow: hidden; padding: 2px 0;}
#footer-info { padding:20px 0 25px;}
#footer-nav-wrap { position:relative; width:100%; left:0; bottom:0; background:#2e2e2e;border-top: 1px solid rgba(255,255,255,0.08);}
#footer-nav-links {position: relative; float: left; font-size: 14px;}
#footer-nav-links li { float:left; margin-right:10px; line-height: 16px;}
#footer-nav-links a {color:#777; text-decoration: none;-webkit-transition: color .2s linear;-moz-transition: color .2s linear;-ms-transition: color .2s linear;-o-transition: color .2s linear;transition: color .2s linear;}
#footer-nav-links a:hover ,#footer-copyright a:hover {border-bottom:1px dotted #f5f5f5; color:#f5f5f5;}
#footer-copyright {margin-top:6px; font-size:13px;color:#777; line-height: 16px; padding: 2px 0;}
#footer-copyright::selection,#footer-copyright a::selection {color:#fff;}
#footer::selection {background: gray;color: white;text-shadow: none;}
#footer-copyright a {color:#777; text-decoration:none;}
#footer-widgets { padding:20px 0 25px; overflow:hidden;}
.footer-widgets-one-full {width:100%; float: left;}
.footer-widgets-one-half {width:50%; float: left;}
.footer-widgets-one-third {width:33.3%; float: left;}
.footer-widgets-one-fourth {width:25%; float: left;}
#footer-links-icons {height: 45px; float: right;}
#footer-links-icons span:first-child {margin-left: 0;}
#footer-links-icons span {display: inline-block; color: #777; font-size: 20px;margin-left: 25px;}
#footer-links-icons span a {display: block; color: #777; text-align: center; font-weight: 500; font-size: 12px;}
#footer-links-icons span a:hover span, #footer-links-icons span a:hover{color: #A17820; -webkit-transition: all .5s ease;-moz-transition: all .5s ease;-ms-transition: all .5s ease;-o-transition: all .5s ease;transition: all .5s ease;}
.tinicon-qiniu{width: 26px;height: 20px;background: url(images/qiniu.png);transition:none !important;-webkit-transition:0;-moz-transition:0;}
.footer-qiniu-link:hover .tinicon-qiniu{background: url(images/qiniu.png) 0 -20px;}
/* Tooltip */
.tooltip-trigger{position:relative;text-indent: 0}
.tooltip {position: absolute;z-index: 99;display: block;visibility: visible;font-size: 12px;line-height: 20px;opacity: 0;filter: alpha(opacity=0);white-space:pre;}
.tin .tooltip-inner{background:#000;background:rgba(0,0,0,.9);color:#fff;}
.tin .tooltip.top .tooltip-arrow{border-top-color:#000;border-top-color:rgba(0,0,0,.9);}
.tooltip.in {opacity: 0.8;filter: alpha(opacity=80);}
.tooltip.top {margin-top: -3px;padding: 5px 0;}
.tooltip.right {margin-left: 3px;padding: 0 5px;}
.tooltip.bottom {margin-top: 3px;padding: 5px 0;}
.tooltip.left {margin-left: -3px;padding: 0 5px;}
.tooltip-inner {max-width: 200px;padding: 5px 8px;color: #ffffff;text-align: center;text-decoration: none;background-color: #000000;border-radius: 4px;}
.tooltip-arrow {position: absolute;width: 0;height: 0;border-color: transparent;border-style: solid;}
.tooltip.top .tooltip-arrow {bottom: 1px;left: 50%;margin-left: -5px;border-width: 5px 5px 0;border-top-color: #000000;}
.tooltip.top-left .tooltip-arrow {bottom: 0;left: 5px;border-width: 5px 5px 0;border-top-color: #000000;}
.tooltip.top-right .tooltip-arrow {bottom: 0;right: 5px;border-width: 5px 5px 0;border-top-color: #000000;}
.tooltip.right .tooltip-arrow {top: 50%;left: 0;margin-top: -5px;border-width: 5px 5px 5px 0;border-right-color: #000000;}
.tooltip.left .tooltip-arrow {top: 50%;right: 0;margin-top: -5px;border-width: 5px 0 5px 5px;border-left-color: #000000;}
.tooltip.bottom .tooltip-arrow {top: 0;left: 50%;margin-left: -5px;border-width: 0 5px 5px;border-bottom-color: #000000;}
.tooltip.bottom-left .tooltip-arrow {top: 0;left: 5px;border-width: 0 5px 5px;border-bottom-color: #000000;}
.tooltip.bottom-right .tooltip-arrow {top: 0;right: 5px;border-width: 0 5px 5px;border-bottom-color: #000000;}
/* Input */
input[type="search"] {display: block;width: 100%;padding-left: 10px;padding-right:32px;line-height:40px;-moz-box-sizing: border-box; -webkit-appearance: none !important;-webkit-box-sizing: border-box;-webkit-writing-mode: horizontal-tb;background: #fff;border: 1px solid #ddd;box-sizing: border-box;}
input[type="text"] {border: 1px solid #ddd; -moz-box-sizing: border-box; -webkit-appearance: none !important; -webkit-box-sizing: border-box; -webkit-writing-mode: horizontal-tb; background: #fff;}
input[type="search"]:focus,input[type="text"]:focus,input[type="email"]:focus{outline: none;border-color: #ddd;border-color: rgba(82,168,236,.8) !important;-webkit-box-shadow: 0 0 8px rgba(82,168,236,.6);box-shadow: 0 0 8px rgba(82,168,236,.6);}
input::-webkit-search-cancel-button{display: none;}
input::-ms-clear{display: none;}
/* ------------------------------------------------------------------------- *
* Widgets
/* ------------------------------------------------------------------------- */
.floatwidget-container{width:360px;display:none;position:fixed;top:80px;z-index:100;}
.floatwidget > div {margin-bottom: 10px;}
.floatwidget h3{margin: 0 !important;}
#sidebar .widget {padding: 10px;margin-bottom: 10px; border-radius: 2px; background: #fff; border: 1px solid #eaeaea;}
.widget { color: #777; font-size: 14px;font-weight: 400; overflow: hidden; padding: 10px; }
.widget a {font-size: 14px;}
.widget-text iframe{width: 100% !important;}
#footer .widget,#footer .widget a{color:#666;font-size:14px;-moz-transition: ease-in-out 0.5s;-webkit-transition: ease-in-out 0.5s;-o-transition: ease-in-out 0.5s;
-ms-transition: ease-in-out 0.5s;transition: ease-in-out 0.5s;}
#footer .widget a:hover { color: #fff; }
.widget > h3 { font-size: 16px;font-weight: 600; text-transform: uppercase; margin-bottom: 6px; padding:5px 10px}
#footer .widget > h3 {font-size:14px;padding:5px 0;}
#sidebar .widget > h3, #sidebar .floatwidget h3, .multi-border-hl,#ft-wg-sr .widget > h3{font-size: 18px;font-weight: normal;text-transform: uppercase;margin: 0;padding: 5px 0 5px;border-bottom: 2px solid #eee;}
#sidebar .widget > h3 span,#sidebar .floatwidget h3 span, .multi-border-hl span,#ft-wg-sr .widget > h3 span{padding: 0 0 5px 0;border-width: 0 0 2px 0;border-style:solid;}
#sidebar .widget > h3,#ft-wg-sr .widget > h3{margin-bottom:5px;}
#sidebar .widget > h3,#sidebar .widget > h3 a,#sidebar .widget > h3 a:hover,#ft-wg-sr .widget > h3{ color: #333; text-decoration: none;}
#footer-widgets .widget > h3,#footer-widgets .widget > h3 a,#footer-widgets .widget > h3 a:hover {text-decoration: none;}
.widget > h3 a img { display: none; float: left; margin: 3px 7px 0 0; }
.widget select { border: 1px solid #ddd; color: #666; font-size: 15px;padding: 7px; width: 100%; max-width: 100%; }
#footer-widgets .widget > h3,#footer-widgets .widget > h3 span {color: #666;font-size: 18px;font-weight:normal;}
.widget > ul li a {text-decoration: none;}
/* widgets : icons
/* ------------------------------------ */
.widget > ul li:before,.widget > ul li a:before,.widget > div > ul li a:before,.widget_calendar caption:before { font-family: FontAwesome; font-size: 12px;margin-right: 10px; color: #ccc; display: inline-block!important; width: 1em; text-align: center; }
.widget > ul li a:hover:before { color: #999; }
.widget_archive > ul > li a:before { content: "\f073"; }
.widget_categories > ul > li a:before { content: "\f07c"; }
.widget_links > ul > li a:before { content: "\f08e"; }
.widget_meta > ul > li a:before { content: "\f0da"; }
.widget_recent_comments > ul > li:before,.widget_recent_comments > ul > li:before { content: "\f075"; }
.widget_recent_entries > ul > li a:before { content: "\f14b"; }
.widget_calendar caption:before { content: "\f073"; }
.widget_pages ul li a:before,.widget_nav_menu ul li a:before { content: "\f068"; }
/* widget : calendar
/* ------------------------------------ */
.widget_calendar a { font-weight: 600; color: #e8554e; }
.widget_calendar a:hover { color: #444!important; }