index.css
3.68 KB
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
.boxBody {
width: 100%;
height: 100%;
position: relative;
padding: 10px;
}
.boxBody .boxTop {
display: flex;
align-items: center;
justify-content: space-around;
width: 640px;
height: 100px;
margin: 0 auto;
}
.boxBody .boxTop .boxFlex {
width: 200px;
display: flex;
align-items: center;
flex-wrap: wrap;
flex-direction: column;
position: relative;
}
.boxBody .boxLeft {
width: 180px;
min-height: 320px;
display: flex;
flex-wrap: wrap;
flex-direction: column;
position: absolute;
justify-content: space-between;
left: 10px;
top: 130px;
text-align: center;
}
.boxBody .boxRight {
width: 180px;
min-height: 320px;
display: flex;
flex-wrap: wrap;
justify-content: space-between;
flex-direction: column;
position: absolute;
right: 10px;
top: 130px;
text-align: center;
}
.boxBody .boxBottom {
width: 500px;
height: 380px;
position: absolute;
top: 130px;
left: 50%;
transform: translateX(-50%);
}
.boxBody .boxBottom .svgBox {
width: 100%;
min-height: 250px;
background-color: #9aff9a;
}
.boxBody .boxBottom .content {
width: 100%;
height: 130px;
}
.boxBody .boxBottom .content :global .ant-select-selector {
color: #333;
}
.boxBody .boxBottom .content :global .ant-select-selection-item {
color: #333 !important;
/* 选择框文字颜色 */
padding-left: 50px;
line-height: 40px;
}
.boxBody .boxTitle {
background-color: #3399ff;
color: #fff;
width: 180px;
height: 20px;
line-height: 20px;
text-align: center;
}
.boxBody :global .mySelects .ant-select-selector,
.boxBody :global .mySelectsDouble .ant-select-selector {
background-color: #99ccff !important;
/* 选择框背景色 */
height: 40px !important;
/* 选择框高度 */
}
.boxBody :global .mySelects .ant-select-selection-item {
color: transparent !important;
/* 选择框文字颜色 */
}
.boxBody :global .mySelectsDouble .ant-select-selection-item {
color: #333 !important;
/* 选择框文字颜色 */
line-height: 40px !important;
}
.boxBody .mySelects {
position: relative;
}
.boxBody .boxInput {
display: flex;
align-items: center;
justify-content: space-between;
width: 180px;
min-height: 40px;
position: relative;
}
.boxBody .boxInput :global .ant-input {
background-color: #99ccff !important;
/* 输入框背景色 */
border: 1px solid #d9d9d9;
height: 40px;
}
.boxBody .boxInput :global .ant-input::placeholder {
color: #fff !important;
}
.boxBody .text {
background-color: #99ccff;
width: 100%;
height: 40px;
line-height: 40px;
text-align: center;
font-size: 10px;
margin-right: 1px;
}
.boxBody .content :global .ant-input {
background-color: #eeeeee !important;
/* 输入框背景色 */
height: 40px;
}
.boxBody .content :global .ant-select-selector {
background-color: #eeeeee !important;
/* 选择框背景色 */
height: 40px !important;
/* 选择框高度 */
}
.boxBody .content .text {
background-color: #eeeeee;
margin: 0;
}
.boxBody .content .boxFlex {
display: flex;
align-items: center;
flex-wrap: wrap;
flex-direction: column;
width: 500px;
}
.boxBody .content .boxFlexs {
display: flex;
align-items: center;
width: 500px;
justify-content: space-between;
}
.boxBody .content .boxFlexs .boxInputs {
display: flex;
align-items: center;
flex: 1;
}
.boxBody .content .boxFlexs .boxInputs :global .ant-input {
background-color: #eeeeee !important;
/* 输入框背景色 */
height: 40px;
}
.boxBody .content .boxInput {
width: 100%;
position: relative;
}
.boxBody .content .boxInput .defaultValue {
position: absolute;
left: 32%;
top: 3px;
width: 60px;
height: 30px;
background-color: #eee;
color: #333;
line-height: 40px;
z-index: 2;
text-align: center;
}