2021-02-06 23:36:46 +08:00
|
|
|
/* -- 全局样式 -- */
|
|
|
|
|
|
|
|
// 变量
|
|
|
|
|
|
|
|
@headerHeight: 4rem;
|
|
|
|
|
2021-02-08 00:46:15 +08:00
|
|
|
@colorPrimary: #2196F3;
|
2021-02-06 23:36:46 +08:00
|
|
|
@colorSecondary: #67C23A;
|
2021-02-08 00:46:15 +08:00
|
|
|
@colorWhite: #F9F9F9;
|
2021-02-06 23:36:46 +08:00
|
|
|
|
|
|
|
// 滚动条
|
|
|
|
|
|
|
|
::-webkit-scrollbar {
|
|
|
|
width: 0.5rem;
|
|
|
|
height: 0.5rem;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-track {
|
|
|
|
background-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
::-webkit-scrollbar-thumb {
|
|
|
|
border-radius: 1rem;
|
2021-02-08 00:46:15 +08:00
|
|
|
background-color: #EEE;
|
2021-02-06 23:36:46 +08:00
|
|
|
|
|
|
|
&:hover {
|
|
|
|
background-color: @colorPrimary;
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
// 标签
|
|
|
|
|
|
|
|
body {
|
|
|
|
user-select: none;
|
2021-02-08 00:46:15 +08:00
|
|
|
overflow: hidden;
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
}
|
|
|
|
|
|
|
|
// 限制长度
|
|
|
|
|
|
|
|
.limitLine(@line) {
|
|
|
|
display: -webkit-box;
|
|
|
|
-webkit-line-clamp: @line;
|
|
|
|
-webkit-box-orient: vertical;
|
|
|
|
overflow: hidden;
|
|
|
|
text-overflow: ellipsis;
|
|
|
|
}
|
|
|
|
|
|
|
|
.limit-line-1 {
|
|
|
|
.limitLine(1);
|
2021-02-06 23:36:46 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
// 阴影
|
|
|
|
|
|
|
|
.shadow-1 {
|
|
|
|
box-shadow: 0 0 0.5rem rgba(0, 0, 0, 0.1);
|
|
|
|
}
|
|
|
|
|
2021-02-08 00:46:15 +08:00
|
|
|
.shadow-2 {
|
|
|
|
box-shadow: 0 0.2rem 0.5rem rgba(0, 0, 0, 0.05);
|
|
|
|
}
|
|
|
|
|
|
|
|
// 载入中(链接列表)
|
2021-02-06 23:36:46 +08:00
|
|
|
|
|
|
|
.loading-link {
|
|
|
|
background-color: rgba(255, 255, 255, 0.5) !important;
|
|
|
|
backdrop-filter: blur(0.2rem);
|
|
|
|
|
|
|
|
.el-icon-loading {
|
|
|
|
font-size: 2rem !important;
|
|
|
|
}
|
|
|
|
|
|
|
|
.el-loading-text {
|
|
|
|
font-size: 1.5rem !important;
|
|
|
|
}
|
|
|
|
}
|
2021-02-08 00:46:15 +08:00
|
|
|
|
|
|
|
// Element
|
|
|
|
|
|
|
|
.el-select-dropdown {
|
|
|
|
border: none !important;
|
|
|
|
}
|