/* 意安智行官网全局样式 */

html {
  scroll-behavior: smooth;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 自定义滚动条 */
::-webkit-scrollbar {
  width: 8px;
}
::-webkit-scrollbar-track {
  background: #f1f5f9;
}
::-webkit-scrollbar-thumb {
  background: #cbd5e1;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #94a3b8;
}

/* 表单焦点样式 */
input:focus, select:focus, textarea:focus {
  border-color: #8b5cf6;
}

/* 按钮动画 */
button, a {
  transition: all 0.2s ease;
}

/* 响应式图片 */
img {
  max-width: 100%;
  height: auto;
}
