|
@@ -52,6 +52,12 @@ $smp--box-shadow-1: 0 0 5px rgba(0,0,0,0.1);
|
|
|
background-color: $smp--color-blue;
|
|
|
color: $smp--color-white;
|
|
|
}
|
|
|
+@mixin normal-shadow() {
|
|
|
+ box-shadow: $smp--box-shadow;
|
|
|
+}
|
|
|
+@mixin normal-shadow-1() {
|
|
|
+ box-shadow: $smp--box-shadow-1;
|
|
|
+}
|
|
|
|
|
|
.smp-btn-hollow{
|
|
|
@include smp-btn;
|
|
@@ -187,6 +193,29 @@ $smp--box-shadow-1: 0 0 5px rgba(0,0,0,0.1);
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
+/* 滚动条
|
|
|
+------------------------------ */
|
|
|
+.scrollbar-transparent{
|
|
|
+ overflow:auto;
|
|
|
+ // padding-right:15px;
|
|
|
+ &::-webkit-scrollbar {
|
|
|
+ /*滚动条整体样式*/
|
|
|
+ width : 5px; /*高宽分别对应横竖滚动条的尺寸*/
|
|
|
+ height: 0;
|
|
|
+ }
|
|
|
+ &::-webkit-scrollbar-thumb {
|
|
|
+ /*滚动条里面小方块*/
|
|
|
+ background: transparent;
|
|
|
+ }
|
|
|
+ &::-webkit-scrollbar-track {
|
|
|
+ /*滚动条里面轨道*/
|
|
|
+ background: transparent;
|
|
|
+ // box-shadow:inset 0 0 5px rgba(0, 0, 0, 0.2);
|
|
|
+ }
|
|
|
+ &:hover::-webkit-scrollbar-thumb{
|
|
|
+ background: rgba(0,0,0,0.1);
|
|
|
+ }
|
|
|
+}
|
|
|
/* smp mini-table
|
|
|
------------------------------ */
|
|
|
.smp-mini-table.el-table{
|
|
@@ -194,7 +223,7 @@ $smp--box-shadow-1: 0 0 5px rgba(0,0,0,0.1);
|
|
|
display: none;
|
|
|
}
|
|
|
th{
|
|
|
- background-color: $smp--color-gray_ef;
|
|
|
+ background-color: $smp--color-gray_f5;
|
|
|
border-bottom:none;
|
|
|
}
|
|
|
tr{
|
|
@@ -225,6 +254,23 @@ ul,li{
|
|
|
|
|
|
/* Reset element-ui
|
|
|
------------------------------ */
|
|
|
+.smp-normal-input{
|
|
|
+ .el-input__inner{
|
|
|
+ // padding:0 25px 0 0;
|
|
|
+ @include smp-no-radius;
|
|
|
+ @include smp-input;
|
|
|
+ border-right:none;
|
|
|
+ }
|
|
|
+ .el-input-group__append{
|
|
|
+ @include smp-no-radius;
|
|
|
+ background-color: $smp--color-blue;
|
|
|
+ border-color: $smp--color-blue;
|
|
|
+ color:#fff;
|
|
|
+ width:54px;
|
|
|
+ padding:0;
|
|
|
+ text-align: center;
|
|
|
+ }
|
|
|
+}
|
|
|
.aui-wrapper {
|
|
|
.smp-table.el-table{
|
|
|
border:1px solid $smp--color-gray_ef;
|
|
@@ -290,13 +336,6 @@ ul,li{
|
|
|
}
|
|
|
}
|
|
|
}
|
|
|
- // .smp-normal-input{
|
|
|
- // .el-input__inner{
|
|
|
- // // padding:0 25px 0 0;
|
|
|
- // @include smp-no-radius;
|
|
|
- // @include smp-input;
|
|
|
- // }
|
|
|
- // }
|
|
|
// .smp-date-picker{
|
|
|
// &.el-input__inner{
|
|
|
// // padding:0 25px 0 0;
|
|
@@ -1646,4 +1685,151 @@ html,body{
|
|
|
// 主导航菜单下无子菜单,左侧隐藏
|
|
|
.aui-wrapper.all-main-wraper .smp_main-r.main-no-left{
|
|
|
padding-left:10px;
|
|
|
+}
|
|
|
+
|
|
|
+// 基础组件
|
|
|
+.basic-com{
|
|
|
+ height:100%;
|
|
|
+ display: flex;
|
|
|
+ flex-direction: column;
|
|
|
+ .bc-top-search{
|
|
|
+ width:743px;
|
|
|
+ margin:0 auto;
|
|
|
+ @include normal-shadow-1();
|
|
|
+ flex-shrink: 0;
|
|
|
+ .smp-normal-input{
|
|
|
+ width:100%;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .bc-bd{
|
|
|
+ padding:20px 0;
|
|
|
+ flex:1;
|
|
|
+ height:0;
|
|
|
+ }
|
|
|
+ .bc-wraper{
|
|
|
+ padding:0 47px;
|
|
|
+ height:100%;
|
|
|
+ }
|
|
|
+ // .bc-wraper{
|
|
|
+ // padding:0 47px;
|
|
|
+ // height:100%;
|
|
|
+ // .bc-item{
|
|
|
+ // display: inline-block;
|
|
|
+ // vertical-align: top;
|
|
|
+ // width:32%;
|
|
|
+ // height:200px;
|
|
|
+ // background-color: $smp--color-blue;
|
|
|
+ // margin:0 2% 20px 0;
|
|
|
+ // &:nth-child(3n){
|
|
|
+ // margin-right:0;
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+ // }
|
|
|
+}
|
|
|
+// 瀑布流
|
|
|
+.water-fall{
|
|
|
+ position: relative;
|
|
|
+ width:100%;
|
|
|
+ .wf-item{
|
|
|
+ position:absolute;
|
|
|
+ top:0;
|
|
|
+ left:0;
|
|
|
+ width:100px;
|
|
|
+ // height:0;
|
|
|
+ background-color: $smp--color-warn-lv-1;
|
|
|
+ }
|
|
|
+}
|
|
|
+
|
|
|
+// 基础组件方框
|
|
|
+.com-one{
|
|
|
+ width:100%;
|
|
|
+ background-color: $smp--color-white;
|
|
|
+ @include normal-shadow();
|
|
|
+ .co-hd{
|
|
|
+ position:relative;
|
|
|
+ width:100%;
|
|
|
+ height:41px;
|
|
|
+ .icon-title-bg{
|
|
|
+ width:35px;
|
|
|
+ height:41px;
|
|
|
+ background: url('~@/assets/img/common/icon-pop-title.png') 0 0 no-repeat;
|
|
|
+ display: block;
|
|
|
+ }
|
|
|
+ .title-box{
|
|
|
+ position:absolute;
|
|
|
+ top:0;
|
|
|
+ left:0;
|
|
|
+ height:41px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ font-size:18px;
|
|
|
+ color:$smp--color-font-color-3;
|
|
|
+ font-weight:bold;
|
|
|
+ text-indent: 11px;
|
|
|
+ }
|
|
|
+ }
|
|
|
+ .co-bd{
|
|
|
+ min-height:295px;
|
|
|
+ }
|
|
|
+
|
|
|
+}
|
|
|
+
|
|
|
+// 基础组件子组件
|
|
|
+.com-menu{
|
|
|
+ .cm-subwraper{
|
|
|
+ display: flex;
|
|
|
+ flex-wrap: wrap;
|
|
|
+ padding:5px 4.8% 0;
|
|
|
+ }
|
|
|
+}
|
|
|
+.com-sub-menu{
|
|
|
+ width:33.3%;
|
|
|
+ flex-shrink: 0;
|
|
|
+ padding:0 5.1% 0 0;
|
|
|
+ margin:0 0 20px 0;
|
|
|
+ &:nth-child(3n){
|
|
|
+ padding:0;
|
|
|
+ }
|
|
|
+ .csm-item{
|
|
|
+ background-color: #f00;
|
|
|
+ @include smp-radius-normal();
|
|
|
+ height:68px;
|
|
|
+ display: flex;
|
|
|
+ align-items: center;
|
|
|
+ cursor: pointer;
|
|
|
+ .csm-icon{
|
|
|
+ width:38px;
|
|
|
+ height:38px;
|
|
|
+ border-radius:100px;
|
|
|
+ background-color: #ff0;
|
|
|
+ flex-shrink: 0;
|
|
|
+ margin:0 6.25% 0 9.375%;
|
|
|
+ }
|
|
|
+ .csm-name{
|
|
|
+ flex:1;
|
|
|
+ line-height: 20px;
|
|
|
+ font-size:14px;
|
|
|
+ color:$smp--color-font-color-3;
|
|
|
+ max-height:60px;
|
|
|
+ overflow:hidden;
|
|
|
+ padding:0 8% 0 0;
|
|
|
+ white-space:pre-wrap;
|
|
|
+ }
|
|
|
+ }
|
|
|
+}
|
|
|
+.csm-zk-menu{
|
|
|
+ width:auto!important;
|
|
|
+ .el-submenu__title{
|
|
|
+ padding:0!important;
|
|
|
+ height:auto;
|
|
|
+ }
|
|
|
+ .el-menu-item{
|
|
|
+ padding:0!important;
|
|
|
+ height:auto;
|
|
|
+ }
|
|
|
+ .csm-point{
|
|
|
+ color:$smp--color-font-color-6;
|
|
|
+ font-size:30px;
|
|
|
+ padding:0 5px 0 8px;
|
|
|
+ }
|
|
|
}
|