/* 莱茵标准技术网站样式 */

/* 基础样式重置 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', 'PingFang SC', 'Hiragino Sans GB', 'Microsoft YaHei', 'Helvetica Neue', Helvetica, Arial, sans-serif;
  line-height: 1.6;
  color: #333;
  background-color: #fff;
}

/* 链接样式 */
a {
  text-decoration: none;
  color: inherit;
}

/* 图片响应式 */
img {
  max-width: 100%;
  height: auto;
}

/* 按钮基础样式 */
button {
  cursor: pointer;
  border: none;
  outline: none;
}

/* 输入框样式 */
input, textarea {
  font-family: inherit;
}

/* 滚动条样式 */
::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #008cd6;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background: #007bbd;
}

