/* 整个滚动条 */
*::-webkit-scrollbar {
  width: 8px;
  height: 4px;
  background-color: #fff;
}

/* 滚动条上的滚动滑块 */
*::-webkit-scrollbar-thumb {
  background: rgba(44, 53, 66, 0.45);
  border-radius: 5px;
}

/* 滚动条轨道 */
*::-webkit-scrollbar-track {
  background-color: #fff;
}


/* 把我们所有标签的内外边距清零 */

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
  /* font-size: 0.14rem; */
}

/* em 和 i 斜体的文字不倾斜 */

em,
i {
  font-style: normal;
  color: #9ea0a8;
}

/* 去掉li 的小圆点 */

li {
  list-style: none;
}

input::placeholder {
  color: #9b9b9b;
}

img {
  /* border 0 照顾低版本浏览器 如果 图片外面包含了链接会有边框的问题 */
  border: 0;
  /* 取消图片底侧有空白缝隙的问题 */
  vertical-align: middle;
  object-fit: contain;
}

button {
  /* 当我们鼠标经过button 按钮的时候，鼠标变成小手 */
  cursor: pointer;
}

a {
  color: #666;
  text-decoration: none;
}

button,
input {
  /* "\5B8B\4F53" 就是宋体的意思 这样浏览器兼容性比较好 */
  font-family: Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB,
    "\5B8B\4F53", sans-serif;
}

body {
  /* CSS3 抗锯齿形 让文字显示的更加清晰 */
  -webkit-font-smoothing: antialiased;
  background-color: #fff;
  font: 16px/1.5 Microsoft YaHei, Heiti SC, tahoma, arial, Hiragino Sans GB,
    "\5B8B\4F53", sans-serif;
  color: #666;
}

/* 清除浮动 */

.clearfix:after {
  visibility: hidden;
  clear: both;
  display: block;
  content: ".";
  height: 0;
}

.clearfix {
  *zoom: 1;
}

/* body {
  min-width: 1366px;
  width: 100vw;
  height: 100vh;
  margin: 0;
} */

.el-table td.el-table__cell div {
  min-height: 0.3rem;
  line-height: 0.3rem;
}

.el-select-dropdown__item {
  width: 100% !important;
}

.el-table th.el-table__cell > .cell,
.el-form-item__label {
  white-space: nowrap;
  min-width: 0.5rem;
}

* {
  margin: 0;
  padding: 0;
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

a {
  text-decoration: none;
  color: #000000;
}

.screen {
  padding-left: 0 !important;
}

.table .btns {
  padding-left: 0 !important;
  padding-top: 0 !important;
}

img,
a,
b,
p,
i,
span {
  user-select: none;
}

.screen > button,
.screen > .flex button {
  margin: 0 0.05rem;
}

.img {
  font-size: 0;
}

.between {
  justify-content: space-between;
}

.around {
  justify-content: space-around;
}

textarea {
  resize: none;
}

.clear::after {
  content: "";
  display: block;
  clear: both;
}

.elevation {
  box-shadow: 0px 3px 5px 0px #9999996e;
}

ul,
ol {
  list-style: none;
}

.middle {
  line-height: 0 !important;
  position: relative;
  top: 50%;
  transform: translateY(-50%);
}

.size0 {
  font-size: 0;
}

.flex {
  display: flex;
}

input {
  outline: none;
}

h1,
h2,
h3,
h4,
h5,
h6,
i,
b,
em {
  font-style: normal;
  font-weight: normal;
}

ul,
ol {
  list-style: none;
}

.wrap {
  margin: 0 auto;
  /* width: 100%; */
  box-sizing: border-box;
  padding:0.2rem;
}

html {
  font-size: 100px;
}

body {
  margin: 0;
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", "Roboto", "Oxygen",
    "Ubuntu", "Cantarell", "Fira Sans", "Droid Sans", "Helvetica Neue",
    "Microsoft Yahei", sans-serif;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

* {
  box-sizing: border-box;
  flex-shrink: 0;
}

#app {
  /* width: 100vw; */
  /* height: 100vh; */
}

.flex-row {
  display: flex;
  align-items: center;
  flex-direction: row;
}

.flex-col {
  display: flex;
  flex-direction: column;
}

.justify-start {
  display: flex;
  justify-content: flex-start;
}

.justify-center {
  display: flex;
  justify-content: center;
}

.justify-end {
  display: flex;
  justify-content: flex-end;
}

.justify-evenly {
  display: flex;
  justify-content: space-evenly;
}

.justify-around {
  display: flex;
  justify-content: space-around;
}

.justify-between {
  display: flex;
  justify-content: space-between;
}

.items-start {
  display: flex;
  align-items: flex-start;
}

.items-center {
  display: flex;
  align-items: center;
}

.items-end {
  display: flex;
  align-items: flex-end;
}
