|
@@ -0,0 +1,371 @@
|
|
|
|
|
+/*
|
|
|
|
|
+*这里的值严格按照UI设计图标注值来进行设置
|
|
|
|
|
+*/
|
|
|
|
|
+/*
|
|
|
|
|
+*颜色
|
|
|
|
|
+*/
|
|
|
|
|
+/*
|
|
|
|
|
+*页面的边距
|
|
|
|
|
+*/
|
|
|
|
|
+/*
|
|
|
|
|
+*字体
|
|
|
|
|
+*/
|
|
|
|
|
+/*
|
|
|
|
|
+*头像
|
|
|
|
|
+*/
|
|
|
|
|
+/*
|
|
|
|
|
+ * 按钮
|
|
|
|
|
+ */
|
|
|
|
|
+/*
|
|
|
|
|
+*对常见的多行样式进行了方法封装,方便调用,加快开发效率
|
|
|
|
|
+*/
|
|
|
|
|
+html,
|
|
|
|
|
+body {
|
|
|
|
|
+ min-height: 100vh;
|
|
|
|
|
+ width: 100vw;
|
|
|
|
|
+ background-color: #eee;
|
|
|
|
|
+ margin: 0;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ font-weight: initial !important;
|
|
|
|
|
+ font-size: 14px !important;
|
|
|
|
|
+ color: #333 !important;
|
|
|
|
|
+}
|
|
|
|
|
+html *,
|
|
|
|
|
+body * {
|
|
|
|
|
+ text-decoration: none !important;
|
|
|
|
|
+ font-family: Verdana, Arial, Helvetica, sans-serif;
|
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-ellipsis {
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+ text-overflow: ellipsis;
|
|
|
|
|
+ white-space: nowrap;
|
|
|
|
|
+ display: block;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-align-center {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+}
|
|
|
|
|
+input::-webkit-input-placeholder,
|
|
|
|
|
+textarea::-webkit-input-placeholder {
|
|
|
|
|
+ font-weight: initial;
|
|
|
|
|
+ font-size: 12px;
|
|
|
|
|
+ color: #999;
|
|
|
|
|
+ resize: none;
|
|
|
|
|
+}
|
|
|
|
|
+*::-webkit-scrollbar {
|
|
|
|
|
+ width: 8px;
|
|
|
|
|
+ height: 8px;
|
|
|
|
|
+}
|
|
|
|
|
+/*定义滚动条轨道 内阴影+圆角*/
|
|
|
|
|
+*::-webkit-scrollbar-track {
|
|
|
|
|
+ border-radius: 10px;
|
|
|
|
|
+ /*滚动条的背景区域的圆角*/
|
|
|
|
|
+ background-color: #eee;
|
|
|
|
|
+ /*滚动条的背景颜色*/
|
|
|
|
|
+}
|
|
|
|
|
+/*定义滑块 内阴影+圆角*/
|
|
|
|
|
+*::-webkit-scrollbar-thumb {
|
|
|
|
|
+ border-radius: 10px;
|
|
|
|
|
+ /*滚动条的圆角*/
|
|
|
|
|
+ background-color: #e6e6e6;
|
|
|
|
|
+ /*滚动条的背景颜色*/
|
|
|
|
|
+}
|
|
|
|
|
+.ms-container {
|
|
|
|
|
+ margin: 12px;
|
|
|
|
|
+ height: calc(100% - 24px);
|
|
|
|
|
+ padding: 14px;
|
|
|
|
|
+ background: #fff;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-header {
|
|
|
|
|
+ padding: 10px;
|
|
|
|
|
+ margin: 0;
|
|
|
|
|
+ border-bottom: 1px solid #ddd;
|
|
|
|
|
+ background: #fff;
|
|
|
|
|
+ height: 50px;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-header button {
|
|
|
|
|
+ height: 30px;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-pagination {
|
|
|
|
|
+ padding: 20px 0;
|
|
|
|
|
+ text-align: right;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-fr {
|
|
|
|
|
+ float: right;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-tr {
|
|
|
|
|
+ text-align: right;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-weixin-content {
|
|
|
|
|
+ width: calc(100% - 140px);
|
|
|
|
|
+}
|
|
|
|
|
+.ms-weixin-dialog .el-dialog__header {
|
|
|
|
|
+ height: 55px;
|
|
|
|
|
+ box-sizing: border-box;
|
|
|
|
|
+ padding: 10px 10px 25px 10px;
|
|
|
|
|
+ border-bottom: 1px solid #e6e6e6;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-weixin-dialog .el-dialog__header .el-dialog__title {
|
|
|
|
|
+ font-weight: bold;
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ color: #333;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-weixin-dialog .el-dialog__footer {
|
|
|
|
|
+ border-top: 1px solid #e6e6e6;
|
|
|
|
|
+ padding: 15px !important;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-hover {
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-hover:hover {
|
|
|
|
|
+ color: #0099ff;
|
|
|
|
|
+ background: #fff;
|
|
|
|
|
+ border-color: #0099ff;
|
|
|
|
|
+}
|
|
|
|
|
+.index {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-header {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ padding: 0;
|
|
|
|
|
+ background-color: #0099ff;
|
|
|
|
|
+ height: 50px !important;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-header .ms-admin-header-menu {
|
|
|
|
|
+ background-color: #0099ff;
|
|
|
|
|
+ width: auto;
|
|
|
|
|
+ border-bottom: none;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-header .ms-admin-header-menu > .ms-admin-menu-item > *,
|
|
|
|
|
+.ms-admin-header .ms-admin-header-menu > .ms-admin-menu-item {
|
|
|
|
|
+ height: 50px !important;
|
|
|
|
|
+ line-height: 50px !important;
|
|
|
|
|
+ background-color: #0099ff !important;
|
|
|
|
|
+ color: rgba(255, 255, 255, 0.65) !important;
|
|
|
|
|
+ border-bottom: none !important;
|
|
|
|
|
+ font-size: 1em;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-header .ms-admin-header-menu > .ms-admin-menu-item > *:hover,
|
|
|
|
|
+.ms-admin-header .ms-admin-header-menu > .ms-admin-menu-item:hover {
|
|
|
|
|
+ color: #fff !important;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-header .ms-admin-header-menu > .ms-admin-menu-item > *.is-active,
|
|
|
|
|
+.ms-admin-header .ms-admin-header-menu > .ms-admin-menu-item.is-active {
|
|
|
|
|
+ color: #fff !important;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-header .ms-admin-header-menu .ms-admin-shortcut-menu {
|
|
|
|
|
+ user-select: none;
|
|
|
|
|
+ outline: none;
|
|
|
|
|
+ padding-left: 20px;
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ min-width: 500px;
|
|
|
|
|
+ min-height: 200px;
|
|
|
|
|
+ background-color: #fff !important;
|
|
|
|
|
+ height: auto;
|
|
|
|
|
+ flex-wrap: wrap;
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ right: 0;
|
|
|
|
|
+ top: 0;
|
|
|
|
|
+ z-index: 9;
|
|
|
|
|
+ background: #ffffff;
|
|
|
|
|
+ border: 1px solid #e6e6e6;
|
|
|
|
|
+ box-shadow: 2px 3px 5px 0.1px rgba(0, 0, 0, 0.1);
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-header .ms-admin-header-menu .ms-admin-shortcut-menu > li {
|
|
|
|
|
+ margin: 0;
|
|
|
|
|
+ margin-right: 20px;
|
|
|
|
|
+ text-align: left;
|
|
|
|
|
+ display: -webkit-inline-box;
|
|
|
|
|
+ display: inline-block;
|
|
|
|
|
+ height: 50px;
|
|
|
|
|
+ line-height: 50px;
|
|
|
|
|
+ font-weight: normal;
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ color: #333;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-header .ms-admin-header-menu .ms-admin-shortcut-menu > li:hover {
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ color: #0099ff;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-header .ms-admin-header-menu .ms-admin-shortcut-menu i {
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ top: 18px;
|
|
|
|
|
+ right: 19px;
|
|
|
|
|
+ font-weight: normal;
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ color: #333;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-header .ms-admin-header-menu .ms-admin-shortcut-menu i:hover {
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-logo {
|
|
|
|
|
+ min-width: 200px;
|
|
|
|
|
+ width: 200px;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ overflow: hidden;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-logo > img {
|
|
|
|
|
+ padding: 20px 0 20px 20px;
|
|
|
|
|
+ width: 80px;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-logo > div {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-logo > div img {
|
|
|
|
|
+ margin-top: -10px;
|
|
|
|
|
+ margin-left: 3px;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-logo > div span {
|
|
|
|
|
+ margin-top: -7px;
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ margin-left: 6px;
|
|
|
|
|
+ font-size: 12px;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-logo .iconfont {
|
|
|
|
|
+ color: #fff;
|
|
|
|
|
+ margin-left: auto;
|
|
|
|
|
+ margin-right: 20px;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-mstore {
|
|
|
|
|
+ margin-left: auto;
|
|
|
|
|
+ min-width: 200px;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ justify-content: flex-end;
|
|
|
|
|
+ padding: 0;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-mstore .ms-admin-mstore-icon {
|
|
|
|
|
+ min-width: 50px;
|
|
|
|
|
+ width: 50px;
|
|
|
|
|
+ height: 50px;
|
|
|
|
|
+ background-color: #0080FF;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ justify-content: center;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-mstore .ms-admin-mstore-icon .iconfont {
|
|
|
|
|
+ color: #fff;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-login {
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-login > span {
|
|
|
|
|
+ width: 120px;
|
|
|
|
|
+ padding: 0 20px;
|
|
|
|
|
+ height: 50px;
|
|
|
|
|
+ display: flex;
|
|
|
|
|
+ align-items: center;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+ outline: none;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-login > span img {
|
|
|
|
|
+ border-radius: 50%;
|
|
|
|
|
+ width: 20px;
|
|
|
|
|
+ height: 20px;
|
|
|
|
|
+ margin-right: 8px;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-login > span span {
|
|
|
|
|
+ color: #fff;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-login .active {
|
|
|
|
|
+ background: #fff;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-login .active span {
|
|
|
|
|
+ color: #333;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-login-down {
|
|
|
|
|
+ width: 120px;
|
|
|
|
|
+ border: none;
|
|
|
|
|
+ margin: 0 !important;
|
|
|
|
|
+ padding: 0 !important;
|
|
|
|
|
+ border-radius: 0;
|
|
|
|
|
+ box-shadow: 0 4px 8px 0 rgba(0, 0, 0, 0.1);
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-login-down > .popper__arrow {
|
|
|
|
|
+ display: none;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-menu-aside {
|
|
|
|
|
+ width: 200px !important;
|
|
|
|
|
+ overflow: visible;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-menu-aside .ms-admin-menu {
|
|
|
|
|
+ width: 200px;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+ position: relative;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-menu-aside .ms-admin-menu .el-menu--inline .is-active {
|
|
|
|
|
+ border-left: 2px solid #0099ff;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-menu-aside .ms-admin-menu .ms-menu-expand {
|
|
|
|
|
+ transform: rotate(270deg);
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ right: -34px;
|
|
|
|
|
+ top: 50%;
|
|
|
|
|
+ cursor: pointer;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-menu-aside .ms-admin-menu .ms-menu-expand i {
|
|
|
|
|
+ font-weight: initial;
|
|
|
|
|
+ font-size: 14px;
|
|
|
|
|
+ color: #333;
|
|
|
|
|
+ position: absolute;
|
|
|
|
|
+ transform: rotate(90deg);
|
|
|
|
|
+ top: 5px;
|
|
|
|
|
+ right: 43%;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-menu-aside .ms-admin-menu .ms-menu-expand::before {
|
|
|
|
|
+ border-color: transparent transparent #eee;
|
|
|
|
|
+ border-style: none solid solid;
|
|
|
|
|
+ border-width: 0 30px 22px;
|
|
|
|
|
+ content: "";
|
|
|
|
|
+ display: block;
|
|
|
|
|
+ height: 0;
|
|
|
|
|
+ left: -10px;
|
|
|
|
|
+ width: 30px;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-menu-aside .ms-admin-menu .ms-menu-expand-active {
|
|
|
|
|
+ transform: rotate(90deg);
|
|
|
|
|
+ transition: all .3 ease;
|
|
|
|
|
+ right: -56px;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-menu-aside .ms-admin-menu-active {
|
|
|
|
|
+ width: 60px;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-menu-aside-active {
|
|
|
|
|
+ width: 60px !important;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-container {
|
|
|
|
|
+ height: calc(100vh - 60px);
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-container > .ms-admin-main {
|
|
|
|
|
+ padding: 0;
|
|
|
|
|
+ background-color: #fff;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-container > .ms-admin-main .ms-admin-tabs {
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-container > .ms-admin-main .ms-admin-tabs .el-tabs__content {
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-container > .ms-admin-main .ms-admin-tabs .el-tabs__content .el-tab-pane {
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-container > .ms-admin-main .ms-admin-tabs .el-tabs__nav-scroll {
|
|
|
|
|
+ background: #fafafa;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-container > .ms-admin-main .ms-admin-tabs .el-tabs__nav-scroll .el-tabs__nav {
|
|
|
|
|
+ border-left: none;
|
|
|
|
|
+ border-radius: 0;
|
|
|
|
|
+}
|
|
|
|
|
+.ms-admin-container > .ms-admin-main iframe {
|
|
|
|
|
+ width: 100%;
|
|
|
|
|
+ height: 100%;
|
|
|
|
|
+ border: none !important;
|
|
|
|
|
+}
|