|
@ -732,9 +732,35 @@ export default { |
|
|
</script> |
|
|
</script> |
|
|
|
|
|
|
|
|
<style lang="scss" scoped> |
|
|
<style lang="scss" scoped> |
|
|
@import "@/assets/scss/c/config"; |
|
|
// @import "@/assets/scss/c/config"; |
|
|
@import "@/assets/scss/c/function"; |
|
|
// @import "@/assets/scss/c/function"; |
|
|
@import "@/assets/scss/modules/visual/c/common"; |
|
|
// @import "@/assets/scss/modules/visual/c/common"; |
|
|
|
|
|
@mixin toe { |
|
|
|
|
|
overflow: hidden; |
|
|
|
|
|
white-space: nowrap; |
|
|
|
|
|
text-overflow: ellipsis; |
|
|
|
|
|
word-wrap: normal; |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
@mixin scrollBar2 { |
|
|
|
|
|
&::-webkit-scrollbar { |
|
|
|
|
|
/*滚动条整体样式*/ |
|
|
|
|
|
width: 8px; /*高宽分别对应横竖滚动条的尺寸*/ |
|
|
|
|
|
height: 1px; |
|
|
|
|
|
} |
|
|
|
|
|
&::-webkit-scrollbar-thumb { |
|
|
|
|
|
/*滚动条里面小方块*/ |
|
|
|
|
|
border-radius: 8px; |
|
|
|
|
|
box-shadow: inset 0 0 5px rgba(#000, 0.1); |
|
|
|
|
|
background: linear-gradient(270deg, #999, #ddd); |
|
|
|
|
|
} |
|
|
|
|
|
&::-webkit-scrollbar-track { |
|
|
|
|
|
/*滚动条里面轨道*/ |
|
|
|
|
|
box-shadow: inset 0 0 5px rgba(#000, 0.1); |
|
|
|
|
|
border-radius: 8px; |
|
|
|
|
|
background: darken(#999, 20); |
|
|
|
|
|
} |
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
.m-pop { |
|
|
.m-pop { |
|
|
@include scrollBar2; |
|
|
@include scrollBar2; |
|
|