newtv-ui-revision 0.0.1
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +67 -0
- package/lib/demo.html +10 -0
- package/lib/newtv-ui.common.js +77384 -0
- package/lib/newtv-ui.common.js.map +1 -0
- package/lib/newtv-ui.css +1 -0
- package/lib/newtv-ui.umd.js +77394 -0
- package/lib/newtv-ui.umd.js.map +1 -0
- package/lib/newtv-ui.umd.min.js +25 -0
- package/lib/newtv-ui.umd.min.js.map +1 -0
- package/npm-shrinkwrap.json +24519 -0
- package/package.json +50 -0
- package/packages/assets/.DS_Store +0 -0
- package/packages/assets/css/.DS_Store +0 -0
- package/packages/assets/css/SourceHanSansCN-Normal.otf +0 -0
- package/packages/assets/css/UIRevision.css +784 -0
- package/packages/assets/css/UIRevision.less +829 -0
- package/packages/assets/css/header.css +0 -0
- package/packages/assets/css/header.less +514 -0
- package/packages/assets/css/iconfont.css +0 -0
- package/packages/assets/css/iconfont.less +520 -0
- package/packages/assets/css/newtv.css +1439 -0
- package/packages/assets/css/newtv.css.map +1 -0
- package/packages/assets/css/newtv.less +292 -0
- package/packages/dashboard/index.js +11 -0
- package/packages/dashboard/src/newtvDashboard.vue +125 -0
- package/packages/form/index.js +11 -0
- package/packages/form/src/newtvForm.vue +475 -0
- package/packages/header/index.js +11 -0
- package/packages/header/src/newtvHeader.vue +285 -0
- package/packages/index.js +49 -0
- package/packages/leftMenu/index.js +11 -0
- package/packages/leftMenu/src/newtvLeftMenu.vue +171 -0
- package/packages/list/index.js +10 -0
- package/packages/list/src/newtvList.vue +77 -0
- package/packages/notFount/index.js +11 -0
- package/packages/notFount/src/newtvNotFount.vue +28 -0
- package/packages/secondNav/index.js +11 -0
- package/packages/secondNav/src/newtvSecondNav.vue +157 -0
- package/packages/table/index.js +11 -0
- package/packages/table/src/newtvTable.vue +421 -0
- package/packages/videoBar/index.js +7 -0
- package/packages/videoBar/src/videoBar.vue +75 -0
- package/types/component.d.ts +7 -0
- package/types/dashboard.d.ts +10 -0
- package/types/form.d.ts +12 -0
- package/types/header.d.ts +10 -0
- package/types/index.d.ts +4 -0
- package/types/leftMenu.d.ts +14 -0
- package/types/list.d.ts +8 -0
- package/types/newtv-ui.d.ts +23 -0
- package/types/secondNav.d.ts +13 -0
- package/types/table.d.ts +14 -0
|
@@ -0,0 +1,1439 @@
|
|
|
1
|
+
/** * html5doctor.com Reset Stylesheet v1.6.1 (http://html5doctor.com/html-5-reset-stylesheet/) * Richard Clark (http://richclarkdesign.com) * http://cssreset.com */
|
|
2
|
+
html,
|
|
3
|
+
body,
|
|
4
|
+
div,
|
|
5
|
+
span,
|
|
6
|
+
object,
|
|
7
|
+
iframe,
|
|
8
|
+
h1,
|
|
9
|
+
h2,
|
|
10
|
+
h3,
|
|
11
|
+
h4,
|
|
12
|
+
h5,
|
|
13
|
+
h6,
|
|
14
|
+
p,
|
|
15
|
+
blockquote,
|
|
16
|
+
pre,
|
|
17
|
+
abbr,
|
|
18
|
+
address,
|
|
19
|
+
cite,
|
|
20
|
+
code,
|
|
21
|
+
del,
|
|
22
|
+
dfn,
|
|
23
|
+
em,
|
|
24
|
+
img,
|
|
25
|
+
ins,
|
|
26
|
+
kbd,
|
|
27
|
+
q,
|
|
28
|
+
samp,
|
|
29
|
+
small,
|
|
30
|
+
strong,
|
|
31
|
+
sub,
|
|
32
|
+
sup,
|
|
33
|
+
var,
|
|
34
|
+
b,
|
|
35
|
+
i,
|
|
36
|
+
dl,
|
|
37
|
+
dt,
|
|
38
|
+
dd,
|
|
39
|
+
ol,
|
|
40
|
+
ul,
|
|
41
|
+
li,
|
|
42
|
+
fieldset,
|
|
43
|
+
form,
|
|
44
|
+
label,
|
|
45
|
+
legend,
|
|
46
|
+
table,
|
|
47
|
+
caption,
|
|
48
|
+
tbody,
|
|
49
|
+
tfoot,
|
|
50
|
+
thead,
|
|
51
|
+
tr,
|
|
52
|
+
th,
|
|
53
|
+
td,
|
|
54
|
+
article,
|
|
55
|
+
aside,
|
|
56
|
+
canvas,
|
|
57
|
+
details,
|
|
58
|
+
figcaption,
|
|
59
|
+
figure,
|
|
60
|
+
footer,
|
|
61
|
+
header,
|
|
62
|
+
hgroup,
|
|
63
|
+
menu,
|
|
64
|
+
nav,
|
|
65
|
+
section,
|
|
66
|
+
summary,
|
|
67
|
+
time,
|
|
68
|
+
mark,
|
|
69
|
+
audio,
|
|
70
|
+
video {
|
|
71
|
+
margin: 0;
|
|
72
|
+
padding: 0;
|
|
73
|
+
border: 0;
|
|
74
|
+
outline: 0;
|
|
75
|
+
font-size: 100%;
|
|
76
|
+
vertical-align: baseline;
|
|
77
|
+
background: transparent;
|
|
78
|
+
}
|
|
79
|
+
body {
|
|
80
|
+
line-height: 1;
|
|
81
|
+
}
|
|
82
|
+
article,
|
|
83
|
+
aside,
|
|
84
|
+
details,
|
|
85
|
+
figcaption,
|
|
86
|
+
figure,
|
|
87
|
+
footer,
|
|
88
|
+
header,
|
|
89
|
+
hgroup,
|
|
90
|
+
menu,
|
|
91
|
+
nav,
|
|
92
|
+
section {
|
|
93
|
+
display: block;
|
|
94
|
+
}
|
|
95
|
+
nav ul {
|
|
96
|
+
list-style: none;
|
|
97
|
+
}
|
|
98
|
+
blockquote,
|
|
99
|
+
q {
|
|
100
|
+
quotes: none;
|
|
101
|
+
}
|
|
102
|
+
blockquote:before,
|
|
103
|
+
blockquote:after,
|
|
104
|
+
q:before,
|
|
105
|
+
q:after {
|
|
106
|
+
content: '';
|
|
107
|
+
content: none;
|
|
108
|
+
}
|
|
109
|
+
a {
|
|
110
|
+
margin: 0;
|
|
111
|
+
padding: 0;
|
|
112
|
+
font-size: 100%;
|
|
113
|
+
vertical-align: baseline;
|
|
114
|
+
background: transparent;
|
|
115
|
+
}
|
|
116
|
+
/* change colours to suit your needs */
|
|
117
|
+
ins {
|
|
118
|
+
background-color: #ff9;
|
|
119
|
+
color: #000;
|
|
120
|
+
text-decoration: none;
|
|
121
|
+
}
|
|
122
|
+
/* change colours to suit your needs */
|
|
123
|
+
mark {
|
|
124
|
+
background-color: #ff9;
|
|
125
|
+
color: #000;
|
|
126
|
+
font-style: italic;
|
|
127
|
+
font-weight: bold;
|
|
128
|
+
}
|
|
129
|
+
del {
|
|
130
|
+
text-decoration: line-through;
|
|
131
|
+
}
|
|
132
|
+
abbr[title],
|
|
133
|
+
dfn[title] {
|
|
134
|
+
border-bottom: 1px dotted;
|
|
135
|
+
cursor: help;
|
|
136
|
+
}
|
|
137
|
+
table {
|
|
138
|
+
border-collapse: collapse;
|
|
139
|
+
border-spacing: 0;
|
|
140
|
+
}
|
|
141
|
+
/* change border colour to suit your needs */
|
|
142
|
+
hr {
|
|
143
|
+
display: block;
|
|
144
|
+
height: 1px;
|
|
145
|
+
border: 0;
|
|
146
|
+
border-top: 1px solid #cccccc;
|
|
147
|
+
margin: 1em 0;
|
|
148
|
+
padding: 0;
|
|
149
|
+
}
|
|
150
|
+
input,
|
|
151
|
+
select {
|
|
152
|
+
vertical-align: middle;
|
|
153
|
+
}
|
|
154
|
+
div,
|
|
155
|
+
p,
|
|
156
|
+
h1,
|
|
157
|
+
h2,
|
|
158
|
+
h3,
|
|
159
|
+
h4,
|
|
160
|
+
h5,
|
|
161
|
+
h6 {
|
|
162
|
+
box-sizing: border-box;
|
|
163
|
+
}
|
|
164
|
+
a {
|
|
165
|
+
text-decoration: none;
|
|
166
|
+
}
|
|
167
|
+
li {
|
|
168
|
+
list-style: none;
|
|
169
|
+
}
|
|
170
|
+
.logo-link {
|
|
171
|
+
color: #fff;
|
|
172
|
+
}
|
|
173
|
+
.logo-link-pointer:hover {
|
|
174
|
+
cursor: pointer;
|
|
175
|
+
}
|
|
176
|
+
.nav_header {
|
|
177
|
+
background-color: #021F56;
|
|
178
|
+
display: flex;
|
|
179
|
+
justify-content: space-between;
|
|
180
|
+
align-items: center;
|
|
181
|
+
height: 40px;
|
|
182
|
+
position: fixed;
|
|
183
|
+
z-index: 1006;
|
|
184
|
+
width: 100%;
|
|
185
|
+
top: 0;
|
|
186
|
+
left: 0;
|
|
187
|
+
color: #ffffff;
|
|
188
|
+
}
|
|
189
|
+
.nav_header .nav_header_left {
|
|
190
|
+
height: 40px;
|
|
191
|
+
}
|
|
192
|
+
.nav_header .nav_header_left .nav-icon {
|
|
193
|
+
float: left;
|
|
194
|
+
width: 40px;
|
|
195
|
+
height: 40px;
|
|
196
|
+
background-color: #021F56;
|
|
197
|
+
}
|
|
198
|
+
.nav_header .nav_header_left .nav-icon i {
|
|
199
|
+
display: block;
|
|
200
|
+
font-size: 32px;
|
|
201
|
+
cursor: pointer;
|
|
202
|
+
margin-top: 8px;
|
|
203
|
+
}
|
|
204
|
+
.nav_header .nav_header_left img {
|
|
205
|
+
height: 36px;
|
|
206
|
+
display: block;
|
|
207
|
+
float: left;
|
|
208
|
+
margin-top: 7px;
|
|
209
|
+
margin-left: 30px;
|
|
210
|
+
}
|
|
211
|
+
.nav_header .nav_header_left h3 {
|
|
212
|
+
font-size: 16px;
|
|
213
|
+
font-weight: bold;
|
|
214
|
+
float: left;
|
|
215
|
+
height: 40px;
|
|
216
|
+
line-height: 40px;
|
|
217
|
+
margin-left: 30px;
|
|
218
|
+
}
|
|
219
|
+
.nav_header .user_name {
|
|
220
|
+
margin-right: 30px;
|
|
221
|
+
cursor: pointer;
|
|
222
|
+
}
|
|
223
|
+
.nav_header .user_name .el-dropdown {
|
|
224
|
+
color: #ffffff;
|
|
225
|
+
margin-top: 10px;
|
|
226
|
+
margin-right: 20px;
|
|
227
|
+
}
|
|
228
|
+
.nav_header .user_name .el-dropdown span {
|
|
229
|
+
line-height: 20px;
|
|
230
|
+
}
|
|
231
|
+
.nav_header .user_name span.portrait {
|
|
232
|
+
line-height: 40px;
|
|
233
|
+
display: inline-block;
|
|
234
|
+
border-radius: 23px;
|
|
235
|
+
width: 40px;
|
|
236
|
+
height: 40px;
|
|
237
|
+
overflow: hidden;
|
|
238
|
+
}
|
|
239
|
+
.nav_header .user_name span.portrait img {
|
|
240
|
+
width: 40px;
|
|
241
|
+
height: 40px;
|
|
242
|
+
vertical-align: middle;
|
|
243
|
+
}
|
|
244
|
+
.header-dropdown-menu li {
|
|
245
|
+
padding: 5px 40px 5px 20px;
|
|
246
|
+
}
|
|
247
|
+
.header-dropdown-menu li i {
|
|
248
|
+
margin-right: 10px;
|
|
249
|
+
}
|
|
250
|
+
.main-menu .mask {
|
|
251
|
+
content: '';
|
|
252
|
+
width: 100%;
|
|
253
|
+
height: 100%;
|
|
254
|
+
position: fixed;
|
|
255
|
+
top: 0;
|
|
256
|
+
left: 0;
|
|
257
|
+
bottom: 0;
|
|
258
|
+
background-color: rgba(0, 0, 0, 0.6);
|
|
259
|
+
z-index: 1004;
|
|
260
|
+
}
|
|
261
|
+
.main-menu-list {
|
|
262
|
+
box-sizing: border-box;
|
|
263
|
+
position: fixed;
|
|
264
|
+
top: 0;
|
|
265
|
+
left: 0;
|
|
266
|
+
bottom: 0;
|
|
267
|
+
z-index: 1005;
|
|
268
|
+
width: 230px;
|
|
269
|
+
height: 100%;
|
|
270
|
+
overflow-y: auto;
|
|
271
|
+
background-color: #021F56;
|
|
272
|
+
text-align: left;
|
|
273
|
+
padding: 40px 0 0 0;
|
|
274
|
+
color: #ffffff;
|
|
275
|
+
transform: translate(-230px, 0);
|
|
276
|
+
-ms-transform: translate(-230px, 0);
|
|
277
|
+
/* IE 9 */
|
|
278
|
+
-webkit-transform: translate(-230px, 0);
|
|
279
|
+
/* Safari and Chrome */
|
|
280
|
+
-o-transform: translate(-230px, 0);
|
|
281
|
+
/* Opera */
|
|
282
|
+
}
|
|
283
|
+
.main-menu-list:last-child:after {
|
|
284
|
+
content: '';
|
|
285
|
+
position: absolute;
|
|
286
|
+
width: 92%;
|
|
287
|
+
height: 1px;
|
|
288
|
+
background-color: #cccccc;
|
|
289
|
+
bottom: 0;
|
|
290
|
+
left: 50%;
|
|
291
|
+
transform: translate(-50%, -50%);
|
|
292
|
+
}
|
|
293
|
+
.main-menu-list hr {
|
|
294
|
+
margin-left: 15%;
|
|
295
|
+
width: 70%;
|
|
296
|
+
background-color: #9a9daf;
|
|
297
|
+
height: 1px;
|
|
298
|
+
}
|
|
299
|
+
.main-menu-list dt {
|
|
300
|
+
padding: 20px;
|
|
301
|
+
cursor: default;
|
|
302
|
+
position: relative;
|
|
303
|
+
}
|
|
304
|
+
.main-menu-list dd a {
|
|
305
|
+
display: block;
|
|
306
|
+
font-size: 14px;
|
|
307
|
+
padding: 15px 20px 15px 40px;
|
|
308
|
+
text-deqcoration: none;
|
|
309
|
+
color: #ffffff;
|
|
310
|
+
}
|
|
311
|
+
.main-menu-list dd a i {
|
|
312
|
+
margin-right: 5px;
|
|
313
|
+
font-size: 18px;
|
|
314
|
+
}
|
|
315
|
+
.main-menu-list dd a:active,
|
|
316
|
+
.main-menu-list dd a.active {
|
|
317
|
+
color: #409EFF;
|
|
318
|
+
}
|
|
319
|
+
.main-menu-list dd:hover {
|
|
320
|
+
background-color: rgba(37, 46, 61, 0.4);
|
|
321
|
+
}
|
|
322
|
+
.main-menu-list dd:hover a {
|
|
323
|
+
color: #409eff;
|
|
324
|
+
}
|
|
325
|
+
.nav-act {
|
|
326
|
+
animation: active 1s forwards;
|
|
327
|
+
-moz-animation: active 1s forwards;
|
|
328
|
+
/* Firefox */
|
|
329
|
+
-webkit-animation: active 1s forwards;
|
|
330
|
+
/* Safari and Chrome */
|
|
331
|
+
-o-animation: active 1s forwards;
|
|
332
|
+
/* Opera */
|
|
333
|
+
}
|
|
334
|
+
.nav-back {
|
|
335
|
+
animation: back 1s forwards;
|
|
336
|
+
-moz-animation: back 1s forwards;
|
|
337
|
+
/* Firefox */
|
|
338
|
+
-webkit-animation: back 1s forwards;
|
|
339
|
+
/* Safari and Chrome */
|
|
340
|
+
-o-animation: back 1s forwards;
|
|
341
|
+
/* Opera */
|
|
342
|
+
}
|
|
343
|
+
.menu-list-act {
|
|
344
|
+
animation: menu-active 1s forwards;
|
|
345
|
+
-moz-animation: menu-active 1s forwards;
|
|
346
|
+
/* Firefox */
|
|
347
|
+
-webkit-animation: menu-active 1s forwards;
|
|
348
|
+
/* Safari and Chrome */
|
|
349
|
+
-o-animation: menu-active 1s forwards;
|
|
350
|
+
/* Opera */
|
|
351
|
+
}
|
|
352
|
+
.menu-list-back {
|
|
353
|
+
animation: menu-back 1s forwards;
|
|
354
|
+
-moz-animation: menu-back 1s forwards;
|
|
355
|
+
/* Firefox */
|
|
356
|
+
-webkit-animation: menu-back 1s forwards;
|
|
357
|
+
/* Safari and Chrome */
|
|
358
|
+
-o-animation: menu-back 1s forwards;
|
|
359
|
+
/* Opera */
|
|
360
|
+
}
|
|
361
|
+
@keyframes active {
|
|
362
|
+
0% {
|
|
363
|
+
transform: rotate(0deg);
|
|
364
|
+
}
|
|
365
|
+
100% {
|
|
366
|
+
transform: rotate(90deg);
|
|
367
|
+
}
|
|
368
|
+
}
|
|
369
|
+
@-moz-keyframes active {
|
|
370
|
+
/* Firefox */
|
|
371
|
+
0% {
|
|
372
|
+
transform: rotate(0deg);
|
|
373
|
+
}
|
|
374
|
+
100% {
|
|
375
|
+
transform: rotate(90deg);
|
|
376
|
+
}
|
|
377
|
+
}
|
|
378
|
+
@-webkit-keyframes active {
|
|
379
|
+
/* Safari and Chrome */
|
|
380
|
+
0% {
|
|
381
|
+
transform: rotate(0deg);
|
|
382
|
+
}
|
|
383
|
+
100% {
|
|
384
|
+
transform: rotate(90deg);
|
|
385
|
+
}
|
|
386
|
+
}
|
|
387
|
+
@-o-keyframes active {
|
|
388
|
+
/* Opera */
|
|
389
|
+
0% {
|
|
390
|
+
transform: rotate(0deg);
|
|
391
|
+
}
|
|
392
|
+
100% {
|
|
393
|
+
transform: rotate(90deg);
|
|
394
|
+
}
|
|
395
|
+
}
|
|
396
|
+
@keyframes back {
|
|
397
|
+
0% {
|
|
398
|
+
transform: rotate(90deg);
|
|
399
|
+
}
|
|
400
|
+
100% {
|
|
401
|
+
transform: rotate(0deg);
|
|
402
|
+
}
|
|
403
|
+
}
|
|
404
|
+
@-moz-keyframes back {
|
|
405
|
+
/* Firefox */
|
|
406
|
+
0% {
|
|
407
|
+
transform: rotate(90deg);
|
|
408
|
+
}
|
|
409
|
+
100% {
|
|
410
|
+
transform: rotate(0deg);
|
|
411
|
+
}
|
|
412
|
+
}
|
|
413
|
+
@-webkit-keyframes back {
|
|
414
|
+
/* Safari and Chrome */
|
|
415
|
+
0% {
|
|
416
|
+
transform: rotate(90deg);
|
|
417
|
+
}
|
|
418
|
+
100% {
|
|
419
|
+
transform: rotate(0deg);
|
|
420
|
+
}
|
|
421
|
+
}
|
|
422
|
+
@-o-keyframes back {
|
|
423
|
+
/* Opera */
|
|
424
|
+
0% {
|
|
425
|
+
transform: rotate(90deg);
|
|
426
|
+
}
|
|
427
|
+
100% {
|
|
428
|
+
transform: rotate(0deg);
|
|
429
|
+
}
|
|
430
|
+
}
|
|
431
|
+
@keyframes menu-active {
|
|
432
|
+
0% {
|
|
433
|
+
transform: translate(-230px, 0);
|
|
434
|
+
}
|
|
435
|
+
100% {
|
|
436
|
+
transform: translate(0, 0);
|
|
437
|
+
}
|
|
438
|
+
}
|
|
439
|
+
@-moz-keyframes menu-active {
|
|
440
|
+
/* Firefox */
|
|
441
|
+
0% {
|
|
442
|
+
transform: translate(-230px, 0);
|
|
443
|
+
}
|
|
444
|
+
100% {
|
|
445
|
+
transform: translate(0, 0);
|
|
446
|
+
}
|
|
447
|
+
}
|
|
448
|
+
@-webkit-keyframes menu-active {
|
|
449
|
+
/* Safari and Chrome */
|
|
450
|
+
0% {
|
|
451
|
+
transform: translate(-230px, 0);
|
|
452
|
+
}
|
|
453
|
+
100% {
|
|
454
|
+
transform: translate(0, 0);
|
|
455
|
+
}
|
|
456
|
+
}
|
|
457
|
+
@-o-keyframes menu-active {
|
|
458
|
+
/* Opera */
|
|
459
|
+
0% {
|
|
460
|
+
transform: translate(-230px, 0);
|
|
461
|
+
}
|
|
462
|
+
100% {
|
|
463
|
+
transform: translate(0, 0);
|
|
464
|
+
}
|
|
465
|
+
}
|
|
466
|
+
@keyframes menu-back {
|
|
467
|
+
0% {
|
|
468
|
+
transform: translate(0, 0);
|
|
469
|
+
}
|
|
470
|
+
100% {
|
|
471
|
+
transform: translate(-230px, 0);
|
|
472
|
+
}
|
|
473
|
+
}
|
|
474
|
+
@-moz-keyframes menu-back {
|
|
475
|
+
/* Firefox */
|
|
476
|
+
0% {
|
|
477
|
+
transform: translate(0, 0);
|
|
478
|
+
}
|
|
479
|
+
100% {
|
|
480
|
+
transform: translate(-230px, 0);
|
|
481
|
+
}
|
|
482
|
+
}
|
|
483
|
+
@-webkit-keyframes menu-back {
|
|
484
|
+
/* Safari and Chrome */
|
|
485
|
+
0% {
|
|
486
|
+
transform: translate(0, 0);
|
|
487
|
+
}
|
|
488
|
+
100% {
|
|
489
|
+
transform: translate(-230px, 0);
|
|
490
|
+
}
|
|
491
|
+
}
|
|
492
|
+
@-o-keyframes menu-back {
|
|
493
|
+
/* Opera */
|
|
494
|
+
0% {
|
|
495
|
+
transform: translate(0, 0);
|
|
496
|
+
}
|
|
497
|
+
100% {
|
|
498
|
+
transform: translate(-230px, 0);
|
|
499
|
+
}
|
|
500
|
+
}
|
|
501
|
+
.body-container {
|
|
502
|
+
height: 100vh;
|
|
503
|
+
padding-top: 50px;
|
|
504
|
+
box-sizing: border-box;
|
|
505
|
+
}
|
|
506
|
+
.body-container .el-main {
|
|
507
|
+
padding: 20px 20px 20px 40px;
|
|
508
|
+
}
|
|
509
|
+
.content-row .sidebar {
|
|
510
|
+
width: 64px;
|
|
511
|
+
position: fixed;
|
|
512
|
+
top: 40px;
|
|
513
|
+
bottom: 0;
|
|
514
|
+
left: 0;
|
|
515
|
+
z-index: 1000;
|
|
516
|
+
display: block;
|
|
517
|
+
text-align: left;
|
|
518
|
+
padding: 0;
|
|
519
|
+
background-color: #ffffff;
|
|
520
|
+
box-shadow: 5px 10px 15px #eeeeee;
|
|
521
|
+
font-size: 16px;
|
|
522
|
+
}
|
|
523
|
+
.content-row .sidebar .menu {
|
|
524
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
525
|
+
}
|
|
526
|
+
.content-row .sidebar .el-submenu.is-opened {
|
|
527
|
+
background-color: #f2f8fe;
|
|
528
|
+
}
|
|
529
|
+
.content-row .sidebar .el-submenu.is-opened .el-submenu__title,
|
|
530
|
+
.content-row .sidebar .el-submenu.is-opened .el-menu,
|
|
531
|
+
.content-row .sidebar .el-submenu.is-opened .el-menu-item {
|
|
532
|
+
background: none !important;
|
|
533
|
+
margin: 1px 0;
|
|
534
|
+
}
|
|
535
|
+
.content-row .sidebar .el-submenu.is-active .el-submenu__title {
|
|
536
|
+
color: #6699ff !important;
|
|
537
|
+
}
|
|
538
|
+
.content-row .sidebar .el-submenu.is-active .el-submenu__title:hover {
|
|
539
|
+
color: #fff !important;
|
|
540
|
+
}
|
|
541
|
+
.content-row .sidebar .el-submenu.is-active .is-active {
|
|
542
|
+
color: #ffffff !important;
|
|
543
|
+
background-color: #56a2f7 !important;
|
|
544
|
+
}
|
|
545
|
+
.content-row .content {
|
|
546
|
+
width: 100%;
|
|
547
|
+
padding: 5px 30px 30px 94px;
|
|
548
|
+
margin-top: 75px;
|
|
549
|
+
box-sizing: border-box;
|
|
550
|
+
}
|
|
551
|
+
@media (min-width: 992px) {
|
|
552
|
+
.sidebar .el-scrollbar__bar.is-vertical {
|
|
553
|
+
z-index: 1000;
|
|
554
|
+
}
|
|
555
|
+
.content-row .sidebar {
|
|
556
|
+
width: 200px;
|
|
557
|
+
overflow: auto;
|
|
558
|
+
}
|
|
559
|
+
.content-row .content {
|
|
560
|
+
padding: 5px 30px 30px 230px;
|
|
561
|
+
}
|
|
562
|
+
}
|
|
563
|
+
.newtv-sidebar .el-menu-item-group__title {
|
|
564
|
+
padding: 0;
|
|
565
|
+
}
|
|
566
|
+
.newtv-sidebar {
|
|
567
|
+
overflow-x: hidden!important;
|
|
568
|
+
}
|
|
569
|
+
.sidebar-container {
|
|
570
|
+
width: 200px !important;
|
|
571
|
+
text-align: left;
|
|
572
|
+
padding: 0;
|
|
573
|
+
background-color: #ffffff;
|
|
574
|
+
box-shadow: 5px 10px 15px #eeeeee;
|
|
575
|
+
font-size: 16px;
|
|
576
|
+
position: relative;
|
|
577
|
+
z-index: 999;
|
|
578
|
+
transition: width 0.6s;
|
|
579
|
+
/*overflow: visible!important;*/
|
|
580
|
+
}
|
|
581
|
+
.sidebar-container.el-aside {
|
|
582
|
+
overflow: visible;
|
|
583
|
+
display: flex;
|
|
584
|
+
flex-direction: column;
|
|
585
|
+
}
|
|
586
|
+
.sidebar-container.sidebar-close {
|
|
587
|
+
width: 0px!important;
|
|
588
|
+
transition: width 0.6s;
|
|
589
|
+
}
|
|
590
|
+
.sidebar-container.sidebar-close .arrow {
|
|
591
|
+
transform: translate(0, -50%) rotate(0deg);
|
|
592
|
+
}
|
|
593
|
+
.sidebar-container.sidebar-close .sidebar-header {
|
|
594
|
+
padding: 0;
|
|
595
|
+
transition: all 0.6s;
|
|
596
|
+
}
|
|
597
|
+
.sidebar-container .sidebar {
|
|
598
|
+
height: 100%;
|
|
599
|
+
overflow: auto;
|
|
600
|
+
}
|
|
601
|
+
.sidebar-container .el-menu {
|
|
602
|
+
position: relative;
|
|
603
|
+
z-index: 2;
|
|
604
|
+
}
|
|
605
|
+
.sidebar-container .menu {
|
|
606
|
+
background-color: rgba(0, 0, 0, 0.1);
|
|
607
|
+
}
|
|
608
|
+
.sidebar-container .el-submenu.is-opened {
|
|
609
|
+
background-color: #f2f8fe;
|
|
610
|
+
}
|
|
611
|
+
.sidebar-container .el-submenu.is-opened .el-submenu__title,
|
|
612
|
+
.sidebar-container .el-submenu.is-opened .el-menu,
|
|
613
|
+
.sidebar-container .el-submenu.is-opened .el-menu-item {
|
|
614
|
+
background: none !important;
|
|
615
|
+
margin: 1px 0;
|
|
616
|
+
}
|
|
617
|
+
.sidebar-container .el-submenu.is-opened .el-submenu__title:hover,
|
|
618
|
+
.sidebar-container .el-submenu.is-opened .el-menu-item:hover {
|
|
619
|
+
background-color: #409EFF !important;
|
|
620
|
+
color: #fff !important;
|
|
621
|
+
}
|
|
622
|
+
.sidebar-container .el-submenu.is-active .el-submenu__title {
|
|
623
|
+
color: #6699ff !important;
|
|
624
|
+
}
|
|
625
|
+
.sidebar-container .el-submenu.is-active .el-submenu__title:hover {
|
|
626
|
+
color: #fff !important;
|
|
627
|
+
}
|
|
628
|
+
.sidebar-container .el-submenu .el-menu-item.is-active {
|
|
629
|
+
color: #ffffff !important;
|
|
630
|
+
background-color: #56a2f7 !important;
|
|
631
|
+
font-weight: bold;
|
|
632
|
+
}
|
|
633
|
+
.sidebar-header {
|
|
634
|
+
height: 56px;
|
|
635
|
+
line-height: 56px;
|
|
636
|
+
color: #4c4d4e;
|
|
637
|
+
background-color: #F5F7FA;
|
|
638
|
+
padding: 0 20px;
|
|
639
|
+
transition: all 0.6s;
|
|
640
|
+
}
|
|
641
|
+
.sidebar-header p {
|
|
642
|
+
overflow: hidden;
|
|
643
|
+
text-overflow: ellipsis;
|
|
644
|
+
white-space: nowrap;
|
|
645
|
+
cursor: default;
|
|
646
|
+
}
|
|
647
|
+
.sidebar-switch {
|
|
648
|
+
position: fixed;
|
|
649
|
+
top: 50%;
|
|
650
|
+
left: -20px;
|
|
651
|
+
z-index: inherit;
|
|
652
|
+
transform: translate(100%, -50%);
|
|
653
|
+
width: 20px;
|
|
654
|
+
height: 75px;
|
|
655
|
+
background: #ffffff;
|
|
656
|
+
/*border: 1px dashed #f4f4f5;*/
|
|
657
|
+
border-left: none;
|
|
658
|
+
border-top-right-radius: 14px;
|
|
659
|
+
border-bottom-right-radius: 14px;
|
|
660
|
+
cursor: pointer;
|
|
661
|
+
}
|
|
662
|
+
.sidebar-switch .arrow {
|
|
663
|
+
font-size: 12px;
|
|
664
|
+
color: #56a2f7;
|
|
665
|
+
position: absolute;
|
|
666
|
+
right: 6px;
|
|
667
|
+
top: 50%;
|
|
668
|
+
transform: translate(0, -50%) rotate(180deg);
|
|
669
|
+
}
|
|
670
|
+
.el-menu-item:hover,
|
|
671
|
+
.el-submenu__title:hover {
|
|
672
|
+
background-color: #56a2f7 !important;
|
|
673
|
+
color: #fff !important;
|
|
674
|
+
}
|
|
675
|
+
.el-menu-item:hover i,
|
|
676
|
+
.el-submenu__title:hover i {
|
|
677
|
+
color: #fff !important;
|
|
678
|
+
}
|
|
679
|
+
.el-menu-item [class^=newtv-icon-],
|
|
680
|
+
.el-submenu__title [class^=newtv-icon-],
|
|
681
|
+
.el-menu-item [class^=el-icon-],
|
|
682
|
+
.el-submenu__title [class^=el-icon-] {
|
|
683
|
+
margin-right: 5px;
|
|
684
|
+
width: 24px;
|
|
685
|
+
text-align: center;
|
|
686
|
+
font-size: 18px;
|
|
687
|
+
vertical-align: middle;
|
|
688
|
+
}
|
|
689
|
+
@media (max-width: 992px) {
|
|
690
|
+
.sidebar-container {
|
|
691
|
+
width: 80px !important;
|
|
692
|
+
}
|
|
693
|
+
.sidebar-container .sidebar-header {
|
|
694
|
+
display: none;
|
|
695
|
+
}
|
|
696
|
+
}
|
|
697
|
+
th,
|
|
698
|
+
td {
|
|
699
|
+
height: 44px;
|
|
700
|
+
}
|
|
701
|
+
.el-table thead {
|
|
702
|
+
color: #464a53;
|
|
703
|
+
font-weight: 600;
|
|
704
|
+
}
|
|
705
|
+
.el-table td,
|
|
706
|
+
.el-table th {
|
|
707
|
+
padding: 6px 0;
|
|
708
|
+
}
|
|
709
|
+
.el-table .el-table__body td .cell:empty::after {
|
|
710
|
+
content: "--";
|
|
711
|
+
}
|
|
712
|
+
th {
|
|
713
|
+
font-weight: lighter !important;
|
|
714
|
+
}
|
|
715
|
+
.textAlignLeft {
|
|
716
|
+
text-align: left;
|
|
717
|
+
}
|
|
718
|
+
.left {
|
|
719
|
+
float: left;
|
|
720
|
+
}
|
|
721
|
+
.right {
|
|
722
|
+
float: right;
|
|
723
|
+
}
|
|
724
|
+
.notification {
|
|
725
|
+
overflow: hidden;
|
|
726
|
+
line-height: 1.5;
|
|
727
|
+
top: 8px;
|
|
728
|
+
}
|
|
729
|
+
.notification .icon-message {
|
|
730
|
+
font-size: 22px;
|
|
731
|
+
}
|
|
732
|
+
.notification .corner-mark {
|
|
733
|
+
display: inline-block;
|
|
734
|
+
position: relative;
|
|
735
|
+
bottom: 5px;
|
|
736
|
+
right: -2px;
|
|
737
|
+
min-width: 17px;
|
|
738
|
+
height: 17px;
|
|
739
|
+
padding: 0 4px;
|
|
740
|
+
box-sizing: border-box;
|
|
741
|
+
background: #FF5273;
|
|
742
|
+
border-radius: 17px;
|
|
743
|
+
line-height: 17px;
|
|
744
|
+
font-size: 12px;
|
|
745
|
+
white-space: nowrap;
|
|
746
|
+
text-align: center;
|
|
747
|
+
}
|
|
748
|
+
.manual {
|
|
749
|
+
margin-right: 30px;
|
|
750
|
+
font-size: 24px;
|
|
751
|
+
line-height: 1.8;
|
|
752
|
+
}
|
|
753
|
+
.manual span {
|
|
754
|
+
font-size: 14px;
|
|
755
|
+
display: inline-block;
|
|
756
|
+
float: right;
|
|
757
|
+
margin: 5px;
|
|
758
|
+
}
|
|
759
|
+
.el-dialog__header {
|
|
760
|
+
background-color: #fafafa;
|
|
761
|
+
padding: 20px;
|
|
762
|
+
}
|
|
763
|
+
.el-dialog__footer button,
|
|
764
|
+
.large-button button {
|
|
765
|
+
width: 100px;
|
|
766
|
+
}
|
|
767
|
+
.el-dialog {
|
|
768
|
+
width: 580px;
|
|
769
|
+
min-width: 430px;
|
|
770
|
+
}
|
|
771
|
+
.el-autocomplete {
|
|
772
|
+
width: 100%;
|
|
773
|
+
}
|
|
774
|
+
.el-radio {
|
|
775
|
+
line-height: 30px;
|
|
776
|
+
}
|
|
777
|
+
.el-tabs__nav-scroll .el-tabs__nav .el-tabs__item {
|
|
778
|
+
background-color: #EBEEF5;
|
|
779
|
+
color: #9a9daf;
|
|
780
|
+
}
|
|
781
|
+
.el-tabs__nav-scroll .el-tabs__nav .el-tabs__item.is-active,
|
|
782
|
+
.el-tabs__nav-scroll .el-tabs__nav .el-tabs__item:hover {
|
|
783
|
+
background-color: #56a2f7;
|
|
784
|
+
color: #ffffff !important;
|
|
785
|
+
}
|
|
786
|
+
.newtv-content-body {
|
|
787
|
+
background-color: #f4f4f5;
|
|
788
|
+
}
|
|
789
|
+
.newtv-content-body .el-tabs--card > .el-tabs__header .el-tabs__item.is-active {
|
|
790
|
+
border-bottom: 1px solid #56a2f7 !important;
|
|
791
|
+
}
|
|
792
|
+
.newtv-table-body {
|
|
793
|
+
padding: 30px;
|
|
794
|
+
background-color: #fff;
|
|
795
|
+
}
|
|
796
|
+
.newtv-table-body .el-table th {
|
|
797
|
+
background-color: #f8fcff;
|
|
798
|
+
}
|
|
799
|
+
.newtv-table-body .el-table tr {
|
|
800
|
+
background-color: #eef7fe;
|
|
801
|
+
}
|
|
802
|
+
.newtv-table-body .el-table tr.el-table__row--striped {
|
|
803
|
+
background-color: #f8fcff;
|
|
804
|
+
}
|
|
805
|
+
.newtv-top-menus {
|
|
806
|
+
background-color: #fff !important;
|
|
807
|
+
padding: 30px 30px 0;
|
|
808
|
+
}
|
|
809
|
+
.newtv-search-body {
|
|
810
|
+
background-color: #fff !important;
|
|
811
|
+
padding: 5px 30px;
|
|
812
|
+
margin-bottom: 20px;
|
|
813
|
+
}
|
|
814
|
+
.header-search-box {
|
|
815
|
+
background-color: #fff !important;
|
|
816
|
+
padding: 20px 30px 0;
|
|
817
|
+
margin-bottom: 20px;
|
|
818
|
+
}
|
|
819
|
+
.time-form-item .el-form-item__content {
|
|
820
|
+
line-height: 38px;
|
|
821
|
+
}
|
|
822
|
+
.row-line {
|
|
823
|
+
text-align: left;
|
|
824
|
+
}
|
|
825
|
+
.newtv-dashboard {
|
|
826
|
+
padding: 20px 20px 0 20px;
|
|
827
|
+
}
|
|
828
|
+
.newtv-dashboard .dashboard-item {
|
|
829
|
+
position: relative;
|
|
830
|
+
}
|
|
831
|
+
.newtv-dashboard h2 {
|
|
832
|
+
font-size: 16px;
|
|
833
|
+
text-indent: 20px;
|
|
834
|
+
line-height: 46px;
|
|
835
|
+
margin-bottom: 20px;
|
|
836
|
+
color: #464a53;
|
|
837
|
+
background-color: #fafafa;
|
|
838
|
+
text-align: left;
|
|
839
|
+
}
|
|
840
|
+
.newtv-dashboard .el-col {
|
|
841
|
+
position: relative;
|
|
842
|
+
overflow: hidden;
|
|
843
|
+
color: #fafafa;
|
|
844
|
+
}
|
|
845
|
+
.newtv-dashboard .inner {
|
|
846
|
+
position: absolute;
|
|
847
|
+
top: 50%;
|
|
848
|
+
left: 15px;
|
|
849
|
+
transform: translate(0, -50%);
|
|
850
|
+
}
|
|
851
|
+
.newtv-dashboard h3 {
|
|
852
|
+
font-size: 38px;
|
|
853
|
+
font-weight: bold;
|
|
854
|
+
margin: 0 0 10px 0;
|
|
855
|
+
white-space: nowrap;
|
|
856
|
+
padding: 0;
|
|
857
|
+
}
|
|
858
|
+
.newtv-dashboard p {
|
|
859
|
+
font-size: 16px;
|
|
860
|
+
margin: 0 0 10px;
|
|
861
|
+
padding-left: 4px;
|
|
862
|
+
line-height: 1.3;
|
|
863
|
+
}
|
|
864
|
+
.newtv-dashboard .icon {
|
|
865
|
+
font-size: 90px;
|
|
866
|
+
position: absolute;
|
|
867
|
+
top: 50%;
|
|
868
|
+
right: 10px;
|
|
869
|
+
z-index: 0;
|
|
870
|
+
color: rgba(255, 255, 255, 0.15);
|
|
871
|
+
transform: translate(0, -50%);
|
|
872
|
+
}
|
|
873
|
+
.newtv-dashboard.dashboard-center {
|
|
874
|
+
font-size: 48px;
|
|
875
|
+
}
|
|
876
|
+
.newtv-dashboard.dashboard-center .dashboard-item:hover p {
|
|
877
|
+
font-size: 130%;
|
|
878
|
+
}
|
|
879
|
+
.newtv-dashboard.dashboard-center .dashboard-item:hover h3 {
|
|
880
|
+
font-size: 40%;
|
|
881
|
+
}
|
|
882
|
+
.newtv-dashboard.dashboard-center .inner {
|
|
883
|
+
text-align: center;
|
|
884
|
+
left: 50%;
|
|
885
|
+
transform: translate(-50%, -50%);
|
|
886
|
+
}
|
|
887
|
+
.newtv-dashboard.dashboard-center h3 {
|
|
888
|
+
font-size: 16px;
|
|
889
|
+
font-weight: normal;
|
|
890
|
+
cursor: default;
|
|
891
|
+
transition: all 0.3s linear;
|
|
892
|
+
}
|
|
893
|
+
.newtv-dashboard.dashboard-center p {
|
|
894
|
+
font-size: 48px;
|
|
895
|
+
line-height: 1;
|
|
896
|
+
font-weight: 700;
|
|
897
|
+
cursor: default;
|
|
898
|
+
transition: all 0.3s linear;
|
|
899
|
+
}
|
|
900
|
+
.newtv-dashboard.dashboard-center .icon {
|
|
901
|
+
font-size: 64px;
|
|
902
|
+
top: 75%;
|
|
903
|
+
cursor: default;
|
|
904
|
+
}
|
|
905
|
+
.content-404 {
|
|
906
|
+
width: 100vm;
|
|
907
|
+
height: 100vh;
|
|
908
|
+
overflow: hidden;
|
|
909
|
+
background: url("https://center-img.cloud.ottcn.com/center/1566373249806.jpg") center no-repeat #051c3c;
|
|
910
|
+
background-size: cover;
|
|
911
|
+
position: relative;
|
|
912
|
+
}
|
|
913
|
+
.content-404 .text-404 {
|
|
914
|
+
width: 33%;
|
|
915
|
+
position: absolute;
|
|
916
|
+
top: 50%;
|
|
917
|
+
left: 50%;
|
|
918
|
+
transform: translate(-50%, -50%);
|
|
919
|
+
}
|
|
920
|
+
.content-404 .text-404 img {
|
|
921
|
+
width: 100%;
|
|
922
|
+
}
|
|
923
|
+
.content-404 .text-404 p {
|
|
924
|
+
font-size: 18px;
|
|
925
|
+
color: #ffffff;
|
|
926
|
+
margin-top: -15%;
|
|
927
|
+
margin-bottom: 30px;
|
|
928
|
+
}
|
|
929
|
+
.content-404 .text-404 .back {
|
|
930
|
+
padding: 5px 20px;
|
|
931
|
+
background-color: #299fff;
|
|
932
|
+
color: #ffffff;
|
|
933
|
+
border-radius: 5px;
|
|
934
|
+
}
|
|
935
|
+
/* 在线链接服务仅供平台体验和调试使用,平台不承诺服务的稳定性,企业客户需下载字体包自行发布使用并做好备份。 */
|
|
936
|
+
@font-face {
|
|
937
|
+
font-family: 'newtvfont';
|
|
938
|
+
/* Project id 1265055 */
|
|
939
|
+
src: url('//at.alicdn.com/t/c/font_1265055_wep357npoj9.woff2?t=1697786651748') format('woff2'), url('//at.alicdn.com/t/c/font_1265055_wep357npoj9.woff?t=1697786651748') format('woff'), url('//at.alicdn.com/t/c/font_1265055_wep357npoj9.ttf?t=1697786651748') format('truetype');
|
|
940
|
+
}
|
|
941
|
+
html,
|
|
942
|
+
body {
|
|
943
|
+
font-family: 'Microsoft YaHei', 'Avenir', Helvetica, Arial, sans-serif;
|
|
944
|
+
font-size: 14px;
|
|
945
|
+
font-weight: 400;
|
|
946
|
+
}
|
|
947
|
+
[class*=" newtv-icon-"],
|
|
948
|
+
[class^=newtv-icon-] {
|
|
949
|
+
font-family: "newtvfont" !important;
|
|
950
|
+
speak: none;
|
|
951
|
+
font-style: normal;
|
|
952
|
+
font-weight: 400;
|
|
953
|
+
font-variant: normal;
|
|
954
|
+
text-transform: none;
|
|
955
|
+
line-height: 1;
|
|
956
|
+
vertical-align: baseline;
|
|
957
|
+
display: inline-block;
|
|
958
|
+
-webkit-font-smoothing: antialiased;
|
|
959
|
+
-moz-osx-font-smoothing: grayscale;
|
|
960
|
+
}
|
|
961
|
+
.newtv-icon-nav:before {
|
|
962
|
+
content: "\e630";
|
|
963
|
+
}
|
|
964
|
+
.newtv-icon-bottom:before {
|
|
965
|
+
content: "\e63e";
|
|
966
|
+
}
|
|
967
|
+
.newtv-icon-team:before {
|
|
968
|
+
content: "\e60e";
|
|
969
|
+
}
|
|
970
|
+
.newtv-icon-phone:before {
|
|
971
|
+
content: "\e63f";
|
|
972
|
+
}
|
|
973
|
+
.newtv-icon-email:before {
|
|
974
|
+
content: "\e60d";
|
|
975
|
+
}
|
|
976
|
+
.newtv-icon-upload:before {
|
|
977
|
+
content: "\e671";
|
|
978
|
+
}
|
|
979
|
+
.newtv-icon-add:before {
|
|
980
|
+
content: "\e640";
|
|
981
|
+
}
|
|
982
|
+
.newtv-icon-delete:before {
|
|
983
|
+
content: "\e63c";
|
|
984
|
+
}
|
|
985
|
+
.newtv-icon-close:before {
|
|
986
|
+
content: "\e628";
|
|
987
|
+
}
|
|
988
|
+
.newtv-icon-pull:before {
|
|
989
|
+
content: "\e63d";
|
|
990
|
+
}
|
|
991
|
+
.newtv-icon-edit:before {
|
|
992
|
+
content: "\e602";
|
|
993
|
+
}
|
|
994
|
+
.newtv-icon-tabel-search:before {
|
|
995
|
+
content: "\e601";
|
|
996
|
+
}
|
|
997
|
+
.newtv-icon-search:before {
|
|
998
|
+
content: "\e60a";
|
|
999
|
+
}
|
|
1000
|
+
.newtv-icon-star:before {
|
|
1001
|
+
content: "\e623";
|
|
1002
|
+
}
|
|
1003
|
+
.newtv-icon-key:before {
|
|
1004
|
+
content: "\e631";
|
|
1005
|
+
}
|
|
1006
|
+
.newtv-icon-user:before {
|
|
1007
|
+
content: "\e620";
|
|
1008
|
+
}
|
|
1009
|
+
.newtv-icon-data:before {
|
|
1010
|
+
content: "\e7ee";
|
|
1011
|
+
}
|
|
1012
|
+
.newtv-icon-management:before {
|
|
1013
|
+
content: "\e847";
|
|
1014
|
+
}
|
|
1015
|
+
.newtv-icon-run:before {
|
|
1016
|
+
content: "\e618";
|
|
1017
|
+
}
|
|
1018
|
+
.newtv-icon-home:before {
|
|
1019
|
+
content: "\e61d";
|
|
1020
|
+
}
|
|
1021
|
+
.newtv-icon-user-management:before {
|
|
1022
|
+
content: "\e647";
|
|
1023
|
+
}
|
|
1024
|
+
.newtv-icon-set:before {
|
|
1025
|
+
content: "\e61c";
|
|
1026
|
+
}
|
|
1027
|
+
.newtv-icon-org:before {
|
|
1028
|
+
content: "\e608";
|
|
1029
|
+
}
|
|
1030
|
+
.newtv-icon-file:before {
|
|
1031
|
+
content: "\e62e";
|
|
1032
|
+
}
|
|
1033
|
+
.newtv-icon-app:before {
|
|
1034
|
+
content: "\e63a";
|
|
1035
|
+
}
|
|
1036
|
+
.newtv-icon-ota:before {
|
|
1037
|
+
content: "\e73f";
|
|
1038
|
+
}
|
|
1039
|
+
.newtv-icon-pay:before {
|
|
1040
|
+
content: "\e6bf";
|
|
1041
|
+
}
|
|
1042
|
+
.newtv-icon-user-center:before {
|
|
1043
|
+
content: "\e635";
|
|
1044
|
+
}
|
|
1045
|
+
.newtv-icon-number:before {
|
|
1046
|
+
content: "\e632";
|
|
1047
|
+
}
|
|
1048
|
+
.newtv-icon-user-info:before {
|
|
1049
|
+
content: "\e607";
|
|
1050
|
+
}
|
|
1051
|
+
.newtv-icon-user-close:before {
|
|
1052
|
+
content: "\e60c";
|
|
1053
|
+
}
|
|
1054
|
+
/**
|
|
1055
|
+
|
|
1056
|
+
.newtv-icon-UGSUSER:before {
|
|
1057
|
+
content: "\e6ba";
|
|
1058
|
+
}
|
|
1059
|
+
.newtv-icon-ABTEST:before {
|
|
1060
|
+
content: "\e6a1";
|
|
1061
|
+
}
|
|
1062
|
+
.newtv-icon-ADVER:before {
|
|
1063
|
+
content: "\e6ae";
|
|
1064
|
+
}
|
|
1065
|
+
.newtv-icon-BOSS:before {
|
|
1066
|
+
content: "\e6ac";
|
|
1067
|
+
}
|
|
1068
|
+
.newtv-icon-CENTER:before {
|
|
1069
|
+
content: "\e698";
|
|
1070
|
+
}
|
|
1071
|
+
.newtv-icon-CMS1:before {
|
|
1072
|
+
content: "\e696";
|
|
1073
|
+
}
|
|
1074
|
+
.newtv-icon-CMS3X1:before {
|
|
1075
|
+
content: "\e696";
|
|
1076
|
+
}
|
|
1077
|
+
.newtv-icon-CMSG3X1:before {
|
|
1078
|
+
content: "\e696";
|
|
1079
|
+
}
|
|
1080
|
+
.newtv-icon-CMSHN3X1:before {
|
|
1081
|
+
content: "\e696";
|
|
1082
|
+
}
|
|
1083
|
+
|
|
1084
|
+
.newtv-icon-CMSHNHD3X1:before {
|
|
1085
|
+
content: "\e696";
|
|
1086
|
+
}
|
|
1087
|
+
.newtv-icon-CMSQD3X1:before {
|
|
1088
|
+
content: "\e696";
|
|
1089
|
+
}
|
|
1090
|
+
.newtv-icon-CPMS:before {
|
|
1091
|
+
content: "\e69e";
|
|
1092
|
+
}
|
|
1093
|
+
.newtv-icon-DATAANALYSIS:before {
|
|
1094
|
+
content: "\e694";
|
|
1095
|
+
}
|
|
1096
|
+
.newtv-icon-DATACOMPASS:before {
|
|
1097
|
+
content: "\e6b8";
|
|
1098
|
+
}
|
|
1099
|
+
.newtv-icon-DML:before {
|
|
1100
|
+
content: "\e6b9";
|
|
1101
|
+
}
|
|
1102
|
+
.newtv-icon-DMP:before {
|
|
1103
|
+
content: "\e6ae";
|
|
1104
|
+
}
|
|
1105
|
+
.newtv-icon-DMS:before {
|
|
1106
|
+
content: "\e6b1";
|
|
1107
|
+
}
|
|
1108
|
+
.newtv-icon-GROUP:before {
|
|
1109
|
+
content: "\e6ad";
|
|
1110
|
+
}
|
|
1111
|
+
.newtv-icon-IDCODE:before {
|
|
1112
|
+
content: "\e6b4";
|
|
1113
|
+
}
|
|
1114
|
+
.newtv-icon-INTEGRAL:before {
|
|
1115
|
+
content: "\e6b2";
|
|
1116
|
+
}
|
|
1117
|
+
.newtv-icon-MEDIA:before {
|
|
1118
|
+
content: "\e6b5";
|
|
1119
|
+
}
|
|
1120
|
+
.newtv-icon-MEDIATOOLS:before {
|
|
1121
|
+
content: "\e6b7";
|
|
1122
|
+
}
|
|
1123
|
+
.newtv-icon-MSGHDYX:before {
|
|
1124
|
+
content: "\e6af";
|
|
1125
|
+
}
|
|
1126
|
+
.newtv-icon-NDMS:before {
|
|
1127
|
+
content: "\e6b1";
|
|
1128
|
+
}
|
|
1129
|
+
.newtv-icon-OOS:before {
|
|
1130
|
+
content: "\e6b0";
|
|
1131
|
+
}
|
|
1132
|
+
.newtv-icon-OTA:before {
|
|
1133
|
+
content: "\e697";
|
|
1134
|
+
}
|
|
1135
|
+
.newtv-icon-SENSORS:before {
|
|
1136
|
+
content: "\e69b";
|
|
1137
|
+
}
|
|
1138
|
+
.newtv-icon-STAT:before {
|
|
1139
|
+
content: "\e695";
|
|
1140
|
+
}
|
|
1141
|
+
.newtv-icon-SUSANNO:before {
|
|
1142
|
+
content: "\e6b6";
|
|
1143
|
+
}
|
|
1144
|
+
.newtv-icon-TOAD:before {
|
|
1145
|
+
content: "\e693";
|
|
1146
|
+
}
|
|
1147
|
+
.newtv-icon-UCAS:before {
|
|
1148
|
+
content: "\e69a";
|
|
1149
|
+
}
|
|
1150
|
+
.newtv-icon-URS:before {
|
|
1151
|
+
content: "\e6a0";
|
|
1152
|
+
}
|
|
1153
|
+
.newtv-icon-WXPHOTO:before {
|
|
1154
|
+
content: "\e6b3";
|
|
1155
|
+
}
|
|
1156
|
+
|
|
1157
|
+
.newtv-icon-XWWL:before {
|
|
1158
|
+
content: "\e69f";
|
|
1159
|
+
}
|
|
1160
|
+
|
|
1161
|
+
*/
|
|
1162
|
+
/** 恢复上一版icon start***/
|
|
1163
|
+
.newtv-icon-OTA:before {
|
|
1164
|
+
content: "\e61b";
|
|
1165
|
+
}
|
|
1166
|
+
.newtv-icon-IDCODE:before {
|
|
1167
|
+
content: "\e61a";
|
|
1168
|
+
}
|
|
1169
|
+
.newtv-icon-CMS3X1:before {
|
|
1170
|
+
content: "\e619";
|
|
1171
|
+
}
|
|
1172
|
+
.newtv-icon-BOSS:before {
|
|
1173
|
+
content: "\e617";
|
|
1174
|
+
}
|
|
1175
|
+
.newtv-icon-UCAS:before {
|
|
1176
|
+
content: "\e615";
|
|
1177
|
+
}
|
|
1178
|
+
.newtv-icon-MEDIA:before {
|
|
1179
|
+
content: "\e614";
|
|
1180
|
+
}
|
|
1181
|
+
.newtv-icon-MEDIATOOLS:before {
|
|
1182
|
+
content: "\e61c";
|
|
1183
|
+
}
|
|
1184
|
+
.newtv-icon-OOS:before {
|
|
1185
|
+
content: "\e609";
|
|
1186
|
+
}
|
|
1187
|
+
.newtv-icon-CENTER:before {
|
|
1188
|
+
content: "\e613";
|
|
1189
|
+
}
|
|
1190
|
+
.newtv-icon-ADVER:before {
|
|
1191
|
+
content: "\e612";
|
|
1192
|
+
}
|
|
1193
|
+
.newtv-icon-INTEGRAL:before {
|
|
1194
|
+
content: "\e665";
|
|
1195
|
+
}
|
|
1196
|
+
.newtv-icon-TOAD:before {
|
|
1197
|
+
content: "\ebd3";
|
|
1198
|
+
}
|
|
1199
|
+
.newtv-icon-CPMS:before {
|
|
1200
|
+
content: "\e611";
|
|
1201
|
+
}
|
|
1202
|
+
.newtv-icon-GROUP:before {
|
|
1203
|
+
content: "\e650";
|
|
1204
|
+
}
|
|
1205
|
+
.newtv-icon-CMS3X1::before {
|
|
1206
|
+
content: "\e66b";
|
|
1207
|
+
}
|
|
1208
|
+
.newtv-icon-CMSG3X1::before {
|
|
1209
|
+
content: "\e66c";
|
|
1210
|
+
}
|
|
1211
|
+
.newtv-icon-DMS::before {
|
|
1212
|
+
content: "\e67b";
|
|
1213
|
+
}
|
|
1214
|
+
.newtv-icon-ADVER::before {
|
|
1215
|
+
content: "\e678";
|
|
1216
|
+
}
|
|
1217
|
+
.newtv-icon-DATACOMPASS::before {
|
|
1218
|
+
content: "\e673";
|
|
1219
|
+
}
|
|
1220
|
+
.newtv-icon-WXPHOTO::before {
|
|
1221
|
+
content: "\e674";
|
|
1222
|
+
}
|
|
1223
|
+
.newtv-icon-MSGHDYX::before {
|
|
1224
|
+
content: "\e675";
|
|
1225
|
+
}
|
|
1226
|
+
.newtv-icon-SUSANNO::before {
|
|
1227
|
+
content: "\e676";
|
|
1228
|
+
}
|
|
1229
|
+
.newtv-icon-DMP::before {
|
|
1230
|
+
content: "\e67c";
|
|
1231
|
+
}
|
|
1232
|
+
.newtv-icon-CMSHN3X1::before {
|
|
1233
|
+
content: "\e66b";
|
|
1234
|
+
}
|
|
1235
|
+
.newtv-icon-CMSHNHD3X1::before {
|
|
1236
|
+
content: "\e66b";
|
|
1237
|
+
}
|
|
1238
|
+
.newtv-icon-CMSQD3X1::before {
|
|
1239
|
+
content: "\e66b";
|
|
1240
|
+
}
|
|
1241
|
+
/** 恢复上一版icon end***/
|
|
1242
|
+
.newtv-icon-UGSUSER:before {
|
|
1243
|
+
content: "\e6a3";
|
|
1244
|
+
}
|
|
1245
|
+
.newtv-icon-service-copyright:before {
|
|
1246
|
+
content: "\e611";
|
|
1247
|
+
}
|
|
1248
|
+
.newtv-icon-ota-1:before {
|
|
1249
|
+
content: "\e67f";
|
|
1250
|
+
}
|
|
1251
|
+
.newtv-icon-ota-2:before {
|
|
1252
|
+
content: "\e60f";
|
|
1253
|
+
}
|
|
1254
|
+
.newtv-icon-ota-3:before {
|
|
1255
|
+
content: "\e69d";
|
|
1256
|
+
}
|
|
1257
|
+
.newtv-icon-dbarrow-1:before {
|
|
1258
|
+
content: "\e713";
|
|
1259
|
+
}
|
|
1260
|
+
.newtv-icon-dbarrow-2:before {
|
|
1261
|
+
content: "\e641";
|
|
1262
|
+
}
|
|
1263
|
+
.newtv-icon-device:before {
|
|
1264
|
+
content: "\e642";
|
|
1265
|
+
}
|
|
1266
|
+
.newtv-icon-mac:before {
|
|
1267
|
+
content: "\e6a4";
|
|
1268
|
+
}
|
|
1269
|
+
.newtv-icon-id:before {
|
|
1270
|
+
content: "\e610";
|
|
1271
|
+
}
|
|
1272
|
+
.newtv-icon-about:before {
|
|
1273
|
+
content: "\e645";
|
|
1274
|
+
}
|
|
1275
|
+
.newtv-icon-link:before {
|
|
1276
|
+
content: "\e643";
|
|
1277
|
+
}
|
|
1278
|
+
.newtv-icon-tx-1:before {
|
|
1279
|
+
content: "\e6fe";
|
|
1280
|
+
}
|
|
1281
|
+
.newtv-icon-tx-2:before {
|
|
1282
|
+
content: "\e644";
|
|
1283
|
+
}
|
|
1284
|
+
.newtv-icon-allowance:before {
|
|
1285
|
+
content: "\e646";
|
|
1286
|
+
}
|
|
1287
|
+
.newtv-icon-publish:before {
|
|
1288
|
+
content: "\e648";
|
|
1289
|
+
}
|
|
1290
|
+
.newtv-icon-media-home:before {
|
|
1291
|
+
content: "\e64f";
|
|
1292
|
+
}
|
|
1293
|
+
.newtv-icon-media-preview:before {
|
|
1294
|
+
content: "\eb66";
|
|
1295
|
+
}
|
|
1296
|
+
.newtv-icon-media-mycontent:before {
|
|
1297
|
+
content: "\e6a3";
|
|
1298
|
+
}
|
|
1299
|
+
.newtv-icon-media-compile:before {
|
|
1300
|
+
content: "\eb93";
|
|
1301
|
+
}
|
|
1302
|
+
.newtv-icon-media-folder:before {
|
|
1303
|
+
content: "\e64c";
|
|
1304
|
+
}
|
|
1305
|
+
.newtv-icon-media-examine:before {
|
|
1306
|
+
content: "\e715";
|
|
1307
|
+
}
|
|
1308
|
+
.newtv-icon-media-copyright:before {
|
|
1309
|
+
content: "\e64d";
|
|
1310
|
+
}
|
|
1311
|
+
.newtv-icon-media-pulish:before {
|
|
1312
|
+
content: "\ebd2";
|
|
1313
|
+
}
|
|
1314
|
+
.newtv-icon-media-transcoding:before {
|
|
1315
|
+
content: "\e666";
|
|
1316
|
+
}
|
|
1317
|
+
.newtv-icon-media-setting:before {
|
|
1318
|
+
content: "\e64e";
|
|
1319
|
+
}
|
|
1320
|
+
.newtv-icon-media-record:before {
|
|
1321
|
+
content: "\e660";
|
|
1322
|
+
}
|
|
1323
|
+
.newtv-icon-media-statistics1:before {
|
|
1324
|
+
content: "\e688";
|
|
1325
|
+
}
|
|
1326
|
+
.newtv-icon-media-statistics2:before {
|
|
1327
|
+
content: "\e689";
|
|
1328
|
+
}
|
|
1329
|
+
.newtv-icon-media-statistics3:before {
|
|
1330
|
+
content: "\e687";
|
|
1331
|
+
}
|
|
1332
|
+
.newtv-icon-media-statistics4:before {
|
|
1333
|
+
content: "\e686";
|
|
1334
|
+
}
|
|
1335
|
+
.newtv-icon-bag:before {
|
|
1336
|
+
content: "\e683";
|
|
1337
|
+
}
|
|
1338
|
+
.newtv-icon-wallet:before {
|
|
1339
|
+
content: "\e6ca";
|
|
1340
|
+
}
|
|
1341
|
+
.newtv-icon-App:before {
|
|
1342
|
+
content: "\e603";
|
|
1343
|
+
}
|
|
1344
|
+
.newtv-icon-up:before {
|
|
1345
|
+
content: "\e658";
|
|
1346
|
+
}
|
|
1347
|
+
.newtv-icon-down:before {
|
|
1348
|
+
content: "\e659";
|
|
1349
|
+
}
|
|
1350
|
+
.newtv-icon-unbind:before {
|
|
1351
|
+
content: "\e654";
|
|
1352
|
+
}
|
|
1353
|
+
.newtv-icon-bind:before {
|
|
1354
|
+
content: "\e7bb";
|
|
1355
|
+
}
|
|
1356
|
+
.newtv-icon-manage:before {
|
|
1357
|
+
content: "\e653";
|
|
1358
|
+
}
|
|
1359
|
+
.newtv-icon-info:before {
|
|
1360
|
+
content: "\e670";
|
|
1361
|
+
}
|
|
1362
|
+
.newtv-icon-batch:before {
|
|
1363
|
+
content: "\e651";
|
|
1364
|
+
}
|
|
1365
|
+
.newtv-icon-apk:before {
|
|
1366
|
+
content: "\e656";
|
|
1367
|
+
}
|
|
1368
|
+
.newtv-icon-import:before {
|
|
1369
|
+
content: "\e65a";
|
|
1370
|
+
}
|
|
1371
|
+
.newtv-icon-export:before {
|
|
1372
|
+
content: "\e65b";
|
|
1373
|
+
}
|
|
1374
|
+
.newtv-icon-replace:before {
|
|
1375
|
+
content: "\eb5f";
|
|
1376
|
+
}
|
|
1377
|
+
.newtv-icon-stop::before {
|
|
1378
|
+
content: "\e65c";
|
|
1379
|
+
}
|
|
1380
|
+
.newtv-icon-audit::before {
|
|
1381
|
+
content: "\e65d";
|
|
1382
|
+
}
|
|
1383
|
+
.newtv-icon-device::before {
|
|
1384
|
+
content: "\e65f";
|
|
1385
|
+
}
|
|
1386
|
+
.newtv-icon-detail::before {
|
|
1387
|
+
content: "\e769";
|
|
1388
|
+
}
|
|
1389
|
+
.newtv-icon-details::before {
|
|
1390
|
+
content: "\e661";
|
|
1391
|
+
}
|
|
1392
|
+
.newtv-icon-uploadOne::before {
|
|
1393
|
+
content: "\e663";
|
|
1394
|
+
}
|
|
1395
|
+
.newtv-icon-uploadTwo::before {
|
|
1396
|
+
content: "\e664";
|
|
1397
|
+
}
|
|
1398
|
+
.newtv-icon-square::before {
|
|
1399
|
+
content: "\e668";
|
|
1400
|
+
}
|
|
1401
|
+
.newtv-icon-manual::before {
|
|
1402
|
+
content: "\e669";
|
|
1403
|
+
}
|
|
1404
|
+
.newtv-icon-tagManage::before {
|
|
1405
|
+
content: "\e667";
|
|
1406
|
+
}
|
|
1407
|
+
.newtv-icon-save::before {
|
|
1408
|
+
content: "\e67d";
|
|
1409
|
+
}
|
|
1410
|
+
.newtv-icon-wraning::before {
|
|
1411
|
+
content: "\e680";
|
|
1412
|
+
}
|
|
1413
|
+
.newtv-icon-copy::before {
|
|
1414
|
+
content: "\e68a";
|
|
1415
|
+
}
|
|
1416
|
+
.newtv-icon-time::before {
|
|
1417
|
+
content: "\e682";
|
|
1418
|
+
}
|
|
1419
|
+
.newtv-icon-message::before {
|
|
1420
|
+
content: "\e685";
|
|
1421
|
+
}
|
|
1422
|
+
.newtv-icon-tagIndex::before {
|
|
1423
|
+
content: "\e68b";
|
|
1424
|
+
}
|
|
1425
|
+
.newtv-icon-tagSource::before {
|
|
1426
|
+
content: "\e68c";
|
|
1427
|
+
}
|
|
1428
|
+
.newtv-icon-tagNumber::before {
|
|
1429
|
+
content: "\e68d";
|
|
1430
|
+
}
|
|
1431
|
+
.newtv-icon-tagSmart::before {
|
|
1432
|
+
content: "\e691";
|
|
1433
|
+
}
|
|
1434
|
+
.newtv-icon-tagContent::before {
|
|
1435
|
+
content: "\e68f";
|
|
1436
|
+
}
|
|
1437
|
+
.newtv-icon-tagSystem::before {
|
|
1438
|
+
content: "\e690";
|
|
1439
|
+
}
|