
.dialog-wrap[data-v-0359e97d] {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  z-index: 9999;
  pointer-events: none;
}
.modal[data-v-0359e97d] {
  width: 100%;
  height: 100%;
  background: rgba(0, 0, 0, 0.4);
}
.dialog[data-v-0359e97d] {
  min-width: 600px;
  background: #fff;
  position: absolute;
  box-shadow: 0 4px 16px rgba(0,0,0,0.2);
  border-radius: 0 0 4px 4px;
  transition: width 0s, height 0s;

  /* ✨ 修改 1：使用 Flex 布局取代会导致截断的 paddingTop 计算方法 */
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;

  pointer-events: auto;
}
.dialog.is-maximized[data-v-0359e97d] {
  top: 0 !important;
  left: 0 !important;
  width: 100vw !important;
  height: 100vh !important;
  border-radius: 0;
}
.title-wrap[data-v-0359e97d] {
  width: 100%;
  height: 45px;
  -ms-flex-negative: 0;
      flex-shrink: 0; /* ✨ 修改 2：标题栏固定高度不被挤压 */
  padding: 0 80px 0 15px;
  background: #f5f7fa;
  box-sizing: border-box;
  cursor: move;
  border-bottom: 1px solid #e4e7ed;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: justify;
      justify-content: space-between;
}
.title[data-v-0359e97d] {
  -ms-flex: 1;
      flex: 1;
  font-size: 15px;
  color: #303133;
  font-weight: bold;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.toolbar[data-v-0359e97d] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-align: center;
      align-items: center;
  padding-right: 15px;
  cursor: auto;
}
.tool-btn[data-v-0359e97d] { color: #606266; padding: 0 5px; font-size: 14px;
}
.tool-btn[data-v-0359e97d]:hover { color: #409eff;
}
.zoom-text[data-v-0359e97d] { font-size: 13px; color: #909399; margin: 0 8px; width: 40px; text-align: center;
}
.content-wrap[data-v-0359e97d] {
  -ms-flex: 1;
      flex: 1;     /* ✨ 修改 3：自动占据所有剩余空间 */
  height: 0;   /* 必须配合 height: 0 才能在 flex 子级里面出现正常的滚动条 */
  width: 100%;
}
.content[data-v-0359e97d] {
  height: 100%;
  overflow: auto;
  position: relative;
  background: #f8f9fa;
}
.is-dragging[data-v-0359e97d] { pointer-events: none;
}
.preview-box[data-v-0359e97d] {
  width: 100%;
  height: 100%; /* ✨ 修改 4：保证 Excel 能拿到绝对准确的高度计算工作表 Tab 位置 */
  transform-origin: top center;
}
.close[data-v-0359e97d], .max-win[data-v-0359e97d] {
  width: 35px;
  height: 45px;
  line-height: 45px;
  text-align: center;
  position: absolute;
  top: 0;
  cursor: pointer;
  color: #909399;
  font-size: 16px;
  transition: all 0.2s;
  z-index: 10;
}
.close[data-v-0359e97d] { right: 5px;
}
.max-win[data-v-0359e97d] { right: 40px;
}
.close[data-v-0359e97d]:hover { color: #f56c6c; background: #fee2e2;
}
.max-win[data-v-0359e97d]:hover { color: #409eff; background: #e0eaff;
}
.resize[data-v-0359e97d] {
  width: 20px;
  height: 20px;
  position: absolute;
  bottom: 0;
  right: 0;
  cursor: nw-resize;
  z-index: 10;
}
.img-preview[data-v-0359e97d] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-pack: center;
      justify-content: center;
  -ms-flex-align: center;
      align-items: center;
  min-height: 100%;
  padding: 20px;
}
.img-preview img[data-v-0359e97d] {
  max-width: 100%;
  object-fit: contain;
}
.unsupported[data-v-0359e97d] {
  display: -ms-flexbox;
  display: flex;
  -ms-flex-direction: column;
      flex-direction: column;
  -ms-flex-align: center;
      align-items: center;
  -ms-flex-pack: center;
      justify-content: center;
  height: 100%;
  color: #606266;
}
.unsupported i[data-v-0359e97d] {
  font-size: 50px;
  color: #c0c4cc;
  margin-bottom: 15px;
}
.download-link[data-v-0359e97d] {
  margin-top: 15px;
  padding: 8px 20px;
  background: #409eff;
  color: #fff;
  border-radius: 4px;
  text-decoration: none;
}
.dialog-enter-active[data-v-0359e97d], .dialog-leave-active[data-v-0359e97d] {
  transition: opacity 0.2s;
}
.dialog-enter-active .dialog[data-v-0359e97d], .dialog-leave-active .dialog[data-v-0359e97d] {
  transition: transform 0.2s;
}
.dialog-enter .dialog[data-v-0359e97d], .dialog-leave-to .dialog[data-v-0359e97d] {
  transform: scale3d(0.9, 0.9, 1);
}
.dialog-enter[data-v-0359e97d], .dialog-leave-to[data-v-0359e97d] {
  opacity: 0;
}
.text-preview[data-v-0359e97d] {
  padding: 20px;
  background: #fff;
  min-height: 100%;
  text-align: left;
}
.text-content[data-v-0359e97d] {
  margin: 0;
  white-space: pre-wrap; /* 关键：自动换行 */
  word-wrap: break-word;
  font-family: monospace; /* 等宽字体 */
  font-size: 14px;
  line-height: 1.6;
  color: #333;
}

.execution[data-v-b11269e2]{background:#fff;margin-top:3px;height:calc(100% - 3px);padding:24px;border-radius:4px;width:calc(100% - 10px)}[data-v-b11269e2] .el-table--mini,.el-table--small[data-v-b11269e2],.el-table__expand-icon[data-v-b11269e2]{font-size:13px;margin-top:8px}[data-v-b11269e2] .el-table--mini,.el-table--small[data-v-b11269e2],.el-table__expand-icon[data-v-b11269e2]{font-size:13px}[data-v-b11269e2] .el-table--mini,.el-table--small[data-v-b11269e2],.el-table__expand-icon[data-v-b11269e2]{font-size:13px;font-family:Source Han Sans CN;line-height:23px;color:#444547;opacity:1}[data-v-b11269e2] .el-table--border td{height:34px;padding:0px;overflow:hidden}[data-v-b11269e2] .table{margin-bottom:5px}[data-v-b11269e2] .el-table th{background:#f4f4f4;color:#2d2e30;text-align:left;font-size:13px;font-family:Source Han Sans CN;line-height:23px;opacity:1;height:32px;padding:0px}.performance-detail .el-table .row-low[data-v-b11269e2]{background:#fef5f6}.performance-detail .el-table .row-medium[data-v-b11269e2]{background:#fbe9db}.performance-detail .el-table .row-high[data-v-b11269e2]{background:#f6fbff}.pagination[data-v-b11269e2]{text-align:end}.btn[data-v-b11269e2]{width:96px;font-weight:400;font-family:Microsoft YaHei;color:#5b7c9e;font-size:13px}[data-v-b11269e2] .el-dialog__body{padding:0 !important}.block[data-v-b11269e2]{text-align:right;padding-top:10px}[data-v-b11269e2] .el-drawer__header{margin-bottom:0px !important;padding-bottom:8px;background-color:#f3f3f3;color:#333;font-weight:500}.ysa_case[data-v-b11269e2]{color:#bf1a00}.ydja_case[data-v-b11269e2]{color:#f89729}.yja_case[data-v-b11269e2]{color:#082a6d}.ygd_case[data-v-b11269e2]{color:#5cb768}.eps[data-v-b11269e2]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}[data-v-b11269e2] .el-form-item__error{color:#fff;background:#f56c6c;font-size:12px;line-height:1;border-right:6px;position:absolute;z-index:999;border-radius:10px;top:22px;left:10px;width:-moz-fit-content;width:fit-content;padding-left:5px;padding-right:5px}[data-v-b11269e2] .el-form-item__error::before{content:"";width:0;height:0;border:5px solid;position:absolute;bottom:13px;left:15px;z-index:1999;border-color:transparent transparent #f56c6c transparent}[data-v-b11269e2] .ksh.el-button--mini{height:32px;background:#f2f4f8;border:1px solid #eaebec}[data-v-b11269e2] .ksh.el-button--mini:hover{background:#e3e4e6;height:32px}[data-v-b11269e2] .add.el-button--primary{font-size:14px;font-family:Source Han Sans CN;font-weight:400;color:#fff;background:#125fa3;border:1px solid #125fa3;width:72px;height:32px}[data-v-b11269e2] .add.el-button--primary:hover{color:#fff;font-size:14px;font-family:Source Han Sans CN;font-weight:400;background:#417fb5;border:1px solid #125fa3}[data-v-b11269e2] .add.el-button--primary:focus{color:#fff;font-size:14px;font-family:Source Han Sans CN;font-weight:400;background:#417fb5;border:1px solid #125fa3;opacity:.9}[data-v-b11269e2] .add2.el-button--primary{font-size:14px;font-family:Source Han Sans CN;font-weight:400;color:#125fa3;background:#fff;border:none;height:20px;display:-ms-flexbox;display:flex}[data-v-b11269e2] .add2.el-button--primary:hover{color:#125fa3 !important;font-size:14px;font-family:Source Han Sans CN;font-weight:500;background:#fff;border:none}[data-v-b11269e2] .add2.el-button--primary:focus{color:#125fa3 !important;font-size:14px;font-family:Source Han Sans CN;font-weight:500;background:#fff;border:none}[data-v-b11269e2] .add3.el-button--primary{font-size:14px;font-family:Source Han Sans CN;font-weight:400;color:#ec7700;background:#fff;border:none;height:20px;display:-ms-flexbox;display:flex}[data-v-b11269e2] .add3.el-button--primary:hover{color:#ec7700 !important;font-size:14px;font-family:Source Han Sans CN;font-weight:500;background:#fff;border:none}[data-v-b11269e2] .add3.el-button--primary:focus{color:#ec7700 !important;font-size:14px;font-family:Source Han Sans CN;font-weight:500;background:#fff;border:none}[data-v-b11269e2] .plxg.el-button--mini{font-size:14px;font-family:Source Han Sans CN;font-weight:400;color:#125fa3;height:32px;background:#e8f3ff;border:1px solid #125fa3 !important;opacity:1;border-radius:3px !important}[data-v-b11269e2] .plxg.el-button--mini:hover{font-size:14px;font-family:Source Han Sans CN;font-weight:400;background:#e8f3ff;border:1px solid #006dde !important;color:#006dde !important;opacity:1;border-radius:3px}[data-v-b11269e2] .plxg.el-button--mini:focus{font-size:14px;font-family:Source Han Sans CN;font-weight:400;background:#e8f3ff;border:1px solid #006dde !important;color:#006dde !important;opacity:1;border-radius:3px}[data-v-b11269e2] .tjsp.el-button{background:#fff;border:1px solid #eaebec;font-size:14px;font-family:Source Han Sans CN;font-weight:400;height:32px;color:#333}[data-v-b11269e2] .tjsp.el-button:hover{background:#fff;border:1px solid #d5d5d5}[data-v-b11269e2] .wit.el-button{background:#fff;border:1px solid #eaebec;font-size:14px;font-family:Source Han Sans CN;font-weight:400;height:32px;color:#333 !important}[data-v-b11269e2] .wit.el-button:hover{background:#fff;border:1px solid #d5d5d5 !important;color:#333 !important}[data-v-b11269e2] .dc.el-button{padding:5px 10px;background:#fff;font-size:14px;font-family:Source Han Sans CN;font-weight:400;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;color:#333 !important;height:32px}[data-v-b11269e2] .dc.el-button:hover{background:#fff;border:1px solid #d5d5d5;color:#333 !important}[data-v-b11269e2] .c-btn .el-button{padding:5px 10px;background:#fff;font-size:14px;font-family:Source Han Sans CN;font-weight:400;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;color:#125fa3 !important;height:32px;border:none}[data-v-b11269e2] .c-btn.el-button:hover{background:#fff;color:#125fa3 !important}[data-v-b11269e2] .el-form-item--mini.el-form-item,.el-form-item--small.el-form-item[data-v-b11269e2]{margin-bottom:0px !important}[data-v-b11269e2] .el-form-item__label{color:#2d2e30;font-size:14px;font-family:Source Han Sans CN;font-weight:400;opacity:1}.el-form-item--small .el-form-item__content[data-v-b11269e2]{line-height:28px}[data-v-b11269e2] .people-selector-dialog .el-dialog__header{display:none !important}[data-v-b11269e2] .people-selector-dialog .el-dialog{border-radius:14px !important;margin-top:90px !important;width:557px !important}.people-selector-dialog .el-dialog[data-v-b11269e2]{border-radius:14px !important;margin-top:90px !important;width:557px !important}.contCodeOption[data-v-b11269e2]{min-width:384px;max-width:500px}.close-btn[data-v-b11269e2]{margin-left:12px;width:32px;height:32px;background:#f1f1f1;border-radius:50%;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;font-size:18px;font-weight:900;color:#a5a5a5;cursor:pointer}.edit_btn[data-v-b11269e2]{width:84px;height:32px;line-height:32px;text-align:center;background:#125fa3;border-radius:5px;cursor:pointer}.no .edit_btn[data-v-b11269e2]{cursor:no-drop;background:#89afd1}.edit_txt[data-v-b11269e2]{font-family:Source Han Sans CN;font-weight:400;font-size:14px;color:#fff;margin-left:5px;position:relative;bottom:1px}.edit_iconfont[data-v-b11269e2]{font-size:15px;margin-right:8px;color:#fff}.font_14_000[data-v-b11269e2]{color:#000;font-size:14px;font-family:Source Han Sans CN,Source Han Sans CN;font-weight:500}.title_left[data-v-b11269e2]{width:3px;height:13px;background:#125fa3;opacity:1;margin-right:4px;border-radius:18px 18px 18px 18px}[data-v-b11269e2] .brief-dialog .el-dialog{border-radius:14px !important;margin-top:90px !important;width:437px !important}[data-v-b11269e2] .brief-dialog .el-dialog__header{padding:10px 20px 10px 20px}[data-v-b11269e2] .vxe-footer--row{background-color:#f5f7fa !important;height:44px !important}[data-v-b11269e2] .vxe-footer--row .vxe-cell{height:44px !important}.vxe-table .vxe-body--row[data-v-b11269e2]{color:#444547;font-weight:400}[data-v-b11269e2] .vxe-table--render-default{font-weight:400}[data-v-b11269e2] .vxe-table .vxe-checkbox--label{display:none}[data-v-b11269e2] .vxe-table--column .vxe-cell--title{color:#2d2e30}[data-v-b11269e2] .vxe-table .vxe-cell--sort-vertical-layout{font-size:.8em;height:2em;padding-left:2px}[data-v-b11269e2] .vxe-table--column .vxe-footer--column{background-color:#f5f7fa}[data-v-b11269e2] .vxe-table--render-default .vxe-body--row.row--current>.vxe-body--column{background-color:#e3e4e6}html[data-vxe-ui-theme=light][data-v-b11269e2]{--vxe-ui-font-color: #444547;--vxe-ui-font-primary-color: #125FA3;--vxe-ui-font-primary-tinge-color: #d4d5d7;--vxe-ui-font-primary-lighten-color: #797b80;--vxe-ui-font-primary-darken-color: #47494c;--vxe-ui-font-primary-disabled-color: #BFBFBF;--vxe-ui-font-size-mini: 13px;--vxe-ui-table-cell-padding-mini: 5px 10px
}[data-v-b11269e2] .wrap-column .vxe-cell{max-height:90px !important;height:auto !important}[data-v-b11269e2] .vxe-table--render-default .vxe-cell--checkbox .vxe-checkbox--icon{font-weight:400}[data-v-b11269e2] .vxe-table--header .vxe-header--column{background-color:#f4f4f4 !important}[data-v-b11269e2] .vxe-table--header .vxe-cell--title{cursor:pointer}.title-line[data-v-b11269e2]{width:3px;height:14px;background:#125fa3;opacity:1;margin-right:5px}.header-row[data-v-b11269e2]{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;color:#333;position:relative;margin-left:14px;font-size:13px;padding:10px}.module-header[data-v-b11269e2]{display:-ms-flexbox;display:flex;background:#eff6ff;font-size:12px;border-radius:4px 4px 0px 0px;padding-left:30px;padding-top:12px;padding-bottom:12px;-ms-flex-pack:justify;justify-content:space-between}.card-body[data-v-b11269e2]{background:#fbfbfb;display:-ms-flexbox;display:flex;border-radius:0px 0px 4px 4px;padding-top:8px;padding-bottom:8px;padding-left:20px}.approval-box[data-v-b11269e2]{-ms-flex:0 0 15%;flex:0 0 15%;border-left:6px solid #f0f2f5;text-align:center;background:#fff}.body-box[data-v-b11269e2]{-ms-flex:1;flex:1;min-width:0;background:#fff;position:relative}.el-form-item--mini.el-form-item[data-v-b11269e2],.el-form-item--small.el-form-item[data-v-b11269e2]{margin-bottom:0 !important}.el-form-item__label[data-v-b11269e2]{white-space:nowrap}.img-uploader[data-v-b11269e2]{width:320px;height:180px}[data-v-b11269e2] .img-uploader .el-upload{border-radius:6px;cursor:pointer;position:relative;overflow:hidden}.img-uploader-icon[data-v-b11269e2]{font-size:28px !important;color:#8c939d !important;width:178px !important;height:178px !important;line-height:178px !important;text-align:center !important}.avatar[data-v-b11269e2]{width:320px;height:180px;object-fit:cover;display:block}.video[data-v-b11269e2]{width:320px;height:180px;overflow:hidden;border-radius:6px;z-index:99}.video .reselect[data-v-b11269e2]{visibility:hidden;border-radius:80px;-ms-flex-align:center;align-items:center;color:#fff;background-color:rgba(78,88,96,.39);position:relative;top:-220px;left:280px;height:80px;width:80px}.video .reselect .close[data-v-b11269e2]{position:absolute;bottom:10px;left:20px;font-size:14px}.video[data-v-b11269e2]:hover{cursor:pointer}.video:hover .reselect[data-v-b11269e2]{visibility:visible}.uploadLoading[data-v-b11269e2]{width:320px;height:180px;overflow:hidden;border-radius:6px;background-color:#333;color:#fff;text-align:center;z-index:99}[data-v-b11269e2] .el-form-item--mini.el-form-item,.el-form-item--small.el-form-item[data-v-b11269e2]{margin-bottom:0px}[data-v-b11269e2] .el-input__inner{color:#333;font-size:13px;font-family:"Source Han Sans",Arial,sans-serif;font-weight:400;opacity:1}[data-v-b11269e2] .el-form-item__label{color:#333;font-size:13px;font-family:"Source Han Sans",Arial,sans-serif;font-weight:400;-ms-flex-align:center;align-items:center;-ms-flex-pack:end;justify-content:flex-end;opacity:1}[data-v-b11269e2] .el-dialog__body{padding:5px 20px;color:#606266;font-size:14px;word-break:break-all}[data-v-b11269e2] .el-steps--simple{padding:13px 20%}[data-v-b11269e2] .el-drawer__header{margin-bottom:10px !important}[data-v-b11269e2] .el-step__head.is-process{color:#2489fc;border-color:#2489fc}[data-v-b11269e2] .el-step__title.is-process{font-weight:700;color:#2489fc}[data-v-b11269e2] .el-form-item__error{color:#fff;background:#f56c6c;font-size:12px;line-height:1;border-right:6px;position:absolute;z-index:999;border-radius:10px;top:25px;left:10px;width:-moz-fit-content;width:fit-content;padding-left:5px;padding-right:5px}[data-v-b11269e2] .el-form-item__error::before{content:"";width:0;height:0;border:5px solid;position:absolute;bottom:13px;left:15px;z-index:1999;border-color:transparent transparent #f56c6c transparent}[data-v-b11269e2] .el-form-item--mini.el-form-item,.el-form-item--small.el-form-item[data-v-b11269e2]{margin-bottom:20px !important}[data-v-b11269e2] .el-input--mini .el-input__inner{height:28px !important;line-height:28px !important}[data-v-b11269e2] .el-input--small .el-input__inner{height:28px !important;line-height:28px !important}[data-v-b11269e2] .yxsj.el-form-item--small .el-form-item__content,.el-form-item--small .el-form-item__label[data-v-b11269e2]{line-height:32px}[data-v-b11269e2].el-form-item--small .el-form-item__content,.el-form-item--small .el-form-item__label[data-v-b11269e2]{line-height:26px}[data-v-b11269e2].vue-treeselect__placeholder,.vue-treeselect__single-value[data-v-b11269e2]{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-left:5px;padding-right:5px;position:absolute;inset:0px;line-height:26px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}[data-v-b11269e2] .vue-treeselect__single-value{overflow:hidden;text-overflow:ellipsis;white-space:nowrap;padding-left:5px;padding-right:5px;position:absolute;font-size:12px;top:0;right:0;bottom:0;left:0;line-height:26px;-webkit-user-select:none;-moz-user-select:none;-ms-user-select:none;user-select:none;pointer-events:none}[data-v-b11269e2] .img-uploader .el-upload-dragger{width:100%;width:320px;height:180px}[data-v-b11269e2] .img-uploader .el-upload{width:100%;width:320px;height:180px}[data-v-b11269e2] .el-input__inner::-webkit-outer-spin-button,[data-v-b11269e2] .el-input__inner::-webkit-inner-spin-button{-webkit-appearance:none}.demo-drawer__content[data-v-b11269e2]{height:auto !important;padding-bottom:40px}.the-title[data-v-b11269e2]{font-size:13px;color:#333;font-weight:400}
.execution[data-v-ffd32f60]{background:#fff;margin-top:3px;height:calc(100% - 3px);padding:24px;border-radius:4px;width:calc(100% - 10px)}[data-v-ffd32f60] .el-table--mini,.el-table--small[data-v-ffd32f60],.el-table__expand-icon[data-v-ffd32f60]{font-size:13px;margin-top:8px}[data-v-ffd32f60] .el-table--mini,.el-table--small[data-v-ffd32f60],.el-table__expand-icon[data-v-ffd32f60]{font-size:13px}[data-v-ffd32f60] .el-table--mini,.el-table--small[data-v-ffd32f60],.el-table__expand-icon[data-v-ffd32f60]{font-size:13px;font-family:Source Han Sans CN;line-height:23px;color:#444547;opacity:1}[data-v-ffd32f60] .el-table--border td{height:34px;padding:0px;overflow:hidden}[data-v-ffd32f60] .table{margin-bottom:5px}[data-v-ffd32f60] .el-table th{background:#f4f4f4;color:#2d2e30;text-align:left;font-size:13px;font-family:Source Han Sans CN;line-height:23px;opacity:1;height:32px;padding:0px}.performance-detail .el-table .row-low[data-v-ffd32f60]{background:#fef5f6}.performance-detail .el-table .row-medium[data-v-ffd32f60]{background:#fbe9db}.performance-detail .el-table .row-high[data-v-ffd32f60]{background:#f6fbff}.pagination[data-v-ffd32f60]{text-align:end}.btn[data-v-ffd32f60]{width:96px;font-weight:400;font-family:Microsoft YaHei;color:#5b7c9e;font-size:13px}[data-v-ffd32f60] .el-dialog__body{padding:0 !important}.block[data-v-ffd32f60]{text-align:right;padding-top:10px}[data-v-ffd32f60] .el-drawer__header{margin-bottom:0px !important;padding-bottom:8px;background-color:#f3f3f3;color:#333;font-weight:500}.ysa_case[data-v-ffd32f60]{color:#bf1a00}.ydja_case[data-v-ffd32f60]{color:#f89729}.yja_case[data-v-ffd32f60]{color:#082a6d}.ygd_case[data-v-ffd32f60]{color:#5cb768}.eps[data-v-ffd32f60]{overflow:hidden;white-space:nowrap;text-overflow:ellipsis}[data-v-ffd32f60] .el-form-item__error{color:#fff;background:#f56c6c;font-size:12px;line-height:1;border-right:6px;position:absolute;z-index:999;border-radius:10px;top:22px;left:10px;width:-moz-fit-content;width:fit-content;padding-left:5px;padding-right:5px}[data-v-ffd32f60] .el-form-item__error::before{content:"";width:0;height:0;border:5px solid;position:absolute;bottom:13px;left:15px;z-index:1999;border-color:transparent transparent #f56c6c transparent}[data-v-ffd32f60] .ksh.el-button--mini{height:32px;background:#f2f4f8;border:1px solid #eaebec}[data-v-ffd32f60] .ksh.el-button--mini:hover{background:#e3e4e6;height:32px}[data-v-ffd32f60] .add.el-button--primary{font-size:14px;font-family:Source Han Sans CN;font-weight:400;color:#fff;background:#125fa3;border:1px solid #125fa3;width:72px;height:32px}[data-v-ffd32f60] .add.el-button--primary:hover{color:#fff;font-size:14px;font-family:Source Han Sans CN;font-weight:400;background:#417fb5;border:1px solid #125fa3}[data-v-ffd32f60] .add.el-button--primary:focus{color:#fff;font-size:14px;font-family:Source Han Sans CN;font-weight:400;background:#417fb5;border:1px solid #125fa3;opacity:.9}[data-v-ffd32f60] .add2.el-button--primary{font-size:14px;font-family:Source Han Sans CN;font-weight:400;color:#125fa3;background:#fff;border:none;height:20px;display:-ms-flexbox;display:flex}[data-v-ffd32f60] .add2.el-button--primary:hover{color:#125fa3 !important;font-size:14px;font-family:Source Han Sans CN;font-weight:500;background:#fff;border:none}[data-v-ffd32f60] .add2.el-button--primary:focus{color:#125fa3 !important;font-size:14px;font-family:Source Han Sans CN;font-weight:500;background:#fff;border:none}[data-v-ffd32f60] .add3.el-button--primary{font-size:14px;font-family:Source Han Sans CN;font-weight:400;color:#ec7700;background:#fff;border:none;height:20px;display:-ms-flexbox;display:flex}[data-v-ffd32f60] .add3.el-button--primary:hover{color:#ec7700 !important;font-size:14px;font-family:Source Han Sans CN;font-weight:500;background:#fff;border:none}[data-v-ffd32f60] .add3.el-button--primary:focus{color:#ec7700 !important;font-size:14px;font-family:Source Han Sans CN;font-weight:500;background:#fff;border:none}[data-v-ffd32f60] .plxg.el-button--mini{font-size:14px;font-family:Source Han Sans CN;font-weight:400;color:#125fa3;height:32px;background:#e8f3ff;border:1px solid #125fa3 !important;opacity:1;border-radius:3px !important}[data-v-ffd32f60] .plxg.el-button--mini:hover{font-size:14px;font-family:Source Han Sans CN;font-weight:400;background:#e8f3ff;border:1px solid #006dde !important;color:#006dde !important;opacity:1;border-radius:3px}[data-v-ffd32f60] .plxg.el-button--mini:focus{font-size:14px;font-family:Source Han Sans CN;font-weight:400;background:#e8f3ff;border:1px solid #006dde !important;color:#006dde !important;opacity:1;border-radius:3px}[data-v-ffd32f60] .tjsp.el-button{background:#fff;border:1px solid #eaebec;font-size:14px;font-family:Source Han Sans CN;font-weight:400;height:32px;color:#333}[data-v-ffd32f60] .tjsp.el-button:hover{background:#fff;border:1px solid #d5d5d5}[data-v-ffd32f60] .wit.el-button{background:#fff;border:1px solid #eaebec;font-size:14px;font-family:Source Han Sans CN;font-weight:400;height:32px;color:#333 !important}[data-v-ffd32f60] .wit.el-button:hover{background:#fff;border:1px solid #d5d5d5 !important;color:#333 !important}[data-v-ffd32f60] .dc.el-button{padding:5px 10px;background:#fff;font-size:14px;font-family:Source Han Sans CN;font-weight:400;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;color:#333 !important;height:32px}[data-v-ffd32f60] .dc.el-button:hover{background:#fff;border:1px solid #d5d5d5;color:#333 !important}[data-v-ffd32f60] .c-btn .el-button{padding:5px 10px;background:#fff;font-size:14px;font-family:Source Han Sans CN;font-weight:400;display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;color:#125fa3 !important;height:32px;border:none}[data-v-ffd32f60] .c-btn.el-button:hover{background:#fff;color:#125fa3 !important}[data-v-ffd32f60] .el-form-item--mini.el-form-item,.el-form-item--small.el-form-item[data-v-ffd32f60]{margin-bottom:0px !important}[data-v-ffd32f60] .el-form-item__label{color:#2d2e30;font-size:14px;font-family:Source Han Sans CN;font-weight:400;opacity:1}.el-form-item--small .el-form-item__content[data-v-ffd32f60]{line-height:28px}[data-v-ffd32f60] .people-selector-dialog .el-dialog__header{display:none !important}[data-v-ffd32f60] .people-selector-dialog .el-dialog{border-radius:14px !important;margin-top:90px !important;width:557px !important}.people-selector-dialog .el-dialog[data-v-ffd32f60]{border-radius:14px !important;margin-top:90px !important;width:557px !important}.contCodeOption[data-v-ffd32f60]{min-width:384px;max-width:500px}.close-btn[data-v-ffd32f60]{margin-left:12px;width:32px;height:32px;background:#f1f1f1;border-radius:50%;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center;-ms-flex-align:center;align-items:center;font-size:18px;font-weight:900;color:#a5a5a5;cursor:pointer}.edit_btn[data-v-ffd32f60]{width:84px;height:32px;line-height:32px;text-align:center;background:#125fa3;border-radius:5px;cursor:pointer}.no .edit_btn[data-v-ffd32f60]{cursor:no-drop;background:#89afd1}.edit_txt[data-v-ffd32f60]{font-family:Source Han Sans CN;font-weight:400;font-size:14px;color:#fff;margin-left:5px;position:relative;bottom:1px}.edit_iconfont[data-v-ffd32f60]{font-size:15px;margin-right:8px;color:#fff}.font_14_000[data-v-ffd32f60]{color:#000;font-size:14px;font-family:Source Han Sans CN,Source Han Sans CN;font-weight:500}.title_left[data-v-ffd32f60]{width:3px;height:13px;background:#125fa3;opacity:1;margin-right:4px;border-radius:18px 18px 18px 18px}[data-v-ffd32f60] .brief-dialog .el-dialog{border-radius:14px !important;margin-top:90px !important;width:437px !important}[data-v-ffd32f60] .brief-dialog .el-dialog__header{padding:10px 20px 10px 20px}[data-v-ffd32f60] .vxe-footer--row{background-color:#f5f7fa !important;height:44px !important}[data-v-ffd32f60] .vxe-footer--row .vxe-cell{height:44px !important}.vxe-table .vxe-body--row[data-v-ffd32f60]{color:#444547;font-weight:400}[data-v-ffd32f60] .vxe-table--render-default{font-weight:400}[data-v-ffd32f60] .vxe-table .vxe-checkbox--label{display:none}[data-v-ffd32f60] .vxe-table--column .vxe-cell--title{color:#2d2e30}[data-v-ffd32f60] .vxe-table .vxe-cell--sort-vertical-layout{font-size:.8em;height:2em;padding-left:2px}[data-v-ffd32f60] .vxe-table--column .vxe-footer--column{background-color:#f5f7fa}[data-v-ffd32f60] .vxe-table--render-default .vxe-body--row.row--current>.vxe-body--column{background-color:#e3e4e6}html[data-vxe-ui-theme=light][data-v-ffd32f60]{--vxe-ui-font-color: #444547;--vxe-ui-font-primary-color: #125FA3;--vxe-ui-font-primary-tinge-color: #d4d5d7;--vxe-ui-font-primary-lighten-color: #797b80;--vxe-ui-font-primary-darken-color: #47494c;--vxe-ui-font-primary-disabled-color: #BFBFBF;--vxe-ui-font-size-mini: 13px;--vxe-ui-table-cell-padding-mini: 5px 10px
}[data-v-ffd32f60] .wrap-column .vxe-cell{max-height:90px !important;height:auto !important}[data-v-ffd32f60] .vxe-table--render-default .vxe-cell--checkbox .vxe-checkbox--icon{font-weight:400}[data-v-ffd32f60] .vxe-table--header .vxe-header--column{background-color:#f4f4f4 !important}[data-v-ffd32f60] .vxe-table--header .vxe-cell--title{cursor:pointer}.title-line[data-v-ffd32f60]{width:3px;height:14px;background:#125fa3;opacity:1;margin-right:5px}.header-row[data-v-ffd32f60]{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;color:#333;position:relative;margin-left:14px;font-size:13px;padding:10px}.module-header[data-v-ffd32f60]{display:-ms-flexbox;display:flex;background:#eff6ff;font-size:12px;border-radius:4px 4px 0px 0px;padding-left:30px;padding-top:12px;padding-bottom:12px;-ms-flex-pack:justify;justify-content:space-between}.card-body[data-v-ffd32f60]{background:#fbfbfb;display:-ms-flexbox;display:flex;border-radius:0px 0px 4px 4px;padding-top:8px;padding-bottom:8px;padding-left:20px}.approval-box[data-v-ffd32f60]{-ms-flex:0 0 15%;flex:0 0 15%;border-left:6px solid #f0f2f5;text-align:center;background:#fff}.body-box[data-v-ffd32f60]{-ms-flex:1;flex:1;min-width:0;background:#fff;position:relative}.el-form-item--mini.el-form-item[data-v-ffd32f60],.el-form-item--small.el-form-item[data-v-ffd32f60]{margin-bottom:0 !important}.el-form-item__label[data-v-ffd32f60]{white-space:nowrap}.execution[data-v-ffd32f60]{min-height:820px;height:auto;padding-bottom:100px;display:-ms-flexbox;display:flex;-ms-flex-pack:center;justify-content:center}.execution .announcement-detail[data-v-ffd32f60]{display:-ms-flexbox;display:flex;width:900px;-ms-flex-direction:column;flex-direction:column;border:1px solid #e9e9e9}.execution .announcement-detail .title[data-v-ffd32f60]{display:-ms-flexbox;display:flex;-ms-flex-align:start;align-items:flex-start;-ms-flex-direction:column;flex-direction:column;padding:20px 20px;border-bottom:1px solid #e9e9e9}.execution .announcement-detail .title .bottom[data-v-ffd32f60]{display:-ms-flexbox;display:flex;-ms-flex-align:center;align-items:center;margin-top:10px}.execution .announcement-detail .title .bottom .tag[data-v-ffd32f60]{color:#276fb1;margin-right:14px;font-size:13px}.execution .announcement-detail .title .bottom .time[data-v-ffd32f60]{color:#979797;font-size:14px;font-family:Arial;font-weight:400}.execution .announcement-detail .title h3[data-v-ffd32f60]{font-size:26px;font-weight:600;color:#333}.execution .announcement-detail .content[data-v-ffd32f60]{padding:20px 28px}
