.red {
  color: #FF4949;
}
.hand {
  cursor: pointer;
}
.omit {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.omit2 {
  overflow : hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
}

.boxsi {
  box-sizing: border-box;
}

.tac {
  text-align: center;
}
.tal {
  text-align: left;
}
.tar {
  text-align: right;
}

.mt10 {
  margin-top: 10px;
}
.mt20 {
  margin-top: 20px;
}
.mt30 {
  margin-top: 30px;
}
.tal {
  text-align: left;
}
.tac {
  text-align: center;
}
.tar {
  text-align: right;
}
.pos-f {
  position: fixed;
}
.pos-r {
  position: relative;
}
.pos-a {
  position: absolute;
}
.fl {
  float: left;
}
.fr {
  float: right;
}

.clearfix {
  clear: both;
}
.clearfix:before,
.clearfix:after {
  content: '';
  display: block;
  height: 0;
  visibility: hidden;
  clear: both;
}
.row {
  clear: both;
}

.img-box, .img-box img {
  width: 100%;
  height: 100%;
}

body{
  line-height: 1.4;
  font-size: 12px;
  width: 100%;
  height: 100%;
  overflow: hidden;
}

h1, h2, h3, h4, h5, h6 {
  margin: 0;
  padding: 0;
}

p{
  margin: 0
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: '';
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

a {
  text-decoration: none;
}

img {
  display: block;
  vertical-align: top;
  margin-left: auto;
  margin-right: auto;
}

input {
  box-shadow: inherit;
  border: 1px solid #ccd5db;
  padding: 6px;
  outline: none;
  color: #76828e;
}
textarea {
  font-family: "Helvetica Neue",Helvetica,"PingFang SC","Hiragino Sans GB","Microsoft YaHei","微软雅黑",Arial,sans-serif;
  color: #76828e;
}
::-webkit-input-placeholder {
  /* WebKit browsers */
  color: #a3a3a3;
}

:-moz-placeholder {
  /* Mozilla Firefox 4 to 18 */
  color: #a3a3a3;
}

::-moz-placeholder {
  /* Mozilla Firefox 19+ */
  color: #a3a3a3;
}

:-ms-input-placeholder {
  /* Internet Explorer 10+ */
  color: #a3a3a3;
}

/*定义滚动条高宽及背景 高宽分别对应横竖滚动条的尺寸*/
::-webkit-scrollbar
{
  width: 0px;
  height: 16px;
  background-color: #fff;
}

/*定义滚动条轨道 内阴影+圆角*/
::-webkit-scrollbar-track {
  background-color: transparent;
}

/*定义滑块 内阴影+圆角*/
::-webkit-scrollbar-thumb {
  border-radius: 10px;
  box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  -webkit-box-shadow: inset 0 0 6px rgba(0,0,0,.3);
  background-color: rgba(200, 200, 200, .6);
}

/* 处理层级 手绘图 */
.el-drawer__wrapper {
  transform: translateZ(1px);
}
