/* 超出一行省略 */
.ellipsis {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/* 超出两行省略 注意汉字与字母占位问题 */
.ellipsis-2 {
  overflow: hidden; /* 超出部分隐藏 */
  text-overflow: ellipsis; /* 超出部分以省略号显示 */
  display: -webkit-box; /* 使用老版本 Webkit 内核浏览器的 Flexbox 布局 */
  -webkit-box-orient: vertical; /* 垂直排列 */
  -webkit-line-clamp: 2; /* 设置显示的行数 */
}
/* primary按钮 */
.primary-btn {
  width: 90px;
  height: 30px;
  flex-shrink: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: 4px;
  background-color: #008eff;
  color: #fff;
  letter-spacing: 2px;
}
.primary-btn.disabled {
  background-color: #c0c4cc;
}
.primary-btn.disabled:hover {
  cursor: not-allowed;
  opacity: 1;
}
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.flex {
  display: flex;
  flex-wrap: wrap;
}
.item-center {
  align-items: center;
}
.justify-center {
  justify-content: center;
}
.justify-between {
  justify-content: space-between;
}
.justify-around {
  justify-content: space-around;
}
input:hover,
input:focus-visible,
input:focus {
  border: 0;
  outline: 1px solid #006ae2;
}
button {
  border: 0;
  outline: 0;
  background: none;
  cursor: pointer;
  color: inherit;
  padding: 0;
  font: inherit;
  line-height: normal;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
  user-select: none;
}
button:hover {
  opacity: 0.8;
}

/* 重置滚动条样式  去除滚动条两端的点击按钮 x轴滚动条高度6px  y轴滚动条宽度6px 背景颜色#006ae2*/
*::-webkit-scrollbar {
  width: 6px;
  height: 6px;
}

/* 滚动条滑块 */
*::-webkit-scrollbar-thumb {
  background-color: #015198;
  border-radius: 3px;
}
/* 设置滚动条轨道样式 */
::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

.m-b-10 {
  margin-bottom: 10px;
}
/* 右箭头 */
.youjiantou {
  width: 4px;
  height: 4px;
  border-top: 1px solid #015198;
  border-right: 1px solid #015198;
  transform: rotate(45deg);
  margin-left: 2px;
}

.c-container {
  width: 1200px;
  margin: 0 auto;
  height: inherit;
  position: relative;
  flex-wrap: wrap;
}

.main {
  min-height: calc(100vh - 219px - 45px);
}
