mm_os 1.3.4 → 1.3.5

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 (368) hide show
  1. package/README.en.md +36 -0
  2. package/README.md +25 -166
  3. package/conf.json +3 -0
  4. package/core/base/index.js +29 -0
  5. package/core/base/mqtt/index.js +268 -0
  6. package/core/base/mqtt/lib.js +40 -0
  7. package/core/base/web/index.js +110 -0
  8. package/core/com/api/com.json +4 -0
  9. package/{bin → core}/com/api/config.tpl.json +9 -7
  10. package/{bin → core}/com/api/drive.js +239 -64
  11. package/{bin → core}/com/api/index.js +8 -9
  12. package/{bin → core}/com/api/oauth.js +23 -14
  13. package/core/com/api/script.js +32 -0
  14. package/core/com/db/com.json +4 -0
  15. package/{bin → core}/com/db/drive.js +99 -65
  16. package/{bin → core}/com/db/index.js +2 -2
  17. package/core/com/event/com.json +4 -0
  18. package/{bin → core}/com/event/config.tpl.json +2 -2
  19. package/core/com/event/drive.js +125 -0
  20. package/{bin → core}/com/event/index.js +5 -10
  21. package/core/com/event/script.js +26 -0
  22. package/core/com/eventer/com.js +450 -0
  23. package/core/com/eventer/com.json +4 -0
  24. package/core/com/middleware/com.js +128 -0
  25. package/core/com/middleware/com.json +4 -0
  26. package/core/com/middleware/config.tpl.json +8 -0
  27. package/core/com/middleware/script.js +9 -0
  28. package/core/com/mqtt/com.json +4 -0
  29. package/core/com/mqtt/config.tpl.json +12 -0
  30. package/core/com/mqtt/drive.js +139 -0
  31. package/core/com/mqtt/index.js +138 -0
  32. package/core/com/mqtt/script.js +33 -0
  33. package/core/com/msg/com.js +296 -0
  34. package/core/com/msg/com.json +4 -0
  35. package/{bin → core}/com/nav/drive.js +42 -17
  36. package/{bin → core}/com/nav/index.js +4 -4
  37. package/core/com/nav/tpl/admin_pc/page_channel.vue +299 -0
  38. package/core/com/nav/tpl/admin_pc/page_config.vue +279 -0
  39. package/core/com/nav/tpl/admin_pc/page_config_form.vue +194 -0
  40. package/core/com/nav/tpl/admin_pc/page_default.vue +287 -0
  41. package/core/com/nav/tpl/admin_pc/page_form.vue +180 -0
  42. package/core/com/nav/tpl/admin_pc/page_lang.vue +265 -0
  43. package/core/com/nav/tpl/admin_pc/page_nav.vue +313 -0
  44. package/core/com/nav/tpl/admin_pc/page_table.vue +285 -0
  45. package/core/com/nav/tpl/admin_pc/page_type.vue +313 -0
  46. package/core/com/nav/tpl/dev_pc/page_channel.vue +253 -0
  47. package/core/com/nav/tpl/dev_pc/page_config.vue +253 -0
  48. package/core/com/nav/tpl/dev_pc/page_default.vue +247 -0
  49. package/core/com/nav/tpl/dev_pc/page_form.vue +162 -0
  50. package/core/com/nav/tpl/dev_pc/page_nav.vue +253 -0
  51. package/core/com/nav/tpl/dev_pc/page_table.vue +247 -0
  52. package/core/com/nav/tpl/dev_pc/page_type.vue +253 -0
  53. package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_channel.vue +231 -231
  54. package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_default.vue +231 -231
  55. package/{bin → core}/com/nav/tpl/home_pc/page_form.vue +9 -9
  56. package/{bin → core}/com/nav/tpl/home_pc/page_list.vue +231 -231
  57. package/{bin → core}/com/nav/tpl/home_pc/page_nav.vue +221 -221
  58. package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_type.vue +231 -231
  59. package/{bin → core}/com/nav/tpl/home_pc/page_view.vue +8 -8
  60. package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_channel.vue +231 -231
  61. package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_default.vue +231 -231
  62. package/{bin → core}/com/nav/tpl/home_phone/page_form.vue +9 -9
  63. package/{bin → core}/com/nav/tpl/home_phone/page_list.vue +231 -231
  64. package/{bin/com/nav/tpl/admin_pc → core/com/nav/tpl/home_phone}/page_nav.vue +236 -220
  65. package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_type.vue +231 -231
  66. package/{bin → core}/com/nav/tpl/home_phone/page_view.vue +8 -8
  67. package/core/com/nav/viewmodel.js +296 -0
  68. package/{bin → core}/com/param/config.tpl.json +24 -0
  69. package/{bin → core}/com/param/drive.js +47 -15
  70. package/core/com/plugin/com.json +4 -0
  71. package/core/com/plugin/config.tpl.json +20 -0
  72. package/{bin → core}/com/plugin/drive.js +5 -8
  73. package/{bin → core}/com/plugin/index.js +11 -56
  74. package/core/com/socket/README.md +47 -0
  75. package/core/com/socket/com.json +4 -0
  76. package/core/com/socket/config.tpl.json +14 -0
  77. package/{bin → core}/com/socket/drive.js +74 -51
  78. package/{bin → core}/com/socket/index.js +4 -2
  79. package/{bin → core}/com/socket/script.js +8 -6
  80. package/core/com/sql/config.tpl.json +70 -0
  81. package/{bin → core}/com/sql/drive.js +281 -58
  82. package/core/com/static/com.json +4 -0
  83. package/core/com/static/config.tpl.json +20 -0
  84. package/{bin → core}/com/static/drive.js +6 -4
  85. package/{bin → core}/com/static/index.js +5 -1
  86. package/core/com/task/com.json +4 -0
  87. package/core/com/task/config.tpl.json +24 -0
  88. package/core/com/task/drive.js +374 -0
  89. package/{bin → core}/com/task/index.js +14 -20
  90. package/core/com/task/script.js +37 -0
  91. package/core/com/timer/com.js +217 -0
  92. package/core/com/timer/com.json +4 -0
  93. package/core/com/tpl/com.js +19 -0
  94. package/core/com/tpl/com.json +4 -0
  95. package/index.js +161 -740
  96. package/lib/actions.js +50 -0
  97. package/lib/app.js +73 -0
  98. package/lib/base.js +355 -0
  99. package/lib/com.js +31 -0
  100. package/lib/game.js +31 -0
  101. package/lib/ref.js +121 -0
  102. package/middleware/cors/index.js +57 -0
  103. package/middleware/cors/middleware.json +7 -0
  104. package/middleware/mqtt_base/index.js +10 -0
  105. package/middleware/mqtt_base/middleware.json +8 -0
  106. package/{waf.js → middleware/waf/index.js} +12 -2
  107. package/middleware/waf/middleware.json +9 -0
  108. package/middleware/web_base/index.js +67 -0
  109. package/middleware/web_base/middleware.json +9 -0
  110. package/middleware/web_event/index.js +411 -0
  111. package/middleware/web_event/middleware.json +10 -0
  112. package/middleware/web_proxy/index.js +24 -0
  113. package/middleware/web_proxy/middleware.json +9 -0
  114. package/middleware/web_router/index.js +33 -0
  115. package/middleware/web_router/middleware.json +10 -0
  116. package/middleware/web_socket/index.js +21 -0
  117. package/middleware/web_socket/middleware.json +9 -0
  118. package/middleware/web_static/index.js +26 -0
  119. package/middleware/web_static/middleware.json +9 -0
  120. package/nodemon.json +12 -2
  121. package/package.json +56 -66
  122. package/.gitattributes +0 -5
  123. package/bin/com/README.md +0 -2
  124. package/bin/com/api/script.js +0 -14
  125. package/bin/com/cmd/README.md +0 -3
  126. package/bin/com/cmd/config.tpl.json +0 -41
  127. package/bin/com/cmd/drive.js +0 -512
  128. package/bin/com/cmd/index.js +0 -213
  129. package/bin/com/cmd/old/5w2h.js +0 -54
  130. package/bin/com/cmd/old/drive.js +0 -423
  131. package/bin/com/cmd/script.js +0 -11
  132. package/bin/com/event/drive.js +0 -69
  133. package/bin/com/event/script.js +0 -12
  134. package/bin/com/nav/tpl/admin_pc/page_channel.vue +0 -234
  135. package/bin/com/nav/tpl/admin_pc/page_default.vue +0 -236
  136. package/bin/com/nav/tpl/admin_pc/page_form.vue +0 -152
  137. package/bin/com/nav/tpl/admin_pc/page_table.vue +0 -236
  138. package/bin/com/nav/tpl/admin_pc/page_type.vue +0 -234
  139. package/bin/com/nav/tpl/home_phone/page_nav.vue +0 -221
  140. package/bin/com/nav/viewmodel.js +0 -161
  141. package/bin/com/plugin/config.tpl.json +0 -11
  142. package/bin/com/socket/config.tpl.json +0 -8
  143. package/bin/com/sql/config.tpl.json +0 -34
  144. package/bin/com/static/config.tpl.json +0 -11
  145. package/bin/com/task/config.tpl.json +0 -13
  146. package/bin/com/task/drive.js +0 -288
  147. package/bin/com/task/script.js +0 -38
  148. package/bin/com.js +0 -74
  149. package/bin/mm.conf +0 -48
  150. package/bin/static/404.html +0 -52
  151. package/bin/static/README.md +0 -1
  152. package/bin/static/css/font-awesome.min.css +0 -7
  153. package/bin/static/css/mm_base.css +0 -220
  154. package/bin/static/css/mm_common.css +0 -518
  155. package/bin/static/css/mm_component.css +0 -307
  156. package/bin/static/css/mm_expand.css +0 -634
  157. package/bin/static/css/mm_theme.css +0 -291
  158. package/bin/static/css/new_file.css +0 -79
  159. package/bin/static/css/swiper.min.css +0 -12
  160. package/bin/static/favicon.ico +0 -0
  161. package/bin/static/font/FontAwesome.otf +0 -0
  162. package/bin/static/font/HelveticaNeue.eot +0 -0
  163. package/bin/static/font/HelveticaNeue.otf +0 -0
  164. package/bin/static/font/HelveticaNeue.svg +0 -1273
  165. package/bin/static/font/HelveticaNeue.woff +0 -0
  166. package/bin/static/font/HelveticaNeue.woff2 +0 -0
  167. package/bin/static/font/fontawesome-webfont.eot +0 -0
  168. package/bin/static/font/fontawesome-webfont.svg +0 -2671
  169. package/bin/static/font/fontawesome-webfont.ttf +0 -0
  170. package/bin/static/font/fontawesome-webfont.woff +0 -0
  171. package/bin/static/font/fontawesome-webfont.woff2 +0 -0
  172. package/bin/static/h5.html +0 -325
  173. package/bin/static/highlight/highlight.pack.js +0 -2
  174. package/bin/static/highlight/styles/a11y-dark.css +0 -99
  175. package/bin/static/highlight/styles/a11y-light.css +0 -99
  176. package/bin/static/highlight/styles/agate.css +0 -108
  177. package/bin/static/highlight/styles/an-old-hope.css +0 -89
  178. package/bin/static/highlight/styles/androidstudio.css +0 -66
  179. package/bin/static/highlight/styles/arduino-light.css +0 -88
  180. package/bin/static/highlight/styles/arta.css +0 -73
  181. package/bin/static/highlight/styles/ascetic.css +0 -45
  182. package/bin/static/highlight/styles/atelier-cave-dark.css +0 -83
  183. package/bin/static/highlight/styles/atelier-cave-light.css +0 -85
  184. package/bin/static/highlight/styles/atelier-dune-dark.css +0 -69
  185. package/bin/static/highlight/styles/atelier-dune-light.css +0 -69
  186. package/bin/static/highlight/styles/atelier-estuary-dark.css +0 -84
  187. package/bin/static/highlight/styles/atelier-estuary-light.css +0 -84
  188. package/bin/static/highlight/styles/atelier-forest-dark.css +0 -69
  189. package/bin/static/highlight/styles/atelier-forest-light.css +0 -69
  190. package/bin/static/highlight/styles/atelier-heath-dark.css +0 -69
  191. package/bin/static/highlight/styles/atelier-heath-light.css +0 -69
  192. package/bin/static/highlight/styles/atelier-lakeside-dark.css +0 -69
  193. package/bin/static/highlight/styles/atelier-lakeside-light.css +0 -69
  194. package/bin/static/highlight/styles/atelier-plateau-dark.css +0 -84
  195. package/bin/static/highlight/styles/atelier-plateau-light.css +0 -84
  196. package/bin/static/highlight/styles/atelier-savanna-dark.css +0 -84
  197. package/bin/static/highlight/styles/atelier-savanna-light.css +0 -84
  198. package/bin/static/highlight/styles/atelier-seaside-dark.css +0 -69
  199. package/bin/static/highlight/styles/atelier-seaside-light.css +0 -69
  200. package/bin/static/highlight/styles/atelier-sulphurpool-dark.css +0 -69
  201. package/bin/static/highlight/styles/atelier-sulphurpool-light.css +0 -69
  202. package/bin/static/highlight/styles/atom-one-dark-reasonable.css +0 -77
  203. package/bin/static/highlight/styles/atom-one-dark.css +0 -96
  204. package/bin/static/highlight/styles/atom-one-light.css +0 -96
  205. package/bin/static/highlight/styles/brown-paper.css +0 -64
  206. package/bin/static/highlight/styles/brown-papersq.png +0 -0
  207. package/bin/static/highlight/styles/codepen-embed.css +0 -60
  208. package/bin/static/highlight/styles/color-brewer.css +0 -71
  209. package/bin/static/highlight/styles/darcula.css +0 -77
  210. package/bin/static/highlight/styles/dark.css +0 -63
  211. package/bin/static/highlight/styles/darkula.css +0 -6
  212. package/bin/static/highlight/styles/default.css +0 -99
  213. package/bin/static/highlight/styles/docco.css +0 -97
  214. package/bin/static/highlight/styles/dracula.css +0 -76
  215. package/bin/static/highlight/styles/far.css +0 -71
  216. package/bin/static/highlight/styles/foundation.css +0 -88
  217. package/bin/static/highlight/styles/github-gist.css +0 -79
  218. package/bin/static/highlight/styles/github.css +0 -99
  219. package/bin/static/highlight/styles/gml.css +0 -78
  220. package/bin/static/highlight/styles/googlecode.css +0 -89
  221. package/bin/static/highlight/styles/grayscale.css +0 -101
  222. package/bin/static/highlight/styles/gruvbox-dark.css +0 -108
  223. package/bin/static/highlight/styles/gruvbox-light.css +0 -108
  224. package/bin/static/highlight/styles/hopscotch.css +0 -83
  225. package/bin/static/highlight/styles/hybrid.css +0 -102
  226. package/bin/static/highlight/styles/idea.css +0 -97
  227. package/bin/static/highlight/styles/ir-black.css +0 -73
  228. package/bin/static/highlight/styles/isbl-editor-dark.css +0 -112
  229. package/bin/static/highlight/styles/isbl-editor-light.css +0 -112
  230. package/bin/static/highlight/styles/kimbie.dark.css +0 -74
  231. package/bin/static/highlight/styles/kimbie.light.css +0 -74
  232. package/bin/static/highlight/styles/lightfair.css +0 -87
  233. package/bin/static/highlight/styles/magula.css +0 -70
  234. package/bin/static/highlight/styles/mono-blue.css +0 -59
  235. package/bin/static/highlight/styles/monokai-sublime.css +0 -83
  236. package/bin/static/highlight/styles/monokai.css +0 -70
  237. package/bin/static/highlight/styles/nord.css +0 -309
  238. package/bin/static/highlight/styles/obsidian.css +0 -88
  239. package/bin/static/highlight/styles/ocean.css +0 -74
  240. package/bin/static/highlight/styles/paraiso-dark.css +0 -72
  241. package/bin/static/highlight/styles/paraiso-light.css +0 -72
  242. package/bin/static/highlight/styles/pojoaque.css +0 -83
  243. package/bin/static/highlight/styles/pojoaque.jpg +0 -0
  244. package/bin/static/highlight/styles/purebasic.css +0 -96
  245. package/bin/static/highlight/styles/qtcreator_dark.css +0 -83
  246. package/bin/static/highlight/styles/qtcreator_light.css +0 -83
  247. package/bin/static/highlight/styles/railscasts.css +0 -106
  248. package/bin/static/highlight/styles/rainbow.css +0 -85
  249. package/bin/static/highlight/styles/routeros.css +0 -108
  250. package/bin/static/highlight/styles/school-book.css +0 -69
  251. package/bin/static/highlight/styles/school-book.png +0 -0
  252. package/bin/static/highlight/styles/shades-of-purple.css +0 -97
  253. package/bin/static/highlight/styles/solarized-dark.css +0 -84
  254. package/bin/static/highlight/styles/solarized-light.css +0 -84
  255. package/bin/static/highlight/styles/sunburst.css +0 -102
  256. package/bin/static/highlight/styles/tomorrow-night-blue.css +0 -75
  257. package/bin/static/highlight/styles/tomorrow-night-bright.css +0 -74
  258. package/bin/static/highlight/styles/tomorrow-night-eighties.css +0 -74
  259. package/bin/static/highlight/styles/tomorrow-night.css +0 -75
  260. package/bin/static/highlight/styles/tomorrow.css +0 -72
  261. package/bin/static/highlight/styles/vs.css +0 -68
  262. package/bin/static/highlight/styles/vs2015.css +0 -115
  263. package/bin/static/highlight/styles/xcode.css +0 -104
  264. package/bin/static/highlight/styles/xt256.css +0 -92
  265. package/bin/static/highlight/styles/zenburn.css +0 -80
  266. package/bin/static/highlight/vue-highlight.js +0 -29
  267. package/bin/static/ifame.html +0 -24
  268. package/bin/static/img/add.png +0 -0
  269. package/bin/static/img/avatar.png +0 -0
  270. package/bin/static/img/banner_2.png +0 -0
  271. package/bin/static/img/default.png +0 -0
  272. package/bin/static/img/loading.svg +0 -1
  273. package/bin/static/img/logo.png +0 -0
  274. package/bin/static/img/logo1.png +0 -0
  275. package/bin/static/img/logo_gray.png +0 -0
  276. package/bin/static/img/logo_round.png +0 -0
  277. package/bin/static/img/mm.ico +0 -0
  278. package/bin/static/img/mm.jpg +0 -0
  279. package/bin/static/img/select.png +0 -0
  280. package/bin/static/img/web.png +0 -0
  281. package/bin/static/index.html +0 -12
  282. package/bin/static/js/clipboard.min.js +0 -257
  283. package/bin/static/js/css.min.js +0 -1
  284. package/bin/static/js/echarts.js +0 -22
  285. package/bin/static/js/html5.min.js +0 -1
  286. package/bin/static/js/jquery.lazyload.min.js +0 -2
  287. package/bin/static/js/jquery.min.js +0 -4189
  288. package/bin/static/js/jquery.scrollstop.min.js +0 -2
  289. package/bin/static/js/mm-requirejs-vue.js +0 -283
  290. package/bin/static/js/mm_check.js +0 -490
  291. package/bin/static/js/mm_flexble.js +0 -112
  292. package/bin/static/js/mm_picker.js +0 -1417
  293. package/bin/static/js/mm_pinyinlite.js +0 -873
  294. package/bin/static/js/mm_sdk.js +0 -2841
  295. package/bin/static/js/mm_ui_expand.js +0 -468
  296. package/bin/static/js/mm_vue.js +0 -376
  297. package/bin/static/js/mm_vue_ui.js +0 -2375
  298. package/bin/static/js/mm_websocket.js +0 -145
  299. package/bin/static/js/require.js +0 -5
  300. package/bin/static/js/sortable.min.js +0 -3
  301. package/bin/static/js/swiper.min.js +0 -13
  302. package/bin/static/js/text.min.js +0 -1
  303. package/bin/static/js/vue-router.min.js +0 -6
  304. package/bin/static/js/vue.js +0 -12338
  305. package/bin/static/js/vuedraggable.min.js +0 -2
  306. package/bin/static/js/vuex.min.js +0 -6
  307. package/bin/static/src/components/bar/mm_action.vue +0 -19
  308. package/bin/static/src/components/bar/mm_buy.vue +0 -19
  309. package/bin/static/src/components/bar/mm_chat.vue +0 -18
  310. package/bin/static/src/components/bar/mm_count.vue +0 -18
  311. package/bin/static/src/components/bar/mm_filter.vue +0 -18
  312. package/bin/static/src/components/bar/mm_search.vue +0 -18
  313. package/bin/static/src/components/bar/mm_sort.vue +0 -18
  314. package/bin/static/src/components/bar/mm_tag.vue +0 -18
  315. package/bin/static/src/components/bar/mm_title.vue +0 -19
  316. package/bin/static/src/components/content/mm_pre.vue +0 -70
  317. package/bin/static/src/components/expand/mm_drag.vue +0 -39
  318. package/bin/static/src/components/item/mm_article.vue +0 -115
  319. package/bin/static/src/components/item/mm_base.vue +0 -26
  320. package/bin/static/src/components/item/mm_contact.vue +0 -25
  321. package/bin/static/src/components/item/mm_goods.vue +0 -23
  322. package/bin/static/src/components/item/mm_img.vue +0 -21
  323. package/bin/static/src/components/item/mm_media.vue +0 -18
  324. package/bin/static/src/components/item/mm_message.vue +0 -18
  325. package/bin/static/src/components/item/mm_music.vue +0 -95
  326. package/bin/static/src/components/item/mm_news.vue +0 -22
  327. package/bin/static/src/components/item/mm_number.vue +0 -26
  328. package/bin/static/src/components/item/mm_question.vue +0 -35
  329. package/bin/static/src/components/item/mm_user.vue +0 -22
  330. package/bin/static/src/components/item/mm_video.vue +0 -95
  331. package/bin/static/src/components/slide/mm_slide_card.vue +0 -64
  332. package/bin/static/src/components/slide/mm_slide_img.vue +0 -47
  333. package/bin/static/src/components/slide/mm_slide_page.vue +0 -8
  334. package/bin/static/src/components/slide/mm_slide_text.vue +0 -54
  335. package/bin/static/src/main.js +0 -84
  336. package/bin/static/src/mixins/form.js +0 -223
  337. package/bin/static/src/mixins/item.js +0 -242
  338. package/bin/static/src/mixins/list.js +0 -244
  339. package/bin/static/src/mixins/page.js +0 -1011
  340. package/bin/static/src/mm_component.js +0 -74
  341. package/bin/static/src/router.js +0 -72
  342. package/bin/static/src/store/user.js +0 -75
  343. package/bin/static/src/store/web.js +0 -50
  344. package/bin/static/user/1/number_info.xlsx +0 -0
  345. package/bin/static/w3c.html +0 -94
  346. package/init.js +0 -55
  347. package/update.md +0 -1
  348. /package/{bin → core}/com/api/README.md +0 -0
  349. /package/{bin → core}/com/api/rpc.js +0 -0
  350. /package/{bin → core}/com/db/README.md +0 -0
  351. /package/{bin → core}/com/event/README.md +0 -0
  352. /package/{bin/com/socket → core/com/mqtt}/README.md +0 -0
  353. /package/{bin → core}/com/nav/README.md +0 -0
  354. /package/{bin → core}/com/nav/config.tpl.json +0 -0
  355. /package/{bin → core}/com/param/README.md +0 -0
  356. /package/{bin → core}/com/param/index.js +0 -0
  357. /package/{bin → core}/com/param/script.js +0 -0
  358. /package/{bin → core}/com/param/test.js +0 -0
  359. /package/{bin → core}/com/plugin/README.md +0 -0
  360. /package/{bin → core}/com/plugin/script.js +0 -0
  361. /package/{bin → core}/com/sql/README.md +0 -0
  362. /package/{bin → core}/com/sql/index.js +0 -0
  363. /package/{bin → core}/com/sql/script.js +0 -0
  364. /package/{bin → core}/com/static/README.md +0 -0
  365. /package/{bin → core}/com/static/script.js +0 -0
  366. /package/{bin → core}/com/task/README.md +0 -0
  367. /package/{bin/rps.bat → rps.bat} +0 -0
  368. /package/{bin/tps.bat → tps.bat} +0 -0
@@ -1,518 +0,0 @@
1
- :root {
2
- /* === 尺寸 === */
3
- /* 常用大小 */
4
- --size_mini: 0.75rem;
5
- --size_small: 0.875rem;
6
- --size_base: 1rem;
7
- --size_big: 1.25rem;
8
- --size_larger: 1.5rem;
9
- --size_huge: 1.75rem;
10
-
11
- /* 场景大小 */
12
- --size_title: 1.25rem;
13
- --size_subtitle: 1rem;
14
- --size_describe: 1rem;
15
- --size_paragraph: 1rem;
16
- --size_tip: 0.75rem;
17
-
18
- /* 图片尺寸 */
19
- --img_size_mini: 1.25rem;
20
- --img_size_small: 1.5rem;
21
- --img_size_base: 2rem;
22
- --img_size_big: 3rem;
23
- --img_size_larger: 4rem;
24
- --img_size_huge: 6rem;
25
-
26
- /* 圆角 */
27
- --radius_small: 0.25rem;
28
- --radius_base: 0.5rem;
29
- --radius_big: 1rem;
30
- --radius_circle: 50%;
31
-
32
- /* 高度 */
33
- --height_small: 1.5rem;
34
- --height_base: 2rem;
35
- --height_big: 2.5rem;
36
-
37
- /* === 间隔 === */
38
- /* 水平间距 */
39
- --row_mini: 0.25rem;
40
- --row_small: 0.5rem;
41
- --row_base: 1rem;
42
- --row_big: 1.25rem;
43
- --row_larger: 1.5rem;
44
-
45
- /* 垂直间距 */
46
- --col_mini: 0.25rem;
47
- --col_small: 0.5rem;
48
- --col_base: 1rem;
49
- --col_big: 1.25rem;
50
- --col_larger: 1.5rem;
51
-
52
- /* 填充 */
53
- --padding_mini: 0.25rem;
54
- --padding_small: 0.5rem;
55
- --padding_base: 1rem;
56
- --padding_big: 1.25rem;
57
- --padding_larger: 1.5rem;
58
- --padding_huge: 2rem;
59
-
60
- /* 边距 */
61
- --margin_mini: 0.25rem;
62
- --margin_small: 0.5rem;
63
- --margin_base: 1rem;
64
- --margin_big: 1.25rem;
65
- --margin_larger: 1.5rem;
66
- --margin_huge: 2rem;
67
- }
68
-
69
- /* === 对齐 === */
70
- .fr {float:right !important;}
71
- .fl {float:left !important;}
72
- .fc {display:block !important;margin-left:auto !important;margin-right:auto !important;}
73
- .fn {float:none !important;clear:both;}
74
- .cl {clear:left !important;}
75
- .cr {clear:right !important;}
76
- .cc {clear:both !important;}
77
- .cn {clear:none !important;}
78
-
79
- /* === 文本对齐 === */
80
- .center {text-align:center !important;}
81
- .left {text-align:left !important;}
82
- .right {text-align:right !important;}
83
-
84
- /* === 填充 === */
85
- /* 基础 */
86
- .pa {padding:1rem !important;}
87
- .pb {padding-bottom:1rem !important;}
88
- .pl {padding-left:1rem !important;}
89
- .plr {padding-left:1rem;padding-right:1rem !important;}
90
- .pr {padding-right:1rem !important;}
91
- .pt {padding-top:1rem !important;}
92
- .ptb {padding-top:1rem;padding-bottom:1rem !important;}
93
- .pn {padding:0 !important;}
94
- .pn-t {padding-top:0 !important;}
95
- .pn-b {padding-bottom:0 !important;}
96
- .pn-l {padding-left:0 !important;}
97
- .pn-r {padding-right:0 !important;}
98
- .pn-tb {padding-top:0 !important;padding-bottom:0 !important;}
99
- .pn-lr {padding-left:0 !important;padding-right:0 !important;}
100
-
101
- /* 拓展 */
102
- .pa-0 {padding:0 !important;}
103
- .pt-0 {padding-top:0 !important;}
104
- .pr-0 {padding-right:0 !important;}
105
- .pl-0 {padding-left:0 !important;}
106
- .pb-0 {padding-bottom:0 !important;}
107
-
108
- .pa-1 {padding:0.25rem !important;}
109
- .pt-1 {padding-top:0.25rem !important;}
110
- .pr-1 {padding-right:0.25rem !important;}
111
- .pl-1 {padding-left:0.25rem !important;}
112
- .pb-1 {padding-bottom:0.25rem !important;}
113
-
114
- .pa-2 {padding:0.5rem !important;}
115
- .pt-2 {padding-top:0.5rem !important;}
116
- .pr-2 {padding-right:0.5rem !important;}
117
- .pl-2 {padding-left:0.5rem !important;}
118
- .pb-2 {padding-bottom:0.5rem !important;}
119
-
120
- .pa-3 {padding:1rem !important;}
121
- .pt-3 {padding-top:1rem !important;}
122
- .pr-3 {padding-right:1rem !important;}
123
- .pl-3 {padding-left:1rem !important;}
124
- .pb-3 {padding-bottom:1rem !important;}
125
-
126
- .pa-4 {padding:1.5rem !important;}
127
- .pt-4 {padding-top:1.5rem !important;}
128
- .pr-4 {padding-right:1.5rem !important;}
129
- .pl-4 {padding-left:1.5rem !important;}
130
- .pb-4 {padding-bottom:1.5rem !important;}
131
-
132
- .pa-5 {padding:2rem !important;}
133
- .pt-5 {padding-top:2rem !important;}
134
- .pr-5 {padding-right:2rem !important;}
135
- .pl-5 {padding-left:2rem !important;}
136
- .pb-5 {padding-bottom:2rem !important;}
137
-
138
- .ptb-1 {padding-top:0.25rem !important;padding-bottom:0.25rem !important;}
139
- .ptb-2 {padding-top:0.5rem !important;padding-bottom:0.5rem !important;}
140
- .ptb-3 {padding-top:1rem !important;padding-bottom:1rem !important;}
141
- .ptb-4 {padding-top:1.5rem !important;padding-bottom:1.5rem !important;}
142
- .ptb-5 {padding-top:2rem !important;padding-bottom:2rem !important;}
143
-
144
- .plr-1 {padding-left:0.25rem !important;padding-right:0.25rem !important;}
145
- .plr-2 {padding-left:0.5rem !important;padding-right:0.5rem !important;}
146
- .plr-3 {padding-left:1rem !important;padding-right:1rem !important;}
147
- .plr-4 {padding-left:1.5rem !important;padding-right:1.5rem !important;}
148
- .plr-5 {padding-left:2rem !important;padding-right:2rem !important;}
149
-
150
-
151
- /* === 间距 === */
152
- .ma {margin:1rem !important;}
153
- .mb {margin-bottom:1rem !important;}
154
- .mc {margin-left:auto !important;margin-right:auto !important;display:block;}
155
- .ml {margin-left:1rem !important;}
156
- .mlr {margin-left:1rem;margin-right:1rem !important;}
157
- .mr {margin-right:1rem !important;}
158
- .mt {margin-top:1rem !important;}
159
- .mtb {margin-top:1rem;margin-bottom:1rem !important;}
160
- .mn {margin:0 !important;}
161
- .mn-t {margin-top:0 !important;}
162
- .mn-r {margin-right:0 !important;}
163
- .mn-b {margin-bottom:0 !important;}
164
- .mn-l {margin-left:0 !important;}
165
- .mx {position:absolute;left:50%;transform:translateX(-50%);}
166
- .my {position:absolute;transform:translateY(-50%);}
167
- .mxy {position:absolute;transform:translate(-50%,-50%);}
168
-
169
- /* 拓展 */
170
- .ma-0 {margin:0 !important;}
171
- .mt-0 {margin-top:0 !important;}
172
- .mr-0 {margin-right:0 !important;}
173
- .ml-0 {margin-left:0 !important;}
174
- .mb-0 {margin-bottom:0 !important;}
175
-
176
- .ma-1 {margin:0.25rem !important;}
177
- .mt-1 {margin-top:0.25rem !important;}
178
- .mr-1 {margin-right:0.25rem !important;}
179
- .ml-1 {margin-left:0.25rem !important;}
180
- .mb-1 {margin-bottom:0.25rem !important;}
181
-
182
- .ma-2 {margin:0.5rem !important;}
183
- .mt-2 {margin-top:0.5rem !important;}
184
- .mr-2 {margin-right:0.5rem !important;}
185
- .ml-2 {margin-left:0.5rem !important;}
186
- .mb-2 {margin-bottom:0.5rem !important;}
187
-
188
- .ma-3 {margin:1rem !important;}
189
- .mt-3 {margin-top:1rem !important;}
190
- .mr-3 {margin-right:1rem !important;}
191
- .ml-3 {margin-left:1rem !important;}
192
- .mb-3 {margin-bottom:1rem !important;}
193
-
194
- .ma-4 {margin:1.5rem !important;}
195
- .mt-4 {margin-top:1.5rem !important;}
196
- .mr-4 {margin-right:1.5rem !important;}
197
- .ml-4 {margin-left:1.5rem !important;}
198
- .mb-4 {margin-bottom:1.5rem !important;}
199
-
200
- .ma-5 {margin:2rem !important;}
201
- .mt-5 {margin-top:2rem !important;}
202
- .mr-5 {margin-right:2rem !important;}
203
- .ml-5 {margin-left:2rem !important;}
204
- .mb-5 {margin-bottom:2rem !important;}
205
-
206
- .mtb-1 {margin-top:0.25rem !important;margin-bottom:0.25rem !important;}
207
- .mtb-2 {margin-top:0.5rem !important;margin-bottom:0.5rem !important;}
208
- .mtb-3 {margin-top:1rem !important;margin-bottom:1rem !important;}
209
- .mtb-4 {margin-top:1.5rem !important;margin-bottom:1.5rem !important;}
210
- .mtb-5 {margin-top:2rem !important;margin-bottom:2rem !important;}
211
-
212
- .mlr-1 {margin-left:0.25rem !important;margin-right:0.25rem !important;}
213
- .mlr-2 {margin-left:0.5rem !important;margin-right:0.5rem !important;}
214
- .mlr-3 {margin-left:1rem !important;margin-right:1rem !important;}
215
- .mlr-4 {margin-left:1.5rem !important;margin-right:1.5rem !important;}
216
- .mlr-5 {margin-left:2rem !important;margin-right:2rem !important;}
217
-
218
-
219
- /* === 边框 === */
220
- .ba {border:1px solid #e5e5e5 !important;}
221
- .bb {border-bottom:1px solid #e5e5e5 !important;}
222
- .bl {border-left:1px solid #e5e5e5 !important;}
223
- .blr {border-left:1px solid #e5e5e5 !important;border-right:1px solid #e5e5e5 !important;}
224
- .bn {border:none !important;}
225
- .br {border-right:1px solid #e5e5e5 !important;}
226
- .bt {border-top:1px solid #e5e5e5 !important;}
227
- .btb {border-top:1px solid #e5e5e5 !important;border-bottom:1px solid #e5e5e5 !important;}
228
-
229
- /* === 圆角 === */
230
- .b-a {border-radius:0.25rem !important;overflow:hidden;}
231
- .b-b {border-bottom-right-radius:0.25rem !important;border-bottom-left-radius:0.25rem !important;overflow:hidden;}
232
- .b-c {border-radius:50% !important;overflow:hidden;}
233
- .b-l {border-bottom-left-radius:0.25rem !important;border-top-left-radius:0.25rem !important;overflow:hidden;}
234
- .b-n {border-radius:0 !important;overflow:hidden;}
235
- .b-r {border-bottom-right-radius:0.25rem !important;border-top-right-radius:0.25rem !important;overflow:hidden;}
236
- .b-t {border-top-left-radius:0.25rem !important;border-top-right-radius:0.25rem !important;overflow:hidden;}
237
- .b-lb {border-bottom-left-radius:0.25rem !important;overflow:hidden;}
238
- .b-lt {border-top-left-radius:0.25rem !important;overflow:hidden;}
239
- .b-rb {border-bottom-right-radius:0.25rem !important;overflow:hidden;}
240
- .b-rt {border-top-right-radius:0.25rem !important;overflow:hidden;}
241
-
242
-
243
- /* === 模块 === */
244
- .head {display:block;}
245
- .head::before {content:"";display:block;clear:both;}
246
- .head::after {content:"";display:block;clear:both;}
247
- .body {display:block;clear:both;}
248
- .body::before {content:"";display:block;clear:both;}
249
- .body::after {content:"";display:block;clear:both;}
250
- .foot {display:block;clear:both;}
251
- .foot::before {content:"";display:block;clear:both;}
252
- .foot::after {content:"";display:block;clear:both;}
253
- .aside {display:block;float:left;}
254
- .main {display:block;}
255
-
256
- /* === 格子 === */
257
- .mm_col,[class*=mm_col_] {display:block;float:left;max-width: 100%;}
258
- .mm_col_10 {width:10% !important;flex-basis:10% !important;}
259
- .mm_col_20 {width:20% !important;flex-basis:20% !important;}
260
- .mm_col_25 {width:25% !important;flex-basis:25% !important;}
261
- .mm_col_33 {width:33.333333% !important;flex-basis:33.333333% !important;}
262
- .mm_col_40 {width:40% !important;flex-basis:40% !important;}
263
- .mm_col_50 {width:50% !important;flex-basis:50% !important;}
264
- .mm_col_60 {width:60% !important;flex-basis:60% !important;}
265
- .mm_col_66 {width:66.666667% !important;flex-basis:66.666667% !important;}
266
- .mm_col_75 {width:75% !important;flex-basis:75% !important;}
267
- .mm_col_80 {width:80% !important;flex-basis:80% !important;}
268
- .mm_col_90 {width:90% !important;flex-basis:90% !important;}
269
- .mm_col_100 {width:100% !important;flex-basis:100% !important;}
270
-
271
-
272
- /* 格子拓展 */
273
- .col,[class*=col-] {display:block;float:left;position:relative;width:100%;}
274
- .col {-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;width:100%;}
275
- .col-auto {-ms-flex-basis:auto;flex-basis:auto;width:auto;width:100%;}
276
- .col-1 {-ms-flex-basis:8.333333%;flex-basis:8.333333%;width:8.333333%;}
277
- .col-2 {-ms-flex-basis:16.666667%;flex-basis:16.666667%;width:16.666667%;}
278
- .col-3 {-ms-flex-basis:25%;flex-basis:25%;width:25%;}
279
- .col-4 {-ms-flex-basis:33.333333%;flex-basis:33.333333%;width:33.333333%;}
280
- .col-5 {-ms-flex-basis:41.666667%;flex-basis:41.666667%;width:41.666667%;}
281
- .col-6 {-ms-flex-basis:50%;flex-basis:50%;width:50%;}
282
- .col-7 {-ms-flex-basis:58.333333%;flex-basis:58.333333%;width:58.333333%;}
283
- .col-8 {-ms-flex-basis:66.666667%;flex-basis:66.666667%;width:66.666667%;}
284
- .col-9 {-ms-flex-basis:75%;flex-basis:75%;width:75%;}
285
- .col-10 {-ms-flex-basis:83.333333%;flex-basis:83.333333%;width:83.333333%;}
286
- .col-11 {-ms-flex-basis:91.666667%;flex-basis:91.666667%;width:91.666667%;}
287
- .col-12 {-ms-flex-basis:100%;flex-basis:100%;width:100%;}
288
-
289
-
290
- /* === 栅格 === */
291
- .grid-x>* {margin-top:-1px;margin-left:-1px;border:1px solid #DBDBDB;flex:1;}
292
- .mm_grid,[class*=mm_grid_] {max-width:76rem;margin:0 auto;position:relative;flex-wrap:wrap;display:flex;align-content:flex-start;align-items:stretch;justify-content:space-between;justify-items:stretch;}
293
- .mm_main .mm_grid,.mm_main [class*=mm_grid_] {max-width:initial;}
294
- [class*=mm_grid_]>* {-webkit-flex:1;flex:1;}
295
- .mm_grid_1>* {width:100%;flex-basis:100%}
296
- .mm_grid_2>* {width:50%;flex-basis:50%}
297
- .mm_grid_3>* {width:33.333333%;flex-basis:33.333333%}
298
- .mm_grid_4>* {width:25%;flex-basis:25%}
299
- .mm_grid_5>* {width:20%;flex-basis:20%}
300
- .mm_grid_6>* {width:16.666667%;flex-basis:16.666667%}
301
- .mm_grid_8>* {width:12.5%;flex-basis:12.5%}
302
- .mm_grid_10>* {width:10%;flex-basis:10%}
303
- .mm_grid_12>* {width:8.333333%;flex-basis:8.333333%}
304
- .grid_min-1>* {min-width:20rem;}
305
- .grid_min-2>* {min-width:10rem;}
306
-
307
-
308
- /* === 基础组件 === */
309
- .stroke { -webkit-background-clip: content-box; -webkit-text-fill-color: transparent; -webkit-text-stroke: 1px #333; }
310
-
311
- /* 按钮 */
312
- .mm_btn,[class*=mm_btn_] {text-align:center;border-radius:.25rem;display:inline-block;height:2rem;line-height:2rem;padding-left:1rem;padding-right:1rem;font-size:0.75rem;cursor:pointer;background:#fff;border:1px solid transparent;white-space:nowrap;}
313
- .mm_btn:active {background-color:#EFEFEF;}
314
- .mm_btn::after,[class*=mm_btn_]::after {display:none;}
315
- .btn-full,.mm_btn.full,[class*=mm_btn_].full {width:100%;display:block;margin-left:auto;margin-right:auto;}
316
- .btn-link {background:none;border:none;padding:0;line-height:1;height:initial;}
317
- .btn-sm {height:1.5rem;line-height:1.5rem;font-size:0.625rem;padding-left:0.75rem;padding-right:0.75rem;}
318
- .disabled {pointer-events:none;cursor:not-allowed;border-color:transparent !important;}
319
-
320
- /* === 组合框 === */
321
- .mm_group,[class*=mm_group_] {display:flex;flex-flow:row nowrap;justify-content:space-between;align-items:stretch;padding-left:1px;padding-right:1px;}
322
- [class*=mm_group_]>*, .mm_group>* {margin-right:-1px;flex:1;float:left;border-radius:0 !important;white-space:nowrap;}
323
-
324
- .mm_group>input~.mm_btn,.mm_group>input~[class*=mm_btn_] {flex:inherit;}
325
- .mm_group>span,.mm_group>.unit,.mm_group>.title {flex:inherit;height:2rem;line-height:2rem;padding-left:1rem;padding-right:1rem;background-color:#f9f9f9;border:1px solid rgba(125,125,125,0.25);font-size:0.75rem;text-align:center;}
326
-
327
- .mm_group_0:first-child { border-top-left-radius: 0;border-bottom-left-radius: 0; }
328
- .mm_group_0:last-child { border-top-right-radius: 0;border-bottom-right-radius: 0; }
329
- .mm_group_1:first-child { border-top-left-radius: .25rem;border-bottom-left-radius: .25rem; }
330
- .mm_group_1:last-child { border-top-right-radius: .25rem;border-bottom-right-radius: .25rem; }
331
- .mm_group_2:first-child { border-top-left-radius: .5rem;border-bottom-left-radius: .5rem; }
332
- .mm_group_2:last-child { border-top-right-radius: .5rem;border-bottom-right-radius: .5rem; }
333
-
334
- [class*=mm_table_] { width: 100%; overflow: auto; }
335
-
336
- /* === 列表 === */
337
- .list-x>* {margin-top:-1px;margin-left:-1px;border:1px solid #DBDBDB;}
338
- .mm_list,[class*=mm_list_] {display:-webkit-flex;display:flex;flex-flow:row wrap;align-items:flex-start;justify-content:flex-start;}
339
- [class*=mm_list_]>*, .mm_list>*{display:block;float:left;list-style:none;position:relative;min-width:8.333333%;}
340
- .mm_list_1>* {width:100%;flex-basis:100%}
341
- .mm_list_2>* {width:50%;flex-basis:50%}
342
- .mm_list_3>* {width:33.333333%;flex-basis:33.333333%}
343
- .mm_list_4>* {width:25%;flex-basis:25%}
344
- .mm_list_5>* {width:20%;flex-basis:20%}
345
- .mm_list_6>* {width:16.666666%;flex-basis:16.666666%}
346
- .mm_list_8>* {width:12.5%;flex-basis:12.5%}
347
- .mm_list_10>* {width:10%;flex-basis:10%}
348
- .mm_list_12>* {width:8.333333%;flex-basis:8.333333%}
349
- ul.mm_list li {list-style:none;float:left;overflow:hidden;}
350
- ol.mm_list {list-style-type:none;counter-reset:step;counter-increment:step 0; padding-left: 2.75rem;}
351
- ol.mm_list li::before {content:counter(step);counter-increment:step;position:absolute;left:-1.75rem;top:50%;display:block;width:1.125rem;line-height:1.125rem;text-align:center;background-color:#afbfd4;border-radius:0.125rem;color:#fff;transform:translateY(-50%);letter-spacing:0;font-size:0.75rem;height:1.125rem;}
352
- ol.mm_list li:nth-child(1)::before {background-color:#f12f04;}
353
- ol.mm_list li:nth-child(2)::before {background-color:#ff5000;}
354
- ol.mm_list li:nth-child(3)::before {background-color:#ff9000;}
355
-
356
-
357
- main {overflow-y:auto;}
358
- main .mm_col>*,main [class*=mm_col_]>* {margin:0.5rem;}
359
- main .mm_col>*~*,main [class*=mm_col_]>*~* {margin-top:1rem;}
360
-
361
-
362
- /* === 排版 === */
363
- .div-ll figure {float:left;}
364
- .div-ll h5 {float:left;}
365
- .div-ll p {float:left;}
366
- .div-lr figure {float:left;}
367
- .div-lr h5 {float:right;}
368
- .div-ltb figure {float:left;}
369
- .div-tb figure {width:100%;}
370
- .div-tb h5 {width:100%;}
371
- .div-tb p {width:100%;}
372
- .div-tlr h5 {float:left;}
373
- .div-tlr p {float:right;}
374
- .div-tl h5 {float:left;}
375
- .div-rtb figure {float:right;}
376
- .div-rr figure {float:right;}
377
- .div-rr h5 {float:right;}
378
- .div-rr p {float:right;}
379
- .div-rl figure {float:right;}
380
- .div-rl h5 {float:left;}
381
-
382
- /* === 卡片 === */
383
- .card {background:#fff;border-radius:0.25rem;border:1px solid rgba(125,125,125,0.25);box-shadow:0 .25rem .5rem 0 rgba(7,17,27,0.1);overflow:hidden;}
384
- .card>.head {min-height:1.5rem;padding:.75rem 1rem;}
385
- .card>.head~.body {
386
- border-top:1px solid rgba(125,125,125,0.25);
387
- }
388
- .card>.foot {min-height:2rem;}
389
- .card>.body~.foot {
390
- border-top:1px solid rgba(125,125,125,0.25);
391
- }
392
-
393
- /* 箭头 */
394
- .arrow {position:relative;padding-right:2rem !important;}
395
- .arrow::after {position:absolute;right:1rem;top:50%;transform:translateY(-50%) rotate(-45deg);content:"";padding:3px;display:block;border:solid #999;border-width:0 1px 1px 0;transition:all 0.2s;}
396
- .arrow.active::after {transform:translateY(-50%) rotate(45deg);}
397
- /* 代码 */
398
- .mm_code {background:#f8f9fa;border-radius:0.25rem;padding:.5rem;}
399
- .mm_code pre {overflow:auto;}
400
- .mm_code ul {list-style-type:none;}
401
-
402
- /* === 表格 === */
403
- .table-sm td,.table-sm th {padding:.25rem .5rem}
404
- .th_id {width:4rem}
405
- .th_uin {min-width:12rem}
406
- .th_name {min-width:8rem}
407
- .th_type {min-width:6rem}
408
- .th_address {min-width:15rem}
409
- .th_username {min-width:10rem}
410
- .th_nickname {min-width:10rem}
411
- .th_phone {min-width:9rem}
412
- .th_email,.th_time {min-width:10rem}
413
- .th_num {min-width:8rem}
414
- .th_score,.th_state {min-width:5.5rem}
415
- .th_handle {min-width:10rem}
416
- .th_title {width:15rem}
417
- .th_desc {width:20rem}
418
-
419
- /* === 图标大小 === */
420
- .img-5,.icon_5 img {width:1.25rem;height:1.25rem;}
421
- .img-4,.icon_4 img {width:1.5rem;height:1.5rem;}
422
- .img-3,.icon_3 img {width:2rem;height:2rem;}
423
- .img-2,.icon_2 img {width:3rem;height:3rem;}
424
- .img-1,.icon_1 img {width:4rem;height:4rem;}
425
- .icon_5 i {font-size:1rem;}
426
- .icon_4 i {font-size:1.125rem;}
427
- .icon_3 i {font-size:1.25rem;}
428
- .icon_2 i {font-size:1.5rem;}
429
- .icon_1 i {font-size:1.75rem;}
430
- .icon-x figure {padding:.5rem;background:#fff !important;}
431
-
432
- .mm_group>*:focus,[class*=mm_group_]>*:focus {z-index:20;}
433
- .mm_group>*:first-child,[class*=mm_group_]>*:first-child {margin-left:-1px;}
434
-
435
- @media only screen and (max-width:1200px) {
436
- .pad_hide {display:none;}
437
- [class*=mm_col_] {flex:1;}
438
- main .mm_col_25 {min-width:20rem;}
439
- pre::-webkit-scrollbar {display:none;}
440
- }
441
-
442
- @media only screen and (max-width:640px) {
443
- .phone_hide {display:none;}
444
- .mm_col_75,.mm_col_80,.mm_col_90,.mm_col_100 {overflow-x:auto;}
445
- .mm_col_75::-webkit-scrollbar,.mm_col_80::-webkit-scrollbar,.mm_col_90::-webkit-scrollbar,.mm_col_100::-webkit-scrollbar {display:none;}
446
- main .mm_col_50 {min-width:20rem;}
447
- main .mm_col_60 {min-width:20rem;}
448
- main .mm_col_66 {min-width:20rem;}
449
- main .mm_col_75 {min-width:20rem;}
450
- main .mm_col_80 {min-width:20rem;}
451
- main .mm_col_90 {min-width:20rem;}
452
- main .mm_col_100 {min-width:20rem;}
453
- }
454
-
455
- @media (min-width:576px) {
456
- .col-sm {-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;width:100%;}
457
- .col-sm-auto {-ms-flex-basis:auto;flex-basis:auto;width:auto;width:100%;}
458
- .col-sm-1 {-ms-flex-basis:8.333333%;flex-basis:8.333333%;width:8.333333%;}
459
- .col-sm-2 {-ms-flex-basis:16.666667%;flex-basis:16.666667%;width:16.666667%;}
460
- .col-sm-3 {-ms-flex-basis:25%;flex-basis:25%;width:25%;}
461
- .col-sm-4 {-ms-flex-basis:33.333333%;flex-basis:33.333333%;width:33.333333%;}
462
- .col-sm-5 {-ms-flex-basis:41.666667%;flex-basis:41.666667%;width:41.666667%;}
463
- .col-sm-6 {-ms-flex-basis:50%;flex-basis:50%;width:50%;}
464
- .col-sm-7 {-ms-flex-basis:58.333333%;flex-basis:58.333333%;width:58.333333%;}
465
- .col-sm-8 {-ms-flex-basis:66.666667%;flex-basis:66.666667%;width:66.666667%;}
466
- .col-sm-9 {-ms-flex-basis:75%;flex-basis:75%;width:75%;}
467
- .col-sm-10 {-ms-flex-basis:83.333333%;flex-basis:83.333333%;width:83.333333%;}
468
- .col-sm-11 {-ms-flex-basis:91.666667%;flex-basis:91.666667%;width:91.666667%;}
469
- .col-sm-12 {-ms-flex-basis:100%;flex-basis:100%;width:100%;}
470
- }
471
- @media (min-width:768px) {
472
- .col-md {-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;width:100%;}
473
- .col-md-auto {-ms-flex-basis:auto;flex-basis:auto;width:auto;width:100%;}
474
- .col-md-1 {-ms-flex-basis:8.333333%;flex-basis:8.333333%;width:8.333333%;}
475
- .col-md-2 {-ms-flex-basis:16.666667%;flex-basis:16.666667%;width:16.666667%;}
476
- .col-md-3 {-ms-flex-basis:25%;flex-basis:25%;width:25%;}
477
- .col-md-4 {-ms-flex-basis:33.333333%;flex-basis:33.333333%;width:33.333333%;}
478
- .col-md-5 {-ms-flex-basis:41.666667%;flex-basis:41.666667%;width:41.666667%;}
479
- .col-md-6 {-ms-flex-basis:50%;flex-basis:50%;width:50%;}
480
- .col-md-7 {-ms-flex-basis:58.333333%;flex-basis:58.333333%;width:58.333333%;}
481
- .col-md-8 {-ms-flex-basis:66.666667%;flex-basis:66.666667%;width:66.666667%;}
482
- .col-md-9 {-ms-flex-basis:75%;flex-basis:75%;width:75%;}
483
- .col-md-10 {-ms-flex-basis:83.333333%;flex-basis:83.333333%;width:83.333333%;}
484
- .col-md-11 {-ms-flex-basis:91.666667%;flex-basis:91.666667%;width:91.666667%;}
485
- .col-md-12 {-ms-flex-basis:100%;flex-basis:100%;width:100%;}
486
- }
487
- @media (min-width:992px) {
488
- .col-lg {-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;width:100%;}
489
- .col-lg-auto {-ms-flex-basis:auto;flex-basis:auto;width:auto;width:100%;}
490
- .col-lg-1 {-ms-flex-basis:8.333333%;flex-basis:8.333333%;width:8.333333%;}
491
- .col-lg-2 {-ms-flex-basis:16.666667%;flex-basis:16.666667%;width:16.666667%;}
492
- .col-lg-3 {-ms-flex-basis:25%;flex-basis:25%;width:25%;}
493
- .col-lg-4 {-ms-flex-basis:33.333333%;flex-basis:33.333333%;width:33.333333%;}
494
- .col-lg-5 {-ms-flex-basis:41.666667%;flex-basis:41.666667%;width:41.666667%;}
495
- .col-lg-6 {-ms-flex-basis:50%;flex-basis:50%;width:50%;}
496
- .col-lg-7 {-ms-flex-basis:58.333333%;flex-basis:58.333333%;width:58.333333%;}
497
- .col-lg-8 {-ms-flex-basis:66.666667%;flex-basis:66.666667%;width:66.666667%;}
498
- .col-lg-9 {-ms-flex-basis:75%;flex-basis:75%;width:75%;}
499
- .col-lg-10 {-ms-flex-basis:83.333333%;flex-basis:83.333333%;width:83.333333%;}
500
- .col-lg-11 {-ms-flex-basis:91.666667%;flex-basis:91.666667%;width:91.666667%;}
501
- .col-lg-12 {-ms-flex-basis:100%;flex-basis:100%;width:100%;}
502
- }
503
- @media (min-width:1200px) {
504
- .col-xl {-ms-flex-preferred-size:0;flex-basis:0;-ms-flex-positive:1;flex-grow:1;min-width:0;width:100%;}
505
- .col-xl-auto {-ms-flex-basis:auto;flex-basis:auto;width:auto;width:100%;}
506
- .col-xl-1 {-ms-flex-basis:8.333333%;flex-basis:8.333333%;width:8.333333%;}
507
- .col-xl-2 {-ms-flex-basis:16.666667%;flex-basis:16.666667%;width:16.666667%;}
508
- .col-xl-3 {-ms-flex-basis:25%;flex-basis:25%;width:25%;}
509
- .col-xl-4 {-ms-flex-basis:33.333333%;flex-basis:33.333333%;width:33.333333%;}
510
- .col-xl-5 {-ms-flex-basis:41.666667%;flex-basis:41.666667%;width:41.666667%;}
511
- .col-xl-6 {-ms-flex-basis:50%;flex-basis:50%;width:50%;}
512
- .col-xl-7 {-ms-flex-basis:58.333333%;flex-basis:58.333333%;width:58.333333%;}
513
- .col-xl-8 {-ms-flex-basis:66.666667%;flex-basis:66.666667%;width:66.666667%;}
514
- .col-xl-9 {-ms-flex-basis:75%;flex-basis:75%;width:75%;}
515
- .col-xl-10 {-ms-flex-basis:83.333333%;flex-basis:83.333333%;width:83.333333%;}
516
- .col-xl-11 {-ms-flex-basis:91.666667%;flex-basis:91.666667%;width:91.666667%;}
517
- .col-xl-12 {-ms-flex-basis:100%;flex-basis:100%;width:100%;}
518
- }