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
| * {
| margin: 0;
| padding: 0;
| box-sizing: border-box;
| }
| h1,
| h2,
| h3,
| h4,
| h5,
| h6,
| b,
| strong {
| font-size: 100%;
| font-weight: normal;
| }
| body,
| html {
| height: 100%;
| }
| i,
| em {
| font-style: normal;
| }
| li {
| list-style: none;
| }
| a {
| color: #fff;
| text-decoration: none;
| }
| body,
| html {
| font: 14px "微软雅黑", Arial;
| color: #fff;
| background-color: #13161e;
| }
| input {
| outline: none;
| }
| .clearfix {
| *zoom: 1;
| }
| .clearfix:after {
| content: "";
| display: block;
| height: 0;
| overflow: hidden;
| clear: both;
| }
| .page-content {
| flex: 1;
| height: 0;
| }
| .bt {
| cursor: pointer;
| &:hover {
| opacity: 0.8;
| }
| }
|
| /* 通用样式 */
| $s_c: #287dff;
| $l_c: #287dff;
| $s_b: #444;
| $red: #f00;
| .sb_b {
| background: $s_b !important;
| }
| .r_c {
| color: $red !important;
| }
| .sc_c {
| color: $s_c !important;
| }
| .lc_c {
| color: $l_c !important;
| }
| .sc_b {
| background: $s_c !important;
| }
| .flex {
| display: flex;
| }
| .flex-center {
| display: flex;
| justify-content: center;
| align-items: center;
| }
| .flex-start {
| display: flex;
| justify-content: start;
| align-items: center;
| }
| .flex-between {
| display: flex;
| justify-content: space-between;
| align-items: center;
| }
| .flex-between-start {
| display: flex;
| justify-content: space-between;
| align-items: start;
| }
| .flex-end {
| display: flex;
| justify-content: end;
| align-items: center;
| }
| .flex-end-start {
| display: flex;
| justify-content: end;
| align-items: start;
| }
|
| .page-w {
| min-width: 1024px;
| }
| .page-w2 {
| width: 1024px;
| margin: 0 auto;
| }
|
|