2023西安数博会CIM演示-【前端】-Web
AdaKing88
2023-08-21 bc03b832caa49bbcd2674fe4cae3701b5059bf95
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
@charset "UTF-8";
::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 6px;
  height: 6px;
  /*高宽分别对应横竖滚动条的尺寸*/
}
 
::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 4px;
  background: #406285;
}
 
::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  border-radius: 4px;
  background: #192c41;
  cursor: pointer;
}
 
.commonTitle {
  position: relative;
}
.commonTitle .topTitle {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 60px;
  background: url("~@/assets/img/riskMonitor/integrated/titleBg.png");
  background-size: 100% 100%;
  overflow: hidden;
  display: flex;
}
.commonTitle .topTitle i {
  float: left;
  width: 16px;
  height: 26px;
  padding-left: 10px;
}
.commonTitle .topTitle i img {
  width: 100%;
}
.commonTitle .topTitle .nameCh {
  padding-left: 10px;
  float: left;
}
.commonTitle .topTitle .nameCh span {
  font-size: 20px;
  font-family: Alimama ShuHeiTi;
  font-weight: bold;
  color: #FFFFFF;
  text-shadow: 0px 4px 24px rgba(0, 0, 0, 0.36);
  background: linear-gradient(0deg, #5EB4FF 1.220703125%, #fff 96.58203125%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}
.commonTitle .topTitle .nameEn {
  float: left;
  padding-left: 10px;
}
.commonTitle .topTitle .nameEn span {
  font-size: 16px;
  font-family: Alimama ShuHeiTi;
  font-weight: 400;
  color: #FFFFFF;
  opacity: 0.2;
  font-style: italic;
  letter-spacing: 2px;
}
 
.clearfix {
  zoom: 1;
}
 
.clearfix:after {
  content: ".";
  width: 0;
  height: 0;
  visibility: hidden;
  display: block;
  clear: both;
  overflow: hidden;
}
 
.fl {
  float: left;
}
 
.fr {
  float: right;
}
 
.tl {
  text-align: left;
}
 
.tc {
  text-align: center;
}
 
.tr {
  text-align: right;
}
 
.ellipse {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
 
.ellipseMore {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
  text-overflow: ellipsis;
  word-break: break-all;
}
 
.inline {
  display: inline-block;
  *display: inline;
  *zoom: 1;
}
 
.imgBox {
  font-size: 0;
  line-height: 0;
}
.imgBox img {
  width: 100%;
  height: 100%;
}/*# sourceMappingURL=common.css.map */