@charset "UTF-8";
* {
  font-family: PingFangSC, PingFangSC-Regular;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  margin: 0;
  line-height: 1;
}

/* 1. 引入字体库 (注意路径要对) */
@font-face {
  font-family: 'iconfont';
  src: url("iconfont.woff2?t=123456") format("woff2"), url("iconfont.woff?t=123456") format("woff"), url("iconfont.ttf?t=123456") format("truetype");
}

/* 2. 定义基础类 */
.iconfont {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* 3. 使用特定的图标 */
.icon-my-custom::before {
  content: "\e6de";
}

.flex {
  display: flex;
}

.flex-1 {
  flex: 1;
}

.flex-none {
  flex: none;
}

.flex-col {
  flex-direction: column;
}

.items-center {
  align-items: center;
}

.justify-between {
  justify-content: space-between;
}

.justify-center {
  justify-content: center;
}

.flex-justify-end {
  justify-content: flex-end;
}

.flex-items-end {
  align-items: flex-end;
}

.flex-wrap {
  flex-wrap: wrap;
}

.justify-around {
  justify-content: space-around;
}

.items-between {
  align-content: space-between;
}

.absolute {
  position: absolute;
}

.relative {
  position: relative;
}

.cursor {
  cursor: pointer;
  user-select: none;
}

.modal {
  position: fixed;
  height: 100%;
  width: 100%;
  left: 0;
  top: 0;
  background: rgba(0, 0, 0, 0.7);
  z-index: 100;
}

.text-flow-one {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.text-flow-two {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
}

.text-flow-three {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 3;
  overflow: hidden;
}

.el-form-item__label {
  line-height: 22px !important;
  margin-bottom: 8px !important;
  padding: 0px !important;
}

.el-input__inner {
  height: 32px !important;
}

.el-checkbox {
  margin-bottom: 8px !important;
}
