|
|
|
|
@ -114,8 +114,9 @@ export default {
|
|
|
|
|
height: 50px;
|
|
|
|
|
overflow: hidden;
|
|
|
|
|
position: relative;
|
|
|
|
|
background: #fff;
|
|
|
|
|
box-shadow: 0 1px 4px rgba(0,21,41,.08);
|
|
|
|
|
background: rgba(13, 23, 47, 0.85); // 深蓝科技感背景
|
|
|
|
|
box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
|
|
|
|
|
border-bottom: 1px solid rgba(64, 158, 255, 0.2); // 科技蓝边框
|
|
|
|
|
|
|
|
|
|
.hamburger-container {
|
|
|
|
|
line-height: 46px;
|
|
|
|
|
@ -124,9 +125,10 @@ export default {
|
|
|
|
|
cursor: pointer;
|
|
|
|
|
transition: background .3s;
|
|
|
|
|
-webkit-tap-highlight-color: transparent;
|
|
|
|
|
color: #e4e7ed; // 图标颜色适配深色背景
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background: rgba(0, 0, 0, .025)
|
|
|
|
|
background: rgba(64, 158, 255, 0.1); // 科技蓝悬停效果
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
@ -148,6 +150,7 @@ export default {
|
|
|
|
|
float: right;
|
|
|
|
|
height: 100%;
|
|
|
|
|
line-height: 50px;
|
|
|
|
|
background: rgba(13, 23, 47, 0.85); /* 确保右侧菜单背景色 */
|
|
|
|
|
|
|
|
|
|
&:focus {
|
|
|
|
|
outline: none;
|
|
|
|
|
@ -158,7 +161,7 @@ export default {
|
|
|
|
|
padding: 0 8px;
|
|
|
|
|
height: 100%;
|
|
|
|
|
font-size: 18px;
|
|
|
|
|
color: #5a5e66;
|
|
|
|
|
color: #e4e7ed; // 浅色文字适配深色背景
|
|
|
|
|
vertical-align: text-bottom;
|
|
|
|
|
|
|
|
|
|
&.hover-effect {
|
|
|
|
|
@ -166,7 +169,7 @@ export default {
|
|
|
|
|
transition: background .3s;
|
|
|
|
|
|
|
|
|
|
&:hover {
|
|
|
|
|
background: rgba(0, 0, 0, .025)
|
|
|
|
|
background: rgba(64, 158, 255, 0.1); // 科技蓝悬停效果
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
@ -185,6 +188,7 @@ export default {
|
|
|
|
|
width: 30px;
|
|
|
|
|
height: 30px;
|
|
|
|
|
border-radius: 50%;
|
|
|
|
|
border: 1px solid rgba(64, 158, 255, 0.2); // 科技蓝边框
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.user-nickname{
|
|
|
|
|
@ -193,6 +197,7 @@ export default {
|
|
|
|
|
left: 2px;
|
|
|
|
|
font-size: 14px;
|
|
|
|
|
font-weight: bold;
|
|
|
|
|
color: #e4e7ed; // 浅色文字适配深色背景
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
.el-icon-caret-bottom {
|
|
|
|
|
@ -201,6 +206,7 @@ export default {
|
|
|
|
|
right: -20px;
|
|
|
|
|
top: 25px;
|
|
|
|
|
font-size: 12px;
|
|
|
|
|
color: #e4e7ed; // 图标颜色适配深色背景
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|