system-clients 3.2.3 → 3.2.4-aodeToV4

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.
Files changed (169) hide show
  1. package/.eslintrc.js +16 -16
  2. package/.gradle/7.1/dependencies-accessors/dependencies-accessors.lock +0 -0
  3. package/.gradle/7.1/executionHistory/executionHistory.bin +0 -0
  4. package/.gradle/7.1/executionHistory/executionHistory.lock +0 -0
  5. package/.gradle/7.1/fileChanges/last-build.bin +0 -0
  6. package/.gradle/7.1/fileHashes/fileHashes.bin +0 -0
  7. package/.gradle/7.1/fileHashes/fileHashes.lock +0 -0
  8. package/.gradle/7.1/gc.properties +0 -0
  9. package/.gradle/buildOutputCleanup/buildOutputCleanup.lock +0 -0
  10. package/.gradle/buildOutputCleanup/cache.properties +2 -2
  11. package/.gradle/buildOutputCleanup/outputFiles.bin +0 -0
  12. package/.gradle/checksums/checksums.lock +0 -0
  13. package/.gradle/vcs-1/gc.properties +0 -0
  14. package/SystemClient.iml +11 -11
  15. package/build/webpack.base.conf.js +78 -75
  16. package/build.gradle +6 -6
  17. package/gradle/wrapper/gradle-wrapper.jar +0 -0
  18. package/gradle/wrapper/gradle-wrapper.properties +5 -0
  19. package/gradlew +185 -0
  20. package/gradlew.bat +89 -0
  21. package/index.html +21 -21
  22. package/package.json +2 -2
  23. package/src/App.vue +24 -24
  24. package/src/LodopFuncs.js +123 -123
  25. package/src/components/Main.vue +46 -152
  26. package/src/components/Util.js +343 -343
  27. package/src/components/equipment/EquipmentManage.vue +65 -65
  28. package/src/components/equipment/PcAdd.vue +105 -105
  29. package/src/components/equipment/PcList.vue +120 -119
  30. package/src/components/equipment/PcManage.vue +60 -60
  31. package/src/components/equipment/PhoneAdd.vue +94 -94
  32. package/src/components/equipment/PhoneList.vue +102 -102
  33. package/src/components/equipment/PhoneManage.vue +60 -60
  34. package/src/components/equipment/PosAdd.vue +156 -137
  35. package/src/components/equipment/PosList.vue +164 -164
  36. package/src/components/equipment/PosManage.vue +68 -67
  37. package/src/components/materialManage/materialData.vue +44 -44
  38. package/src/components/materialManage/materialList.vue +255 -255
  39. package/src/components/parammanage/ParamManage.vue +42 -42
  40. package/src/components/parammanage/ParamPage.vue +314 -314
  41. package/src/components/parammanage/ParamPages.vue +222 -222
  42. package/src/components/parammanage/SinglePage.vue +235 -235
  43. package/src/components/parammanage/SinglePages.vue +167 -167
  44. package/src/components/server/AddChangeMsg.vue +66 -66
  45. package/src/components/server/ChangeDeclare.vue +45 -45
  46. package/src/components/server/LeftTree.vue +111 -111
  47. package/src/components/server/LoadData.vue +36 -36
  48. package/src/components/server/Login.vue +726 -624
  49. package/src/components/server/Menu.vue +188 -188
  50. package/src/components/server/ModifyPw.vue +112 -106
  51. package/src/components/server/NewResSelectGroup.vue +211 -0
  52. package/src/components/server/ResSelect.vue +153 -150
  53. package/src/components/server/ResSelectGroup.vue +159 -142
  54. package/src/components/server/RightTree.vue +343 -263
  55. package/src/components/server/RoleSelector.vue +90 -89
  56. package/src/components/server/TestResSelect.vue +58 -58
  57. package/src/components/server/TestResSelectGroup.vue +388 -388
  58. package/src/plugins/EncryptUtil.js +53 -0
  59. package/src/plugins/GetLoginInfoService.js +88 -104
  60. package/src/plugins/HeatGetLoginInfoService.js +491 -0
  61. package/src/plugins/validation.js +7 -7
  62. package/src/project/State.js +17 -17
  63. package/src/stores/AppData.js +38 -38
  64. package/src/stores/HeatAppData.js +38 -0
  65. package/src/styles/fonts/PINGFANG LIGHT.TTF +0 -0
  66. package/src/styles/fonts/PingFangSC-Regular.ttf +0 -0
  67. package/src/styles/fonts/glyphicons-halflings-regular.eot +0 -0
  68. package/src/styles/fonts/glyphicons-halflings-regular.svg +288 -0
  69. package/src/styles/fonts/glyphicons-halflings-regular.ttf +0 -0
  70. package/src/styles/fonts/glyphicons-halflings-regular.woff +0 -0
  71. package/src/styles/fonts/glyphicons-halflings-regular.woff2 +0 -0
  72. package/src/styles/fonts/pingfang-bold.ttf +0 -0
  73. package/src/styles/fonts/pingfang-medium.ttf +0 -0
  74. package/src/styles/fonts/pingfang-regular.ttf +0 -0
  75. package/src/styles/fonts/trendstrends.ttf +0 -0
  76. package/src/styles/fonts//346/261/211/344/273/252/350/217/261/345/277/203/344/275/223/347/256/200.ttf +0 -0
  77. package/src/styles/less/.csscomb.json +304 -0
  78. package/src/styles/less/.csslintrc +19 -0
  79. package/src/styles/less/alerts.less +73 -0
  80. package/src/styles/less/aofeng/animate.min.css +11 -0
  81. package/src/styles/less/aofeng/expandcss.less +569 -0
  82. package/src/styles/less/aofeng/standard.less +2121 -0
  83. package/src/styles/less/aofeng/themeOne/BinaryTemplate.less +686 -0
  84. package/src/styles/less/aofeng/themeOne/loginStyle.less +1586 -0
  85. package/src/styles/less/aofeng/themeOne/systemStyle.less +2650 -0
  86. package/src/styles/less/aofeng/themeOne.less +17 -0
  87. package/src/styles/less/aofeng/themeTwo/newStyle1.less +415 -0
  88. package/src/styles/less/aofeng/themeTwo.less +3 -0
  89. package/src/styles/less/badges.less +66 -0
  90. package/src/styles/less/bootstrap.less +66 -0
  91. package/src/styles/less/breadcrumbs.less +26 -0
  92. package/src/styles/less/button-groups.less +247 -0
  93. package/src/styles/less/buttons.less +172 -0
  94. package/src/styles/less/carousel.less +269 -0
  95. package/src/styles/less/close.less +34 -0
  96. package/src/styles/less/code.less +69 -0
  97. package/src/styles/less/component-animations.less +33 -0
  98. package/src/styles/less/dropdowns.less +216 -0
  99. package/src/styles/less/fonts-list.less +25 -0
  100. package/src/styles/less/forms.less +626 -0
  101. package/src/styles/less/glyphicons.less +305 -0
  102. package/src/styles/less/grid.less +84 -0
  103. package/src/styles/less/input-groups.less +167 -0
  104. package/src/styles/less/jumbotron.less +52 -0
  105. package/src/styles/less/labels.less +64 -0
  106. package/src/styles/less/list-group.less +141 -0
  107. package/src/styles/less/manageStyle/manageChile.less +180 -0
  108. package/src/styles/less/manageStyle/manageStyle.less +1102 -0
  109. package/src/styles/less/manageStyle/safeStyle.less +498 -0
  110. package/src/styles/less/media.less +66 -0
  111. package/src/styles/less/mixins/alerts.less +14 -0
  112. package/src/styles/less/mixins/background-variant.less +9 -0
  113. package/src/styles/less/mixins/border-radius.less +18 -0
  114. package/src/styles/less/mixins/buttons.less +69 -0
  115. package/src/styles/less/mixins/center-block.less +7 -0
  116. package/src/styles/less/mixins/clearfix.less +22 -0
  117. package/src/styles/less/mixins/forms.less +90 -0
  118. package/src/styles/less/mixins/gradients.less +59 -0
  119. package/src/styles/less/mixins/grid-framework.less +92 -0
  120. package/src/styles/less/mixins/grid.less +122 -0
  121. package/src/styles/less/mixins/hide-text.less +21 -0
  122. package/src/styles/less/mixins/image.less +33 -0
  123. package/src/styles/less/mixins/labels.less +12 -0
  124. package/src/styles/less/mixins/list-group.less +30 -0
  125. package/src/styles/less/mixins/nav-divider.less +10 -0
  126. package/src/styles/less/mixins/nav-vertical-align.less +9 -0
  127. package/src/styles/less/mixins/opacity.less +8 -0
  128. package/src/styles/less/mixins/pagination.less +24 -0
  129. package/src/styles/less/mixins/panels.less +24 -0
  130. package/src/styles/less/mixins/progress-bar.less +10 -0
  131. package/src/styles/less/mixins/reset-filter.less +8 -0
  132. package/src/styles/less/mixins/reset-text.less +18 -0
  133. package/src/styles/less/mixins/resize.less +6 -0
  134. package/src/styles/less/mixins/responsive-visibility.less +15 -0
  135. package/src/styles/less/mixins/size.less +10 -0
  136. package/src/styles/less/mixins/tab-focus.less +9 -0
  137. package/src/styles/less/mixins/table-row.less +44 -0
  138. package/src/styles/less/mixins/text-emphasis.less +9 -0
  139. package/src/styles/less/mixins/text-overflow.less +8 -0
  140. package/src/styles/less/mixins/vendor-prefixes.less +227 -0
  141. package/src/styles/less/mixins.less +40 -0
  142. package/src/styles/less/modals.less +151 -0
  143. package/src/styles/less/navbar.less +660 -0
  144. package/src/styles/less/navs.less +285 -0
  145. package/src/styles/less/normalize.less +424 -0
  146. package/src/styles/less/pager.less +76 -0
  147. package/src/styles/less/pagination.less +89 -0
  148. package/src/styles/less/panels.less +275 -0
  149. package/src/styles/less/popovers.less +131 -0
  150. package/src/styles/less/print.less +101 -0
  151. package/src/styles/less/progress-bars.less +87 -0
  152. package/src/styles/less/responsive-embed.less +35 -0
  153. package/src/styles/less/responsive-utilities.less +194 -0
  154. package/src/styles/less/scaffolding.less +161 -0
  155. package/src/styles/less/stand.less +207 -0
  156. package/src/styles/less/tables.less +262 -0
  157. package/src/styles/less/theme.less +291 -0
  158. package/src/styles/less/thumbnails.less +36 -0
  159. package/src/styles/less/tooltip.less +102 -0
  160. package/src/styles/less/type.less +303 -0
  161. package/src/styles/less/utilities.less +55 -0
  162. package/src/styles/less/variables.less +896 -0
  163. package/src/styles/less/wells.less +29 -0
  164. package/src/system.js +85 -76
  165. package/static/aodelogo.png +0 -0
  166. package/static/aodenewlogo.png +0 -0
  167. package/static/ewmlogo.png +0 -0
  168. package/.gradle/buildOutputCleanup/cache.properties.lock +0 -1
  169. /package/.gradle/{buildOutputCleanup/built.bin → 7.1/dependencies-accessors/gc.properties} +0 -0
@@ -0,0 +1,2121 @@
1
+
2
+ /*=========================通用样式表=========================*/
3
+
4
+
5
+ .fonttitle (@i,@type,@colortype) when (@i > 10) {
6
+ .font_@{type}_@{colortype}_@{i} when (@colortype="title"){
7
+ font-weight: @type;
8
+ color: #333333;
9
+ text-align: right;
10
+ vertical-align: middle;
11
+ font-size: @i px;
12
+ }
13
+ .font_@{type}_@{colortype}_@{i} when (@colortype="body"){
14
+ font-weight: @type;
15
+ color: #666666;
16
+ text-align: right;
17
+ vertical-align: middle;
18
+ font-size: @i px;
19
+ }
20
+ .font_@{type}_@{colortype}_@{i} when (@colortype="title1"){
21
+ font-weight: @type;
22
+ color: #999999;
23
+ text-align: right;
24
+ vertical-align: middle;
25
+ font-size: @i px;
26
+ }
27
+ .font_@{type}_@{colortype}_@{i} when (@colortype="button"){
28
+ font-weight: @type;
29
+ color: #ffffff;
30
+ text-align: right;
31
+ vertical-align: middle;
32
+ font-size: @i px;
33
+ }
34
+ .font_@{type}_@{colortype}_@{i} when (@colortype="blue"){
35
+ font-weight: @type;
36
+ color: #6aa6e2;
37
+ text-align: right;
38
+ vertical-align: middle;
39
+ font-size: @i px;
40
+ }
41
+ .fonttitle(@i - 1,@type,@colortype);
42
+ }
43
+
44
+ .fonttitle(40,'bold','title');
45
+ .fonttitle(40,'bold','body');
46
+ .fonttitle(40,'bold','title1');
47
+ .fonttitle(40,'bold','button');
48
+ .fonttitle(40,bold,blue);
49
+ .fonttitle(40,normal,title);
50
+ .fonttitle(40,normal,body);
51
+ .fonttitle(40,normal,title1);
52
+ .fonttitle(40,normal,button);
53
+ .fonttitle(40,normal,blue);
54
+
55
+
56
+ /********************字体*****************/
57
+ /*字体标题_粗体*/
58
+ .font_bold_title{font-family: PingFang; font-weight: bold;color: #333333;text-align: right;vertical-align: middle; }
59
+ /*字体正文_粗体*/
60
+ .font_bold_body{ font-family: PingFang; font-weight: bold;color: #666666;text-align: right;vertical-align: middle; }
61
+ /*字体_粗体*/
62
+ .font_bold_title1{ font-family: PingFang; font-weight: bold;color: #999999;text-align: right;vertical-align: middle;}
63
+ /*字体按钮_粗体*/
64
+ .font_bold_button{ font-family: PingFang; font-weight: bold;color: #ffffff;text-align: right;vertical-align: middle;}
65
+ /*字体蓝色_粗体*/
66
+ .font_bold_blue{ font-family: PingFang; font-weight: bold;color: #6aa6e2;text-align: right;vertical-align: middle;}
67
+
68
+ /*字体标题_正常*/
69
+ .font_normal_title{ font-family: PingFang; font-weight: normal;color: #333333;text-align: right;vertical-align: middle;}
70
+ /*字体正文_正常*/
71
+ .font_normal_body{ font-family: PingFang; font-weight: normal !important;color: #666666;text-align: right;vertical-align: middle;}
72
+ /*字体_正常*/
73
+ .font_normal_title1{ font-family: PingFang;font-weight: normal;color: #999999;text-align: right;vertical-align: middle;}
74
+ /*字体按钮_正常*/
75
+ .font_normal_button{ font-family: PingFang;font-weight: normal;color: #ffffff;text-align: right;vertical-align: middle;}
76
+ /*字体蓝色_正常*/
77
+ .font_normal_blue{ font-family: PingFang;font-weight: normal;color: #6aa6e2;text-align: right;vertical-align: middle;}
78
+ /*字体蓝色_正常*/
79
+ .font_normal_blue-1{ padding: 0 2%; border-bottom:1px solid #5ac0d9; font-family: PingFang;font-weight: normal;color: #5ac0d9;text-align: right;vertical-align: middle;}
80
+
81
+ .search_area{background-color: #ffffff; padding: 10px 10px 0 10px}
82
+ .list_area{ background-color: #ffffff;padding: 0 0 10px 0}
83
+
84
+
85
+ /********************表格*****************/
86
+ /*表格表头*/
87
+ .table_sy thead tr th{ font-size:1.4rem; background-color: #dfedfb!important;color: #666666 !important;font-family: PINGFANG-BOLD !important;font-weight: normal!important;}
88
+ /*表格主体_奇数行*/
89
+ .table_sy tbody tr:nth-child(odd){ text-align: center; background-color: #ffffff !important;border: solid 1px #f0f4fa !important;color: #666666!important;font-size: 1.3rem!important;font-family: PINGFANG-MEDIUM!important;}
90
+ /*表格主体_偶数行*/
91
+ .table_sy tbody tr:nth-child(even){ text-align: center; background-color: #ecf6ff !important;border: solid 1px #f0f4fa !important;color: #666666!important;font-size: 1.3rem!important;font-family: PINGFANG-MEDIUM!important;}
92
+ /*表格主体_移动行*/
93
+ .table_sy tbody tr:hover{ text-align: center; background-color: #cbeaf1!important;border: solid 1px #f0f4fa !important;color: #666666!important;font-size: 1.3rem!important;font-family: PINGFANG-MEDIUM!important;}
94
+ /*表格底部*/
95
+ .pager{background-color: #eaf5ff !important;font-size:1.4rem;color: #666666 !important;font-family: PINGFANG-MEDIUM !important;font-weight: normal!important;}
96
+ /*表格主体_点击行*/
97
+ .success td{background-color: #cbeaf1 !important;}
98
+
99
+ .foot{font-family: PingFang !important; overflow-y: hidden}
100
+
101
+ /*下拉列表滑动变色*/
102
+ .select_list li a:hover{background-color: #eaf5ff !important;border-radius: 2px;border: solid 1px #eaeaea;}
103
+ .select_list button .caret{
104
+ border: none;
105
+ background-image: url("../../../../static/newStyle/login-org.png");
106
+ color: #999999;
107
+ margin: 5%;
108
+ float: right;
109
+ }
110
+
111
+ /*弹窗*/
112
+ .pop_windows{background-color: #d9e9f8;border-radius: 16px 16px 0px 0px;}
113
+ /*标签*/
114
+ .tab_color{border-bottom: 1px solid #6aa6e2; color: #6aa6e2; font-family: PingFang;}
115
+
116
+ /*按钮间隔*/
117
+ .button_spacing{margin: 0px 0px 0px 9px;}
118
+
119
+
120
+ //报表样式
121
+ //报表头部
122
+ .report-head{ background-color: #b3dff7;border: solid 1px #999999;}
123
+ //头部字体
124
+ .head-font{color: #333333;font-size: 18px; }
125
+ //报表左侧
126
+ .report-left{background-color: #dff0f9;border: solid 1px #999999;}
127
+ //报表主体
128
+ .report-main {background-color: #ffffff; border: solid 1px #999999;}
129
+ //报表主体字体
130
+ .main-font{font-size: 18px;color: #1b1b1b; }
131
+
132
+ .stretch{
133
+ line-height: 40px;
134
+ background-color: white;
135
+ border: none;
136
+ font-size: 1.4rem;
137
+ font-family: PINGFANG-BOLD;
138
+ color: #6aa6e2;
139
+ }
140
+
141
+ .stretch:hover{
142
+ border: none;
143
+ }
144
+
145
+ .stretch:active{
146
+ border: none;
147
+ }
148
+
149
+ .span{
150
+ overflow-y: hidden;
151
+ }
152
+
153
+ //字体变色
154
+ .has-error >.font_normal_body{
155
+ color: #a94442!important;
156
+ }
157
+
158
+ .button_search[disabled]{
159
+ background-color: #b5cadf;
160
+ &:hover{
161
+ background-color: #b5cadf;
162
+ }
163
+ }
164
+ .button-range{
165
+ display: flex;
166
+ float: right;
167
+ width: auto;
168
+ align-items: center;
169
+ }
170
+
171
+
172
+ /*分辨率@1920*1080*/
173
+ @media screen and (min-width: 1920px) {
174
+
175
+ html {
176
+ font-size: 10px;
177
+ }
178
+
179
+ /********************按钮*****************/
180
+ .select-style {
181
+ font-size: 1.4rem;
182
+ }
183
+
184
+
185
+ .btn-group {
186
+ display: inline-flex !important;
187
+ height: 35px;
188
+ }
189
+
190
+ .font_normal_body {
191
+ float: left;
192
+ margin-top: 10px;
193
+ font-size: 1.4rem !important;
194
+ line-height: 30px;
195
+ }
196
+
197
+ .font_bold_body {
198
+ font-size: 1.4rem !important;
199
+ line-height: 30px;
200
+ }
201
+
202
+ .font_bold_title {
203
+ font-size: 1.4rem !important;
204
+ line-height: 30px;
205
+ }
206
+
207
+ .table_sy thead tr th {
208
+ font-size: 1.4rem !important;
209
+ }
210
+
211
+ .foot .pager {
212
+ font-size: 1.4rem !important;
213
+ color: #666666 !important;
214
+ font-weight: normal !important;
215
+ }
216
+
217
+ .foot .pager a {
218
+ font-size: 1.4rem !important;
219
+ color: #666666 !important;
220
+ font-weight: normal !important;
221
+ }
222
+
223
+ .foot .pager li {
224
+ font-size: 1.4rem !important;
225
+ color: #666666 !important;
226
+ font-weight: normal !important;
227
+ }
228
+
229
+
230
+ /*按钮查询*/
231
+ .button_search {
232
+ padding: 8px 12px;
233
+ width: max-content;
234
+ background-color: #6aa6e2;
235
+ border-radius: 4px;
236
+ border: none;
237
+ font-family: PingFang;
238
+ font-size: 1.4rem;
239
+ color: #ffffff;
240
+ }
241
+
242
+ .button_search:hover {
243
+ background-color: #3592ef;
244
+ }
245
+
246
+ /*删除按钮*/
247
+ .button_delete {
248
+ padding: 8px 12px;
249
+ width: max-content;
250
+ background-color: #f1684d;
251
+ border-radius: 4px;
252
+ border: none;
253
+ font-family: PingFang;
254
+ font-size: 1.4rem;
255
+ color: #ffffff;
256
+ }
257
+
258
+ .button_delete:hover {
259
+ background-color: red;
260
+ }
261
+
262
+ /*按钮清空*/
263
+ .button_clear {
264
+ padding: 8px 12px;
265
+ width: max-content;
266
+ background-color: #5ac0d9;
267
+ border-radius: 4px;
268
+ border: none;
269
+ font-family: PingFang;
270
+ font-size: 1.4rem;
271
+ color: #ffffff;
272
+ }
273
+
274
+ .button_clear:hover {
275
+ background-color: #27c4eb;
276
+ }
277
+
278
+ .button_search-1 {
279
+ padding: 8px 12px;
280
+ width: max-content;
281
+ background-color: #6aa6e2;
282
+ border-radius: 4px;
283
+ border: none;
284
+ font-family: PingFang;
285
+ font-size: 1.4rem;
286
+ color: #ffffff;
287
+ }
288
+
289
+ .button_search-1:hover {
290
+ background-color: #3592ef;
291
+ }
292
+
293
+ .button_new-1 {
294
+ padding: 8px 12px;
295
+ width: max-content;
296
+ background-color: #ffffff;
297
+ border-radius: 4px;
298
+ border: solid 1px #6aa6e2;
299
+ font-family: PingFang;
300
+ font-size: 1.4rem;
301
+ color: #6aa6e2;
302
+ }
303
+
304
+ .button_new-1:hover {
305
+ background-color: #f0f8ff;
306
+ }
307
+
308
+ /*按钮新建*/
309
+ .button_new {
310
+ padding: 8px 12px;
311
+ width: max-content;
312
+ background-color: #ffffff;
313
+ border-radius: 4px;
314
+ border: solid 1px #6aa6e2;
315
+ font-family: PingFang;
316
+ font-size: 1.4rem;
317
+ color: #6aa6e2;
318
+ }
319
+
320
+ .button_new:hover {
321
+ background-color: #f0f8ff;
322
+ }
323
+
324
+ /*按钮导出*/
325
+ .button_export {
326
+ padding: 8px 12px;
327
+ width: max-content;
328
+ background-color: #ffffff;
329
+ border-radius: 4px;
330
+ border: solid 1px #6aa6e2;
331
+ font-family: PingFang;
332
+ font-size: 1.4rem;
333
+ color: #6aa6e2;
334
+ }
335
+
336
+ .button_export:hover {
337
+ background-color: #f0f8ff;
338
+ }
339
+
340
+ .button_export button {
341
+ padding: 8px 12px;
342
+ width: max-content;
343
+ background-color: #ffffff;
344
+ border-radius: 4px;
345
+ border: solid 1px #6aa6e2;
346
+ font-family: PingFang;
347
+ font-size: 1.4rem;
348
+ color: #6aa6e2;
349
+ }
350
+
351
+ .button_export button:hover {
352
+ background-color: #f0f8ff;
353
+ }
354
+
355
+ //查询条件伸展
356
+ .button_stretch {
357
+ padding: 8px 12px;
358
+ width: max-content;
359
+ background-color: #ffffff;
360
+ border-radius: 4px;
361
+ border: solid 1px #6aa6e2;
362
+ font-family: PingFang;
363
+ font-size: 1.4rem;
364
+ color: #6aa6e2;
365
+ }
366
+
367
+ .button_stretch:hover {
368
+ background-color: #f0f8ff;
369
+ }
370
+
371
+ .button_stretch button {
372
+ padding: 8px 12px;
373
+ width: max-content;
374
+ background-color: #ffffff;
375
+ border-radius: 4px;
376
+ border: solid 1px #6aa6e2;
377
+ font-family: PingFang;
378
+ font-size: 1.4rem;
379
+ color: #6aa6e2;
380
+ }
381
+
382
+ .button_stretch button:hover {
383
+ background-color: #f0f8ff;
384
+ }
385
+
386
+
387
+ //左右伸缩按钮
388
+ .button_shrink_top {
389
+ width: 35px;
390
+ height: 35px;
391
+ background-size: 100%;
392
+ background-image: url("../../../../static/newStyle/stretch_top.png")
393
+ }
394
+
395
+ .button_shrink_bottom {
396
+ width: 35px;
397
+ height: 35px;
398
+ background-size: 100%;
399
+ background-image: url("../../../../static/newStyle/stretch_bottom.png")
400
+ }
401
+
402
+ .button_shrink_left {
403
+ width: 35px;
404
+ height: 35px;
405
+ background-size: 100%;
406
+ background-image: url("../../../../static/newStyle/stretch_left.png")
407
+ }
408
+
409
+ .button_shrink_right {
410
+ width: 35px;
411
+ height: 35px;
412
+ background-size: 100%;
413
+ background-image: url("../../../../static/newStyle/stretch_right.png")
414
+ }
415
+
416
+ //.button_shrink_searchin {width: 35px; height: 35px; background-size:100%;background-image: url("../../../../static/newStyle/searchin.png")}
417
+ //.button_shrink_searchout {width: 35px; height: 35px; background-size:100%;background-image: url("../../../../static/newStyle/searchout.png")}
418
+ /*查询输入框*/
419
+ .input_search {
420
+ float: left;
421
+ padding: 8px;
422
+ width: 270px;
423
+ height: 35px;
424
+ background-color: #ffffff;
425
+ border-radius: 2px;
426
+ border: solid 1px #c7c7c7;
427
+ color: #333333;
428
+ font-size: 1.4rem;
429
+ font-family: PingFang;
430
+ }
431
+
432
+ .input_search .datepicker .datepicker-input input {
433
+ padding-left: 8px;
434
+ width: 270px !important;
435
+ height: 42px !important;
436
+ background-color: #ffffff !important;
437
+ border-radius: 2px;
438
+ border: solid 1px #c7c7c7 !important;
439
+ color: #333333;
440
+ font-size: 1.4rem;
441
+ font-family: PingFang;
442
+ }
443
+
444
+ .input_search::-webkit-input-placeholder {
445
+ color: #999999;
446
+ font-size: 1.4rem;
447
+ padding-left: 6px;
448
+ font-family: PingFang;
449
+ }
450
+
451
+ .input_search:focus {
452
+ border: solid 1px #6aa6e2;
453
+ }
454
+
455
+ /*查询输入域*/
456
+ .input_textarea {
457
+ width: 270px;
458
+ height: 120px;
459
+ background-color: #ffffff;
460
+ border-radius: 2px;
461
+ border: solid 1px #c7c7c7;
462
+ color: #333333;
463
+ font-size: 1.4rem;
464
+ font-family: PingFang;
465
+ }
466
+
467
+ .input_textarea .datepicker .datepicker-input input {
468
+ padding-left: 8px;
469
+ width: 270px !important;
470
+ height: 120px !important;
471
+ background-color: #ffffff !important;
472
+ border-radius: 2px;
473
+ border: solid 1px #c7c7c7 !important;
474
+ color: #333333;
475
+ font-size: 1.4rem;
476
+ font-family: PingFang;
477
+ }
478
+
479
+ .input_textarea::-webkit-input-placeholder {
480
+ color: #ffffff;
481
+ font-size: 1.4rem;
482
+ padding-left: 6px;
483
+ font-family: PingFang;
484
+ }
485
+
486
+ .input_textarea:focus {
487
+ border: solid 1px #6aa6e2;
488
+ }
489
+
490
+
491
+ /*下拉框*/
492
+ .select button {
493
+ width: 270px !important;
494
+ height: 35px !important;
495
+ background-color: #ffffff !important;
496
+ border-radius: 2px !important;
497
+ border: solid 1px #c7c7c7 !important;
498
+ color: #999999;
499
+ font-size: 1.4rem;
500
+ font-family: PingFang;
501
+ font-weight: normal !important;
502
+ }
503
+
504
+ .select button:focus {
505
+ border: solid 1px #6aa6e2 !important;
506
+ }
507
+
508
+ }
509
+
510
+ /*=========================特殊样式表=========================*/
511
+
512
+ /*分辨率@1920*1080*/
513
+ @media screen and (max-width: 1920px) {
514
+
515
+ html {
516
+ font-size: 10px;
517
+ }
518
+
519
+ /********************按钮*****************/
520
+ .select-style {
521
+ font-size: 1.4rem;
522
+ }
523
+
524
+
525
+ .btn-group {
526
+ display: inline-flex !important;
527
+ height: 35px;
528
+ }
529
+
530
+ .font_normal_body {
531
+ float: left;
532
+ margin-top: 10px;
533
+ font-size: 1.4rem !important;
534
+ line-height: 30px;
535
+ }
536
+
537
+ .font_bold_body {
538
+ font-size: 1.4rem !important;
539
+ line-height: 30px;
540
+ }
541
+
542
+ .font_bold_title {
543
+ font-size: 1.4rem !important;
544
+ line-height: 30px;
545
+ }
546
+
547
+ .table_sy thead tr th {
548
+ font-size: 1.4rem !important;
549
+ }
550
+
551
+ .foot .pager {
552
+ font-size: 1.4rem !important;
553
+ color: #666666 !important;
554
+ font-weight: normal !important;
555
+ }
556
+
557
+ .foot .pager a {
558
+ font-size: 1.4rem !important;
559
+ color: #666666 !important;
560
+ font-weight: normal !important;
561
+ }
562
+
563
+ .foot .pager li {
564
+ font-size: 1.4rem !important;
565
+ color: #666666 !important;
566
+ font-weight: normal !important;
567
+ }
568
+
569
+
570
+ /*按钮查询*/
571
+ .button_search {
572
+ padding: 8px 12px;
573
+ width: max-content;
574
+ background-color: #6aa6e2;
575
+ border-radius: 4px;
576
+ border: none;
577
+ font-family: PingFang;
578
+ font-size: 1.4rem;
579
+ color: #ffffff;
580
+ }
581
+
582
+ .button_search:hover {
583
+ background-color: #3592ef;
584
+ }
585
+
586
+ /*删除按钮*/
587
+ .button_delete {
588
+ padding: 8px 12px;
589
+ width: max-content;
590
+ background-color: #f1684d;
591
+ border-radius: 4px;
592
+ border: none;
593
+ font-family: PingFang;
594
+ font-size: 1.4rem;
595
+ color: #ffffff;
596
+ }
597
+
598
+ .button_delete:hover {
599
+ background-color: red;
600
+ }
601
+
602
+ /*按钮清空*/
603
+ .button_clear {
604
+ padding: 8px 12px;
605
+ width: max-content;
606
+ background-color: #5ac0d9;
607
+ border-radius: 4px;
608
+ border: none;
609
+ font-family: PingFang;
610
+ font-size: 1.4rem;
611
+ color: #ffffff;
612
+ }
613
+
614
+ .button_clear:hover {
615
+ background-color: #27c4eb;
616
+ }
617
+
618
+ .button_search-1 {
619
+ padding: 8px 12px;
620
+ width: max-content;
621
+ background-color: #6aa6e2;
622
+ border-radius: 4px;
623
+ border: none;
624
+ font-family: PingFang;
625
+ font-size: 1.4rem;
626
+ color: #ffffff;
627
+ }
628
+
629
+ .button_search-1:hover {
630
+ background-color: #3592ef;
631
+ }
632
+
633
+ .button_new-1 {
634
+ padding: 8px 12px;
635
+ width: max-content;
636
+ background-color: #ffffff;
637
+ border-radius: 4px;
638
+ border: solid 1px #6aa6e2;
639
+ font-family: PingFang;
640
+ font-size: 1.4rem;
641
+ color: #6aa6e2;
642
+ }
643
+
644
+ .button_new-1:hover {
645
+ background-color: #f0f8ff;
646
+ }
647
+
648
+ /*按钮新建*/
649
+ .button_new {
650
+ padding: 8px 12px;
651
+ width: max-content;
652
+ background-color: #ffffff;
653
+ border-radius: 4px;
654
+ border: solid 1px #6aa6e2;
655
+ font-family: PingFang;
656
+ font-size: 1.4rem;
657
+ color: #6aa6e2;
658
+ }
659
+
660
+ .button_new:hover {
661
+ background-color: #f0f8ff;
662
+ }
663
+
664
+ /*按钮导出*/
665
+ .button_export {
666
+ padding: 8px 12px;
667
+ width: max-content;
668
+ background-color: #ffffff;
669
+ border-radius: 4px;
670
+ border: solid 1px #6aa6e2;
671
+ font-family: PingFang;
672
+ font-size: 1.4rem;
673
+ color: #6aa6e2;
674
+ }
675
+
676
+ .button_export:hover {
677
+ background-color: #f0f8ff;
678
+ }
679
+
680
+ .button_export button {
681
+ padding: 8px 12px;
682
+ width: max-content;
683
+ background-color: #ffffff;
684
+ border-radius: 4px;
685
+ border: solid 1px #6aa6e2;
686
+ font-family: PingFang;
687
+ font-size: 1.4rem;
688
+ color: #6aa6e2;
689
+ }
690
+
691
+ .button_export button:hover {
692
+ background-color: #f0f8ff;
693
+ }
694
+
695
+ //查询条件伸展
696
+ .button_stretch {
697
+ padding: 8px 12px;
698
+ width: max-content;
699
+ background-color: #ffffff;
700
+ border-radius: 4px;
701
+ border: solid 1px #6aa6e2;
702
+ font-family: PingFang;
703
+ font-size: 1.4rem;
704
+ color: #6aa6e2;
705
+ }
706
+
707
+ .button_stretch:hover {
708
+ background-color: #f0f8ff;
709
+ }
710
+
711
+ .button_stretch button {
712
+ padding: 8px 12px;
713
+ width: max-content;
714
+ background-color: #ffffff;
715
+ border-radius: 4px;
716
+ border: solid 1px #6aa6e2;
717
+ font-family: PingFang;
718
+ font-size: 1.4rem;
719
+ color: #6aa6e2;
720
+ }
721
+
722
+ .button_stretch button:hover {
723
+ background-color: #f0f8ff;
724
+ }
725
+
726
+
727
+ //左右伸缩按钮
728
+ .button_shrink_top {
729
+ width: 35px;
730
+ height: 35px;
731
+ background-size: 100%;
732
+ background-image: url("../../../../static/newStyle/stretch_top.png")
733
+ }
734
+
735
+ .button_shrink_bottom {
736
+ width: 35px;
737
+ height: 35px;
738
+ background-size: 100%;
739
+ background-image: url("../../../../static/newStyle/stretch_bottom.png")
740
+ }
741
+
742
+ .button_shrink_left {
743
+ width: 35px;
744
+ height: 35px;
745
+ background-size: 100%;
746
+ background-image: url("../../../../static/newStyle/stretch_left.png")
747
+ }
748
+
749
+ .button_shrink_right {
750
+ width: 35px;
751
+ height: 35px;
752
+ background-size: 100%;
753
+ background-image: url("../../../../static/newStyle/stretch_right.png")
754
+ }
755
+
756
+ //.button_shrink_searchin {width: 35px; height: 35px; background-size:100%;background-image: url("../../../../static/newStyle/searchin.png")}
757
+ //.button_shrink_searchout {width: 35px; height: 35px; background-size:100%;background-image: url("../../../../static/newStyle/searchout.png")}
758
+ /*查询输入框*/
759
+ .input_search {
760
+ float: left;
761
+ padding: 8px;
762
+ width: 270px;
763
+ height: 35px;
764
+ background-color: #ffffff;
765
+ border-radius: 2px;
766
+ border: solid 1px #c7c7c7;
767
+ color: #333333;
768
+ font-size: 1.4rem;
769
+ font-family: PingFang;
770
+ }
771
+
772
+ .input_search .datepicker .datepicker-input input {
773
+ padding-left: 8px;
774
+ width: 270px !important;
775
+ height: 42px !important;
776
+ background-color: #ffffff !important;
777
+ border-radius: 2px;
778
+ border: solid 1px #c7c7c7 !important;
779
+ color: #333333;
780
+ font-size: 1.4rem;
781
+ font-family: PingFang;
782
+ }
783
+
784
+ .input_search::-webkit-input-placeholder {
785
+ color: #999999;
786
+ font-size: 1.4rem;
787
+ padding-left: 6px;
788
+ font-family: PingFang;
789
+ }
790
+
791
+ .input_search:focus {
792
+ border: solid 1px #6aa6e2;
793
+ }
794
+
795
+ /*查询输入域*/
796
+ .input_textarea {
797
+ width: 270px;
798
+ height: 120px;
799
+ background-color: #ffffff;
800
+ border-radius: 2px;
801
+ border: solid 1px #c7c7c7;
802
+ color: #333333;
803
+ font-size: 1.4rem;
804
+ font-family: PingFang;
805
+ }
806
+
807
+ .input_textarea .datepicker .datepicker-input input {
808
+ padding-left: 8px;
809
+ width: 270px !important;
810
+ height: 120px !important;
811
+ background-color: #ffffff !important;
812
+ border-radius: 2px;
813
+ border: solid 1px #c7c7c7 !important;
814
+ color: #333333;
815
+ font-size: 1.4rem;
816
+ font-family: PingFang;
817
+ }
818
+
819
+ .input_textarea::-webkit-input-placeholder {
820
+ color: #ffffff;
821
+ font-size: 1.4rem;
822
+ padding-left: 6px;
823
+ font-family: PingFang;
824
+ }
825
+
826
+ .input_textarea:focus {
827
+ border: solid 1px #6aa6e2;
828
+ }
829
+
830
+
831
+ /*下拉框*/
832
+ .select button {
833
+ width: 270px !important;
834
+ height: 35px !important;
835
+ background-color: #ffffff !important;
836
+ border-radius: 2px !important;
837
+ border: solid 1px #c7c7c7 !important;
838
+ color: #999999;
839
+ font-size: 1.4rem;
840
+ font-family: PingFang;
841
+ font-weight: normal !important;
842
+ }
843
+
844
+ .select button:focus {
845
+ border: solid 1px #6aa6e2 !important;
846
+ }
847
+
848
+ }
849
+
850
+ /*分辨率@1600*900*/
851
+ @media screen and (max-width: 1600px) {
852
+
853
+ html {
854
+ font-size: 9px;
855
+ }
856
+
857
+ .select-style {
858
+ font-size: 1.4rem;
859
+ }
860
+
861
+
862
+ .btn-group {
863
+ display: inline-flex !important;
864
+ height: 35px;
865
+ }
866
+
867
+ /********************按钮*****************/
868
+ /*按钮间隔*/
869
+ /*.button_spacing{margin: 0px 0px 0px 20px;}*/
870
+ .font_normal_body {
871
+ font-size: 15px !important;
872
+ line-height: 26px;
873
+ }
874
+
875
+ .font_bold_body {
876
+ font-size: 15px !important;
877
+ line-height: 26px;
878
+ }
879
+
880
+ .font_bold_title {
881
+ font-size: 15px !important;
882
+ line-height: 26px;
883
+ }
884
+
885
+ .table_sy thead tr th {
886
+ font-size: 15px !important;
887
+ }
888
+
889
+ .foot .pager {
890
+ font-size: 15px !important;
891
+ color: #666666 !important;
892
+ font-weight: normal !important;
893
+ }
894
+
895
+ .foot .pager a {
896
+ font-size: 15px !important;
897
+ color: #666666 !important;
898
+ font-weight: normal !important;
899
+ }
900
+
901
+ .foot .pager li {
902
+ font-size: 15px !important;
903
+ color: #666666 !important;
904
+ font-weight: normal !important;
905
+ }
906
+
907
+ /*按钮查询*/
908
+ .button_search {
909
+ padding: 6px 10px;
910
+ width: max-content;
911
+ background-color: #6aa6e2;
912
+ border-radius: 4px;
913
+ border: none;
914
+ font-family: PingFang;
915
+ font-size: 15px;
916
+ color: #ffffff;
917
+ }
918
+
919
+ .button_search:hover {
920
+ background-color: #3592ef;
921
+ }
922
+
923
+ /*删除按钮*/
924
+ .button_delete {
925
+ padding: 6px 10px;
926
+ width: max-content;
927
+ background-color: #f1684d;
928
+ border-radius: 4px;
929
+ border: none;
930
+ font-family: PingFang;
931
+ font-size: 1.4rem;
932
+ color: #ffffff;
933
+ }
934
+
935
+ .button_delete:hover {
936
+ background-color: red;
937
+ }
938
+
939
+ /*按钮清空*/
940
+ .button_clear {
941
+ padding: 6px 10px;
942
+ width: max-content;
943
+ background-color: #5ac0d9;
944
+ border-radius: 4px;
945
+ border: none;
946
+ font-family: PingFang;
947
+ font-size: 15px;
948
+ color: #ffffff;
949
+ }
950
+
951
+ .button_clear:hover {
952
+ background-color: #27c4eb;
953
+ }
954
+
955
+ .button_search-1 {
956
+ padding: 6px 10px;
957
+ width: max-content;
958
+ background-color: #6aa6e2;
959
+ border-radius: 4px;
960
+ border: none;
961
+ font-family: PingFang;
962
+ font-size: 1.4rem;
963
+ color: #ffffff;
964
+ }
965
+
966
+ .button_search-1:hover {
967
+ background-color: #3592ef;
968
+ }
969
+
970
+ .button_new-1 {
971
+ padding: 6px 10px;
972
+ width: max-content;
973
+ background-color: #ffffff;
974
+ border-radius: 4px;
975
+ border: solid 1px #6aa6e2;
976
+ font-family: PingFang;
977
+ font-size: 1.4rem;
978
+ color: #6aa6e2;
979
+ }
980
+
981
+ .button_new-1:hover {
982
+ background-color: #f0f8ff;
983
+ }
984
+
985
+ /*按钮新建*/
986
+ .button_new {
987
+ padding: 6px 10px;
988
+ width: max-content;
989
+ background-color: #ffffff;
990
+ border-radius: 4px;
991
+ border: solid 1px #6aa6e2;
992
+ font-family: PingFang;
993
+ font-size: 15px;
994
+ color: #6aa6e2;
995
+ }
996
+
997
+ .button_new:hover {
998
+ background-color: #f0f8ff;
999
+ }
1000
+
1001
+ /*按钮导出*/
1002
+ .button_export {
1003
+ padding: 6px 10px;
1004
+ width: max-content;
1005
+ background-color: #ffffff;
1006
+ border-radius: 4px;
1007
+ border: solid 1px #6aa6e2;
1008
+ font-family: PingFang;
1009
+ font-size: 15px;
1010
+ color: #6aa6e2;
1011
+ }
1012
+
1013
+ .button_export:hover {
1014
+ background-color: #f0f8ff;
1015
+ }
1016
+
1017
+ .button_export button {
1018
+ padding: 6px 10px;
1019
+ width: max-content;
1020
+ background-color: #ffffff;
1021
+ border-radius: 4px;
1022
+ border: solid 1px #6aa6e2;
1023
+ font-family: PingFang;
1024
+ font-size: 15px;
1025
+ color: #6aa6e2;
1026
+ }
1027
+
1028
+ .button_export button:hover {
1029
+ background-color: #f0f8ff;
1030
+ }
1031
+
1032
+ //查询条件伸展
1033
+ .button_stretch {
1034
+ padding: 6px 10px;
1035
+ width: max-content;
1036
+ background-color: #ffffff;
1037
+ border-radius: 4px;
1038
+ border: solid 1px #6aa6e2;
1039
+ font-family: PingFang;
1040
+ font-size: 1.4rem;
1041
+ color: #6aa6e2;
1042
+ }
1043
+
1044
+ .button_stretch:hover {
1045
+ background-color: #f0f8ff;
1046
+ }
1047
+
1048
+ .button_stretch button {
1049
+ padding: 6px 10px;
1050
+ width: max-content;
1051
+ background-color: #ffffff;
1052
+ border-radius: 4px;
1053
+ border: solid 1px #6aa6e2;
1054
+ font-family: PingFang;
1055
+ font-size: 1.4rem;
1056
+ color: #6aa6e2;
1057
+ }
1058
+
1059
+ .button_stretch button:hover {
1060
+ background-color: #f0f8ff;
1061
+ }
1062
+
1063
+ //左右伸缩按钮
1064
+ .button_shrink_top {
1065
+ width: 34px;
1066
+ height: 34px;
1067
+ background-size: 100%;
1068
+ background-image: url("../../../../static/newStyle/stretch_top.png")
1069
+ }
1070
+
1071
+ .button_shrink_bottom {
1072
+ width: 34px;
1073
+ height: 34px;
1074
+ background-size: 100%;
1075
+ background-image: url("../../../../static/newStyle/stretch_bottom.png")
1076
+ }
1077
+
1078
+ .button_shrink_left {
1079
+ width: 34px;
1080
+ height: 34px;
1081
+ background-size: 100%;
1082
+ background-image: url("../../../../static/newStyle/stretch_left.png")
1083
+ }
1084
+
1085
+ .button_shrink_right {
1086
+ width: 34px;
1087
+ height: 34px;
1088
+ background-size: 100%;
1089
+ background-image: url("../../../../static/newStyle/stretch_right.png")
1090
+ }
1091
+
1092
+
1093
+ /*查询输入框*/
1094
+ .input_search {
1095
+ padding: 7px;
1096
+ width: 200px;
1097
+ height: 34px;
1098
+ background-color: #ffffff;
1099
+ border-radius: 2px;
1100
+ border: solid 1px #c7c7c7 !important;
1101
+ color: #333333 !important;
1102
+ font-size: 15px !important;
1103
+ font-family: PingFang;
1104
+ }
1105
+
1106
+ .input_search::-webkit-input-placeholder {
1107
+ color: #999999;
1108
+ font-size: 14px;
1109
+ padding-left: 6px;
1110
+ font-family: PingFang;
1111
+ }
1112
+
1113
+ .input_search:focus {
1114
+ border: solid 1px #6aa6e2;
1115
+ }
1116
+
1117
+ /*查询输入域*/
1118
+ .input_textarea {
1119
+ width: 200px;
1120
+ height: 110px;
1121
+ background-color: #ffffff;
1122
+ border-radius: 2px;
1123
+ border: solid 1px #c7c7c7;
1124
+ color: #333333;
1125
+ font-size: 1.4rem;
1126
+ font-family: PingFang;
1127
+ }
1128
+
1129
+ .input_textarea .datepicker .datepicker-input input {
1130
+ padding-left: 7px;
1131
+ width: 200px !important;
1132
+ height: 110px !important;
1133
+ background-color: #ffffff !important;
1134
+ border-radius: 2px;
1135
+ border: solid 1px #c7c7c7 !important;
1136
+ color: #333333;
1137
+ font-size: 1.4rem;
1138
+ font-family: PingFang;
1139
+ }
1140
+
1141
+ .input_textarea::-webkit-input-placeholder {
1142
+ color: #ffffff;
1143
+ font-size: 1.4rem;
1144
+ padding-left: 6px;
1145
+ font-family: PingFang;
1146
+ }
1147
+
1148
+ .input_textarea:focus {
1149
+ border: solid 1px #6aa6e2;
1150
+ }
1151
+
1152
+ /*下拉框*/
1153
+ .select button {
1154
+ width: 200px !important;
1155
+ height: 34px !important;
1156
+ background-color: #ffffff !important;
1157
+ border-radius: 2px !important;
1158
+ border: solid 1px #c7c7c7 !important;
1159
+ color: #999999 !important;
1160
+ font-size: 15px !important;
1161
+ font-family: PingFang;
1162
+ font-weight: normal !important;
1163
+ }
1164
+
1165
+ .select button:focus {
1166
+ border: solid 1px #6aa6e2 !important;
1167
+ }
1168
+ }
1169
+
1170
+ /*分辨率@1366*768*/
1171
+ @media screen and (max-width: 1366px) {
1172
+ html {
1173
+ font-size: 8px;
1174
+ }
1175
+
1176
+ .select-style {
1177
+ font-size: 1.4rem;
1178
+ }
1179
+
1180
+
1181
+ .btn-group {
1182
+ display: inline-flex !important;
1183
+ height: 34px;
1184
+ }
1185
+
1186
+ /********************按钮*****************/
1187
+ /*按钮间隔*/
1188
+ /*.button_spacing{margin: 0px 0px 0px 20px;}*/
1189
+ .font_normal_body {
1190
+ font-size: 13px !important;
1191
+ line-height: 24px;
1192
+ }
1193
+
1194
+ .font_bold_body {
1195
+ font-size: 14px !important;
1196
+ line-height: 24px;
1197
+ }
1198
+
1199
+ .font_bold_title {
1200
+ font-size: 14px !important;
1201
+ line-height: 24px;
1202
+ }
1203
+
1204
+ .table_sy thead tr th {
1205
+ font-size: 14px !important;
1206
+ }
1207
+
1208
+ .foot .pager {
1209
+ font-size: 14px !important;
1210
+ color: #666666 !important;
1211
+ font-weight: normal !important;
1212
+ }
1213
+
1214
+ .foot .pager a {
1215
+ font-size: 14px !important;
1216
+ color: #666666 !important;
1217
+ font-weight: normal !important;
1218
+ }
1219
+
1220
+ .foot .pager li {
1221
+ font-size: 14px !important;
1222
+ color: #666666 !important;
1223
+ font-weight: normal !important;
1224
+ }
1225
+
1226
+ /*按钮查询*/
1227
+ .button_search {
1228
+ padding: 6px 12px;
1229
+ width: max-content;
1230
+ background-color: #6aa6e2;
1231
+ border-radius: 4px;
1232
+ border: none;
1233
+ font-family: PingFang;
1234
+ font-size: 14px;
1235
+ color: #ffffff;
1236
+ }
1237
+
1238
+ .button_search:hover {
1239
+ background-color: #3592ef;
1240
+ }
1241
+
1242
+ /*删除按钮*/
1243
+ .button_delete {
1244
+ padding: 6px 12px;
1245
+ width: max-content;
1246
+ background-color: #f1684d;
1247
+ border-radius: 4px;
1248
+ border: none;
1249
+ font-family: PingFang;
1250
+ font-size: 1.4rem;
1251
+ color: #ffffff;
1252
+ }
1253
+
1254
+ .button_delete:hover {
1255
+ background-color: red;
1256
+ }
1257
+
1258
+ /*按钮清空*/
1259
+ .button_clear {
1260
+ padding: 6px 12px;
1261
+ width: max-content;
1262
+ background-color: #5ac0d9;
1263
+ border-radius: 4px;
1264
+ border: none;
1265
+ font-family: PingFang;
1266
+ font-size: 14px;
1267
+ color: #ffffff;
1268
+ }
1269
+
1270
+ .button_clear:hover {
1271
+ background-color: #27c4eb;
1272
+ }
1273
+
1274
+ .button_search-1 {
1275
+ padding: 6px 12px;
1276
+ width: max-content;
1277
+ background-color: #6aa6e2;
1278
+ border-radius: 4px;
1279
+ border: none;
1280
+ font-family: PingFang;
1281
+ font-size: 1.4rem;
1282
+ color: #ffffff;
1283
+ }
1284
+
1285
+ .button_search-1:hover {
1286
+ background-color: #3592ef;
1287
+ }
1288
+
1289
+ .button_new-1 {
1290
+ padding: 6px 12px;
1291
+ width: max-content;
1292
+ background-color: #ffffff;
1293
+ border-radius: 4px;
1294
+ border: solid 1px #6aa6e2;
1295
+ font-family: PingFang;
1296
+ font-size: 1.4rem;
1297
+ color: #6aa6e2;
1298
+ }
1299
+
1300
+ .button_new-1:hover {
1301
+ background-color: #f0f8ff;
1302
+ }
1303
+
1304
+ /*按钮新建*/
1305
+ .button_new {
1306
+ padding: 6px 12px;
1307
+ width: max-content;
1308
+ background-color: #ffffff;
1309
+ border-radius: 4px;
1310
+ border: solid 1px #6aa6e2;
1311
+ font-family: PingFang;
1312
+ font-size: 14px;
1313
+ color: #6aa6e2;
1314
+ }
1315
+
1316
+ .button_new:hover {
1317
+ background-color: #f0f8ff;
1318
+ }
1319
+
1320
+ /*按钮导出*/
1321
+ .button_export {
1322
+ padding: 6px 12px;
1323
+ width: max-content;
1324
+ background-color: #ffffff;
1325
+ border-radius: 4px;
1326
+ border: solid 1px #6aa6e2;
1327
+ font-family: PingFang;
1328
+ font-size: 14px;
1329
+ color: #6aa6e2;
1330
+ }
1331
+
1332
+ .button_export:hover {
1333
+ background-color: #f0f8ff;
1334
+ }
1335
+
1336
+ .button_export button {
1337
+ padding: 6px 12px;
1338
+ width: max-content;
1339
+ background-color: #ffffff !important;
1340
+ border-radius: 4px !important;
1341
+ border: solid 1px #6aa6e2 !important;
1342
+ font-family: PingFang;
1343
+ font-size: 14px !important;
1344
+ color: #6aa6e2 !important;
1345
+ }
1346
+
1347
+ .button_export button:hover {
1348
+ background-color: #f0f8ff;
1349
+ }
1350
+
1351
+ //查询条件伸展
1352
+ .button_stretch {
1353
+ padding: 6px 12px;
1354
+ width: max-content;
1355
+ background-color: #ffffff;
1356
+ border-radius: 4px;
1357
+ border: solid 1px #6aa6e2;
1358
+ font-family: PingFang;
1359
+ font-size: 1.4rem;
1360
+ color: #6aa6e2;
1361
+ }
1362
+
1363
+ .button_stretch:hover {
1364
+ background-color: #f0f8ff;
1365
+ }
1366
+
1367
+ .button_stretch button {
1368
+ padding: 6px 12px;
1369
+ width: max-content;
1370
+ background-color: #ffffff;
1371
+ border-radius: 4px;
1372
+ border: solid 1px #6aa6e2;
1373
+ font-family: PingFang;
1374
+ font-size: 1.4rem;
1375
+ color: #6aa6e2;
1376
+ }
1377
+
1378
+ .button_stretch button:hover {
1379
+ background-color: #f0f8ff;
1380
+ }
1381
+
1382
+ //左右伸缩按钮
1383
+ .button_shrink_top {
1384
+ width: 32px;
1385
+ height: 32px;
1386
+ background-size: 100%;
1387
+ background-image: url("../../../../static/newStyle/stretch_top.png")
1388
+ }
1389
+
1390
+ .button_shrink_bottom {
1391
+ width: 32px;
1392
+ height: 32px;
1393
+ background-size: 100%;
1394
+ background-image: url("../../../../static/newStyle/stretch_bottom.png")
1395
+ }
1396
+
1397
+ .button_shrink_left {
1398
+ width: 32px;
1399
+ height: 32px;
1400
+ background-size: 100%;
1401
+ background-image: url("../../../../static/newStyle/stretch_left.png")
1402
+ }
1403
+
1404
+ .button_shrink_right {
1405
+ width: 32px;
1406
+ height: 32px;
1407
+ background-size: 100%;
1408
+ background-image: url("../../../../static/newStyle/stretch_right.png")
1409
+ }
1410
+
1411
+
1412
+ /*查询输入框*/
1413
+ .input_search {
1414
+ padding: 8px;
1415
+ width: 180px;
1416
+ height: 32px;
1417
+ background-color: #ffffff;
1418
+ border-radius: 2px;
1419
+ border: solid 1px #c7c7c7;
1420
+ color: #333333;
1421
+ font-size: 14px;
1422
+ font-family: PingFang;
1423
+ }
1424
+
1425
+ .input_search::-webkit-input-placeholder {
1426
+ color: #999999;
1427
+ font-size: 14px;
1428
+ padding-left: 6px;
1429
+ font-family: PingFang;
1430
+ }
1431
+
1432
+ .input_search:focus {
1433
+ border: solid 1px #6aa6e2;
1434
+ }
1435
+
1436
+ /*查询输入域*/
1437
+ .input_textarea {
1438
+ width: 180px;
1439
+ height: 100px;
1440
+ background-color: #ffffff;
1441
+ border-radius: 2px;
1442
+ border: solid 1px #c7c7c7;
1443
+ color: #333333;
1444
+ font-size: 1.4rem;
1445
+ font-family: PingFang;
1446
+ }
1447
+
1448
+ .input_textarea .datepicker .datepicker-input input {
1449
+ padding-left: 8px;
1450
+ width: 180px !important;
1451
+ height: 100px !important;
1452
+ background-color: #ffffff !important;
1453
+ border-radius: 2px;
1454
+ border: solid 1px #c7c7c7 !important;
1455
+ color: #333333;
1456
+ font-size: 1.4rem;
1457
+ font-family: PingFang;
1458
+ }
1459
+
1460
+ .input_textarea::-webkit-input-placeholder {
1461
+ color: #ffffff;
1462
+ font-size: 1.4rem;
1463
+ padding-left: 6px;
1464
+ font-family: PingFang;
1465
+ }
1466
+
1467
+ .input_textarea:focus {
1468
+ border: solid 1px #6aa6e2;
1469
+ }
1470
+
1471
+ /*下拉框*/
1472
+ .select button {
1473
+ width: 180px !important;
1474
+ height: 32px !important;
1475
+ background-color: #ffffff !important;
1476
+ border-radius: 2px !important;
1477
+ border: solid 1px #c7c7c7 !important;
1478
+ color: #999999 !important;
1479
+ font-size: 14px !important;
1480
+ font-family: PingFang;
1481
+ font-weight: normal !important;
1482
+ }
1483
+
1484
+ .select button:focus {
1485
+ border: solid 1px #6aa6e2 !important;
1486
+ }
1487
+
1488
+ }
1489
+
1490
+ /*分辨率@1366*768*/
1491
+ @media screen and (max-width: 1280px) {
1492
+
1493
+ html {
1494
+ font-size: 7px;
1495
+ }
1496
+
1497
+ .select-style {
1498
+ font-size: 1.4rem;
1499
+ }
1500
+
1501
+
1502
+ .btn-group {
1503
+ display: inline-flex !important;
1504
+ height: 34px;
1505
+ }
1506
+
1507
+ /********************按钮*****************/
1508
+ /*按钮间隔*/
1509
+ /*.button_spacing{margin: 0px 0px 0px 20px;}*/
1510
+ .font_normal_body {
1511
+ font-size: 12px !important;
1512
+ line-height: 22px;
1513
+ }
1514
+
1515
+ .font_bold_body {
1516
+ font-size: 12px !important;
1517
+ line-height: 22px;
1518
+ }
1519
+
1520
+ .font_bold_title {
1521
+ font-size: 12px !important;
1522
+ line-height: 22px;
1523
+ }
1524
+
1525
+ .table_sy thead tr th {
1526
+ font-size: 12px !important;
1527
+ }
1528
+
1529
+ .foot .pager {
1530
+ font-size: 12px !important;
1531
+ color: #666666 !important;
1532
+ font-weight: normal !important;
1533
+ }
1534
+
1535
+ .foot .pager a {
1536
+ font-size: 12px !important;
1537
+ color: #666666 !important;
1538
+ font-weight: normal !important;
1539
+ }
1540
+
1541
+ .foot .pager li {
1542
+ font-size: 12px !important;
1543
+ color: #666666 !important;
1544
+ font-weight: normal !important;
1545
+ }
1546
+
1547
+ /*按钮查询*/
1548
+ .button_search {
1549
+ padding: 6px 8px;
1550
+ width: max-content;
1551
+ background-color: #6aa6e2;
1552
+ border-radius: 4px;
1553
+ border: none;
1554
+ font-family: PingFang;
1555
+ font-size: 12px;
1556
+ color: #ffffff;
1557
+ }
1558
+
1559
+ .button_search:hover {
1560
+ background-color: #3592ef;
1561
+ }
1562
+
1563
+ /*删除按钮*/
1564
+ .button_delete {
1565
+ padding: 6px 8px;
1566
+ width: max-content;
1567
+ background-color: #f1684d;
1568
+ border-radius: 4px;
1569
+ border: none;
1570
+ font-family: PingFang;
1571
+ font-size: 1.4rem;
1572
+ color: #ffffff;
1573
+ }
1574
+
1575
+ .button_delete:hover {
1576
+ background-color: red;
1577
+ }
1578
+
1579
+ /*按钮清空*/
1580
+ .button_clear {
1581
+ padding: 6px 8px;
1582
+ width: max-content;
1583
+ background-color: #5ac0d9;
1584
+ border-radius: 4px;
1585
+ border: none;
1586
+ font-family: PingFang;
1587
+ font-size: 12px;
1588
+ color: #ffffff;
1589
+ }
1590
+
1591
+ .button_clear:hover {
1592
+ background-color: #27c4eb;
1593
+ }
1594
+
1595
+ /*按钮新建*/
1596
+ .button_new {
1597
+ padding: 6px 8px;
1598
+ width: max-content;
1599
+ background-color: #ffffff;
1600
+ border-radius: 4px;
1601
+ border: solid 1px #6aa6e2;
1602
+ font-family: PingFang;
1603
+ font-size: 12px;
1604
+ color: #6aa6e2;
1605
+ }
1606
+
1607
+ .button_new:hover {
1608
+ background-color: #f0f8ff;
1609
+ }
1610
+
1611
+ .button_search-1 {
1612
+ padding: 6px 8px;
1613
+ width: max-content;
1614
+ background-color: #6aa6e2;
1615
+ border-radius: 4px;
1616
+ border: none;
1617
+ font-family: PingFang;
1618
+ font-size: 1.4rem;
1619
+ color: #ffffff;
1620
+ }
1621
+
1622
+ .button_search-1:hover {
1623
+ background-color: #3592ef;
1624
+ }
1625
+
1626
+ .button_new-1 {
1627
+ padding: 6px 8px;
1628
+ width: max-content;
1629
+ background-color: #ffffff;
1630
+ border-radius: 4px;
1631
+ border: solid 1px #6aa6e2;
1632
+ font-family: PingFang;
1633
+ font-size: 1.4rem;
1634
+ color: #6aa6e2;
1635
+ }
1636
+
1637
+ .button_new-1:hover {
1638
+ background-color: #f0f8ff;
1639
+ }
1640
+
1641
+ /*按钮导出*/
1642
+ .button_export {
1643
+ padding: 6px 8px;
1644
+ width: max-content;
1645
+ background-color: #ffffff;
1646
+ border-radius: 4px;
1647
+ border: solid 1px #6aa6e2;
1648
+ font-family: PingFang;
1649
+ font-size: 12px;
1650
+ color: #6aa6e2;
1651
+ }
1652
+
1653
+ .button_export:hover {
1654
+ background-color: #f0f8ff;
1655
+ }
1656
+
1657
+ .button_export button {
1658
+ padding: 6px 8px;
1659
+ width: max-content;
1660
+ background-color: #ffffff !important;
1661
+ border-radius: 4px !important;
1662
+ border: solid 1px #6aa6e2 !important;
1663
+ font-family: PingFang;
1664
+ font-size: 12px !important;
1665
+ color: #6aa6e2 !important;
1666
+ }
1667
+
1668
+ .button_export button:hover {
1669
+ background-color: #f0f8ff;
1670
+ }
1671
+
1672
+ //查询条件伸展
1673
+ .button_stretch {
1674
+ padding: 6px 8px;
1675
+ width: max-content;
1676
+ background-color: #ffffff;
1677
+ border-radius: 4px;
1678
+ border: solid 1px #6aa6e2;
1679
+ font-family: PingFang;
1680
+ font-size: 1.4rem;
1681
+ color: #6aa6e2;
1682
+ }
1683
+
1684
+ .button_stretch:hover {
1685
+ background-color: #f0f8ff;
1686
+ }
1687
+
1688
+ .button_stretch button {
1689
+ padding: 6px 8px;
1690
+ width: max-content;
1691
+ background-color: #ffffff;
1692
+ border-radius: 4px;
1693
+ border: solid 1px #6aa6e2;
1694
+ font-family: PingFang;
1695
+ font-size: 1.4rem;
1696
+ color: #6aa6e2;
1697
+ }
1698
+
1699
+ .button_stretch button:hover {
1700
+ background-color: #f0f8ff;
1701
+ }
1702
+
1703
+ //左右伸缩按钮
1704
+ .button_shrink_top {
1705
+ width: 30px;
1706
+ height: 30px;
1707
+ border: solid 1px #6aa6e2;
1708
+ background-size: 100%;
1709
+ background-image: url("../../../../static/newStyle/stretch_top.png")
1710
+ }
1711
+
1712
+ .button_shrink_bottom {
1713
+ width: 30px;
1714
+ height: 30px;
1715
+ border: solid 1px #6aa6e2;
1716
+ background-size: 100%;
1717
+ background-image: url("../../../../static/newStyle/stretch_bottom.png")
1718
+ }
1719
+
1720
+ .button_shrink_left {
1721
+ width: 30px;
1722
+ height: 30px;
1723
+ border: solid 1px #6aa6e2;
1724
+ background-size: 100%;
1725
+ background-image: url("../../../../static/newStyle/stretch_left.png")
1726
+ }
1727
+
1728
+ .button_shrink_right {
1729
+ width: 30px;
1730
+ height: 30px;
1731
+ border: solid 1px #6aa6e2;
1732
+ background-size: 100%;
1733
+ background-image: url("../../../../static/newStyle/stretch_right.png")
1734
+ }
1735
+
1736
+ /*查询输入框*/
1737
+ .input_search {
1738
+ padding: 6px;
1739
+ width: 180px;
1740
+ height: 30px;
1741
+ background-color: #ffffff;
1742
+ border-radius: 2px;
1743
+ border: solid 1px #c7c7c7;
1744
+ color: #333333;
1745
+ font-size: 12px;
1746
+ font-family: PingFang;
1747
+ }
1748
+
1749
+ .input_search::-webkit-input-placeholder {
1750
+ color: #999999;
1751
+ font-size: 12px;
1752
+ padding-left: 6px;
1753
+ font-family: PingFang;
1754
+ }
1755
+
1756
+ .input_search:focus {
1757
+ border: solid 1px #6aa6e2;
1758
+ }
1759
+
1760
+ /*查询输入域*/
1761
+ .input_textarea {
1762
+ width: 180px;
1763
+ height: 100px;
1764
+ background-color: #ffffff;
1765
+ border-radius: 2px;
1766
+ border: solid 1px #c7c7c7;
1767
+ color: #333333;
1768
+ font-size: 14px;
1769
+ font-family: PingFang;
1770
+ }
1771
+
1772
+ .input_textarea .datepicker .datepicker-input input {
1773
+ padding-left: 6px;
1774
+ width: 180px !important;
1775
+ height: 100px !important;
1776
+ background-color: #ffffff !important;
1777
+ border-radius: 2px;
1778
+ border: solid 1px #c7c7c7 !important;
1779
+ color: #333333;
1780
+ font-size: 14px;
1781
+ font-family: PingFang;
1782
+ }
1783
+
1784
+ .input_textarea::-webkit-input-placeholder {
1785
+ color: #ffffff;
1786
+ font-size: 14px;
1787
+ padding-left: 6px;
1788
+ font-family: PingFang;
1789
+ }
1790
+
1791
+ .input_textarea:focus {
1792
+ border: solid 1px #6aa6e2;
1793
+ }
1794
+
1795
+ /*下拉框*/
1796
+ .select button {
1797
+ width: 180px !important;
1798
+ height: 30px !important;
1799
+ background-color: #ffffff !important;
1800
+ border-radius: 2px !important;
1801
+ border: solid 1px #c7c7c7 !important;
1802
+ color: #999999 !important;
1803
+ font-size: 12px !important;
1804
+ font-family: PingFang;
1805
+ font-weight: normal !important;
1806
+ }
1807
+
1808
+ .select button:focus {
1809
+ border: solid 1px #6aa6e2 !important;
1810
+ }
1811
+
1812
+ }
1813
+
1814
+ /*分辨率@1366*768*/
1815
+ @media screen and (max-width: 800px) {
1816
+ html {
1817
+ font-size: 6px;
1818
+ }
1819
+
1820
+ /********************按钮*****************/
1821
+ /*按钮间隔*/
1822
+ /*.button_spacing{margin: 0px 0px 0px 20px;}*/
1823
+ .font_normal_body {
1824
+ font-size: 12px !important;
1825
+ line-height: 20px;
1826
+ }
1827
+
1828
+ .font_bold_body {
1829
+ font-size: 12px !important;
1830
+ line-height: 20px;
1831
+ }
1832
+
1833
+ .font_bold_title {
1834
+ font-size: 12px !important;
1835
+ line-height: 20px;
1836
+ }
1837
+
1838
+ .table_sy thead tr th {
1839
+ font-size: 12px !important;
1840
+ }
1841
+
1842
+ .foot .pager {
1843
+ font-size: 12px !important;
1844
+ color: #666666 !important;
1845
+ font-weight: normal !important;
1846
+ }
1847
+
1848
+ .foot .pager a {
1849
+ font-size: 12px !important;
1850
+ color: #666666 !important;
1851
+ font-weight: normal !important;
1852
+ }
1853
+
1854
+ .foot .pager li {
1855
+ font-size: 12px !important;
1856
+ color: #666666 !important;
1857
+ font-weight: normal !important;
1858
+ }
1859
+
1860
+ /*按钮查询*/
1861
+ .button_search {
1862
+ padding: 6px 8px;
1863
+ width: max-content;
1864
+ background-color: #6aa6e2;
1865
+ border-radius: 4px;
1866
+ border: none;
1867
+ font-family: PingFang;
1868
+ font-size: 14px;
1869
+ color: #ffffff;
1870
+ }
1871
+
1872
+ .button_search:hover {
1873
+ background-color: #3592ef;
1874
+ }
1875
+
1876
+ /*删除按钮*/
1877
+ .button_delete {
1878
+ padding: 6px 8px;
1879
+ width: max-content;
1880
+ background-color: #f1684d;
1881
+ border-radius: 4px;
1882
+ border: none;
1883
+ font-family: PingFang;
1884
+ font-size: 1.4rem;
1885
+ color: #ffffff;
1886
+ }
1887
+
1888
+ .button_delete:hover {
1889
+ background-color: red;
1890
+ }
1891
+
1892
+ /*按钮清空*/
1893
+ .button_clear {
1894
+ padding: 6px 8px;
1895
+ width: max-content;
1896
+ background-color: #5ac0d9;
1897
+ border-radius: 4px;
1898
+ border: none;
1899
+ font-family: PingFang;
1900
+ font-size: 12px;
1901
+ color: #ffffff;
1902
+ }
1903
+
1904
+ .button_clear:hover {
1905
+ background-color: #27c4eb;
1906
+ }
1907
+
1908
+ /*按钮新建*/
1909
+ .button_new {
1910
+ padding: 6px 8px;
1911
+ width: max-content;
1912
+ background-color: #ffffff;
1913
+ border-radius: 4px;
1914
+ border: solid 1px #6aa6e2;
1915
+ font-family: PingFang;
1916
+ font-size: 12px;
1917
+ color: #6aa6e2;
1918
+ }
1919
+
1920
+ .button_new:hover {
1921
+ background-color: #f0f8ff;
1922
+ }
1923
+
1924
+ .button_search-1 {
1925
+ padding: 6px 8px;
1926
+ width: max-content;
1927
+ background-color: #6aa6e2;
1928
+ border-radius: 4px;
1929
+ border: none;
1930
+ font-family: PingFang;
1931
+ font-size: 1.4rem;
1932
+ color: #ffffff;
1933
+ }
1934
+
1935
+ .button_search-1:hover {
1936
+ background-color: #3592ef;
1937
+ }
1938
+
1939
+ .button_new-1 {
1940
+ padding: 6px 8px;
1941
+ width: max-content;
1942
+ background-color: #ffffff;
1943
+ border-radius: 4px;
1944
+ border: solid 1px #6aa6e2;
1945
+ font-family: PingFang;
1946
+ font-size: 1.4rem;
1947
+ color: #6aa6e2;
1948
+ }
1949
+
1950
+ .button_new-1:hover {
1951
+ background-color: #f0f8ff;
1952
+ }
1953
+
1954
+ /*按钮导出*/
1955
+ .button_export {
1956
+ padding: 6px 8px;
1957
+ width: max-content;
1958
+ background-color: #ffffff;
1959
+ border-radius: 4px;
1960
+ border: solid 1px #6aa6e2;
1961
+ font-family: PingFang;
1962
+ font-size: 12px;
1963
+ color: #6aa6e2;
1964
+ }
1965
+
1966
+ .button_export:hover {
1967
+ background-color: #f0f8ff;
1968
+ }
1969
+
1970
+ .button_export button {
1971
+ padding: 6px 8px;
1972
+ width: max-content;
1973
+ background-color: #ffffff !important;
1974
+ border-radius: 4px !important;
1975
+ border: solid 1px #6aa6e2 !important;
1976
+ font-family: PingFang;
1977
+ font-size: 12px !important;
1978
+ color: #6aa6e2 !important;
1979
+ }
1980
+
1981
+ .button_export button:hover {
1982
+ background-color: #f0f8ff;
1983
+ }
1984
+
1985
+ //查询条件伸展
1986
+ .button_stretch {
1987
+ padding: 6px 8px;
1988
+ width: max-content;
1989
+ background-color: #ffffff;
1990
+ border-radius: 4px;
1991
+ border: solid 1px #6aa6e2;
1992
+ font-family: PingFang;
1993
+ font-size: 1.4rem;
1994
+ color: #6aa6e2;
1995
+ }
1996
+
1997
+ .button_stretch:hover {
1998
+ background-color: #f0f8ff;
1999
+ }
2000
+
2001
+ .button_stretch button {
2002
+ padding: 6px 8px;
2003
+ width: max-content;
2004
+ background-color: #ffffff;
2005
+ border-radius: 4px;
2006
+ border: solid 1px #6aa6e2;
2007
+ font-family: PingFang;
2008
+ font-size: 1.4rem;
2009
+ color: #6aa6e2;
2010
+ }
2011
+
2012
+ .button_stretch button:hover {
2013
+ background-color: #f0f8ff;
2014
+ }
2015
+
2016
+ //左右伸缩按钮
2017
+ .button_shrink_top {
2018
+ width: 28px;
2019
+ height: 28px;
2020
+ background-size: 100%;
2021
+ background-image: url("../../../../static/newStyle/stretch_top.png")
2022
+ }
2023
+
2024
+ .button_shrink_bottom {
2025
+ width: 28px;
2026
+ height: 28px;
2027
+ background-size: 100%;
2028
+ background-image: url("../../../../static/newStyle/stretch_bottom.png")
2029
+ }
2030
+
2031
+ .button_shrink_left {
2032
+ width: 28px;
2033
+ height: 28px;
2034
+ background-size: 100%;
2035
+ background-image: url("../../../../static/newStyle/stretch_left.png")
2036
+ }
2037
+
2038
+ .button_shrink_right {
2039
+ width: 28px;
2040
+ height: 28px;
2041
+ background-size: 100%;
2042
+ background-image: url("../../../../static/newStyle/stretch_right.png")
2043
+ }
2044
+
2045
+ /*查询输入框*/
2046
+ .input_search {
2047
+ padding: 6px;
2048
+ width: 160px;
2049
+ height: 28px;
2050
+ background-color: #ffffff;
2051
+ border-radius: 2px;
2052
+ border: solid 1px #c7c7c7;
2053
+ color: #333333;
2054
+ font-size: 12px;
2055
+ font-family: PingFang;
2056
+ }
2057
+
2058
+ .input_search::-webkit-input-placeholder {
2059
+ color: #999999;
2060
+ font-size: 12px;
2061
+ padding-left: 6px;
2062
+ font-family: PingFang;
2063
+ }
2064
+
2065
+ .input_search:focus {
2066
+ border: solid 1px #6aa6e2;
2067
+ }
2068
+
2069
+ /*查询输入域*/
2070
+ .input_textarea {
2071
+ width: 160px;
2072
+ height: 90px;
2073
+ background-color: #ffffff;
2074
+ border-radius: 2px;
2075
+ border: solid 1px #c7c7c7;
2076
+ color: #333333;
2077
+ font-size: 12px;
2078
+ font-family: PingFang;
2079
+ }
2080
+
2081
+ .input_textarea .datepicker .datepicker-input input {
2082
+ padding-left: 6px;
2083
+ width: 160px !important;
2084
+ height: 90px !important;
2085
+ background-color: #ffffff !important;
2086
+ border-radius: 2px;
2087
+ border: solid 1px #c7c7c7 !important;
2088
+ color: #333333;
2089
+ font-size: 14px;
2090
+ font-family: PingFang;
2091
+ }
2092
+
2093
+ .input_textarea::-webkit-input-placeholder {
2094
+ color: #ffffff;
2095
+ font-size: 14px;
2096
+ padding-left: 4px;
2097
+ font-family: PingFang;
2098
+ }
2099
+
2100
+ .input_textarea:focus {
2101
+ border: solid 1px #6aa6e2;
2102
+ }
2103
+
2104
+ /*下拉框*/
2105
+ .select button {
2106
+ width: 160px !important;
2107
+ height: 28px !important;
2108
+ background-color: #ffffff !important;
2109
+ border-radius: 2px !important;
2110
+ border: solid 1px #c7c7c7 !important;
2111
+ color: #999999 !important;
2112
+ font-size: 12px !important;
2113
+ font-family: PingFang;
2114
+ font-weight: normal !important;
2115
+ }
2116
+
2117
+ .select button:focus {
2118
+ border: solid 1px #6aa6e2 !important;
2119
+ }
2120
+
2121
+ }