index.css
8.36 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
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
.quickQuote {
width: 100vw;
height: 100vh;
padding-top: 50px;
}
.quickQuote .content {
position: relative;
width: 100%;
height: 100%;
display: flex;
}
.quickQuote .content :global .ant-btn-primary {
border-radius: 5px;
}
.quickQuote .content .back {
position: absolute;
top: 16px;
left: 360px;
z-index: 10;
}
.quickQuote .content .leftTree {
width: 250px;
height: 100%;
background: #3274b7;
padding: 10px 0 0 10px;
overflow: hidden;
}
.quickQuote .content .leftTree :global .ant-tree {
background: transparent;
}
.quickQuote .content .leftTree :global .ant-tree .ant-tree-treenode {
padding-bottom: 10px;
}
.quickQuote .content .leftTree :global .ant-tree .ant-tree-title {
color: #fff;
font-size: 16px;
font-weight: bold;
}
.quickQuote .content .leftTree :global .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
background-color: #00a183;
}
.quickQuote .content .leftTree :global .ant-tree .ant-tree-node-content-wrapper:hover {
background-color: #009688;
}
.quickQuote .content .overFlow {
overflow: auto;
}
.quickQuote .content .rightContent {
flex: 1;
background: #f8fafe;
overflow: auto;
}
.quickQuote .content .rightContent .divider {
color: #000;
font-size: 18px;
}
.quickQuote .content .rightContent .divider:before,
.quickQuote .content .rightContent .divider:after {
border-color: #d7d7d7;
}
.quickQuote .content .rightContent .tabs {
height: auto;
}
.quickQuote .content .rightContent .tabs :global .ant-tabs-nav-wrap {
padding-left: 20px;
}
.quickQuote .content .rightContent .tabs :global .ant-tabs-tab-btn {
font-size: 16px;
}
.quickQuote .content .rightContent .hideTab :global .ant-tabs-nav {
display: none;
}
.quickQuote .content .rightContent .viewTable,
.quickQuote .content .rightContent .viewTable1 {
width: 100%;
height: auto;
padding: 0 20px 0 10px;
flex: 1;
}
.quickQuote .content .rightContent .viewTable :global .viewStyle,
.quickQuote .content .rightContent .viewTable1 :global .viewStyle {
background-color: transparent;
}
.quickQuote .content .rightContent .viewTable :global .ant-form-item-label,
.quickQuote .content .rightContent .viewTable1 :global .ant-form-item-label {
background-color: transparent !important;
color: #000 !important;
flex: 0 0 100px !important;
max-width: 100px !important;
}
.quickQuote .content .rightContent .viewTable :global .ant-form-item-control,
.quickQuote .content .rightContent .viewTable1 :global .ant-form-item-control {
flex: 1;
max-width: calc(100% - 100px);
}
.quickQuote .content .rightContent .viewTable :global .viewStyle .ant-input-number,
.quickQuote .content .rightContent .viewTable1 :global .viewStyle .ant-input-number {
width: 100% !important;
}
.quickQuote .content .rightContent .viewTable :global .viewStyle .ant-col,
.quickQuote .content .rightContent .viewTable1 :global .viewStyle .ant-col {
margin-bottom: 2px;
}
.quickQuote .content .rightContent .viewTable .subViewTable,
.quickQuote .content .rightContent .viewTable1 .subViewTable {
width: 100%;
height: auto;
}
.quickQuote .content .rightContent .viewTable .subViewTable :global .ant-form-item-row,
.quickQuote .content .rightContent .viewTable1 .subViewTable :global .ant-form-item-row {
flex-direction: row-reverse;
}
.quickQuote .content .rightContent .viewTable .subViewTable :global .ant-form-item-label,
.quickQuote .content .rightContent .viewTable1 .subViewTable :global .ant-form-item-label {
flex: 0 0 25px !important;
max-width: 25px !important;
}
.quickQuote .content .rightContent .viewTable .subViewTable :global .ant-form-item-label > label,
.quickQuote .content .rightContent .viewTable1 .subViewTable :global .ant-form-item-label > label {
display: flex;
width: 100%;
align-items: center;
justify-content: center;
}
.quickQuote .content .rightContent .viewTable .subViewTable :global .ant-form-item-label > label::before,
.quickQuote .content .rightContent .viewTable1 .subViewTable :global .ant-form-item-label > label::before {
content: none;
width: 0;
}
.quickQuote .content .rightContent .viewTable .subViewTable :global .ant-form-item-label > label::after,
.quickQuote .content .rightContent .viewTable1 .subViewTable :global .ant-form-item-label > label::after {
content: none;
width: 0;
}
.quickQuote .content .rightContent .viewTable .subViewTable :global .ant-form-item-control,
.quickQuote .content .rightContent .viewTable1 .subViewTable :global .ant-form-item-control {
flex: 1;
max-width: calc(100% - 25px);
}
.quickQuote .content .rightContent .viewTable .subViewTable :global .viewStyle > .ant-col-24,
.quickQuote .content .rightContent .viewTable1 .subViewTable :global .viewStyle > .ant-col-24 {
padding-left: 100px;
}
.quickQuote .content .rightContent .viewTable1 {
padding: 0 20px 0 0;
}
.quickQuote .content .rightContent .boxRadio {
width: 100%;
height: 30px;
padding: 10px 0 0 10px;
}
.quickQuote .content .rightContent .boxPart1 {
width: 100%;
height: auto;
display: flex;
padding: 0 10px 0 10px;
}
.quickQuote .content .rightContent .boxPart1 .boxPart1Left {
flex: 1;
border-right: 1px solid #d7d7d7;
}
.quickQuote .content .rightContent .boxPart1 .boxPart1Right {
width: auto;
height: auto;
}
.quickQuote .content .rightContent .boxPart1 .boxPart1Right .boxRreview {
width: 100%;
height: auto;
display: flex;
align-items: center;
}
.quickQuote .content .rightContent .boxPart1 .boxPart1Right .boxRreview :global .ant-image {
padding: 15px;
}
.quickQuote .content .rightContent .boxPart1 .boxPart1Right .boxRreview .noImg {
width: 300px;
height: 300px;
display: flex;
align-items: center;
justify-content: center;
border: 1px solid #d7d7d7;
font-size: 16px;
}
.quickQuote .content .rightContent .boxPart1 .boxPart1Right .boxRreview .noImg:first-child {
border-left: 0;
}
.quickQuote .content .rightContent .boxPart1 .boxPart1Right .boxRreview .boxRreviewTitile {
width: 100%;
height: 30px;
display: flex;
align-items: center;
justify-content: center;
font-size: 18px;
}
.quickQuote .content .rightContent .boxPinbanInfo {
width: 100%;
height: auto;
padding: 0 10px 0 10px;
display: flex;
position: relative;
}
.quickQuote .content .rightContent .boxPinbanInfo > div:first-child {
flex: 1;
border-right: 1px solid #d7d7d7;
}
.quickQuote .content .rightContent .boxPinbanInfo > div:nth-child(2) > div:first-child {
display: flex;
}
.quickQuote .content .rightContent .boxPinbanInfo .boxComponent {
width: 400px;
height: 300px;
position: relative;
}
.quickQuote .content .rightContent .boxPinbanInfo .boxComponent .boxComponentWidth {
position: absolute;
bottom: -10px;
left: 0px;
width: 400px;
height: 10px;
border: 1px solid #333;
border-top: transparent;
}
.quickQuote .content .rightContent .boxPinbanInfo .boxComponent .boxComponentWidth .boxComponentWidthTitle {
width: 400px;
height: 10px;
position: absolute;
top: 15px;
left: 0px;
line-height: 10px;
font-size: 18px;
text-align: center;
}
.quickQuote .content .rightContent .boxPinbanInfo .boxComponent1 {
width: 300px;
height: 300px;
position: relative;
overflow: hidden;
}
.quickQuote .content .rightContent .boxPinbanBtn {
position: absolute;
top: 0;
left: 200px;
}
.quickQuote .content .rightContent .boxPart2 {
width: 100%;
height: auto;
}
.quickQuote .content .rightContent .many {
width: 100%;
height: 235px;
padding: 0 10px 0 10px;
position: relative;
}
.quickQuote .content .rightContent .many .btns {
position: absolute;
top: -50px;
right: 10px;
height: 40px;
min-width: 40px;
display: flex;
flex-direction: row;
align-items: center;
justify-content: center;
background-color: #f8fafe;
gap: 10px;
}
.quickQuote .content .rightContent .many .btns :global .ant-btn {
border-radius: 5px;
}
.quickQuote .content .rightContent .many .btns .confirmOrder {
background-color: #53b637;
border-color: #53b637;
}
.quickQuote .content .rightContent .materialsLine {
display: flex;
}
.quickQuote .content .rightContent .materialsLine .materialsViewTable {
flex: 1;
}
.quickQuote .content .rightContent .materialsLine .materialsViewTable :global .ant-col-4 .ant-col-7 {
flex-basis: 50px !important;
}
.quickQuote .content .rightContent .materialsLine .materialsBtns {
width: 80px;
display: flex;
align-items: center;
justify-content: space-around;
}
.quickQuote .content .rightContent .materialsLine .materialsBtns :global .ant-btn:nth-child(2) {
background-color: #53b637;
border-color: #53b637;
}