/* 智柜通APP自定义样式 - 针对21英寸1920*1080屏幕优化 */

/* 基础样式设置 */
:root {
  --primary-color: #3b82f6;
  --success-color: #10b981;
  --warning-color: #f59e0b;
  --danger-color: #ef4444;
  --info-color: #6366f1;
  --base-font-size: 24px;
}

body {
  font-size: var(--base-font-size);
  background-color: #ffffff;
}

/* 按钮样式 */
.btn-primary {
  background-color: var(--primary-color);
  color: white;
  font-weight: 600;
  padding: 1rem 2rem;
  border-radius: 0.75rem;
  transition: all 0.2s;
}

.btn-primary:hover {
  background-color: #2563eb;
  transform: translateY(-2px);
}

/* 卡片样式 */
.card {
  background-color: #ffffff;
  border-radius: 1rem;
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.05),
    0 4px 6px -2px rgba(0, 0, 0, 0.02);
  transition: all 0.3s ease;
}

.card:hover {
  transform: translateY(-4px);
  box-shadow: 0 20px 25px -5px rgba(0, 0, 0, 0.1),
    0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

/* 图标尺寸 */
.icon-sm {
  font-size: 24px;
}

.icon-md {
  font-size: 36px;
}

.icon-lg {
  font-size: 48px;
}

.icon-xl {
  font-size: 64px;
}

/* 文本大小 */
.text-xxl {
  font-size: 3rem;
}

.text-xl {
  font-size: 2rem;
}

.text-lg {
  font-size: 1.5rem;
}

.text-md {
  font-size: 1.25rem;
}

.text-base {
  font-size: 1rem;
}

/* 虚拟键盘样式 */
.vk-key {
  width: 120px;
  height: 96px;
  font-size: 2.5rem;
  transition: all 0.2s;
  border-radius: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}

.vk-key:active {
  transform: scale(0.95);
}

/* 通用动画效果 */
.hover-lift {
  transition: all 0.2s ease;
}

.hover-lift:hover {
  transform: translateY(-2px);
}

/* 导航栏样式 */
.nav-header {
  padding: 1.5rem 2.5rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
