@charset "utf-8";

/* CSS Document */
* {
  scrollbar-width: 0;
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  transition: all 0.5s;
  -webkit-transition: all 0.5s;
  -moz-transition: all 0.5s;
  -o-transition: all 0.5s;
}

body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
form,
fieldset,
input,
textarea,
blockquote,
p {
  margin: 0;
  padding: 0;
  font: 14px/1.5 \5FAE\8F6F\96C5\9ED1, Arial, Microsoft Yahei, Helvetica, sans-serif;
}

table,
td,
tr,
th {
  border-collapse: collapse;
  border-spacing: 0;
  font-size: 14px;
}

ol,
ul {
  list-style: none;
}

li {
  list-style-type: none;
}

img {
  vertical-align: middle !important;
  border: 0;
}

address,
cite,
code,
em,
th,
i {
  font-weight: normal;
  font-style: normal;
}

.clear {
  clear: both;
}

.clear:after {
  display: block;
  overflow: hidden;
  clear: both;
  height: 0;
  visibility: hidden;
  content: ".";
}

a {
  text-decoration: none;
  cursor: pointer;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

/* 设置滚动条的样式 */
::-webkit-scrollbar {
  /* 滚动槽宽度 */
  width: 0;
}

/* 滚动条滑块默认状态 */
::-webkit-scrollbar-track {
  background-color: #f4f8fa;
  border-radius: 0px;
}

::-webkit-scrollbar-thumb {
  background-color: #e60013;
}

/* 滚动条滑块点击状态 */
::-webkit-scrollbar-thumb:window-inactive {
  background-color: #e60013;
}

@font-face {
  font-family: "Impact";
  src: url('../fonts/Impact.ttf');
}

@font-face {
  font-family: "DINMittelschrift";
  src: url('../fonts/DINMittelschrift.ttf');
}

@font-face {
  font-family: "BEBAS";
  src: url('../fonts/BEBASKAI.ttf');
}

@font-face {
  font-family: "Nice";
  src: url('../fonts/Nice Regular.ttf');
}

/* 按钮样式去除 */
input[type="button"],
input[type="submit"],
input[type="reset"] {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  outline: none;
  cursor: pointer;
}

textarea {
  -webkit-appearance: none;
  -moz-appearance: none;
  -ms-appearance: none;
  -o-appearance: none;
  appearance: none;
  outline: none;
}

input {
  border-radius: 0;
  outline: none;
}