Files
BlackFruit-UI/css/common.css
yiqiu ec2dca619a
All checks were successful
continuous-integration/drone/push Build is passing
fix: 头像下拉菜单hover间隙修复 鼠标平滑滑入
2026-03-20 20:50:22 +08:00

558 lines
12 KiB
CSS

/* ============================================
通用样式 - Header/Footer/Mobile Sidebar
所有页面共享的样式
============================================ */
/* ============================================
Header - 导航栏通用样式
============================================ */
/* 强制提升 header 和导航菜单的层级 */
header,
#header {
z-index: 99999 !important;
position: relative;
transition: background 0.3s ease !important;
}
#header {
position: sticky !important;
}
#header:hover,
header:hover {
background: rgba(15, 23, 42, 0.6) !important;
}
/* 导航栏:使用统一的容器系统 */
.nav-header {
max-width: 1440px;
margin: 0 auto;
padding: 0 20px;
display: flex;
align-items: stretch;
height: 56px;
}
.nav-header .nav-left {
display: flex;
align-items: center;
flex: 1;
}
.nav-right {
display: flex;
align-items: stretch;
height: 100%;
}
.nav-right>a {
display: flex;
align-items: center;
}
/* 纯文字链接样式 */
.nav-right .nav-text-link {
color: #CBD5E1;
font-size: 14px;
font-weight: 400;
padding: 0 16px;
display: flex;
align-items: center;
transition: all 0.3s ease;
cursor: pointer;
text-decoration: none;
}
.nav-right .nav-text-link:hover {
color: #38BDF8;
}
/* 分隔符样式 */
.nav-right .nav-divider {
color: rgba(148, 163, 184, 0.3);
display: flex;
align-items: center;
font-size: 14px;
user-select: none;
}
/* nav-shadow 深色毛玻璃 */
.nav-shadow {
background: rgba(10, 12, 22, 0.92) !important;
backdrop-filter: blur(16px) !important;
-webkit-backdrop-filter: blur(16px) !important;
box-shadow: 0 1px 0 rgba(255, 255, 255, 0.06) !important;
border-bottom: none;
transition: background 0.3s ease !important;
}
.nav-shadow:hover {
background: rgba(10, 12, 22, 0.98) !important;
}
/* 导航文字颜色 */
.nav-menu .nav-item {
color: #E5E7EB;
border-bottom: none;
border-radius: 8px;
}
.nav-menu .nav-item:hover {
color: #fff;
background: rgba(255, 255, 255, 0.08);
border-bottom: none;
}
.nav-right .control {
color: #E5E7EB;
}
.nav-right .control:hover {
color: #38BDF8;
}
/* ============================================
控制台按钮 - 胶囊样式
============================================ */
.console-btn {
display: inline-flex;
align-items: center;
justify-content: center;
padding: 8px 22px;
border-radius: 999px;
background: rgba(255, 255, 255, 0.12);
color: #fff;
font-size: 14px;
font-weight: 500;
text-decoration: none;
transition: all 0.3s ease;
border: 1px solid rgba(255, 255, 255, 0.15);
letter-spacing: 1px;
}
.console-btn:hover {
background: rgba(255, 255, 255, 0.22);
color: #fff;
text-decoration: none;
}
/* ============================================
用户头像 & 下拉菜单
============================================ */
.user-avatar-wrap {
position: relative;
margin-left: 12px;
}
.user-avatar {
width: 36px;
height: 36px;
border-radius: 50%;
background: rgba(255, 255, 255, 0.15) !important;
color: #fff !important;
font-size: 15px;
font-weight: 600;
display: flex;
align-items: center;
justify-content: center;
cursor: pointer;
transition: all 0.2s ease;
border: 2px solid rgba(255, 255, 255, 0.2);
}
.user-avatar:hover {
border-color: rgba(255, 255, 255, 0.5);
transform: scale(1.05);
}
.user-dropdown {
display: none;
position: absolute;
top: 100%;
right: -10px;
min-width: 140px;
padding-top: 10px;
z-index: 1000;
}
.user-dropdown-inner {
background: #1F2937;
border-radius: 12px;
padding: 6px 0;
box-shadow: 0 8px 24px rgba(0, 0, 0, 0.3);
border: 1px solid rgba(255, 255, 255, 0.1);
position: relative;
}
.user-avatar-wrap:hover .user-dropdown {
display: block;
}
/* 下拉箭头 */
.user-dropdown-inner::before {
content: '';
position: absolute;
top: -6px;
right: 12px;
width: 12px;
height: 12px;
background: #1F2937;
border-top: 1px solid rgba(255, 255, 255, 0.1);
border-left: 1px solid rgba(255, 255, 255, 0.1);
transform: rotate(45deg);
}
.user-dropdown-item {
padding: 10px 18px;
color: #E5E7EB;
font-size: 14px;
cursor: pointer;
transition: all 0.15s ease;
}
.user-dropdown-item:hover {
background: rgba(255, 255, 255, 0.08);
color: #fff;
}
/* ============================================
登录注册区域 - 撑满高度设计
============================================ */
/* 登录注册容器 — 不可用 !important, 否则 JS 无法通过 inline style 隐藏 */
.no-login {
display: flex;
align-items: stretch;
height: 100%;
gap: 0;
margin: 0;
padding: 0;
flex-direction: row;
visibility: visible;
}
/* 注册按钮 - 渐变背景样式,撑满高度 */
.no-login .btn.btn-normal#registBtn {
display: flex !important;
align-items: center !important;
justify-content: center !important;
gap: 8px !important;
padding: 0 36px !important;
font-size: 16px !important;
font-weight: 600 !important;
color: #ffffff !important;
background: linear-gradient(135deg, #38BDF8 0%, #6366F1 100%) !important;
border: none !important;
border-left: 1px solid rgba(148, 163, 184, 0.15) !important;
border-radius: 0 !important;
cursor: pointer !important;
transition: all 0.3s ease !important;
position: relative !important;
overflow: hidden !important;
margin: 0 !important;
min-width: 120px !important;
flex-shrink: 0 !important;
box-shadow: none !important;
height: 100% !important;
box-sizing: border-box !important;
}
/* 注册按钮文字 - 确保始终在最上层 */
.no-login .btn.btn-normal#registBtn .regist-text {
position: relative;
z-index: 3;
display: inline-flex;
align-items: center;
}
/* 注册按钮图标 */
.no-login .btn.btn-normal#registBtn::before {
content: '';
display: block;
width: 16px;
height: 16px;
background-image: url('/web/BlackFruit-web/assets/img/header/zhuce.png');
background-size: contain;
background-repeat: no-repeat;
background-position: center;
position: relative;
z-index: 3;
flex-shrink: 0;
}
/* 注册按钮悬停效果背景层 */
.no-login .btn.btn-normal#registBtn::after {
content: '';
position: absolute;
top: 0;
left: 0;
right: 0;
bottom: 0;
background: linear-gradient(135deg, #6366F1 0%, #38BDF8 100%);
opacity: 0;
transition: opacity 0.3s ease;
pointer-events: none;
z-index: 1;
}
.no-login .btn.btn-normal#registBtn:hover {
box-shadow: 0 4px 16px rgba(56, 189, 248, 0.4) !important;
}
.no-login .btn.btn-normal#registBtn:hover::after {
opacity: 1;
}
/* 注册按钮图标 - 默认隐藏 (桌面端) */
.regist-icon {
width: 16px;
height: 16px;
margin-right: 4px;
display: none;
}
/* ============================================
下拉菜单 - 样式由 nav-mega-menu.css 主控
============================================ */
.nav-cont {
/* 提升层级,其余由 nav-mega-menu.css 定义 */
z-index: 99998 !important;
position: absolute !important;
}
.nav-item-box {
background: rgba(30, 41, 59, 0.8);
border: 1px solid rgba(148, 163, 184, 0.15);
}
.nav-item-box:hover {
background: rgba(30, 41, 59, 1);
border-color: rgba(56, 189, 248, 0.3);
}
.nav-item-box .title {
color: #E5E7EB;
}
.nav-item-box .desc {
color: rgba(148, 163, 184, 0.8);
}
/* ============================================
移动端导航优化
============================================ */
@media (max-width: 768px) {
/* 调整导航栏高度 */
.nav-header {
height: 56px;
padding: 0 0 0 16px !important;
display: flex !important;
align-items: center !important;
justify-content: space-between;
}
/* Ensure Right Container handles children alignment */
.nav-right {
display: flex;
align-items: center;
height: 100%;
margin: 0;
}
/* 隐藏桌面端导航菜单 */
.nav-menu {
display: none !important;
}
/* 隐藏桌面端的文档、控制台链接 */
.nav-desktop-link {
display: none !important;
}
/* Logo 缩小 - 但比之前稍微大一点 */
.nav-icon img {
max-height: 48px;
width: auto;
object-fit: contain;
}
/* 调整移动端注册按钮样式 - 长方形无圆角,撑满导航栏高度 */
.no-login .btn.btn-normal#registBtn {
padding: 0 25px !important;
font-size: 15px !important;
min-width: auto !important;
border-radius: 0 !important;
border-left: none !important;
height: 100% !important;
max-height: 56px;
margin-right: 0 !important;
display: flex;
align-items: center;
justify-content: center;
margin-top: 0 !important;
gap: 2px !important;
}
/* 移动端注册按钮图标显示 */
.no-login .btn.btn-normal#registBtn .regist-icon {
display: block;
margin-right: 0 !important;
}
/* 移动端注册按钮图标隐藏 - 旧样式移除 */
.no-login .btn.btn-normal#registBtn::before {
display: none;
}
/* 移动端登录按钮(如果需要显示) */
.no-login .nav-text-link#loginBtn {
padding: 0 12px !important;
font-size: 14px !important;
}
/* 确保汉堡菜单按钮显示 - 无背景,只显示白色横线 */
.mobile-menu-toggle {
display: flex !important;
background: transparent !important;
border: none !important;
align-self: center;
margin-top: 0;
}
}
/* ============================================
移动端侧边栏
============================================ */
.mobile-sidebar-content {
background: linear-gradient(180deg, #020617 0%, #0F172A 100%);
}
.mobile-sidebar-header {
background: rgba(15, 23, 42, 0.95);
border-bottom: 1px solid rgba(148, 163, 184, 0.1);
}
.mobile-nav-link {
color: #E5E7EB;
transition: all 0.3s ease;
}
.mobile-nav-link:hover {
color: #38BDF8;
}
.mobile-user-info {
background: rgba(30, 41, 59, 0.6);
border: 1px solid rgba(148, 163, 184, 0.1);
border-radius: 8px;
padding: 12px;
margin-bottom: 12px;
}
.mobile-user-avatar {
background: linear-gradient(135deg, #38BDF8 0%, #6366F1 100%);
box-shadow: 0 0 12px rgba(56, 189, 248, 0.3);
}
.mobile-user-name {
color: #E5E7EB;
}
/* ============================================
侧边栏工具条
============================================ */
.aside-tools {
background: rgba(15, 23, 42, 0.9);
backdrop-filter: blur(20px);
border: 1px solid rgba(148, 163, 184, 0.15);
border-radius: 12px;
box-shadow: 0 8px 32px rgba(15, 23, 42, 0.5);
}
.aside-tools .aside-box {
border-bottom-color: rgba(148, 163, 184, 0.15);
}
.aside-tools .aside-box:hover {
background: rgba(56, 189, 248, 0.1);
}
.aside-tools .aside-text {
color: #E5E7EB;
}
.aside-tools .aside-box:hover .aside-text {
color: #38BDF8;
}
/* 返回顶部按钮 */
.aside-tools .back-top {
background: rgba(56, 189, 248, 0.15);
transition: all 0.3s ease;
}
.aside-tools .back-top:hover {
background: linear-gradient(135deg, #38BDF8 0%, #6366F1 100%);
box-shadow: 0 4px 16px rgba(56, 189, 248, 0.4);
}
/* 返回顶部按钮优化 */
.back-top-wrapper {
background: rgba(56, 189, 248, 0.15);
border: 1px solid rgba(56, 189, 248, 0.3);
box-shadow: 0 0 12px rgba(56, 189, 248, 0.2);
transition: all 0.3s ease;
}
.back-top-wrapper:hover {
background: rgba(56, 189, 248, 0.3);
box-shadow: 0 0 20px rgba(56, 189, 248, 0.4);
}
/* ============================================
登录菜单下拉 - 深色风格
============================================ */
.nav-header .login-in .login-menu .login-menu-item {
color: rgba(203, 213, 225, 0.85);
}
.nav-header .login-in .login-menu .login-menu-item:hover {
background: rgba(255, 255, 255, 0.07);
color: #fff;
}
/* ============================================
Mobile Menu Toggle Button
============================================ */
/* 桌面端隐藏汉堡菜单 */
.mobile-menu-toggle {
display: none;
}
/* 移动端显示并设置样式 */
@media (max-width: 768px) {
.mobile-menu-toggle {
display: flex !important;
gap: 0;
cursor: pointer;
width: 24px;
height: 24px;
justify-content: center;
align-items: center;
margin-right: 0;
order: 3;
padding: 0;
background: none;
border: none;
}
.mobile-menu-toggle .mobile-menu-icon {
width: 100%;
height: 100%;
display: block;
}
}