html,
body,
div,
span,
applet,
object,
iframe,
h1,
h2,
h3,
h4,
h5,
h6,
p,
blockquote,
pre,
a,
abbr,
acronym,
address,
big,
cite,
code,
del,
dfn,
em,
font,
img,
ins,
kbd,
q,
s,
samp,
small,
strike,
strong,
sub,
sup,
tt,
var,
b,
u,
i,
center,
dl,
dt,
dd,
ol,
ul,
li,
fieldset,
form,
label,
legend,
table,
caption,
tbody,
tfoot,
thead,
tr,
th,
td,
textarea,
input,
nav,
header,
section,
footer {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html {
  font-size: 14px;
}

address,
cite,
dfn,
em,
var,
i {
  font-style: normal;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

h1,
h2,
h3,
h4,
h5,
h6,
th {
  font-size: 100%;
  font-weight: normal;
}

button,
input,
select,
textarea {
  /* font-size: 100%; */
  outline: none;
  appearance: none;
  border: none;
  background: none;
}

fieldset,
img {
  border: 0;
}

a,
img {
  -webkit-touch-callout: none;
}

a {
  
  background: transparent;
  text-decoration: none;
  outline: none;
  cursor: pointer;
  -webkit-transition: color 0.3s ease;
  transition: color 0.3s ease;
}

a, a:active, a:focus, a:hover, a:visited,
nav, nav:active, nav:focus, nav:hover, nav:visited {
  text-decoration: none;
  color: var(--text-main-color);
}

input[type='password'],
input[type='text'],
textarea {
  resize: none;
  outline: 0;
  -webkit-appearance: none;
  white-space: pre-wrap;
  word-wrap: break-word;
  font-family: arial;
}

ul,
ol {
  list-style: none;
}

:focus {
  outline: none;
}


body {
  min-width: 1230px;
  min-height: 100vh;
  font-weight: 400;
  font-family:  pingfang sc,microsoft yahei,microsoft yahei ui,segoe ui,tahoma,simsun,sans-serif,hiragino sans gb;
  color: var(--text-main-color);
}

::placeholder {
  font-size: 14px;
  color: var(--text-sub2-color);
  line-height: 14px;
}

::-webkit-scrollbar {
  height: 10px;
  width: 8px;
  background: rgba(0, 0, 0, 0.1);
}
::-webkit-scrollbar-thumb {
  background: rgba(0, 0, 0, 0.3);
  border-radius: 6px;
}



/* chrome */ 
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button { 
    -webkit-appearance: none; 
}
/* 火狐浏览器 */
input[type="number"]{ 
    -moz-appearance: textfield; 
}
