* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

body {
  font-family: sans-serif, "Microsoft Yahei", "Arial";
  background: linear-gradient(180deg, #0b1223, #0e1628 89%);
  color: var(--light);
  line-height: 1.5;
  overflow-x: hidden;
  min-height: 100vh;
}

ol, ul {
  list-style: none;
  margin: 0;
  padding: 0;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
	border: none;
	vertical-align: middle;
	max-width: 100%;
}

a {
  text-decoration: none;
  color: #333;
	transition: all .3s ease-in-out;
}

input, textarea, select, button {
	outline: none;
	vertical-align: middle;
	font-size: inherit;
	font-family: inherit;
}
textarea {
	resize: none;
	overflow-y: auto;
}

/* scroll */
::-webkit-scrollbar {
  width: 6px;
  height: 6px;
  background-color: transparent;
}

::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #C4C4C4;
}