body {
  padding: 0;
  margin: 0;
}

html, body, #app {
  width: 100%;
  height: 100%;
  font-size: 16px;
}

/*去掉el-dropdown鼠标移入黑边框*/
.el-tooltip__trigger:focus {
  outline: none;
}

/* 清除默认样式代码 */
/* 去除常见标签默认的 margin 和 padding */
* {
  margin: 0;
  padding: 0;
}

/*去除所有元素由于加了边框让盒子变大的情况*/
* {
  box-sizing: border-box;
}

/* 设置网页统一的字体大小、行高、字体系列相关属性 */
body {
  color: #333;
}

/* 去除列表默认样式 */
ul,
ol {
  list-style: none;
}
/*让button 按钮 变成小手*/
button {
  cursor: pointer;
}
/* 让所有斜体不倾斜 */
em,
i {
  font-style: normal;
}

/* 去除a标签默认下划线，并设置默认文字颜色 */
a {
  text-decoration: none;
  color: #333;
}

/* 设置img的垂直对齐方式为居中对齐，去除img默认下间隙 */
img {
  vertical-align: middle;
}

/* 去除input默认样式 */
input,
button {
  cursor: pointer;
  /*border: none;*/
  outline: none;
  color: #333;
}

/* 左浮动 */
.fl {
  float: left;
}

/* 右浮动 */
.fr {
  float: right;
}

/* 双伪元素清除法 */
.clearfix::before,
.clearfix::after {
  content: "";
  display: table;
}

.clearfix::after {
  clear: both;
}
.text-abc{
  color: red;
}

[un-cloak] {
  display: none;
}

::-webkit-scrollbar {
  width: 8px;
}

::-webkit-scrollbar-track {
  background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
  background-color: #888;
}

/* el-loading */
.el-loading-spinner .path {
  -webkit-animation: loading-dash 2.5s ease-in-out infinite;
  animation: loading-dash 2.5s ease-in-out infinite;
  stroke-dasharray: 90, 150;
  stroke-dashoffset: 0;
  stroke-width: 4;
  stroke-linecap: round;
  stroke: #ff6e2d !important;
}
.el-loading-spinner .el-loading-text {
  color: #ff6e2d !important;
  margin: 3px 0;
  font-size: 14px;
}