* {
  font-family: PingFang SC, Helvetica Neue, Helvetica, Arial, Microsoft YaHei, Source Han Sans CN, Hiragino Sans GB, Roboto, sans-serif;
}
html {
  /* min-width: 1200px; */
}
body {
  min-width: 1200px;
  margin: 0;
}

ul {
  margin: 0;
  padding: 0;
  list-style: none;
}

img {
  display: inline-block;
}

img.user-img {
  border-radius: 50%;
  background-color: gray;
}

a {
  text-decoration: none;
  color: inherit;
  display: inline-block;
}

input {
  padding: 0;
}

.two-line-ellipsis {
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

i.is-icon {
  display: inline-block;
  background-position: center;
  background-size: initial;
  background-repeat: no-repeat;
  cursor: pointer;
}

i:focus {
  outline: none
}

input {
  background: white;
  outline: none;
  border: 1px solid #ccc;
}

input:focus {
  border: 1px solid #ccc;
}

.must::before {
  content: "*";
  color: red;
  position: absolute;
  left: -10px;
  top: 0px;
}


/* 整个滚动条 */
::-webkit-scrollbar {
  width: 5px;
  height: 8px;
}

/* 滚动条有滑块的轨道部分 */
::-webkit-scrollbar-track-piece {
  background-color: transparent;
  height: 8px;
}

/* 滚动条滑块(竖向:vertical 横向:horizontal) */
::-webkit-scrollbar-thumb {
  cursor: pointer;
  background: #CCD1D9;
  border-radius: 4px;
}

/* 滚动条滑块hover */
::-webkit-scrollbar-thumb:hover {
  background: #CCD1D9;
}

/* 同时有垂直和水平滚动条时交汇的部分 */
::-webkit-scrollbar-corner {
  display: block;
  /* 修复交汇时出现的白块 */
}

[v-cloak] {
  display: none;
}