|
@@ -0,0 +1,170 @@
|
|
1
|
+@charset "utf-8";
|
|
2
|
+
|
|
3
|
+html,body {
|
|
4
|
+ width: 100%;
|
|
5
|
+ height: 100%;
|
|
6
|
+ -webkit-text-size-adjust: 100%;
|
|
7
|
+ position: relative;
|
|
8
|
+ color: #333;
|
|
9
|
+ overflow-x: hidden;
|
|
10
|
+ font-size: 100px;
|
|
11
|
+}
|
|
12
|
+
|
|
13
|
+@media screen and (max-width:320px) {
|
|
14
|
+ html,body {
|
|
15
|
+ font-size: 85px;
|
|
16
|
+ }
|
|
17
|
+}
|
|
18
|
+
|
|
19
|
+@media screen and (min-width:375px) {
|
|
20
|
+ html,body {
|
|
21
|
+ font-size: 100px;
|
|
22
|
+ }
|
|
23
|
+}
|
|
24
|
+
|
|
25
|
+@media screen and (min-width:414px) {
|
|
26
|
+ html,body {
|
|
27
|
+ font-size: 110px;
|
|
28
|
+ }
|
|
29
|
+}
|
|
30
|
+
|
|
31
|
+* {
|
|
32
|
+ margin: 0;
|
|
33
|
+ padding: 0;
|
|
34
|
+ color: #000;
|
|
35
|
+ font-family: "微软雅黑";
|
|
36
|
+ -webkit-tap-highlight-color: rgba(255,0,0,0);
|
|
37
|
+ -webkit-font-smoothing: antialiased;
|
|
38
|
+}
|
|
39
|
+
|
|
40
|
+body * {
|
|
41
|
+ font-size: .14rem;
|
|
42
|
+}
|
|
43
|
+
|
|
44
|
+a {
|
|
45
|
+ text-decoration: none;
|
|
46
|
+}
|
|
47
|
+
|
|
48
|
+a:hover {
|
|
49
|
+ cursor: pointer;
|
|
50
|
+}
|
|
51
|
+
|
|
52
|
+em {
|
|
53
|
+ font-style: normal;
|
|
54
|
+}
|
|
55
|
+
|
|
56
|
+li {
|
|
57
|
+ list-style: none;
|
|
58
|
+}
|
|
59
|
+
|
|
60
|
+img {
|
|
61
|
+ border: 0;
|
|
62
|
+ vertical-align: middle;
|
|
63
|
+}
|
|
64
|
+
|
|
65
|
+table {
|
|
66
|
+ border-collapse: collapse;
|
|
67
|
+ border-spacing: 0;
|
|
68
|
+}
|
|
69
|
+
|
|
70
|
+p {
|
|
71
|
+ word-wrap: break-word;
|
|
72
|
+}
|
|
73
|
+
|
|
74
|
+b {
|
|
75
|
+ font-weight: normal;
|
|
76
|
+}
|
|
77
|
+
|
|
78
|
+input,textarea {
|
|
79
|
+ border: 0;
|
|
80
|
+ -webkit-appearance: none;
|
|
81
|
+}
|
|
82
|
+
|
|
83
|
+input[type=input] {
|
|
84
|
+ -webkit-appearance: none;
|
|
85
|
+}
|
|
86
|
+
|
|
87
|
+input[type=checkbox] {
|
|
88
|
+ -webkit-appearance: checkbox;
|
|
89
|
+}
|
|
90
|
+
|
|
91
|
+.text-overflow-ellipsis {
|
|
92
|
+ overflow: hidden;
|
|
93
|
+ white-space: nowrap;
|
|
94
|
+ text-overflow: ellipsis;
|
|
95
|
+}
|
|
96
|
+
|
|
97
|
+.centerLabel {
|
|
98
|
+ display: block;
|
|
99
|
+ position: absolute;
|
|
100
|
+ left: 50%;
|
|
101
|
+ top: 50%;
|
|
102
|
+ transform: translate(-50%,-50%);
|
|
103
|
+ -webkit-transform: translate(-50%,-50%);
|
|
104
|
+}
|
|
105
|
+
|
|
106
|
+.flex-h {
|
|
107
|
+ display: flex;
|
|
108
|
+ display: -webkit-flex;
|
|
109
|
+}
|
|
110
|
+
|
|
111
|
+.flex-v {
|
|
112
|
+ display: flex;
|
|
113
|
+ display: -webkit-flex;
|
|
114
|
+ flex-direction: column;
|
|
115
|
+ -webkit-flex-direction: column;
|
|
116
|
+}
|
|
117
|
+
|
|
118
|
+.flex-item {
|
|
119
|
+ flex: 1;
|
|
120
|
+ -webkit-flex: 1;
|
|
121
|
+ position: relative;
|
|
122
|
+ overflow: hidden;
|
|
123
|
+}
|
|
124
|
+
|
|
125
|
+*[class*="text-overflowEllipsis-line"] {
|
|
126
|
+ overflow: hidden;
|
|
127
|
+ text-overflow: ellipsis;
|
|
128
|
+ display: -webkit-box;
|
|
129
|
+ -webkit-box-orient: vertical;
|
|
130
|
+}
|
|
131
|
+
|
|
132
|
+.text-overflowEllipsis-line2 {
|
|
133
|
+ -webkit-line-clamp: 2;
|
|
134
|
+}
|
|
135
|
+
|
|
136
|
+.text-overflowEllipsis-line3 {
|
|
137
|
+ -webkit-line-clamp: 3;
|
|
138
|
+}
|
|
139
|
+
|
|
140
|
+.text-overflowEllipsis-line4 {
|
|
141
|
+ -webkit-line-clamp: 4;
|
|
142
|
+}
|
|
143
|
+
|
|
144
|
+*[class*="overflow-scroll-y"] {
|
|
145
|
+ overflow-x: hidden;
|
|
146
|
+ overflow-y: scroll;
|
|
147
|
+ -webkit-overflow-scrolling: touch;
|
|
148
|
+}
|
|
149
|
+
|
|
150
|
+*[class*="overflow-scroll-x"] {
|
|
151
|
+ overflow-y: hidden;
|
|
152
|
+ overflow-x: scroll;
|
|
153
|
+ -webkit-overflow-scrolling: touch;
|
|
154
|
+}
|
|
155
|
+
|
|
156
|
+.overflow-scroll-y-3d,.overflow-scroll-x-3d {
|
|
157
|
+ transform: translateZ(0);
|
|
158
|
+ -webkit-transform: translateZ(0);
|
|
159
|
+}
|
|
160
|
+
|
|
161
|
+.overflow-scroll-x::-webkit-scrollbar,.overflow-scroll-x-3d::-webkit-scrollbar {
|
|
162
|
+ width: 0;
|
|
163
|
+ height: 0;
|
|
164
|
+ color: transparent;
|
|
165
|
+ display: none;
|
|
166
|
+}
|
|
167
|
+
|
|
168
|
+input:focus,textarea:focus,select:focus {
|
|
169
|
+ outline: none;
|
|
170
|
+}
|