/* 自定义样式，提升高保真原型细节 */

::-webkit-scrollbar {
  width: 8px;
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}

body, html {
  font-family: 'Inter', 'PingFang SC', 'Microsoft YaHei', Arial, sans-serif;
}

/* 卡片悬浮效果 */
.card-hover:hover {
  box-shadow: 0 8px 24px 0 rgba(37, 99, 235, 0.12);
  transform: translateY(-2px) scale(1.02);
  transition: all 0.2s;
}

/* 按钮细节优化 */
button:focus {
  outline: none;
  box-shadow: 0 0 0 2px #2563eb33;
}
