* {
  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;
}

/* 敏感词提示框的样式 */
.content-dialog.el-message-box {
  width: 430px;
  border-radius: 8px;
  padding-bottom: 0px;
}
.content-dialog .el-message-box__message {
  max-height: 300px;
  overflow-y: auto;
	padding-left: 64px;
  padding-top: 5px;
}
.content-dialog .el-message-box__status.el-icon-warning {
	font-size: 50px !important;
	color: #db1b1b;
}
.content-dialog .el-message-box__content {
  padding: 0px 20px 20px;
}
.content-dialog .tips {
	color: #000;
	font-size: 16px;
	font-weight: 600;
	margin-bottom: 5px;
}
.content-dialog .mint-box {
	word-break: normal;
  word-wrap: break-word;
}
.content-dialog .el-message-box__header {
	z-index: 10;
  padding: 15px 15px 10px;
}