/*清除浮动*/

a {
  cursor: pointer;
}

#app {
  min-width: 975px;
  height: 100%;
  position: fixed;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
}

#demo {
  /* flex-grow: 1; */
  height: 100%;
  width: 100%;
}

/* 动态宽度工具类 */
.w-\[--size\] {
  width: var(--size);
}

.line-h-1 {
  line-height: 1;
}

.max-w680 {
  max-width: 700px;
  margin: 0 auto;
}

.clearfix:before,
.clearfix:after {
  content: "";
  display: inline-block;
  height: 0;
  clear: both;
  visibility: hidden;
}

* {
  scrollbar-width: none;
  /*IE 与微软浏览器*/
  -ms-overflow-style: none;
  padding: 0;
  margin: 0;
  /* user-select: none; */
  /*IE 与微软浏览器*/
}

*::-webkit-scrollbar {
  display: none;
}

/* 适用于 Firefox */
.page-scrollbar *,
.cur-scrollbar {
  scrollbar-width: thin;
  scrollbar-color: #999 #f1f1f1;
}

/* 隐藏 el-dialog 内的滚动条（Firefox） */
.page-scrollbar .el-dialog * {
  scrollbar-width: none;
}

/* 适用于 Chrome、Safari 和 Edge */
.page-scrollbar *::-webkit-scrollbar,
.cur-scrollbar::-webkit-scrollbar {
  width: 8px;
  height: 8px;
}

/* 滚动条轨道样式 */
.page-scrollbar *::-webkit-scrollbar-track,
.cur-scrollbar::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}

/* 滚动条滑块样式 */
.page-scrollbar *::-webkit-scrollbar-thumb,
.cur-scrollbar::-webkit-scrollbar-thumb {
  background-color: #999;
  border-radius: 4px;
}

/* 鼠标悬停在滑块上的样式 */
.page-scrollbar *::-webkit-scrollbar-thumb:hover,
.cur-scrollbar::-webkit-scrollbar-thumb:hover {
  background-color: #777;
}

/* 隐藏 el-dialog 内的滚动条（Chrome、Safari 和 Edge） */
.page-scrollbar .el-dialog *::-webkit-scrollbar {
  display: none;
}

/* 适用于 Internet Explorer 和旧版 Edge */
.page-scrollbar * {
  -ms-overflow-style: -ms-autohiding-scrollbar;
}

/* 隐藏 el-dialog 内的滚动条（Internet Explorer 和旧版 Edge） */
.page-scrollbar .el-dialog * {
  -ms-overflow-style: none;
}

.clearfix {
  *zoom: 1;
  /*ie6清除浮动的方式 *号只有IE6-IE7执行，其他浏览器不执行*/
}

.max-tool-width {
  width: 170px !important;
}

/*隐藏*/

.hidden {
  display: none;
}

html,
body {
  font-size: 24px;
  height: 100%;
  font-family: "Microsoft YaHei", sans-serif, Arial, Helvetica, sans-serif;
  /* background-color: #000; */
}

ul {
  list-style-type: none;
  /* 移除默认的列表项符号 */
}

.fl {
  float: left;
}

.fr {
  float: right;
}

.vam {
  vertical-align: middle;
}

.tac {
  text-align: center;
}

.tal {
  text-align: left;
}

.tar {
  text-align: right;
}

.taj {
  text-align: justify;
}

.ovH {
  overflow: hidden;
}

.ovS {
  overflow: scroll;
}

/*flex布局*/
.flex {
  display: -webkit-box;
  display: -webkit-flex;
  display: -moz-box;
  display: -ms-flexbox;
  display: flex;
}

.flex-sp-b {
  -webkit-justify-content: space-between;
  -moz-justify-content: space-between;
  -ms-justify-content: space-between;
  -o-justify-content: space-between;
  justify-content: space-between;
}

.flex-sp-a {
  -webkit-justify-content: space-around;
  -moz-justify-content: space-around;
  -ms-justify-content: space-around;
  -o-justify-content: space-around;
  justify-content: space-around;
}

.flex-sp-s {
  -webkit-justify-content: flex-start;
  -moz-justify-content: flex-start;
  -ms-justify-content: flex-start;
  -o-justify-content: flex-start;
  justify-content: flex-start;
}

.flex-sp-c {
  -webkit-justify-content: center;
  -moz-justify-content: center;
  -ms-justify-content: center;
  -o-justify-content: center;
  justify-content: center;
}

.flex-sp-e {
  -webkit-justify-content: flex-end;
  -moz-justify-content: flex-end;
  -ms-justify-content: flex-end;
  -o-justify-content: flex-end;
  justify-content: flex-end;
}

.flex-cz-s {
  -webkit-align-items: flex-start;
  -moz-align-items: flex-start;
  -ms-align-items: flex-start;
  -o-align-items: flex-start;
  align-items: flex-start;
}

.flex-cz-c {
  -webkit-align-items: center;
  -moz-align-items: center;
  -ms-align-items: center;
  -o-align-items: center;
  align-items: center;
}

.flex-cz-e {
  -webkit-align-items: flex-end;
  -moz-align-items: flex-end;
  -ms-align-items: flex-end;
  -o-align-items: flex-end;
  align-items: flex-end;
}

.flex-grow-1 {
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
}

.flex-shrink-0 {
  -webkit-flex-shrink: 0;
  -moz-flex-shrink: 0;
  -ms-flex-shrink: 0;
  -o-flex-shrink: 0;
  flex-shrink: 0;
}

.flex-row {
  -webkit-flex-direction: row;
  -moz-flex-direction: row;
  -ms-flex-direction: row;
  -o-flex-direction: row;
  flex-direction: row;
}

.flex-column {
  -webkit-flex-direction: column;
  -moz-flex-direction: column;
  -ms-flex-direction: column;
  -o-flex-direction: column;
  flex-direction: column;
}

.flex-wrap {
  -webkit-flex-wrap: wrap;
  -moz-flex-wrap: wrap;
  -ms-flex-wrap: wrap;
  -o-flex-wrap: wrap;
  flex-wrap: wrap;
}

.flex-ai-c {
  align-items: center;
}

.flex-ai-e {
  align-items: flex-end !important;
}

.flex-ai-s {
  align-items: flex-start !important;
}

/*flex布局end*/
.positionR {
  position: relative;
}

.positionF {
  position: fixed;
}

.positionA {
  position: absolute;
}

.nowrap {
  white-space: nowrap;
}

.ellipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.ellipsis_1 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 1;
  overflow: hidden;
  word-break: break-all;
  text-overflow: ellipsis;
}

.ellipsis_2 {
  display: -webkit-box;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  overflow: hidden;
  text-overflow: ellipsis;
}

/*color颜色*/
.color000 {
  color: #000;
}

.color333 {
  color: #333;
}

.color666 {
  color: #666;
}

.color777 {
  color: #777;
}

.color999 {
  color: #999;
}

.color7f {
  color: #7f7f7f;
}

.colorbd {
  color: #bdbdbd;
}

.color-black {
  color: #000;
}

.color-purple {
  color: #620cff;
}

.color-green {
  color: #10cc57;
}

.color-red {
  color: #ff1d1d;
}

.color-blue {
  color: #1469ff;
}

.color-sky {
  color: #4283e5;
}
.color-amber {
  color: #fba91b;
}

.color-lime {
  color: #00c94c;
}

.color-violet {
  color: #7742e5;
}

.color-orange {
  color: #ff6219;
}

.fcw {
  color: #fff;
}

.bgcf {
  background-color: #fff;
}

.fs10 {
  font-size: 10px;
}

.fs11 {
  font-size: 11px;
}

.fs12 {
  font-size: 12px;
}

.fs13 {
  font-size: 13px;
}

.fs14 {
  font-size: 14px;
}

.fs15 {
  font-size: 15px;
}

.fs16 {
  font-size: 16px;
}

.fs17 {
  font-size: 17px;
}

.fs18 {
  font-size: 18px;
}

.fs19 {
  font-size: 19px;
}

.fs20 {
  font-size: 20px;
}

.fs21 {
  font-size: 21px;
}

.fs22 {
  font-size: 22px;
}

.fs23 {
  font-size: 23px;
}

.fs24 {
  font-size: 24px;
}

.fs25 {
  font-size: 25px;
}

.fs26 {
  font-size: 26px;
}

.fs27 {
  font-size: 27px;
}

.fs28 {
  font-size: 28px;
}

.fs29 {
  font-size: 29px;
}

.fs30 {
  font-size: 30px;
}

.fs31 {
  font-size: 31px;
}

.fs32 {
  font-size: 32px;
}

.fs33 {
  font-size: 33px;
}

.fs34 {
  font-size: 34px;
}

.fs35 {
  font-size: 35px;
}

.fs36 {
  font-size: 36px;
}

.fs37 {
  font-size: 37px;
}

.fs38 {
  font-size: 38px;
}

.fs39 {
  font-size: 39px;
}

.fs40 {
  font-size: 40px;
}

.fs41 {
  font-size: 41px;
}

.fs42 {
  font-size: 42px;
}

.fs43 {
  font-size: 43px;
}

.fs44 {
  font-size: 44px;
}

.fs45 {
  font-size: 45px;
}

.fs46 {
  font-size: 46px;
}

.fs47 {
  font-size: 47px;
}

.fs48 {
  font-size: 48px;
}

.fs49 {
  font-size: 49px;
}

.fs50 {
  font-size: 50px;
}

.bold {
  font-weight: bold;
}

.border-top {
  box-sizing: border-box;
  border-top: 1px solid #e6e6e6;
}

.border-bottom {
  box-sizing: border-box;
  border-bottom: 1px solid #e6e6e6;
}

.border-box {
  -moz-box-sizing: border-box;
  -webkit-box-sizing: border-box;
  -o-box-sizing: border-box;
  -ms-box-sizing: border-box;
  box-sizing: border-box;
}

.content-box {
  -moz-box-sizing: content-box;
  -webkit-box-sizing: content-box;
  -o-box-sizing: content-box;
  -ms-box-sizing: content-box;
  box-sizing: content-box;
}

/**间距**/
.mt6 {
  margin-top: 6px !important;
}
.mt7 {
  margin-top: 7px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mt21 {
  margin-top: 21px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mt36 {
  margin-top: 36px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.mt63 {
  margin-top: 63px !important;
}

.mt66 {
  margin-top: 66px !important;
}

.mt67 {
  margin-top: 67px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.mt2 {
  margin-top: 2px !important;
}

.mt8 {
  margin-top: 4px !important;
}

.mt8 {
  margin-top: 4px !important;
}

.mt6 {
  margin-top: 6px !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mt12 {
  margin-top: 12px !important;
}

.mt13 {
  margin-top: 13px !important;
}

.mt14 {
  margin-top: 14px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mt18 {
  margin-top: 18px !important;
}

.mt26 {
  margin-top: 26px !important;
}

.mt29 {
  margin-top: 29px !important;
}

.mt31 {
  margin-top: 31px !important;
}

.mt54 {
  margin-top: 54px !important;
}

.mt58 {
  margin-top: 58px !important;
}

.mt64 {
  margin-top: 64px !important;
}

.mt72 {
  margin-top: 72px !important;
}

.mt88 {
  margin-top: 88px !important;
}

.mt32 {
  margin-top: 32px !important;
}

.mt117 {
  margin-top: 117px !important;
}

.mt134 {
  margin-top: 134px !important;
}

.mb3 {
  margin-bottom: 3px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.mb12 {
  margin-bottom: 10px !important;
}
.mb14 {
  margin-bottom: 14px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb18 {
  margin-bottom: 18px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}
.mb22 {
  margin-bottom: 22px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.mb40 {
  margin-bottom: 40px !important;
}

.mb50 {
  margin-bottom: 50px !important;
}

.mb60 {
  margin-bottom: 60px !important;
}

.mb66 {
  margin-bottom: 66px !important;
}

.mb70 {
  margin-bottom: 70px !important;
}

.mb80 {
  margin-bottom: 80px !important;
}

.mb90 {
  margin-bottom: 90px !important;
}

.mb100 {
  margin-bottom: 100px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.mb13 {
  margin-bottom: 13px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.mb45 {
  margin-bottom: 45px !important;
}

.mb55 {
  margin-bottom: 55px !important;
}

.mb65 {
  margin-bottom: 65px !important;
}

.mb75 {
  margin-bottom: 75px !important;
}

.mb85 {
  margin-bottom: 85px !important;
}

.mb95 {
  margin-bottom: 95px !important;
}

.mb2 {
  margin-bottom: 2px !important;
}

.mb4 {
  margin-bottom: 4px !important;
}

.mb6 {
  margin-bottom: 6px !important;
}

.mb8 {
  margin-bottom: 8px !important;
}

.mb19 {
  margin-bottom: 9px !important;
}

.mb23 {
  margin-bottom: 23px !important;
}

.ml2 {
  margin-left: 2px !important;
}

.ml3 {
  margin-left: 3px !important;
}

.ml4 {
  margin-left: 4px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.ml6 {
  margin-left: 6px !important;
}

.ml8 {
  margin-left: 8px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.ml12 {
  margin-left: 12px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.ml16 {
  margin-left: 16px !important;
}

.ml17 {
  margin-left: 17px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.ml23 {
  margin-left: 23px !important;
}
.ml25 {
  margin-left: 25px !important;
}
.ml28 {
  margin-left: 28px !important;
}

.ml30 {
  margin-left: 30px !important;
}
.ml35 {
  margin-left: 35px !important;
}
.ml40 {
  margin-left: 40px !important;
}
.ml42 {
  margin-left: 42px !important;
}
.ml45 {
  margin-left: 45px !important;
}
.ml50 {
  margin-left: 50px !important;
}
.ml55 {
  margin-left: 55px !important;
}
.ml60 {
  margin-left: 60px !important;
}
.ml65 {
  margin-left: 65px !important;
}
.ml70 {
  margin-left: 70px !important;
}

.ml75 {
  margin-left: 75px !important;
}
.ml80 {
  margin-left: 80px !important;
}
.ml85 {
  margin-left: 85px !important;
}
.ml90 {
  margin-left: 90px !important;
}
.ml95 {
  margin-left: 95px !important;
}
.ml100 {
  margin-left: 100px !important;
}

.ml110 {
  margin-left: 110px !important;
}

.ml180 {
  margin-left: 180px !important;
}
.mr2 {
  margin-right: 2px !important;
}
.mr3 {
  margin-right: 3px !important;
}
.mr4 {
  margin-right: 4px !important;
}
.mr5 {
  margin-right: 5px !important;
}
.mr6 {
  margin-right: 6px !important;
}
.mr7 {
  margin-right: 7px !important;
}

.mr8 {
  margin-right: 8px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mr12 {
  margin-right: 12px !important;
}
.mr14 {
  margin-right: 14px !important;
}
.mr15 {
  margin-right: 15px !important;
}
.mr20 {
  margin-right: 20px !important;
}
.mr25 {
  margin-right: 25px !important;
}
.mr27 {
  margin-right: 27px !important;
}
.mr30 {
  margin-right: 30px !important;
}
.mr34 {
  margin-right: 35px !important;
}
.mr35 {
  margin-right: 35px !important;
}
.mr40 {
  margin-right: 40px !important;
}
.mr45 {
  margin-right: 45px !important;
}
.mr50 {
  margin-right: 50px !important;
}
.mr55 {
  margin-right: 55px !important;
}
.mr60 {
  margin-right: 60px !important;
}

.mr70 {
  margin-right: 70px !important;
}

.mr80 {
  margin-right: 80px !important;
}

.mr90 {
  margin-right: 90px !important;
}

.mr100 {
  margin-right: 100px !important;
}

.mr75 {
  margin-right: 75px !important;
}

.mr85 {
  margin-right: 85px !important;
}

.mr95 {
  margin-right: 95px !important;
}

.mr2 {
  margin-right: 2px !important;
}

.mr4 {
  margin-right: 4px !important;
}

.mr6 {
  margin-right: 6px !important;
}

.mr8 {
  margin-right: 8px !important;
}

.mr17 {
  margin-right: 17px !important;
}

.pt3 {
  padding-top: 3px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.pt2 {
  padding-top: 2px !important;
}

.pt4 {
  padding-top: 4px !important;
}

.pt6 {
  padding-top: 6px !important;
}

.pt8 {
  padding-top: 8px !important;
}

.pt14 {
  padding-top: 14px !important;
}

.pt18 {
  padding-top: 18px !important;
}

.pt26 {
  padding-top: 26px !important;
}

.pt32 {
  padding-top: 32px !important;
}

.pt42 {
  padding-top: 42px !important;
}

.pt48 {
  padding-top: 48px !important;
}

.pt64 {
  padding-top: 64px !important;
}

.pt200 {
  padding-top: 200px !important;
}

.pt215 {
  padding-top: 215px !important;
}

.pt165 {
  padding-top: 165px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pb18 {
  padding-bottom: 18px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pb40 {
  padding-bottom: 40px !important;
}

.pb50 {
  padding-bottom: 50px !important;
}

.pb60 {
  padding-bottom: 60px !important;
}

.pb70 {
  padding-bottom: 70px !important;
}

.pb80 {
  padding-bottom: 80px !important;
}

.pb90 {
  padding-bottom: 90px !important;
}

.pb100 {
  padding-bottom: 100px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pb45 {
  padding-bottom: 45px !important;
}

.pb55 {
  padding-bottom: 55px;
}

.pb65 {
  padding-bottom: 65px !important;
}

.pb75 {
  padding-bottom: 75px !important;
}

.pb85 {
  padding-bottom: 85px !important;
}

.pb95 {
  padding-bottom: 95px !important;
}

.pb2 {
  padding-bottom: 2px !important;
}

.pb4 {
  padding-bottom: 4px !important;
}

.pb6 {
  padding-bottom: 6px !important;
}

.pb8 {
  padding-bottom: 8px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.pl40 {
  padding-left: 40px !important;
}

.pl50 {
  padding-left: 50px !important;
}

.pl60 {
  padding-left: 60px !important;
}

.pl70 {
  padding-left: 70px !important;
}

.pl80 {
  padding-left: 80px !important;
}

.pl90 {
  padding-left: 90px !important;
}

.pl100 {
  padding-left: 100px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.pl45 {
  padding-left: 45px !important;
}

.pl48 {
  padding-left: 48px !important;
}

.pl55 {
  padding-left: 55px !important;
}

.pl65 {
  padding-left: 65px !important;
}

.pl75 {
  padding-left: 75px !important;
}

.pl85 {
  padding-left: 85px !important;
}

.pl95 {
  padding-left: 95px !important;
}

.pl2 {
  padding-left: 2px !important;
}

.pl4 {
  padding-left: 4px !important;
}

.pl6 {
  padding-left: 6px !important;
}

.pl8 {
  padding-left: 8px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pr40 {
  padding-right: 40px !important;
}

.pr50 {
  padding-right: 50px !important;
}

.pr60 {
  padding-right: 60px !important;
}

.pr70 {
  padding-right: 70px !important;
}

.pr80 {
  padding-right: 80px !important;
}

.pr90 {
  padding-right: 90px !important;
}

.pr100 {
  padding-right: 100px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pr45 {
  padding-right: 45px !important;
}

.pr55 {
  padding-right: 55px !important;
}

.pr65 {
  padding-right: 65px !important;
}

.pr75 {
  padding-right: 75px !important;
}

.pr85 {
  padding-right: 85px !important;
}

.pr95 {
  padding-right: 95px !important;
}
.plr5 {
  padding-left: 5px;
  padding-right: 5px;
}
.plr10 {
  padding-left: 10px;
  padding-right: 10px;
}
.plr20 {
  padding-left: 20px;
  padding-right: 20px;
}

/* 宽度 */

.height100 {
  height: 100%;
}

.heightUnset {
  height: unset !important;
}

.w100 {
  width: 100%;
}

.w50 {
  width: 50%;
}

.lh15 {
  line-height: 15px;
}

.lh26 {
  line-height: 26px;
}

.lh35 {
  line-height: 35px;
}
.lh50 {
  line-height: 50px;
}

/* haeder */
.left-box {
  height: 100%;
}
.person-head-img {
  width: 34px;
  height: 34px;
  object-fit: cover;
  border-radius: 50%;
  display: block;
  margin-right: 5px;
}
.person-name-text {
  font-size: 14px;
  font-weight: bold;
  color: #000;
}
.person-tel-text {
  color: #666;
  font-size: 12px;
  line-height: 1;
  margin-top: 5px;
}
.left-box .left {
  flex-shrink: 0;
  width: 64px;
  height: 100%;
  background-color: #6b7c9e;
  padding: 6px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  position: relative;
}
.diy-my-center {
  background-color: transparent;
  z-index: 2024;
  width: 100%;
  height: 100%;
  box-sizing: border-box;
  /* background-color: #000; */
  position: fixed;
  top: 0;
  left: 0;
  inset: 0;
  display: flex;
  align-items: flex-start;
  padding-top: 12px;
  padding-left: 55px;
}
.show-all-width {
  padding-left: 225px;
}
.left-box .my-center {
  /* position: absolute;
    top: 12px;
    right: calc(-100% - 60px); */
  background-color: #fff;
  border-radius: 6px;
  padding: 8px;
  padding-top: 3px;
  z-index: 1000;
  box-shadow: 0px 0px 5px 1px #909090;
}
.tool-hover:hover {
  background-color: #dce9ff;
}
.center-tool-text {
  font-size: 14px;
  color: #000000;
  line-height: 1;
}
.center-tool {
  padding: 12px 7px;
  border-top: 1px solid #e6e6e6;
}
.center-tool-icon {
  width: 18px;
  height: 18px;
  display: block;
  margin-right: 7px;
  line-height: 1;
}

.hover-box {
  content: "";
  height: 100%;
  width: 5px;
  position: absolute;
  cursor: w-resize;
  z-index: 10;
  top: 0;
  /* border: 1px solid red; */
}

.l-box {
  left: 0;
}

.r-box {
  right: 0;
}

.other-tools,
.company-box {
  background-color: #6b7c9e;
}
.other-tools {
  padding: 20px 4px 60px 4px;
  /* border-radius */
}
.other-tools .company-active {
  border-radius: 4px;
}
.other-tools .company-icon {
  width: 22px;
  height: 22px;
}
.company-box {
  flex-shrink: 0;
  width: 62px;
  padding: 10px 0 10px 4px;
  box-sizing: border-box;
  display: flex;
  flex-direction: column;
  overflow-y: auto;
  height: calc(100vh - 184px);
}

.company-item {
  padding: 8px 2px;
  display: flex;
  cursor: pointer;
  flex-direction: column;
  align-items: center;
  box-sizing: border-box;
}

.company-active {
  background-color: #546486;
  border-radius: 4px 0px 0px 4px;
}

.company-icon {
  width: 36px;
  height: 36px;
  object-fit: cover;
  border-radius: 5px;
}

.left-item {
  padding: 8px 4px 5px 4px;
  border-radius: 6px;
  overflow: hidden;
  box-sizing: border-box;
  /* text-align: center; */
  display: flex;
  flex-direction: column;
  align-items: center;
  margin-bottom: 6px;
  cursor: pointer;
}

.left-icon {
  width: 20px;
  height: 20px;
  display: block;
  margin-bottom: 3px;
  object-fit: contain;
}

.left-text {
  font-size: 11px;
  line-height: 1;
  color: #ffffff;
  white-space: nowrap;
}

.left-active {
  color: #155ddd;
}

.left-item-active {
  background-color: #ffffff;
}

.other-item {
  background-color: #5c6e92;
  padding: 4px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 15px;
  width: 28px;
  height: 28px;
  cursor: pointer;
}
.other-items {
  background-color: #5c6e92;
  padding: 4px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 15px;
  width: 34px;
  height: 34px;
  cursor: pointer;
}
.other-items img {
  width: 26px;
}

.other-item img {
  height: 20px;
}

.other-item-au {
  width: 28px;
  box-sizing: border-box;
  border-radius: 4px;
  margin-bottom: 15px;
  cursor: pointer;
}

.left-bottom {
  display: flex;
  flex-direction: column;
  align-items: center;
}

.company-child {
  background-color: #546486;
  padding: 25px 12px 25px 12px;
  box-sizing: border-box;
  width: 108px;
  /* height: 100%; */
  /* animation: popups .1s linear ;
    animation-fill-mode:forwards; */
}

/* @keyframes popups {
    50% {width: 70px;}
    100% {width: 108px;}
} */
.company-child-box {
  padding: 4px;
  box-sizing: border-box;
  align-items: center;
  border-radius: 4px;
  /* background-color: #798CB3; */
}

.company-child-img {
  width: 28px;
  height: 28px;
  margin-right: 4px;
  flex-shrink: 0;
  object-fit: cover;
  border-radius: 3px;
}

.company-child-name {
  color: #ffffff;
  font-size: 13px;
  flex-grow: 1;
}

.item-box {
  overflow: auto;
}

.item-text {
  color: #99abce;
  font-size: 11px;
  line-height: 1;
  margin-bottom: 5px;
}

.item-text-new {
  color: #99abce;
  font-size: 11px;
}

.item-list {
  padding: 4px;
  margin: 5px 0;
  align-items: center;
}

.refresh-icon {
  width: 12px;
  height: 12px;
  cursor: pointer;
}

/* header */

/* footer */

.footer-bg {
  background-color: #222a37;
  box-sizing: border-box;
  padding: 18px 0px;
  width: 100%;
}

footer {
  height: 70px;
  padding-left: 20px;
  padding-right: 20px;
  box-shadow: 3px 3px 6px rgba(0, 0, 0, 0.4); /* 设置阴影 */
  display: flex;
  align-items: center;
  justify-content: flex-end;
}

/* footer */

/*section */

section {
  /* height: 100%; */
  /* background-color: #f7f9fc; */
  display: flex;
  flex-flow: column;
  overflow-y: auto;
  padding: 0;
  flex-grow: 1;
  /* height: 100%; */
  /* min-width: 1200px; */
}

.content {
  width: 1200px;
  min-width: 1200px;
  margin: 0 auto;
  -webkit-flex-grow: 1;
  -moz-flex-grow: 1;
  -ms-flex-grow: 1;
  -o-flex-grow: 1;
  flex-grow: 1;
  flex-shrink: 0;
}

.color313131 {
  color: #313131;
}

.colorfff {
  color: #fff;
}

.hide {
  overflow: hidden !important;
}

/* 中间部分 */
.sub-tool {
  width: 280px;
  height: 100%;
  flex-shrink: 0;
  padding: 10px 7px;
  box-sizing: border-box;
  background-color: #fff;
  /* border: 1px solid red; */
  border-right: 1px solid #e6e6e6;
  display: flex;
  flex-direction: column;
  overflow: auto;
}

.task-img {
  width: 18px;
  height: 18px;
  margin-right: 5px;
}

.task-text {
  color: #000000;
  font-size: 14px;
}

.task-sub-item {
  padding: 9px 8px 9px 31px;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
}

.task-sub-item-care {
  padding: 9px 8px;
  border-radius: 6px;
  background-color: #fff;
  cursor: pointer;
  flex: 1;
  /* border-bottom: 1px solid #E6E6E6; */
  margin-bottom: 6px;
  margin-top: 5px;
}
.mt0 {
  margin-top: 0px !important;
}

.task-sub-item-text {
  font-size: 13px;
}

.task-sub-item-active {
  background-color: #dce9ff;

  border-radius: 6px;
}
.task-sub-item-active .task-text {
  color: #155ddd !important;
}
.task-sub-item-active .task-text,
.task-sub-item-active .care-num,
.task-sub-item-active .un-active-num {
  color: #155ddd;
}

.task-sub-item-nums {
  border-radius: 50px;
  background-color: #e02020;
  min-width: 15px;
  padding: 0 3px;
  box-sizing: border-box;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 11px;
  flex-shrink: 0;
}

.task-sub-item-num {
  color: #000000;
  font-size: 14px;
}
.has-border-b {
  position: relative;
  margin-bottom: 11px;
}
.has-border-b::after {
  position: absolute;
  bottom: -5px;
  left: 0;
  height: 1px;
  width: 100%;
  display: block;
  content: "";
  border-bottom: 1px solid #e6e6e6;
}
.task-item {
  border-bottom: 1px solid #e6e6e6;
  padding-bottom: 5px;
  margin-bottom: 5px;
}

.item-left-tool {
  padding: 16px 8px;
  /* border-radius: 6px; */
}

.active-num {
  border-radius: 50px;
  background-color: #e02020;
  min-width: 15px;
  padding: 0 3px;
  box-sizing: border-box;
  height: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff !important;
  font-size: 11px;
  flex-shrink: 0;
}

.care {
  cursor: pointer;
  padding-left: 0;
  display: flex;
  justify-content: space-between;
  position: relative;
}

.care::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: 0;
  width: 100%;
  border-bottom: 1px solid #e6e6e6;
}

.pl7 {
  padding-left: 7px;
}

.care-num {
  color: #000000;
  font-size: 14px;
}

.company-tip {
  margin-top: 7px;
}

.company-tip-item {
  padding: 10px 8px;
  cursor: pointer;
  box-sizing: border-box;
}

.company-tip-img {
  width: 41px;
  height: 41px;
  border-radius: 5px;
  display: block;
  margin-right: 8px;
  object-fit: cover;
}

.company-tip-item-title {
  color: #000000;
  font-size: 13px;
  line-height: 1;
  flex-grow: 1;
}

.company-tip-item-time {
  flex-shrink: 0;
  color: #808080;
  font-size: 11px;
}

.company-tip-top {
  margin-bottom: 7px;
}

.company-tip-bottom-text {
  color: #ff6219;
  font-size: 11px;
  /* padding-right: 15px; */
  margin-right: 10px;
  /* border-right: 1px solid #FF6219; */
  line-height: 1;
  flex-shrink: 0;
}

.company-tip-bottom-copntent {
  padding-left: 15px;
  border-left: 1px solid #ff6219;
  line-height: 1;
  color: #7f7f7f;
  font-size: 11px;
  flex-grow: 1;
  max-width: 125px;
}

.company-tip-bottom {
  align-items: center;
}

.popup {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0;
  right: 0;
  width: 100%;
  height: 100%;
  background-color: rgba(0, 0, 0, 0.6);
  display: flex;
  justify-content: center;
  align-items: center;
  box-sizing: border-box;
  /* min-width: 1200px; */
}

.creat-department {
  width: 455px;
  min-height: 190px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px 15px 20px;
  box-sizing: border-box;
}
.creat-department-title {
  font-size: 14px;
  color: #000;
  margin-bottom: 22px;
}

.creat-department {
  width: 455px;
  min-height: 190px;
  background: #ffffff;
  border-radius: 12px;
  padding: 18px 20px 15px 20px;
  box-sizing: border-box;
}

.creat-department-title {
  font-size: 14px;
  color: #000;
  margin-bottom: 22px;
}

.easy-change-item {
  border: 1px solid #c5c5c5;
  padding: 15px;
  background: #ffffff;
  box-shadow: 0px 4px 6px 0px rgba(223, 223, 223, 0.5);
  border-radius: 6px;
  box-sizing: border-box;
  /* width: 300px; */
  /* height: 200px; */
  position: fixed;
  bottom: 20px;
  z-index: 11;
}

.mini-left {
  left: 55px;
}

.normal-left {
  left: 225px;
}

.mini-item {
  cursor: pointer;
}

.mini-item:not(:last-child) {
  margin-bottom: 8px;
}

.mini-item-img {
  width: 25px;
  height: 25px;
  display: block;
  margin-right: 8px;
}

.mini-item-text {
  color: #7f7f7f;
  font-size: 14px;
}

.mini-active {
  color: #155ddd !important;
}

.star {
  position: relative;
}

.star::before {
  content: "*";
  color: #ff1d1d;
  position: absolute;
  left: -10px;
  top: 50%;
  transform: translateY(-50%);
}

.el-button--primary {
  background-color: #155ddd !important;
}
body .el-button--danger.is-plain {
  color: #ff1d1d !important;
  background-color: #fff !important;
  border-color: #ff1d1d;
}
body .el-button--danger {
  background-color: #ff1d1d;
  color: #fff;
}

/* body .el-button--danger:hover {
    opacity: 0.9;
} */

body .el-button--danger.is-plain:hover {
  color: #ff1d1d;
  background-color: #fff !important;
  border-color: #ff1d1d;
  opacity: 0.7;
}
body .el-button--primary.is-plain {
  color: #409eff !important;
  background-color: #fff !important;
  border-color: #b3d8ff;
}
body .el-button--primary.is-plain:hover {
  color: #409eff !important;
  background-color: #fff !important;
  border-color: #b3d8ff;
  opacity: 0.7;
}
.el-button--primary:hover {
  opacity: 0.7;
}
.is-warn .el-button--primary {
  background-color: #ff1d1d !important;
  color: #fff !important;
  border-color: #ff1d1d !important;
}

.el-message-box__btns .el-button {
  width: 79px;
  box-sizing: border-box;
}

.cur-p {
  cursor: pointer;
}

.label-item-cg {
  background-color: #3f557c;
  line-height: 15px;
  box-sizing: border-box;
  padding: 0 4px;
  border-radius: 2px;
  color: #fff;
  font-size: 10px;
}

.label-qy-cg {
  background-color: #0bae0b;
  line-height: 15px;
  box-sizing: border-box;
  padding: 0 4px;
  border-radius: 2px;
  color: #fff;
  font-size: 10px;
}

.label-gl {
  background-color: #155ddd;
  line-height: 15px;
  box-sizing: border-box;
  padding: 0 4px;
  border-radius: 2px;
  color: #fff;
  font-size: 10px;
}

.mr-auto {
  margin-right: auto;
}
.ml-auto {
  margin-left: auto;
}

.width100 {
  width: 100%;
}

.icon18 {
  width: 18px;
  height: 18px;
}

.primary-btn {
  color: #fff;
  background-color: #155ddd;
}

.info-btn {
  color: #000000;
  background-color: #e5e6e7;
}

.dl-btn {
  height: 27px;
  line-height: 27px;
  text-align: center;
  font-size: 12px;
  min-width: 56px;
  padding: 0 10px;
  cursor: pointer;
  margin-left: 10px;
  box-sizing: border-box;
  border-radius: 2px;
}

.dl-btn:hover {
  opacity: 0.7;
}

.user-left-icon {
  width: 36px;
  height: 36px;
  flex-shrink: 0;
  background-color: #86c67f;
  border-radius: 6px;
}

.left-avatar {
  width: 33px;
  height: 33px;
  object-fit: cover;
  border-radius: 50%;
}

.size25 {
  width: 25px;
  height: 25px;
  object-fit: cover;
}

.size28 {
  width: 28px;
  height: 28px;
  object-fit: cover;
}

.size34 {
  width: 34px;
  height: 34px;
  object-fit: cover;
}

.size36 {
  width: 36px;
  height: 36px;
  object-fit: cover;
}

.size39 {
  width: 39px;
  height: 39px;
  object-fit: cover;
}

.show-company-btn {
  height: 1px;
  position: relative;
}

.show-company-icon {
  position: absolute;
  top: -100px;
  left: -10px;
  cursor: pointer;
}

body .el-dialog,
body .el-message-box {
  border-radius: 12px;
  min-width: 455px;
  /* margin: 50% auto !important;
    transform: translateY(-50%) !important; */
}

.min .el-dialog__title {
  font-size: 15px !important;
  color: #000 !important;
}
.min .el-dialog__body {
  padding: 0px 20px !important;
}

/* 表单模块 S */

.form-price-right-list {
  box-sizing: border-box;
  padding: 20px 0;
}

.form-price-right-list:not(:nth-last-of-type(1)) {
  border-bottom: 1px solid #e6e6e6;
}

.form-button-new-tag {
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #155ddd;
}

.form-new-button {
  background: #155ddd;
  border-radius: 4px;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  -ms-border-radius: 4px;
  -o-border-radius: 4px;
  height: 32px;
  line-height: 32px;
  box-sizing: border-box;
  padding: 0;
  width: 68px;
}

.form-text-blue {
  color: #155ddd;
}

.form-text-red {
  color: #ff0000;
}

.suffix-i-text {
  font-size: 14px;
  color: #000;
  font-style: normal;
  margin-right: 10px;
}

/* 表单模块 E */

/* 项目端公共样式 S */
.project-left-box {
  width: 280px;
  flex-shrink: 0;
  border-right: 1px solid #e6e6e6;
}

.project-left-top {
  height: 48px;
  box-sizing: border-box;
  padding: 0 15px;
  /* border-bottom: 1px solid #E6E6E6; */
}

.project-left-btn {
  height: 32px;
  line-height: 1;
  box-sizing: border-box;
  padding: 0 20px;
  background-color: #155ddd;
  font-size: 14px;
}

.project-left-list-box {
  box-sizing: border-box;
  padding: 0 7px;
  overflow-y: auto;
}

.project-left-list,
.project-left-list1 {
  box-sizing: border-box;
  padding: 14px 7px;
  border-radius: 6px;
  -webkit-border-radius: 6px;
  -moz-border-radius: 6px;
  -ms-border-radius: 6px;
  -o-border-radius: 6px;
  overflow: hidden;
  margin-top: 2px;
  font-size: 14px;
}

.project-left-list:hover,
.project-left-list1:hover {
  background-color: rgba(220, 233, 255, 0.5);
}

.project-left-list.active {
  background: #dce9ff;
  color: #155ddd;
}

.project-left-list1.active {
  background: #dce9ff;
}

.project-left-list-tag {
  font-size: 12px;
  line-height: 1;
  box-sizing: border-box;
  padding: 4px 12px;
  flex-shrink: 0;
  margin-right: 4px;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  box-sizing: border-box;
}

.project-left-list-tag.active {
  background: #dce9ff;
}

.project-left-list-tag0 {
  color: #155ddd;
  background: #e6f1ff;
}

.project-left-list-tag1 {
  color: #ff4600;
  background: #ffefe6;
}

.project-left-inun-icon {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
  margin-right: 4px;
}

.project-left-list-meter,
.project-left-list-meter1 {
  font-size: 12px;
  color: #155ddd;
}

.project-left-list-meter1 {
  color: #ff0000;
}

.project-right-box {
  width: 100%;
}

.project-right-top-icon {
  height: 48px;
  border-bottom: 1px solid #e6e6e6;
  box-sizing: border-box;
  padding-right: 20px;
  position: fixed;
  top: 0;
  right: 0;
  left: 0;
  background-color: #fff;
  /* background-color: #ECF3FF ; */
  z-index: 999;
}

.project-right-top-icon-item {
  width: 20px !important;
  height: 20px !important;
  cursor: pointer;
  margin-left: 15px;
}

.project-right-top-btn {
  width: 88px;
  height: 32px;
  line-height: 32px;
  box-sizing: border-box;
  padding: 0;
  font-size: 14px;
  color: #155ddd;
  border-color: #155ddd;
  margin-left: 40px;
}

.send-tag,
.send-tag1,
.send-tab {
  font-size: 12px;
  height: 22px;
  line-height: 22px;
  box-sizing: border-box;
  padding: 0;
  width: 45px;
  font-weight: bold;
  color: #155ddd;
  background-color: #e6f1ff;
  border-radius: 2px;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  -ms-border-radius: 2px;
  -o-border-radius: 2px;
  overflow: hidden;
  display: inline-block;
  text-align: center;
}

.send-tag1 {
  background-color: #ffefe6;
  color: #ff2800;
}
/* 项目端公共样式 E */

input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}
.recycle-bin-dialog .el-dialog__body {
  padding-top: 0;
}
.recycle-bin-dialog {
  border-radius: 12px;
}
.item-list-active {
  border-radius: 4px;
  background-color: #798cb3;
}
.el-textarea__inner::placeholder {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

.el-textarea__inner {
  font-family: "Helvetica Neue", Helvetica, "PingFang SC", "Hiragino Sans GB",
    "Microsoft YaHei", "微软雅黑", Arial, sans-serif;
}

/* switch开关 S */
.el-switch__core {
  border-radius: 6px !important;
  width: 26px !important;
  height: 11px !important;
  background-color: #d8d8d8 !important;
  border-color: transparent !important;
}
body .el-switch__core:after {
  background-color: #999898;
  width: 17px;
  height: 17px;
  top: -4px;
  left: -1px;
}
.el-switch.is-checked .el-switch__core::after {
  margin-left: -15px !important;
  background-color: #155ddd;
}
.el-switch.is-checked .el-switch__core {
  background-color: #aec5ec !important;
}
/* switch开关 E */
.drawer-el-image {
  margin-right: 10px;
  margin-bottom: 8px;
  border-radius: 5px;
}

.el-main {
  height: 100%;
  flex-grow: 1;
  box-sizing: border-box;
  padding: 0 0 100px;
}
.dl-drawer-header {
  min-height: 50px;
  border-bottom: 1px solid #e6e6e6;
}
/* 搜索S */
.dl-search {
  border-radius: 6px;
  box-sizing: border-box;
  padding: 7px 10px;
  margin-bottom: 6px;
  margin: 0 10px 15px 10px;
  background-color: #f7f7f7;
  position: relative;
}
.dl-search-img {
  width: 20px;
  height: 20px;
  display: block;
  margin-right: 10px;
}
.dl-search-input .el-input__inner {
  border: none;
  height: 20px;
  line-height: 20px;
  padding: 0;
  color: #000;
  background-color: #f7f7f7;
}
.dl-search-input .el-input__inner:focus {
  border: none;
}
.global-search {
  box-sizing: border-box;
  position: absolute;
  top: 47px;
  left: -18px;
  width: 280px;
  background-color: #fff;
  box-shadow: 0px 5px 7px 0px rgba(214, 218, 223, 0.5);
  border-radius: 0px 0px 4px 4px;
  padding: 13px 16px;
  cursor: pointer;
}
.default-search {
  box-sizing: border-box;
  width: 280px;
  background-color: #fff;
  /* box-shadow: 0px 5px 7px 0px rgba(214,218,223,0.5); */
  /* border-radius: 0px 0px 4px 4px; */
  padding: 13px 16px;
  cursor: pointer;
}
.dl-search-result {
  background-color: #fff;
  border-radius: 6px;
  padding: 0 17px;
  box-sizing: border-box;
  position: absolute;
  top: 47px;
  left: 0;
  width: 298px;
  box-shadow: 0 0 3px #e7e7e7;
  z-index: 2025;
}
.dl-search-type {
  padding: 17px 8px 12px 8px;
  border-bottom: 1px solid #e6e6e6;
  color: #666666;
  font-size: 13px;
}
.dl-search-head {
  width: 38px;
  height: 38px;
  border-radius: 4px;
  background-image: linear-gradient(120deg, #479cea 0%, #246cea 100%);
  margin-right: 8px;
}
.dl-search-item {
  padding: 12px 3px;
  cursor: pointer;
}
.dl-search-item:hover {
  background-color: #dce9ff;
}
.dl-search-item:not(:last-child) {
  border-bottom: 1px solid #e6e6e6;
}
.dl-search-tips,
.dl-search-tip {
  color: #666666;
  font-size: 12px;
}
.dl-search-tip {
  padding: 0 3px;
}
.dl-search-name {
  color: #000000;
  font-size: 14px;
}
.dl-search-name span {
  color: red;
}
.global-icon {
  width: 20px;
  display: block;
  margin-right: 7px;
}
.global-search-right {
  width: 6px;
  display: block;
}
.global-search-text {
  color: #000000;
  font-size: 13px;
}
/* 搜索E */
/* 联系客服S */
.service-popup .el-dialog__header {
  display: none !important;
}
.service-popup .el-dialog__body {
  padding: 0 !important;
  padding-bottom: 17px !important;
}

.service-popup-img {
  width: 100%;
  margin-bottom: -10px;
}
.service-popup-code {
  width: 136px;
  height: 136px;
  display: block;
  border-radius: 6px;
  margin: auto;
  /* margin-bottom: 11px; */
}
.service-popup-text {
  color: #515151;
  font-size: 14px;
  margin-bottom: 7px;
  text-align: center;
}
.service-popup-text span {
  color: #000000;
}
.service-popup-btn {
  margin: 0 45px;
}
.service-popup-cancel {
  font-size: 14px;
  color: #000;
  padding: 7px 10px;
  box-sizing: border-box;
  border: 1px solid #999999;
  border-radius: 6px;
  cursor: pointer;
}
.service-popup-title {
  position: absolute;
  top: 26px;
  left: 39px;
  color: #fff;
  font-size: 20px;
  font-weight: bold;
  text-shadow: 0px 7px 8px rgba(215, 215, 215, 0.6);
}
/* 联系客服E */

/* 退出登录S */
.login-out-popup {
  /* position: fixed;
    top: 50%;
    left: 50%; */
  /* transform: translate(-50%, -50%); */
  margin: auto;
  box-shadow: 0 0 3px #999;
  width: 448px;
  height: 172px;
  border-radius: 12px;
  padding: 20px;
  background-color: #fff;
  box-sizing: border-box;
  z-index: 2026;
}
.login-out-popup-title {
  font-size: 17px;
  color: #000;
  margin-bottom: 13px;
}
.login-out-logo {
  width: 68px;
  margin-right: 8px;
  display: block;
}
.login-out-tips {
  color: #155ddd;
}
.login-out-icon {
  width: 16px;
  display: block;
  margin-right: 10px;
}

/* 表单暂无数据样式 */
.el-table__empty-block {
  width: 100% !important;
}

.dis-able {
  height: 16px;
  width: 16px;
  box-sizing: border-box;
  background-color: #b3b3b3;
  margin-right: 14px;
}
.flash-icon {
  width: 14px;
  margin-right: 8px;
}
.company-tip-head {
  object-fit: cover;
  background-color: unset !important;
}
.opcity0 {
  opacity: 0;
}
.app-wrap {
  display: flex;
  flex-direction: column;
}
.notice-item-min {
  width: 15px !important;
  height: 15px !important;
  border-radius: 50% !important;
  background-color: #e02020;
  font-size: 11px;
  color: #fff;
  text-align: center;
  flex-shrink: 0;
}
.e-permission-0,
.e-permission-1,
.e-permission-2,
.e-permission-3,
.e-permission-4,
.p-permission-0,
.p-permission-1,
.p-permission-2,
.p-permission-3,
.p-permission-4,
.p-permission-5 {
  display: none;
}
.service-popup.el-dialog {
  width: 260px !important;
  position: relative;
  min-width: unset !important;
}
.app-text {
  font-size: 15px;
  color: #fff;
}
.not-prompt {
  width: 12px;
  flex-shrink: 0;
}

/* 导出 */
.dl-dialog-content-export {
  padding-top: 10px;
  border-top: 1px solid #eee;
  height: 200px;
  overflow-y: auto;
}
.dl-dialog-content-export a {
  color: #1469ff;
}
.dl-dialog-content-export .item {
  line-height: 34px;
}
.dl-dialog-content-export .item:not(:last-child) {
  border-bottom: 1px dashed #eee;
}
.el-dialog__wrapper.export .el-dialog {
  min-width: 420px;
}
/* 设置对话框居中 */
.el-dialog__wrapper {
  display: flex;
  align-items: center;
  justify-content: center;
}
.el-dialog {
  margin: unset !important;
}
.keep-space {
  white-space: pre;
}
.global-copy-btn {
  width: 60px;
  font-size: 12px;
  line-height: 20px;
  border-radius: 2px;
  padding: 3px;
  color: #333;
  cursor: pointer;
  text-align: center;
  position: fixed;
  z-index: 9999;
  background-color: #fff;
  box-shadow: 3px 3px 5px rgba(0, 0, 0, 0.3);
}
.global-copy-btn:hover {
  background-color: #eee;
}
.mar-auto {
  margin-right: auto;
}
.img-check-dialog.el-dialog {
  min-width: unset !important;
  overflow: hidden !important;
}
.img-check-dialog.el-dialog__header {
  display: flex;
  justify-content: space-between;
}
.img-check-dialog .el-input-group__append {
  background-color: #246cea;
  color: #fff;
  font-size: 12px;
  cursor: pointer;
  border-radius: 8px;
  border-bottom-left-radius: 0;
  border-top-left-radius: 0;
  border: 1px solid #246cea;
}
.img-code {
  cursor: pointer;
  width: 100%;
  flex-shrink: 0;
  height: 129px;
  margin-bottom: 10px;
}
.img-check-dialog .el-dialog__header {
  background-color: #0d1553 !important;
}
.img-check-dialog .el-dialog__title {
  color: #fff;
}
.check-img-code-btn {
  background-color: #246cea;
  color: #fff;
  border-radius: 4px;
  padding: 0 20px;
  margin-left: 10px;
  cursor: pointer;
}

.img-check-dialog .el-form-item__content {
  margin-left: 0 !important;
}

/* 到期提醒弹窗 */
.expire-warn-pop .el-dialog {
  width: unset !important;
  min-width: unset !important;
  padding-bottom: 0px !important;
  box-shadow: unset;
  background-color: transparent;
}
.expire-warn-pop .main-wrap {
}
.expire-warn-pop .main-wrap .item {
  position: relative;
}

.expire-warn-pop .main-wrap .item .btn {
  width: unset;
  position: absolute;
  left: 34px;
  right: 34px;
  bottom: 35px;
  height: 52px;
  border-radius: 50px;
  color: #ffffe7;
  font-size: 17px;
  font-weight: 700;
  cursor: pointer;
  background: linear-gradient(-81deg, #577ff2 0%, #ef6bc4 100%);
  display: flex;
  align-items: center;
  justify-content: center;
}
.expire-warn-pop .main-wrap .item .btn.btn2 {
  background: linear-gradient(-81deg, #5a2c02 0%, #925522 100%);
}
.expire-warn-pop .main-wrap .item .date {
  position: absolute;
  bottom: 230px;
  width: 100%;
  padding: 0 30px;
  box-sizing: border-box;
  color: #81a1e9;
  text-align: center;
}
.expire-warn-pop .main-wrap .item .date2 {
  position: absolute;
  top: 33px;
  width: 100%;
  color: #6d3703;
  padding: 0 30px;
  box-sizing: border-box;
}
.expire-warn-pop .day {
  color: #ee3800;
}
.expire-warn-pop .date-text {
  color: #4977e0;
}

.expire-warn-pop .close-icon {
  width: 26px;
  height: 26px;
  cursor: pointer;
  position: absolute;
  padding: 10px;
  right: -10px;
  top: -10px;
}
.expire-warn-pop .el-dialog__header {
  padding: 0;
}
.details-el-main {
  height: calc(100% - 48px);
}
.details-el-main.mt48 {
  margin-top: 48px;
}
.details-el-main.pb10 {
  padding-bottom: 10px;
}
.remark-box {
  white-space: pre-wrap;
}
.pre-wrap {
  white-space: pre-wrap;
}
