/* 通用重置样式 */
* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}


/* 清除列表的默认样式 */
ul, ol {
  list-style: none;
}

/* 去除链接的默认下划线 */
a {
  color: inherit;        /* 移除默认的链接颜色 */
  text-decoration: none; /* 移除默认的下划线 */
  cursor: inherit;       /* 移除默认的鼠标指针样式 */
}

a:hover,
a:active,
a:focus {
  color: inherit;        /* 移除默认的鼠标悬停颜色 */
  text-decoration: none; /* 确保鼠标悬停时也没有下划线 */
  cursor: pointer;       /* 鼠标悬停时显示指针 */
}




/* 去除图片的边框 */
img {
  border: none;
}

/* 设置body的字体样式、背景色等 */
body {
  font-family: Arial, sans-serif;
  background-color: #f8f8f8;
  color: #333;
  line-height: 1.4;
}

/* 清除输入框的边框、外边距等 */
input, textarea, button {
  outline: none;
  border: none;
  padding: 10px;
  margin: 5px 0;
  font-size: 16px;
  outline: 0;
}

/* 设置placeholder的字体样式 */
input::-webkit-input-placeholder, textarea::-webkit-input-placeholder {
  color: #bbb;
}

input:-moz-placeholder, textarea:-moz-placeholder {
  color: #bbb;
  opacity: 1;
}

input::-moz-placeholder, textarea::-moz-placeholder {
  color: #bbb;
  opacity: 1;
}

input:-ms-input-placeholder, textarea:-ms-input-placeholder {
  color: #bbb;
}

/* 设置表单控件的外边距、内边距等 */
input, button {
  padding: 10px 15px;
}

/* 设置表单控件的hover和focus状态 */
input:hover, textarea:hover, button:hover {
  background-color: #f0f0f0;
}

input:focus, textarea:focus, button:focus {
  background-color: #e5e5e5;
  outline: 0;
}

/* 设置表格的边框、外边距等 */
table {
  border-collapse: collapse;
  width: 100%;
}

table th, table td {
  border: 1px solid #ddd;
  padding: 10px;
}

/* 设置滚动条的样式 */
/* Works on WebKit browsers like Chrome, Safari and Opera */
::-webkit-scrollbar {
  width: 10px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background: #888;
}

::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Works on Firefox */
* {
scrollbar-width: thin;
scrollbar-color: #888 #f1f1f1;
}

/* 重置select元素的默认样式 */
select {
  -webkit-appearance: none; /* 移除默认的样式 */
  -moz-appearance: none; /* 移除默认的样式 */
  appearance: none; /* 移除默认的样式 */
  background: none; /* 移除背景 */
  border: none; /* 移除边框 */
  outline: none; /* 移除焦点样式 */
  padding: 0; /* 移除内边距 */
  margin: 0; /* 移除外边距 */
  width: auto; /* 设置宽度为自动 */
  height: auto; /* 设置高度为自动 */
  font-size: inherit; /* 继承父元素的字体大小 */
  color: inherit; /* 继承父元素的颜色 */
}

  /* 移除option的默认样式 */
  select option {
    background-color: white; /* 设置背景颜色 */
    color: black; /* 设置文字颜色 */
    padding: 0; /* 移除内边距 */
    margin: 0; /* 移除外边距 */
    border: none; /* 移除边框 */
  }

html {
  font-size: 0.833333vw;
}

/* @media (min-width: 768px){
  html {
    font-size: 8px; 
  }
}

@media (min-width: 992px){
  html {
    font-size: 10px; 
  }
}

@media (min-width: 1200px){
  html {
    font-size: 16px;
  }
} */


/* 引入外部字体文件 */
@font-face {
  font-family: 'FZZDHJW--GB1';
  src: url('./font/FZZDHJW.TTF');
}