@charset "utf-8";
/* CSS Document */
html,
body {
  font-size: 14px;
  background-color: #fff;
}
html,
body,
div,
h1,
h2,
h3,
h4,
h5,
h6,
hr,
p,
blockquote,
dl,
dt,
dd,
ul,
ol,
li,
pre,
form,
fieldset,
object,
code,
em,
i,
span,
var,
legend,
button,
input,
textarea,
th,
td,
a,
img,
header,
footer,
nav,
aside,
audio,
datalist,
section {
  margin: 0;
  padding: 0;
  border: 0;
  outline: 0;
  box-sizing: border-box;
}
/*清除内外边距*/
h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: normal;
  font-size: 100%;
}
/*设置默认字体*/
:focus {
  outline: 0;
}
ul,
ol,
ul li,
ol li {
  list-style: none;
}
a {
  text-decoration: none;
}
a:hover {
  text-decoration: none;
}
.text-right {
  text-align: right;
}
/*清除浮动*/
.clearfix:after {
  content: ".";
  display: block;
  clear: both;
  visibility: hidden;
  line-height: 0;
  height: 0;
  font-size: 0;
}
.clearfix {
  zoom: 1;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
  background-color: #fff;
}
::-webkit-scrollbar-track {
  box-shadow: inset 0 0 5px #fff;
  background-color: #F7F7FA;
}
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background-color: #BDC5D3;
}
::-webkit-scrollbar-thumb:hover {
  background-color: #BDC5D3;
}
::-webkit-scrollbar-button {
  height: 0px;
}
/* 字体颜色 */
.gray-text {
  color: #5E6D81;
}
/*******状态******/
div.red {
  color: #FF4040;
  padding-left: 18px;
  position: relative;
}
div.red > i {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #FF4040;
  border-radius: 50%;
}
div.red > span {
  display: inline-block;
  font-size: 14px;
  color: #FF4040;
  word-wrap: break-word;
  word-break: normal;
}
div.red > p {
  color: #0F1E33;
}
div.green {
  color: #00CC16;
  padding-left: 18px;
  position: relative;
}
div.green > i {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #00CC16;
  border-radius: 50%;
}
div.green > span {
  display: inline-block;
  font-size: 14px;
  color: #00CC16;
  word-wrap: break-word;
  word-break: normal;
}
div.green > p {
  color: #0F1E33;
}
div.yellow {
  color: #FFAA33;
  padding-left: 18px;
  position: relative;
}
div.yellow > i {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #FFAA33;
  border-radius: 50%;
}
div.yellow > span {
  display: inline-block;
  font-size: 14px;
  color: #FFAA33;
  word-wrap: break-word;
  word-break: normal;
}
div.yellow > p {
  color: #0F1E33;
}
div.gray {
  color: #DBE1E8;
  padding-left: 18px;
  position: relative;
}
div.gray > i {
  display: inline-block;
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 10px;
  height: 10px;
  background-color: #DBE1E8;
  border-radius: 50%;
}
div.gray > span {
  display: inline-block;
  font-size: 14px;
  color: #0F1E33;
  word-wrap: break-word;
  word-break: normal;
}
div.gray > p {
  color: #0F1E33;
}
