mm_os 1.3.3 → 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.
- package/README.en.md +36 -0
- package/README.md +25 -166
- package/conf.json +3 -0
- package/core/base/index.js +29 -0
- package/core/base/mqtt/index.js +268 -0
- package/core/base/mqtt/lib.js +40 -0
- package/core/base/web/index.js +110 -0
- package/core/com/api/com.json +4 -0
- package/{bin → core}/com/api/config.tpl.json +9 -7
- package/{bin → core}/com/api/drive.js +239 -64
- package/{bin → core}/com/api/index.js +8 -9
- package/{bin → core}/com/api/oauth.js +23 -14
- package/core/com/api/script.js +32 -0
- package/core/com/db/com.json +4 -0
- package/{bin → core}/com/db/drive.js +99 -65
- package/{bin → core}/com/db/index.js +2 -2
- package/core/com/event/com.json +4 -0
- package/{bin → core}/com/event/config.tpl.json +2 -2
- package/core/com/event/drive.js +125 -0
- package/{bin → core}/com/event/index.js +5 -10
- package/core/com/event/script.js +26 -0
- package/core/com/eventer/com.js +450 -0
- package/core/com/eventer/com.json +4 -0
- package/core/com/middleware/com.js +128 -0
- package/core/com/middleware/com.json +4 -0
- package/core/com/middleware/config.tpl.json +8 -0
- package/core/com/middleware/script.js +9 -0
- package/core/com/mqtt/com.json +4 -0
- package/core/com/mqtt/config.tpl.json +12 -0
- package/core/com/mqtt/drive.js +139 -0
- package/core/com/mqtt/index.js +138 -0
- package/core/com/mqtt/script.js +33 -0
- package/core/com/msg/com.js +296 -0
- package/core/com/msg/com.json +4 -0
- package/{bin → core}/com/nav/drive.js +42 -17
- package/{bin → core}/com/nav/index.js +4 -4
- package/core/com/nav/tpl/admin_pc/page_channel.vue +299 -0
- package/core/com/nav/tpl/admin_pc/page_config.vue +279 -0
- package/core/com/nav/tpl/admin_pc/page_config_form.vue +194 -0
- package/core/com/nav/tpl/admin_pc/page_default.vue +287 -0
- package/core/com/nav/tpl/admin_pc/page_form.vue +180 -0
- package/core/com/nav/tpl/admin_pc/page_lang.vue +265 -0
- package/core/com/nav/tpl/admin_pc/page_nav.vue +313 -0
- package/core/com/nav/tpl/admin_pc/page_table.vue +285 -0
- package/core/com/nav/tpl/admin_pc/page_type.vue +313 -0
- package/core/com/nav/tpl/dev_pc/page_channel.vue +253 -0
- package/core/com/nav/tpl/dev_pc/page_config.vue +253 -0
- package/core/com/nav/tpl/dev_pc/page_default.vue +247 -0
- package/core/com/nav/tpl/dev_pc/page_form.vue +162 -0
- package/core/com/nav/tpl/dev_pc/page_nav.vue +253 -0
- package/core/com/nav/tpl/dev_pc/page_table.vue +247 -0
- package/core/com/nav/tpl/dev_pc/page_type.vue +253 -0
- package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_channel.vue +231 -231
- package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_default.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_pc/page_form.vue +9 -9
- package/{bin → core}/com/nav/tpl/home_pc/page_list.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_pc/page_nav.vue +221 -221
- package/{bin/com/nav/tpl/home_phone → core/com/nav/tpl/home_pc}/page_type.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_pc/page_view.vue +8 -8
- package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_channel.vue +231 -231
- package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_default.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_phone/page_form.vue +9 -9
- package/{bin → core}/com/nav/tpl/home_phone/page_list.vue +231 -231
- package/{bin/com/nav/tpl/admin_pc → core/com/nav/tpl/home_phone}/page_nav.vue +236 -220
- package/{bin/com/nav/tpl/home_pc → core/com/nav/tpl/home_phone}/page_type.vue +231 -231
- package/{bin → core}/com/nav/tpl/home_phone/page_view.vue +8 -8
- package/core/com/nav/viewmodel.js +296 -0
- package/{bin → core}/com/param/config.tpl.json +24 -0
- package/{bin → core}/com/param/drive.js +47 -15
- package/core/com/plugin/com.json +4 -0
- package/core/com/plugin/config.tpl.json +20 -0
- package/{bin → core}/com/plugin/drive.js +5 -8
- package/{bin → core}/com/plugin/index.js +11 -56
- package/core/com/socket/README.md +47 -0
- package/core/com/socket/com.json +4 -0
- package/core/com/socket/config.tpl.json +14 -0
- package/{bin → core}/com/socket/drive.js +74 -51
- package/{bin → core}/com/socket/index.js +4 -2
- package/{bin → core}/com/socket/script.js +8 -6
- package/core/com/sql/config.tpl.json +70 -0
- package/{bin → core}/com/sql/drive.js +281 -58
- package/core/com/static/com.json +4 -0
- package/core/com/static/config.tpl.json +20 -0
- package/{bin → core}/com/static/drive.js +6 -4
- package/{bin → core}/com/static/index.js +5 -1
- package/core/com/task/com.json +4 -0
- package/core/com/task/config.tpl.json +24 -0
- package/core/com/task/drive.js +374 -0
- package/{bin → core}/com/task/index.js +14 -20
- package/core/com/task/script.js +37 -0
- package/core/com/timer/com.js +217 -0
- package/core/com/timer/com.json +4 -0
- package/core/com/tpl/com.js +19 -0
- package/core/com/tpl/com.json +4 -0
- package/index.js +161 -740
- package/lib/actions.js +50 -0
- package/lib/app.js +73 -0
- package/lib/base.js +355 -0
- package/lib/com.js +31 -0
- package/lib/game.js +31 -0
- package/lib/ref.js +121 -0
- package/middleware/cors/index.js +57 -0
- package/middleware/cors/middleware.json +7 -0
- package/middleware/mqtt_base/index.js +10 -0
- package/middleware/mqtt_base/middleware.json +8 -0
- package/{waf.js → middleware/waf/index.js} +12 -2
- package/middleware/waf/middleware.json +9 -0
- package/middleware/web_base/index.js +67 -0
- package/middleware/web_base/middleware.json +9 -0
- package/middleware/web_event/index.js +411 -0
- package/middleware/web_event/middleware.json +10 -0
- package/middleware/web_proxy/index.js +24 -0
- package/middleware/web_proxy/middleware.json +9 -0
- package/middleware/web_router/index.js +33 -0
- package/middleware/web_router/middleware.json +10 -0
- package/middleware/web_socket/index.js +21 -0
- package/middleware/web_socket/middleware.json +9 -0
- package/middleware/web_static/index.js +26 -0
- package/middleware/web_static/middleware.json +9 -0
- package/nodemon.json +12 -2
- package/package.json +56 -66
- package/.gitattributes +0 -5
- package/bin/com/README.md +0 -2
- package/bin/com/api/script.js +0 -14
- package/bin/com/cmd/README.md +0 -3
- package/bin/com/cmd/config.tpl.json +0 -41
- package/bin/com/cmd/drive.js +0 -512
- package/bin/com/cmd/index.js +0 -213
- package/bin/com/cmd/old/5w2h.js +0 -54
- package/bin/com/cmd/old/drive.js +0 -423
- package/bin/com/cmd/script.js +0 -11
- package/bin/com/event/drive.js +0 -69
- package/bin/com/event/script.js +0 -12
- package/bin/com/nav/tpl/admin_pc/page_channel.vue +0 -234
- package/bin/com/nav/tpl/admin_pc/page_default.vue +0 -236
- package/bin/com/nav/tpl/admin_pc/page_form.vue +0 -152
- package/bin/com/nav/tpl/admin_pc/page_table.vue +0 -236
- package/bin/com/nav/tpl/admin_pc/page_type.vue +0 -234
- package/bin/com/nav/tpl/home_phone/page_nav.vue +0 -221
- package/bin/com/nav/viewmodel.js +0 -161
- package/bin/com/plugin/config.tpl.json +0 -11
- package/bin/com/socket/config.tpl.json +0 -8
- package/bin/com/sql/config.tpl.json +0 -34
- package/bin/com/static/config.tpl.json +0 -11
- package/bin/com/task/config.tpl.json +0 -13
- package/bin/com/task/drive.js +0 -288
- package/bin/com/task/script.js +0 -38
- package/bin/com.js +0 -74
- package/bin/mm.conf +0 -48
- package/bin/static/404.html +0 -52
- package/bin/static/README.md +0 -1
- package/bin/static/css/font-awesome.min.css +0 -7
- package/bin/static/css/mm_base.css +0 -220
- package/bin/static/css/mm_common.css +0 -518
- package/bin/static/css/mm_component.css +0 -307
- package/bin/static/css/mm_expand.css +0 -634
- package/bin/static/css/mm_theme.css +0 -291
- package/bin/static/css/new_file.css +0 -79
- package/bin/static/css/swiper.min.css +0 -12
- package/bin/static/favicon.ico +0 -0
- package/bin/static/font/FontAwesome.otf +0 -0
- package/bin/static/font/HelveticaNeue.eot +0 -0
- package/bin/static/font/HelveticaNeue.otf +0 -0
- package/bin/static/font/HelveticaNeue.svg +0 -1273
- package/bin/static/font/HelveticaNeue.woff +0 -0
- package/bin/static/font/HelveticaNeue.woff2 +0 -0
- package/bin/static/font/fontawesome-webfont.eot +0 -0
- package/bin/static/font/fontawesome-webfont.svg +0 -2671
- package/bin/static/font/fontawesome-webfont.ttf +0 -0
- package/bin/static/font/fontawesome-webfont.woff +0 -0
- package/bin/static/font/fontawesome-webfont.woff2 +0 -0
- package/bin/static/h5.html +0 -325
- package/bin/static/highlight/highlight.pack.js +0 -2
- package/bin/static/highlight/styles/a11y-dark.css +0 -99
- package/bin/static/highlight/styles/a11y-light.css +0 -99
- package/bin/static/highlight/styles/agate.css +0 -108
- package/bin/static/highlight/styles/an-old-hope.css +0 -89
- package/bin/static/highlight/styles/androidstudio.css +0 -66
- package/bin/static/highlight/styles/arduino-light.css +0 -88
- package/bin/static/highlight/styles/arta.css +0 -73
- package/bin/static/highlight/styles/ascetic.css +0 -45
- package/bin/static/highlight/styles/atelier-cave-dark.css +0 -83
- package/bin/static/highlight/styles/atelier-cave-light.css +0 -85
- package/bin/static/highlight/styles/atelier-dune-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-dune-light.css +0 -69
- package/bin/static/highlight/styles/atelier-estuary-dark.css +0 -84
- package/bin/static/highlight/styles/atelier-estuary-light.css +0 -84
- package/bin/static/highlight/styles/atelier-forest-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-forest-light.css +0 -69
- package/bin/static/highlight/styles/atelier-heath-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-heath-light.css +0 -69
- package/bin/static/highlight/styles/atelier-lakeside-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-lakeside-light.css +0 -69
- package/bin/static/highlight/styles/atelier-plateau-dark.css +0 -84
- package/bin/static/highlight/styles/atelier-plateau-light.css +0 -84
- package/bin/static/highlight/styles/atelier-savanna-dark.css +0 -84
- package/bin/static/highlight/styles/atelier-savanna-light.css +0 -84
- package/bin/static/highlight/styles/atelier-seaside-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-seaside-light.css +0 -69
- package/bin/static/highlight/styles/atelier-sulphurpool-dark.css +0 -69
- package/bin/static/highlight/styles/atelier-sulphurpool-light.css +0 -69
- package/bin/static/highlight/styles/atom-one-dark-reasonable.css +0 -77
- package/bin/static/highlight/styles/atom-one-dark.css +0 -96
- package/bin/static/highlight/styles/atom-one-light.css +0 -96
- package/bin/static/highlight/styles/brown-paper.css +0 -64
- package/bin/static/highlight/styles/brown-papersq.png +0 -0
- package/bin/static/highlight/styles/codepen-embed.css +0 -60
- package/bin/static/highlight/styles/color-brewer.css +0 -71
- package/bin/static/highlight/styles/darcula.css +0 -77
- package/bin/static/highlight/styles/dark.css +0 -63
- package/bin/static/highlight/styles/darkula.css +0 -6
- package/bin/static/highlight/styles/default.css +0 -99
- package/bin/static/highlight/styles/docco.css +0 -97
- package/bin/static/highlight/styles/dracula.css +0 -76
- package/bin/static/highlight/styles/far.css +0 -71
- package/bin/static/highlight/styles/foundation.css +0 -88
- package/bin/static/highlight/styles/github-gist.css +0 -79
- package/bin/static/highlight/styles/github.css +0 -99
- package/bin/static/highlight/styles/gml.css +0 -78
- package/bin/static/highlight/styles/googlecode.css +0 -89
- package/bin/static/highlight/styles/grayscale.css +0 -101
- package/bin/static/highlight/styles/gruvbox-dark.css +0 -108
- package/bin/static/highlight/styles/gruvbox-light.css +0 -108
- package/bin/static/highlight/styles/hopscotch.css +0 -83
- package/bin/static/highlight/styles/hybrid.css +0 -102
- package/bin/static/highlight/styles/idea.css +0 -97
- package/bin/static/highlight/styles/ir-black.css +0 -73
- package/bin/static/highlight/styles/isbl-editor-dark.css +0 -112
- package/bin/static/highlight/styles/isbl-editor-light.css +0 -112
- package/bin/static/highlight/styles/kimbie.dark.css +0 -74
- package/bin/static/highlight/styles/kimbie.light.css +0 -74
- package/bin/static/highlight/styles/lightfair.css +0 -87
- package/bin/static/highlight/styles/magula.css +0 -70
- package/bin/static/highlight/styles/mono-blue.css +0 -59
- package/bin/static/highlight/styles/monokai-sublime.css +0 -83
- package/bin/static/highlight/styles/monokai.css +0 -70
- package/bin/static/highlight/styles/nord.css +0 -309
- package/bin/static/highlight/styles/obsidian.css +0 -88
- package/bin/static/highlight/styles/ocean.css +0 -74
- package/bin/static/highlight/styles/paraiso-dark.css +0 -72
- package/bin/static/highlight/styles/paraiso-light.css +0 -72
- package/bin/static/highlight/styles/pojoaque.css +0 -83
- package/bin/static/highlight/styles/pojoaque.jpg +0 -0
- package/bin/static/highlight/styles/purebasic.css +0 -96
- package/bin/static/highlight/styles/qtcreator_dark.css +0 -83
- package/bin/static/highlight/styles/qtcreator_light.css +0 -83
- package/bin/static/highlight/styles/railscasts.css +0 -106
- package/bin/static/highlight/styles/rainbow.css +0 -85
- package/bin/static/highlight/styles/routeros.css +0 -108
- package/bin/static/highlight/styles/school-book.css +0 -69
- package/bin/static/highlight/styles/school-book.png +0 -0
- package/bin/static/highlight/styles/shades-of-purple.css +0 -97
- package/bin/static/highlight/styles/solarized-dark.css +0 -84
- package/bin/static/highlight/styles/solarized-light.css +0 -84
- package/bin/static/highlight/styles/sunburst.css +0 -102
- package/bin/static/highlight/styles/tomorrow-night-blue.css +0 -75
- package/bin/static/highlight/styles/tomorrow-night-bright.css +0 -74
- package/bin/static/highlight/styles/tomorrow-night-eighties.css +0 -74
- package/bin/static/highlight/styles/tomorrow-night.css +0 -75
- package/bin/static/highlight/styles/tomorrow.css +0 -72
- package/bin/static/highlight/styles/vs.css +0 -68
- package/bin/static/highlight/styles/vs2015.css +0 -115
- package/bin/static/highlight/styles/xcode.css +0 -104
- package/bin/static/highlight/styles/xt256.css +0 -92
- package/bin/static/highlight/styles/zenburn.css +0 -80
- package/bin/static/highlight/vue-highlight.js +0 -29
- package/bin/static/ifame.html +0 -24
- package/bin/static/img/add.png +0 -0
- package/bin/static/img/avatar.png +0 -0
- package/bin/static/img/banner_2.png +0 -0
- package/bin/static/img/default.png +0 -0
- package/bin/static/img/loading.svg +0 -1
- package/bin/static/img/logo.png +0 -0
- package/bin/static/img/logo1.png +0 -0
- package/bin/static/img/logo_gray.png +0 -0
- package/bin/static/img/logo_round.png +0 -0
- package/bin/static/img/mm.ico +0 -0
- package/bin/static/img/mm.jpg +0 -0
- package/bin/static/img/select.png +0 -0
- package/bin/static/img/web.png +0 -0
- package/bin/static/index.html +0 -12
- package/bin/static/js/clipboard.min.js +0 -257
- package/bin/static/js/css.min.js +0 -1
- package/bin/static/js/echarts.js +0 -22
- package/bin/static/js/html5.min.js +0 -1
- package/bin/static/js/jquery.lazyload.min.js +0 -2
- package/bin/static/js/jquery.min.js +0 -4189
- package/bin/static/js/jquery.scrollstop.min.js +0 -2
- package/bin/static/js/mm-requirejs-vue.js +0 -283
- package/bin/static/js/mm_check.js +0 -490
- package/bin/static/js/mm_flexble.js +0 -112
- package/bin/static/js/mm_picker.js +0 -1417
- package/bin/static/js/mm_pinyinlite.js +0 -873
- package/bin/static/js/mm_sdk.js +0 -2841
- package/bin/static/js/mm_ui_expand.js +0 -468
- package/bin/static/js/mm_vue.js +0 -376
- package/bin/static/js/mm_vue_ui.js +0 -2375
- package/bin/static/js/mm_websocket.js +0 -145
- package/bin/static/js/require.js +0 -5
- package/bin/static/js/sortable.min.js +0 -3
- package/bin/static/js/swiper.min.js +0 -13
- package/bin/static/js/text.min.js +0 -1
- package/bin/static/js/vue-router.min.js +0 -6
- package/bin/static/js/vue.js +0 -12338
- package/bin/static/js/vuedraggable.min.js +0 -2
- package/bin/static/js/vuex.min.js +0 -6
- package/bin/static/src/components/bar/mm_action.vue +0 -19
- package/bin/static/src/components/bar/mm_buy.vue +0 -19
- package/bin/static/src/components/bar/mm_chat.vue +0 -18
- package/bin/static/src/components/bar/mm_count.vue +0 -18
- package/bin/static/src/components/bar/mm_filter.vue +0 -18
- package/bin/static/src/components/bar/mm_search.vue +0 -18
- package/bin/static/src/components/bar/mm_sort.vue +0 -18
- package/bin/static/src/components/bar/mm_tag.vue +0 -18
- package/bin/static/src/components/bar/mm_title.vue +0 -19
- package/bin/static/src/components/content/mm_pre.vue +0 -70
- package/bin/static/src/components/expand/mm_drag.vue +0 -39
- package/bin/static/src/components/item/mm_article.vue +0 -115
- package/bin/static/src/components/item/mm_base.vue +0 -26
- package/bin/static/src/components/item/mm_contact.vue +0 -25
- package/bin/static/src/components/item/mm_goods.vue +0 -23
- package/bin/static/src/components/item/mm_img.vue +0 -21
- package/bin/static/src/components/item/mm_media.vue +0 -18
- package/bin/static/src/components/item/mm_message.vue +0 -18
- package/bin/static/src/components/item/mm_music.vue +0 -95
- package/bin/static/src/components/item/mm_news.vue +0 -22
- package/bin/static/src/components/item/mm_number.vue +0 -26
- package/bin/static/src/components/item/mm_question.vue +0 -35
- package/bin/static/src/components/item/mm_user.vue +0 -22
- package/bin/static/src/components/item/mm_video.vue +0 -95
- package/bin/static/src/components/slide/mm_slide_card.vue +0 -64
- package/bin/static/src/components/slide/mm_slide_img.vue +0 -47
- package/bin/static/src/components/slide/mm_slide_page.vue +0 -8
- package/bin/static/src/components/slide/mm_slide_text.vue +0 -54
- package/bin/static/src/main.js +0 -84
- package/bin/static/src/mixins/form.js +0 -223
- package/bin/static/src/mixins/item.js +0 -242
- package/bin/static/src/mixins/list.js +0 -244
- package/bin/static/src/mixins/page.js +0 -1011
- package/bin/static/src/mm_component.js +0 -74
- package/bin/static/src/router.js +0 -72
- package/bin/static/src/store/user.js +0 -75
- package/bin/static/src/store/web.js +0 -50
- package/bin/static/user/1/number_info.xlsx +0 -0
- package/bin/static/w3c.html +0 -94
- package/init.js +0 -55
- package/update.md +0 -1
- /package/{bin → core}/com/api/README.md +0 -0
- /package/{bin → core}/com/api/rpc.js +0 -0
- /package/{bin → core}/com/db/README.md +0 -0
- /package/{bin → core}/com/event/README.md +0 -0
- /package/{bin/com/socket → core/com/mqtt}/README.md +0 -0
- /package/{bin → core}/com/nav/README.md +0 -0
- /package/{bin → core}/com/nav/config.tpl.json +0 -0
- /package/{bin → core}/com/param/README.md +0 -0
- /package/{bin → core}/com/param/index.js +0 -0
- /package/{bin → core}/com/param/script.js +0 -0
- /package/{bin → core}/com/param/test.js +0 -0
- /package/{bin → core}/com/plugin/README.md +0 -0
- /package/{bin → core}/com/plugin/script.js +0 -0
- /package/{bin → core}/com/sql/README.md +0 -0
- /package/{bin → core}/com/sql/index.js +0 -0
- /package/{bin → core}/com/sql/script.js +0 -0
- /package/{bin → core}/com/static/README.md +0 -0
- /package/{bin → core}/com/static/script.js +0 -0
- /package/{bin → core}/com/task/README.md +0 -0
- /package/{bin/rps.bat → rps.bat} +0 -0
- /package/{bin/tps.bat → tps.bat} +0 -0
|
@@ -1,307 +0,0 @@
|
|
|
1
|
-
input::-webkit-outer-spin-button,input::-webkit-inner-spin-button {-webkit-appearance:none;}
|
|
2
|
-
.fixed {position:fixed;}
|
|
3
|
-
.fixed~main {padding:3rem 0;}
|
|
4
|
-
.mm_action {padding-top:1rem;margin:1rem 0 .5rem 0;border-top:1px solid rgba(51,136,255,.25);}
|
|
5
|
-
.mm_action>h5 {float:left;}
|
|
6
|
-
.mm_action>div {float:right;}
|
|
7
|
-
.mm_action::before,.mm_action::after {content:"";display:block;clear:both;}
|
|
8
|
-
.mm_side {float:left;position:relative;height:inherit;z-index:2;width:14rem;min-height:calc(100vh - 3.75rem - 1px);overflow-x:hidden;overflow-y:auto;}
|
|
9
|
-
.mm_side .line {position:absolute;top:0;right:0;width:3px;background:none;border-right:1px solid #e1e4e8;height:100%;}
|
|
10
|
-
.mm_side::-webkit-scrollbar {display:none;}
|
|
11
|
-
.mm_side .line:hover {cursor:w-resize;}
|
|
12
|
-
.mm_main {position:relative;z-index:1;}
|
|
13
|
-
|
|
14
|
-
/* 加载 */
|
|
15
|
-
.mm_loading {text-align:center;max-width:8rem;}
|
|
16
|
-
.mm_loading .load {position:relative;margin:auto;}
|
|
17
|
-
.mm_loading img,.mm_loading i {display:inline-block;vertical-align:middle;animation:rotate 1s steps(12,end) infinite;-webkit-animation:rotate 1s steps(12,end) infinite;}
|
|
18
|
-
.mm_loading .progress {width:100%;background:#38f;border-radius:0.25rem;}
|
|
19
|
-
.mm_loading .progress::before {content:"";display:block;position:absolute;top:0;left:0;height:100%;width:1rem;animation:translate 1s infinite;-webkit-animation:translate 1s infinite;background:-webkit-linear-gradient(left,rgba(255,255,255,0),rgba(255,255,255,0.4),rgba(255,255,255,0.8),rgba(255,255,255,0.6));/* Safari 5.1 - 6 */background:-o-linear-gradient(left,rgba(255,255,255,0),rgba(255,255,255,0.4),rgba(255,255,255,0.8),rgba(255,255,255,0.6));/* Opera 11.1 - 12*/background:-moz-linear-gradient(left,rgba(255,255,255,0),rgba(255,255,255,0.4),rgba(255,255,255,0.8),rgba(255,255,255,0.6));/* Firefox 3.6 - 15*/background:linear-gradient(to right,rgba(255,255,255,0),rgba(255,255,255,0.4),rgba(255,255,255,0.8),rgba(255,255,255,0.6));/* 标准的语法 */border-radius:0 .25rem .25rem 0;}
|
|
20
|
-
|
|
21
|
-
@keyframes rotate {0% {transform:rotate3d(0,0,1,0deg);}
|
|
22
|
-
100% {transform:rotate3d(0,0,1,360deg);}
|
|
23
|
-
}
|
|
24
|
-
@-moz-keyframes rotate {0% {transform:rotate3d(0,0,1,0deg);}
|
|
25
|
-
100% {transform:rotate3d(0,0,1,360deg);}
|
|
26
|
-
}
|
|
27
|
-
@-webkit-keyframes rotate {0% {transform:rotate3d(0,0,1,0deg);}
|
|
28
|
-
100% {transform:rotate3d(0,0,1,360deg);}
|
|
29
|
-
}
|
|
30
|
-
@-ms-keyframes rotate {0% {transform:rotate3d(0,0,1,0deg);}
|
|
31
|
-
100% {transform:rotate3d(0,0,1,360deg);}
|
|
32
|
-
}
|
|
33
|
-
@-o-keyframes rotate {0% {transform:rotate3d(0,0,1,0deg);}
|
|
34
|
-
100% {transform:rotate3d(0,0,1,360deg);}
|
|
35
|
-
}
|
|
36
|
-
@keyframes translate {0% {left:0;}
|
|
37
|
-
100% {left:100%;}
|
|
38
|
-
}
|
|
39
|
-
@-moz-keyframes translate {0% {left:0;}
|
|
40
|
-
100% {left:100%;}
|
|
41
|
-
}
|
|
42
|
-
@-webkit-keyframes translate {0% {left:0;}
|
|
43
|
-
100% {left:100%;}
|
|
44
|
-
}
|
|
45
|
-
@-ms-keyframes translate {0% {left:0;}
|
|
46
|
-
100% {left:100%;}
|
|
47
|
-
}
|
|
48
|
-
@-o-keyframes translate {0% {left:0;}
|
|
49
|
-
100% {left:100%;}
|
|
50
|
-
}
|
|
51
|
-
|
|
52
|
-
|
|
53
|
-
/* 盒子 */
|
|
54
|
-
.mm_box {display:none;position:absolute;top:0;left:0;right:0;bottom:0;background:rgba(0,0,0,0.3);z-index:9;}
|
|
55
|
-
.mm_box::before,.mm_box::after {display:block;content:"";clear:both;float:none;}
|
|
56
|
-
.current .mm_box {display:inline-block;}
|
|
57
|
-
.active,.hover,.focus,.click {position:relative;}
|
|
58
|
-
|
|
59
|
-
/* 筛选面板 */
|
|
60
|
-
.mm_filter {display:flex;}
|
|
61
|
-
.mm_filter>*{width:100%;}
|
|
62
|
-
.mm_filter>h5 {float:left;flex:1;position:relative;border-right:2px solid #DBDBDB;background:#f3f9ff; max-width: 7rem;min-width: 7rem;}
|
|
63
|
-
.mm_filter>h5>span {position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);white-space:nowrap;}
|
|
64
|
-
.mm_filter .mm_col>button:first-child { margin-left: 1.5rem; }
|
|
65
|
-
|
|
66
|
-
/* 视图块主体 */
|
|
67
|
-
.mm_view .mm_body {padding:1.5rem;}
|
|
68
|
-
.mm_view>header {padding:.5rem 1.5rem;border-bottom:1px solid rgba(125,125,125,0.25);}
|
|
69
|
-
.mm_view>footer {border-top:1px solid rgba(125,125,125,0.25);}
|
|
70
|
-
|
|
71
|
-
/* === 模态窗 === */
|
|
72
|
-
.mm_modal {position:fixed;z-index:30;width:100%;height:100%;top:0;left:0;right:0;bottom:0;transform:translate(-100%,-100%);}
|
|
73
|
-
.mm_modal .mask {transition:all .2s ease-in-out;position:absolute;z-index:31;top:0;left:0;right:0;bottom:0;width:100%;height:100%;}
|
|
74
|
-
.mm_modal.show {transform:translate(0,0);}
|
|
75
|
-
.mm_modal .mm_body {background:#fff;}
|
|
76
|
-
|
|
77
|
-
/* 所有CSS属性都拥有过渡属性,动画持续时间3s 延迟2s触发 linear的触发函数 */
|
|
78
|
-
.trans {-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-ms-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear;}
|
|
79
|
-
.show {display:block !important;}
|
|
80
|
-
.show [class*=from_] {position:absolute;z-index:40;width:100%;}
|
|
81
|
-
.show .from_default {max-width:30rem;min-height:7.5rem;top:50%;left:50%;transform:translate(-50%,-50%) !important;}
|
|
82
|
-
.from_left {top:0;bottom:0;left:0;height:100%;max-width:18.75rem;transform:translate(-100%,0);}
|
|
83
|
-
.from_right {top:0;bottom:0;right:0;height:100%;max-width:18.75rem;transform:translate(100%,0);}
|
|
84
|
-
.from_top {top:0;left:0;right:0;transform:translate(0,-100%);}
|
|
85
|
-
.from_bottom {bottom:0;left:0;right:0;transform:translate(0,100%);}
|
|
86
|
-
.from_center {top:50%;left:50%;width:25%;max-width:30rem;transform:translate(-50%,-50%);}
|
|
87
|
-
.show .from_left,.show .from_right,.show .from_top,.show .from_bottom,.show .from_center {-webkit-transition:all .2s linear;-moz-transition:all .2s linear;-ms-transition:all .2s linear;-o-transition:all .2s linear;transition:all .2s linear;}
|
|
88
|
-
.show .from_left,.show .from_right,.show .from_top,.show .from_bottom {transform:translate(0,0);}
|
|
89
|
-
.show .from_center {width:100%;}
|
|
90
|
-
|
|
91
|
-
/* ====== 表单 ====== */
|
|
92
|
-
/* 单选框 */
|
|
93
|
-
.mm_radio input {display:none;}
|
|
94
|
-
.mm_radio .figure {position:relative;top:3px;display:inline-block;overflow:hidden;width:1.125rem;height:1.125rem;border:1px solid #38f;border-radius:50%;margin-right:.5rem;}
|
|
95
|
-
.mm_radio .active .figure::before {position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);content:" ";display:inline-block;width:0.325rem;height:0.325rem;background:#38f;border-radius:50%;}
|
|
96
|
-
|
|
97
|
-
|
|
98
|
-
/* 发送验证码输入框 */
|
|
99
|
-
.mm_code .mm_group {border-bottom:none}
|
|
100
|
-
|
|
101
|
-
/* 计数器 */
|
|
102
|
-
.mm_number {display:inline-block;}
|
|
103
|
-
.mm_number .value {display:flex;}
|
|
104
|
-
.mm_number input[type="number"] {border:none;text-align:center;-moz-appearance:textfield;height:2rem;line-height:2rem;}
|
|
105
|
-
.btn_del,.btn_add {display:block;position:relative;line-height:1;}
|
|
106
|
-
.btn_del::before,.btn_add::before {content:"";display:block;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:0.5rem;height:2px;background:#fff;line-height:1;}
|
|
107
|
-
.btn_add::after {content:"";display:block;position:absolute;top:50%;left:50%;transform:translate(-50%,-50%);width:2px;height:0.5rem;background:#fff;line-height:1;}
|
|
108
|
-
|
|
109
|
-
|
|
110
|
-
/* 开关 */
|
|
111
|
-
.mm_switch .onoff {position:relative;display:block;height:2rem;line-height:2.2rem !important;width:3.75rem !important;background:#fff;border:1px solid #e5e5e5;border-radius:100px;cursor:pointer;transition:all 0.3s ease;}
|
|
112
|
-
.mm_switch .onoff::after {position:absolute;left:-1px;top:-1px;display:block;width:2rem;height:2rem;border-radius:50%;background:#fff;border:1px solid #e5e5e5;box-shadow:0px 3px 3px rgba(0,0,0,0.05);content:'';transition:all 0.3s ease;}
|
|
113
|
-
.mm_switch .active .onoff {background:#04BE02;}
|
|
114
|
-
.mm_switch .active .onoff::after {left:1.64rem;}
|
|
115
|
-
.mm_switch label:active .onoff::after {transform:scale(1.15,0.85);}
|
|
116
|
-
.mm_switch .on,.mm_switch .off {display:block;position:absolute;top:49%;transform:translateY(-50%);}
|
|
117
|
-
.mm_switch .on {left:.25rem;}
|
|
118
|
-
.mm_switch .on::before {content:"ON";font-size:0.625rem;color:#fff;}
|
|
119
|
-
.mm_switch .off {right:.25rem;}
|
|
120
|
-
.mm_switch .off::before {content:"OFF";font-size:0.625rem;color:#999;}
|
|
121
|
-
|
|
122
|
-
|
|
123
|
-
/* 选择框 */
|
|
124
|
-
.mm_select {display:inline-block;}
|
|
125
|
-
.mm_select a {color:inherit;display:inline-block;}
|
|
126
|
-
.mm_select .value {font-size:.875rem;}
|
|
127
|
-
.mm_select select {padding:0 1.5rem 0 0.5rem;border-radius:.25rem;border:1px solid rgba(125,125,125,0.25);height:2rem;background-position-x:calc(100% - .25rem); }
|
|
128
|
-
.mm_select .selected {padding:0 .5rem;border-radius:.25rem;height:2rem;line-height:2rem;border:1px solid rgba(125,125,125,0.25);/* background:url("/img/down.png") no-repeat scroll right center transparent;background-position-x:calc(100% - .25rem);*/}
|
|
129
|
-
.mm_select .mm_box {top:2.05rem;bottom:initial;overflow:hidden;background:#fff;border:1px solid rgba(125,125,125,0.25);border-radius:.25rem;-webkit-box-shadow:0 1px 3px rgba(0,0,0,.2);box-shadow:0 1px 3px rgba(0,0,0,.2);left:0;width:100%;min-width:5rem;}
|
|
130
|
-
.mm_select li {padding:0 .5rem;line-height:2rem;width:100%;}
|
|
131
|
-
.mm_select li:hover {background:#f9f9f9;color:#000000;}
|
|
132
|
-
.current .selected, .hover:hover .selected,.focus:focus .selected {border-color:#38f;}
|
|
133
|
-
.click {display:inline-block;}
|
|
134
|
-
.click .mm_box {right:initial;min-width:5.25rem;}
|
|
135
|
-
|
|
136
|
-
/* 反转器 */
|
|
137
|
-
.mm_reverse {display: flex;}
|
|
138
|
-
.mm_reverse .figure {height:2rem;width:1rem;position:relative;padding-top:.125rem;}
|
|
139
|
-
.mm_input .title,.mm_checkbox .title,.mm_radio .title,.mm_select .title,.mm_number .title,.mm_slider .title,.mm_switch .title,.mm_reverse .title {float:left;padding-left:1rem;padding-right:.5rem;min-width:6.5rem;line-height:2rem;}
|
|
140
|
-
.mm_checkbox .figure {position:relative;top:3px;display:inline-block;overflow:hidden;width:1.125rem;height:1.125rem;border:1px solid #38f;border-radius:50%;}
|
|
141
|
-
table .mm_reverse .figure {float:right;}
|
|
142
|
-
table .mm_reverse .title {min-width:initial;padding-left:0;float: left; white-space: nowrap;}
|
|
143
|
-
.mm_reverse .value {overflow:hidden;}
|
|
144
|
-
.mm_reverse .up,.mm_reverse .down {margin:auto;margin:.2rem auto;display:block;}
|
|
145
|
-
.mm_reverse .up::before {content:"";display:block;margin:auto;width:0;height:0;border-left:.25rem solid transparent;border-right:.25rem solid transparent;border-bottom:.5rem solid #E5E5E5;}
|
|
146
|
-
.mm_reverse .down::after {content:"";display:block;margin:auto;width:0;height:0;border-left:.25rem solid transparent;border-right:.25rem solid transparent;border-top:.5rem solid #E5E5E5;}
|
|
147
|
-
.mm_reverse .up.active::before {border-bottom-color:#38f;}
|
|
148
|
-
.mm_reverse .down.active::after {border-top-color:#38f;}
|
|
149
|
-
.reverse_arrow .up {float:left;height:1rem;position:relative;}
|
|
150
|
-
.reverse_arrow .up::after {background:#E5E5E5;height:.75rem;position:absolute;top:.25rem;right:0;content:"";display:block;width:2px;}
|
|
151
|
-
.reverse_arrow .up::before {border:.15rem solid;border-color:transparent #E5E5E5 #E5E5E5 transparent;}
|
|
152
|
-
.reverse_arrow .up.active::after {background:#38f;}
|
|
153
|
-
.reverse_arrow .up.active::before {border-color:transparent #38f #38f transparent;}
|
|
154
|
-
.reverse_arrow .down {height:1rem;position:relative;margin-left:.5rem;}
|
|
155
|
-
.reverse_arrow .down::before {background:#E5E5E5;height:.75rem;position:absolute;top:0;left:0;content:"";display:block;width:2px;}
|
|
156
|
-
.reverse_arrow .down::after {position:absolute;bottom:0;border:.15rem solid;border-color:#E5E5E5 transparent transparent #E5E5E5;}
|
|
157
|
-
.reverse_arrow .down.active::before {background:#38f;}
|
|
158
|
-
.reverse_arrow .down.active::after {border-color:#38f transparent transparent #38f;}
|
|
159
|
-
.reverse_arrow .active {display:block;}
|
|
160
|
-
|
|
161
|
-
|
|
162
|
-
/* 复选框 */
|
|
163
|
-
.mm_checkbox .active .figure {background:#38f;}
|
|
164
|
-
.mm_checkbox .active .figure::before {position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) rotate(-45deg);content:" ";display:inline-block;width:0.5rem;height:0.25rem;border-left:1px solid #fff;border-bottom:1px solid #fff;}
|
|
165
|
-
|
|
166
|
-
/* 输入框 */
|
|
167
|
-
.mm_input,.mm_checkbox,.mm_radio,.mm_select,.mm_number,.mm_slider,.mm_switch {position:relative;}
|
|
168
|
-
.mm_input .value::before,.mm_checkbox .value:before,.mm_radio .value:before,.mm_number .value:before,.mm_slider .value:before,.mm_switch .value:before {content:"";display:block;}
|
|
169
|
-
.mm_input .value:after,.mm_checkbox .value:after,.mm_radio .value:after,.mm_number .value:after,.mm_slider .value:after,.mm_switch .value:after {content:"";display:block;}
|
|
170
|
-
.mm_input .unit {padding-left:.5rem;padding-right:1rem;}
|
|
171
|
-
|
|
172
|
-
/* 导航 */
|
|
173
|
-
.mm_nav a {color:inherit;text-decoration:none;}
|
|
174
|
-
|
|
175
|
-
/* 分页器 */
|
|
176
|
-
.mm_pager,[class*=mm_pager_] {text-align:center;}
|
|
177
|
-
.mm_pager a,[class*=mm_pager_] a {padding:0 .5rem;position:relative;z-index:1;min-width:2.25rem;white-space:nowrap;display:inline-block;height:2rem;line-height:calc(2rem - 2px);color:#333;border:1px solid rgba(125,125,125,0.25);margin-left:-1px;text-align:center;}
|
|
178
|
-
.mm_pager_sm a {height:1.5rem;line-height:1.5rem;min-width:1.5rem;font-size:0.85rem;}
|
|
179
|
-
.mm_data_count {line-height:2rem;padding:.5rem 0;}
|
|
180
|
-
.goto input {font-size:0.75rem;position:relative;top:-0.05rem;width:3rem;text-align:center;}
|
|
181
|
-
.goto {padding:0.25rem 0;}
|
|
182
|
-
.mm_pager-x a {margin-left:.5rem;color:#333;border-radius:.25rem;}
|
|
183
|
-
.mm_pager-x a:last-of-type {margin-right:0;}
|
|
184
|
-
.mm_pager a:first-child {border-top-left-radius:.25rem;border-bottom-left-radius:.25rem;}
|
|
185
|
-
.mm_pager a:last-child {border-top-right-radius:.25rem;border-bottom-right-radius:.25rem;}
|
|
186
|
-
.mm_pager-x .active {background:#38f;color:#fff;}
|
|
187
|
-
.mm_pager a:hover,.mm_pager a:active {z-index:2;}
|
|
188
|
-
.mm_pager .active,[class*=mm_pager_] .active {background:#38f;color:#fff;border-color:#38f;}
|
|
189
|
-
.mm_pager.group>a,[class*=mm_pager_].group>a {margin-left:-1px;}
|
|
190
|
-
|
|
191
|
-
|
|
192
|
-
/* LOGO */
|
|
193
|
-
#logo {float:left;margin-right:1rem;padding:0.5rem;}
|
|
194
|
-
#logo figure {width:1.5rem;margin-right:.5rem;}
|
|
195
|
-
|
|
196
|
-
/* 定位 */
|
|
197
|
-
#side_left {float:left;margin-right:.5rem;}
|
|
198
|
-
#side_right {float:right;margin-left:.5rem;}
|
|
199
|
-
|
|
200
|
-
/* 导航 */
|
|
201
|
-
#nav_path a::before {content:"\\";color:#999;margin-left:.125rem;margin-right:.5rem;}
|
|
202
|
-
#nav_path a:first-child::before {content:none;}
|
|
203
|
-
#nav_bottom {text-align:center;}
|
|
204
|
-
#nav_bottom a {padding:0.5rem;}
|
|
205
|
-
#nav_main a {line-height:1.5rem;padding:0.5rem;}
|
|
206
|
-
#nav_top a {line-height:1.5rem;padding:0.5rem;}
|
|
207
|
-
#nav_pager {text-align:center;padding:1rem 0;}
|
|
208
|
-
#nav_pager a {border:1px solid rgba(125,125,125,0.25);width:2rem;height:2rem;margin:.25rem;line-height:2rem;border-radius:.25rem;background:#fff;}
|
|
209
|
-
|
|
210
|
-
/* 栏目 */
|
|
211
|
-
#bar_user {text-align:right;}
|
|
212
|
-
#bar_user a {line-height:1.5rem;padding:0.5rem;}
|
|
213
|
-
|
|
214
|
-
/* 列表 */
|
|
215
|
-
#ad_right {border-radius:0.25rem;}
|
|
216
|
-
#list_about ul {list-style-type:none;padding:0 1rem;margin-bottom:1rem;}
|
|
217
|
-
#list_about li {width:100%;padding:.5rem 0;border-top:1px dashed rgba(125,125,125,0.25);}
|
|
218
|
-
#list_about .time {float:right;}
|
|
219
|
-
#list_hot ol {display:block;margin-bottom:1rem;}
|
|
220
|
-
#list_hot li {width:100%;padding:.5rem 0;border-top:1px dashed rgba(125,125,125,0.25);}
|
|
221
|
-
#list_hot .hot {float:right;}
|
|
222
|
-
#list_hot li:first-child {border:none;}
|
|
223
|
-
#list_about li:first-child {border:none;}
|
|
224
|
-
|
|
225
|
-
/* === 图片 === */
|
|
226
|
-
#list_img_1 .mm_img {margin:.5rem;}
|
|
227
|
-
#list_img_1 figure {border-radius:0.25rem;}
|
|
228
|
-
#list_img_1.icon-x figure {border:1px solid rgba(125,125,125,0.25);}
|
|
229
|
-
#list_img_1 h5 {padding-top:.5rem;}
|
|
230
|
-
#list_img_1 p {font-size:.875rem;color:#666;margin-bottom:1rem;}
|
|
231
|
-
#list_img_2 .mm_img {border-radius:0.25rem;margin:.5rem;background:#fff;overflow:hidden;box-shadow:0 0.25rem 0.5rem 0 rgba(7,17,27,0.1);}
|
|
232
|
-
#list_img_2 h5 {margin:.5rem auto;padding:0 1rem;}
|
|
233
|
-
#list_img_2 p {padding:0 1rem;font-size:.875rem;color:#666;padding-bottom:1rem;margin-top:.5rem;}
|
|
234
|
-
|
|
235
|
-
/* 侧边导航 */
|
|
236
|
-
#nav_side .btn {line-height:2.5rem;padding:0 1rem;color:#999;position:relative;overflow:hidden;}
|
|
237
|
-
#nav_side .mm_item>.btn {border-bottom:1px solid rgba(0,0,0,0.3);}
|
|
238
|
-
#nav_side a {display:block;color:inherit;line-height:2.5rem;padding:0 2rem;position:relative;}
|
|
239
|
-
#nav_side .btn: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;}
|
|
240
|
-
#nav_side .btn:hover {color:#fff;background:rgba(3,4,29,0.1);}
|
|
241
|
-
#nav_side .active .btn {color:#fff;background:rgb(49,131,246);background:-moz-linear-gradient(-45deg,rgba(255,255,255,0.5) 0%,rgba(102,188,244,0.42) 39%,rgba(49,166,247,0.42) 40%,rgba(49,131,246,0.3) 100%);background:-webkit-linear-gradient(-45deg,rgba(255,255,255,0.5) 0%,rgba(102,188,244,0.42) 39%,rgba(49,166,247,0.42) 40%,rgba(49,131,246,0.3) 100%);/* Chrome10-25,Safari5.1-6 */background:linear-gradient(135deg,rgba(255,255,255,0.5) 0%,rgba(102,188,244,0.42) 39%,rgba(49,166,247,0.42) 40%,rgba(49,131,246,0.3) 100%);}
|
|
242
|
-
#nav_side .active .btn:after {transform:translateY(-50%) rotate(45deg);border-color:#fff;}
|
|
243
|
-
#nav_side a:hover {color:#fff;}
|
|
244
|
-
#nav_side .router-link-active {color:#3388ff;}
|
|
245
|
-
#nav_side .btn:hover:before {content:"";display:block;width:2px;position:absolute;top:0;bottom:0;left:0;height:100%;background:#38f;}
|
|
246
|
-
#nav_side .box {overflow:hidden;max-height:0;-webkit-transition:max-height 0.2s;transition:max-height 0.2s;background:rgba(0,0,0,0.4);color:#999;border-bottom:1px solid #fff;border-color:rgba(255,255,255,0.1);}
|
|
247
|
-
#nav_side .active .box {max-height:80vh;padding:0.5rem 0;}
|
|
248
|
-
|
|
249
|
-
/* 选项卡 */
|
|
250
|
-
.mm_tab_head {overflow:hidden;display:-webkit-flex;display:flex;flex-flow:row wrap;align-items:flex-start;justify-content:flex-start;}
|
|
251
|
-
.mm_tab_head>div {overflow:hidden;text-align:center;height:2rem;line-height:calc(2rem - 2px);padding:0 1rem;border-bottom:1px solid rgba(125,125,125,0.25);border-right:1px solid rgba(125,125,125,0.25);}
|
|
252
|
-
.mm_tab_head>div:last-child {flex:auto;border-bottom:1px solid rgba(125,125,125,0.25);border-right:0;}
|
|
253
|
-
.mm_tab_head>.active {border-bottom:1px solid #fff;color:#38f;}
|
|
254
|
-
|
|
255
|
-
/* 幻灯片 */
|
|
256
|
-
.mm_slide {list-style-type:none;}
|
|
257
|
-
|
|
258
|
-
/* 表格中的按钮 */
|
|
259
|
-
table .mm_btn {border-radius:.25rem;display:inline-block;height:1.5rem;line-height:1.5rem;padding-left:0.75rem;padding-right:0.75rem;margin-right:.5rem;font-size:.75rem;}
|
|
260
|
-
table .icon,table .avatar { width: 2.5rem; }
|
|
261
|
-
table .img { min-width: 5rem; }
|
|
262
|
-
|
|
263
|
-
/* 图片上传 */
|
|
264
|
-
.mm_upload_img {position: relative;}
|
|
265
|
-
.mm_upload_img .btns{position:absolute;left:calc(100% + 1rem);bottom: 0;}
|
|
266
|
-
.mm_upload_img .btn_link{font-size: .625rem; padding:0 .5rem; height: 1.5rem; line-height: 1.5rem;white-space:nowrap;margin-top: .5rem; }
|
|
267
|
-
.mm_upload_img .from_default { min-width: 75%; }
|
|
268
|
-
.mm_upload_img .btn_close { position: absolute; left: 50%; bottom: -3rem; transform: translateX(-50%); border: 1px solid rgb(105, 105, 105); background: rgba(255,255,255,0.7); border-radius: 50%; padding: 0 .05rem .1rem 0; width: 2rem; height: 2rem; color: rgb(105, 105, 105); }
|
|
269
|
-
.mm_upload_img .mm_icon {border-radius:0.25rem;border:1px dashed rgba(125,125,125,0.5);}
|
|
270
|
-
.mm_upload_img .mm_icon img {display:none;}
|
|
271
|
-
.upload_add .mm_icon::before,.upload_add .mm_icon::after {content:"";display:block;transform:translate(-50%,-50%);position:absolute;top:50%;left:50%;background:rgba(125,125,125,0.5);}
|
|
272
|
-
.upload_add .mm_icon::before {width:1rem;height:.125rem;}
|
|
273
|
-
.upload_add .mm_icon::after {width:.125rem;height:1rem;}
|
|
274
|
-
|
|
275
|
-
/* 盒子样式 */
|
|
276
|
-
.hover:hover .mm_box {display:inline-block;}
|
|
277
|
-
.focus:focus .mm_box {display:inline-block;}
|
|
278
|
-
.active:active .mm_box {display:inline-block;}
|
|
279
|
-
|
|
280
|
-
.inline .mm_input,.inline .mm_checkbox,.inline .mm_radio,.inline .mm_select,.inline .mm_number,.inline .mm_slider,.inline .mm_switch {display:inline-block;}
|
|
281
|
-
|
|
282
|
-
.pc .mm_select {padding-top:.5rem;padding-bottom:.5rem;}
|
|
283
|
-
.pc .mm_input {padding-top:.5rem;padding-bottom:.5rem;}
|
|
284
|
-
.pc .mm_input input {padding:.25rem .5rem;border-radius:.25rem;border:1px solid rgba(125,125,125,0.25);height:2rem;min-width:12rem;}
|
|
285
|
-
.pc .mm_input .title {line-height:2rem;}
|
|
286
|
-
.pc .mm_radio .value {line-height:2rem;}
|
|
287
|
-
.pc .mm_checkbox .value {line-height:2rem;}
|
|
288
|
-
.pc .mm_checkbox .figure {margin-right:.5rem;}
|
|
289
|
-
.pc .mm_number [class*=mm_btn] {font-size:1.25rem;border-radius:50%;padding:0;width:1.5rem;height:1.5rem;line-height:1.5rem;margin:0.25rem .5rem;}
|
|
290
|
-
.pc .mm_number input {border:1px solid rgba(125,125,125,0.25);border-radius:.25rem;}
|
|
291
|
-
.mobile .mm_number .value {border:1px solid #38f;border-radius:0.25rem;}
|
|
292
|
-
.mobile .mm_number [class*=mm_btn] {border-radius:0;min-width:2rem;}
|
|
293
|
-
.mobile .mm_input {margin-bottom:-1px;padding-top:.25rem;padding-bottom:.25rem;border-top:1px solid #DBDBDB;border-bottom:1px solid #DBDBDB;}
|
|
294
|
-
.mobile .mm_input .title {height:2rem;line-height:2rem;}
|
|
295
|
-
.mobile .mm_input input {line-height:2rem;height:2rem;padding:0 .5rem;flex:1;border-color:transparent;}
|
|
296
|
-
.mobile .mm_input .title~.value {overflow:hidden;display:flex;}
|
|
297
|
-
.mobile .mm_input .unit {line-height:2rem;height:2rem;}
|
|
298
|
-
.mobile .mm_checkbox .figure {margin-right:1rem;}
|
|
299
|
-
.mobile .mm_radio label,.mobile .mm_checkbox label {display:block;margin:-1px 0 0 0;padding:0.5rem;border-top:1px solid #DBDBDB;border-bottom:1px solid #DBDBDB;}
|
|
300
|
-
.mobile .mm_radio .figure {float:right;border:none;}
|
|
301
|
-
.mobile .mm_radio .active .figure::before {position:absolute;top:50%;left:50%;transform:translate(-50%,-50%) rotate(-45deg);content:" ";display:inline-block;width:1rem;height:0.5rem;border-left:1px solid #38f;border-bottom:1px solid #38f;border-radius:0;background:none;}
|
|
302
|
-
.mobile .mm_switch {margin-bottom:-1px;padding-top:.25rem;padding-bottom:.25rem;border-top:1px solid rgba(125,125,125,0.25);border-bottom:1px solid rgba(125,125,125,0.25);overflow:hidden;}
|
|
303
|
-
.mobile .mm_switch .onoff {float:right;margin-right:1rem;}
|
|
304
|
-
|
|
305
|
-
|
|
306
|
-
#slide_top img {border-radius:0.25rem;}
|
|
307
|
-
.td_display { width: 3rem; text-align: center;border-radius: .25rem; border: 1px solid #DBDBDB; }
|