-
Notifications
You must be signed in to change notification settings - Fork 0
/
base.css
1936 lines (1911 loc) · 165 KB
/
base.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: Modown
Theme URL: http://www.mobantu.com/7191.html
Description: WordPress资源下载主题
Author: 模板兔
Author URI: http://www.mobantu.com
*/
@charset "UTF-8";
*{margin:0;padding:0;list-style:none;box-sizing:border-box;word-break: break-all;}
html,body,div,span,object,iframe,h1,h2,h3,h4,h5,h6,p,blockquote,pre,a,abbr,acronym,address,big,cite,code,del,dfn,em,img,ins,kbd,q,s,samp,small,strike,strong,tt,var,b,i,dl,dt,dd,ol,ul,li,fieldset,form,label,legend,table,caption,tbody,tfoot,thead,tr,th,td{margin:0;padding:0;border:0;outline:0;font-size:100%;vertical-align:baseline;background:transparent}
html{font-size:75.0%}
html,body{min-height:100%}
body{line-height:1}
a{color:#333}
a:hover{color:#ff5f33;text-decoration:none}
a:focus,a:visited,a:active{text-decoration:none;outline:0}
.btn:active,.btn:focus{outline:0}
.btn{background:#ff5f33;color:#fff;border-radius:2px;padding:8px 25px;text-align:center;border:none;cursor:pointer}
.btn:hover{opacity: .9;}
input,button,textarea,select{font-size:100%}
ol,ul{list-style:none}
table{border-collapse:collapse;border-spacing:0}
ins{text-decoration:none}
del{text-decoration:line-through}
blockquote,q{quotes:none}
blockquote:before,blockquote:after,q:before,q:after{content:"";content:none}
a{text-decoration:none}
fieldset,img{border:0}
img{max-width:100%;max-height:100%;vertical-align:middle}
input,button,textarea,select,optgroup,option{font-family:inherit;font-size:inherit;font-style:inherit;font-weight:inherit}
.clearfix:after{content:"";height:0;clear:both;display:block;visibility:hidden}
.clearfix{}
.noscroll{height:100%;overflow:hidden;}
:link,:visited{text-decoration:none}
:focus{outline:0}
::-webkit-scrollbar {width:6px;height:6px}
::-webkit-scrollbar-thumb {background-color: #c7c7c7;border-radius:0;}
input[type="submit"],input[type="reset"],input[type="button"],button {-webkit-appearance: none;}
body{background:#fff;position:relative;margin-top:70px;font-size:15px;line-height:1.5;font-family: "Microsoft Yahei", -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Ubuntu, "Helvetica Neue", Helvetica, Arial, "PingFang SC", "Hiragino Sans GB","Microsoft Yahei UI", "Source Han Sans CN", sans-serif;color:#333}
body.single, body.page{background: #f9f9f9}
body.home, body.page-template-all, body.page-template-waterfall, body.page-template-all-vip, body.page-template-tuan{background: #fff}
.main, .woocommerce #main{padding-top:40px}
body.home .main{padding-top: 35px;}
body.home .banner-slider + .main, body.home .banner + .main{padding-top: 0}
body.page-template-cms .main{padding-top: 0;}
.container{position:relative;margin:0 auto;max-width:1200px}
.single .main .container,.page-template-default .main .container,.post-type-archive-blog .main .container,.page-template-tougao .main .container{max-width:1200px !important}
body.home .modown-uisdc-widgets + .main, body.home .modown-uisdc-widgets + .main {padding-top: 0;}
.content-wrap{width:100%;float:left;margin:0 0 30px 0;position: relative;}
.content{position:relative}
.page-template-guestbook .content{max-width:1000px;margin:-60px auto 80px;box-shadow: rgba(0, 0, 0, 0.03) 0px 16px 25px 0px;}
.page-template-guestbook .content:before {content: "";position: absolute;bottom: -30px;left: 35px;right: 35px;height: 200px;box-shadow: rgba(35, 49, 64, 0.09) 0px 15px 23px 0px;z-index: -1;border-radius: 3px;}
.page-template-guestbook .content:after {content: "";position: absolute;bottom: -55px;left: 80px;right: 80px;height: 200px;box-shadow: rgba(0, 0, 0, 0.03) 0px 14px 21px 0px;z-index: -3;border-radius: 3px;}
.single .content,.page-template-default .content,.post-type-archive-blog .content,.page-template-tougao .content,.page-template-tuan .content,.page-template-all .content,.page-template-all-vip .content,.archive .content,.search .content,.home .content{margin-right:330px}
.single .content.nosidebar{margin-right:0}
.content-nav{padding-left: 220px;}
.error40404{text-align:center;font-size:80px;margin:100px auto 130px}
.center{text-align:center;}
.header{position:fixed;top:0;left:0;right:0;z-index:10001;background:#fff;transition: all .3s ease 0s;webkit-box-shadow: 0px 4px 10px 0px rgba(17, 58, 93, 0.1);-ms-box-shadow: 0px 4px 10px 0px rgba(17, 58, 93, 0.1);box-shadow: 0px 4px 10px 0px rgba(17, 58, 93, 0.1);}
.header.scrolled{webkit-box-shadow: 0px 5px 10px 0px rgba(17, 58, 93, 0.1);-ms-box-shadow: 0px 5px 10px 0px rgba(17, 58, 93, 0.1);box-shadow: 0px 5px 10px 0px rgba(17, 58, 93, 0.1);}
.nav-main{float:left;font-size:15px;margin-top:0px;margin-left:30px}
.nav-main li{position:relative;float:left;color:#333;}
.nav-main > li.menu-item-has-children{padding-right: 12px;}
.nav-main > li.menu-item-has-children:after{font-family: "iconfont" !important;content: "\e623";position: absolute;right: 10px;font-size:12px;top:calc(50% - 4px);height: 12px;line-height: 12px;}
.nav-main > li.menu-item-has-children:hover:after{content:"\e620";}
.nav-main a{display:block;padding:0 15px;-webkit-transition:ease-in color .15s;transition:ease-in color .15s;position:relative;}
.nav-main > li > a{padding:25px 13px 23px}
.nav-main> li.current-menu-item > a:after, .nav-main> li.current-menu-parent > a:after, .nav-main> li.current_page_item > a:after, .nav-main> li.current-post-ancestor > a:after, .nav-main> li.current-menu-ancestor > a:after, .nav-main> li.current-category-ancestor > a:after{content: "";font-size:12px;position: absolute;bottom: 12px;left: calc(50% - 2.5px);font-weight: 300;width: 5px;height:5px;border-radius: 50%;background: #ff5f33}
.nav-main .sub-menu{position:absolute;top:100%;left:0;background-color:#fff;font-size:14px;padding:6px 0;margin:20px 0 0;box-shadow:0 0 10px rgba(0,0,0,0.1);line-height:32px;min-width:180px;border-radius:2px;opacity:0;visibility:hidden;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;transition:all 0.2s ease-in-out;}
.nav-main > li > .sub-menu:before {content: " ";height: 0;width: 0;border-color: transparent;border-style: solid;border-width: 8px;border-bottom-color: #fff;position: absolute;left: 20px;top: -14px;}
.nav-main .sub-menu li{float:none}
.nav-main .sub-menu li.menu-item-has-children:after{font-family: "iconfont" !important;content: "\e621";position: absolute;right: 7px;font-size:12px;top:calc(50% - 6px);height: 12px;line-height: 12px;}
.nav-main > li.mega4 .sub-menu li.menu-item-has-children:after, .nav-main > li.mega3 .sub-menu li.menu-item-has-children:after, .nav-main > li.mega2 .sub-menu li.menu-item-has-children:after{content: none;}
.nav-main .sub-menu a{font-weight:normal;color:#333;}
.nav-main .sub-menu .sub-menu{left:100%;top:0;z-index:9}
.nav-main .explose{display: none;}
.nav-main li:hover > .sub-menu{opacity:1;visibility:visible;margin:0;}
.nav-main > li.mega4 > .sub-menu{min-width: 500px;padding:10px 0;}
.nav-main > li.mega4 > .sub-menu > li{position: static;}
.nav-main > li.mega4 > .sub-menu > li > a{position: relative;}
.nav-main > li.mega4 > .sub-menu > li:first-child > a:before{content: "";width: 1px;height: 10px;background: #f3f3f3;position: absolute;right: -1px;top:-10px;}
.nav-main > li.mega4 > .sub-menu > li:last-child > a:before{content: "";width: 1px;height: 10px;background: #f3f3f3;position: absolute;right: -1px;bottom:-10px;}
.nav-main > li.mega4 > .sub-menu > li > a{width: 90px;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;height: 32px;border-right: 1px solid #f3f3f3;}
.nav-main > li.mega4 > .sub-menu > li:first-child > a, .nav-main > li.mega4 > .sub-menu > li.mg-show > a{background: #f3f3f3}
.nav-main > li.mega4 > .sub-menu > li:first-child > a:after, .nav-main > li.mega4 > .sub-menu > li.mg-show > a:after{content: " ";height: 0;width: 0;border-color: transparent;border-style: solid;border-width: 8px;border-bottom-color: #fff;position: absolute;right: -4px;top: 8px;transform: rotate(-90deg);}
.nav-main > li.mega4 > .sub-menu > li.mg-hide > a:after{content: none;}
.nav-main > li.mega4 > .sub-menu > li.mg-hide > a{background: transparent;}
.nav-main > li.mega4:hover > .sub-menu > li:first-child > .sub-menu, .nav-main > li.mega4:hover > .sub-menu > li:first-child > .sub-menu > li > .sub-menu, .nav-main > li.mega4 > .sub-menu > li.mg-show .sub-menu{opacity:1;visibility:visible;display: block;}
.nav-main > li.mega4 > .sub-menu > li.mg-hide .sub-menu{opacity:0;visibility:hidden;display: none}
.nav-main > li.mega4 > .sub-menu > li > .sub-menu{position:absolute;border-radius: 0;box-shadow: none;left: 90px;top:0;bottom:0;margin:0;overflow: hidden;margin-left: 5px;padding:10px 0;min-width: 400px;}
.nav-main > li.mega4 > .sub-menu > li > .sub-menu > li{padding:8px 0;}
.nav-main > li.mega4 > .sub-menu > li > .sub-menu > li > a{width:90px;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;line-height:16px;height: 16px;border-right: 1px solid #f3f3f3;}
.nav-main > li.mega4 > .sub-menu > li > .sub-menu li{float: none;}
.nav-main > li.mega4 .sub-menu .sub-menu .sub-menu a{color:#777;}
.nav-main > li.mega4 .sub-menu .sub-menu .sub-menu{box-shadow: none;margin:0;padding:0;min-width: auto;left: 90px;}
.nav-main > li.mega4 .sub-menu .sub-menu .sub-menu li{float: left;}
.nav-main > li.mega3 > .sub-menu{min-width: 400px;padding:10px 6px;line-height: 28px;}
.nav-main > li.mega3:hover > .sub-menu .sub-menu{opacity:1;visibility:visible;}
.nav-main > li.mega3 .sub-menu .sub-menu{position:relative;border-radius: 0;box-shadow: none;left: 0;margin:0;overflow: hidden;margin-left: 15px;padding:0;line-height: 22px;font-size:12px;}
.nav-main > li.mega3 .sub-menu .sub-menu li{float: left;}
.nav-main > li.mega3 .sub-menu .sub-menu a{color:#777;}
.nav-main > li.mega2 > .sub-menu{min-width: 360px;padding:15px 6px;line-height: 30px;}
.nav-main > li.mega2 > .sub-menu > li{float: left;width: 33.33333%;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;height: 30px;}
.nav-main > li.mega22 > .sub-menu{min-width: 240px;}
.nav-main > li.mega22 > .sub-menu > li{float: left;width: 50%;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;height: 30px;}
.nav-right{float:right;font-size:15px;margin-top:0px}
.nav-right li{position:relative;float:left}
.nav-right a{display:inline-block;padding:0 15px;-webkit-transition:ease-in color .15s;transition:ease-in color .15s;position:relative}
.nav-right > li > a{padding:25px 10px 23px}
.nav-right .icon{font-size:20px;}
.nav-right .nav-login{padding:11px 0 11px 13px;}
.nav-right .nav-login.no{padding:19px 0 17px 13px;}
.nav-right .nav-login a{padding:6px 0;border:none;position: relative;}
.nav-right .nav-login i{display: none;}
.nav-right .nav-login .avatar{width: 36px;height: 36px;border-radius: 50%;}
.nav-right .nav-login.yes span{position: absolute;right: -3px;bottom:-1px;}
.nav-right .nav-login.yes span:after{font-family: 'iconfont';content:"\e8d2";font-size:14px;color:#fbb715;}
.nav-right .nav-vip{padding:9.5px 13px;}
.nav-right .nav-vip a{padding:3px 0;color: #fbb715 !important;}
.nav-right .nav-vip a .icon{font-size:30px;}
.nav-right .nav-tougao{padding:14px 13px;}
.nav-right .nav-tougao a{padding:6px 0;}
.nav-right .nav-search{padding:14px 13px;}
.nav-right .nav-search a{padding:6px 0;z-index:99;}
.nav-right .nav-cart{padding:14px 13px;position: relative;}
.nav-right .nav-cart a{padding:6px 0;z-index:99;}
.nav-right .nav-cart span{position: absolute;top:5px;right: -3px;font-size: 12px;color:#ff5f33;font-weight: bold;}
.nav-line{width: 1px;background: #777;height: 10px;display: inline-block;margin: 0 15px;}
.nav-right .nav-button{display:none}
.nav-right .sub-menu{position:absolute;top:100%;right:0;background-color:#fff;font-size:13px;padding:12px 8px 10px;margin:20px 0 0;box-shadow:0 0 10px rgba(0,0,0,0.1);line-height:32px;min-width:300px;border-radius:2px;opacity:0;visibility:hidden;-webkit-transition:all 0.2s ease-out;-moz-transition:all 0.2s ease-out;-o-transition:all 0.2s ease-out;transition:all 0.2s ease-in-out}
.nav-right .sub-menu:before {content: " ";height: 0;width: 0;border-color: transparent;border-style: solid;border-width: 8px;border-bottom-color: #fff;position: absolute;right: 10px;top: -14px;}
.nav-right .sub-menu li{float:left;width: 20%;}
.nav-right .sub-menu li.first{width: 100%;margin-bottom: 12px;}
.nav-right .sub-menu a{font-weight:normal;padding:0 10px;color: #333}
.nav-right .sub-menu li.item{text-align: center;line-height: 15px;margin-bottom: 5px;font-size: 12px;}
.nav-right .sub-menu li.item a{padding:0;width:45px;height: 45px;border-radius: 50%;background: #f5f5f5;display: inline-block;text-align: center;}
.nav-right .sub-menu .user-info{padding:0 6px;}
.nav-right .sub-menu .user-info a{padding:0;display: inline-block;position: relative;line-height: 1}
.nav-right .sub-menu .user-info a .vip{bottom: -2px;}
.nav-right .sub-menu .user-info .name{display: inline-block;margin-left: 6px;height: 36px;line-height: 36px;}
.nav-right .sub-menu .user-info .name .nickname{display: inline-block;max-width: 92px;overflow: hidden;float:left;height: 36px;}
.nav-right .sub-menu .user-info .name t{background: #fbb715;color:#fff;padding:2px 8px;border-radius: 20px;margin-left: 10px;font-size: 12px;}
.nav-right .sub-menu .user-info .name d{background: rgba(45,50,55,0.7);color:#fff;padding:2px 8px;border-radius: 20px;margin-left: 10px;font-size: 12px;}
.nav-right .sub-menu .user-money{display: block;padding-bottom: 8px;font-weight:normal;padding:0 6px;color: #333}
.nav-right .sub-menu .user-vip{display: block;padding-bottom: 8px;font-weight:normal;padding:0 6px;color: #333}
.nav-right .sub-menu .user-cart{display: block;padding-bottom: 8px;font-weight:normal;padding:0 6px;color: #333}
.nav-right .sub-menu .icon{top:3px;font-size: 18px;display: inline-block;line-height: 23px;}
.nav-right li:hover > .sub-menu{opacity:1;visibility:visible;margin:0}
.nav-right .money-left{background: #f5f5f5;padding:0 8px;border-radius: 0 5px 0 5px;font-size: 12px;margin-top: 12px;}
.nav-right .money-left t{float: right;color: #777}
.nav-right .cart-left{background: #f5f5f5;padding:0 8px;border-radius: 0 5px 0 5px;font-size: 12px;margin-top: 12px;display: block;}
.nav-right .cart-left t{float: right;}
.nav-right .vip-left{background: #f5f5f5;border-radius: 0 5px 0 5px;padding: 0 8px;font-size: 12px;margin-top: 12px;}
.nav-right .vip-left t{float: right;color: #777;line-height: 22px;margin-top: 5px;}
.nav-right .vip-left v{cursor:pointer;float: right;background: #fbb715;color: #fff;border-radius: 30px;padding: 4px 8px;display: inline-block;line-height: 1;margin-top: 6px;}
.nav-right .vip-left .down-left{margin-top: -5px;color: #777}
.nav-right .vip-left .down-left b{font-size: 16px;}
.logo{overflow:hidden;float:left;width:70px;height:70px;position: relative;}
.logo.scaning:before{content:"";position:absolute;left:-465px;top:-260px;width:250px;height:15px;background-color:rgba(255,255,255,.5);-webkit-transform:rotate(-45deg);-moz-transform:rotate(-45deg);-ms-transform:rotate(-45deg);-o-transform:rotate(-45deg);transform:rotate(-45deg);-webkit-animation:searchLights 1s ease-in 1s infinite;-o-animation:searchLights 1s ease-in 1s infinite;animation:searchLights 1s ease-in 1s infinite}
.logo a{display:block;overflow:hidden;text-indent:-9999px;background-image:url('../img/logo.png');background-position:center center;background-repeat:no-repeat;background-size:100%;height:70px;width:auto}
@-webkit-keyframes searchLights{0%{left:-100px;top:0}
to{left:120px;top:100px}
}@-o-keyframes searchLights{0%{left:-100px;top:0}
to{left:120px;top:100px}
}@-moz-keyframes searchLights{0%{left:-100px;top:0}
to{left:120px;top:100px}
}@keyframes searchLights{0%{left:-100px;top:0}
to{left:120px;top:100px}
}
.search-wrap{position: fixed;top:-70px;left:0;right:0;background: #fff;height:70px;transition: top 0.3s cubic-bezier(.4,0,.2,1);padding:10px 0;z-index: 10002;}
.search-wrap.show{top: 0;}
.search-wrap .search-input{width:100%;height: 50px;font-size: 17px;border:none;background: transparent;}
.search-wrap .icon{position: absolute;right:0;top:8px;font-size: 24px;cursor: pointer;}
.banner{color:#fff;text-align:center;height:400px;background-color:#333;margin-bottom:25px;background-image:url(../img/banner.jpg);background-position:center center;background-size:cover;background-repeat:no-repeat;position:relative}
.banner-slider{height: auto !important;padding: 30px 0;background: #fff;background-image: none;}
.banner-slider.bg{background: #f9f9f9;margin-bottom: 30px}
.banner-slider-fullwidth{margin-bottom: 30px;}
.banner-video{width: 100%;height: 100%;object-fit: cover;position: absolute;left: 0;right: 0;top: 0;bottom: 0;}
.banner .container{top: calc(50% + 20px);transform:translateY(-50%);z-index:10;}
.banner-archive .container, .banner-page .container{z-index:10;}
.banner h2{font-size:35px;font-weight:700;margin-bottom:10px;color: #fff}
.banner p{font-size:16px;}
.banner .banner-btn, .banner-archive .banner-btn{border:1px solid #fff;background:#fff;font-size:18px;border-radius:3px;display:inline-block;padding:10px 36px;margin-top:40px}
.banner .search-form, .banner-archive .search-form{margin:30px auto 0;box-sizing:content-box;position: relative;}
.banner .search-form .site-search-form, .banner-archive .search-form .site-search-form{display: inline-block;position: relative;}
.banner .search-form .search-cat, .banner-archive .search-form .search-cat{display:inline-block;position:absolute;border:none;left:10px;top:0;height:48px;-webkit-appearance: none;width: 65px;font-size: 16px;overflow: hidden;padding:0 15px;}
.banner .search-form .search-input, .banner-archive .search-form .search-input{height:48px;line-height:48px;font-size:16px;display:block;font-family:"Microsoft YaHei";text-indent:25px;border:none;width: 650px;border-radius:10px;color: #333;}
.banner .search-form .search-cat + .search-input, .banner-archive .search-form .search-cat + .search-input{text-indent:85px;}
.banner .search-form .search-btn, .banner-archive .search-form .search-btn{position:absolute;right:25px;top:9px;font-size:16px;border:none;display:inline-block;cursor: pointer;background: transparent;}
.banner .search-form .search-btn .icon, .banner-archive .search-form .search-btn .icon{font-size:24px;top:1px;}
.search-form .search-keywords{margin-top: 15px}
.search-form .search-keywords a{font-size:12px;display:inline-block;margin:0 3px;border-radius: 6px;cursor: pointer;padding: 1px 10px 3px;background: rgba(0,0,0,.4);border: 1px solid hsla(0,0%,100%,.2);color:#fff !important;}
.search-wrap + .banner-bottom{padding-top: 30px}
body.search .banner-archive .search-form{margin-top:0;}
body.search .banner-archive .archive-title{display: none;}
.banner-archive, .banner-page{color:#fff;text-align:center;padding:40px 0 !important;background-color: #ff5f33;margin-top: 0 !important;background-position:center center;background-size:cover;background-repeat:no-repeat;position:relative}
.banner-archive .archive-avatar{display: inline-block;position: relative;margin-bottom: 10px;}
.banner-archive .archive-avatar span {position: absolute;right: 5px;bottom: -6px;}
.banner-archive .archive-avatar span:after {font-family: 'iconfont';content: "\e8d2";font-size: 24px;color: #fbb715;}
.banner-archive .avatar{border-radius: 50%;}
.banner-archive p, .banner-page p{font-weight:normal;font-size:13px;margin-top:0;color:#e6e6e6;}
.banner-archive:after, .banner-page:after{content:none;}
.slider-left{max-width: 895px;}
.slider-left2{max-width: 590px;}
.slider-right{position:absolute;right:0;top:0;overflow: hidden;width: 285px;}
.slider-right2{position:absolute;right:0;top:0;overflow: hidden;width: 590px;}
.slider-right2 .item{width: 285px;float:left;margin-right: 20px;}
.slider-right .item, .slider-right2 .item2, .slider-right2 .item{margin-bottom: 20px;}
.slider-right .item:last-child{margin-bottom: 0}
.slider-right2 .item:last-child{margin-bottom: 0;margin-right: 0;}
.slider-right a, .slider-right2 a{display: block;padding:0;margin:0;border:none;background: transparent;}
.slider-right img, .slider-right2 img{width:100%;height: 180px;border-radius: 3px;}
.swiper-container{border-radius: 3px;}
.swiper-container .swiper-slide{position:relative;}
.banner-slider .swiper-container .swiper-slide h3{position: absolute;bottom: 0;left: 0;width: 100%;padding: 15px 20px;margin: 0;font-size: 16px;color: #fff;text-align: left;font-weight: bold;text-shadow: 0 1px 3px #525252;box-sizing: border-box;background: -webkit-linear-gradient(top, rgba(255,255,255,0), rgba(0,0,0,0.2));background: -moz-linear-gradient(top, rgba(255,255,255,0), rgba(0,0,0,0.2));background: -o-linear-gradient(top, rgba(255,255,255,0), rgba(0,0,0,0.2));background: linear-gradient(top, rgba(255,255,255,0), rgba(0,0,0,0.2));letter-spacing: 1.2px;}
.banner-slider .swiper-container .swiper-pagination{text-align: right;right: 10px;left: inherit;}
.swiper-container .swiper-slide a{display: block;width: 100%;height: 100%;padding:0;margin:0;border:none;background: transparent;}
.swiper-container .swiper-slide img{width:100%;height: 380px;border-radius: 3px;}
.only-erphpdown-vip{text-align: center;min-height: 560px;padding-top: 160px;color: #fbb715;font-weight: 600}
.only-erphpdown-vip .icon{font-size: 80px;color: #fbb715;}
.archive-title{text-align:center;font-size:22px;font-weight:normal;}
.archive-desc{color:#fff;font-size:14px;text-align:center;margin-top: 5px !important;}
.cat-nav-wrap{position:relative;text-align:center;margin-bottom:30px}
.cat-nav{list-style:none;display:inline-block;white-space:nowrap;max-width:100%;font-size: 16px;}
.cat-nav .sub-menu{display:none}
.cat-nav li{float:none;margin:0 2px;display:inline-block}
.cat-nav li a{padding:5px 12px;position:relative}
.cat-nav li.current-menu-item a{color:#ff5f33}
.cat-nav li.current-menu-item a:after{content:" ";width:calc(100% - 30px);background:#ff5f33;height:2px;position:absolute;left:0;bottom:-5px;margin-left: 15px;}
.filters{padding:15px 20px;margin-bottom:20px;border-radius: 3px;background: #f9f9f9;}
.filter-item{margin-bottom:7px;padding:0 0 7px 70px;position:relative;}
.filter-item:last-child{padding-bottom: 0;margin-bottom:0}
.filter-item.filter-item-order{border-top: 1px dashed #eaeaea;margin-top: -7px;padding-top: 7px;}
.filter-item:first-child{border-top:none;margin-top: 0;padding-top: 0;}
.filter-item>span{font-weight:600;position:absolute;left:0;top:3px;color:#666;}
.filter-item.filter-item-order>span{top: 10px;}
.filter-item.filter-item-order .filter a{background: transparent !important;color: inherit;}
.filter-item.filter-item-order .filter a:hover, .filter-item.filter-item-order .filter a.active{color: #ff5f33}
.filter-item.filter-item-order .filter .icon{font-size: 12px;opacity: .8}
.filter-item:first-child>span{top:3px;}
.filter{display:inline-block;font-size: 14px;}
.filter a{display:inline-block;margin:3px;padding:5px 10px;color: #666;line-height: 1}
.filter a.active{background:#ff5f33;color:#fff;border-radius:50px;}
.filter .icon{font-size: 13px;}
.lists .list{padding:0 0 0 285px;position: relative;height: 170px;margin-bottom: 20px;background-image: none !important;border-radius:3px;transition: all .3s ease 0s;}
.lists .list:hover{}
.lists .list.list-tj:after{content:"推荐";position: absolute;right: 0;top: 0;background: #ff5f33;font-size: 12px;padding: 0 4px;border-radius: 2px;color: #fff;z-index: 9;}
.lists .list.noimg{padding:0;height: auto !important;}
.lists .list h3{font-size: 20px;margin-bottom: 10px;}
.lists .list h3 a{line-height:30px;overflow:hidden;text-overflow:ellipsis;-webkit-box-orient: vertical;display:-webkit-box;-webkit-line-clamp: 1;}
.lists .list.noimg h3 a{height: auto !important;-webkit-line-clamp:inherit !important;}
.lists .list .img{float: left;margin:0 0 0 -285px;overflow: hidden;}
.lists .list.noimg .img{display: none;}
.lists .list img{width: 265px;height: 170px;transition: all .3s ease-out 0s;border-radius: 3px;object-fit: cover;background: #fff;display: block;font-size:0;}
.lists .list img:hover{-webkit-transform: scale(1.03);transform: scale(1.03);transition: all .3s ease-out 0s;}
.lists .list .con{height: 170px;}
.lists .list.noimg .con{height: auto !important;}
.lists .list .cat{display: inline-block;font-size: 12px;color: #777;margin-left: 18px;height: 24px;}
.lists .list .cat:after {content: " ";width: 4px;height: 4px;display: block;border-radius: 15px;position: relative;left: -18px;top: -13px;border: 2px solid #ff5f33;}
.lists .list .list-meta{color:#777;font-size:12px;margin-top: 10px;}
.lists .list.noimg .list-meta{position: static;}
.lists .list .list-meta a{color:#777;}
.lists .list .list-meta span{margin-right: 12px;}
.lists .list .list-meta .icon{font-size: 14px;}
.lists .list .list-meta .price{float: right;margin-right: 0}
.lists .list .list-meta .price .fee{background: #a7abb7;padding: 1px 4px;color: #fff;border-radius: 2px;margin-right: 0}
.lists .list .list-meta .vip-tag{width: 35px;height: 35px;position: absolute;top: -3px;left: -3px;overflow: hidden;z-index: 10;margin-right: 0}
.lists .list .list-meta .vip-tag i{height: 14px;line-height: 14px;width: 60px;background-color: #fbb715;-webkit-box-shadow: -1.204px 1.597px 4px 0 rgba(0,0,0,.22);box-shadow: -1.204px 1.597px 4px 0 rgba(0,0,0,.22);position: absolute;top: 50%;left: -18px;margin-top: -13px;font-size: 12px;color: #fff;text-align: center;-webkit-transform: rotate(-45deg);-ms-transform: rotate(-45deg);transform: rotate(-45deg);-webkit-transform-origin: center;-ms-transform-origin: center;transform-origin: center;z-index: 1;font-style: normal;}
.lists .list .list-meta .free-tag i{background: #5cb85c}
.lists .list .list-meta .vip-tag:before, .lists .list .list-meta .vip-tag:after{content: '';position: absolute;z-index: 0;background-color: #fbb715;}
.lists .list .list-meta .free-tag:before, .lists .list .list-meta .free-tag:after{background: #5cb85c}
.lists .list .list-meta .vip-tag:before{height: 3px;width: 10px;right: 0;top: 0;}
.lists .list .list-meta .vip-tag:after{height: 10px;width: 3px;left: 0;bottom: 0;}
.lists .list .desc{margin:0;color:#8d939c;font-size: 14px;line-height:24px;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;height: 72px;}
.lists .list.noimg .desc{height: auto !important;}
.grids .list{padding:15px 15px 15px 285px;position: relative;height: 170px;margin-bottom: 20px;background: #fff;box-shadow:0 0 15px rgba(0,0,0,0.075);border-radius:3px;transition: all .3s ease 0s;}
.grids .list:hover{box-shadow:0 0 15px rgba(0,0,0,0.15);-webkit-transform: translateX(3px);transform: translateX(3px);}
.grids .list.list-tj:after{content:"推荐";position: absolute;right: 0;top: 0;background: #ff5f33;font-size: 12px;padding: 0 4px;border-radius: 0px 3px 0 5px;color: #fff;z-index: 9;}
.grids .list h3{font-size: 16px;margin-bottom: 10px;}
.grids .list h3 a{line-height:20px;overflow:hidden;text-overflow:ellipsis;white-space: nowrap;display:block;font-weight: normal}
.grids .list .img{float: left;margin:-15px 0 0 -285px;overflow: hidden;}
.grids .list .thumb{width: 265px;height: 170px;transition: all .3s ease-out 0s;border-radius: 3px 0 0 3px;}
.grids .list .thumb:hover{-webkit-transform: scale(1.03);transform: scale(1.03);transition: all .3s ease-out 0s;}
.grids .list .con{position: relative;height: 140px;}
.grids .list .cat{display: block;font-size: 12px;color: #777;margin-left: 18px;height: 30px;}
.grids .list .cat:after {content: " ";width: 4px;height: 4px;display: block;border-radius: 15px;position: relative;left: -18px;top: -13px;border: 2px solid #ff5f33;}
.grids .list .list-meta{color:#bbb;font-size:12px;position: absolute;bottom:0;left:0;}
.grids .list .list-meta span{margin-right: 8px;}
.grids .list .desc{margin:0;color:#8d939c;font-size: 14px;line-height:18px;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;height: 36px;}
.grids{margin:0 -10px 20px;position:relative}
.grids.waterfall{display:block}
.grids .grid{width:285px;margin:0 10px 20px;float:left;background:#fff;box-shadow:0 0 15px rgba(0,0,0,0.075);position:relative;border-radius:3px;background-size: cover;background-position: center;background-repeat:no-repeat;transition: all .3s ease 0s;}
.grids .grid:hover{box-shadow:0 0 15px rgba(0,0,0,0.15);-webkit-transform: translateY(-3px);transform: translateY(-3px);}
.grids .grid.grid-tj:after{content:"推荐";position: absolute;right: 0;top: 0;background: #ff5f33;font-size: 12px;padding: 0 4px;border-radius: 0px 3px 0 5px;color: #fff;z-index: 9;}
.grids .grid.grid-ts:before{position: absolute;width: 100%;height: 100%;left: 0;top: 0;background: rgba(0,0,0,.3);content: "";border-radius:3px;}
.grids .grid .img{overflow: hidden;border-radius:3px 3px 0 0;position: relative;height: 180px;}
.grids .grid .img a{display: block;height: 100%}
.grids .grid .thumb{width:100%;height:100%;border-radius: 3px 3px 0 0;transition: all .3s ease-out 0s;object-fit: cover;background: #fff;display: block;font-size:0;}
.grids .grid .thumb:hover{-webkit-transform: scale(1.03);transform: scale(1.03);transition: all .3s ease-out 0s;}
.grids .grid.grid-ts img{visibility: hidden;}
.grids.waterfall .grid .img{height:auto !important}
.grids .grid .grid-video{width:100%;border-radius: 3px 3px 0 0;transition: all .3s ease-out 0s;display: none;}
.grids .grid .grid-video video, .grids .grid .grid-video iframe{width: 100%;height: 100%;}
.grids .grid .video-icon{position: absolute;top:calc(50% - 22.5px);left: calc(50% - 22.5px);border-radius: 50%;font-size: 32px;color: #fff;width: 45px;height: 45px;}
.grids .grid .video-icon i{left: 1px;top:-10px;font-size: 45px;height: 45px;}
.grids .grid h3{font-size:15px;font-weight:normal;margin:15px 10px 10px;position:relative;}
.grids .grid h3 a{color:#333;line-height:20px;overflow:hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;height:20px}
.grids .grid h3 a:hover{color: #ff5f33}
.grids .grid.grid-ts h3 a{color:#e0e0e0 !important;}
.grids .grid .grid-custom-metas{padding:0 10px;font-size: 13px;color:#5a5f6d;}
.grids .grid p{padding:0px 10px 10px;margin:0;color:#AAB2BD}
.grids .grid .grid-meta{color:#777;padding:0 10px 10px 10px;font-size:12px;height: 30px;overflow: hidden;}
.grids .grid.grid-ts .grid-meta{color:#b9bbbf;}
.grids .grid.grid-ts .cat{color:#b9bbbf;}
.grids .grid .grid-meta .price{float:right;}
.grids .grid .grid-meta .price .fee{background: #ababab;padding: 0px 4px 1px;color: #fff;border-radius: 2px;position: relative;top: 1px;}
.grids .grid .grid-meta .downs, .grids .grid .grid-meta .time, .grids .grid .grid-meta .views, .grids .grid .grid-meta .comments, .grids .grid .grid-meta .favs{margin-right: 8px;position: relative;}
.grids .grid.grid-zz .grid-meta .downs, .grids .grid.grid-zz .grid-meta .time, .grids .grid.grid-zz .grid-meta .views, .grids .grid.grid-zz .grid-meta .comments, .grids .grid.grid-zz .grid-meta .favs{margin-right: 12px;position: relative;}
.grids .grid.grid-zz .grid-meta .time{display: none;}
.grids .grid .grid-meta .icon{font-size:14px;}
.grids .grid .grid-meta .icon-vip-card{font-size:18px;top:-2px;color:#fbb715}
.grids .grid .grid-meta .vip-tag{width: 35px;height: 35px;position: absolute;top: -3px;left: -3px;overflow: hidden;z-index: 10}
.grids .grid .grid-meta .vip-tag i{height: 14px;line-height: 14px;width: 60px;background-color: #fbb715;-webkit-box-shadow: -1.204px 1.597px 4px 0 rgba(0,0,0,.22);box-shadow: -1.204px 1.597px 4px 0 rgba(0,0,0,.22);position: absolute;top: 50%;left: -18px;margin-top: -13px;font-size: 12px;color: #fff;text-align: center;-webkit-transform: rotate(-45deg);-ms-transform: rotate(-45deg);transform: rotate(-45deg);-webkit-transform-origin: center;-ms-transform-origin: center;transform-origin: center;z-index: 1;font-style: normal;}
.grids .grid .grid-meta .free-tag i{background: #5cb85c}
.grids .grid .grid-meta .tuan-tag i{background: #ff5f33}
.grids .grid .grid-meta .vip-tag:before, .grids .grid .grid-meta .vip-tag:after{content: '';position: absolute;z-index: 0;background-color: #fbb715;}
.grids .grid .grid-meta .free-tag:before, .grids .grid .grid-meta .free-tag:after{background: #5cb85c}
.grids .grid .grid-meta .tuan-tag:before, .grids .grid .grid-meta .tuan-tag:after{background: #ff5f33}
.grids .grid .grid-meta .vip-tag:before{height: 3px;width: 10px;right: 0;top: 0;}
.grids .grid .grid-meta .vip-tag:after{height: 10px;width: 3px;left: 0;bottom: 0;}
.grids .grid .cats{padding:0 10px;font-size:12px;height:18px;overflow:hidden;margin-bottom: 5px;position:relative;}
.grids .grid.grid-ts .cats a{color:#fff;}
.grids .grid .cat{padding: 15px 10px 0 10px;display: block;font-size: 12px;color: #777;margin-left: 18px;height: 30px;position: relative;}
.grids .grid .cat:after {content: " ";width: 4px;height: 4px;display: block;border-radius: 15px;position: relative;left: -18px;top: -13px;border: 2px solid #ff5f33;}
.grids .grid .grid-author{padding:10px;border-top:1px solid #f3f3f3;margin-top: 5px;}
.grids .grid .grid-author .avatar{height: 24px;width: 24px;border-radius: 50%;}
.grids .grid .grid-author .author-name{height: 24px;line-height: 24px;margin-left: 8px;font-size: 12px;display: inline-block;color:#777;}
.grids .grid .grid-author .time{color: #777;font-size: 12px;float: right;height: 24px;line-height: 24px;}
.gd-mini .grids{margin: 0 -7.5px 15px;}
.gd-mini .grids .grid{margin: 0 7.5px 15px;width: calc(20% - 15px)}
.gd-mini .grids .grid .img{height: 144px;}
.gd-mini .grids .grid .cat{padding-top: 10px;}
.gd-mini .grids .grid h3{margin: 10px;font-size: 14px;}
.grids .audio{height:138px;background:#fff;box-shadow:0 0 15px rgba(0,0,0,0.075);width:285px;margin:0 10px 20px;float:left;position:relative;border-radius:3px;background-size: cover;background-position: center;transition: all .3s ease 0s;}
.grids .audio .audio-play{float:left;display:block;margin-top:20px;margin-left:20px;width:51px;height:51px;background:url(../img/audio.png) -14px -16px no-repeat;cursor:pointer}
.grids .audio .audio-play.on{background-position:-85px -16px}
.grids .audio .title{float:left;display:block;overflow:hidden;margin-top:20px;margin-left:22px;width:165px;height:50px;text-align:left;text-overflow:ellipsis;white-space:nowrap;font-size:14px;line-height:50px}
.grids .audio:hover .title{height:31px;line-height:19px}
.grids .audio .down{float:left;display:none;margin-left:23px;width:70px;height:28px;border-radius:3px;background:#ff5f33;color:#fff;font-size:14px;line-height:28px;cursor:pointer;text-align: center;}
.grids .audio:hover .down{display:block}
.grids .audio .down:hover{opacity: .8}
.grids .audio .times{display:inline-block;width:288px;height:30px}
.grids .audio .info{float:left;display:block;width:207px;height:100px}
.grids .audio .star-time{float:left;display:block;width:60px;height:23px;color:#696969;text-align:right;font-size:14px;line-height:23px}
.grids .audio .time-bar{position:relative;z-index:1;float:left;display:block;overflow:hidden;width:164px;height:24px;background:#bfbfbf;cursor:pointer}
.grids .audio .time-bar .progressBar{position:absolute;left:0;z-index:3;width:100%;height:100%;background:url(../img/audio.png) no-repeat -180px -30px}
.grids .audio .time-bar .move-color{position:absolute;top:0;left:0;z-index:2;display:block;width:0;height:24px;height:100%;background-color:#658ae4}
.grids .audio .time-bar .timeTip{position:absolute;top:5px;left:0;z-index:3;width:40px;color:#0099e5;text-align:center;font-size:12px}
.grids .audio .end-time{float:left;display:block;width:47px;color:#696969;font-size:14px;line-height:23px}
.grids .erphpdown-tuan-process{display: inline-block;width: 80%;}
.grids .erphpdown-tuan-process .line{background: #f1f1f1;height:8px;width: 60%;border-radius: 2px;display: inline-block;position: relative;top: -2px}
.grids .erphpdown-tuan-process .line span{display: block;height: 8px;width:0px;background: #ff5f33;border-radius:2px 0 0 2px;}
.grids .erphpdown-tuan-process .data{text-align: center;font-size: 10px;color:#8a92a9;padding: 4px 0 4px 8px;display: inline-block;position: relative;top: -2px}
.lists .grid{float: left;width: 32%;float: left;background: #fff;background-image: none !important;margin-right: 2%;padding:4px 8px 4px 120px;position: relative;height: 75px;margin-bottom: 20px;border-radius: 3px;box-shadow: 0 0 15px rgba(0,0,0,0.075);}
.lists .grid.grid-tj:after{content:"推荐";position: absolute;right: 0;top: 0;background: #ff5f33;font-size: 12px;padding: 0 4px;border-radius: 0px 3px 0 5px;color: #fff;z-index: 9;}
.lists.cols-two .grid{width: 49%;padding: 8px 8px 4px 180px;height: 115px;}
.lists .grid:nth-child(3n){margin-right: 0}
.lists.cols-two .grid:nth-child(3n){margin-right: 2%}
.lists.cols-two .grid:nth-child(2n){margin-right: 0}
.lists .grid.noimg{padding:4px 8px !important;}
.lists.cols-two .grid.noimg{padding:8px 8px 4px 8px !important;}
.lists .grid .cat{display: none;font-size: 12px;color: #777;margin-left: 18px;height: 16px;}
.lists.cols-two .grid .cat{display: inline-block;}
.lists .grid .cat:after {content: " ";width: 4px;height: 4px;display: block;border-radius: 15px;position: relative;left: -18px;top: -13px;border: 2px solid #ff5f33;}
.lists .grid h3{font-size: 14px;margin-top:2px;font-weight: normal;margin-bottom: 2px;}
.lists.cols-two .grid h3{margin-bottom: 5px;font-size: 15px;}
.lists .grid h3 a{line-height:20px;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 2;-webkit-box-orient: vertical;height: 40px;}
.lists.cols-two .grid h3 a{-webkit-line-clamp: 1;height: 20px;}
.lists .grid .grid-custom-metas{display: none;}
.lists .grid .img{position:absolute;top:0;left:0;overflow: hidden;}
.lists .grid.noimg .img{display: none;}
.lists .grid .thumb{width: 110px;height: 75px;transition: all .3s ease-out 0s;border-radius: 3px 0 0 3px;object-fit: cover;background: #eee;display: block;font-size:0;}
.lists.cols-two .grid .thumb{width: 170px;height: 115px;}
.lists .grid .thumb:hover{-webkit-transform: scale(1.03);transform: scale(1.03);transition: all .3s ease-out 0s;}
.lists .grid .grid-video, .lists .grid .video-icon{display: none;}
.lists.cols-two .excerpt{display: block;color: #999;font-size: 13px;line-height: 20px;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;height: 20px;margin-bottom: 10px;}
.lists .grid .grid-meta{color:#777;font-size:12px;bottom:3px;left: 120px;max-height: 24px;overflow: hidden;}
.lists.cols-two .grid .grid-meta{left: 180px;}
.lists .grid .grid-meta span{margin-right: 8px;}
.lists .grid .grid-meta .price{float: right;margin-right: 0}
.lists .grid .grid-meta .price .fee{background: #ababab;padding: 0px 4px 1px;color: #fff;border-radius: 2px;margin-right: 0}
.lists .grid .grid-meta .icon{font-size: 14px;}
.lists .grid .grid-meta .vip-tag{width: 35px;height: 35px;position: absolute;top: -3px;left: -3px;overflow: hidden;z-index: 10}
.lists .grid .grid-meta .vip-tag i{height: 14px;line-height: 14px;width: 60px;background-color: #fbb715;-webkit-box-shadow: -1.204px 1.597px 4px 0 rgba(0,0,0,.22);box-shadow: -1.204px 1.597px 4px 0 rgba(0,0,0,.22);position: absolute;top: 50%;left: -18px;margin-top: -13px;font-size: 12px;color: #fff;text-align: center;-webkit-transform: rotate(-45deg);-ms-transform: rotate(-45deg);transform: rotate(-45deg);-webkit-transform-origin: center;-ms-transform-origin: center;transform-origin: center;z-index: 1;font-style: normal;}
.lists .grid .grid-meta .free-tag i{background: #5cb85c}
.lists .grid .grid-meta .tuan-tag i{background: #ff5f33}
.lists .grid .grid-meta .vip-tag:before, .lists .grid .grid-meta .vip-tag:after{content: '';position: absolute;z-index: 0;background-color: #fbb715;}
.lists .grid .grid-meta .free-tag:before, .lists .grid .grid-meta .free-tag:after{background: #5cb85c}
.lists .grid .grid-meta .tuan-tag:before, .lists .grid .grid-meta .tuan-tag:after{background: #ff5f33}
.lists .grid .grid-meta .vip-tag:before{height: 3px;width: 10px;right: 0;top: 0;}
.lists .grid .grid-meta .vip-tag:after{height: 10px;width: 3px;left: 0;bottom: 0;}
.lists .grid .grid-author{display: none;}
.lists .erphpdown-tuan-process{display: inline-block;width: 80%;}
.lists .erphpdown-tuan-process .line{background: #f1f1f1;height:8px;width: 60%;border-radius: 2px;display: inline-block;position: relative;top: -2px}
.lists .erphpdown-tuan-process .line span{display: block;height: 8px;width:0px;background: #ff5f33;border-radius:2px 0 0 2px;}
.lists .erphpdown-tuan-process .data{text-align: center;font-size: 10px;color:#8a92a9;padding: 4px 0 4px 8px;display: inline-block;position: relative;top: -2px}
.contents p:empty{margin:0;}
.moad{margin-bottom: 15px;}
.moad img{width:100%;height: auto;border-radius: 3px;}
.mocat{padding:40px 0 25px;background:#fff}
.mocat:first-child{margin-top:-10px}
.mocat:nth-child(2n){background:#f9f9f9}
.mocat .grids{margin-bottom:0}
.mocat h2{margin:0 0 45px;font-size:24px;text-align:center;position:relative;font-weight: normal;}
.mocat h2:after{content:" ";width:20px;background:#ff5f33;height:3px;position:absolute;left:0;top:45px;margin-left:calc(50% - 10px);border-radius: 1.5px;}
.mocat h2 span{position: relative;}
.mocat h2 i{position: absolute;right: -43px;top: -10px;background: #ff5f33;padding: 1px 5px;border-radius: 20px 20px 20px 0;color: #fff;font-size: 10px;font-weight:400;font-style: normal;}
.mocat .desc{text-align: center;color: #777;margin-bottom: 30px;margin-top: -15px;font-size: 14px;}
.mocat .child{list-style: none;text-align: center;margin-top: -15px;margin-bottom:24px;}
.mocat .child li{display: inline-block;margin:0 3px;margin-bottom: 6px;}
.mocat .child li a{padding:5px 10px;font-size: 14px;position: relative;}
.mocat .child li a.active{color:#ff5f33;}
.mocat .child li a.active:after{content:"";position: absolute;bottom: -8px;left: calc(50% - 2px);width: 4px;height:4px;border-radius:50%;background: #ff5f33}
.mocat .cfilter{list-style: none;text-align: center;margin-top: -15px;margin-bottom:24px;}
.mocat .cfilter li{display: inline-block;margin:0 3px;margin-bottom: 6px;}
.mocat .cfilter li a{padding:5px 10px;font-size: 14px;position: relative;}
.mocat .cfilter li a.active{color:#ff5f33;}
.mocat .cfilter li a.active:after{content:"";position: absolute;bottom: -8px;left: calc(50% - 2px);width: 4px;height:4px;border-radius:50%;background: #ff5f33}
.mocat .excerpt{display: none;}
.mocat .more{text-align:center;margin-bottom:30px;margin-top:15px}
.mocat .more a{display:inline-block;padding:10px 80px;text-decoration:none;background-color:#ff5f33;color:#fff !important;border-radius:50px;}
.mocat .more a:hover{opacity:.88}
.mocats .molis{margin:0 -10px;}
.mocats .moli{width:calc(33.3333% - 20px);float: left;margin:0 10px 20px;background: #fff;border-radius: 3px;box-shadow: 0 0 15px rgba(0,0,0,0.075);}
.mocats.cols-two .moli{width: calc(50% - 20px);}
.mocats .moli .moli-header{padding:18px 20px;text-align: center;background-color: #ff5f33;color:#fff;border-radius: 3px 3px 0 0;background-position: center center;background-size: cover;background-repeat: no-repeat;position: relative;}
.mocats .moli .moli-header:after{border-radius: 3px 3px 0 0}
.mocats .moli .moli-header a{position: absolute;top:0;bottom: 0;left: 0;right: 0;z-index: 10}
.mocats .moli .moli-header h3{font-weight: normal;font-size: 18px;z-index: 10;position: relative;}
.mocats .moli .moli-header .des{font-size: 13px;color:#e9e9e9;z-index: 10;position: relative;line-height: 16px;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;height: 16px;}
.mocats .moli ul{padding:20px 15px;}
.mocats .moli ul li{margin-bottom: 10px;padding:0 60px 0 26px;position: relative;}
.mocats .moli ul li:last-child{margin-bottom: 0}
.mocats .moli ul a{display: block;line-height: 20px;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;height: 20px;}
.mocats .moli ul span{position: absolute;right: 0;top: -1px;color: #777;font-size: 12px;width: 55px;height: 20px;overflow: hidden;}
.mocats .moli ul span .icon{font-size:14px;}
.mocats .moli ul li > i{position: absolute;left: 0;top:0;background: #ccc;width: 16px;height: 16px;line-height:16px;border-radius: 2px;text-align: center;color: #fff;font-size: 12px;font-style: normal;}
.mocats .moli ul li:first-child > i{background: #ff5f33;}
.mocats .moli ul li:nth-child(2) > i{background: #ff5f33;opacity: .8}
.mocats .moli ul li:nth-child(3) > i{background: #ff5f33;opacity: .6}
.post .post-sign, .article-header .post-sign{background: #ff9600;color:#fff;padding:0px 4px;display: inline-block;border-radius: 5px 0 5px 0;font-size: 12px;margin-right: 5px;line-height: 18px;position: relative;top: -1px;font-weight: normal;}
.more-all{text-align:center;margin-bottom:30px;margin-top:15px}
.more-all a{display:inline-block;padding:10px 80px;text-decoration:none;background-color:#ff5f33;color:#fff !important;border-radius:50px;}
.more-all a:hover{opacity:.88}
.posts-loading{display:none;margin-bottom:30px;font-size:16px;text-align:center;color:#AAB2BD;padding:20px}
.pagination{margin:0;padding:0 10px;margin-bottom:30px;text-align:center;font-size:12px;display:block;border-radius:0}
.pagination ul{display:inline-block !important;*display:inline;*zoom:1;margin-left:0;margin-bottom:0;padding:0}
.pagination ul > li{display:inline}
.pagination ul > li > a,.pagination ul > li > span{margin:0 2px;float:left;padding:5px 12px;background-color:#ddd;color:#666;border-radius:2px;opacity:.88}
.pagination ul > li > a:hover,.pagination ul > li > a:focus{opacity:1}
.pagination ul > .active > a,.pagination ul > .active > span{background-color:#ff5f33;color:#fff}
.pagination ul > .active > a,.pagination ul > .active > span{cursor:default}
.pagination ul > li > span,.pagination ul > .disabled > span,.pagination ul > .disabled > a,.pagination ul > .disabled > a:hover,.pagination ul > .disabled > a:focus{color:#999;background-color:transparent;cursor:default}
.pagination ul > li #jump_page{height: 28px;border:none;border-bottom:1px solid #eaeaea;width: 40px;padding:0;float: left;margin-left: 10px;-moz-appearance:textfield;}
.pagination ul > li #jump_page::-webkit-inner-spin-button, .pagination ul > li #jump_page::-webkit-outer-spin-button{-webkit-appearance: none;margin: 0;}
.pagination ul > li .page-jump{background-color: transparent !important;padding:5px;}
.pagination-trigger{padding:10px 15px;text-align:center;margin-bottom:20px}
.pagination-trigger a{margin:0 5px;display:inline-block;padding:8px 25px;text-decoration:none;background-color:#ff5f33;color:#fff !important;border-radius:2px;opacity:.88}
.pagination-trigger a:hover{opacity:1}
.pagination-loading{font-size:16px;text-align:center;color:#AAB2BD;padding:10px 15px;margin-bottom:20px}
.home-authors{background: #fff;padding:40px 0 25px;}
.home-authors h2{margin: 0 0 45px;font-size: 24px;text-align: center;position: relative;font-weight: normal;}
.home-authors h2 span{position: relative;}
.home-authors h2 span:after{content:" ";width:20px;background:#ff5f33;height:3px;position:absolute;left:0;top:45px;margin-left:calc(50% - 10px);border-radius: 1.5px;}
.home-authors .home-authors-items{margin:0 -10px;}
.home-authors .home-authors-items .home-author{float:left;margin:0 10px 20px;width:calc(12.5% - 20px);text-align: center;}
.home-authors .home-authors-items .home-author .avatar{border-radius: 50%}
.home-authors .home-authors-items .home-author .name{display: block;margin-top: 5px;color:#777;line-height: 20px;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;height: 20px;}
.home-blogs{background: #f9f9f9;padding:40px 0 25px;}
.home-blogs h2{margin: 0 0 45px;font-size: 24px;text-align: center;position: relative;font-weight: normal;}
.home-blogs h2 span{position: relative;}
.home-blogs h2 span:after{content:" ";width:20px;background:#ff5f33;height:3px;position:absolute;left:0;top:45px;margin-left:calc(50% - 10px);border-radius: 1.5px;}
.home-blogs .desc{text-align: center;color: #777;margin-bottom: 30px;margin-top: -15px;font-size: 14px;}
.home-blogs .lists .grid.nopic{padding-left:10px !important;}
.home-blogs .lists .grid.nopic .grid-meta{left: 8px;}
.home-blogs .more{text-align: center;margin-bottom: 30px;margin-top: 15px;}
.home-blogs .more a{display: inline-block;padding: 10px 80px;text-decoration: none;background-color: #ff5f33;color: #fff !important;border-radius: 50px;}
.home-blogs .more a:hover{opacity: .88}
.breadcrumbs{padding:0 0 15px;font-size:14px;color:#777;margin: -10px 0 0;}
.breadcrumbs .sep{color:#777;}
.breadcrumbs .current{color:#777;}
.single-video{border-radius: 3px;overflow: hidden;font-size: 0;margin-bottom: 20px;position: relative;background: #000;}
.content-wrap .single-video{margin-bottom: 0;border-radius: 3px 3px 0 0;}
.single-video iframe{width: 100%;}
.single-video .erphp-vod{margin-bottom: 0}
.ckplayer-erphpdown-video, .dplayer-erphpdown-video{background: #000;color:#fff;font-size: 16px;text-align: center;position:relative;}
.ckplayer-erphpdown-video .playicon, .dplayer-erphpdown-video .playicon{position: absolute;top:calc(50% - 40px);width: 80px;height: 80px;display: inline-block;left:calc(50% - 40px);}
.ckplayer-erphpdown-video .icon-play, .dplayer-erphpdown-video .icon-play{font-size: 80px;top:-26px;}
.ckplayer-erphpdown-video #erphpdown, .dplayer-erphpdown-video #erphpdown{border:none;position: absolute;bottom:0;left: 15px;right: 15px;margin-bottom: 10px;}
.videos-menu{position: absolute;right: 0;top:0;bottom: 0;padding:0;width: 0;z-index: 999;transition: all .3s ease 0s;overflow-y: auto;background: rgba(35,35,35,.7);}
.videos-menu.active{width: 280px;padding:10px 15px;}
.videos-menu h4{font-size: 16px;color: #fff;margin-bottom: 10px;font-weight: normal;}
.videos-menu .item {position: relative;padding-right: 60px;}
.videos-menu .item a {display: block;margin-bottom: 8px;font-size: 15px;height: 21px;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 1;-webkit-box-orient: vertical;color: #999;}
.videos-menu .item a.active, .videos-menu .item a:hover {color: #fff;}
.videos-menu .item span {position: absolute;right: 0;top: 1px;color: #999;font-size: 12px;}
.vmenu-trigger{position: absolute;right: 0;top:calc(50% - 20px);height: 40px;width:20px;border-radius: 3px 0 0 3px;text-align: center;color: #999 !important;background: rgba(35,35,35,.7);display: inline-block;line-height: 40px;transition: all .3s ease 0s;z-index: 999;}
.vmenu-trigger.active{right: 280px;}
.vmenu-trigger i{font-size: 16px;top:0;}
.vmenu-trigger.active i:before{content:"\e67d" !important;}
.single-video .erphpdown .erphpdown-vip{color: #845602 !important;}
.article-header-box{background: #fff;padding:20px 20px 20px 445px;border-radius: 3px;margin-bottom: 20px;}
.header-box-img{width: 400px;height: 260px;margin-left: -425px;float: left;}
.header-box-img img{width: 100%;height: auto;object-fit: cover;}
.header-box-con .article-title{margin-bottom: 0;margin-top: -4px;}
.header-box-con .custom-metas{background: #f5f5f5;padding:7px 10px;font-size: 14px;margin-bottom: 15px;overflow: hidden;color: #777}
.header-box-con .custom-metas:empty{display: none;}
.header-box-con .custom-metas .meta{float: left;width: 50%;padding-right: 15px;margin:2px 0;}
.header-box-con .excerpt{margin-bottom: 15px;color: #8d939c;font-size: 14px;line-height:20px;overflow: hidden;-o-text-overflow: ellipsis;text-overflow: ellipsis;display: -webkit-box;-webkit-line-clamp: 3;-webkit-box-orient: vertical;height: 60px;}
.header-box-con .erphpdown{border:none !important;padding:0 !important;margin-bottom: 0}
.header-box-con .erphpdown > legend{display: none;}
.header-box-con .erphpdown .demo-demo{background:#67CE9B;color: #fff;}
.header-box-con .erphpdown .erphpdown-btn-large{border-radius: 3px;padding:8px 22px;font-size: 14px;line-height: 1.5;float:left;margin-left: 0;margin-right: 15px;}
.header-box-con .erphpdown .erphpdown-btn-large.bought{background: #5cb85c !important;}
.header-box-con .erphpdown .erphpdown-btn-large.vip{background: #fbb715 !important;}
.header-box-con .erphpdown .erphpdown-btn-large.disabled{opacity: .8}
.header-box-con .erphpdown .erphpdown-btn-large:hover{opacity: .9;}
.header-box-con .erphpdown .erphpdown-box-tips{display: inline-block;border:1px dashed #f58b36;background: #fff3e9;border-radius: 3px;height: 37px;line-height:36px;padding:0 13px;}
.header-box-con .erphpdown .erphpdown-box-tips .erphpdown-vip, .header-box-con .erphpdown .erphpdown-box-tips .erphp-login-must{color: #f58b36 !important;padding:0;background: transparent !important;font-size: 14px;}
.header-box-con .erphpdown .erphpdown-box-tips .erphp-login-must{margin-right: 6px;}
.header-box-con .erphpdown .erphpdown-box-tips .icon-crown-s{color: #fbb715;}
.header-box-con .erphpdown .erphpdown-tips-free{margin-bottom: 0;margin-top: 5px;}
.header-box-con .erphpdown .erphpdown-tips{margin-top: 10px}
.single-images{overflow: hidden;border-radius: 3px 3px 0 0;}
.single-images .swiper-post-container{margin-bottom: 0;position: relative;}
.single-images .swiper-post-container img{width: 100%;height: auto;border-radius: 3px 3px 0 0}
.single-content{background:#fff;padding:20px;margin-bottom:20px;border-radius: 3px;}
.single-video+.single-content{border-radius: 0 0 3px 3px}
.page-template-guestbook .single-content{margin-bottom: 0;border-radius: 3px 3px 0 0}
.article-title{font-size:24px;margin:0 0 10px;font-weight: normal;}
.article-title.center{position: relative;top: inherit;left: inherit;transform: unset;}
.article-meta{color:#777;margin-bottom:15px;font-size: 13px;}
.article-meta .item{margin-right:15px;display:inline-block}
.article-meta .post-edit-link{margin-right: 15px;}
.article-meta .item.right{float: right;margin-right: 0}
.article-content{font-size:16px;line-height:1.7;word-wrap:break-word;overflow:hidden;margin-bottom: 10px;}
.page-template-guestbook .single-content p:last-child{margin-bottom: 0}
.article-content .article-tips{text-align: center;margin:0 auto 20px;max-width: 80%;font-size: 13px;}
.article-content .article-tips > div{background: #fff3e9;padding: 4px 18px 5px;border-radius: 2px;display: inline-block;color:#f58b36;}
.article-content img{max-width:100%;height:auto}
.article-content h1,.article-content h2,.article-content h3,.article-content h4,.article-content h5,.article-content h6,.article-content p,.article-content ul,.article-content ol,.article-content table,.article-content pre,.article-content blockquote,.article-content .wp-caption{margin:0 0 30px}
.article-content a{text-decoration:underline}
.article-content pre{margin:20px 0;font:12px/20px 'courier new';background:#4A4A4A;padding:10px 20px;color:#F8F8D4;border:none}
.article-content blockquote{margin:30px 30px;padding:15px 20px 1px;font-size:16px;color:#999;border-left:5px solid #EEE}
.article-content blockquote p{margin:0;padding:0;margin-bottom:10px}
.article-content h2{color:#444;font-size:20px;margin:30px 0;padding:0 0 0 10px;border-left:7px solid #FF6651;margin-left:-18px}
.article-content h3{font-size:18px;border-left: 4px solid #ff5f33;padding: 12px;line-height:20px;background: #f6f6f6;font-weight: normal;}
.article-content h4{font-size:16px}
.article-content h5{font-size:16px}
.article-content h6{font-size:16px}
.article-content ul,.article-content ol{margin:0 0 30px 40px}
.article-content ul, .article-content ul li{list-style: disc;}
.article-content ol, .article-content ol li{list-style: decimal;}
.article-content p{margin-bottom:30px;overflow: hidden;}
.article-content p:empty{margin-bottom:0;}
.article-content pre{word-wrap:break-word}
.article-content table{border-top:solid 1px #ddd;border-left:solid 1px #ddd;width:100%;margin-bottom:30px}
.article-content table th{background-color:#f9f9f9;text-align:center}
.article-content table th,.article-content table td{border-bottom:solid 1px #ddd;border-right:solid 1px #ddd;padding:5px 10px}
.article-content embed[align="middle"]{margin:0 auto;display:block}
.article-content .gallery-login{text-align: center;font-size: 13px;line-height: 14px;}
.article-content .gallery-login span{background: #eaeaea;padding:5px 18px;border-radius: 2px;display: inline-block;margin-bottom: 5px;}
.article-content .gallery-login a{display: inline-block;margin-left: 10px;text-decoration: none;color:#ff5f33;}
.article-content .gallery{margin: 0 -1% 20px;}
.article-content .gallery.gallery-column-9{margin: 0 -0.3% 20px;}
.article-content .gallery.gallery-column-8{margin: 0 -0.4% 20px;}
.article-content .gallery.gallery-column-7{margin: 0 -0.5% 20px;}
.article-content .gallery.gallery-column-6{margin: 0 -0.6% 20px;}
.article-content .gallery.gallery-column-5{margin: 0 -0.8% 20px;}
.article-content .gallery .gallery-item{float: left;width: 25%;padding:1%;}
.article-content .gallery.gallery-column-9 .gallery-item{width: 11.1111%;padding:0.3%;}
.article-content .gallery.gallery-column-8 .gallery-item{width: 12.5%;padding:0.4%;}
.article-content .gallery.gallery-column-7 .gallery-item{width: 14.2857%;padding:0.5%;}
.article-content .gallery.gallery-column-6 .gallery-item{width: 16.6666%;padding:0.6%;}
.article-content .gallery.gallery-column-5 .gallery-item{width: 20%;padding:0.8%;}
.article-content .gallery.gallery-column-4 .gallery-item{width: 25%;}
.article-content .gallery.gallery-column-3 .gallery-item{width: 33.3333%;}
.article-content .gallery.gallery-column-2 .gallery-item{width: 50%;}
.article-content .gallery.gallery-column-1 .gallery-item{width: 100%;}
.article-content .gallery-item img{border:none !important;border-radius: 2px;box-shadow: 0px 0px 10px rgba(0,0,0,.18);width: 100%;height: auto; transition: all .3s ease-out 0s;object-fit: cover;}
.article-content .gallery-blur-item img {filter: blur(2px);}
.article-content .alignleft{float:left;margin:0 30px 30px 0}
.article-content .aligncenter{margin:0 auto;text-align:center;display:block}
.article-content .aligncenter img{margin:0 auto;display:block}
.article-content .alignright{float:right;margin:0 0 30px 30px}
.article-content .wp-caption{margin-bottom:25px;max-width:100%}
.article-content .wp-caption img{margin-bottom:5px}
.article-content .wp-caption p{margin:0;text-indent:0}
.article-content .wp-caption .alignnone{text-align:center}
.article-content .wp-caption .wp-caption-text{font-size:14px;color:#999}
.article-content .wp-video{margin-bottom: 30px;font-size: 0;}
.article-content .mejs-container, .article-content .wp-video{width: 100% !important;}
.article-content .erphpdown-content-vip{padding:15px 25px;border:2px dashed #ff5f33;font-size:15px;margin-bottom: 30px;display: block;border-radius: 5px;}
.article-content .erphpdown-content-vip2{text-align: center;color:#ff5f33;}
.article-content .erphpdown-content-vip > legend{color: #ff5f33;padding:0 5px;font-weight: bold;font-size: 17px;}
.article-content .erphpdown-content-vip .erphpdown-buy, .article-content .erphpdown-content-vip .erphpdown-see-btn, .article-content .erphpdown-content-vip .erphp-login-must{border-radius: 20px;background:#ff5f33;color:#fff !important;padding:7px 18px 8px;text-decoration: none !important;font-size: 14px;display: inline-block;margin-left: 6px;line-height: 1}
.article-content .erphpdown-content-vip .erphpdown-price{display: inline-block;margin-left: 5px;font-size: 18px;margin-right: 5px;font-weight: 600;color: #ff5f33}
.article-content .article-audio{position:relative;display:inline-block;padding-top:40px;padding-bottom:70px;width:355px;height:321px;text-align:center}
.article-content .article-audio .guxz{display:inline-block;width:359px;height:359px;background:url(../img/audio-2.png)}
.article-content .article-audio .dy{position:absolute;top:31px;right:-109px;width:85px;height:82px;background:url(../img/audio-1.png) no-repeat -356px -18px}
.article-content .article-audio .xy{position:absolute;top:31px;right:-108px;z-index:3;width:85px;height:85px;background:url(../img/audio-1.png) no-repeat -450px -18px}
.article-content .article-audio .gp{position:absolute;top:84px;right:-70px;width:173px;height:272px;background:url(../img/audio-1.png) no-repeat -350px -138px;transition:all .6s ease-in-out;transform:rotate(-32deg);transform-origin:right top}
.article-content .article-audio .imgs{transition:all .6s ease-in-out;transform:rotate(-32deg);transform-origin:right top}
.article-content .article-audio .gp.skewing{transform:rotate(0)}
.article-content .article-audio .xuanz{animation:circleRoate 200s;animation-timing-function:linear}
.article-content .audio{margin-bottom:30px;width:100%;text-align: center;}
.article-content .audio .audio-play{display:inline-block;width:51px;height:51px;background:url(../img/audio.png) -14px -16px no-repeat;cursor:pointer}
.article-content .audio .audio-play.on{background-position:-85px -16px}
.article-content .audio .times{display:inline-block;width:288px;height:30px}
.article-content .audio .info{display:inline-block;width:207px;height:100px}
.article-content .audio .star-time{display:inline-block;margin-left:17px;width:63px;height:51px;color:#696969;text-align:center;font-size:20px;line-height:51px;position: relative;top:-17px;}
.article-content .audio .time-bar{position:relative;z-index:1;display:inline-block;overflow:hidden;top:-3px;width:calc(100% - 214px);max-width:527px;height:41px;background:#bfbfbf;cursor:pointer;position: relative;}
.article-content .audio .time-bar .progressBar{position:absolute;left:0;z-index:3;width:100%;height:100%;background:url(../img/audio.png) no-repeat -16px -83px}
.article-content .audio .time-bar .move-color{position:absolute;top:0;left:0;z-index:2;display:block;width:0;height:24px;height:100%;background-color:#658ae4}
.article-content .audio .time-bar .timeTip{position:absolute;top:5px;left:0;z-index:3;width:40px;color:#0099e5;text-align:center;font-size:12px}
.article-content .audio .end-time{display:inline-block;width:63px;height:51px;color:#696969;font-size:20px;line-height:51px;position: relative;top:-17px;}
.article-content .post-password-form{text-align: center;}
.article-content .post-password-form input[name="post_password"]{height: 35px;border-radius: 3px;border: 1px solid #aaa;padding: 5px 10px}
.article-content .post-password-form input[type="submit"]{border: none;background: #5cb85c;color: #fff;height: 35px;width: 80px;border-radius: 3px;font-size: 14px;position: relative;top: -2px}
@keyframes circleRoate{from{transform:rotate(0) infinite}
to{transform:rotate(7600deg)}
}
.wp-block-gallery{margin:0 -1%;}
.wp-block-gallery.columns-5{margin:0 -0.8%;}
.wp-block-gallery.columns-6{margin:0 -0.6%;}
.wp-block-gallery.columns-7{margin:0 -0.5%;}
.wp-block-gallery.columns-8{margin:0 -0.4%;}
.wp-block-gallery.columns-9{margin:0 -0.3%;}
.blocks-gallery-grid{list-style: none;width: 100%;overflow: hidden;margin-left: 0 !important}
.blocks-gallery-grid .blocks-gallery-item{list-style: none;width: 25%;padding:1%;float: left;}
.wp-block-gallery.columns-9 .blocks-gallery-grid .blocks-gallery-item{width: 11.1111%;padding:0.3%;}
.wp-block-gallery.columns-8 .blocks-gallery-grid .blocks-gallery-item{width: 12.5%;padding:0.4%;}
.wp-block-gallery.columns-7 .blocks-gallery-grid .blocks-gallery-item{width: 14.2857%;padding:0.5%;}
.wp-block-gallery.columns-6 .blocks-gallery-grid .blocks-gallery-item{width: 16.6666%;padding:0.6%;}
.wp-block-gallery.columns-5 .blocks-gallery-grid .blocks-gallery-item{width: 20%;padding:0.8%;}
.wp-block-gallery.columns-4 .blocks-gallery-grid .blocks-gallery-item{width: 25%;}
.wp-block-gallery.columns-3 .blocks-gallery-grid .blocks-gallery-item{width: 33.3333%;}
.wp-block-gallery.columns-2 .blocks-gallery-grid .blocks-gallery-item{width: 50%;}
.wp-block-gallery.columns-1 .blocks-gallery-grid .blocks-gallery-item{width: 100%;}
.wp-block-media-text{overflow: hidden;margin-bottom: 30px;}
.wp-block-media-text .wp-block-media-text__media, .wp-block-media-text .wp-block-media-text__content{width: 50%;float: left;}
.wp-block-media-text .wp-block-media-text__content{padding:10px 20px;font-size: 28px;}
.wp-block-image{margin-bottom: 30px;text-align: center;}
.wp-block-columns{position:relative;flex-wrap: nowrap;overflow-wrap: break-word;display: flex;margin:0 -10px 30px;}
.wp-block-columns .wp-block-column{max-width: none;margin:0;flex-basis: 0;flex-grow: 1;min-width: 0; word-break: break-word;padding:10px;}
.ead-preview{margin-bottom: 20px}
.has-text-align-center{text-align: center;}
.has-text-align-left{text-align: left;}
.has-text-align-right{text-align: right;}
.modown-login, .modown-reply{padding: 10px;border: 2px dashed #ff5f33;text-align: center;font-size: 14px;margin-bottom: 20px;}
.modown-login a, .modown-reply a{border-radius: 20px;background:#ff5f33;color:#fff !important;padding:5px 12px;text-decoration: none !important;font-size: 12px;display: inline-block;margin-left: 6px;margin-right:6px;line-height: 1}
.modown-reply span{color:#ff5f33;}
.widget .modown-reply{margin-bottom: 0}
.prettyprint,pre.prettyprint{background-color:#272822;border:none;overflow:hidden;padding:10px 15px;border-radius:0;overflow-x:scroll}
.prettyprint.linenums,pre.prettyprint.linenums{-webkit-box-shadow:inset 40px 0 0 #39382E,inset 41px 0 0 #464741;-moz-box-shadow:inset 40px 0 0 #39382E,inset 41px 0 0 #464741;box-shadow:inset 40px 0 0 #39382E,inset 41px 0 0 #464741}
.prettyprint.linenums ol,pre.prettyprint.linenums ol{margin:0 0 0 30px}
.prettyprint.linenums ol li,pre.prettyprint.linenums ol li{padding-left:12px;color:#bebec5;line-height:20px;margin-left:0;list-style:decimal;margin-bottom:0}
.prettyprint .com{color:#93a1a1}
.prettyprint .lit{color:#AE81FF}
.prettyprint .pun,.prettyprint .opn,.prettyprint .clo{color:#F8F8F2}
.prettyprint .fun{color:#dc322f}
.prettyprint .str,.prettyprint .atv{color:#E6DB74}
.prettyprint .kwd,.prettyprint .tag{color:#F92659}
.prettyprint .typ,.prettyprint .atn,.prettyprint .dec,.prettyprint .var{color:#A6E22E}
.prettyprint .pln{color:#66D9EF}
.erphpdown{display: none;padding: 15px 25px 25px;border: 2px dashed #ff5f33;font-size: 14px;margin-bottom: 20px;border-radius: 5px;}
.erphpdown > legend{color: #ff5f33;padding:0 5px;font-weight: bold;font-size: 17px;line-height:1.5;}
.erphpdown .erphpdown-title{font-size: 16px;color: #ff5f33;margin-bottom: 5px;}
.erphpdown .erphpdown-item{margin-bottom: 5px;}
.erphpdown .erphpdown-free{margin-bottom: 15px;}
.erphpdown .erphpdown-tips{margin-top: 5px;color:#f58b36;font-size: 13px;}
.erphpdown .erphpdown-tips-free{margin-top: -10px;margin-bottom: 15px;}
.erphpdown .erphpdown-price{display: inline-block;margin-left: 5px;font-size: 18px;margin-right: 5px;font-weight: 600;color: #ff5f33;line-height: 1.2}
.erphpdown .erphpdown-buy, .erphpdown .erphpdown-down, .erphpdown .erphp-login-must{display: inline-block;margin-left: 6px;background: #ff5f33;color: #fff !important;padding: 7px 18px 8px;text-decoration: none !important;font-size: 14px;line-height: 1;border-radius: 20px;}
.erphpdown .erphpdown-down{background: #5cb85c;}
.erphpdown .erphpdown-vip{display: inline-block;margin-left: 6px;background: #fbb715;color: #fff !important;padding: 7px 18px 8px;text-decoration: none !important;font-size: 14px;line-height: 1;border-radius: 20px;}
.erphpdown .erphpdown-copy {text-decoration: none; font-size: 12px;color: #777;}
.erphpdown .erphpdown-child{margin-bottom: 10px;border: 1px dashed #f5f5f5;background: #f5f5f5;padding:5px 15px 15px;position: relative;}
.erphpdown .erphpdown-child:last-child{margin-bottom: 0}
.erphpdown .erphpdown-child > legend{padding:0 5px;color: #777;font-size: 15px;}
.erphpdown-box{padding:15px 25px 25px;border:2px dashed #ff5f33;margin-bottom:30px;font-size:14px;line-height:1.5;display:none;position:relative;min-height: 105px;border-radius: 5px;}
.erphpdown-box > legend {color: #ff5f33;padding: 0 5px;font-weight: bold;font-size: 17px;}
.erphpdown-free-box > legend{color: #5cb85c !important;}
.erphpdown-box .erphpdown-child{margin-bottom: 10px;border: 1px dashed #f5f5f5;background: #f5f5f5;padding: 0 15px 10px;position: relative;min-height: 102px}
.erphpdown-box .erphpdown-child > legend{padding: 0 5px;color: #777;font-size: 15px;}
.erphpdown-box2{padding-right: 0;min-height: auto}
.erphpdown-box2 .erphpdown-price{font-size:18px;color:#ff5f33;margin:0 5px;line-height: 1.1;font-weight: 600}
.erphpdown-box.erphpdown-free-box{border-color: #5cb85c !important;}
.erphpdown-box.erphpdown-free-box .erphpdown-down{background: #5cb85c !important;}
.erphpdown-box .item{margin-bottom:7px;}
.erphpdown-box .erphpdown-child .item{margin-top: 7px;}
.erphpdown-box .item2{margin-left: 0;margin-bottom: 10px;}
.erphpdown-box .item2:last-child{margin-bottom: 10px;}
.erphpdown-box .erphpdown-copy{text-decoration: none;font-size: 12px;color:#777;}
.erphpdown-box t{display:inline-block;margin-right:10px}
.erphpdown-box .price span{font-size:24px;color:#ff5f33;line-height: 1;}
.erphpdown-box .vip a{display:inline-block;margin-left:10px;padding:6px 15px 7px;background:#fbb715;color:#fff;border-radius:20px;font-size:13px;text-decoration:none;line-height: 1}
.erphpdown-box .down{display:block;background:#ff5f33;color:#fff !important;border-radius:3px;padding:8px 0;text-align:center;margin-top:15px;text-decoration:none;line-height:1.7;position:absolute;right:25px;top:10px;width:200px}
.erphpdown-box .down.bought{background: #5cb85c !important}
.erphpdown-box .down:hover{opacity:.8}
.erphpdown-box .down.disabled{opacity: .8}
.erphpdown-box .down2{top: 59px}
.erphpdown-box .epdvip{position: absolute;top:-2px;right: -2px;background:#ff5f33;color:#fff;padding:2px 5px 1px;font-size: 12px;}
.erphpdown-box .tips2{color:#f58b36;font-size:13px;margin-top: 10px;}
.erphpdown-box .custom-metas{margin-top: 10px;color: #777;font-size: 13px;}
.erphpdown-box .custom-metas:empty{display: none;}
.erphpdown-box .meta{font-size:12px;color:#999;margin-top:10px;text-align:right;position:absolute;right:10px;bottom:5px;width:200px}
.erphpdown-box .erphpdown-vip{border-radius: 20px;background:#fbb715;color:#fff !important;padding:5px 12px;text-decoration: none !important;font-size: 12px;display: inline-block;margin-left: 8px;line-height: 1}
.erphpdown-box .erphpdown-buy{border-radius: 20px;background:#ff5f33;color:#fff !important;padding:5px 12px;text-decoration: none !important;font-size: 12px;display: inline-block;margin-left: 8px;line-height: 1}
.erphpdown-box .erphpdown-buy.down{border-radius:3px;padding:8px 0;line-height:1.7;width:200px;font-size: 14px;}
.erphpdown-box .erphpdown-down{border-radius: 20px;background:#ff5f33;color:#fff !important;padding:5px 12px;text-decoration: none !important;font-size: 12px;display: inline-block;margin-left: 8px;line-height: 1}
.erphpdown-box .erphpdown-icon-buy, .erphpdown-box .erphpdown-icon-vip{width: 35px;height: 35px;position: absolute;top: 8px;left: -2px;overflow: hidden;z-index: 10;}
.erphpdown-box .erphpdown-child .erphpdown-icon-buy, .erphpdown-box .erphpdown-child .erphpdown-icon-vip{top: 6px;left: -4px;}
.erphpdown-box .erphpdown-icon-buy:before, .erphpdown-box .erphpdown-icon-vip:before, .erphpdown-box .erphpdown-icon-buy:after, .erphpdown-box .erphpdown-icon-vip:after{content: '';position: absolute;z-index: 0;background-color: #5cb85c;}
.erphpdown-box .erphpdown-icon-buy:before, .erphpdown-box .erphpdown-icon-vip:before{height: 3px;width: 10px;right: 0;top: 0;}
.erphpdown-box .erphpdown-icon-buy:after, .erphpdown-box .erphpdown-icon-vip:after{height: 10px;width: 3px;left: 0;bottom: 0;}
.erphpdown-box .erphpdown-icon-buy i, .erphpdown-box .erphpdown-icon-vip i{height: 14px;line-height: 14px;width: 60px;background-color: #5cb85c;-webkit-box-shadow: -1.204px 1.597px 4px 0 rgba(0,0,0,.22);box-shadow: -1.204px 1.597px 4px 0 rgba(0,0,0,.22);position: absolute;top: 50%;left: -18px;margin-top: -13px;font-size: 12px;color: #fff;text-align: center;-webkit-transform: rotate(-45deg);-ms-transform: rotate(-45deg);transform: rotate(-45deg);-webkit-transform-origin: center;-ms-transform-origin: center;transform-origin: center;z-index: 1;font-style: normal;}
.erphpdown-box .erphpdown-icon-vip i{background-color: #fbb715;}
.erphpdown-box .erphpdown-icon-vip:before, .erphpdown-box .erphpdown-icon-vip:after{background-color:#fbb715}
.erphpdown-see-tips{opacity: .7;font-size: 12px;margin-left: 5px;}
.article-paging{text-align:center;font-size:12px;overflow:hidden;clear:both;margin:15px 0 45px}
.article-paging a{text-decoration: none;}
.article-paging .post-page-numbers{margin:3px 2px;display:inline-block;padding:4px 10px;border-radius:2px;background-color:#bbb;color:#fff;min-width: 28px;}
.article-paging .post-page-numbers.current{background: #ff5f33;color: #fff}
.article-copyright{font-size: 14px;color: #a7a7a7;background: #f5f5f5;padding:10px 15px;margin-bottom:30px}
.article-copyright a{text-decoration: none;}
.article-tags{margin-bottom:20px}
.article-tags a{display:inline-block;margin-bottom:3px;padding:8px 10px 7px;line-height:1;font-size:12px;border-radius:2px;margin-right:5px;color:#fff;background-color:#ff5f33}
.article-tags a:nth-child(5n) {background-color: #4A4A4A}
.article-tags a:nth-child(5n+1) {background-color: #ff5e5c}
.article-tags a:nth-child(5n+2) {background-color: #ffbb50}
.article-tags a:nth-child(5n+3) {background-color: #1ac756}
.article-tags a:nth-child(5n+4) {background-color: #19B5FE}
.article-act{text-align: center;margin:10px 0 30px;position: relative;}
.article-act .article-shang{display: inline-block;color: #ff5f33 !important;width: 60px;height: 60px;line-height: 60px;margin: 0 5px;border-radius: 50%;border: 2px solid hsla(210,8%,51%,.09);position: relative;font-size: x-large;background: #f9f9f9;top:-3px;}
.article-act > .popup{position:absolute;width:280px;background:#fbfbfb;bottom:80px;left:50%;margin-left:-140px;color:#fff;box-shadow:0 0 5px 0 rgba(17, 58, 93, 0.1);border-radius:5px;line-height:0;z-index: 9}
.article-act > .wechat{background:#05af4e}
.article-act > .alipay{background:#00a2ea}
.article-act > .popup > .head{text-align:center;padding-top:30px}
.article-act .qrcode{text-align:center}
.article-act .qrcode img{margin:30px auto;width:80%}
.article-act ul.platform{padding:0!important;margin:0!important;text-align:center;background:#FFF;border-bottom-left-radius:5px;border-bottom-right-radius:5px}
.article-act ul.platform li{display:inline-block;cursor:pointer;margin:5px;filter:grayscale(100%)}
.article-act ul.platform li.active{font-weight:600;filter:grayscale(0%)}
.article-act ul.platform li.sicon-wechat{background:url(../img/wechat.svg) no-repeat center center;width:24px;height:24px;background-size:cover}
.article-act ul.platform li.sicon-alipay{background:url(../img/alipay.svg) no-repeat center center;width:24px;height:24px;background-size:cover}
.article-act .article-collect{display: inline-block;color: #bbb !important;width: 60px;height: 60px;line-height: 60px;margin: 0 5px;border-radius: 50%;border: 2px solid hsla(210,8%,51%,.09);position: relative;}
.article-act .article-collect.active{color: #fbb715 !important;}
.article-act .article-collect.active .icon:before{content:'\e8d3';}
.article-act .article-collect .icon{top:-10px;font-size:26px;}
.article-act .article-zan{margin: 0 5px;border-radius: 50%;border: 2px solid hsla(210,8%,51%,.09);display: inline-block;color: #bbb !important;width:60px;height: 60px;line-height: 60px;position: relative;}
.article-act .article-zan.active{color: #ff5f33 !important;}
.article-act .article-zan .icon{top:-10px;font-size:26px;}
.article-act a span{font-family: tahoma,arial,sans-serif;position: absolute;bottom: -15px;left: 0;right: 0;font-size: 12px;}
.article-shares a{position:relative;width:30px;height:30px;text-align:center;line-height:30px;display:inline-block;margin-right:10px;opacity:.8;cursor:pointer;color:#fff !important;background:#ff5f33;border-radius: 50%;}
.article-shares .share-popover{-webkit-transition:all .3s ease-in-out;-moz-transition:all .3s ease-in-out;transition:all .3s ease-in-out;visibility:hidden;opacity:0;position:absolute;bottom:100%;left:0;width:90px;height:90px;margin-bottom:20px;padding-bottom:6px;background-color:transparent}
.article-shares .share-popover .share-popover-inner{display:block;background-color:#FFF;border:1px solid #999;padding:4px;border-radius:2px;position:relative;bottom:6px;height:90px}
.article-shares .share-popover .share-popover-inner::before,.shares .share-popover .share-popover-inner::after{content:'';position:absolute;bottom:-5px;left:9px;border-left:5px solid transparent;border-right:5px solid transparent}
.article-shares .share-popover .share-popover-inner::before{border-top:5px solid #555}
.article-shares .share-popover .share-popover-inner::after{border-top:5px solid #fff;margin-bottom:1px}
.article-shares a.share-weixin{background:#7BD172}
.article-shares a.share-tsina{background:#FF8D8D}
.article-shares a.share-sqq{background:#F68575}
.article-shares a.share-qzone{background:#FBC440}
.article-shares a.share-douban{background:#67CE9B}
.article-shares .article-cover #wx-thumb-qrcode{display: none;}
.article-shares a:hover{opacity: 1.0}
.article-shares a:hover .share-popover{visibility:visible;opacity:1;margin-bottom:0}
.article-shares b{font-size: 12px;color: #777;font-weight: normal;line-height: 30px;}
.article-shares i{font-size:18px;top:-1px;}
.article-shares a.right{float: right;width: auto;border-radius: 20px;line-height: 25px;padding:0 10px;font-size: 14px;background: transparent;border:1px solid #777;color:#777 !important;}
.article-shares a.right:last-child{margin-right: 0}
.article-shares a.right .icon{top:1px;font-size: 16px;}
.article-nav{clear:both;overflow:hidden;color:#777;font-size:12px;background: #fff;border-radius: 3px;margin-bottom: 20px;padding:20px;}
.article-nav a{font-size:14px}
.article-nav .article-nav-prev{float:left;width:50%;border-right: 1px dashed #eaeaea;}
.article-nav .article-nav-next{float:right;width:50%;text-align:right}
.single-related{margin-bottom:20px;background:#fff;padding:20px 20px 0;border-radius: 3px;}
.single-related .related-title{margin-bottom:15px;line-height:1;font-weight:normal;font-size:17px}
.single-related .related-title .icon{font-size: 18px;color: #ff5f33;line-height: 1}
.single-related .grids{margin-bottom: 0}
.single-related .grids .grid{width:calc(33.333% - 20px);}
.gd-mini .single-related .grids .grid{width:calc(25% - 15px);}
.single-related .grids .grid .img{height: 166px;}
.single-related .grids .audio .info{width: 175px;}
.single-related .grids .audio .time-bar{width: 145px}
.gd-mini .single-related .grids .grid .img{height: 124px;}
.home-widgets{margin:0 -10px 0;text-align: left;}
.home-widgets .home-widget{width: 25%;float: left;padding: 0 10px;}
}.home-widgets .vitara_slide_in{border-radius:3px;margin-bottom:15px;margin-top:15px}
@media (min-width:1024px){.home-widgets .vitara_slide_in{margin-bottom:0;margin-top:0}
}@media (max-width:767px){.home-widgets .vitara_slide_in ul li h3{display:none}
}
.home-widgets .hf-widget{border:1px solid #f2f2f2;padding:14px 17px 0;box-sizing:border-box;margin-bottom:15px;border-radius: 3px;}
@media (min-width:768px){.home-widgets .hf-widget{height:135px;overflow:hidden}
}@media (min-width:1024px){.home-widgets .hf-widget{margin-bottom:0}
}.home-widgets .hf-widget [class*=" icon-"]:before,.home-widgets .hf-widget [class^="icon-"]:before{margin:0}
.home-widgets .hf-widget .hf-widget-title{font-size:15px;font-weight:bold;line-height:20px;letter-spacing:1px;border-bottom:1px solid #f2f2f2;padding:0 0 10px;margin-bottom:14px;color:#383838}
.home-widgets .hf-widget .hf-widget-title a{color:#383838}
.home-widgets .hf-widget .hf-widget-title>i{color:#ff5f33;margin-right:2px}
.home-widgets .hf-widget .hf-widget-title span{font-size:12px;font-weight:normal;color:#a7a7a7;line-height:20px;margin-left:10px}
@media (min-width:1024px){.home-widgets .hf-widget .hf-widget-title span{display:none}
}@media (min-width:1330px){.home-widgets .hf-widget .hf-widget-title span{display:inline}
}.home-widgets .hf-widget .hf-widget-title .pages{float:right;padding-top:2px}
.home-widgets .hf-widget .hf-widget-title .pages .prev,.home-widgets .hf-widget .hf-widget-title .pages .next{font-size:9px;border:1px solid #eee;float:left;margin:0;color:#ccc;height:16px;line-height:15px;padding:0 2px;cursor:pointer}
.home-widgets .hf-widget .hf-widget-title .pages .prev .icon,.home-widgets .hf-widget .hf-widget-title .pages .next .icon{font-size: 9px;top: 0}
.home-widgets .hf-widget .hf-widget-title .pages .prev:hover,.home-widgets .hf-widget .hf-widget-title .pages .next:hover{color:#ff5f33}
.home-widgets .hf-widget .hf-widget-title .pages .prev{border-right:none}
.home-widgets .hf-widget .hf-tags{margin-bottom:-10px}
@media (min-width:768px){.home-widgets .hf-widget .hf-tags{height:64px;overflow:hidden}
}.home-widgets .hf-widget .hf-tags a{display:inline-block;white-space:nowrap;word-break:break-all;font-size:12px;background:#f9f9f9;color:#888;border-radius:2px;margin:0 5px 10px;line-height:22px;height:22px;padding:0 5px}
.home-widgets .hf-widget .hf-tags a:hover{background:#ff5f33;color:#fff}
.home-widgets .hf-widget .hf-tags a.active{background:#ff5f33;color:#fff}
.home-widgets .hf-widget-4 .hf-widget-title{margin-bottom:19px}
.home-widgets .hf-widget-4 .hf-widget-content{font-size:14px;color:#888}
.home-widgets .hf-widget-4 .hf-widget-content a{color:#888}
.home-widgets .hf-widget-4 .hf-widget-content a:hover{color:#ff5f33}
.home-widgets .hf-widget-4 .hf-widget-content h3{font-weight:normal;font-size:13px;line-height:22px;height:22px;overflow:hidden}
.home-widgets .hf-widget-4 .hf-widget-content em{float:right;padding:0 5px;height:22px;line-height:22px;border-radius:2px;background:#fff5ef;color:#ff5f33;font-size:12px;font-style:normal}
.home-widgets .hf-widget-4 .hf-widget-content ul{background: #fff;}
.home-widgets .hf-widget-4 .hf-widget-content ul li{margin-bottom:5px}
.home-widgets .hf-widget-4 .hf-widget-content ul li:last-child{margin-bottom:0}
.home-widgets .hf-widget-1 .hf-widget-content a{color:#888}
.home-widgets .hf-widget-1 .hf-widget-content a:hover{color:#ff5f33}
.home-widgets .hf-widget-1 .hf-widget-content li{float:left;font-size:12px;width:25%;box-sizing:border-box;text-align:center;padding:0 8px}
.home-widgets .hf-widget-1 .hf-widget-content li .modown-thumb-bg{display: block;height: 0;background-position: center;background-repeat: no-repeat;background-size: cover;background-color: transparent;position: relative;overflow: hidden;transition: all .2s;width:36px;padding-top:36px;margin:0 auto 4px;}
.home-widgets .hf-widget-1 .hf-widget-content li span{display:block;height:16px;line-height:16px;overflow:hidden}
.home-widgets .hf-widget-1 .hf-widget-content .modown-scroll-h{margin:0 -10px}
.home-widgets .modown-scroll-h{position:relative;overflow:hidden;height:56px}
.home-widgets .modown-scroll-h ul{position:absolute;left:0;top:0;width:100%;*zoom:1;transition:all .2s}
.home-widgets .modown-scroll-h ul:before,.home-widgets .modown-scroll-h ul:after{content:"";height:0;line-height:0;display:block;visibility:none;clear:both}
.home-widgets .modown-scroll-h .holdon{position:absolute;left:100%;top:0}
.home-widgets .modown-scroll-h .holdon-prev{left:-100%}
.home-widgets .hf-widget-hot-cats .hf-widget-content .icon{font-size:20px;width:36px;height:36px;line-height:36px;text-align:center;border-radius:100%;background:#fff5f0;color:#ff5f33;display:inline-block;margin-bottom:5px}
.home-widgets .hf-widget-hot-cats .modown-scroll-h li a{display:block}
.home-widgets .hf-widget-hot-cats .modown-scroll-h li a:hover .icon{background:#ff5f33;color:#fff}
.sidebar{float:left;width:300px;margin-left:-300px}
.home .sidebar .widget, .archive .sidebar .widget, .search .sidebar .widget{background: #f9f9f9}
.sidebar .widget{padding:15px;background:#fff;margin-bottom:20px;border-radius: 3px;overflow: hidden;position: relative;}
.sidebar .widget.nopadding{padding:0}
.widget.affix{position:fixed;width:300px;z-index:999}
.sidebar .widget h3{margin-bottom:15px;font-size:17px;font-weight: normal;}
.sidebar .widget h3 .icon{font-size: 18px;color: #ff5f33;line-height: 1}
.sidebar .widget img{max-width:100%;height:auto}
.widget-erphpdown{overflow: inherit !important;}
.widget-erphpdown .erphpdown-child{margin-bottom: 10px;padding: 20px 15px;position: relative;background: #f5f5f5;}
.widget-erphpdown .erphpdown-child .erphpdown-child-title{padding: 0 7px 1px;color: #777;position: absolute;top: 0;left: 15px;background: #dedede;border-radius: 0 0 3px 3px;font-size: 13px;}
.widget-erphpdown .item{margin-bottom:7px}
.widget-erphpdown2 .item2{margin-top: 10px;}
.widget-erphpdown t{display:inline-block;width:80px;text-align:right;margin-right:10px}
.widget-erphpdown .price{text-align: center;}
.widget-erphpdown .price span{font-size:30px;color: #ff5f33}
.widget-erphpdown .price i{background: #ff5f33;color: #fff;border-radius: 50%;width: 18px;height: 18px;display: inline-block;position: relative;top:0;}
.widget-erphpdown .epdvip{position: absolute;top:0;right: 0;background:#ff5f33;color:#fff;padding:2px 5px 1px;font-size: 12px;}
.widget-erphpdown .vip{color: #777;font-size: 14px;text-align: center;}
.widget-erphpdown .vip a{display:inline-block;background:#fbb715;color:#fff;border-radius:15px;padding:6px 15px 7px;margin-left: 10px;font-size: 13px;line-height: 1;}
.widget-erphpdown .vip-only{text-align: center;margin-top: 10px;}
.widget-erphpdown .vip-only a{display:block;background:#fbb715;color:#fff;border-radius:3px;padding:8px 0;text-align:center;margin-top:15px;margin-left: 0;font-size: 15px;line-height: 1.5}
.widget-erphpdown .down{display:block;background:#ff5f33;color:#fff;border-radius:3px;padding:8px 0;text-align:center;margin-top:15px}
.widget-erphpdown.widget-erphpdown-free .down, .widget-erphpdown .down.bought{background: #5cb85c !important}
.widget-erphpdown .down.disabled{opacity: .8}
.widget-erphpdown .down:hover{opacity: .9;}
.widget-erphpdown .erphpdown-down{border-radius: 2px;background:#03A9F4;color:#fff !important;padding:2px 7px;text-decoration: none !important;font-size: 13px;display: inline-block;margin-left: 8px;}
.widget-erphpdown .demos{margin:15px -5px;}
.widget-erphpdown .demos .demo-item2{padding:8px 0;display: inline-block;margin:0 5px;width:calc(50% - 10px);text-align: center;background: #fbb715;border-radius: 3px;color:#fff;}
.widget-erphpdown .demos .demo-item{padding:8px 0;display: inline-block;margin:0 5px;width:calc(100% - 10px);text-align: center;background: #fbb715;border-radius: 3px;color:#fff;}
.widget-erphpdown .demos .demo-demo{background: #67CE9B}
.widget-erphpdown .demos a:hover{opacity: .8}
.widget-erphpdown .tips{color:#777;font-size:13px;text-align:center;margin-top:10px;color:#f58b36;}
.widget-erphpdown .meta{font-size:12px;color:#777;padding:5px 0;text-align:right}
.widget-erphpdown .custom-metas{margin-bottom: 30px;margin-top:15px;position: relative;background: #f5f5f5;padding: 10px;border-radius: 3px;}
.widget-erphpdown .custom-metas:empty{display: none;}
.widget-erphpdown .custom-metas:after{content: "";position: absolute;bottom:-15px;width: 32px;height: 2px;background:#ebebeb;left:calc(50% - 16px);-webkit-transition: 0.5s;-moz-transition: 0.5s;-ms-transition: 0.5s;-o-transition: 0.5s;transition: 0.5s;}
.widget-erphpdown .custom-metas:hover:after{width: 100%;left:0;}
.widget-erphpdown .custom-metas .meta{text-align: right;font-size: 13px;padding-left: 80px;position: relative;border-top: 1px solid #efefef;}
.widget-erphpdown .custom-metas .meta:first-child{padding-top: 0;border-top:none;}
.widget-erphpdown .custom-metas .meta:last-child{padding-bottom: 0;}
.widget-erphpdown .custom-metas .meta span{display: inline-block;position: absolute;left: 0;text-align: left;color: #686e7f;}
.widget-erphpdown .erphpdown-icon-buy, .widget-erphpdown .erphpdown-icon-vip{width: 35px;height: 35px;position: absolute;top: -3px;right: -3px;overflow: hidden;z-index: 10;}
.widget-erphpdown .erphpdown-child .erphpdown-icon-buy, .widget-erphpdown .erphpdown-child .erphpdown-icon-vip{top: -3px;right: -3px;}
.widget-erphpdown .erphpdown-icon-buy:before, .widget-erphpdown .erphpdown-icon-vip:before,.widget-erphpdown .erphpdown-icon-buy:after, .widget-erphpdown .erphpdown-icon-vip:after{content: '';position: absolute;z-index: 0;background-color: #5cb85c;}
.widget-erphpdown .erphpdown-icon-buy:before, .widget-erphpdown .erphpdown-icon-vip:before{height: 3px;width: 10px;left: 0;top: 0;}
.widget-erphpdown .erphpdown-icon-buy:after, .widget-erphpdown .erphpdown-icon-vip:after{height: 10px;width: 3px;right: 0;bottom: 0;}
.widget-erphpdown .erphpdown-icon-buy i,.widget-erphpdown .erphpdown-icon-vip i{height: 14px;line-height: 14px;width: 60px;background-color: #5cb85c;-webkit-box-shadow: -1.204px 1.597px 4px 0 rgba(0,0,0,.22);box-shadow: -1.204px 1.597px 4px 0 rgba(0,0,0,.22);position: absolute;top: 50%;right: -18px;margin-top: -13px;font-size: 12px;color: #fff;text-align: center;-webkit-transform: rotate(45deg);-ms-transform: rotate(45deg);transform: rotate(45deg);-webkit-transform-origin: center;-ms-transform-origin: center;transform-origin: center;z-index: 1;font-style: normal;}
.widget-erphpdown .erphpdown-icon-vip i{background-color: #fbb715;}
.widget-erphpdown .erphpdown-icon-vip:before,.widget-erphpdown .erphpdown-icon-vip:after{background-color:#fbb715}
.widget-erphpdown .item2{text-align: center;font-size: 14px;}
.widget-erphpdown .item2 .down{margin-top: 0;margin-bottom: 2px;}
.widget-erphpdown .item2 .erphpdown-copy{font-size:12px;color:#a1a4ad;}
.widget_search label{display: none;}
.widget_search input[type='text']{float: left;width: 75%;border:1px solid #eaeaea;height:35px;line-height: 35px;padding:0 10px;border-right: none;border-radius: 20px 0 0 20px;}
.widget_search input[type='submit']{float: left;width: 25%;border:none;height:35px;line-height: 35px;padding:0 10px;background: #ff5f33;color:#fff;border-radius: 0 20px 20px 0;}
.widget-commentlist{max-height: 400px;overflow:auto !important;overflow-y: scroll !important;}
.widget-commentlist .comment-item{margin-bottom:20px}
.widget-commentlist .sidebar-comments-comment{font-size:12px;padding:10px 20px;background:#f5f5f5;margin-top:10px;margin-bottom:10px;position:relative;border-radius:2px;color:#656D78;}
.widget-commentlist .sidebar-comments-comment:before{content:" ";height:0;width:0;border-color:transparent;border-style:solid;border-width:5px;border-bottom-color:#f5f5f5;position:absolute;left:20px;top:-10px}
.widget-commentlist .postmeta{color:#777;font-size:13px}
.widget-commentlist .sidebar-comments-title{font-size:12px;color:#777}
.widget-commentlist .sidebar-comments-title a{margin-left:5px}
.widget-tags .items a{padding:5px 8px;margin:0 8px 8px 0;display:inline-block;background:#f1f1f1;color:#444;font-size:12px;border-radius:2px}
.widget-postlist li{padding:8px 0;position:relative}
.widget-bloglist li:first-child{padding-top:0 !important}
.widget-postlist li:last-child{padding-bottom:0 !important}
.widget-postlist li a{font-size:14px;font-weight:normal;}
.widget-postlist li .meta{font-size:12px;color:#777;margin:0}
.widget-postlist li .meta span{margin-right:10px}
.widget-postlist .hasimg{margin-top:-8px}
.widget-postlist .hasimg li{padding:8px 0 0 105px;height:82px}
.widget-postlist .hasimg2 li{padding:8px 0 0 !important;height: auto;width: calc(50% - 5px);float: left;margin-right: 10px;}
.widget-postlist .hasimg2 li:nth-child(2n){margin-right: 0}
.widget-postlist .hasimg li .img{position:absolute;left:0;width:95px;overflow: hidden;}
.widget-postlist .hasimg2 li .img{position: static;width: 100% !important;}
.widget-postlist .hasimg li .img img{width:100%;height:66px;border-radius: 2px;}
.widget-postlist .hasimg2 li .img img{width: 100% !important;height: auto !important;border-radius: 2px;}
.widget-postlist .hasimg li h4{line-height:18px;max-height:36px;overflow:hidden}
.widget-postlist .hasimg li .meta{position:absolute;bottom:4px}
.widget-postlist .hasimg li .meta .time{display:none}
.widget-toplist li{padding:8px 0 8px 20px;}
.widget-toplist li .sort{position:absolute;display: inline-block;left: 0}
.widget-text img{width:100%;height:auto}
.widget .custom-html-widget p{margin-bottom: 10px;}
.widget_categories ul{margin-left: 20px;list-style: disc;}
.widget_categories li{list-style: inherit;}
.widget_categories .children{margin-left: 20px;list-style: circle;}
.widget_author .author-cover {position: relative;width: 100%;height: 0!important;padding-bottom: 37%;overflow: hidden;}
.widget_author .author-cover img {position: absolute;left: 0;top: 0;width: 100%;height: 100%!important;-o-object-fit: cover;object-fit: cover;vertical-align: top;}
.widget_author .author-avatar {margin-top: -40px;text-align: center;}
.widget_author .avatar-link {position: relative;display: block;width: 80px;height: 80px;padding: 4px;margin: 0 auto;border-radius: 50%;background: hsla(0,0%,100%,.3);}
.widget_author .avatar {width: 100%;height: 80px;border-radius: 50%;background: #fff;transition: all .3s ease-out 0s;}
.widget_author .author-info {padding: 10px 15px 20px;text-align: center;line-height: 1.6;}
.widget_author .author-name {display: inline-block;line-height: 22px;overflow: hidden;max-width: 180px;text-overflow: ellipsis;white-space: nowrap;vertical-align: top;}
.widget_author .author-group {position: relative;display: inline-block;padding: 3px 8px;margin-left: 8px;font-size: 12px;color: #fff;font-weight: 400;line-height: 1.2;border: 1px solid #ff5f33;vertical-align: top;border-radius: 1px;background: #ff5f33;}
.widget_author .author-group:before {position: absolute;left: -8px;top: 50%;margin-top: -4px;content: "";border: 4px solid transparent;border-right: 4px solid #ff5f33;}
.widget_author .author-description {margin-top: 10px;font-size: 13px;color: #AAB2BD;max-height: 61px;overflow: hidden;}
.widget_author .avatar-link span {position: absolute;right: 7px;bottom: -2px;}
.widget_author .avatar-link span:after {font-family: 'iconfont';content: "\e8d2";font-size: 17px;color: #fbb715;}
.widget_archive ul{overflow: hidden;}
.widget_archive li{float: left;width: 50%;margin-bottom: 5px;}
.widget_calendar #wp-calendar{width: 100%;margin:0;color: #777;}
.widget_calendar #wp-calendar caption{margin-bottom: 10px;font-size: 13px;}
.widget_calendar #wp-calendar td, .widget_calendar #wp-calendar th {border: 0;font-size: 12px;padding: 5px 3px;text-align: center;}
.widget_calendar #wp-calendar th{color:#333;}
.widget-bottom-search .searchform{margin-bottom: 15px;}
.widget-bottom-search input[type='text']{float: left;width: 75%;border:1px solid #eaeaea;height:35px;line-height: 35px;padding:0 10px;border-right: none;border-radius: 20px 0 0 20px;}
.widget-bottom-search button{float: left;width: 25%;border:none;height:35px;line-height: 35px;padding:0 10px;background: #ff5f33;color:#fff;border-radius: 0 20px 20px 0;}
.widget-bottom-search button .icon{top:0;}
.widget-bottom-logo .footer-logo img{max-height: 80px;width: auto;max-width: 150px;margin-bottom: 15px;}
.erphpdown-popover-mask{position:fixed;top:0;left:0;width:100%;height:100%;background-color:rgba(0,0,0,0.5);z-index:9999;display:none}
.erphpdown-popover{position:fixed;top:50%;left:50%;margin:-200px 0 0 -205px;width:410px;background-color:#FFF;padding:40px 0;border-radius:2px;overflow:hidden;box-shadow:0 1px 5px rgba(0,0,0,0.4);z-index:9999;display:none;text-align:center}
.erphpdown-popover h3{font-size:18px;font-weight:normal;text-align:center;margin:0 15px 20px}
.erphpdown-popover-item{display:inline-block;margin:0 0}
.erphpdown-popover-item h4{margin:0 20px 10px;font-size:15px;font-weight: normal;}
.erphpdown-popover-item img{width:200px;height:200px;background-color:#eee;border-radius:2px;padding:5px}
.erphpdown-popover-close{position:absolute;top:0;right:0;padding:15px;font-size:16px;line-height:1;color:#999;cursor:pointer}
.erphpdown-popover-close:hover{color:#666}
.single-comment{background:#fff;padding:20px;margin-bottom:20px;border-radius: 3px;}
.page-template-guestbook .single-comment{border-radius: 0 0 3px 3px;}
.comments-title{margin:0;line-height:1;margin-bottom:15px;font-weight:normal;font-size:17px}
.comments-title .icon{font-size: 18px;color: #ff5f33;line-height: 1}
.comments-title small{font-weight:normal;display:inline-block;margin-left:10px;color:#ff5f33;font-size:12px}
.comments-respond{position:relative;margin-bottom:15px;}
.page-template-guestbook .comments-respond{margin-bottom: 35px;}
.comt{position:relative;padding-left:52px}
.comt-title{font-size:12px;color:#777;float:left;margin-left:-52px;width:42px;text-align:center}
.comt-title .avatar{height:42px;width:42px;border-radius:50%;margin-bottom:5px}
.comt-title p{margin:0;overflow:hidden;text-overflow:ellipsis;white-space:nowrap}
.comt-box{border:1px solid #eaeaea;padding:5px 10px 0;border-radius:3px;background-color:#fff;position:relative}
.comt-area{width:100%;resize:none;overflow-x:hidden;overflow-y:auto;border:none;line-height:22px;font-size:14px;outline:0;color:#666;height:82px;background: transparent;}
.page-template-guestbook .comt-area{height: 122px;}
.comt-ctrl{position: relative;}
.comt-ctrl .smile{position: absolute;width: 14.375rem;height: 6.375rem;padding: 0.125rem;box-shadow: 0 0.125rem 0.625rem 0.125rem rgba(0,0,0,.11);background-color: #fff;z-index: 9;display:none;transform: perspective(500px) rotateX(-15deg);transform-origin: 50% 0;transition: all .15s ease-out;}
.comt-ctrl .smile.open{display:block;transform: none;}
.comt-ctrl .smile a{width: 2.0rem;height: 2.0rem;display: block;border: 0.125rem solid #fff;background-color: #f0f0f0;padding: 0.25rem;float: left;}
.comt-ctrl .comt-add-btn{margin-top: 7px;display: inline-block;}
.comt-submit{position:absolute;right:0;top:10px;background:#ff5f33;border:none;border-left:none;border-top:none;padding:0px;width:100px;height:36px;line-height:36px;color:#fff;outline:0;border-radius: 3px;cursor:pointer;font-size: 14px;}
.page-template-guestbook .comt-submit{height: 42px;width: 120px;font-size: 15px;}
.comt-submit:hover{opacity: .88;}
.comt-count{float:right;color:#777;margin-bottom:5px}
.comt-tips{text-align:right;font-size:14px;color:#fff;margin-top: 17px;}
.comt-tips .comt-tip{color:#7AD071;}
.comt-tips .comt-error{color:#FF5E52}
.comt-comterinfo{padding:15px 0;}
.comt-comterinfo ul{padding:0;margin:0;list-style:none;text-align:left;display:inline-block;color:#777}
.comt-comterinfo li{margin-bottom:10px;float: left;}
.comt-comterinfo input{margin-right:10px;position:relative;border:2px solid #CCD4D9;border-radius:2px;height:36px;padding:4px 8px;outline:none;width:100%;max-width:200px;box-shadow:none;*height:20px}
.postcomments{margin-bottom:30px}
.commentlist{padding:0;list-style:none;margin:0}
.commentlist .comments-respond{margin-top:30px}