@charset "utf-8";
@font-face {
    font-family: 'Yahei Regular';
    src: url('./regular.ttf') format('truetype');
}

@font-face {
    font-family: 'Yahei Light';
    src: url('./light.ttf') format('truetype');
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  font-family: "Yahei Light";
}

.regular{
    font-family: "Yahei Regular";
}

body {
  font-size: .14rem;
  color: #323232;
  /* min-width: 1540px; */
}

ul,
li，dl,
dt,
dd {
  list-style: none;
}

a {
  text-decoration: none;
  color: #303030;
}

i {
  font-style: normal;
}

span,
a {
  display: inline-block;
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.clear {
  clear: both;
}

.ovh {
  overflow: hidden;
}

img {
  vertical-align: middle;
}

.w {
  width: 1050px;
  margin: 0 auto;
  position: relative;
}

h1 {
  font-size: 20px;
}

h2,
h3 {
  font-size: 16px;
  font-weight: normal;
}

/* 滚动条 */

::-webkit-scrollbar {
  /* 滚动条整体部分 */
  width: 10px;
  margin-right: 2px;
}

::-webkit-scrollbar:horizontal {
  height: 10px;
  margin-bottom: 2px;
}

::-webkit-scrollbar-track {
  /* 外层轨道 */
  border-radius: 10px;
}

::-webkit-scrollbar-track-piece {
  /*内层轨道，滚动条中间部分 */
  background-color: #eee;
  border-radius: 10px;
}

::-webkit-scrollbar-thumb {
  /* 滑块 */
  width: 10px;
  border-radius: 5px;
  background: #cbcbcb;
}

::-webkit-scrollbar-corner {
  /* 边角 */
  width: 10px;
  background-color: #ccc;
}

::-webkit-scrollbar-thumb:hover {
  /* 鼠标移入滑块 */
  background: #909090;
}
