- 重新设计用户信息区域样式,增加间距和悬停效果 - 添加消息中心抽屉组件,包含消息列表和操作按钮 - 实现用户下拉菜单,包含个人资料和退出登录选项 - 统一PC端和移动端的导航栏样式
317 lines
4.7 KiB
SCSS
317 lines
4.7 KiB
SCSS
.header {
|
|
background: #fff;
|
|
padding: 0 16px;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: space-between;
|
|
height: 64px;
|
|
border-bottom: 1px solid #f0f0f0;
|
|
}
|
|
|
|
.headerLeft {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.menuButton {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 40px;
|
|
height: 40px;
|
|
border-radius: 6px;
|
|
transition: all 0.3s;
|
|
|
|
&:hover {
|
|
background-color: #f5f5f5;
|
|
}
|
|
|
|
.anticon {
|
|
font-size: 18px;
|
|
color: #666;
|
|
}
|
|
}
|
|
|
|
.title {
|
|
font-size: 18px;
|
|
color: #333;
|
|
margin: 0;
|
|
}
|
|
|
|
.headerRight {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
}
|
|
|
|
.userInfo {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 16px;
|
|
padding: 8px 0;
|
|
|
|
.suanli {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 4px;
|
|
font-size: 14px;
|
|
color: #666;
|
|
font-weight: 500;
|
|
padding: 6px 12px;
|
|
background: #f8f9fa;
|
|
border-radius: 20px;
|
|
border: 1px solid #e9ecef;
|
|
|
|
.suanliIcon {
|
|
font-size: 16px;
|
|
color: #ffc107;
|
|
}
|
|
}
|
|
}
|
|
|
|
.messageButton {
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
width: 44px;
|
|
height: 44px;
|
|
border-radius: 50%;
|
|
transition: all 0.3s;
|
|
border: 1px solid #e9ecef;
|
|
background: #fff;
|
|
|
|
&:hover {
|
|
background-color: #f8f9fa;
|
|
border-color: #1890ff;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 12px rgba(24, 144, 255, 0.15);
|
|
}
|
|
|
|
.anticon {
|
|
font-size: 18px;
|
|
color: #666;
|
|
}
|
|
}
|
|
|
|
.userSection {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
cursor: pointer;
|
|
padding: 8px 16px;
|
|
border-radius: 24px;
|
|
transition: all 0.3s;
|
|
border: 1px solid #e9ecef;
|
|
background: #fff;
|
|
|
|
&:hover {
|
|
background-color: #f8f9fa;
|
|
border-color: #1890ff;
|
|
transform: translateY(-1px);
|
|
box-shadow: 0 4px 12px rgba(24, 144, 255, 0.15);
|
|
}
|
|
}
|
|
|
|
.userNickname {
|
|
font-size: 14px;
|
|
color: #333;
|
|
font-weight: 600;
|
|
max-width: 100px;
|
|
overflow: hidden;
|
|
text-overflow: ellipsis;
|
|
white-space: nowrap;
|
|
}
|
|
|
|
.avatar {
|
|
border: 2px solid #e9ecef;
|
|
transition: all 0.3s;
|
|
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.username {
|
|
font-size: 14px;
|
|
color: #333;
|
|
font-weight: 500;
|
|
margin-left: 8px;
|
|
}
|
|
|
|
// 抽屉样式
|
|
.drawer {
|
|
:global(.ant-drawer-header) {
|
|
background: #fafafa;
|
|
border-bottom: 1px solid #f0f0f0;
|
|
}
|
|
|
|
:global(.ant-drawer-body) {
|
|
padding: 0;
|
|
}
|
|
}
|
|
|
|
.drawerContent {
|
|
height: 100%;
|
|
display: flex;
|
|
flex-direction: column;
|
|
background: #f8f9fa;
|
|
}
|
|
|
|
.drawerHeader {
|
|
padding: 20px;
|
|
background: #fff;
|
|
border-bottom: none;
|
|
}
|
|
|
|
.logoSection {
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
}
|
|
|
|
.logoIcon {
|
|
width: 48px;
|
|
height: 48px;
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
border-radius: 12px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
font-size: 24px;
|
|
color: white;
|
|
}
|
|
|
|
.logoText {
|
|
display: flex;
|
|
flex-direction: column;
|
|
}
|
|
|
|
.appName {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #333;
|
|
margin: 0;
|
|
}
|
|
|
|
.appDesc {
|
|
font-size: 12px;
|
|
color: #999;
|
|
margin: 2px 0 0 0;
|
|
}
|
|
|
|
.drawerBody {
|
|
flex: 1;
|
|
padding: 20px;
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 16px;
|
|
}
|
|
|
|
.primaryButton {
|
|
background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
|
|
border-radius: 12px;
|
|
padding: 16px 20px;
|
|
display: flex;
|
|
align-items: center;
|
|
gap: 12px;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
|
|
&:hover {
|
|
transform: translateY(-2px);
|
|
box-shadow: 0 8px 25px rgba(102, 126, 234, 0.3);
|
|
}
|
|
|
|
.buttonIcon {
|
|
font-size: 20px;
|
|
}
|
|
|
|
span {
|
|
font-size: 16px;
|
|
font-weight: 600;
|
|
color: white;
|
|
}
|
|
}
|
|
|
|
.menuSection {
|
|
margin-top: 8px;
|
|
}
|
|
|
|
.menuItem {
|
|
display: flex;
|
|
align-items: center;
|
|
padding: 16px 20px;
|
|
cursor: pointer;
|
|
transition: all 0.3s;
|
|
border-radius: 8px;
|
|
|
|
&:hover {
|
|
background-color: #f0f0f0;
|
|
}
|
|
|
|
span {
|
|
font-size: 16px;
|
|
color: #333;
|
|
font-weight: 500;
|
|
}
|
|
}
|
|
|
|
.menuIcon {
|
|
font-size: 20px;
|
|
margin-right: 12px;
|
|
width: 20px;
|
|
text-align: center;
|
|
}
|
|
|
|
.drawerFooter {
|
|
padding: 20px;
|
|
background: #fff;
|
|
border-top: 1px solid #f0f0f0;
|
|
.balanceSection {
|
|
display: flex;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
.balanceIcon {
|
|
color: #666;
|
|
.suanliIcon {
|
|
font-size: 20px;
|
|
}
|
|
}
|
|
|
|
.balanceText {
|
|
color: #3d9c0d;
|
|
}
|
|
}
|
|
}
|
|
|
|
.balanceLabel {
|
|
font-size: 12px;
|
|
color: #999;
|
|
margin: 0;
|
|
}
|
|
|
|
.balanceAmount {
|
|
font-size: 18px;
|
|
font-weight: 600;
|
|
color: #52c41a;
|
|
margin: 2px 0 0 0;
|
|
}
|
|
|
|
// 响应式设计
|
|
@media (max-width: 768px) {
|
|
.header {
|
|
padding: 0 12px;
|
|
}
|
|
|
|
.title {
|
|
font-size: 16px;
|
|
}
|
|
|
|
.username {
|
|
display: none;
|
|
}
|
|
|
|
.drawer {
|
|
width: 280px !important;
|
|
}
|
|
}
|