/* 全局样式规范文件 */

/* 全局字体规范 */
:root {
  /* 中文字体 */
  --font-family-chinese: "Microsoft YaHei", "PingFang SC", "Source Han Sans CN", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  
  /* 英文字体 */
  --font-family-english: "Roboto", "Arial", "Open Sans", sans-serif;
  
  /* 默认字体（优先使用中文字体） */
  --font-family-default: var(--font-family-chinese), var(--font-family-english);
}

/* 全局字体应用 */
body {
  font-family: var(--font-family-default) !important;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 确保所有元素使用指定字体，但排除Font Awesome图标 */
*:not(.fas):not(.far):not(.fab):not(.fa):not([class*="fa-"]) {
  font-family: var(--font-family-default) !important;
}

/* 中文内容使用中文字体 */
.zh, .chinese, [lang="zh"] {
  font-family: var(--font-family-chinese) !important;
}

/* 英文内容使用英文字体 */
.en, .english, [lang="en"] {
  font-family: var(--font-family-english) !important;
}

/* 标题字体优化 */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-family-default) !important;
  font-weight: 500;
}

/* 代码字体 */
code, pre, kbd {
  font-family: "SFMono-Regular", "Consolas", "Liberation Mono", "Menlo", monospace;
}

/* 确保Font Awesome图标正确显示 */
.fas, .far, .fab, .fa {
  font-family: 'Font Awesome 6 Free' !important;
  font-weight: 900 !important;
}

.fab {
  font-family: 'Font Awesome 6 Brands' !important;
  font-weight: 400 !important;
}

/* 响应式设计基础 */
@media (max-width: 768px) {
  .container {
    padding-left: 15px;
    padding-right: 15px;
  }
}

/* 表单元素一致性 */
.form-control {
  font-family: var(--font-family-default) !important;
}

.btn {
  font-family: var(--font-family-default) !important;
}

/* 卡片样式统一 */
.card {
  font-family: var(--font-family-default) !important;
  box-shadow: 0 0 1px rgba(0,0,0,.125), 0 1px 3px rgba(0,0,0,.2);
  margin-bottom: 15px;
}

/* 警告和信息框样式统一 */
.alert {
  font-family: var(--font-family-default) !important;
  border: 0;
  font-size: .875rem;
}

/* 链接样式统一 */
a {
  font-family: var(--font-family-default) !important;
}

/* 表格样式统一 */
.table {
  font-family: var(--font-family-default) !important;
}

/* 现代化下拉菜单样式 */
.nav-item.dropdown {
  position: relative;
}

.nav-item.dropdown .nav-link {
  display: flex;
  align-items: center;
  padding: 0.5rem 0.75rem;
  border-radius: 0.375rem;
  transition: all 0.2s ease-in-out;
}

.nav-item.dropdown .nav-link:hover {
  background-color: rgba(0, 0, 0, 0.05);
}

.nav-item.dropdown .nav-link i {
  font-size: 1.1rem;
}

.nav-item.dropdown .navbar-badge {
  position: absolute;
  top: 0.25rem;
  right: 0.25rem;
  font-size: 0.6rem;
  padding: 0.25em 0.4em;
  border-radius: 50%;
  min-width: 1.25em;
  min-height: 1.25em;
  display: flex;
  align-items: center;
  justify-content: center;
}

.dropdown-menu {
  border: 0;
  box-shadow: 0 0.5rem 1rem rgba(0, 0, 0, 0.15);
  border-radius: 0.5rem;
  padding: 0.5rem 0;
  margin: 0.125rem 0 0;
  font-size: 0.875rem;
  min-width: 15rem;
}

.dropdown-item {
  padding: 0.5rem 1rem;
  transition: all 0.2s ease-in-out;
  display: flex;
  align-items: center;
}

.dropdown-item:hover {
  background-color: #f8f9fa;
  color: #16181b;
}

.dropdown-item i {
  width: 1.5rem;
  margin-right: 0.75rem;
  text-align: center;
  font-size: 0.875rem;
}

.dropdown-divider {
  margin: 0.25rem 0;
  border-top: 1px solid rgba(0, 0, 0, 0.1);
}

.dropdown-header {
  padding: 0.75rem 1rem 0.25rem;
  font-size: 0.75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.5px;
  color: #6c757d;
}

.dropdown-item .float-right {
  margin-left: auto;
  font-size: 0.75rem;
}

/* 用户名显示样式 */
.user-name-display {
  padding: 0.75rem 1rem;
  display: block;
  font-weight: 600;
  color: #007bff; /* 蓝色字体 */
  text-align: center; /* 居中显示 */
  font-size: 1.1rem;
  border-bottom: 1px solid rgba(0, 0, 0, 0.1);
  margin-bottom: 0.25rem;
}

/* 为兼容性保留.hidden-xs样式 */
.hidden-xs {
  padding: 0.5rem 1rem;
  display: block;
  font-weight: 600;
  color: #495057;
}