-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathbundle.css
6184 lines (5968 loc) · 187 KB
/
bundle.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
@charset "UTF-8";
/**
* Yo框架全局base定义
* 本文件与variables不同地方在于,这里所定义的map可以使用在variables和任何地方
* lib中map使用“_”开头,本文件中不使用"_"
* base ⇌ extra
*/
/**
* Yo框架全局base定义
* 本文件与variables不同地方在于,这里所定义的map可以使用在variables和任何地方
* 本文件中map使用"_"开头,extra中不使用"_"
* base ⇌ extra
*/
/**
* 合并base和extra中的同类base map
* 用以解决业务方升级Yo时需比base和extra的一致性
* 当extra为空时,base map将以base文件里的定义作为默认值
* 当extra不为空时,base map使用extra文件里的定义
*/
/**
* Yo框架全局Variables
* Yo基础变量map,如果不想定义某属性,将其value设置为null;
* Yo仅使用2种长度单位:px用于边框,rem用于除边框之外的所有地方
* variables中map使用“_”开头,本文件中不使用"_"
* variables ⇌ config
*/
/**
* Yo框架全局Variables
* Yo基础变量map,如果不想定义某属性,将其value设置为null
* Yo仅使用2种长度单位:px用于边框,rem用于除边框之外的所有地方
* 本文件中map使用"_"开头,config中不使用"_"
* variables ⇌ config
*/
/**
* 合并variables和config中的同类map
* 用以解决业务方升级Yo时需比config和variables的一致性
* 当config为空时,使用variables中的map作为默认值
* 当config不为空时,使用config中的定义
*/
/**
* Yo框架自定义全局函数
* 扩充Sass默认函数库,用以增强语法
*/
/**
* @module List扩展函数
* @description 返回SassList中的第一项
* @function first
* @version 2.1.0
* @param {String} $list 指定一个Sass List <2.1.0>
*/
/**
* @module List扩展函数
* @description 返回SassList中的最后一项
* @function last
* @version 2.1.0
* @param {String} $list 指定一个Sass List <2.1.0>
*/
/**
* @module List扩展函数
* @description 返回SassList中的倒数第几项
* @function nth-last
* @version 2.1.0
* @param {String} $list 指定一个Sass List <2.1.0>
* @param {Integer} $index 指定需要返回的值在list中的倒数位置 <2.1.0>
*/
/**
* @module List扩展函数
* @description 移除SassList中的某个项目并返回新的List
* @function remove
* @version 2.1.0
* @param {String} $list 指定一个Sass List <2.1.0>
* @param {String} $value 指定需要被删除的值 <2.1.0>
*/
/**
* @module List扩展函数
* @description 截取SassList中的某个部分并返回新的List
* @function slice
* @version 2.1.0
* @param {String} $list 指定一个Sass List <2.1.0>
* @param {Integer} $start 指定需要截取的开始下标 <2.1.0>
* @param {Integer} $end 指定需要截取的结束下标(不包括end),当该值缺省时默认为末尾下标 <2.1.0>
*/
/**
* @module List扩展函数
* @description 从SassList中添加/删除项目,然后返回新的List。
* @function splice
* @version 2.1.0
* @param {String} $list 指定一个Sass List <2.1.0>
* @param {Integer} $index 指定需要移除的开始下标 <2.1.0>
* @param {Integer} $count 指定需要移除的数量,不可以为负值,0表示不移除 <2.1.0>
* @param {String} $values 指定需要添加的新值(可以是多个),如果该值缺省,则表示只移除不添加新值 <2.1.0>
*/
/**
* Yo框架全局基础方法
* 包括响应式方案,CSS3兼容性方案,厂商前缀方案,iconfont方案,flex布局等全局方法
*/
/**
* @module 功能
* @description 给需要的属性加厂家前缀
* @method _prefix
* @version 1.0.0
* @param {String} $property 指定属性 <1.0.0>
* @param {String} $value 指定属性值 <1.0.0>
* @skip
*/
/**
* @module 功能
* @description 定义字体图标
* @method _yofont
* @version 1.0.0
* @skip
*/
/**
* @module 功能
* @description 四则运算(iOS6.0+,Android4.4+)
* @method calc
* @version 1.7.0
* @param {String} $property 指定需要进行计算的CSS属性 <1.7.0>
* @param {String} $value 与原生CSS语法一致,区别在于需要使用引号包裹表达式 <1.7.0>
* @example <div class="calc">四则运算</div>
* .calc { @include calc(width, "100% - 100px"); }
*/
/**
* @module 功能
* @description 定义响应式方案
* @method responsive
* @version 1.0.0
* @param {String} $media 指定媒体查询条件,取值为`config`文件map `media-types`中的值 <1.0.0>
*/
/**
* @module 功能
* @description 清除浮动方案
* @method clearfix
* @version 1.0.0
* @param {String} $type 指定清除浮动的方式,包括:pseudo-element | bfc,默认值:pseudo-element <1.8.5>
*/
/**
* @module 功能
* @description 清除行内级元素间间隙方案
* @method killspace
* @version 1.0.0
* @param {Length} $font-size 指定子元素字号,默认值:.14rem <2.0.0>
* @example
* <div class="demo">
* <span class="item">1</span>
* <span class="item">2</span>
* <span class="item">3</span>
* </div>
* .demo {@include killspace;}
*/
/**
* @module 功能
* @description 元素在包含块中的对齐方式,默认为水平垂直对齐
* @method align
* @version 2.0.0
* @param {String} $flexbox 指定包含块布局方式,可选值:flex | inline-flex,默认值:flex <2.0.0>
* @param {String} $type 指定居中元素类型,可选值:image | text | other,默认值:text <2.0.0>
* @param {Keywords} $justify-content 指定元素水平对齐方式,取值与`justify-content`属性一致,默认值:center <2.0.0>
* @param {Keywords} $align-items 指定元素垂直对齐方式,取值与`align-items`属性一致,默认值:center <2.0.0>
* @example
* <div class="demo">
* <img class="item" alt="未知尺寸图片居中" />
* </div>
* .demo {@include align;}
*/
/**
* @module 功能
* @description 定义文档根节点是否允许滚动
* @method root-scroll
* @version 1.4.0
* @param {Boolean} $is-scroll 指定是否有滚动,默认值:false <1.8.6>
*/
/**
* @module 功能
* @description 定义是否有滚动条
* @method overflow
* @version 1.0.0
* @param {String} $overflow 取值与最新原生语法一致,默认值:auto <1.0.0>
*/
/**
* @module 功能
* @description 生成全屏方法
* @method fullscreen
* @version 1.7.0
* @param {Integer} $z-index 指定层叠级别 <1.7.0>
* @param {Keywords} $position 指定定位方式,取除`static | relative`之外的值,默认值:absolute <1.8.5>
*/
/**
* @module 用户界面
* @description 定义使用何种滤镜
* @method filter
* @version 1.7.0
* @param {String} $filter 取值与`filter`属性一致 <1.7.0>
*/
/**
* @module 用户界面
* @description 定义UA默认外观
* @method appearance
* @version 1.0.0
* @param {String} $appearance 取值与`appearance`属性一致,默认值:none <1.0.0>
*/
/**
* @module 用户界面
* @description 定义如何选中内容
* @method user-select
* @version 1.0.0
* @param {String} $user-select 取值与`user-select`属性一致,默认值:none <1.0.0>
*/
/**
* @module 用户界面
* @description 定义盒模型
* @method box-sizing
* @version 1.0.0
* @param {String} $box-sizing 指定盒模型类型,取值与`box-sizing`属性一致,默认值:border-box <1.0.0>
*/
/**
* @module 背景与边框
* @description 定义渐变色值
* @method gradient
* @version 1.0.0
* @param {String} $type 指定渐变的4种类型:linear, repeating-linear, radial, repeating-radial <1.0.0>
* @param {String} $dir 指定渐变方向,可选值:[left | right] || [top | bottom] | angle <2.0.0>
* @param {String} $gradient 指定渐变取值,与w3c最新原生语法一致 <1.0.0>
*/
/**
* @module 背景与边框
* @description 定义背景图像缩放(AndroidBrowser2.3.*还需要厂商前缀)
* @method background-size
* @version 1.4.0
* @param {Keywords | Length} $background-size 指定背景图缩放值,取值与`background-size`属性一致 <1.4.0>
*/
/**
* @module 背景与边框
* @description 定义背景裁减(AndroidBrowser2.3.*还需要厂商前缀)
* @method background-clip
* @version 1.6.0
* @param {Keywords} $background-clip 指定背景图缩放值,取值与`background-clip`属性一致 <1.6.0>
*/
/**
* @module 背景与边框
* @description 定义背景显示区域(AndroidBrowser2.3.*还需要厂商前缀)
* @method background-origin
* @version 1.6.0
* @param {Keywords} $background-origin 指定背景图`background-position`属性计算相对的参考点,取值与`background-origin`属性一致 <1.6.0>
*/
/**
* @module 背景与边框
* @description 定义圆角,用于修复某些安卓机型上“圆角+边框+背景”,背景溢出的情况
* @method border-radius
* @version 1.6.0
* @param {Length} $border-radius 指定元素的圆角半径,取值与`border-radius`属性一致 <1.6.0>
*/
/**
* @module 背景与边框
* @description 为元素添加边框(包括1px边框)
* @method border
* @version 2.0.0
* @param {String} $border-width 指定边框厚度(单位为px),默认值:1px,取值与`border-width`属性一致,不同方向代表边框位置 <2.0.0>
* @param {String} $border-color 指定边框颜色 <2.0.0>
* @param {String} $border-style 指定边框样式 <2.0.0>
* @param {String} $radius 指定边框圆角半径,默认值:null <2.0.0>
*/
/**
* @module Transform
* @description 定义简单变换
* @method transform
* @version 1.0.0
* @param {String} $transform 取值范围与`transform`属性一致 <1.0.0>
*/
/**
* @module Transform
* @description 定义变换原点
* @method transform-origin
* @version 1.0.0
* @param {Length | Percentage | Keywords} $transform-origin 取值范围与`transform-origin`属性一致 <1.0.0>
*/
/**
* @module Transform
* @description 指定某元素的子元素是(看起来)位于三维空间内,还是在该元素所在的平面内被扁平化
* @method transform-style
* @version 2.0.0
* @param {String} $transform-style 取值范围与`transform-style`属性一致 <2.0.0>
*/
/**
* @module Transform
* @description 指定观察者与「z=0」平面的距离,使具有三维位置变换的元素产生透视效果。「z>0」的三维元素比正常大,而「z<0」时则比正常小,大小程度由该属性的值决定。
* @method perspective
* @version 2.0.0
* @param {none | Length} $perspective 取值范围与`perspective`属性一致 <2.0.0>
*/
/**
* @module Transform
* @description 指定透视点的位置
* @method perspective-origin
* @version 2.0.0
* @param {Length | Percentage | Keywords} $perspective-origin 取值范围与`perspective-origin`属性一致 <2.0.0>
*/
/**
* @module Transform
* @description 指定元素背面面向用户时是否可见
* @method backface-visibility
* @version 2.0.0
* @param {Keywords} $backface-visibility 取值范围与`backface-visibility`属性一致 <2.0.0>
*/
/**
* @module Animation
* @description 定义动画
* @method animation
* @version 1.0.0
* @param {String} $animation 取值与原生语法一致 <1.0.0>
*/
/**
* @module Transition
* @description 定义补间
* @method transition
* @version 1.0.0
* @param {String} $transition 取值与原生语法一致 <1.0.0>
*/
/**
* @module Flexbox
* @description 定义显示类型为伸缩盒
* @method flexbox
* @version 1.0.0
* @param {String} $flexbox 默认值:flex,可选值:flex | inline-flex <1.0.0>
*/
/**
* @module Flexbox
* @description 定义伸缩盒子元素如何分配空间
* @method flex
* @version 1.0.0
* @param {Number} $flex 取值与`flex`属性一致,默认值:1 <1.0.0>
* @param {String} $direction 默认值: row,可选值:row | column <1.5.0>
*/
/**
* @module Flexbox
* @description 定义伸缩盒子元素的排版顺序
* @method order
* @version 1.0.0
* @param {Integer} $order 取值与`order`属性一致,默认值:1 <1.0.0>
*/
/**
* @module Flexbox
* @description 定义弹性盒子元素流动方向及遇见边界时是否换行(iOS7.0+,Android4.4+)
* @method flex-flow
* @version 2.0.0
* @param {String} $flex-flow 取值与`flex-flow`属性一致,默认值:row nowrap <2.0.0>
*/
/**
* @module Flexbox
* @description 定义伸缩盒子元素的流动方向
* @method flex-direction
* @version 1.0.0
* @param {String} $flex-direction 取值与`flex-direction`属性一致,默认值:row <1.0.0>
*/
/**
* @module Flexbox
* @description 定义弹性盒子元素溢出后排版(iOS7.0+,Android4.4+)
* @method flex-wrap
* @version 1.0.0
* @param {String} $flex-wrap 取值与`flex-wrap`属性一致,默认值:nowrap <1.0.0>
*/
/**
* @module Flexbox
* @description 定义弹性容器主轴对齐方式(其中`space-around`值需要iOS7.0+,Android4.4+)
* @method justify-content
* @version 1.0.0
* @param {String} $justify-content 取值与`justify-content`属性一致,默认值:center <1.0.0>
*/
/**
* @module Flexbox
* @description 定义多行弹性容器侧轴对齐方式(iOS7.0+,Android4.4+)
* @method align-content
* @version 1.8.5
* @param {String} $align-content 取值与`align-content`属性一致,默认值:center <1.8.5>
*/
/**
* @module Flexbox
* @description 定义单行弹性容器侧轴对齐方式
* @method align-items
* @version 1.0.0
* @param {String} $align-items 取值与`align-items`属性一致,默认值:center <1.0.0>
*/
/**
* @module Flexbox
* @description 定义弹性容器中子元素自身的在侧轴对齐方式(iOS7.0+,Android4.4+)
* @method align-self
* @version 1.0.0
* @param {String} $align-self 取值与`align-self`属性一致,默认值:center <1.0.0>
*/
/**
* @module 形状
* @description 生成矩形方法
* @method rect
* @version 1.0.0
* @param {Length} $width 定义矩形的长度 <1.0.0>
* @param {Length} $height 定义矩形的高度 <1.0.0>
*/
/**
* @module 形状
* @description 生成正方形方法
* @method square
* @version 1.0.0
* @param {Length} $size 定义正方形的边长 <1.0.0>
*/
/**
* @module 形状
* @description 生成圆形方法
* @method circle
* @version 1.0.0
* @param {Length} $size 定义圆的半径长度 <1.0.0>
* @param {Length} $radius 定义圆的圆角半径长度 <1.0.0>
*/
/**
* @module 文本
* @description 链接处理方法
* @method link
* @version 1.0.0
* @param {Color} $color 定义链接颜色 <1.0.0>
*/
/**
* @module 文本
* @description 文本碰到边界是否换行
* @method wrap
* @version 1.0.0
* @param {Boolean} $is-wrap 定义文本是否换行,默认值:true <2.0.0>
*/
/**
* @module 文本
* @description 单行文本溢出时显示省略号
* @method ellipsis
* @version 1.0.0
* @param {Length} $width 定义容器的宽度,默认值:null <2.0.0>
* @param {Integer} $line-clamp 定义需要显示的行数,默认值:1(即使用单行溢出的处理方案),需要注意的是本参数只支持webkit内核 <2.1.2>
*/
/**
* @module 文本
* @description 文字隐藏方案
* @method texthide
* @version 1.0.0
* @param {Length} $width 定义容器的宽度,默认值:null <2.0.0>
*/
/**
* Yo框架全局Reset
* Yo重置Mobile及高级浏览器上常见的差异
*/
*,
::before,
::after {
-webkit-box-sizing: border-box;
box-sizing: border-box;
-webkit-tap-highlight-color: transparent; }
html,
body {
overflow: hidden;
height: 100%; }
::-webkit-scrollbar {
display: none; }
html {
background-color: #ebebeb;
color: #212121;
font-size: 100px;
-webkit-user-select: none;
user-select: none; }
body {
margin: 0;
font-size: 0.14em;
line-height: 1.5;
font-family: Helvetica Neue, Helvetica, STHeiTi, sans-serif; }
ul,
ol,
dl,
dd,
h1,
h2,
h3,
h4,
h5,
h6,
figure,
form,
fieldset,
legend,
input,
textarea,
button,
p,
blockquote,
th,
td,
pre,
xmp {
margin: 0;
padding: 0; }
input,
textarea,
button,
select,
pre,
xmp,
tt,
code,
kbd,
samp {
line-height: inherit;
font-family: inherit; }
h1,
h2,
h3,
h4,
h5,
h6,
small,
big,
input,
textarea,
button,
select {
font-size: inherit; }
address,
cite,
dfn,
em,
i,
optgroup,
var {
font-style: normal; }
table {
border-collapse: collapse;
border-spacing: 0;
table-layout: fixed;
text-align: left; }
ul,
ol,
menu {
list-style: none; }
fieldset,
img {
border: 0;
vertical-align: middle; }
article,
aside,
details,
figcaption,
figure,
footer,
header,
main,
menu,
nav,
section,
summary {
display: block; }
audio,
canvas,
video {
display: inline-block; }
blockquote:before,
blockquote:after,
q:before,
q:after {
content: " "; }
textarea,
pre,
xmp {
overflow: auto;
-webkit-overflow-scrolling: touch; }
textarea {
resize: vertical; }
input,
textarea,
button,
select a {
outline: 0 none; }
input,
textarea,
button,
select {
color: inherit; }
input:disabled,
textarea:disabled,
button:disabled,
select:disabled {
opacity: 1; }
button::-moz-focus-inner,
input::-moz-focus-inner {
padding: 0;
border: 0; }
input[type="button"],
input[type="submit"],
input[type="reset"],
input[type="file"]::-webkit-file-upload-button,
input[type="search"]::-webkit-search-cancel-button {
-webkit-appearance: none;
appearance: none; }
mark {
background-color: transparent; }
a,
ins,
s,
u,
del {
text-decoration: none; }
a,
img {
-webkit-touch-callout: none; }
a {
color: #00afc7; }
.g-clear::after,
.g-mod::after {
display: block;
overflow: hidden;
clear: both;
height: 0;
content: " "; }
@font-face {
font-family: yofont;
src: url(//ss.qunarzz.com/yo/font/1.0.3/yofont.woff) format("woff"), url(//ss.qunarzz.com/yo/font/1.0.3/yofont.ttf) format("truetype"); }
.yo-ico {
font-family: yofont !important;
font-style: normal;
-webkit-font-smoothing: antialiased;
-moz-osx-font-smoothing: grayscale;
vertical-align: middle; }
@font-face {
font-family: 'iconfont';
/* chrome、firefox、opera、Safari, Android, iOS 4.2+*/
src: url("/vue-project-pagoda/iconfont/iconfont.woff") format("woff"), url("/vue-project-pagoda/iconfont/iconfont.ttf") format("truetype"); }
.iconfont {
font-family: iconfont; }
.container footer {
height: 44px;
background: #F4F4F4; }
.container footer ul {
width: 100%;
height: 100%;
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center;
border-top: solid 0.5px #d9d9d9; }
.container footer ul li {
-webkit-box-flex: 1;
-webkit-flex: 1;
flex: 1;
width: .1px;
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
flex-direction: column;
-webkit-box-align: center;
-webkit-align-items: center;
align-items: center;
-webkit-box-pack: center;
-webkit-justify-content: center;
justify-content: center; }
.container footer ul li.active b, .container footer ul li.active i {
color: #80AF1E; }
.container footer ul li b, .container footer ul li i {
font-weight: normal;
font-size: 12px;
color: #d6d6d6; }
.container footer ul li i {
font-size: 20px;
line-height: 24px; }
.container footer ul li b {
line-height: 12px; }
.container {
width: 100%;
height: 100%;
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
flex-direction: column; }
.container .main-container {
height: 100%;
-webkit-box-flex: 1;
-webkit-flex: 1;
flex: 1;
width: .1px;
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-orient: vertical;
-webkit-box-direction: normal;
-webkit-flex-direction: column;
flex-direction: column;
width: 100%;
overflow: scroll; }
.container .main-container > * {
width: 100%; }
.container .main-container header .swiper-pagination-bullet-active {
background-color: #80AF1E; }
.container .main-container header img {
width: 100%; }
.container .main-container nav {
width: 100%; }
.container .main-container nav ul {
display: -webkit-box;
display: -webkit-flex;
display: flex;
-webkit-box-orient: horizontal;
-webkit-box-direction: normal;
-webkit-flex-direction: row;
flex-direction: row;
-webkit-flex-wrap: wrap;
flex-wrap: wrap;
width: 100%;
background-color: #fff; }
.container .main-container nav ul li {
width: 25%;
text-align: center;
padding: .1rem 0; }
.container .main-container nav ul li img {
width: .36rem;
height: .36rem; }
.container .main-container nav ul li b {
display: block;
font-weight: normal;
font-size: .1rem;
color: #444;
line-height: .2rem; }
.container .main-container section img {
width: 100%;
margin-bottom: .1rem; }
@charset "UTF-8";
/**
* Yo框架全局base定义
* 本文件与variables不同地方在于,这里所定义的map可以使用在variables和任何地方
* lib中map使用“_”开头,本文件中不使用"_"
* base ⇌ extra
*/
/**
* Yo框架全局base定义
* 本文件与variables不同地方在于,这里所定义的map可以使用在variables和任何地方
* 本文件中map使用"_"开头,extra中不使用"_"
* base ⇌ extra
*/
/**
* 合并base和extra中的同类base map
* 用以解决业务方升级Yo时需比base和extra的一致性
* 当extra为空时,base map将以base文件里的定义作为默认值
* 当extra不为空时,base map使用extra文件里的定义
*/
/**
* Yo框架全局Variables
* Yo基础变量map,如果不想定义某属性,将其value设置为null;
* Yo仅使用2种长度单位:px用于边框,rem用于除边框之外的所有地方
* variables中map使用“_”开头,本文件中不使用"_"
* variables ⇌ config
*/
/**
* Yo框架全局Variables
* Yo基础变量map,如果不想定义某属性,将其value设置为null
* Yo仅使用2种长度单位:px用于边框,rem用于除边框之外的所有地方
* 本文件中map使用"_"开头,config中不使用"_"
* variables ⇌ config
*/
/**
* 合并variables和config中的同类map
* 用以解决业务方升级Yo时需比config和variables的一致性
* 当config为空时,使用variables中的map作为默认值
* 当config不为空时,使用config中的定义
*/
/**
* Yo框架自定义全局函数
* 扩充Sass默认函数库,用以增强语法
*/
/**
* @module List扩展函数
* @description 返回SassList中的第一项
* @function first
* @version 2.1.0
* @param {String} $list 指定一个Sass List <2.1.0>
*/
/**
* @module List扩展函数
* @description 返回SassList中的最后一项
* @function last
* @version 2.1.0
* @param {String} $list 指定一个Sass List <2.1.0>
*/
/**
* @module List扩展函数
* @description 返回SassList中的倒数第几项
* @function nth-last
* @version 2.1.0
* @param {String} $list 指定一个Sass List <2.1.0>
* @param {Integer} $index 指定需要返回的值在list中的倒数位置 <2.1.0>
*/
/**
* @module List扩展函数
* @description 移除SassList中的某个项目并返回新的List
* @function remove
* @version 2.1.0
* @param {String} $list 指定一个Sass List <2.1.0>
* @param {String} $value 指定需要被删除的值 <2.1.0>
*/
/**
* @module List扩展函数
* @description 截取SassList中的某个部分并返回新的List
* @function slice
* @version 2.1.0
* @param {String} $list 指定一个Sass List <2.1.0>
* @param {Integer} $start 指定需要截取的开始下标 <2.1.0>
* @param {Integer} $end 指定需要截取的结束下标(不包括end),当该值缺省时默认为末尾下标 <2.1.0>
*/
/**
* @module List扩展函数
* @description 从SassList中添加/删除项目,然后返回新的List。
* @function splice
* @version 2.1.0
* @param {String} $list 指定一个Sass List <2.1.0>
* @param {Integer} $index 指定需要移除的开始下标 <2.1.0>
* @param {Integer} $count 指定需要移除的数量,不可以为负值,0表示不移除 <2.1.0>
* @param {String} $values 指定需要添加的新值(可以是多个),如果该值缺省,则表示只移除不添加新值 <2.1.0>
*/
/**
* Yo框架全局基础方法
* 包括响应式方案,CSS3兼容性方案,厂商前缀方案,iconfont方案,flex布局等全局方法
*/
/**
* @module 功能
* @description 给需要的属性加厂家前缀
* @method _prefix
* @version 1.0.0
* @param {String} $property 指定属性 <1.0.0>
* @param {String} $value 指定属性值 <1.0.0>
* @skip
*/
/**
* @module 功能
* @description 定义字体图标
* @method _yofont
* @version 1.0.0
* @skip
*/
/**
* @module 功能
* @description 四则运算(iOS6.0+,Android4.4+)
* @method calc
* @version 1.7.0
* @param {String} $property 指定需要进行计算的CSS属性 <1.7.0>
* @param {String} $value 与原生CSS语法一致,区别在于需要使用引号包裹表达式 <1.7.0>
* @example <div class="calc">四则运算</div>
* .calc { @include calc(width, "100% - 100px"); }
*/
/**
* @module 功能
* @description 定义响应式方案
* @method responsive
* @version 1.0.0
* @param {String} $media 指定媒体查询条件,取值为`config`文件map `media-types`中的值 <1.0.0>
*/
/**
* @module 功能
* @description 清除浮动方案
* @method clearfix
* @version 1.0.0
* @param {String} $type 指定清除浮动的方式,包括:pseudo-element | bfc,默认值:pseudo-element <1.8.5>
*/
/**
* @module 功能
* @description 清除行内级元素间间隙方案
* @method killspace
* @version 1.0.0
* @param {Length} $font-size 指定子元素字号,默认值:.14rem <2.0.0>
* @example
* <div class="demo">
* <span class="item">1</span>
* <span class="item">2</span>
* <span class="item">3</span>
* </div>
* .demo {@include killspace;}
*/
/**
* @module 功能
* @description 元素在包含块中的对齐方式,默认为水平垂直对齐
* @method align
* @version 2.0.0
* @param {String} $flexbox 指定包含块布局方式,可选值:flex | inline-flex,默认值:flex <2.0.0>
* @param {String} $type 指定居中元素类型,可选值:image | text | other,默认值:text <2.0.0>
* @param {Keywords} $justify-content 指定元素水平对齐方式,取值与`justify-content`属性一致,默认值:center <2.0.0>
* @param {Keywords} $align-items 指定元素垂直对齐方式,取值与`align-items`属性一致,默认值:center <2.0.0>
* @example
* <div class="demo">
* <img class="item" alt="未知尺寸图片居中" />
* </div>
* .demo {@include align;}
*/
/**
* @module 功能
* @description 定义文档根节点是否允许滚动
* @method root-scroll
* @version 1.4.0
* @param {Boolean} $is-scroll 指定是否有滚动,默认值:false <1.8.6>
*/
/**
* @module 功能
* @description 定义是否有滚动条
* @method overflow
* @version 1.0.0
* @param {String} $overflow 取值与最新原生语法一致,默认值:auto <1.0.0>
*/
/**
* @module 功能
* @description 生成全屏方法
* @method fullscreen
* @version 1.7.0
* @param {Integer} $z-index 指定层叠级别 <1.7.0>
* @param {Keywords} $position 指定定位方式,取除`static | relative`之外的值,默认值:absolute <1.8.5>
*/
/**
* @module 用户界面
* @description 定义使用何种滤镜
* @method filter
* @version 1.7.0
* @param {String} $filter 取值与`filter`属性一致 <1.7.0>
*/
/**
* @module 用户界面
* @description 定义UA默认外观
* @method appearance
* @version 1.0.0
* @param {String} $appearance 取值与`appearance`属性一致,默认值:none <1.0.0>
*/
/**
* @module 用户界面
* @description 定义如何选中内容
* @method user-select
* @version 1.0.0
* @param {String} $user-select 取值与`user-select`属性一致,默认值:none <1.0.0>
*/
/**
* @module 用户界面
* @description 定义盒模型
* @method box-sizing
* @version 1.0.0
* @param {String} $box-sizing 指定盒模型类型,取值与`box-sizing`属性一致,默认值:border-box <1.0.0>
*/
/**
* @module 背景与边框
* @description 定义渐变色值
* @method gradient
* @version 1.0.0
* @param {String} $type 指定渐变的4种类型:linear, repeating-linear, radial, repeating-radial <1.0.0>
* @param {String} $dir 指定渐变方向,可选值:[left | right] || [top | bottom] | angle <2.0.0>
* @param {String} $gradient 指定渐变取值,与w3c最新原生语法一致 <1.0.0>
*/
/**
* @module 背景与边框
* @description 定义背景图像缩放(AndroidBrowser2.3.*还需要厂商前缀)
* @method background-size
* @version 1.4.0
* @param {Keywords | Length} $background-size 指定背景图缩放值,取值与`background-size`属性一致 <1.4.0>
*/
/**
* @module 背景与边框
* @description 定义背景裁减(AndroidBrowser2.3.*还需要厂商前缀)