mooho-base-admin-plus 0.1.0

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 (283) hide show
  1. package/.env +5 -0
  2. package/.env.development +0 -0
  3. package/.env.production +0 -0
  4. package/.eslintignore +11 -0
  5. package/.eslintrc.js +47 -0
  6. package/.prettierrc +15 -0
  7. package/README.md +18 -0
  8. package/dist/favicon.ico +0 -0
  9. package/dist/mooho-base-admin-plus.min.esm.js +131746 -0
  10. package/dist/mooho-base-admin-plus.min.js +279 -0
  11. package/dist/setting.js +31 -0
  12. package/dist/static/images/app-barcode.png +0 -0
  13. package/dist/static/images/login/bg.png +0 -0
  14. package/dist/static/images/login/logo.png +0 -0
  15. package/dist/static/images/login/password-active.png +0 -0
  16. package/dist/static/images/login/password-default.png +0 -0
  17. package/dist/static/images/login/signIn-img.png +0 -0
  18. package/dist/static/images/login/user-active.png +0 -0
  19. package/dist/static/images/login/user-default.png +0 -0
  20. package/dist/static/images/logo-dark.png +0 -0
  21. package/dist/static/images/logo-small.png +0 -0
  22. package/dist/static/images/logo.png +0 -0
  23. package/dist/static/images/logo.svg +510 -0
  24. package/dist/static/images/no-image.png +0 -0
  25. package/dist/style.css +4 -0
  26. package/index.html +18 -0
  27. package/other/pda.vue +28 -0
  28. package/package.json +59 -0
  29. package/public/favicon.ico +0 -0
  30. package/public/setting.js +31 -0
  31. package/public/static/images/app-barcode.png +0 -0
  32. package/public/static/images/login/bg.png +0 -0
  33. package/public/static/images/login/logo.png +0 -0
  34. package/public/static/images/login/password-active.png +0 -0
  35. package/public/static/images/login/password-default.png +0 -0
  36. package/public/static/images/login/signIn-img.png +0 -0
  37. package/public/static/images/login/user-active.png +0 -0
  38. package/public/static/images/login/user-default.png +0 -0
  39. package/public/static/images/logo-dark.png +0 -0
  40. package/public/static/images/logo-small.png +0 -0
  41. package/public/static/images/logo.png +0 -0
  42. package/public/static/images/logo.svg +510 -0
  43. package/public/static/images/no-image.png +0 -0
  44. package/src/App.vue +60 -0
  45. package/src/api/application.js +35 -0
  46. package/src/api/customModel.js +187 -0
  47. package/src/api/customPage.js +15 -0
  48. package/src/api/customTable.js +24 -0
  49. package/src/api/dataSource.js +93 -0
  50. package/src/api/dataView.js +199 -0
  51. package/src/api/dictType.js +23 -0
  52. package/src/api/entityView.js +13 -0
  53. package/src/api/enum.js +15 -0
  54. package/src/api/filterColumn.js +16 -0
  55. package/src/api/model.js +244 -0
  56. package/src/api/movePlan.js +29 -0
  57. package/src/api/notification.js +28 -0
  58. package/src/api/openApiPermission.js +25 -0
  59. package/src/api/permission.js +51 -0
  60. package/src/api/planJob.js +15 -0
  61. package/src/api/process.js +23 -0
  62. package/src/api/processDef.js +36 -0
  63. package/src/api/processInst.js +16 -0
  64. package/src/api/rolePermission.js +17 -0
  65. package/src/api/roleProperty.js +36 -0
  66. package/src/api/shortcut.js +20 -0
  67. package/src/api/system.js +23 -0
  68. package/src/api/task.js +56 -0
  69. package/src/api/taskQueue.js +24 -0
  70. package/src/api/user.js +45 -0
  71. package/src/api/viewColumn.js +16 -0
  72. package/src/assets/svg/body.svg +17 -0
  73. package/src/assets/svg/header-theme-dark.svg +40 -0
  74. package/src/assets/svg/header-theme-primary.svg +40 -0
  75. package/src/assets/svg/header-top.svg +40 -0
  76. package/src/assets/svg/icon-happy.svg +1 -0
  77. package/src/assets/svg/icon-sad.svg +1 -0
  78. package/src/assets/svg/icon-social-bilibili.svg +1 -0
  79. package/src/assets/svg/icon-social-dingding.svg +1 -0
  80. package/src/assets/svg/icon-social-facebook.svg +1 -0
  81. package/src/assets/svg/icon-social-juejin.svg +1 -0
  82. package/src/assets/svg/icon-social-qq.svg +1 -0
  83. package/src/assets/svg/icon-social-twitter.svg +1 -0
  84. package/src/assets/svg/icon-social-wechat.svg +1 -0
  85. package/src/assets/svg/icon-social-weibo.svg +1 -0
  86. package/src/assets/svg/icon-social-zhihu.svg +1 -0
  87. package/src/assets/svg/nav-theme-dark.svg +40 -0
  88. package/src/assets/svg/nav-theme-light.svg +40 -0
  89. package/src/components/copyright/index.vue +28 -0
  90. package/src/components/home/notice-list.vue +62 -0
  91. package/src/components/home/shortcut.vue +125 -0
  92. package/src/components/input/dialog-select.vue +301 -0
  93. package/src/components/input/item-select.vue +195 -0
  94. package/src/components/link/index.vue +54 -0
  95. package/src/components/richEditor/index.vue +86 -0
  96. package/src/components/upload/file-upload.vue +84 -0
  97. package/src/components/upload/upload-attachment.vue +119 -0
  98. package/src/components/upload/upload-image.vue +212 -0
  99. package/src/components/view/column-check.vue +223 -0
  100. package/src/components/view/column-edit.vue +850 -0
  101. package/src/components/view/column-select.vue +206 -0
  102. package/src/components/view/condition-edit.vue +164 -0
  103. package/src/components/view/filter-edit.vue +633 -0
  104. package/src/components/view/filter-setting.vue +126 -0
  105. package/src/components/view/form-setting-layout.vue +375 -0
  106. package/src/components/view/form-setting.vue +247 -0
  107. package/src/components/view/group-column.vue +104 -0
  108. package/src/components/view/group-method.vue +104 -0
  109. package/src/components/view/mixin.js +72 -0
  110. package/src/components/view/modal-form-filter.vue +319 -0
  111. package/src/components/view/modal-form-sort.vue +248 -0
  112. package/src/components/view/modal-form.vue +453 -0
  113. package/src/components/view/modal-table.vue +471 -0
  114. package/src/components/view/table-filter.vue +702 -0
  115. package/src/components/view/table-setting.vue +533 -0
  116. package/src/components/view/view-chart.vue +423 -0
  117. package/src/components/view/view-form-draggable.vue +837 -0
  118. package/src/components/view/view-form.vue +1444 -0
  119. package/src/components/view/view-table.vue +2261 -0
  120. package/src/components/workflow/flow-chart.vue +846 -0
  121. package/src/directive/focus.js +10 -0
  122. package/src/directive/tabHide.js +9 -0
  123. package/src/i18n/index.js +15 -0
  124. package/src/i18n/locale/en-US.js +1 -0
  125. package/src/i18n/locale/lang.js +1 -0
  126. package/src/i18n/locale/zh-CN.js +1 -0
  127. package/src/i18n/locale.js +102 -0
  128. package/src/index.js +222 -0
  129. package/src/layouts/basic-layout/header-breadcrumb/index.vue +122 -0
  130. package/src/layouts/basic-layout/header-collapse/index.vue +44 -0
  131. package/src/layouts/basic-layout/header-fullscreen/index.vue +19 -0
  132. package/src/layouts/basic-layout/header-i18n/index.vue +45 -0
  133. package/src/layouts/basic-layout/header-log/index.vue +41 -0
  134. package/src/layouts/basic-layout/header-logo/index.vue +23 -0
  135. package/src/layouts/basic-layout/header-notice/index.vue +218 -0
  136. package/src/layouts/basic-layout/header-reload/index.vue +21 -0
  137. package/src/layouts/basic-layout/header-search/index.vue +37 -0
  138. package/src/layouts/basic-layout/header-setting/index.vue +219 -0
  139. package/src/layouts/basic-layout/header-user/index.vue +175 -0
  140. package/src/layouts/basic-layout/i18n.js +50 -0
  141. package/src/layouts/basic-layout/index.vue +280 -0
  142. package/src/layouts/basic-layout/menu-head/index.vue +120 -0
  143. package/src/layouts/basic-layout/menu-head/title.vue +48 -0
  144. package/src/layouts/basic-layout/menu-side/index.vue +113 -0
  145. package/src/layouts/basic-layout/menu-side/menu-collapse.vue +76 -0
  146. package/src/layouts/basic-layout/menu-side/menu-item.vue +31 -0
  147. package/src/layouts/basic-layout/menu-side/menu-title.vue +56 -0
  148. package/src/layouts/basic-layout/menu-side/submenu.vue +31 -0
  149. package/src/layouts/basic-layout/mixins/click-item.js +21 -0
  150. package/src/layouts/basic-layout/mixins/sider-menu-badge.js +13 -0
  151. package/src/layouts/basic-layout/mixins/translate-title.js +11 -0
  152. package/src/layouts/basic-layout/tabs/index.vue +192 -0
  153. package/src/layouts/basic-layout/water-mark/index.vue +29 -0
  154. package/src/libs/lodop/index.js +145 -0
  155. package/src/libs/random_str.js +10 -0
  156. package/src/libs/request/index.js +158 -0
  157. package/src/libs/system/index.js +234 -0
  158. package/src/libs/util.cookies.js +44 -0
  159. package/src/libs/util.db.js +13 -0
  160. package/src/libs/util.js +55 -0
  161. package/src/libs/util.log.js +88 -0
  162. package/src/libs/water-mark.js +44 -0
  163. package/src/menu/header.js +20 -0
  164. package/src/menu/modules/dashboard.js +23 -0
  165. package/src/menu/sider.js +12 -0
  166. package/src/mixins/app.js +9 -0
  167. package/src/mixins/page.js +643 -0
  168. package/src/pages/account/login.vue +101 -0
  169. package/src/pages/common/home.vue +169 -0
  170. package/src/pages/common/task-form.vue +350 -0
  171. package/src/pages/common/todo.vue +31 -0
  172. package/src/pages/system/apiLog.vue +79 -0
  173. package/src/pages/system/applicationType.vue +182 -0
  174. package/src/pages/system/customPage.vue +62 -0
  175. package/src/pages/system/customTable.vue +98 -0
  176. package/src/pages/system/dict.vue +36 -0
  177. package/src/pages/system/dictType.vue +58 -0
  178. package/src/pages/system/entityView.vue +38 -0
  179. package/src/pages/system/error/404.vue +6 -0
  180. package/src/pages/system/extendColumn.vue +99 -0
  181. package/src/pages/system/formView.vue +136 -0
  182. package/src/pages/system/log.vue +55 -0
  183. package/src/pages/system/notice.vue +26 -0
  184. package/src/pages/system/openApi.vue +26 -0
  185. package/src/pages/system/openUser.vue +66 -0
  186. package/src/pages/system/organization.vue +98 -0
  187. package/src/pages/system/organizationType.vue +26 -0
  188. package/src/pages/system/permission.vue +175 -0
  189. package/src/pages/system/planJob.vue +40 -0
  190. package/src/pages/system/printTemplate.vue +48 -0
  191. package/src/pages/system/process.vue +79 -0
  192. package/src/pages/system/processType.vue +26 -0
  193. package/src/pages/system/role.vue +395 -0
  194. package/src/pages/system/rolePropertyEdit.vue +480 -0
  195. package/src/pages/system/sequenceSetting.vue +26 -0
  196. package/src/pages/system/systemData.vue +52 -0
  197. package/src/pages/system/tableView.vue +386 -0
  198. package/src/pages/system/taskQueue.vue +48 -0
  199. package/src/pages/system/user.vue +250 -0
  200. package/src/pages/template/processPage.vue +243 -0
  201. package/src/pages/template/reportPage.vue +66 -0
  202. package/src/pages/template/viewPage.vue +139 -0
  203. package/src/plugins/auth/index.js +21 -0
  204. package/src/plugins/error/index.js +31 -0
  205. package/src/plugins/index.js +24 -0
  206. package/src/plugins/sweetalert2/index.js +20 -0
  207. package/src/router/dynamic.js +183 -0
  208. package/src/router/index.js +84 -0
  209. package/src/setting.js +202 -0
  210. package/src/store/index.js +9 -0
  211. package/src/store/modules/admin/index.js +16 -0
  212. package/src/store/modules/admin/modules/account.js +103 -0
  213. package/src/store/modules/admin/modules/cache.js +119 -0
  214. package/src/store/modules/admin/modules/dataView.js +112 -0
  215. package/src/store/modules/admin/modules/db.js +231 -0
  216. package/src/store/modules/admin/modules/i18n.js +87 -0
  217. package/src/store/modules/admin/modules/layout.js +115 -0
  218. package/src/store/modules/admin/modules/loader.js +44 -0
  219. package/src/store/modules/admin/modules/log.js +77 -0
  220. package/src/store/modules/admin/modules/menu.js +338 -0
  221. package/src/store/modules/admin/modules/page.js +466 -0
  222. package/src/store/modules/admin/modules/user.js +96 -0
  223. package/src/store/modules/admin/modules/viewPage.js +34 -0
  224. package/src/styles/common.less +47 -0
  225. package/src/styles/css/default.css +510 -0
  226. package/src/styles/css/login.css +1217 -0
  227. package/src/styles/default/index.less +6 -0
  228. package/src/styles/font/demo.css +539 -0
  229. package/src/styles/font/demo_index.html +372 -0
  230. package/src/styles/font/icon-demo/demo.css +539 -0
  231. package/src/styles/font/icon-demo/demo_index.html +423 -0
  232. package/src/styles/font/icon-demo/iconfont.css +61 -0
  233. package/src/styles/font/icon-demo/iconfont.eot +0 -0
  234. package/src/styles/font/icon-demo/iconfont.js +1 -0
  235. package/src/styles/font/icon-demo/iconfont.svg +59 -0
  236. package/src/styles/font/icon-demo/iconfont.ttf +0 -0
  237. package/src/styles/font/icon-demo/iconfont.woff +0 -0
  238. package/src/styles/font/icon-demo/iconfont.woff2 +0 -0
  239. package/src/styles/font/iconfont.css +47 -0
  240. package/src/styles/font/iconfont.js +1 -0
  241. package/src/styles/font/iconfont.json +65 -0
  242. package/src/styles/font/iconfont.ttf +0 -0
  243. package/src/styles/font/iconfont.woff +0 -0
  244. package/src/styles/font/iconfont.woff2 +0 -0
  245. package/src/styles/font/ionicons.svg +870 -0
  246. package/src/styles/font/ionicons.ttf +0 -0
  247. package/src/styles/font/ionicons.woff +0 -0
  248. package/src/styles/font/ionicons.woff2 +0 -0
  249. package/src/styles/index.less +7 -0
  250. package/src/styles/layout/basic-layout/layout.less +527 -0
  251. package/src/styles/layout/basic-layout/menu.less +274 -0
  252. package/src/styles/layout/index.less +2 -0
  253. package/src/styles/setting.less +6 -0
  254. package/styleguide.config.js +22 -0
  255. package/test/api/barcode.js +50 -0
  256. package/test/api/inbound.js +47 -0
  257. package/test/api/interfaceLog.js +15 -0
  258. package/test/api/interfaceQueue.js +15 -0
  259. package/test/api/interfaceServer.js +29 -0
  260. package/test/api/movePlan.js +50 -0
  261. package/test/api/movePlanItem.js +13 -0
  262. package/test/api/moveType.js +22 -0
  263. package/test/api/openApiPermission.js +25 -0
  264. package/test/api/outbound.js +40 -0
  265. package/test/api/permission.js +34 -0
  266. package/test/api/rolePermission.js +17 -0
  267. package/test/api/user.js +40 -0
  268. package/test/api/viewColumn.js +16 -0
  269. package/test/api/warehouse.js +13 -0
  270. package/test/api/warehouseMoveType.js +18 -0
  271. package/test/main.js +55 -0
  272. package/test/package.js +33 -0
  273. package/test/pages/home/index.vue +22 -0
  274. package/test/pages/task/test.vue +28 -0
  275. package/test/pages/test/dataViewTest.vue +28 -0
  276. package/test/pages/test/logReport.vue +25 -0
  277. package/test/pages/test/testPage.vue +38 -0
  278. package/test/router/routes.js +88 -0
  279. package/test/setting.env.js +22 -0
  280. package/test/styles/css/custom.css +0 -0
  281. package/test/styles/css/login.css +1217 -0
  282. package/vite.config.js +72 -0
  283. package/vue.config.js +20 -0
@@ -0,0 +1,1217 @@
1
+ .blue {
2
+ color: #00aaee;
3
+ }
4
+
5
+ .gray {
6
+ color: #b9bcc7;
7
+ }
8
+
9
+ .red {
10
+ color: #fc4444;
11
+ }
12
+
13
+ .orange {
14
+ color: #ff7802;
15
+ }
16
+
17
+ html {
18
+ font-family: 'Microsoft YaHei', 'Helvetica Neue', 'Hiragino Sans GB', '黑体', Arial, sans-serif;
19
+ -ms-text-size-adjust: 100%;
20
+ -webkit-text-size-adjust: 100%;
21
+ }
22
+
23
+ article,
24
+ aside,
25
+ details,
26
+ figcacption,
27
+ figure,
28
+ footer,
29
+ header,
30
+ hgroup,
31
+ main,
32
+ nav,
33
+ section,
34
+ summary {
35
+ display: block;
36
+ }
37
+
38
+ audio,
39
+ canvas,
40
+ progress,
41
+ video {
42
+ display: inline-block;
43
+ vertical-align: baseline;
44
+ }
45
+
46
+ audio:not([controls]) {
47
+ display: none;
48
+ height: 0;
49
+ }
50
+
51
+ [hidden],
52
+ template {
53
+ display: none;
54
+ }
55
+
56
+ a {
57
+ background: transparent;
58
+ text-decoration: none;
59
+ color: #333;
60
+ }
61
+
62
+ a:active,
63
+ a:hover,
64
+ a:focus {
65
+ outline: 0;
66
+ text-decoration: none;
67
+ color: #244292;
68
+ }
69
+
70
+ abbr[title] {
71
+ border-bottom: 1px dotted;
72
+ }
73
+
74
+ b,
75
+ strong {
76
+ font-weight: bold;
77
+ }
78
+
79
+ dfn {
80
+ font-style: italic;
81
+ }
82
+
83
+ mark {
84
+ background: #ff0;
85
+ color: #000;
86
+ }
87
+
88
+ small {
89
+ font-size: 80%;
90
+ }
91
+
92
+ sub,
93
+ sup {
94
+ font-size: 75%;
95
+ line-height: 0;
96
+ position: relative;
97
+ vertical-align: baseline;
98
+ }
99
+
100
+ sup {
101
+ top: -0.5em;
102
+ }
103
+
104
+ sub {
105
+ bottom: -0.25em;
106
+ }
107
+
108
+ img {
109
+ border: 0;
110
+ }
111
+
112
+ svg:not(:root) {
113
+ overflow: hidden;
114
+ }
115
+
116
+ hr {
117
+ -webkit-box-sizing: content-box;
118
+ box-sizing: content-box;
119
+ height: 0;
120
+ }
121
+
122
+ pre {
123
+ overflow: auto;
124
+ }
125
+
126
+ code,
127
+ kbd,
128
+ pre,
129
+ samp {
130
+ font-family: monospace, monospace;
131
+ font-size: 1em;
132
+ }
133
+
134
+ button,
135
+ input,
136
+ optgroup,
137
+ select,
138
+ textarea {
139
+ color: inherit;
140
+ font: inherit;
141
+ }
142
+
143
+ ton {
144
+ overflow: visible;
145
+ }
146
+
147
+ button,
148
+ select {
149
+ text-transform: none;
150
+ }
151
+
152
+ button,
153
+ html input[type='button'],
154
+ input[type='reset'],
155
+ input[type='submit'] {
156
+ -webkit-appearance: button;
157
+ cursor: pointer;
158
+ }
159
+
160
+ button[disabled],
161
+ html input[disabled] {
162
+ cursor: default;
163
+ }
164
+
165
+ button::-moz-focus-inner,
166
+ input::-moz-focus-inner {
167
+ border: 0;
168
+ padding: p;
169
+ }
170
+
171
+ input {
172
+ line-height: normal;
173
+ }
174
+
175
+ input[type='checkbox'],
176
+ input[type='radio'] {
177
+ -webkit-box-sizing: border-box;
178
+ box-sizing: border-box;
179
+ }
180
+
181
+ input[type='number']::-webkit-inner-spin-button,
182
+ input[type='number']::-webkit-outer-spin-button {
183
+ height: auto;
184
+ }
185
+
186
+ input[type='search'] {
187
+ -webkit-appearance: textfield;
188
+ }
189
+
190
+ input[type='search']::-webkit-search-cancel-button,
191
+ input[type='search']::-webkit-search-decoration {
192
+ -webkit-appearance: none;
193
+ }
194
+
195
+ fieldset {
196
+ border: 1px solid #c0c0c0;
197
+ }
198
+
199
+ textarea {
200
+ overflow: auto;
201
+ }
202
+
203
+ optgroup {
204
+ font-weight: bold;
205
+ }
206
+
207
+ table {
208
+ border-collapse: collapse;
209
+ border-spacing: 0;
210
+ }
211
+
212
+ body,
213
+ div,
214
+ address,
215
+ blockquote,
216
+ iframe,
217
+ ul,
218
+ ol,
219
+ dl,
220
+ dt,
221
+ dd,
222
+ li,
223
+ dl,
224
+ h1,
225
+ h2,
226
+ h3,
227
+ h4,
228
+ h5,
229
+ h6,
230
+ p,
231
+ a,
232
+ pre,
233
+ table,
234
+ caption,
235
+ th,
236
+ td,
237
+ form,
238
+ legend,
239
+ fieldset,
240
+ input,
241
+ button,
242
+ select,
243
+ textarea,
244
+ article,
245
+ aside,
246
+ audio,
247
+ canvas,
248
+ command,
249
+ datalist,
250
+ details,
251
+ embed,
252
+ figcaption,
253
+ figure,
254
+ footer,
255
+ header,
256
+ hgroup,
257
+ nav,
258
+ section,
259
+ source,
260
+ video,
261
+ time {
262
+ margin: 0;
263
+ padding: 0;
264
+ font-weight: normal;
265
+ font-style: normal;
266
+ font-size: 100%;
267
+ font-family: inherit;
268
+ -webkit-box-sizing: border-box;
269
+ box-sizing: border-box;
270
+ /*text-align: justify;*/
271
+ }
272
+
273
+ body {
274
+ color: #333;
275
+ background: #fff;
276
+ font: 8px;
277
+ overflow-x: hidden;
278
+ }
279
+
280
+ ul,
281
+ li,
282
+ ol {
283
+ list-style: none;
284
+ line-height: normal;
285
+ }
286
+
287
+ i,
288
+ address,
289
+ cite,
290
+ dfn,
291
+ em,
292
+ var {
293
+ font-style: normal;
294
+ }
295
+
296
+ body {
297
+ min-width: 1200px;
298
+ }
299
+
300
+ html,
301
+ body {
302
+ min-height: 100%;
303
+ }
304
+
305
+ a,
306
+ img,
307
+ input[type='text'],
308
+ input[type='submit'],
309
+ input[type='password'],
310
+ textarea,
311
+ select,
312
+ button,
313
+ footer,
314
+ header,
315
+ time,
316
+ span,
317
+ em,
318
+ i {
319
+ -webkit-transition: all 0.3s ease-in;
320
+ -o-transition: all 0.3s ease-in;
321
+ transition: all 0.3s ease-in;
322
+ }
323
+
324
+ .g-side-tab .hd,
325
+ .cf {
326
+ *zoom: 1;
327
+ }
328
+
329
+ .g-side-tab .hd:before,
330
+ .g-side-tab .hd:after,
331
+ .cf:before,
332
+ .cf:after {
333
+ content: '';
334
+ display: table;
335
+ }
336
+
337
+ .g-side-tab .hd:after,
338
+ .cf:after {
339
+ clear: both;
340
+ }
341
+
342
+ input[type='text'],
343
+ input[type='password'],
344
+ select,
345
+ textarea {
346
+ border: #333 1px solid;
347
+ outline: none;
348
+ }
349
+
350
+ input:hover[type='text'],
351
+ input:hover[type='password'],
352
+ select:hover,
353
+ textarea:hover,
354
+ input:focus[type='text'],
355
+ input:focus[type='password'],
356
+ select:focus,
357
+ textarea:focus {
358
+ border-color: #244292;
359
+ }
360
+
361
+ .left,
362
+ .right {
363
+ float: left;
364
+ }
365
+
366
+ .show {
367
+ display: block !important;
368
+ }
369
+
370
+ .content {
371
+ width: 1200px;
372
+ margin-left: auto;
373
+ margin-right: auto;
374
+ }
375
+
376
+ .btn {
377
+ height: 30px;
378
+ line-height: 30px;
379
+ padding: 0 10px;
380
+ border-radius: 5px;
381
+ border: #244292 1px solid;
382
+ text-align: center;
383
+ background-color: #244292;
384
+ color: #fff;
385
+ }
386
+
387
+ .btn:hover {
388
+ opacity: 0.8;
389
+ color: #fff;
390
+ }
391
+
392
+ .btn.btn-blue {
393
+ background-color: #00aaee;
394
+ border-color: #00aaee;
395
+ }
396
+
397
+ .btn.btn-gray {
398
+ background-color: #b9bcc7;
399
+ border-color: #b9bcc7;
400
+ }
401
+
402
+ .btn.btn-red {
403
+ background-color: #fc4444;
404
+ border-color: #fc4444;
405
+ }
406
+
407
+ .btn.btn-orange {
408
+ background-color: #ff7802;
409
+ border-color: #ff7802;
410
+ }
411
+
412
+ .btn.btn-white {
413
+ background-color: #fff;
414
+ border-color: #eee;
415
+ color: #333;
416
+ }
417
+
418
+ input[type='text'],
419
+ input[type='password'],
420
+ select {
421
+ width: 100%;
422
+ border: #eee 1px solid;
423
+ height: 30px;
424
+ border-radius: 5px;
425
+ padding: 0 5px;
426
+ }
427
+
428
+ input[type='text']:focus,
429
+ input[type='password']:focus,
430
+ select:focus {
431
+ border-color: #244292;
432
+ }
433
+
434
+ input[type='submit'] {
435
+ width: 100%;
436
+ outline: none;
437
+ }
438
+
439
+ input[type='submit']:hover {
440
+ opacity: 0.8;
441
+ }
442
+
443
+ textarea {
444
+ height: auto;
445
+ min-height: 120px;
446
+ border: #eee 1px solid;
447
+ border-radius: 5px;
448
+ padding: 5px;
449
+ }
450
+
451
+ .prv-nxt {
452
+ padding-top: 20px;
453
+ padding-bottom: 20px;
454
+ }
455
+
456
+ .prv-nxt .left {
457
+ float: left;
458
+ }
459
+
460
+ .prv-nxt .right {
461
+ float: right;
462
+ }
463
+
464
+ .prv-nxt a {
465
+ padding: 0 10px;
466
+ height: 27px;
467
+ border: #eee 1px solid;
468
+ text-align: center;
469
+ line-height: 27px;
470
+ font-size: 12px;
471
+ display: inline-block;
472
+ margin-right: 5px;
473
+ }
474
+
475
+ .prv-nxt a:hover,
476
+ .prv-nxt .active {
477
+ background-color: #244292;
478
+ color: #fff;
479
+ border-color: #244292;
480
+ }
481
+
482
+ .prv-nxt .right {
483
+ font-size: 12px;
484
+ }
485
+
486
+ .g-side-tab .hd {
487
+ border-top: #494b4a 2px solid;
488
+ padding: 15px 0 15px 0;
489
+ position: relative;
490
+ line-height: 20px;
491
+ font-size: 16px;
492
+ border-bottom: #dfdfdf 1px solid;
493
+ margin-bottom: 20px;
494
+ }
495
+
496
+ .g-side-tab .hd li {
497
+ width: 50%;
498
+ text-align: center;
499
+ float: left;
500
+ border-left: #ab120d 5px solid;
501
+ -webkit-box-sizing: border-box;
502
+ box-sizing: border-box;
503
+ }
504
+
505
+ .g-side-tab .hd li:first-child {
506
+ border: none;
507
+ }
508
+
509
+ .g-side-tab .bd > div {
510
+ display: none;
511
+ }
512
+
513
+ .g-side-tab .bd .tab-con1 {
514
+ display: block;
515
+ }
516
+
517
+ /* ----------------------------------------------------------------------main-------------------------------------------------------------------- */
518
+ html {
519
+ min-height: 100%;
520
+ }
521
+
522
+ html body {
523
+ min-height: 100%;
524
+ min-width: auto;
525
+ }
526
+
527
+ .signIn {
528
+ width: 100%;
529
+ min-height: 100%;
530
+ }
531
+
532
+ .signIn .box {
533
+ width: 100%;
534
+ /*min-height: 731px;*/
535
+ border-radius: 18px;
536
+ margin: 20px auto;
537
+ }
538
+
539
+ .signIn .left {
540
+ display: none;
541
+ float: left;
542
+ width: 100%;
543
+ /*height: 655px;*/
544
+ padding-left: 54px;
545
+ }
546
+
547
+ .signIn .left h3 {
548
+ margin-top: 59px;
549
+ font-size: 26px;
550
+ color: #ffffff;
551
+ font-weight: bold;
552
+ }
553
+
554
+ .signIn .left p {
555
+ /*margin-top: 0px;*/
556
+ font-size: 12px;
557
+ color: #e0e0e0;
558
+ text-transform: uppercase;
559
+ font-weight: bold;
560
+ }
561
+
562
+ .signIn .right {
563
+ width: 100%;
564
+ /*height: 655px;*/
565
+ background-color: #fff;
566
+ position: relative;
567
+ padding: 20px 30px;
568
+ border-radius: 0;
569
+ }
570
+
571
+ .signIn .right .logo {
572
+ width: 100%;
573
+ height: 74px;
574
+ font-size: 28px;
575
+ color: #333333;
576
+ font-weight: bold;
577
+ line-height: 37px;
578
+ }
579
+
580
+ .signIn .right .logo img {
581
+ /* width: 120px; */
582
+ height: 32px;
583
+ margin-top: 26px;
584
+ float: left;
585
+ }
586
+
587
+ .signIn .right .logo h2 {
588
+ font-size: 18px;
589
+ line-height: 18x;
590
+ margin-top: 70px;
591
+ }
592
+
593
+ .signIn .right .logo small {
594
+ font-size: 8px;
595
+ line-height: 8px;
596
+ font-weight: bold;
597
+ color: gray;
598
+ text-transform: uppercase;
599
+ }
600
+
601
+ .signIn .right .username,
602
+ .signIn .right .password {
603
+ width: 100%;
604
+ height: 52px;
605
+ border-radius: 4px;
606
+ border: 1px solid #e0e0e0;
607
+ color: #d5d5d5;
608
+ font-size: 16px;
609
+ padding-left: 67px;
610
+ -webkit-box-sizing: border-box;
611
+ box-sizing: border-box;
612
+ }
613
+
614
+ .signIn .right .username:hover,
615
+ .signIn .right .username:focus,
616
+ .signIn .right .password:hover,
617
+ .signIn .right .password:focus {
618
+ color: #244292;
619
+ border: 1px solid #244292;
620
+ }
621
+
622
+ .signIn .right .username::-webkit-input-placeholder,
623
+ .signIn .right .password::-webkit-input-placeholder {
624
+ color: #d5d5d5;
625
+ }
626
+
627
+ .signIn .right .username:-ms-input-placeholder,
628
+ .signIn .right .password:-ms-input-placeholder {
629
+ color: #d5d5d5;
630
+ }
631
+
632
+ .signIn .right .username::-ms-input-placeholder,
633
+ .signIn .right .password::-ms-input-placeholder {
634
+ color: #d5d5d5;
635
+ }
636
+
637
+ .signIn .right .username::placeholder,
638
+ .signIn .right .password::placeholder {
639
+ color: #d5d5d5;
640
+ }
641
+
642
+ .signIn .right .username {
643
+ margin-top: 49px;
644
+ background: url(../../../public/static/images/login/user-default.png) 32px 14px no-repeat;
645
+ }
646
+
647
+ .signIn .right .username:hover,
648
+ .signIn .right .username:focus {
649
+ background: url(../../../public/static/images/login/user-active.png) 32px 14px no-repeat;
650
+ }
651
+
652
+ .signIn .right .password {
653
+ margin-top: 24px;
654
+ background: url(../../../public/static/images/login/password-default.png) 32px 14px no-repeat;
655
+ }
656
+
657
+ .signIn .right .password:hover,
658
+ .signIn .right .password:focus {
659
+ background: url(../../../public/static/images/login/password-active.png) 32px 14px no-repeat;
660
+ }
661
+
662
+ .signIn .right .remenber {
663
+ margin-top: 26px;
664
+ height: 16px;
665
+ text-align: right;
666
+ }
667
+
668
+ .signIn .right .remenber #remenber {
669
+ width: 16px;
670
+ height: 16px;
671
+ vertical-align: middle;
672
+ -webkit-transform: translateY(-1px);
673
+ -ms-transform: translateY(-1px);
674
+ transform: translateY(-1px);
675
+ margin-right: 8px;
676
+ }
677
+
678
+ .signIn .right .remenber .remenber1 {
679
+ line-height: 16px;
680
+ font-size: 16px;
681
+ color: #6d6d6d;
682
+ }
683
+
684
+ .signIn .right button {
685
+ display: block;
686
+ width: 100%;
687
+ font-size: 22px;
688
+ text-align: center;
689
+ height: 59px;
690
+ line-height: 59px;
691
+ width: 100%;
692
+ border-radius: 6px;
693
+ border: none;
694
+ }
695
+
696
+ .signIn .right .sign-in {
697
+ margin-top: 82px;
698
+ color: #ffffff;
699
+ background-color: #244292;
700
+ -webkit-box-shadow: 0px 7px 30px 0px rgba(0, 104, 183, 0.35);
701
+ box-shadow: 0px 7px 30px 0px rgba(0, 104, 183, 0.35);
702
+ }
703
+
704
+ .signIn .right .exit {
705
+ margin-top: 22px;
706
+ color: #244292;
707
+ border: 1px solid #244292;
708
+ background-color: #fff;
709
+ }
710
+
711
+ .signIn .cpt {
712
+ font-size: 12px;
713
+ text-align: center;
714
+ color: #adadad;
715
+ position: relative;
716
+ top: 10px;
717
+ }
718
+
719
+ .signIn .cpt a {
720
+ color: #adadad;
721
+ }
722
+
723
+ .signIn .cpt a:hover {
724
+ color: #244292;
725
+ }
726
+
727
+ @media (min-width: 768px) {
728
+ body {
729
+ /*height: 100vh;*/
730
+ background: url(/public/static/images/login/bg.png) center center no-repeat;
731
+ background-size: cover;
732
+ }
733
+
734
+ .signIn {
735
+ width: 100%;
736
+ min-height: 100%;
737
+ background: url(/public/static/images/login/bg.png) center center no-repeat;
738
+ background-size: cover;
739
+ }
740
+
741
+ .signIn .box {
742
+ width: 924px;
743
+ min-height: 555px;
744
+ border-radius: 18px;
745
+ margin: 30px auto 15px auto;
746
+ box-shadow: darkgrey 0px 0px 15px 5px;
747
+ }
748
+
749
+ .signIn .left {
750
+ display: block;
751
+ float: left;
752
+ width: 474px;
753
+ height: 555px;
754
+ background: url(../../../public/static/images/login/signIn-img.png) center center no-repeat;
755
+ background-size: cover;
756
+ border-radius: 18px 0 0 18px;
757
+ padding-left: 54px;
758
+ }
759
+
760
+ .signIn .left h3 {
761
+ margin-top: 39px;
762
+ font-size: 26px;
763
+ }
764
+
765
+ .signIn .right {
766
+ float: left;
767
+ width: 450px;
768
+ height: 555px;
769
+ background-color: #fff;
770
+ border-radius: 0 18px 18px 0;
771
+ padding: 60px 63px 73px 35px;
772
+ position: relative;
773
+ }
774
+
775
+ .signIn .right .logo {
776
+ width: 381px;
777
+ }
778
+
779
+ .signIn .right .logo img {
780
+ /* width: 120px; */
781
+ height: 32px;
782
+ float: left;
783
+ margin-top: 16px;
784
+ }
785
+
786
+ .signIn .right .logo h2 {
787
+ font-size: 24px;
788
+ line-height: 24px;
789
+ margin-top: 72px;
790
+ }
791
+
792
+ .signIn .right .logo small {
793
+ font-size: 12px;
794
+ line-height: 12px;
795
+ color: gray;
796
+ text-transform: uppercase;
797
+ font-weight: bold;
798
+ }
799
+
800
+ .signIn .right .username,
801
+ .signIn .right .password {
802
+ width: 381px;
803
+ height: 52px;
804
+ border-radius: 4px;
805
+ border: 1px solid #e0e0e0;
806
+ color: #d5d5d5;
807
+ font-size: 16px;
808
+ padding-left: 67px;
809
+ }
810
+
811
+ .signIn .right .username:hover,
812
+ .signIn .right .username:focus,
813
+ .signIn .right .password:hover,
814
+ .signIn .right .password:focus {
815
+ color: #244292;
816
+ border: 1px solid #244292;
817
+ }
818
+
819
+ .signIn .right .username::-webkit-input-placeholder,
820
+ .signIn .right .password::-webkit-input-placeholder {
821
+ color: #d5d5d5;
822
+ }
823
+
824
+ .signIn .right .username:-ms-input-placeholder,
825
+ .signIn .right .password:-ms-input-placeholder {
826
+ color: #d5d5d5;
827
+ }
828
+
829
+ .signIn .right .username::-ms-input-placeholder,
830
+ .signIn .right .password::-ms-input-placeholder {
831
+ color: #d5d5d5;
832
+ }
833
+
834
+ .signIn .right .username::placeholder,
835
+ .signIn .right .password::placeholder {
836
+ color: #d5d5d5;
837
+ }
838
+
839
+ .signIn .right .username {
840
+ /* margin-top: 16px; */
841
+ background: url(../../../public/static/images/login/user-default.png) 32px 14px no-repeat;
842
+ }
843
+
844
+ .signIn .right .username:hover,
845
+ .signIn .right .username:focus {
846
+ background: url(../../../public/static/images/login/user-active.png) 32px 14px no-repeat;
847
+ }
848
+
849
+ .signIn .right .password {
850
+ margin-top: 24px;
851
+ background: url(../../../public/static/images/login/password-default.png) 32px 14px no-repeat;
852
+ }
853
+
854
+ .signIn .right .password:hover,
855
+ .signIn .right .password:focus {
856
+ background: url(../../../public/static/images/login/password-active.png) 32px 14px no-repeat;
857
+ }
858
+
859
+ .signIn .right .remenber {
860
+ margin-top: 26px;
861
+ height: 16px;
862
+ position: absolute;
863
+ right: 83px;
864
+ }
865
+
866
+ .signIn .right .remenber #remenber {
867
+ width: 16px;
868
+ height: 16px;
869
+ vertical-align: middle;
870
+ -webkit-transform: translateY(-1px);
871
+ -ms-transform: translateY(-1px);
872
+ transform: translateY(-1px);
873
+ margin-right: 8px;
874
+ }
875
+
876
+ .signIn .right .remenber .remenber1 {
877
+ line-height: 16px;
878
+ font-size: 16px;
879
+ color: #6d6d6d;
880
+ }
881
+
882
+ .signIn .right button {
883
+ display: block;
884
+ width: 100%;
885
+ font-size: 22px;
886
+ text-align: center;
887
+ height: 52px;
888
+ line-height: 52px;
889
+ width: 381px;
890
+ border-radius: 6px;
891
+ border: none;
892
+ }
893
+
894
+ .signIn .right .sign-in {
895
+ /*margin-top: 112px;*/
896
+ color: #ffffff;
897
+ background-color: #244292;
898
+ }
899
+
900
+ .signIn .right .exit {
901
+ margin-top: 22px;
902
+ color: #244292;
903
+ border: 1px solid #244292;
904
+ background-color: #fff;
905
+ }
906
+
907
+ .signIn .cpt {
908
+ top: 10px;
909
+ font-size: 13px;
910
+ }
911
+ }
912
+
913
+ @media (min-width: 1200px) {
914
+ body {
915
+ /*height: 100vh;*/
916
+ }
917
+
918
+ .signIn {
919
+ width: 100%;
920
+ min-height: 100%;
921
+ background: url(/public/static/images/login/bg.png) center center no-repeat;
922
+ background-size: cover;
923
+ }
924
+
925
+ .signIn .box {
926
+ width: 1200px;
927
+ min-height: 605px;
928
+ border-radius: 18px;
929
+ margin: 60px auto 20px auto;
930
+ }
931
+
932
+ .signIn .left {
933
+ display: block;
934
+ float: left;
935
+ width: 653px;
936
+ min-height: 605px;
937
+ background: url(../../../public/static/images/login/signIn-img.png) center center no-repeat;
938
+ background-size: cover;
939
+ padding-left: 54px;
940
+ }
941
+
942
+ .signIn .left h3 {
943
+ margin-top: 59px;
944
+ font-size: 26px;
945
+ }
946
+
947
+ .signIn .right {
948
+ float: left;
949
+ width: 546px;
950
+ min-height: 605px;
951
+ background-color: #fff;
952
+ border-radius: 0 18px 18px 0;
953
+ padding: 60px 83px 73px 81px;
954
+ position: relative;
955
+ }
956
+
957
+ .signIn .right .logo {
958
+ width: 381px;
959
+ }
960
+
961
+ .signIn .right .logo img {
962
+ /* width: 120px; */
963
+ height: 32px;
964
+ margin-top: 16px;
965
+ float: left;
966
+ }
967
+
968
+ .signIn .right .logo h2 {
969
+ font-size: 24px;
970
+ line-height: 24px;
971
+ margin-top: 72px;
972
+ }
973
+
974
+ .signIn .right .logo small {
975
+ font-size: 13px;
976
+ line-height: 13px;
977
+ color: gray;
978
+ text-transform: uppercase;
979
+ font-weight: bold;
980
+ }
981
+
982
+ .signIn .right .username,
983
+ .signIn .right .password {
984
+ width: 381px;
985
+ height: 52px;
986
+ border-radius: 4px;
987
+ border: 1px solid #e0e0e0;
988
+ color: #d5d5d5;
989
+ font-size: 16px;
990
+ padding-left: 67px;
991
+ }
992
+
993
+ .signIn .right .username:hover,
994
+ .signIn .right .username:focus,
995
+ .signIn .right .password:hover,
996
+ .signIn .right .password:focus {
997
+ color: #244292;
998
+ border: 1px solid #244292;
999
+ }
1000
+
1001
+ .signIn .right .username::-webkit-input-placeholder,
1002
+ .signIn .right .password::-webkit-input-placeholder {
1003
+ color: #d5d5d5;
1004
+ }
1005
+
1006
+ .signIn .right .username:-ms-input-placeholder,
1007
+ .signIn .right .password:-ms-input-placeholder {
1008
+ color: #d5d5d5;
1009
+ }
1010
+
1011
+ .signIn .right .username::-ms-input-placeholder,
1012
+ .signIn .right .password::-ms-input-placeholder {
1013
+ color: #d5d5d5;
1014
+ }
1015
+
1016
+ .signIn .right .username::placeholder,
1017
+ .signIn .right .password::placeholder {
1018
+ color: #d5d5d5;
1019
+ }
1020
+
1021
+ .signIn .right .username {
1022
+ margin-top: 49px;
1023
+ background: url(../../../public/static/images/login/user-default.png) 32px 14px no-repeat;
1024
+ }
1025
+
1026
+ .signIn .right .username:hover,
1027
+ .signIn .right .username:focus {
1028
+ background: url(../../../public/static/images/login/user-active.png) 32px 14px no-repeat;
1029
+ }
1030
+
1031
+ .signIn .right .password {
1032
+ margin-top: 24px;
1033
+ background: url(../../../public/static/images/login/password-default.png) 32px 14px no-repeat;
1034
+ }
1035
+
1036
+ .signIn .right .password:hover,
1037
+ .signIn .right .password:focus {
1038
+ background: url(../../../public/static/images/login/password-active.png) 32px 14px no-repeat;
1039
+ }
1040
+
1041
+ .signIn .right .remenber {
1042
+ margin-top: 26px;
1043
+ height: 16px;
1044
+ position: absolute;
1045
+ right: 83px;
1046
+ }
1047
+
1048
+ .signIn .right .remenber #remenber {
1049
+ width: 16px;
1050
+ height: 16px;
1051
+ vertical-align: middle;
1052
+ -webkit-transform: translateY(-1px);
1053
+ -ms-transform: translateY(-1px);
1054
+ transform: translateY(-1px);
1055
+ margin-right: 8px;
1056
+ }
1057
+
1058
+ .signIn .right .remenber .remenber1 {
1059
+ line-height: 16px;
1060
+ font-size: 16px;
1061
+ color: #6d6d6d;
1062
+ }
1063
+
1064
+ .signIn .right button {
1065
+ display: block;
1066
+ width: 100%;
1067
+ font-size: 22px;
1068
+ text-align: center;
1069
+ height: 52px;
1070
+ line-height: 52px;
1071
+ width: 381px;
1072
+ border-radius: 6px;
1073
+ border: none;
1074
+ }
1075
+
1076
+ .signIn .right .sign-in {
1077
+ color: #ffffff;
1078
+ background-color: #244292;
1079
+ }
1080
+
1081
+ .signIn .right .exit {
1082
+ margin-top: 22px;
1083
+ color: #244292;
1084
+ border: 1px solid #244292;
1085
+ background-color: #fff;
1086
+ }
1087
+
1088
+ .signIn .cpt {
1089
+ top: 10px;
1090
+ font-size: 14px;
1091
+ }
1092
+ }
1093
+
1094
+ @media (min-width: 1920px) {
1095
+ .signIn {
1096
+ min-height: 100%;
1097
+ }
1098
+
1099
+ .signIn .box {
1100
+ width: 1604px;
1101
+ margin: 40px auto 20px auto;
1102
+ min-height: 826px;
1103
+ }
1104
+
1105
+ .signIn .left {
1106
+ width: 874px;
1107
+ min-height: 826px;
1108
+ padding-left: 73px;
1109
+ }
1110
+
1111
+ .signIn .left h3 {
1112
+ margin-top: 59px;
1113
+ }
1114
+
1115
+ .signIn .left p {
1116
+ font-size: 13px;
1117
+ }
1118
+
1119
+ .signIn .right {
1120
+ width: 730px;
1121
+ min-height: 826px;
1122
+ padding: 81px 111px 98px 109px;
1123
+ }
1124
+
1125
+ .signIn .right .logo {
1126
+ width: 510px;
1127
+ }
1128
+
1129
+ .signIn .right .logo img {
1130
+ /* width: 180px; */
1131
+ height: 48px;
1132
+ margin-top: 22px;
1133
+ }
1134
+
1135
+ .signIn .right .logo h2 {
1136
+ font-size: 32px;
1137
+ line-height: 32px;
1138
+ margin-top: 96px;
1139
+ }
1140
+
1141
+ .signIn .right .logo small {
1142
+ font-size: 17px;
1143
+ line-height: 17px;
1144
+ color: gray;
1145
+ text-transform: uppercase;
1146
+ font-weight: bold;
1147
+ }
1148
+
1149
+ .signIn .right .username,
1150
+ .signIn .right .password {
1151
+ width: 510px;
1152
+ height: 70px;
1153
+ font-size: 22px;
1154
+ padding-left: 90px;
1155
+ }
1156
+
1157
+ .signIn .right .username {
1158
+ margin-top: 89px;
1159
+ background: url(../../../public/static/images/login/user-default.png) 44px 24px no-repeat;
1160
+ }
1161
+
1162
+ .signIn .right .username:hover,
1163
+ .signIn .right .username:focus {
1164
+ background: url(../../../public/static/images/login/user-active.png) 44px 24px no-repeat;
1165
+ }
1166
+
1167
+ .signIn .right .password {
1168
+ margin-top: 32px;
1169
+ background: url(../../../public/static/images/login/password-default.png) 44px 24px no-repeat;
1170
+ }
1171
+
1172
+ .signIn .right .password:hover,
1173
+ .signIn .right .password:focus {
1174
+ background: url(../../../public/static/images/login/password-active.png) 44px 24px no-repeat;
1175
+ }
1176
+
1177
+ .signIn .right .remenber {
1178
+ margin-top: 36px;
1179
+ height: 22px;
1180
+ right: 111px;
1181
+ }
1182
+
1183
+ .signIn .right .remenber #remenber {
1184
+ width: 22px;
1185
+ height: 22px;
1186
+ -webkit-transform: translateY(-3px);
1187
+ -ms-transform: translateY(-3px);
1188
+ transform: translateY(-3px);
1189
+ }
1190
+
1191
+ .signIn .right .remenber .remenber1 {
1192
+ line-height: 22px;
1193
+ font-size: 22px;
1194
+ }
1195
+
1196
+ .signIn .right button {
1197
+ font-size: 26px;
1198
+ height: 70px;
1199
+ line-height: 70px;
1200
+ width: 510px;
1201
+ }
1202
+
1203
+ .signIn .right .sign-in {
1204
+ margin-top: 92px;
1205
+ color: #ffffff;
1206
+ background-color: #244292;
1207
+ }
1208
+
1209
+ .signIn .right .exit {
1210
+ margin-top: 30px;
1211
+ }
1212
+
1213
+ .signIn .cpt {
1214
+ top: 10px;
1215
+ font-size: 14px;
1216
+ }
1217
+ }