/* PC 端滚动条样式优化 */

/* Webkit 浏览器滚动条（Chrome, Safari, Edge） */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

/* 滚动条轨道 */
::-webkit-scrollbar-track {
  background: transparent;
}

/* 滚动条滑块 */
::-webkit-scrollbar-thumb {
  background: #d0d0d0;
  border-radius: 5px;
  transition: all 0.3s ease;
}

/* 滚动条滑块悬停效果 */
::-webkit-scrollbar-thumb:hover {
  background: #a8a8a8;
  box-shadow: 0 0 6px rgba(0, 0, 0, 0.1);
}

/* 滚动条滑块按下效果 */
::-webkit-scrollbar-thumb:active {
  background: #808080;
}

/* 滚动条角 */
::-webkit-scrollbar-corner {
  background: transparent;
}

/* Firefox 滚动条样式 */
* {
  scrollbar-color: #d0d0d0 transparent;
  scrollbar-width: thin;
}

/* 滚动条动画平滑 */
#__nuxt {
  scroll-padding-top: 80px;
}

/* 文本选择优化 */
::selection {
  background: #e0e0e0;
  color: inherit;
}

::-moz-selection {
  background: #e0e0e0;
  color: inherit;
}

.container-pc {
  width: 1240px;
  margin: 0 auto;
  padding: 0 20px;
}
body{
    font-size: 16px;
}
:root:root{
  --el-color-primary:#346EF4;
  --el-color-primary-light-3:#1456f0;
}

#app{
  --color-text:#101012;
}

.el-button{
  --el-fill-color-blank:transparent;
  --el-border-color:var(--el-color-primary);
  --el-text-color-regular:var(--el-color-primary);
  --el-color-primary-light-7:var(--el-color-primary);
  /* --el-button-bg-color:transparent; */
  /* --el-button-border-color:var(--el-color-primary); */
}