@charset "UTF-8";
/*************************************初始化样式 start*********************************/
html,
body,
ul,
li,
dl,
dt,
dd,
div,
input,
table,
select,
p,
h1,
h2,
h3,
h4,
h5,
h6,
table,
tr,
th,
td,
button,
p,
a,
header,
footer,
section,
img {
  padding: 0px;
  margin: 0px;
  box-sizing: border-box;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 400;
}

a {
  text-decoration: none;
  -webkit-appearance: none;
  -webkit-tap-highlight-color: transparent;
  outline: 0px;
}

a:focus {
  outline: none;
  text-decoration: none;
}

a:link {
  text-decoration: none;
}

a:visited {
  text-decoration: none;
}

a:hover {
  text-decoration: none;
}

a:active {
  text-decoration: none;
}

ul li {
  list-style: none;
}

video {
  outline: none;
}

a {
  color: inherit;
}

button,
input {
  outline: 0px;
  border: 0;
}

button {
  padding: 5px 12px;
  height: 28px;
  background: #3274F9;
  border-radius: 3px;
  color: #fff;
  font-weight: 600;
  font-size: 12px;
  color: #FFFFFF;
  line-height: 18px;
  cursor: pointer;
}

table {
  width: 100%;
  border-collapse: collapse;
}

textarea {
  resize: none;
  border: none;
  outline: none;
}

i {
  font-style: normal;
}

body {
  font-family: PingFangSC, PingFang SC;
}

html,
body {
  width: 100%;
  height: 100%;
  font-size: inherit;
}

html {
  overflow: hidden;
}

body {
  overflow: auto;
}

.app {
  width: 100%;
  height: 100%;
}

.scroll {
  overflow: hidden;
  overflow-y: auto;
}

.scroll::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 10px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 1px;
}

.scroll::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 2px;
  background-color: rgba(0, 128, 255, 0.15);
  border: 1px solid #00aaff;
}

.scroll::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  border-radius: 0;
  background-color: rgba(0, 51, 153, 0.3);
}

/* 使用webkit内核的浏览器 */
input::-webkit-input-placeholder {
  color: #A4A9B2;
  font-weight: 400;
}

/* Firefox版本4-18 */
input:-moz-placeholder {
  color: #A4A9B2;
  font-weight: 400;
}

/* IE浏览器 */
input:-ms-input-placeholder {
  color: #A4A9B2;
  font-weight: 400;
}

textarea::-webkit-input-placeholder {
  font-weight: 400;
  color: #A4A9B2;
}

/* Firefox版本4-18 */
textarea:-moz-placeholder {
  color: #A4A9B2;
  font-weight: 400;
}

/* IE浏览器 */
textarea:-ms-input-placeholder {
  color: #A4A9B2;
  font-weight: 400;
}