@charset "UTF-8";
/* ******************* 自定义变量 ******************* */
/* ******************* 自定义变量 end *************** */
:root {
  --el-color-primary: #003865;
  --el-color-success: #0ACF97;
  --el-color-warning: #f15a22;
  --el-color-danger: #F58678;
  --el-color-info: #CAD4E1;
  --el-text-color-regular: #333;
  --el-font-size-base: 12px;
  --el-text-color-primary: #233451;
  --el-color-primary-light-3: #1179C4;
}

/* Make clicks pass-through */
#nprogress {
  pointer-events: none;
}

#nprogress .bar {
  background: #038aff;
  position: fixed;
  z-index: 1031;
  top: 0;
  left: 0;
  width: 100%;
  height: 3px;
}
#nprogress .peg {
  display: block;
  position: absolute;
  right: 0px;
  width: 100px;
  height: 100%;
  box-shadow: 0 0 10px #038aff, 0 0 5px #038aff;
  opacity: 1;
  transform: rotate(3deg) translate(0px, -4px);
}
#nprogress .spinner {
  display: block;
  position: fixed;
  z-index: 1031;
  top: 15px;
  right: 15px;
}
#nprogress .spinner-icon {
  width: 18px;
  height: 18px;
  box-sizing: border-box;
  border: solid 2px transparent;
  border-top-color: #29d;
  border-left-color: #29d;
  border-radius: 50%;
  -webkit-animation: nprogress-spinner 400ms linear infinite;
  animation: nprogress-spinner 400ms linear infinite;
}

.nprogress-custom-parent {
  overflow: hidden;
  position: relative;
}

.nprogress-custom-parent #nprogress .spinner,
.nprogress-custom-parent #nprogress .bar {
  position: absolute;
}

@-webkit-keyframes nprogress-spinner {
  0% {
    -webkit-transform: rotate(0deg);
  }
  100% {
    -webkit-transform: rotate(360deg);
  }
}
@keyframes nprogress-spinner {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
@charset "UTF-8";
/* ******************* 自定义变量 ******************* */
/* ******************* 自定义变量 end *************** */
:root {
  --el-color-primary: #003865;
  --el-color-success: #0ACF97;
  --el-color-warning: #f15a22;
  --el-color-danger: #F58678;
  --el-color-info: #CAD4E1;
  --el-text-color-regular: #333;
  --el-font-size-base: 12px;
  --el-text-color-primary: #233451;
  --el-color-primary-light-3: #1179C4;
}
.el-sub-menu .el-sub-menu__title .title {
  padding-left: 5px;
}
.el-menu--collapse .el-sub-menu .el-sub-menu__title {
  padding-right: 0px;
}
.el-menu--collapse .el-sub-menu .el-sub-menu__title .title {
  height: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
  display: inline-block;
}
.el-menu--collapse .el-sub-menu .el-sub-menu__title .el-icon {
  display: none;
}
.el-menu--collapse .el-sub-menu.is-active i {
  color: #fff;
}

/* 右键菜单动画 */
.context-menu-enter-active {
  -webkit-animation: contextMenuIn 0.2s ease-out;
          animation: contextMenuIn 0.2s ease-out;
}
.context-menu-leave-active {
  -webkit-animation: contextMenuOut 0.15s ease-in;
          animation: contextMenuOut 0.15s ease-in;
}
@-webkit-keyframes contextMenuIn {
0% {
    opacity: 0;
    transform: scale(0.9) translateY(-5px);
}
100% {
    opacity: 1;
    transform: scale(1) translateY(0);
}
}
@keyframes contextMenuIn {
0% {
    opacity: 0;
    transform: scale(0.9) translateY(-5px);
}
100% {
    opacity: 1;
    transform: scale(1) translateY(0);
}
}
@-webkit-keyframes contextMenuOut {
0% {
    opacity: 1;
    transform: scale(1);
}
100% {
    opacity: 0;
    transform: scale(0.9);
}
}
@keyframes contextMenuOut {
0% {
    opacity: 1;
    transform: scale(1);
}
100% {
    opacity: 0;
    transform: scale(0.9);
}
}
.custom-context-menu {
  position: fixed;
  background-color: #fff;
  border: none;
  border-radius: 8px;
  box-shadow: 0 6px 16px 0 rgba(0, 0, 0, 0.08), 0 3px 6px -4px rgba(0, 0, 0, 0.12), 0 9px 28px 8px rgba(0, 0, 0, 0.05);
  z-index: 9999;
  min-width: 180px;
  font-size: 13px;
  overflow: hidden;
  -webkit-user-select: none;
     -moz-user-select: none;
      -ms-user-select: none;
          user-select: none;
}
.custom-context-menu .context-menu-header {
  padding: 8px 12px;
  background: linear-gradient(135deg, #f5f7fa 0%, #e4e7ed 100%);
  border-bottom: 1px solid #ebeef5;
}
.custom-context-menu .context-menu-header .menu-title {
  font-weight: 600;
  color: #303133;
  font-size: 12px;
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-context-menu .context-menu-list {
  margin: 0;
  padding: 4px 0;
  list-style: none;
}
.custom-context-menu .context-menu-item {
  display: flex;
  align-items: center;
  padding: 8px 12px;
  cursor: pointer;
  color: #606266;
  transition: all 0.2s ease;
  position: relative;
}
.custom-context-menu .context-menu-item .menu-icon {
  font-size: 14px;
  margin-right: 8px;
  color: #909399;
  transition: all 0.2s ease;
}
.custom-context-menu .context-menu-item span {
  flex: 1;
}
.custom-context-menu .context-menu-item:hover {
  background-color: #f5f7fa;
  color: #409eff;
}
.custom-context-menu .context-menu-item:hover .menu-icon {
  color: #409eff;
  transform: scale(1.1);
}
.custom-context-menu .context-menu-item:active {
  background-color: #ecf5ff;
}
.custom-context-menu .context-menu-divider {
  height: 1px;
  margin: 4px 12px;
  background-color: #ebeef5;
}
@charset "UTF-8";
/* ******************* 自定义变量 ******************* */
/* ******************* 自定义变量 end *************** */
[data-v-6a16a8fc]:root {
  --el-color-primary: #003865;
  --el-color-success: #0ACF97;
  --el-color-warning: #f15a22;
  --el-color-danger: #F58678;
  --el-color-info: #CAD4E1;
  --el-text-color-regular: #333;
  --el-font-size-base: 12px;
  --el-text-color-primary: #233451;
  --el-color-primary-light-3: #1179C4;
}
.dialog-loading[data-v-6a16a8fc] {
  min-height: 150px;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}
.loading-content[data-v-6a16a8fc] {
  width: 100%;
  position: relative;
}
.loading-skeleton[data-v-6a16a8fc] {
  opacity: 0.6;
}
.skeleton-line[data-v-6a16a8fc] {
  height: 16px;
  background: linear-gradient(90deg, #f0f0f0 25%, #e0e0e0 50%, #f0f0f0 75%);
  background-size: 200% 100%;
  -webkit-animation: skeleton-loading-6a16a8fc 1.5s infinite;
          animation: skeleton-loading-6a16a8fc 1.5s infinite;
  border-radius: 4px;
  margin-bottom: 12px;
}
.skeleton-line.skeleton-title[data-v-6a16a8fc] {
  width: 40%;
  height: 20px;
  margin-bottom: 20px;
}
.skeleton-line.skeleton-text[data-v-6a16a8fc] {
  width: 100%;
}
.skeleton-line.skeleton-text.short[data-v-6a16a8fc] {
  width: 70%;
}
.loading-spinner[data-v-6a16a8fc] {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
}
.spinner[data-v-6a16a8fc] {
  width: 32px;
  height: 32px;
  border: 3px solid #f0f0f0;
  border-top-color: #409eff;
  border-radius: 50%;
  -webkit-animation: spin-6a16a8fc 0.8s linear infinite;
          animation: spin-6a16a8fc 0.8s linear infinite;
}
@-webkit-keyframes skeleton-loading-6a16a8fc {
0% {
    background-position: 200% 0;
}
100% {
    background-position: -200% 0;
}
}
@keyframes skeleton-loading-6a16a8fc {
0% {
    background-position: 200% 0;
}
100% {
    background-position: -200% 0;
}
}
@-webkit-keyframes spin-6a16a8fc {
to {
    transform: rotate(360deg);
}
}
@keyframes spin-6a16a8fc {
to {
    transform: rotate(360deg);
}
}
@charset "UTF-8";
/* ******************* 自定义变量 ******************* */
/* ******************* 自定义变量 end *************** */
:root {
  --el-color-primary: #003865;
  --el-color-success: #0ACF97;
  --el-color-warning: #f15a22;
  --el-color-danger: #F58678;
  --el-color-info: #CAD4E1;
  --el-text-color-regular: #333;
  --el-font-size-base: 12px;
  --el-text-color-primary: #233451;
  --el-color-primary-light-3: #1179C4;
}
.pub-dialog {
  min-width: 400px;
  border-radius: 10px;
  overflow: hidden;
}
.pub-dialog .el-dialog__header {
  margin-right: 0;
  padding-top: 10px;
  background: #f5f7fa;
  color: #252733 !important;
  border-top-left-radius: 10px;
  border-top-right-radius: 10px;
}
.pub-dialog .el-dialog__header .el-dialog__headerbtn {
  top: 0;
  right: 0;
  width: 44px;
  height: 44px;
  color: #fff;
}
.pub-dialog .el-dialog__header .el-dialog__headerbtn .el-icon {
  color: #003865;
}
.pub-dialog .el-dialog__title {
  font-size: 14px;
  font-weight: bold;
}
.pub-dialog .el-dialog__footer {
  padding: 10px;
  border-top: 1px solid #c5c5c5;
}
.pub-dialog .el-dialog__footer .el-button--small {
  padding: 9px 20px 9px 20px;
}
.pub-dialog .dialog-info {
  max-height: 70vh;
  overflow: auto;
  margin: -30px -20px;
  padding: 20px 20px;
}
.pub-dialog .dialog-info .title {
  position: relative;
  margin-bottom: 5px;
  padding-left: 30px;
  font-size: 16px;
  font-weight: bold;
}
.pub-dialog .dialog-info .text {
  padding-left: 30px;
  color: #999;
}
.pub-dialog .dialog-info .iconfont-20 {
  position: absolute;
  top: 0;
  left: 0;
  font-weight: bold;
}
.pub-dialog .dialog-form {
  padding-right: 60px;
  max-height: 400px;
  overflow: auto;
}
.pub-dialog .dialog-form .el-select {
  width: 100%;
}
.fullscreenHeight .el-dialog__body {
  height: calc(100% - 100px);
}

/* 弹窗动画效果 */
.pub-dialog {
  /* 入场动画 */
}
.pub-dialog.el-dialog {
  -webkit-animation: dialogFadeIn 0.3s ease-out;
          animation: dialogFadeIn 0.3s ease-out;
}

/* 弹窗入场动画 - 缩放 + 淡入 */
@-webkit-keyframes dialogFadeIn {
0% {
    opacity: 0;
    transform: scale(0.85) translateY(-20px);
}
60% {
    transform: scale(1.02) translateY(0);
}
100% {
    opacity: 1;
    transform: scale(1) translateY(0);
}
}
@keyframes dialogFadeIn {
0% {
    opacity: 0;
    transform: scale(0.85) translateY(-20px);
}
60% {
    transform: scale(1.02) translateY(0);
}
100% {
    opacity: 1;
    transform: scale(1) translateY(0);
}
}
/* 遮罩层淡入效果 */
.el-overlay {
  -webkit-animation: overlayFadeIn 0.25s ease-out;
          animation: overlayFadeIn 0.25s ease-out;
}
@-webkit-keyframes overlayFadeIn {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
@keyframes overlayFadeIn {
from {
    opacity: 0;
}
to {
    opacity: 1;
}
}
/* 关闭按钮悬停动画 */
.pub-dialog .el-dialog__headerbtn {
  transition: transform 0.2s ease, background-color 0.2s ease;
  border-radius: 50%;
}
.pub-dialog .el-dialog__headerbtn:hover {
  transform: rotate(90deg);
  background-color: rgba(0, 0, 0, 0.05);
}

/* 按钮点击涟漪效果增强 */
.pub-dialog .el-dialog__footer .el-button {
  transition: all 0.2s ease;
}
.pub-dialog .el-dialog__footer .el-button:hover {
  transform: translateY(-1px);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.pub-dialog .el-dialog__footer .el-button:active {
  transform: translateY(0);
}

.demo-rich-conent[data-v-19c98e7a] {
  display: flex;
  flex-direction: column
}
.msgItems[data-v-19c98e7a] :hover{
  cursor: pointer;
}
.msgItems[data-v-19c98e7a] {
  display: flex;
  margin: 10px;
  border: 1px solid #eee;
  border-left: none
}
.msgItems-left[data-v-19c98e7a] {
  width: 80%;
  padding-left: 5px;
  border-left: 3px solid;
}
.mesItems-right[data-v-19c98e7a] {
  width: 20%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.msgItems-left-0[data-v-19c98e7a] {
  border-color: #FEC03D;
}
.msgItems-left-1[data-v-19c98e7a] {
  border-color: #58A3F7;
}
.msgItems-left-2[data-v-19c98e7a] {
  border-color: #FB6260;
}
.msgItems-left-3[data-v-19c98e7a] {
  border-color: #52C1F5;
}
.msgItems-left-4[data-v-19c98e7a] {
  border-color: #8167F5;
}
.msgTop[data-v-19c98e7a] {
  padding-left: 10px;
}
.msgTop[data-v-19c98e7a], .msgBottom[data-v-19c98e7a] {
  background-color: #F5F5F5;
  line-height: 30px;
}
.msgBottom[data-v-19c98e7a] {
  text-align: center;
}
.msgCenter[data-v-19c98e7a] {
  max-height: 580px;
  overflow: auto;
}
.label-red[data-v-19c98e7a] {
  padding: 3px;
  border-radius: 5px;
}
.user-container[data-v-19c98e7a] {
  display: flex;
  align-items: center;
}
[data-v-19c98e7a] .el-dropdown-link {
  display: flex;
  align-items: center;
}
.SyncAuthBtn[data-v-19c98e7a] :hover{
  cursor: pointer;
}
.iconfont-cursor[data-v-19c98e7a] {
  cursor: pointer;
}

/* 折叠按钮动画效果 */
.toggle-btn[data-v-19c98e7a] {
  cursor: pointer;
  transition: transform 0.3s ease, color 0.2s ease;
}
.toggle-btn[data-v-19c98e7a]:hover {
  color: #409eff;
  transform: scale(1.15);
}
.toggle-btn[data-v-19c98e7a]:active {
  transform: scale(0.95);
}
.toggle-btn.is-collapse[data-v-19c98e7a] {
  transform: rotate(180deg);
}
.toggle-btn.is-collapse[data-v-19c98e7a]:hover {
  transform: rotate(180deg) scale(1.15);
}

@charset "UTF-8";
/* ******************* 自定义变量 ******************* */
/* ******************* 自定义变量 end *************** */
[data-v-ea0cd934]:root {
  --el-color-primary: #003865;
  --el-color-success: #0ACF97;
  --el-color-warning: #f15a22;
  --el-color-danger: #F58678;
  --el-color-info: #CAD4E1;
  --el-text-color-regular: #333;
  --el-font-size-base: 12px;
  --el-text-color-primary: #233451;
  --el-color-primary-light-3: #1179C4;
}
.fade-slide-enter-active[data-v-ea0cd934],
.fade-slide-leave-active[data-v-ea0cd934] {
  transition: all 0.35s;
}
.fade-slide-enter-from[data-v-ea0cd934] {
  opacity: 0;
  transform: translateX(20px);
}
.fade-slide-leave-to[data-v-ea0cd934] {
  opacity: 0;
  transform: translateX(-20px);
}
/* 盒模型采用 border-box */
* {
 box-sizing: border-box;
 word-break: break-word;
}

/* 清除内外边距 */
body, h1, h2, h3, h4, h5, h6, hr, p, blockquote, /* structural elements 结构元素 */
dl, dt, dd, ul, ol, li, /* list elements 列表元素 */
pre, /* text formatting elements 文本格式元素 */
fieldset, lengend, button, input, textarea, /* form elements 表单元素 */
th, td { /* table elements 表格元素 */
    margin: 0;
    padding: 0;
    border: 0;
    font-size: 100%;
    font: inherit;
    vertical-align: baseline;
}

/* 设置默认字体 */
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
form,
input,
textarea,
p,
th,
td {
  margin: 0;
  padding: 0
}

table {
  border-collapse: collapse;
  border-spacing: 0
}

img {
  border: 0
}

strong,
th {
  font-style: normal;
  font-weight: normal
}

ol,
ul {
  list-style: none
}

th {
  text-align: left
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: normal
}

input,
textarea,
select {
  font-family: inherit;
  font-size: inherit;
  font-weight: inherit;
}

input,
textarea,
select {
  *font-size: 100%
}

i {
  font-style: normal;
}

a {
  text-decoration: none;
}

:focus {
  outline: 0;
}


/** */

body {
  font: 12px/20px "Microsoft YaHei", tahoma, "\5b8b\4f53", sans-serif;
}


/** 辅助样式 */
.iconfont-14 {
  width: 14px;
  height: 14px;
  font-size: 14px;
}

.iconfont-20 {
  width: 20px;
  height: 20px;
  font-size: 20px;
}

.hidden {
  display: none;
}

.clear {
  clear: both;
}

.clearfix:after {
  content: ".";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}

* html .clearfix {
  height: 1%;
}

#ifr {
  display: none;
}

.flex {
  display: flex;
}
.is-vertical {
  display: flex;
  flex-direction: column;
}


.el-button--small svg {
  vertical-align: top;
  margin-right: 3px;
  width: 1em;
  height: 1em;
  font-size: 1em;
}
@charset "UTF-8";
/* ******************* 自定义变量 ******************* */
/* ******************* 自定义变量 end *************** */
:root {
  --el-color-primary: #003865;
  --el-color-success: #0ACF97;
  --el-color-warning: #f15a22;
  --el-color-danger: #F58678;
  --el-color-info: #CAD4E1;
  --el-text-color-regular: #333;
  --el-font-size-base: 12px;
  --el-text-color-primary: #233451;
  --el-color-primary-light-3: #1179C4;
}

/** Layout Begin **/
html,
body,
#app,
.wrapper {
  height: 100%;
}

body {
  font-size: 14px;
}

.wrapper {
  display: flex;
  flex: 1;
}

.container {
  display: flex;
  flex: 1;
  background-color: #f0f1f5;
  overflow-y: hidden;
}

.sidebar {
  display: flex;
  flex-direction: column;
  width: 200px;
  transition: width 0.3s ease;
  background: #333A45;
}
.sidebar .el-menu .title,
.sidebar .el-menu .menuTitle,
.sidebar .el-menu span {
  white-space: nowrap;
  opacity: 1;
  transition: opacity 0.15s ease;
}
.sidebar .el-menu .title {
  overflow: hidden;
  text-overflow: ellipsis;
}
.sidebar .side-hd .logo {
  display: block;
  height: 50px;
  margin-top: 5px;
  line-height: 50px;
  width: 100%;
  background: url(../static/img/logo-white.75082f7f.png) no-repeat center center;
  font-size: 22px;
  color: #fff;
  background-size: 55%;
}
.sidebar .side-fd {
  display: flex;
  align-items: center;
  border-top: 1px solid #999;
  padding: 10px 20px;
  color: #fff;
}
.sidebar .side-fd i {
  margin-right: 8px;
  font-size: 22px;
}
.sidebar .side-bd {
  flex: 1;
  overflow-y: auto;
}
.sidebar .el-menu {
  border: 0;
  background: none;
  color: #869099;
}
.sidebar .el-menu .el-menu-item {
  height: 30px;
  line-height: 30px;
  padding: 0 15px;
  color: #e4ecf6;
  background-color: #333A45;
}
.sidebar .el-menu .el-menu-item .title {
  padding-left: 5px;
}
.sidebar .el-menu .el-menu-item span {
  white-space: normal;
  line-height: 20px;
}
.sidebar .el-menu .el-menu-item svg {
  vertical-align: middle;
}
.sidebar .el-menu .el-menu-item i {
  margin-left: -5px;
  color: #e4ecf6;
}
.sidebar .el-menu .el-menu-item.is-active, .sidebar .el-menu .el-menu-item.is-active:hover {
  background-color: #f58676;
  color: rgb(255, 255, 255);
}
.sidebar .el-menu .el-menu-item.is-active i, .sidebar .el-menu .el-menu-item.is-active:hover i {
  color: rgb(255, 255, 255);
}
.sidebar .el-menu .el-menu-item:hover {
  background: #0a3e6a;
  color: rgb(255, 255, 255);
}
.sidebar .el-menu .el-menu-item:hover i {
  color: rgb(255, 255, 255);
}
.sidebar .el-menu .el-sub-menu .el-sub-menu__title {
  height: 40px;
  line-height: 40px;
  background-color: #333A45;
  color: #e4ecf6;
}
.sidebar .el-menu .el-sub-menu .el-sub-menu__title i {
  margin-left: -5px;
  color: #e4ecf6 !important;
}
.sidebar .el-menu .el-sub-menu .el-sub-menu__title .el-submenu__icon-arrow {
  right: 10px;
}
.sidebar .el-menu .el-sub-menu .el-sub-menu__title:hover {
  color: rgb(255, 255, 255);
}
.sidebar .el-menu .el-sub-menu .el-sub-menu__title:hover i {
  color: rgb(255, 255, 255);
}
.sidebar .el-menu .el-sub-menu .el-menu-item {
  padding-left: 44px !important;
  background-color: #fff;
  color: #003865;
}
.sidebar .el-menu .el-sub-menu .el-menu-item:hover {
  background-color: #f3f7fa;
}
.sidebar .el-menu .el-sub-menu .el-menu-item.is-active {
  background-color: #f58676;
  color: #fff;
}
.sidebar .el-menu .el-sub-menu.is-active {
  box-shadow: inset 3px 0px 0px 0px #fff;
  background-color: #f58676;
}
.sidebar .el-menu--collapse .el-menu .el-menu-item:hover {
  color: rgb(255, 255, 255);
  background-color: #02233f;
}
.sidebar .el-menu--collapse .el-menu .el-menu-item:hover i {
  color: rgb(255, 255, 255);
}
.sidebar .el-menu--collapse .el-menu .el-menu-item.is-active i {
  color: #fff;
}
.sidebar .el-menu--collapse .el-submenu .el-submenu__title span {
  height: 0;
  width: 0;
  overflow: hidden;
  visibility: hidden;
  display: inline-block;
}
.sidebar .el-menu--collapse .el-submenu.is-active i {
  color: #fff;
}
.sidebar.sidebar-collapse {
  width: 64px;
}
.sidebar.sidebar-collapse .el-menu .title,
.sidebar.sidebar-collapse .el-menu .menuTitle,
.sidebar.sidebar-collapse .el-menu-item span,
.sidebar.sidebar-collapse .el-sub-menu__title span {
  opacity: 0;
  transition: opacity 0.1s ease;
}
.sidebar.sidebar-collapse .logo {
  background: url(../static/img/logo1.75d8e2a3.svg) no-repeat center;
  background-size: contain;
}
.sidebar.sidebar-collapse .el-menu .el-menu-item {
  background-color: #00355f;
  color: rgb(255, 255, 255);
}
.sidebar.sidebar-collapse .el-menu .el-submenu {
  background-color: #00355f;
  color: #e4ecf6;
}
.sidebar.sidebar-collapse .el-menu .el-submenu.is-active .el-submenu__title, .sidebar.sidebar-collapse .el-menu .el-submenu.is-active:hover .el-submenu__title {
  background-color: #f58676;
  color: rgb(255, 255, 255);
}
.sidebar.sidebar-collapse.sidebar-fixed {
  left: -64px;
}
.sidebar.sidebar-fixed {
  position: fixed;
  top: 0;
  bottom: 0;
  left: 0px;
  z-index: 2001;
}

.header {
  display: flex;
  height: 55px;
  background: #fff;
  z-index: 9;
  justify-content: space-between;
  align-items: center;
  position: sticky;
  border-top: 2px solid #333A45;
  top: 0;
}
.header .title {
  margin-left: 12px;
  font-size: 16px;
  font-weight: bold;
  color: #444950;
  word-break: break-all;
  white-space: nowrap;
  align-items: center;
}
.header .title .iconfont-20 {
  margin-right: 10px;
}
.header .title i {
  margin-right: 5px;
  font-size: 22px;
  vertical-align: top;
  cursor: pointer;
}
.header .user-info {
  display: flex;
  align-items: center;
  color: #fff;
}
.header .user-info .local-box {
  margin: 10px;
  color: #869099;
  font-size: 12px;
  display: flex;
  align-items: center;
}
.header .user-info .local-box .el-icon {
  font-size: 16px;
  margin-right: 2px;
}
.header .user-info .local-box .el-dropdown {
  color: #869099;
  cursor: pointer;
}
.header .user-info .user-box {
  margin: 5px 25px 5px 15px;
}
.header .user-info .user-box .user-face {
  margin-right: 5px;
  vertical-align: middle;
  border: 2px solid rgba(241, 90, 34, 0.9);
  box-shadow: 0px 0px 1px 1px #fff;
  color: rgba(241, 90, 34, 0.9);
  background: #fff;
}
.header .user-info .user-box .user-face-default {
  margin-right: 5px;
  vertical-align: middle;
  box-shadow: 0px 0px 1px 1px #fff;
  color: rgba(241, 90, 34, 0.9);
  background: #fff;
}
.header .user-info .user-box .iconfont-14 {
  vertical-align: top;
  margin: 7px 0 0 3px;
}
.header .user-info .user-box .el-dropdown {
  color: #869099;
  cursor: pointer;
}
.header .user-info .user-box .el-dropdown .el-icon-arrow-down {
  vertical-align: top;
}

.main {
  flex: 1;
  display: flex;
  overflow: hidden;
}

/** main **/
.mod-main {
  flex: 1;
  margin: 12px;
}

.mod-box {
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.mod-box .mod-bd {
  display: flex;
  flex-direction: column;
  flex: 1;
  overflow: hidden;
  background-color: #fff;
  border-radius: 6px;
}
.mod-box .mod-fd {
  height: 30px;
}
.mod-box .el-select .el-select__tags-text {
  color: #333;
}

.tab-box {
  margin-bottom: 12px;
  display: flex;
  font-size: 14px;
}
.tab-box li {
  padding: 5px 10px;
  background: #fff;
  cursor: pointer;
}
.tab-box li.current {
  background-color: #038aff;
  color: #fff;
}
.tab-box li:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.tab-box li:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}

.pub-panel {
  background: #fff;
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 10px;
  overflow: hidden;
}

.pub-func {
  padding: 12px 12px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pub-func .iconfont-14 {
  margin-right: 4px;
}
.pub-func .pub-right-func {
  display: inline-block;
  text-align: right;
}
.pub-func .pub-right-func .refresh-btn {
  margin-left: 10px;
}
.pub-func .pub-right-func .el-overlay + .el-button {
  margin-left: 8px !important;
}
.pub-func .pub-right-func .el-dialog {
  text-align: left;
}
.pub-func .col .el-select,
.pub-func .col .el-input {
  width: 95%;
}
.pub-func .last {
  display: flex;
  align-items: flex-end;
}
.pub-func .el-button.el-button + .el-button {
  margin-left: 8px;
}
.pub-func .el-button span {
  font-size: 12px;
}
.pub-func .el-button.el-button--text.link {
  text-decoration: underline;
}
.pub-func .el-button + .el-dropdown {
  margin-left: 8px;
}
.pub-func .el-dropdown.el-dropdown + .el-dropdown {
  margin-left: 8px;
}
.pub-func .el-dropdown + .el-button {
  margin-left: 8px;
}

.btn-primary {
  background: #003865;
  color: #fff;
  border-color: #003865;
}

.color-normal {
  color: #038aff;
}

.color-success {
  color: #82B41E;
}

.color-danger {
  color: #f64747;
}

.icon-20 {
  width: 20px;
  height: 20px;
}

.operate-icon {
  margin: 0 10px;
  color: #98a6ad;
}

/** Loading */
.mod-loading .el-loading-spinner {
  color: #003865;
  width: 60px;
  height: 60px;
  left: 50%;
  margin-left: -30px;
  -webkit-mask-image: url(data:image/png;base64,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);
  mask-image: url(data:image/png;base64,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);
  -webkit-mask-repeat: no-repeat;
  mask-repeat: no-repeat;
  -webkit-mask-position: center;
  mask-position: center;
  -webkit-animation: raise 1.2s ease infinite;
          animation: raise 1.2s ease infinite;
}
.mod-loading .el-loading-spinner .circular {
  display: none;
}

@-webkit-keyframes load {
  0%, 100% {
    height: 40px;
    background: lightgreen;
  }
  50% {
    height: 70px;
    margin: -15px 0;
    background: lightblue;
  }
}

@keyframes load {
  0%, 100% {
    height: 40px;
    background: lightgreen;
  }
  50% {
    height: 70px;
    margin: -15px 0;
    background: lightblue;
  }
}
.loading span:nth-child(2) {
  -webkit-animation-delay: 0.2s;
          animation-delay: 0.2s;
}

.loading span:nth-child(3) {
  -webkit-animation-delay: 0.4s;
          animation-delay: 0.4s;
}

.loading span:nth-child(4) {
  -webkit-animation-delay: 0.6s;
          animation-delay: 0.6s;
}

.loading span:nth-child(5) {
  -webkit-animation-delay: 0.8s;
          animation-delay: 0.8s;
}

@-webkit-keyframes raise {
  0% {
    background: linear-gradient(to bottom, #fff 90%, #003865 90%);
  }
  20% {
    background: linear-gradient(to bottom, #fff 75%, #003865 75%);
  }
  40% {
    background: linear-gradient(to bottom, #fff 60%, #003865 60%);
  }
  60% {
    background: linear-gradient(to bottom, #fff 40%, #003865 40%);
  }
  80% {
    background: linear-gradient(to bottom, #fff 20%, #003865 20%);
  }
  100% {
    background: linear-gradient(to bottom, #fff 0%, #003865 0%);
  }
}

@keyframes raise {
  0% {
    background: linear-gradient(to bottom, #fff 90%, #003865 90%);
  }
  20% {
    background: linear-gradient(to bottom, #fff 75%, #003865 75%);
  }
  40% {
    background: linear-gradient(to bottom, #fff 60%, #003865 60%);
  }
  60% {
    background: linear-gradient(to bottom, #fff 40%, #003865 40%);
  }
  80% {
    background: linear-gradient(to bottom, #fff 20%, #003865 20%);
  }
  100% {
    background: linear-gradient(to bottom, #fff 0%, #003865 0%);
  }
}
/** dark */
.drak .header {
  background: none;
}
.drak .header .title {
  color: #fff;
}
.drak .header .title .el-breadcrumb__inner {
  color: #fff;
}
.drak .header .user-info .local-box .el-dropdown {
  color: #fff;
}
.drak .header .user-info .user-box .el-dropdown {
  color: #fff;
}
.drak .mod-main {
  margin: 0 12px 12px;
}
.drak .wrapper {
  background: #003865;
  background: linear-gradient(180deg, #003865 30%, #227093 70%);
}
.drak .wrapper .sidebar {
  background: none;
}
.drak .wrapper .sidebar .el-menu .el-menu-item {
  background: none;
}
.drak .wrapper .sidebar .el-menu .is-active {
  background-color: rgba(255, 255, 255, 0.2);
}
.drak .wrapper .sidebar .el-menu .el-sub-menu {
  border-top-right-radius: 6px;
  border-bottom-right-radius: 6px;
}
.drak .wrapper .sidebar .el-menu .el-sub-menu .el-sub-menu__title {
  background: none;
}
.drak .wrapper .sidebar .el-menu .is-active {
  box-shadow: none;
}
.drak .wrapper .sidebar .el-menu .is-opened {
  background: rgba(255, 255, 255, 0.1);
  overflow: hidden;
}
.drak .wrapper .container {
  background: none;
}
.drak .wrapper .container .pub-filter {
  border-radius: 6px;
  background: #fff;
}
.drak .wrapper .container .pub-panel {
  border-radius: 6px;
  background: #fff;
}

.pub-form-mod {
  margin: 0 10px;
  padding: 0 10px;
  display: flex;
  flex-direction: column;
}
.pub-form-mod .pub-form-hd {
  position: relative;
}
.pub-form-mod .pub-form-hd .title {
  margin-top: 15px;
  padding-left: 10px;
  line-height: 40px;
  color: #003865;
  text-align: left;
  font-size: 20px;
  font-weight: 700;
}
.pub-form-mod .pub-form-hd .title .commonBtn {
  margin-top: -5px;
  float: right;
  margin-left: 15px;
  background-color: #003865;
  color: #fff;
}
.pub-form-mod .pub-form-hd .title .commonRedio {
  margin-top: -5px;
  float: right;
  margin-left: 15px;
  color: #fff;
}
.pub-form-mod .pub-form-hd .title.pub-module-title {
  cursor: pointer;
  position: relative;
  padding-left: 20px;
  float: left;
}
.pub-form-mod .pub-form-hd .title.pub-module-title::before {
  content: "";
  position: absolute;
  top: 10px;
  left: 0;
  width: 20px;
  height: 20px;
  background: url(../static/img/left-first.aaf19b9a.svg) no-repeat center center;
  background-size: 80%;
  transform: rotate(-180deg);
}
.pub-form-mod .pub-form-hd .title.pub-module-title.open::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  background: url(../static/img/left-first.aaf19b9a.svg) no-repeat center center;
  background-size: 80%;
  transform: rotate(-90deg);
}
.pub-form-mod .pub-form-hd .second-title {
  text-align: left;
  padding-left: 13px;
}
.pub-form-mod .selectBG {
  background-color: yellow;
}
.pub-form-mod .pub-form-bd,
.pub-form-mod .pub-form-sd {
  background-color: #fff;
  border-radius: 3px;
  transition: all 0.5s;
}
.pub-form-mod .pub-form-bd .pub-form-title,
.pub-form-mod .pub-form-bd .pub-thrid-title,
.pub-form-mod .pub-form-sd .pub-form-title,
.pub-form-mod .pub-form-sd .pub-thrid-title {
  text-align: left;
  padding: 20px 20px 10px;
  font-weight: 400;
  color: #17365d;
  font-size: 18px;
  background: rgb(240, 242, 245);
  position: relative;
  transition: all 0.5s;
}
.pub-form-mod .pub-form-bd .pub-form-title > .span,
.pub-form-mod .pub-form-bd .pub-thrid-title > .span,
.pub-form-mod .pub-form-sd .pub-form-title > .span,
.pub-form-mod .pub-form-sd .pub-thrid-title > .span {
  cursor: pointer;
}
.pub-form-mod .pub-form-bd .pub-form-title > .span::before,
.pub-form-mod .pub-form-bd .pub-thrid-title > .span::before,
.pub-form-mod .pub-form-sd .pub-form-title > .span::before,
.pub-form-mod .pub-form-sd .pub-thrid-title > .span::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  background: url(../static/img/left.9c681c6f.svg) no-repeat center center;
  background-size: 80%;
  transform: rotate(-180deg);
}
.pub-form-mod .pub-form-bd .pub-form-title > .span.open::before,
.pub-form-mod .pub-form-bd .pub-thrid-title > .span.open::before,
.pub-form-mod .pub-form-sd .pub-form-title > .span.open::before,
.pub-form-mod .pub-form-sd .pub-thrid-title > .span.open::before {
  content: "";
  position: absolute;
  left: 0;
  width: 18px;
  height: 18px;
  background: url(../static/img/left.9c681c6f.svg) no-repeat center center;
  background-size: 80%;
  transform: rotate(-90deg);
}
.pub-form-mod .pub-form-bd .pub-thrid-title,
.pub-form-mod .pub-form-sd .pub-thrid-title {
  color: #9cabc0;
}
.pub-form-mod .pub-form-bd .second-container,
.pub-form-mod .pub-form-sd .second-container {
  transition: all 0.5s;
  display: block;
}
.pub-form-mod .pub-form-bd .second-container .hide-dom,
.pub-form-mod .pub-form-sd .second-container .hide-dom {
  display: none;
}
.pub-form-mod .pub-form-bd .second-container.hide,
.pub-form-mod .pub-form-sd .second-container.hide {
  display: none;
}
.pub-form-mod .pub-form-bd .second-container .empty,
.pub-form-mod .pub-form-sd .second-container .empty {
  overflow: initial !important;
}
.pub-form-mod .pub-form-bd .second-container > .right-btn-box,
.pub-form-mod .pub-form-sd .second-container > .right-btn-box {
  text-align: right;
}
.pub-form-mod .pub-form-bd .second-container > .right-btn-box > button,
.pub-form-mod .pub-form-sd .second-container > .right-btn-box > button {
  margin: 0;
}
.pub-form-mod .pub-form-bd .second-container.paddingCtrl10 .pub-form-title-noresults .mul-box > div:last-of-type,
.pub-form-mod .pub-form-sd .second-container.paddingCtrl10 .pub-form-title-noresults .mul-box > div:last-of-type {
  margin-bottom: 0px;
}
.pub-form-mod .pub-form-bd .second-container .td-highlight,
.pub-form-mod .pub-form-sd .second-container .td-highlight {
  background-color: rgb(253, 233, 217) !important;
}
.pub-form-mod .pub-form-bd .second-container .bt10,
.pub-form-mod .pub-form-sd .second-container .bt10 {
  border-top: 10px solid #f0f2f5;
}
.pub-form-mod .pub-form-bd .second-container .right-row,
.pub-form-mod .pub-form-sd .second-container .right-row {
  display: flex;
  justify-content: flex-end;
  padding: 0px;
  margin: 0px;
}
.pub-form-mod .pub-form-bd .second-container .right-row button,
.pub-form-mod .pub-form-sd .second-container .right-row button {
  margin: 0px;
}
.pub-form-mod .pub-form-bd .second-container .right-btn-wrap,
.pub-form-mod .pub-form-sd .second-container .right-btn-wrap {
  position: relative;
}
.pub-form-mod .pub-form-bd .second-container .right-btn-wrap .right-btn-box,
.pub-form-mod .pub-form-sd .second-container .right-btn-wrap .right-btn-box {
  font-weight: 400;
  position: absolute;
  right: 0px;
  top: -45px;
  display: flex;
  flex-direction: row;
  justify-content: flex-end;
  align-items: center;
}
.pub-form-mod .pub-form-bd .second-container .right-btn-wrap .right-btn-box button,
.pub-form-mod .pub-form-sd .second-container .right-btn-wrap .right-btn-box button {
  width: auto;
}
.pub-form-mod .pub-form-bd .second-container.noCheck input.empty, .pub-form-mod .pub-form-bd .second-container.noCheck textarea.empty,
.pub-form-mod .pub-form-bd .second-container.noCheck input.error, .pub-form-mod .pub-form-bd .second-container.noCheck textarea.error,
.pub-form-mod .pub-form-sd .second-container.noCheck input.empty,
.pub-form-mod .pub-form-sd .second-container.noCheck textarea.empty,
.pub-form-mod .pub-form-sd .second-container.noCheck input.error,
.pub-form-mod .pub-form-sd .second-container.noCheck textarea.error {
  border: 1px solid #e4e4e4;
}
.pub-form-mod .pub-form-bd .second-container.noCheck .inpt-select.error, .pub-form-mod .pub-form-bd .second-container.noCheck .inpt-select.empty,
.pub-form-mod .pub-form-sd .second-container.noCheck .inpt-select.error,
.pub-form-mod .pub-form-sd .second-container.noCheck .inpt-select.empty {
  border: none;
}
.pub-form-mod .pub-form-bd .second-container.noCheck input.error:hover, .pub-form-mod .pub-form-bd .second-container.noCheck textarea.error:hover,
.pub-form-mod .pub-form-bd .second-container.noCheck input.empty:hover, .pub-form-mod .pub-form-bd .second-container.noCheck textarea.empty:hover,
.pub-form-mod .pub-form-sd .second-container.noCheck input.error:hover,
.pub-form-mod .pub-form-sd .second-container.noCheck textarea.error:hover,
.pub-form-mod .pub-form-sd .second-container.noCheck input.empty:hover,
.pub-form-mod .pub-form-sd .second-container.noCheck textarea.empty:hover {
  border: 1px solid #003865;
}
.pub-form-mod .pub-form-bd .second-container .pagination,
.pub-form-mod .pub-form-sd .second-container .pagination {
  display: flex;
  border-top: 10px solid #f0f2f5;
  padding: 10px;
  line-height: 30px;
  align-items: center;
  position: relative;
  min-height: 50px;
}
.pub-form-mod .pub-form-bd .second-container .pagination .pagination-dropdown,
.pub-form-mod .pub-form-sd .second-container .pagination .pagination-dropdown {
  display: flex;
  height: 30px;
  position: absolute;
  right: 20px;
}
.pub-form-mod .pub-form-bd .second-container .pagination .pagination-dropdown select,
.pub-form-mod .pub-form-sd .second-container .pagination .pagination-dropdown select {
  min-height: 30px;
  height: 30px;
  width: 100px;
}
.pub-form-mod .pub-form-bd .second-container .pagination .pagination-dropdown .pagination-text,
.pub-form-mod .pub-form-sd .second-container .pagination .pagination-dropdown .pagination-text {
  width: 80px;
}
.pub-form-mod .pub-form-bd .second-container .pagination .pagination-list,
.pub-form-mod .pub-form-sd .second-container .pagination .pagination-list {
  flex: 1;
  display: flex;
  justify-content: center;
}
.pub-form-mod .pub-form-bd .second-container .pagination .pagination-info,
.pub-form-mod .pub-form-sd .second-container .pagination .pagination-info {
  margin: 0 10px;
  position: absolute;
  right: 197px;
}
.pub-form-mod .pub-form-bd .second-container .pagination button:disabled,
.pub-form-mod .pub-form-sd .second-container .pagination button:disabled {
  cursor: not-allowed;
  opacity: 0.6;
}
.pub-form-mod .pub-form-bd .second-container .pagination button,
.pub-form-mod .pub-form-sd .second-container .pagination button {
  white-space: nowrap;
}
.pub-form-mod .pub-form-bd .second-container .tabs,
.pub-form-mod .pub-form-sd .second-container .tabs {
  display: flex;
  border-bottom: 1px solid #ccc;
  background-color: rgb(240, 242, 245);
  margin-bottom: 10px;
}
.pub-form-mod .pub-form-bd .second-container .tabs .tab-item,
.pub-form-mod .pub-form-sd .second-container .tabs .tab-item {
  padding: 8px 16px;
  cursor: pointer;
}
.pub-form-mod .pub-form-bd .second-container .tabs .tab-item.active,
.pub-form-mod .pub-form-sd .second-container .tabs .tab-item.active {
  border-bottom: 2px solid #003865;
  color: #003865;
  font-weight: 600;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults,
.pub-form-mod .pub-form-sd .pub-form-title-noresults {
  background: rgb(240, 242, 245);
  padding: 5px 0 5px 30px;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults input,
.pub-form-mod .pub-form-sd .pub-form-title-noresults input {
  margin-right: 4px;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box {
  display: flex;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .content,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .content {
  flex: 1;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .content .rightline,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .content .rightline {
  display: flex;
  align-items: center;
  margin-bottom: 10px;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .content .rightline:last-of-type,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .content .rightline:last-of-type {
  margin-bottom: 0;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .content .rightline.padbot5,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .content .rightline.padbot5 {
  padding-bottom: 5px;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .h40 textarea,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .h40 textarea {
  height: 40px;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .h200 textarea,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .h200 textarea {
  height: 200px;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .label,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .label {
  width: 200px;
  display: flex;
  align-items: center;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .label b,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .label b {
  display: flex;
  width: 176px;
  vertical-align: middle;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .label b .underline,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .label b .underline {
  color: #003865;
  text-decoration: underline;
  cursor: pointer;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .label.label-right,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .label.label-right {
  justify-content: end;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .label.label-right b,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .label.label-right b {
  justify-content: end;
  margin-right: 10px;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .label.label-source,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .label.label-source {
  width: 135px;
  color: #9CABC0;
  justify-content: end;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .label.label-source b,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .label.label-source b {
  width: auto;
  margin-right: 10px;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .label.align-items-start,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .label.align-items-start {
  align-items: flex-start;
  line-height: 40px;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .label.align-items-start .label-icon,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .label.align-items-start .label-icon {
  margin-top: 11px;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.input-box .link,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.input-box .link {
  color: #17365d;
  text-decoration: underline;
  cursor: pointer;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.source-row,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.source-row {
  padding: 0 0 5px 30px;
  display: flex;
  align-items: center;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.source-row .content,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.source-row .content {
  display: flex;
  justify-content: space-between;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.source-row .content .right,
.pub-form-mod .pub-form-bd .pub-form-title-noresults.source-row .content .right-btn-box,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.source-row .content .right,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.source-row .content .right-btn-box {
  flex: 1;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.source-row .content .right-btn-box,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.source-row .content .right-btn-box {
  text-align: right;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.source-row-not-first,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.source-row-not-first {
  padding-top: 5px;
}
.pub-form-mod .pub-form-bd .pub-form-title-noresults.source-row-not-one,
.pub-form-mod .pub-form-sd .pub-form-title-noresults.source-row-not-one {
  padding-bottom: 10px;
}
.pub-form-mod .pub-form-bd .pub-form-col-2 .h40 textarea,
.pub-form-mod .pub-form-sd .pub-form-col-2 .h40 textarea {
  height: 40px;
}
.pub-form-mod .pub-form-bd .pub-form-w40,
.pub-form-mod .pub-form-sd .pub-form-w40 {
  width: 40%;
}
.pub-form-mod .pub-form-bd .pub-form-title-select,
.pub-form-mod .pub-form-sd .pub-form-title-select {
  display: flex;
  align-items: center;
  background: rgb(240, 242, 245);
  margin-right: 10px;
  padding: 10px 0 4px 0;
}
.pub-form-mod .pub-form-bd .pub-form-title-select b,
.pub-form-mod .pub-form-sd .pub-form-title-select b {
  margin-right: 2px;
}
.pub-form-mod .pub-form-bd .pub-form-title-2,
.pub-form-mod .pub-form-sd .pub-form-title-2 {
  text-align: left;
  padding: 5px 10px;
  font-weight: 600;
  color: #646464;
  border-top: 1px dashed #ccc;
}
.pub-form-mod .pub-form-bd .pub-form-title-1,
.pub-form-mod .pub-form-sd .pub-form-title-1 {
  text-align: left;
  padding: 5px 10px;
  font-weight: 600;
  color: #646464;
}
.pub-form-mod .pub-form-bd .pub-form-item,
.pub-form-mod .pub-form-sd .pub-form-item {
  margin: 5px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: flex-start;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col {
  position: relative;
  margin: 5px;
  display: flex;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col .label,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col .label {
  display: flex;
  flex-direction: row;
  margin-right: 10px;
  width: 120px;
  min-height: 28px;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  color: #252733;
  font-size: 14px;
  letter-spacing: 0.5px;
  font-weight: 600;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col .el-input,
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col .el-textarea,
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col .el-checkbox,
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col .el-select,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col .el-input,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col .el-textarea,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col .el-checkbox,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col .el-select {
  display: flex;
  align-items: center;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col .content,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col .content {
  display: flex;
  flex: 1;
  align-items: center;
  max-width: calc(100% - 130px);
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col .content .txt,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col .content .txt {
  line-height: 28px;
  color: #999;
  text-align: left;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  z-index: 2;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col .content .txt + .hightlight,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col .content .txt + .hightlight {
  padding: 0;
  line-height: 28px;
  font-size: 14px;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col .content .txt + .hightlight mark,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col .content .txt + .hightlight mark {
  vertical-align: middle;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col .content .circle,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col .content .circle {
  display: inline-block;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background-color: green;
  line-height: 20px;
  text-align: center;
  margin-left: 5px;
  color: #fff;
  cursor: pointer;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col .content .circle.disabled,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col .content .circle.disabled {
  background-color: #bbb;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col .position-in,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col .position-in {
  position: absolute;
  top: 3px;
  right: -28px;
  cursor: pointer;
  padding: 7px;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col:nth-child(1), .pub-form-mod .pub-form-bd .pub-form-item .pub-form-col:nth-child(3),
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col:nth-child(1),
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col:nth-child(3) {
  flex: 1;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col:nth-child(2),
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col:nth-child(2) {
  width: 120px;
  align-items: center;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-center,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-center {
  display: flex;
  justify-content: center;
  width: 100%;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 {
  margin: 5px 0;
  width: 50%;
  display: flex;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 button.small,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 button.small {
  margin: 0;
  height: 100%;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .label,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .label {
  display: flex;
  flex-direction: row;
  margin-right: 10px;
  width: 230px;
  min-height: 28px;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  color: #252733;
  font-size: 14px;
  letter-spacing: 0.5px;
  flex-wrap: wrap;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content-cp,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content-cp {
  width: 100%;
  position: relative;
  flex: 1;
  align-items: center;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content-cp .ads-panel,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content-cp .ads-panel {
  width: 100%;
  display: flex;
  align-items: center;
  margin-bottom: 5px;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .txt,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .txt {
  line-height: 28px;
  color: #999;
  text-align: left;
  word-break: break-all;
  position: relative;
  z-index: 2;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .txt .linkColor,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .txt .linkColor {
  color: #003865;
  text-decoration: underline;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .txt + .hightlight,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .txt + .hightlight {
  padding: 0;
  line-height: 28px;
  font-size: 14px;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .txt + .hightlight mark,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .txt + .hightlight mark {
  vertical-align: middle;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .w100,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .w100 {
  width: 100%;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .w100 .select-trigger,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .w100 .select-trigger {
  width: 100%;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .w50,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .w50 {
  width: 100%;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .w50 .select-trigger,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .w50 .select-trigger {
  width: 100%;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .inline-box,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .inline-box {
  display: flex;
  padding-top: 10px;
  vertical-align: middle;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .el-input,
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .el-textarea,
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .el-checkbox,
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .el-select,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .el-input,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .el-textarea,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .el-checkbox,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .el-select {
  display: flex;
  align-items: center;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .text,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .text {
  display: flex;
  align-items: center;
  text-align: left;
  background: #fff;
  color: inherit;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .w50,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .w50 {
  width: 47%;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content .label,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content .label {
  width: 50px;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content-box,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content-box {
  justify-content: space-between;
  flex: 1;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content-box .left-content,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content-box .left-content {
  display: flex;
  position: relative;
  flex: 1;
  min-width: 0;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content-box .right-content,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content-box .right-content {
  position: relative;
  width: 100px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content-box .right-content-icon,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content-box .right-content-icon {
  flex-direction: row;
  justify-content: space-between;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content-vertical-box,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content-vertical-box {
  flex-direction: column;
  text-align: left;
  position: relative;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content-vertical-box .w50,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content-vertical-box .w50 {
  width: 47%;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content-vertical-box .el-select,
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content-vertical-box .select-trigger,
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2 .content-vertical-box .el-date-editor,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content-vertical-box .el-select,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content-vertical-box .select-trigger,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2 .content-vertical-box .el-date-editor {
  width: 100%;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-col-2.w100,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-col-2.w100 {
  width: 100%;
}
.pub-form-mod .pub-form-bd .pub-form-item .errSpanMin,
.pub-form-mod .pub-form-sd .pub-form-item .errSpanMin {
  display: none;
  position: absolute;
  top: 7px;
  right: 10px;
  font-size: 16px;
  width: 14px;
  height: 14px;
  color: #f64747;
  z-index: 3;
}
.pub-form-mod .pub-form-bd .pub-form-item .errSpanMin.show,
.pub-form-mod .pub-form-sd .pub-form-item .errSpanMin.show {
  display: inline-block;
}
.pub-form-mod .pub-form-bd .pub-form-item .errSpanMin.newErr,
.pub-form-mod .pub-form-sd .pub-form-item .errSpanMin.newErr {
  display: inline !important;
}
.pub-form-mod .pub-form-bd .pub-form-item .btn-box,
.pub-form-mod .pub-form-sd .pub-form-item .btn-box {
  position: relative;
  text-align: right;
  margin: 10px 0;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-form-icon,
.pub-form-mod .pub-form-sd .pub-form-item .pub-form-icon {
  font-size: 20px;
  padding: 0 5px;
  cursor: pointer;
}
.pub-form-mod .pub-form-bd .pub-form-item .info-icon,
.pub-form-mod .pub-form-sd .pub-form-item .info-icon {
  position: absolute;
  right: -14px;
  top: -9px;
  z-index: 2;
}
.pub-form-mod .pub-form-bd .pub-form-item .remove-icon-color,
.pub-form-mod .pub-form-sd .pub-form-item .remove-icon-color {
  color: #f64747;
}
.pub-form-mod .pub-form-bd .pub-form-item .add-icon-color,
.pub-form-mod .pub-form-sd .pub-form-item .add-icon-color {
  color: #003865;
}
.pub-form-mod .pub-form-bd .pub-form-item .info-icon-color,
.pub-form-mod .pub-form-sd .pub-form-item .info-icon-color {
  color: #FF9900;
}
.pub-form-mod .pub-form-bd .pub-form-item .position,
.pub-form-mod .pub-form-sd .pub-form-item .position {
  position: absolute;
  right: -80px;
  top: 5px;
  cursor: pointer;
}
.pub-form-mod .pub-form-bd .pub-form-item .pub-save-btn,
.pub-form-mod .pub-form-sd .pub-form-item .pub-save-btn {
  background-color: #003865;
  color: #fff;
}
.pub-form-mod .pub-form-bd .pub-form-item .inner-btn,
.pub-form-mod .pub-form-sd .pub-form-item .inner-btn {
  padding: 3px 5px;
  height: 20px;
  font-size: 12px;
  min-height: 20px;
}
.pub-form-mod .pub-form-bd .pub-form-item .inner-btn span,
.pub-form-mod .pub-form-sd .pub-form-item .inner-btn span {
  font-size: 12px;
  letter-spacing: 2px;
}
.pub-form-mod .pub-form-bd .pub-form-item.pub-form-border,
.pub-form-mod .pub-form-sd .pub-form-item.pub-form-border {
  border-top: 1px dashed #ccc;
}
.pub-form-mod .pub-form-bd .pub-form-item:first-child,
.pub-form-mod .pub-form-sd .pub-form-item:first-child {
  border: 0 !important;
}
.pub-form-mod .pub-form-bd .pub-form-top,
.pub-form-mod .pub-form-sd .pub-form-top {
  border-top: 10px solid #f0f2f5;
  padding: 5px 20px 5px 20px;
  margin: 0;
}
.pub-form-mod .pub-form-bd .verfication-item,
.pub-form-mod .pub-form-sd .verfication-item {
  margin-top: 0;
  margin-bottom: 0;
}
.pub-form-mod .pub-form-bd .pub-form-item-child,
.pub-form-mod .pub-form-sd .pub-form-item-child {
  width: 100%;
  display: flex;
  position: relative;
}
.pub-form-mod .pub-form-bd .pub-form-item-child::before,
.pub-form-mod .pub-form-sd .pub-form-item-child::before {
  content: "";
  display: block;
  position: absolute;
  left: 50px;
  right: 0;
  border-top: 1px dashed #ccc;
}
.pub-form-mod .pub-form-bd .pub-form-item-child.last::after,
.pub-form-mod .pub-form-sd .pub-form-item-child.last::after {
  content: "";
  display: block;
  position: absolute;
  left: 50px;
  right: 0;
  bottom: 0;
  border-top: 1px dashed #ccc;
}
.pub-form-mod .pub-form-bd .disabled-form .el-input__inner,
.pub-form-mod .pub-form-bd .disabled-form .el-input--small,
.pub-form-mod .pub-form-sd .disabled-form .el-input__inner,
.pub-form-mod .pub-form-sd .disabled-form .el-input--small {
  background: none;
  color: #333;
  cursor: default;
  resize: none;
  font-size: 14px;
}
.pub-form-mod .pub-form-bd .disabled-form .el-textarea__inner,
.pub-form-mod .pub-form-sd .disabled-form .el-textarea__inner {
  background: none;
  color: #333;
  cursor: default;
  font-size: 14px;
}
.pub-form-mod .pub-form-bd .disabled-form .el-icon-arrow-up:before,
.pub-form-mod .pub-form-sd .disabled-form .el-icon-arrow-up:before {
  display: none;
}
.pub-form-mod .pub-form-bd .disabled-form .el-input__inner,
.pub-form-mod .pub-form-bd .disabled-form .el-textarea__inner,
.pub-form-mod .pub-form-sd .disabled-form .el-input__inner,
.pub-form-mod .pub-form-sd .disabled-form .el-textarea__inner {
  border: 1px solid #ccc;
}
.pub-form-mod .pub-form-bd .disabled-form .el-select .el-input.is-disabled .el-input__inner:hover,
.pub-form-mod .pub-form-sd .disabled-form .el-select .el-input.is-disabled .el-input__inner:hover {
  border-color: #ccc;
}
.pub-form-mod .pub-form-bd .disabled-form .errMessage .el-textarea__inner,
.pub-form-mod .pub-form-sd .disabled-form .errMessage .el-textarea__inner {
  background-color: #fff;
  border: 1px solid #dcdfe6;
  color: #333;
  resize: vertical !important;
  border-radius: 5px;
  cursor: text !important;
}
.pub-form-mod .pub-form-bd .disabled-form .el-radio-button__orig-radio:disabled:checked + .el-radio-button__inner,
.pub-form-mod .pub-form-sd .disabled-form .el-radio-button__orig-radio:disabled:checked + .el-radio-button__inner {
  background-color: #003865;
}
.pub-form-mod .pub-form-bd .disabled-form .el-checkbox__input.is-disabled + span.el-checkbox__label,
.pub-form-mod .pub-form-sd .disabled-form .el-checkbox__input.is-disabled + span.el-checkbox__label {
  color: #333;
}
.pub-form-mod .pub-form-bd .disabled-form .el-input-group__append,
.pub-form-mod .pub-form-bd .disabled-form .el-input-group__prepend,
.pub-form-mod .pub-form-sd .disabled-form .el-input-group__append,
.pub-form-mod .pub-form-sd .disabled-form .el-input-group__prepend {
  background: none;
  border: none;
  color: #333;
  cursor: default;
  resize: none;
}
.pub-form-mod .pub-form-bd .pub-item .pub-item-foot,
.pub-form-mod .pub-form-sd .pub-item .pub-item-foot {
  padding: 10px;
  text-align: center;
}
.pub-form-mod .pub-form-bd .pub-item .radio-label,
.pub-form-mod .pub-form-sd .pub-item .radio-label {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  cursor: pointer;
}
.pub-form-mod .pub-form-bd .pub-item .radio-label input,
.pub-form-mod .pub-form-sd .pub-item .radio-label input {
  width: 16px;
  margin-right: 10px;
}
.pub-form-mod .pub-form-bd .pub-form-item-title,
.pub-form-mod .pub-form-sd .pub-form-item-title {
  display: flex;
  align-items: center;
  padding: 10px 0;
  font-size: 16px;
  font-weight: 700;
  color: rgb(51, 51, 51);
  background-color: rgb(240, 242, 245);
}
.pub-form-mod .pub-form-bd .pub-form-item-title .title-index,
.pub-form-mod .pub-form-sd .pub-form-item-title .title-index {
  width: auto;
}
.pub-form-mod .pub-form-bd .pub-form-item-title .right-btn-box,
.pub-form-mod .pub-form-sd .pub-form-item-title .right-btn-box {
  font-size: 13px;
  flex: 1;
  text-align: right;
  font-weight: 400;
}
.pub-form-mod .pub-form-bd .pub-form-item-title .pub-form-title-select,
.pub-form-mod .pub-form-sd .pub-form-item-title .pub-form-title-select {
  font-weight: 400;
  font-size: 14px;
}
.pub-form-mod .pub-form-bd .pub-form-item-title-btn,
.pub-form-mod .pub-form-sd .pub-form-item-title-btn {
  justify-content: space-between;
  padding-right: 20px;
}
.pub-form-mod .pub-form-bd .pub-form-item-title-btn .HighlightReason,
.pub-form-mod .pub-form-sd .pub-form-item-title-btn .HighlightReason {
  text-decoration: underline;
}
.pub-form-mod .pub-form-bd .match-status-select,
.pub-form-mod .pub-form-sd .match-status-select {
  margin-left: 10px;
  width: 250px;
  font-weight: 400;
}
.pub-form-mod .pub-form-bd .pub-form-item-title-btn > .cbi-dropdown,
.pub-form-mod .pub-form-bd .pub-form-item-title-btn > .cbi1-dropdown-title-case,
.pub-form-mod .pub-form-sd .pub-form-item-title-btn > .cbi-dropdown,
.pub-form-mod .pub-form-sd .pub-form-item-title-btn > .cbi1-dropdown-title-case {
  margin-left: auto;
}
.pub-form-mod .pub-form-bd .pub-form-item-title.gcc-record-disabled .cbi-dropdown,
.pub-form-mod .pub-form-sd .pub-form-item-title.gcc-record-disabled .cbi-dropdown {
  pointer-events: none;
  opacity: 0.45;
}
.pub-form-mod .pub-form-bd .pub-form-item.gcc-record-disabled .pub-form-col-2:not(.gcc-internal-remarks),
.pub-form-mod .pub-form-sd .pub-form-item.gcc-record-disabled .pub-form-col-2:not(.gcc-internal-remarks) {
  pointer-events: none;
  opacity: 0.45;
}
.pub-form-mod .pub-form-bd .pub-form-item.gcc-record-disabled .pub-form-col-2:not(.gcc-internal-remarks) .content.highlight,
.pub-form-mod .pub-form-sd .pub-form-item.gcc-record-disabled .pub-form-col-2:not(.gcc-internal-remarks) .content.highlight {
  border-color: transparent !important;
  background: none !important;
}
.pub-form-mod .pub-form-bd .pub-form-item.gcc-record-disabled .pub-form-col-2:not(.gcc-internal-remarks) .content textarea.highlight,
.pub-form-mod .pub-form-bd .pub-form-item.gcc-record-disabled .pub-form-col-2:not(.gcc-internal-remarks) .content input.highlight,
.pub-form-mod .pub-form-bd .pub-form-item.gcc-record-disabled .pub-form-col-2:not(.gcc-internal-remarks) .content select.highlight,
.pub-form-mod .pub-form-sd .pub-form-item.gcc-record-disabled .pub-form-col-2:not(.gcc-internal-remarks) .content textarea.highlight,
.pub-form-mod .pub-form-sd .pub-form-item.gcc-record-disabled .pub-form-col-2:not(.gcc-internal-remarks) .content input.highlight,
.pub-form-mod .pub-form-sd .pub-form-item.gcc-record-disabled .pub-form-col-2:not(.gcc-internal-remarks) .content select.highlight {
  border-color: #dcdfe6 !important;
  background: #f5f7fa !important;
}
.pub-form-mod .pub-form-bd .pub-form-item-title-second,
.pub-form-mod .pub-form-sd .pub-form-item-title-second {
  padding: 10px 20px;
  font-size: 16px;
  font-weight: 700;
  color: rgb(51, 51, 51);
  background-color: rgb(240, 242, 245);
}
.pub-form-mod .pub-form-bd .pub-form-item-title-second-copy,
.pub-form-mod .pub-form-sd .pub-form-item-title-second-copy {
  font-weight: 700;
  color: rgb(51, 51, 51);
  background-color: rgb(240, 242, 245);
}
.pub-form-mod .pub-form-bd .pub-form-item-title-second-copy .right-btn,
.pub-form-mod .pub-form-sd .pub-form-item-title-second-copy .right-btn {
  margin-top: 10px !important;
  font-size: 14px;
}
.pub-form-mod .pub-form-bd .nochosed-col > div,
.pub-form-mod .pub-form-sd .nochosed-col > div {
  color: #343434;
  position: relative;
  margin-left: 20px;
}
.pub-form-mod .pub-form-bd .nochosed-col > div::before,
.pub-form-mod .pub-form-sd .nochosed-col > div::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 7px;
  height: 100%;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #343434;
}
.pub-form-mod .pub-form-bd .chosed-col > div,
.pub-form-mod .pub-form-sd .chosed-col > div {
  font-weight: 700;
  color: #17365d;
  position: relative;
  margin-left: 20px;
}
.pub-form-mod .pub-form-bd .chosed-col > div::before,
.pub-form-mod .pub-form-sd .chosed-col > div::before {
  content: "";
  position: absolute;
  left: -10px;
  top: 7px;
  height: 100%;
  width: 4px;
  height: 4px;
  border-radius: 2px;
  background: #343434;
}
.pub-form-mod .pub-form-bd .chosed-col input[type=checkbox]::before,
.pub-form-mod .pub-form-sd .chosed-col input[type=checkbox]::before {
  border: 1px solid #17365d !important;
}
.pub-form-mod .pub-form-bd .chosed-col input[type=checkbox]:checked::before,
.pub-form-mod .pub-form-sd .chosed-col input[type=checkbox]:checked::before {
  color: #fff !important;
}
.pub-form-mod .pub-form-bd .pub-dot-box,
.pub-form-mod .pub-form-sd .pub-dot-box {
  width: 100%;
  margin: 20px 0;
  border-top: 1px dashed #ccc;
  border-bottom: 1px dashed #ccc;
}
.pub-form-mod .pub-form-bd .pub-dot-box.pub-dot-box-no-top,
.pub-form-mod .pub-form-sd .pub-dot-box.pub-dot-box-no-top {
  margin: 0 !important;
  margin-bottom: 5px !important;
  border-top: none !important;
}
.pub-form-mod .pub-form-bd .pub-dot-box.pub-dot-box-no-top .pub-form-col-2,
.pub-form-mod .pub-form-sd .pub-dot-box.pub-dot-box-no-top .pub-form-col-2 {
  margin-bottom: 10px !important;
}
.pub-form-mod .pub-form-bd .pub-dot-box .act-box,
.pub-form-mod .pub-form-sd .pub-dot-box .act-box {
  min-width: 150px;
  width: 150px;
}
.pub-form-mod .pub-form-bd .pub-dot-box .act-box-new,
.pub-form-mod .pub-form-sd .pub-dot-box .act-box-new {
  min-width: 330px;
  width: 330px;
}
.pub-form-mod .pub-form-bd.hide,
.pub-form-mod .pub-form-sd.hide {
  display: none;
}
.pub-form-mod .pub-form-bd .mutl-line,
.pub-form-mod .pub-form-sd .mutl-line {
  flex-direction: column;
  justify-content: center;
}
.pub-form-mod .pub-form-bd .mutl-line > div.flex-opt:last-of-type,
.pub-form-mod .pub-form-sd .mutl-line > div.flex-opt:last-of-type {
  margin-bottom: 0px;
}
.pub-form-mod .pub-form-bd .flex-opt,
.pub-form-mod .pub-form-sd .flex-opt {
  display: flex;
  width: 100%;
  margin-bottom: 5px;
}
.pub-form-mod .pub-form-bd .flex-opt > .opt,
.pub-form-mod .pub-form-sd .flex-opt > .opt {
  width: 90px;
}
.pub-form-mod .form-bd-child {
  margin: 3px 0;
}
.pub-form-mod .border-position .pub-form-item::before {
  content: "";
  display: block;
  position: absolute;
  left: 60px;
  right: 60px;
  border-top: 1px dashed #ccc;
}
.pub-form-mod .border-position .pub-form-item:first-of-type::before {
  border: none;
}
.pub-form-mod .pub-form-fd {
  padding-bottom: -10px;
  background-color: #fff;
  text-align: center;
  height: 36px;
}
.pub-form-mod .pub-form-fd .position {
  border: 1px solid #003865;
  padding: 2px;
  position: absolute;
  border-radius: 4px;
  right: -28px;
  top: 15px;
  font-size: 18px;
  cursor: pointer;
}
.pub-form-mod .pub-form-fd button {
  margin: 0 5px !important;
  padding: 2px 18px;
  line-height: 22px;
  font-size: 12px;
  cursor: pointer;
}
.pub-form-mod .pub-form-fd button.disable {
  background-color: #999;
  transition: color 0.3s ease-in;
}
.pub-form-mod .el-range-editor--small.el-input__inner {
  height: 28px;
  line-height: 28px;
}
.pub-form-mod .el-input--small .el-input__inner,
.pub-form-mod .el-input--small .el-input__icon {
  height: 28px;
  line-height: 28px;
}
.pub-form-mod input,
.pub-form-mod textarea,
.pub-form-mod select {
  transition: border-color 0.3s;
  border: 1px solid #e4e4e4;
  padding: 0 5px;
  min-height: 40px;
  line-height: 28px;
  width: 100%;
  border-radius: 3px;
  background-color: #fff;
}
.pub-form-mod inputtextarea,
.pub-form-mod textareatextarea,
.pub-form-mod selecttextarea {
  line-height: inherit;
}
.pub-form-mod input:focus, .pub-form-mod input:hover,
.pub-form-mod textarea:focus,
.pub-form-mod textarea:hover {
  border-color: #003865;
}
.pub-form-mod input.h40,
.pub-form-mod textarea.h40 {
  height: 40px;
}
.pub-form-mod input.h200,
.pub-form-mod textarea.h200 {
  height: 200px;
}
.pub-form-mod select {
  height: 40px;
}
.pub-form-mod select option {
  color: #333;
}
.pub-form-mod select.slet-holder {
  color: #7a7a7a;
}
.pub-form-mod select.slet-holder option {
  color: #000;
}
.pub-form-mod select.slet-checked {
  font-weight: bolder;
}
.pub-form-mod textarea {
  resize: vertical;
}
.pub-form-mod input.text {
  border: 0;
  background: none;
}
.pub-form-mod input:disabled,
.pub-form-mod textarea:disabled,
.pub-form-mod select:disabled {
  background: rgb(242, 242, 242);
  color: #c4c4c4;
}
.pub-form-mod input:disabled::-moz-placeholder, .pub-form-mod textarea:disabled::-moz-placeholder, .pub-form-mod select:disabled::-moz-placeholder {
  color: #c4c4c6;
}
.pub-form-mod input:disabled:-ms-input-placeholder, .pub-form-mod textarea:disabled:-ms-input-placeholder, .pub-form-mod select:disabled:-ms-input-placeholder {
  color: #c4c4c6;
}
.pub-form-mod input:disabled::placeholder,
.pub-form-mod textarea:disabled::placeholder,
.pub-form-mod select:disabled::placeholder {
  color: #c4c4c6;
}
.pub-form-mod input.empty,
.pub-form-mod input.error,
.pub-form-mod textarea.error,
.pub-form-mod select.error {
  border: 1px solid #f64747;
}
.pub-form-mod.danger input, .pub-form-mod.danger textarea, .pub-form-mod.danger select {
  border-color: #f64747 !important;
}
.pub-form-mod .el-radio-button--small .el-radio-button__inner {
  padding: 7px 15px;
}
.pub-form-mod .el-divider--horizontal {
  margin: 4px 0 4px 58px;
  background: 0 0;
  border-top: 1px dashed #ccc;
}
.pub-form-mod .el-badge__content {
  background: #003865;
}
.pub-form-mod .inpt-date {
  flex: 1;
  position: relative;
}
.pub-form-mod .inpt-date input[type=text] {
  position: absolute;
  left: 0;
  right: 25px;
  width: calc(100% - 20px);
}
.pub-form-mod .inpt-date input[type=text].inpt-date-not-absolute {
  position: relative;
  width: 100%;
}
.pub-form-mod .area-box {
  flex: 1;
}
.pub-form-mod .area-box .tip {
  display: none;
}
.pub-form-mod .area-box.empty {
  position: relative;
  flex: 1;
  overflow: initial !important;
}
.pub-form-mod .area-box.empty textarea {
  border: 1px solid #f64747;
  background-color: #fffaf9;
  padding-right: 30px;
}
.pub-form-mod .area-box.empty textarea:disabled {
  border: 1px solid #e4e4e4;
  background: rgb(242, 242, 242);
  color: #c4c4c4;
}
.pub-form-mod .area-box.empty .tip {
  display: block;
  top: 10px;
  right: 20px;
  position: absolute;
  background: #fffaf9;
  width: 16px;
  height: 16px;
  line-height: 16px;
  border: 1px solid #f64747;
  border-radius: 50%;
  text-align: center;
  color: #f64747;
  cursor: pointer;
}
.pub-form-mod .area-box.empty .tip:hover::before {
  position: absolute;
  top: 20px;
  left: 0px;
  content: "";
  width: 0;
  height: 0;
  border-left: 7px solid transparent;
  border-bottom: 12px solid #f64747;
  border-right: 7px solid transparent;
}
.pub-form-mod .area-box.empty .tip:hover::after {
  top: 30px;
  right: -21px;
  position: absolute;
  content: attr(errorTip);
  width: 80px;
  height: 16px;
  border: 1px solid #f64747;
  border-radius: 50%;
  text-align: center;
  color: #f64747;
  padding: 10px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #f64747;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
  font-style: normal;
  color: #f64747;
  white-space: nowrap;
  z-index: 99;
}
.pub-form-mod .area-box.disabled .tip {
  display: none;
}
.pub-form-mod .text-role-flex {
  display: flex;
  margin-top: 2px;
  align-items: center;
}

.detail-box {
  height: 100%;
  display: flex;
  flex-direction: column;
  /* 全局textarea框高度控制 */
}
.detail-box .bd {
  flex: 1;
}
.detail-box .fd {
  position: sticky;
  bottom: 0;
  width: 100%;
  padding: 10px 20px;
  background: #fff;
  border-top: 2px solid #003865;
  display: flex;
  align-items: center;
  justify-content: space-between;
  z-index: 998;
}
.detail-box .fd .foot-left {
  font-size: 12px;
}
.detail-box .fd .foot-btn {
  display: flex;
}
.detail-box .fd .foot-btn button {
  display: flex;
  width: 25px;
  height: 25px;
  justify-content: center;
  align-items: center;
}
.detail-box .fd button {
  margin: 0 5px;
  background-color: #003865;
  color: #fff;
  padding: 4px 6px;
  border-radius: 8px;
  font-size: 12px;
  box-sizing: border-box;
  cursor: pointer;
  line-height: 16px !important;
}
.detail-box .fd button.warn {
  background: #f58677;
  color: #fff;
}
.detail-box .fd button.success {
  background: #0ad09f;
  color: #fff;
}
.detail-box .fd button.info {
  background: #cad4e1;
  color: rgb(51, 51, 51);
}
.detail-box .fd button i.iconfont {
  font-size: 14px;
}
.detail-box .fd button i.iconfont.font12 {
  font-size: 12px;
}
.detail-box .fd button i.iconfont.font16 {
  font-size: 16px;
}
.detail-box .fd .el-dropdown button {
  line-height: 20px;
}
.detail-box .markColor {
  position: relative;
}
.detail-box .markColor::before {
  content: "";
  position: absolute;
  left: -29px;
  top: 0;
  height: 100%;
  border-right: 3px solid #17365d;
}
.detail-box li.markColor::before {
  left: -9px;
}
.detail-box span.markColor::before {
  left: 0;
}
.detail-box .pub-form-title-noresults.markColor::before,
.detail-box .pub-form-item-title-new.markColor::before,
.detail-box .pub-form-item-title-left.markColor::before,
.detail-box .item-wrapper.markColor::before,
.detail-box .markColor9::before {
  left: -9px;
}
.detail-box .markColor23::before {
  left: -23px;
}
.detail-box .pub-upload::before {
  left: -9px;
}
.detail-box .markColorSuccess {
  position: relative;
}
.detail-box .markColorSuccess::before {
  content: "";
  position: absolute;
  left: -37px;
  top: 0;
  height: 100%;
  border-right: 3px solid #f58676;
}
.detail-box .markColorRight::before {
  left: -15px;
}
.detail-box .rightline.markColor::before {
  left: -239px;
}
.detail-box textarea {
  height: 40px;
}
.detail-box .marbtm5 {
  margin-bottom: -5px;
}
.detail-box .radioGroup {
  display: flex;
  align-items: center;
  border: 1px solid #e4e4e4;
  border-radius: 4px;
  white-space: nowrap;
  padding: 0px !important;
}
.detail-box .radioGroup span {
  flex: 1;
  padding: 0 10px !important;
  border-right: 1px solid #e4e4e4;
  border-left: none !important;
  line-height: 40px;
  background-color: #fff;
  cursor: pointer;
  transition: all 0.5s ease;
}
.detail-box .radioGroup span:last-of-type {
  border-right: none;
}
.detail-box .radioGroup span.active {
  background: #003865;
  color: #fff;
}

.delete {
  -webkit-animation: fadeOut 1s ease-in-out;
          animation: fadeOut 1s ease-in-out;
}

.top-search-nofilter {
  display: flex;
  justify-content: space-between;
}
.top-search-nofilter .search-right {
  display: flex;
  align-items: center;
}
.top-search-nofilter .search-right .search-val {
  width: 200px;
  margin: 0 15px 0 8px;
}

.status-act {
  padding: 2px 6px;
  border-radius: 4px;
  color: #0ACF97;
  background-color: #D4F7ED;
  cursor: pointer;
}

.status-deact {
  padding: 2px 6px;
  border-radius: 4px;
  color: #FA5C7C;
  background-color: #FEE2E8;
  cursor: pointer;
}

.dialog-form-center .el-form-item {
  flex-direction: column;
}
.dialog-form-center .el-form-item__label {
  text-align: left;
  pointer-events: none;
}

.dialog-form-center .el-form-item {
  flex-direction: row;
}

.dialog-form-center .el-form-item__label {
  text-align: right !important;
}

.dialog-slide-form .el-form-item__label {
  pointer-events: none;
}

.sidebar ::-webkit-scrollbar,
.mod-left ::-webkit-scrollbar {
  display: none;
}

.subject-red {
  background-color: #fed7df;
  color: #fa5c7c;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  padding: 0 4px;
}

.subject-red-text {
  color: #fa5c7c;
}

.subject-green {
  background-color: #c2f3e5;
  color: #10d09a;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  padding: 0 4px;
}

.subject-green-text {
  color: #10d09a;
}

.subject-orange {
  background-color: #fef2d1;
  color: #ffd04d;
  font-size: 12px;
  border-radius: 4px;
  cursor: pointer;
  padding: 0 4px;
}

.subject-orange-text {
  color: #ffbc00;
}

.label-red {
  background-color: #fed7df;
  color: #fa5c7c;
  cursor: pointer;
}

.label-red-remark {
  display: block;
  padding-bottom: 5px;
}

.label-green {
  background-color: #c2f3e5;
  color: #10d09a;
  cursor: pointer;
}

.label-orange {
  background-color: rgba(255, 188, 0, 0.2470588235);
  color: #ffbc00;
  cursor: pointer;
}

.label-blue {
  background-color: rgba(57, 175, 209, 0.2470588235);
  color: #39afd1;
  cursor: pointer;
}

.label-icon {
  position: relative;
  display: inline-block;
  text-align: center;
  border-radius: 50%;
  min-width: 16px;
  width: 16px;
  height: 16px;
  margin-left: 5px;
  border: 1px solid #17365d;
  color: #17365d;
  line-height: 15px;
  font-weight: 800;
  background-color: #fff;
  z-index: 12;
  cursor: pointer;
  font-size: 14px;
}
.label-icon:hover {
  background-color: #dde5ee;
}
.label-icon > p {
  position: absolute;
  width: 200px;
  top: 50%;
  transform: translateY(-50%);
  left: 25px;
  padding: 10px;
  text-align: left;
  color: #666;
  font-weight: 400;
  font-size: 12px;
  box-shadow: #aaa 0px 0px 4px;
  z-index: 3;
  background-color: #fff;
  border-radius: 4px;
}
.label-icon > p::before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: -16px;
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  border: 8px solid transparent;
  border-right-color: #ddd;
}

.showTip {
  position: absolute;
  width: 200px;
  top: 45px;
  left: 15px;
  padding: 10px;
  text-align: left;
  color: #666;
  font-weight: 400;
  font-size: 12px;
  box-shadow: #aaa 0px 0px 4px;
  z-index: 301;
  background-color: #fff;
  border-radius: 4px;
}
.showTip::before {
  content: "";
  position: absolute;
  top: -16px;
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  border: 8px solid transparent;
  border-bottom-color: #fff;
  z-index: 10;
}

.el-tabs__nav-scroll {
  background-color: #333A45;
  height: 42px;
}

.el-tabs__item {
  background-color: #333A45;
  color: #fff;
}

.el-tabs__item.is-active {
  border-bottom: 2px solid #f58676;
  background-color: #fff;
  color: #333A45;
}

.el-tabs__active-bar {
  background-color: transparent;
}

.el-tabs__nav-wrap {
  padding: 0 !important;
}

.el-tabs__item:hover {
  color: #fff;
}

.el-tabs__item.is-active:hover {
  color: #333A45;
}

.el-tabs--top .el-tabs__item.is-top:nth-child(2) {
  padding-left: 20px;
}

.el-tabs--top .el-tabs__item.is-top:last-child {
  padding-right: 20px;
}

.el-sub-menu.is-opened .el-sub-menu__title {
  font-weight: bold;
  height: 40px;
  line-height: 40px;
}
.el-sub-menu.is-opened i {
  color: #233451 !important;
}

.el-sub-menu__title {
  height: 40px;
  line-height: 40px;
}

.el-sub-menu .el-menu-item {
  height: 30px;
  line-height: 30px;
}

.el-dropdown .el-dropdown-selfdefine {
  display: flex;
  align-items: center;
}
.el-dropdown .el-dropdown-selfdefine .user-name {
  margin: 0 2px;
}

.el-button--info {
  --el-button-text-color: #6f7272;
  --el-button-hover-bg-color: #dde5ee !important;
  --el-button-hover-text-color: #6f7272 !important;
}

.el-button--danger {
  --el-button-hover-bg-color: #d54f6a !important;
}

.el-button--mini {
  padding: 0 6px !important;
  min-height: 22px;
}

.el-image-viewer__canvas img {
  background: #fff;
}

@-webkit-keyframes fadeIn {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.3;
  }
}

@keyframes fadeIn {
  0% {
    opacity: 1;
  }
  50% {
    opacity: 0.8;
  }
  100% {
    opacity: 0.3;
  }
}
@-webkit-keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
@keyframes fadeOut {
  0% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
.upload-box {
  padding: 15px;
}
.upload-box .el-upload {
  width: 100%;
}
.upload-box .el-upload .el-upload-dragger {
  width: 100%;
  padding: 10px 10px 20px 10px;
}
.upload-box .el-upload .el-upload-dragger .pub-icon {
  display: flex;
  justify-content: center;
}
.upload-box .el-upload .el-upload-dragger .pub-icon .icon-item {
  display: flex;
  margin: 10px;
  width: auto;
  flex-direction: column;
  align-items: center;
  font-size: 12px;
}
.upload-box .el-upload .el-upload-dragger .pub-icon .icon-item .icon {
  width: 60px;
  height: 60px;
}
.upload-box .el-upload .el-upload-dragger .pub-icon .icon-item .icon.icon-zip {
  background: url(../static/img/zip.e073c52c.png) no-repeat center center;
  background-size: 90%;
}
.upload-box .el-upload .el-upload-dragger .pub-icon .icon-item .icon.icon-image {
  background: url(data:image/png;base64,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) no-repeat center center;
  background-size: 83%;
}
.upload-box .el-upload .el-upload-dragger .pub-icon .icon-item .icon.icon-html {
  background: url(../static/img/html.943225e2.png) no-repeat center center;
  background-size: cover;
}
.upload-box .el-upload .el-upload-dragger .pub-icon .icon-item .icon.icon-pdf {
  background: url(../static/img/pdf.e3aab79e.png) no-repeat center center;
  background-size: cover;
}
.upload-box .el-upload .el-upload-dragger .pub-icon .icon-item .icon.icon-word {
  background: url(../static/img/word.54b59d56.png) no-repeat center center;
  background-size: cover;
}
.upload-box .el-upload .el-upload-dragger .pub-icon .icon-item .icon.icon-excel {
  background: url(../static/img/excel.a89bcae5.png) no-repeat center center;
  background-size: cover;
}
.upload-box .el-upload .el-upload-dragger .pub-icon .icon-item .icon.icon-txt {
  background: url(../static/img/txt.1ae8357d.png) no-repeat center center;
  background-size: cover;
}
.upload-box .el-upload .el-upload-dragger .pub-icon .icon-item .icon.icon-mp3 {
  background: url(../static/img/sounds.9e159ea7.png) no-repeat center center;
  background-size: cover;
}
.upload-box .el-upload .el-upload-dragger .pub-icon .icon-item .text {
  flex: 1;
  text-align: center;
}
.upload-box .el-upload .el-upload-dragger .pub-icon2 {
  justify-content: flex-start;
  align-items: center;
}
.upload-box .el-upload .el-upload-dragger .pub-icon2 .el-upload__text {
  text-align: left;
}
.upload-box .el-upload .el-upload-dragger .el-upload__text {
  color: #999;
  font-size: 12px;
}

.slide-box {
  padding: 15px;
}
.slide-box .fileName {
  display: flex;
}
.slide-box .fileName .left {
  width: 34px;
  min-width: 34px;
}
.slide-box .fileName .left.zip {
  background: url(../static/img/zip.e073c52c.png) no-repeat center center;
  background-size: 90%;
}
.slide-box .fileName .left.image {
  background: url(data:image/png;base64,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) no-repeat center center;
  background-size: 83%;
}
.slide-box .fileName .left.html {
  background: url(../static/img/html.943225e2.png) no-repeat center center;
  background-size: 100%;
}
.slide-box .fileName .left.pdf {
  background: url(../static/img/pdf.e3aab79e.png) no-repeat center center;
  background-size: 100%;
}
.slide-box .fileName .left.word {
  background: url(../static/img/word.54b59d56.png) no-repeat center center;
  background-size: 100%;
}
.slide-box .fileName .left.excel {
  background: url(../static/img/excel.a89bcae5.png) no-repeat center center;
  background-size: 100%;
}
.slide-box .fileName .left.txt {
  background: url(../static/img/txt.1ae8357d.png) no-repeat center center;
  background-size: 100%;
}
.slide-box .fileName .left.mp3 {
  background: url(../static/img/sounds.9e159ea7.png) no-repeat center center;
  background-size: 100%;
}

.pub-table .el-link .el-link__inner {
  text-decoration: underline;
  -webkit-text-decoration-color: #003865;
          text-decoration-color: #003865;
}
.pub-table b.underline,
.pub-table span.underline {
  cursor: pointer;
  color: #003865;
  -webkit-text-decoration-color: #003865;
          text-decoration-color: #003865;
  text-decoration: underline;
}
.pub-table b.underline:hover,
.pub-table span.underline:hover {
  color: #006992;
}
.pub-table span.confirmed-edd {
  color: green !important;
}
.pub-table .el-button + .el-button {
  margin-left: 8px;
}
.pub-table .el-button--info {
  --el-button-text-color: $font-color;
}
.pub-table .operate-select {
  width: 100%;
  height: 28px;
  padding: 0 4px;
  border: 1px solid #dcdfe6;
  background-color: #fff;
  appearance: none;
  -moz-appearance: none;
  -webkit-appearance: none;
  border-radius: 4px;
  position: relative;
  background: url(../static/img/arrow-down.45473c7b.svg) no-repeat scroll 50px center transparent;
  background-size: 11px;
}
.pub-table .operate-select option {
  color: #333;
}
.pub-table .operate-select:hover {
  border: 1px solid #003865 !important;
  outline: none;
}
.pub-table .operate-select:focus {
  border: 1px solid #003865 !important;
  outline: none;
}
.pub-table .operate-select:active {
  border: 1px solid #003865 !important;
  outline: none;
}
.pub-table .checked-row .operate-select {
  border-color: #bbbbbb;
}
.pub-table .order-icon .pub-tip {
  transform: scale(0.7);
  width: 26px;
  height: 26px;
  line-height: 26px;
  font-size: 12px;
  border-radius: 4px;
  display: inline-block;
  text-align: center;
}
.pub-table .order-icon .pub-tip:nth-of-type(2) {
  transform: scale(0.7) translateX(0px);
}
.pub-table .order-icon .pub-tip:nth-of-type(3) {
  transform: scale(0.7) translateX(0px);
}
.pub-table .order-icon .pub-tip:nth-of-type(4) {
  transform: scale(0.7) translateX(0px);
}
.pub-table .order-icon .pub-tip:nth-of-type(5) {
  transform: scale(0.7) translateX(0px);
}

.el-button--success {
  color: #0ad09f;
  background: #d4f7ed;
  border-color: #d4f7ed;
  padding: 7px;
}

.el-button--success:hover {
  background-color: #d3dae2;
  border-color: #d3dae2;
  color: #0ad09f;
}

.el-link {
  font-size: 12px !important;
}

.el-menu-item {
  height: 40px;
  line-height: 40px;
}

.el-menu-item:hover {
  background-color: #f3f7fa;
}

.el-menu-item.is-active,
.el-sub-menu__title.is-active {
  background: #f58676 !important;
  color: #fff !important;
}

.option-tip {
  color: #999 !important;
}

.el-form-item__label {
  font-weight: 600;
}

.el-input.is-disabled .el-input__inner,
.el-textarea.is-disabled .el-textarea__inner {
  color: #333 !important;
}

/* 模板引擎相关 */
.pub-form-mod button {
  margin: 10px;
  padding: 0 15px;
  border-radius: 3px;
  line-height: 30px;
  cursor: pointer;
}
.pub-form-mod button.small {
  margin: 5px;
  padding: 0 10px;
  line-height: 22px;
}
.pub-form-mod button.middle {
  margin: 5px;
  padding: 2px 18px;
  line-height: 22px;
  font-size: 12px;
}
.pub-form-mod button.warn {
  background: #f58677;
  color: #fff;
}
.pub-form-mod button.warn:hover {
  background: #d54f6a;
}
.pub-form-mod button.primary {
  background: #003865;
  color: #fff;
}
.pub-form-mod button.primary:hover {
  background: #1179c4;
}
.pub-form-mod button.normal {
  background: #cad4e1;
}
.pub-form-mod button.normal:hover {
  background: #dde5ee;
}
.pub-form-mod button.gray {
  background: #54555b;
}
.pub-form-mod button.warn[disabled] {
  opacity: 0.5;
}
.pub-form-mod button.normal[disabled] {
  opacity: 0.5;
}
.pub-form-mod i.icon {
  margin: 3px;
  font-size: 24px;
  color: #98a6ad;
  cursor: pointer;
  transition: all 0.3s;
  background-size: contain;
}
.pub-form-mod i.icon.del-icon {
  background: url(../static/img/delete.779d49e2.svg) no-repeat center center;
}
.pub-form-mod i.icon:hover {
  color: #6c757d;
}
.pub-form-mod i.icon.icon-edit {
  font-size: 18px;
}
.pub-form-mod i.icon[disabled] {
  opacity: 0.5;
  cursor: not-allowed;
}
.pub-form-mod textarea[readonly] {
  background-color: #f2f2f2 !important;
  border: 1px solid #e4e4e4 !important;
}
.pub-form-mod .inpt-date {
  display: block;
}
.pub-form-mod .inpt-date.error {
  border: 1px solid red;
}
.pub-form-mod .inpt-date input[type=text] {
  position: absolute;
}
.pub-form-mod .inpt-date .date-icon {
  display: none;
}
.pub-form-mod .group-panel {
  position: relative;
  display: flex;
}
.pub-form-mod .group-panel .item-panel {
  display: flex;
  margin: 0 40px;
  width: 150px;
  height: 150px;
  align-items: center;
  justify-content: center;
  border: 1px solid #e4e4e4;
  background-color: #f9f9f9;
}
.pub-form-mod .group-panel .item-panel img {
  max-width: 100%;
  max-height: 100%;
}
.pub-form-mod .textarea-box, .pub-form-mod .ck-editor-box {
  position: relative;
  display: flex;
  flex: 1;
  background: #fff;
}
.pub-form-mod .textarea-box textarea.highlight, .pub-form-mod .ck-editor-box textarea.highlight {
  border: 1px solid rgb(248, 190, 39);
  background: rgba(248, 190, 39, 0.06);
}
.pub-form-mod .textarea-box textarea, .pub-form-mod .ck-editor-box textarea {
  z-index: 11;
  background: transparent;
}
.pub-form-mod .textarea-box .count, .pub-form-mod .ck-editor-box .count {
  position: absolute;
  background: #fff;
  right: 17px;
  bottom: -2px;
  color: #cad4e1;
  white-space: nowrap;
  font-size: 12px;
  transform: scale(0.9);
  z-index: 10;
  display: flex;
}
.pub-form-mod .textarea-box .count > span, .pub-form-mod .ck-editor-box .count > span {
  width: auto !important;
  display: inline-block;
  border: 0;
  padding: 0;
}
.pub-form-mod .textarea-box .count .of, .pub-form-mod .ck-editor-box .count .of {
  margin: 0 5px;
}
.pub-form-mod .textarea-box .alert-icon, .pub-form-mod .ck-editor-box .alert-icon {
  position: absolute;
  right: -7px;
  top: -7px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid #17365d;
  text-align: center;
  line-height: 20px;
  font-weight: 800;
  background-color: #fff;
  z-index: 12;
  cursor: pointer;
  font-size: 18px;
}
.pub-form-mod .select-box-empty .suffix-inner {
  color: #999 !important;
}
.pub-form-mod .select-box {
  position: relative;
  min-width: 200px;
  width: 100%;
}
.pub-form-mod .select-box .select-inner {
  line-height: 28px;
  padding: 0 5px;
  min-height: 40px;
  background-color: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  display: flex;
  justify-content: flex-start;
  align-items: center;
}
.pub-form-mod .select-box .select-inner .disabled {
  color: #7a7a7a;
  display: inline;
}
.pub-form-mod .select-box .select-inner .tag {
  flex: none;
  width: auto;
  margin: 2px;
  padding: 0 3px 0 5px;
  line-height: 24px;
  border: 1px solid #e4e4e4;
  background: #f9f9f9;
  border-radius: 2px;
  display: inline-block;
  justify-content: space-between;
  transition: background-color 0.15s ease;
}
.pub-form-mod .select-box .select-inner .tag:hover {
  background: #f1f1f1;
}
.pub-form-mod .select-box .select-inner .tag .close {
  margin-left: 3px;
  padding: 2px 4px;
  border-radius: 2px;
  color: #869099;
  cursor: pointer;
  transition: background-color 0.15s, color 0.15s;
}
.pub-form-mod .select-box .select-inner .tag .close:hover {
  background-color: #e4e4e4;
  color: #333;
}
.pub-form-mod .select-box .select-inner .suffix {
  margin-left: auto;
}
.pub-form-mod .select-box .select-inner .suffix .suffix-inner {
  width: 16px;
  height: 16px;
  display: flex;
  justify-content: center;
  align-items: center;
  transform: rotate(90deg);
  transition: transform 0.2s ease;
}
.pub-form-mod .select-box.active .select-inner, .pub-form-mod .select-box:focus-within .select-inner {
  border-color: #17365d;
  box-shadow: 0 0 0 2px rgba(23, 54, 93, 0.1);
}
.pub-form-mod .select-box.active .suffix-inner {
  transform: rotate(270deg);
}
.pub-form-mod .select-box .select-drop {
  position: absolute;
  width: auto;
  min-width: 100px;
  top: 43px;
  background: #fff;
  border: 1px solid #e4e4e4;
  border-radius: 3px;
  display: none;
  flex-direction: column;
  z-index: 99;
  max-height: 420px;
  overflow-y: auto;
  white-space: nowrap;
  opacity: 0;
  transform: translateY(-8px);
  transition: opacity 0.2s ease, transform 0.2s ease;
}
.pub-form-mod .select-box .select-drop::-webkit-scrollbar {
  width: 6px;
}
.pub-form-mod .select-box .select-drop::-webkit-scrollbar-thumb {
  background-color: #c1c1c1;
  border-radius: 3px;
}
.pub-form-mod .select-box .select-drop::-webkit-scrollbar-track {
  background-color: #f1f1f1;
}
.pub-form-mod .select-box .select-drop .drop-item {
  line-height: 22px;
  position: relative;
  width: auto !important;
  display: flex;
  flex-direction: row;
  justify-content: space-between;
  border-bottom: 1px solid #efefef;
  border-left-width: 0;
  padding: 10px 26px 10px 5px;
  margin: 0 5px;
  cursor: pointer;
  transition: background-color 0.15s ease;
}
.pub-form-mod .select-box .select-drop .drop-item:hover {
  background-color: #f5f7fa;
}
.pub-form-mod .select-box .select-drop .drop-item input {
  width: 16px;
  height: 16px;
}
.pub-form-mod .select-box .select-drop .drop-item.selected:after {
  content: "✓";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  font-size: 12px;
  width: 16px;
  height: 16px;
  text-align: center;
  line-height: 16px;
  background-color: #17365d;
  color: #fff;
  font-weight: 800;
}
.pub-form-mod .select-box .select-drop .drop-item::before {
  content: "";
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  right: 10px;
  width: 16px;
  height: 16px;
  line-height: 16px;
  box-sizing: border-box;
  border: 1px solid #dfdfdf;
}
.pub-form-mod .select-box .select-drop .drop-item-click {
  max-width: 400px;
  text-overflow: ellipsis;
  white-space: normal;
  word-break: break-word;
}
.pub-form-mod .select-box .select-drop .drop-item-click::before {
  display: none !important;
}
.pub-form-mod .select-box .select-drop .drop-item-click::after {
  display: none !important;
}
.pub-form-mod .select-box.active .select-drop {
  display: flex;
  opacity: 1;
  transform: translateY(0);
}
.pub-form-mod .select-box.error {
  border: 1px solid #f64747;
}
.pub-form-mod .select-box.error .select-inner {
  background-color: #fffaf9;
}
.pub-form-mod .select-box.disabled {
  border-color: rgb(242, 242, 242);
}
.pub-form-mod .select-box.disabled .select-inner {
  background: rgb(242, 242, 242);
}
.pub-form-mod .select-box.disabled .select-inner .tag {
  background: rgb(242, 242, 242);
  color: #c4c4c4;
}
.pub-form-mod .select-box.disabled .select-inner .tag .close {
  display: none;
}
.pub-form-mod .select-multiple-box .tags {
  width: 100%;
  display: flex;
  flex-wrap: wrap;
}
.pub-form-mod .select-multiple-box .tags .tag {
  height: 26px;
  margin: 5px 2px 0 2px;
}
.pub-form-mod .select-multiple-box .select-inner input {
  border: none;
  min-width: 130px;
  flex: 1;
  min-height: 35px;
}
.pub-form-mod .select-multiple-box i {
  padding: 10px;
  line-height: 22px;
}
.pub-form-mod .select-multiple-box .select-drop {
  width: 100%;
}
.pub-form-mod .select-multiple-box .select-drop .drop-item {
  padding: 10px 57px 10px 5px;
}
.pub-form-mod input[type=checkbox] {
  z-index: 300;
  min-height: 16px !important;
  line-height: 13px !important;
  width: 16px;
  height: 16px;
  position: relative;
  -webkit-appearance: none;
     -moz-appearance: none;
          appearance: none;
  transition: all 0.3s;
}
.pub-form-mod input[type=checkbox]:hover {
  border-color: transparent;
}
.pub-form-mod input[type=checkbox]::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  background: #fff;
  width: 100%;
  height: 100%;
  border: 1px solid #aaa;
  border-radius: 4px;
}
.pub-form-mod input[type=checkbox]:disabled::before {
  background: #eee;
  cursor: no-drop;
}
.pub-form-mod input[type=checkbox]:checked::before {
  content: "✓";
  background-color: #17365d;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border: 1px solid #17365d;
  border-radius: 4px;
  color: #fff;
  font-size: 14px;
  font-weight: bold;
  text-align: center;
  line-height: 14px;
}
.pub-form-mod .report-hyperlink {
  position: relative;
  border: 0 !important;
  color: #17365d;
  cursor: pointer;
}
.pub-form-mod .report-hyperlink.underline {
  text-decoration: underline;
  color: #0101ff;
}
.pub-form-mod .report-hyperlink.underline .linkbox {
  position: absolute;
  width: 200px;
  top: 50%;
  transform: translateY(-50%);
  left: 75px;
  height: auto;
  padding: 10px;
  text-align: left;
  color: #666;
  font-weight: 400;
  font-size: 12px;
  box-shadow: #aaa 0px 0px 4px;
  z-index: 3;
  background-color: #fff;
  border-radius: 4px;
  white-space: nowrap;
  display: flex;
  flex-direction: column;
}
.pub-form-mod .report-hyperlink.underline .linkbox span {
  display: inline-block;
  line-height: 18px;
  text-decoration: underline;
  color: #0101ff;
  white-space: normal;
  word-break: break-word;
  width: 100%;
}
.pub-form-mod .report-hyperlink.underline .linkbox::before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: -16px;
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  border: 8px solid transparent;
  border-right-color: #ddd;
}
.pub-form-mod .report-hyperlink.disabled {
  color: #c4c4c4;
}
.pub-form-mod .report-hyperlink.disabled .linkbox {
  display: none;
}
.pub-form-mod .report-underlink {
  border: 0 !important;
  color: #17365d;
  cursor: pointer;
  text-decoration: underline;
}
.pub-form-mod .report-underlink .dropdown-title-title {
  text-decoration: underline;
}
.pub-form-mod .report-underlink-second {
  border: 0 !important;
  color: #343434;
  text-decoration: underline;
  margin: 10px 0;
}
.pub-form-mod .media-list {
  display: flex;
  flex-wrap: wrap;
}
.pub-form-mod .media-list .other {
  font-style: normal;
  margin: 0 5px;
  white-space: nowrap;
}
.pub-form-mod .media-list .media {
  position: relative;
  color: #0101ff;
  text-decoration: underline;
  font-style: normal;
  cursor: pointer;
  margin: 0 5px;
  white-space: nowrap;
}
.pub-form-mod .media-list .media .link {
  display: none;
  text-decoration: underline;
  position: absolute;
  top: -8px;
  left: 38px;
  margin-left: 10px;
  padding: 10px;
  background: #fff;
  border-radius: 3px;
  border: 1px solid #ccc;
  box-shadow: 0 0 5px 1px rgba(0, 0, 0, 0.2);
  font-style: normal;
  color: #0101ff;
  white-space: nowrap;
  z-index: 9;
  flex-direction: column;
  width: 200px;
}
.pub-form-mod .media-list .media .link a {
  width: 100%;
  text-align: left;
  color: #0101ff !important;
  white-space: normal;
  word-break: break-word;
}
.pub-form-mod .media-list .media .link::after {
  position: absolute;
  top: 12px;
  left: -12px;
  content: "";
  width: 0;
  height: 0;
  border-top: 7px solid transparent;
  border-right: 12px solid #ccc;
  border-bottom: 7px solid transparent;
}
.pub-form-mod .media-list .media:hover .link {
  display: flex;
}
.pub-form-mod .media-list .media.remark .link {
  left: 130px !important;
}
.pub-form-mod .mlr-5 {
  display: flex;
  width: 100%;
}
.pub-form-mod .mlr-5 > input,
.pub-form-mod .mlr-5 > select,
.pub-form-mod .mlr-5 > div {
  margin: 0 5px;
}
.pub-form-mod .mlr-5 > input:first-child,
.pub-form-mod .mlr-5 > select:first-child,
.pub-form-mod .mlr-5 > div:first-child {
  margin-left: 0;
}
.pub-form-mod .mlr-5 > input:last-child,
.pub-form-mod .mlr-5 > select:last-child,
.pub-form-mod .mlr-5 > div:last-child {
  margin-right: 0;
}
.pub-form-mod .base-info {
  flex: 1;
}
.pub-form-mod .base-info li {
  display: flex;
  min-height: 50px;
}
.pub-form-mod .base-info li span {
  display: flex;
  width: auto;
  min-height: 38px;
  padding: 3px 10px;
  border-left: 1px solid #efefef;
  display: flex;
  align-items: center;
}
.pub-form-mod .base-info li span .dot {
  list-style-type: disc;
}
.pub-form-mod .base-info li:nth-of-type(odd) {
  background: #f1f3fa;
}
.pub-form-mod .base-info li:nth-of-type(even) {
  background: #fff;
}
.pub-form-mod .base-info li:first-child {
  height: 45px;
  background: #17365d;
  color: #fff;
  font-weight: bold;
}
.pub-form-mod .base-info li:first-child span {
  display: flex;
  flex-direction: row !important;
  align-items: center;
}
.pub-form-mod .appendix-info {
  flex: 1;
}
.pub-form-mod .appendix-info li {
  display: flex;
  min-height: 50px;
}
.pub-form-mod .appendix-info li span {
  display: flex;
  width: auto;
  min-height: 38px;
  padding: 3px 10px;
  border-left: 1px solid #efefef;
  display: flex;
  align-items: center;
}
.pub-form-mod .appendix-info li span .dot {
  list-style-type: disc;
}
.pub-form-mod .appendix-info li .even {
  background: #f1f3fa;
}
.pub-form-mod .appendix-info li .odd {
  background: #fff;
}
.pub-form-mod .appendix-info li:first-child {
  height: 45px;
  background: #17365d;
  color: #fff;
  font-weight: bold;
}
.pub-form-mod .appendix-info li:first-child span {
  display: flex;
  flex-direction: row !important;
  align-items: center;
}
.pub-form-mod .contact-info,
.pub-form-mod .general-info {
  flex: 1;
}
.pub-form-mod .contact-info li,
.pub-form-mod .general-info li {
  display: flex;
  min-height: 50px;
}
.pub-form-mod .contact-info li textarea,
.pub-form-mod .general-info li textarea {
  height: 40px;
}
.pub-form-mod .contact-info li span,
.pub-form-mod .general-info li span {
  display: flex;
  width: auto;
  padding: 3px 10px;
  border-left: 1px solid #efefef;
  display: flex;
  align-items: center;
}
.pub-form-mod .contact-info li span:nth-child(1),
.pub-form-mod .general-info li span:nth-child(1) {
  border-left: 0;
  width: 80px;
}
.pub-form-mod .contact-info li span:nth-child(2),
.pub-form-mod .general-info li span:nth-child(2) {
  width: 220px;
}
.pub-form-mod .contact-info li span:nth-child(3),
.pub-form-mod .general-info li span:nth-child(3) {
  flex: 1;
}
.pub-form-mod .contact-info li span:nth-child(4),
.pub-form-mod .general-info li span:nth-child(4) {
  width: 240px;
  display: flex;
  flex-direction: column;
}
.pub-form-mod .contact-info li span:nth-child(5),
.pub-form-mod .general-info li span:nth-child(5) {
  width: 102px;
}
.pub-form-mod .contact-info li:nth-of-type(odd),
.pub-form-mod .general-info li:nth-of-type(odd) {
  background: #f1f3fa;
}
.pub-form-mod .contact-info li:nth-of-type(even),
.pub-form-mod .general-info li:nth-of-type(even) {
  background: #fff;
}
.pub-form-mod .contact-info li:first-child,
.pub-form-mod .general-info li:first-child {
  height: 45px;
  background: #17365d;
  color: #fff;
  font-weight: bold;
}
.pub-form-mod .contact-info li:first-child span,
.pub-form-mod .general-info li:first-child span {
  height: 100%;
  display: flex;
  flex-direction: row !important;
  align-items: center !important;
}
.pub-form-mod .general-info li span:nth-child(1) {
  width: 300px;
}
.pub-form-mod .general-info li span:nth-child(2) {
  flex: 1;
  width: auto;
}
.pub-form-mod .general-info li span:nth-child(3) {
  width: 240px;
  flex: none;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
}
.pub-form-mod .general-info li span:nth-child(4) {
  width: 100px;
  flex-direction: row;
}
.pub-form-mod .general-info li:first-child span {
  justify-content: flex-start;
}
.pub-form-mod .costing-information {
  flex: 1;
}
.pub-form-mod .costing-information li {
  display: flex;
  min-height: 50px;
}
.pub-form-mod .costing-information li textarea {
  height: 40px;
}
.pub-form-mod .costing-information li span {
  display: flex;
  width: auto;
  padding: 3px 10px;
  border-left: 1px solid #efefef;
  display: flex;
  align-items: center;
}
.pub-form-mod .costing-information li span:nth-child(1) {
  width: 350px;
}
.pub-form-mod .costing-information li span:nth-child(2) {
  width: 200px;
}
.pub-form-mod .costing-information li span:nth-child(3) {
  flex: 1;
}
.pub-form-mod .costing-information li span:nth-child(4) {
  width: 200px;
}
.pub-form-mod .costing-information li span:nth-child(5) {
  width: 120px;
}
.pub-form-mod .costing-information li:nth-of-type(odd) {
  background: #f1f3fa;
}
.pub-form-mod .costing-information li:nth-of-type(even) {
  background: #fff;
}
.pub-form-mod .costing-information li:first-child {
  height: 45px;
  background: #17365d;
  color: #fff;
  font-weight: bold;
}
.pub-form-mod .costing-information li:first-child span {
  height: 100%;
  display: flex;
  flex-direction: row !important;
  align-items: center !important;
}
.pub-form-mod .DirectCorporateShareholder-info {
  flex: 1;
}
.pub-form-mod .DirectCorporateShareholder-info li {
  display: flex;
  min-height: 50px;
}
.pub-form-mod .DirectCorporateShareholder-info li textarea {
  height: 40px;
}
.pub-form-mod .DirectCorporateShareholder-info li span {
  display: flex;
  width: auto;
  padding: 3px 10px;
  border-left: 1px solid #efefef;
  display: flex;
  align-items: center;
}
.pub-form-mod .DirectCorporateShareholder-info li span:nth-child(1) {
  border-left: 0;
  width: 200px;
}
.pub-form-mod .DirectCorporateShareholder-info li span:nth-child(2) {
  flex: 1;
}
.pub-form-mod .DirectCorporateShareholder-info li span:nth-child(3) {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pub-form-mod .DirectCorporateShareholder-info li span:nth-child(4) {
  width: 102px;
}
.pub-form-mod .DirectCorporateShareholder-info li:nth-of-type(odd) {
  background: #f1f3fa;
}
.pub-form-mod .DirectCorporateShareholder-info li:nth-of-type(even) {
  background: #fff;
}
.pub-form-mod .DirectCorporateShareholder-info li:first-child {
  height: 45px;
  background: #17365d;
  color: #fff;
  font-weight: bold;
}
.pub-form-mod .DirectCorporateShareholder-info li:first-child span {
  height: 100%;
  display: flex;
  flex-direction: row !important;
  align-items: center !important;
}
.pub-form-mod .UltimateControllingShareholder-info li span:nth-child(1) {
  width: 200px;
}
.pub-form-mod .UltimateControllingShareholder-info li span:nth-child(2) {
  flex: 1;
}
.pub-form-mod .UltimateControllingShareholder-info li span:nth-child(3) {
  width: 102px;
}
.pub-form-mod .credit-score li span {
  flex: 1;
}
.pub-form-mod .credit-score-level li span {
  flex: 1;
}
.pub-form-mod .credit-score-level li span:nth-child(1), .pub-form-mod .credit-score-level li span:nth-child(2), .pub-form-mod .credit-score-level li span:nth-child(3) {
  width: 180px;
  flex: inherit;
}
.pub-form-mod .credit-score-level li.active {
  color: #003865;
  font-weight: bold;
}
.pub-form-mod .dot-list {
  padding: 5px;
}
.pub-form-mod .dot-list .dot::before {
  content: "•";
  margin-right: 5px;
}
.pub-form-mod .pub-table li {
  display: flex;
}
.pub-form-mod .pub-table li span {
  display: flex;
  width: auto;
  padding: 3px 5px;
  border-left: 1px solid #efefef;
  align-items: center;
}
.pub-form-mod .pub-table li span.error {
  color: red;
}
.pub-form-mod .pub-table li:nth-of-type(odd) {
  background: #f1f3fa;
}
.pub-form-mod .pub-table li:nth-of-type(even) {
  background: #fff;
}
.pub-form-mod .pub-table li:first-child {
  height: 45px;
  background: #17365d;
  color: #fff;
  font-weight: bold;
}
.pub-form-mod .pub-table button:disabled {
  cursor: not-allowed;
}
.pub-form-mod .pub-table input:-moz-read-only {
  background-color: rgb(242, 242, 242);
  z-index: 1;
  color: #c4c4c4;
}
.pub-form-mod .pub-table input:read-only {
  background-color: rgb(242, 242, 242);
  z-index: 1;
  color: #c4c4c4;
}
.pub-form-mod .pub-table input:read-only::-moz-placeholder {
  color: #c4c4c6;
}
.pub-form-mod .pub-table input:read-only:-ms-input-placeholder {
  color: #c4c4c6;
}
.pub-form-mod .pub-table input:-moz-read-only::placeholder {
  color: #c4c4c6;
}
.pub-form-mod .pub-table input:read-only::placeholder {
  color: #c4c4c6;
}
.pub-form-mod .pub-table-editor > li {
  display: flex;
}
.pub-form-mod .pub-table-editor > li > span {
  display: flex;
  width: auto;
  padding: 3px 5px;
  border-left: 1px solid #efefef;
  align-items: center;
}
.pub-form-mod .pub-table-editor > li > span.error {
  color: red;
}
.pub-form-mod .pub-table-editor > li:nth-of-type(odd) {
  background: #f1f3fa;
}
.pub-form-mod .pub-table-editor > li:nth-of-type(even) {
  background: #fff;
}
.pub-form-mod .pub-table-editor > li:first-child {
  height: 45px;
  background: #17365d;
  color: #fff;
  font-weight: bold;
}
.pub-form-mod .pub-table-editor button:disabled {
  cursor: not-allowed;
}
.pub-form-mod .pub-table-editor input:-moz-read-only {
  background-color: rgb(242, 242, 242);
  z-index: 1;
  color: #c4c4c4;
}
.pub-form-mod .pub-table-editor input:read-only {
  background-color: rgb(242, 242, 242);
  z-index: 1;
  color: #c4c4c4;
}
.pub-form-mod .pub-table-editor input:read-only::-moz-placeholder {
  color: #c4c4c6;
}
.pub-form-mod .pub-table-editor input:read-only:-ms-input-placeholder {
  color: #c4c4c6;
}
.pub-form-mod .pub-table-editor input:-moz-read-only::placeholder {
  color: #c4c4c6;
}
.pub-form-mod .pub-table-editor input:read-only::placeholder {
  color: #c4c4c6;
}
.pub-form-mod .scroll-table {
  width: 100%;
  overflow-x: auto;
}
.pub-form-mod .scroll-table .financial-info {
  margin-bottom: 20px;
  width: 100%;
  float: left;
}
.pub-form-mod .scroll-table .financial-info.autoWidth {
  width: auto;
}
.pub-form-mod .scroll-table .financial-info li span {
  flex: 1;
  padding: 10px;
  min-width: 210px;
}
.pub-form-mod .scroll-table .financial-info li span.text-right {
  justify-content: flex-end;
}
.pub-form-mod .scroll-table .financial-info li span.text-center {
  justify-content: center;
}
.pub-form-mod .scroll-table .financial-info li span.bold {
  font-weight: 800;
}
.pub-form-mod .scroll-table .financial-info li span.italic {
  font-style: italic;
}
.pub-form-mod .scroll-table .financial-info .table-head {
  height: unset !important;
  background: #17365d !important;
  color: #fff;
  font-weight: bold;
}
.pub-form-mod .scroll-table .financial-info .table-head > span {
  border-bottom: 1px solid #efefef;
  padding: 5px;
  min-height: 30px;
}
.pub-form-mod .scroll-table .FinancialData-info {
  margin-bottom: 20px;
  width: 100%;
  float: left;
}
.pub-form-mod .scroll-table .FinancialData-info.autoWidth {
  width: auto;
}
.pub-form-mod .scroll-table .FinancialData-info li span {
  flex: 1;
  padding: 10px;
  min-width: 150px;
}
.pub-form-mod .scroll-table .FinancialData-info li span.text-right {
  justify-content: flex-end;
}
.pub-form-mod .scroll-table .FinancialData-info li span.bold {
  font-weight: 800;
}
.pub-form-mod .scroll-table .FinancialData-info li span.italic {
  font-style: italic;
}
.pub-form-mod .scroll-table .FinancialData-info li span i.green {
  color: #0ad09f;
  position: relative;
}
.pub-form-mod .scroll-table .FinancialData-info li span i.green::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: solid transparent;
  /* 统一透明边框 */
  border-bottom-color: #0ad09f;
  /* 继承父元素颜色 */
  border-width: 0px 5px 9px;
  /* 控制尺寸：左右 8px，底部 12px */
  left: -12px;
  /* 向上偏移自身高度 */
  top: 5px;
}
.pub-form-mod .scroll-table .FinancialData-info li span i.red {
  color: #f64747;
  position: relative;
}
.pub-form-mod .scroll-table .FinancialData-info li span i.red::before {
  content: "";
  position: absolute;
  width: 0;
  height: 0;
  border: solid transparent;
  /* 统一透明边框 */
  border-top-color: #f64747;
  /* 继承父元素颜色 */
  border-width: 9px 5px 0;
  /* 控制尺寸：顶部 12px，左右 8px */
  left: -12px;
  /* 向下偏移自身高度 */
  top: 5px;
}
.pub-form-mod .scroll-table .FinancialData-info .table-head {
  height: unset !important;
  background: #17365d !important;
  color: #fff;
  font-weight: bold;
}
.pub-form-mod .scroll-table .FinancialData-info .table-head > span {
  border-bottom: 1px solid #efefef;
  padding: 5px;
  min-height: 30px;
}
.pub-form-mod table.complex-header-table {
  table-layout: fixed;
  width: 100%;
}
.pub-form-mod table.complex-header-table th, .pub-form-mod table.complex-header-table td {
  vertical-align: middle;
  line-height: 36px;
}
.pub-form-mod table.complex-header-table th.text-center, .pub-form-mod table.complex-header-table td.text-center {
  text-align: center;
}
.pub-form-mod table.complex-header-table th.weight, .pub-form-mod table.complex-header-table td.weight {
  font-weight: bold;
}
.pub-form-mod table.complex-header-table thead th {
  background-color: #17365d;
  color: #fff;
  border: 1px solid #fff;
  font-weight: 800;
  vertical-align: middle;
}
.pub-form-mod table.complex-header-table tbody tr:nth-of-type(odd) {
  background-color: #f1f3fa;
}
.pub-form-mod .li-35 {
  height: 35px !important;
  min-height: 35px !important;
}
.pub-form-mod .li-35 select {
  height: 30px !important;
  min-height: 30px !important;
}
.pub-form-mod .capital-info li {
  height: 50px;
}
.pub-form-mod .capital-info li span:nth-of-type(1) {
  width: 70px;
}
.pub-form-mod .capital-info li span:nth-of-type(2) {
  width: 170px;
}
.pub-form-mod .capital-info li span:nth-of-type(4), .pub-form-mod .capital-info li span:nth-of-type(5) {
  flex: 1;
}
.pub-form-mod .capital-info li span:nth-of-type(3) {
  width: 360px;
}
.pub-form-mod .capital-info li span:nth-of-type(6) {
  width: 260px;
}
.pub-form-mod .capital-info li span:nth-of-type(7) {
  width: 122px;
}
.pub-form-mod .capital-info li span .inpt-date,
.pub-form-mod .capital-info li span .select-filter {
  margin-right: 3px;
}
.pub-form-mod .capital-info-pch li {
  height: 50px;
}
.pub-form-mod .capital-info-pch li span {
  flex: 1;
}
.pub-form-mod .capital-info-pch li span:last-of-type {
  width: 122px;
  flex: unset;
}
.pub-form-mod .capital-info-pch li span .inpt-date,
.pub-form-mod .capital-info-pch li span .select-filter {
  margin-right: 3px;
}
.pub-form-mod .ownerstracture-info-pch li {
  height: 50px;
}
.pub-form-mod .ownerstracture-info-pch li span {
  flex: 1;
}
.pub-form-mod .ownerstracture-info-pch li span.w280 {
  width: 280px;
  flex: unset;
}
.pub-form-mod .ownerstracture-info-pch li span.w150 {
  width: 150px;
  flex: unset;
}
.pub-form-mod .ownerstracture-info-pch li span:last-of-type {
  width: 122px;
  flex: unset;
}
.pub-form-mod .ownerstracture-info-pch li span .inpt-date,
.pub-form-mod .ownerstracture-info-pch li span .select-filter {
  margin-right: 3px;
}
.pub-form-mod .negative-table li {
  height: 50px;
}
.pub-form-mod .negative-table li span:nth-of-type(1) {
  width: 300px;
}
.pub-form-mod .charges-info li span:nth-of-type(1) {
  width: 200px;
}
.pub-form-mod .charges-info li span:nth-of-type(2) {
  width: 220px;
}
.pub-form-mod .charges-info li span:nth-of-type(3), .pub-form-mod .charges-info li span:nth-of-type(4), .pub-form-mod .charges-info li span:nth-of-type(5), .pub-form-mod .charges-info li span:nth-of-type(6) {
  flex: 1;
}
.pub-form-mod .charges-info li span:nth-of-type(7) {
  width: 150px;
}
.pub-form-mod .ownership-info li {
  min-height: 40px;
  white-space: pre-wrap;
}
.pub-form-mod .ownership-info li span:nth-of-type(1), .pub-form-mod .ownership-info li span:nth-of-type(2) {
  width: 150px;
}
.pub-form-mod .ownership-info li span:nth-of-type(3), .pub-form-mod .ownership-info li span:nth-of-type(4), .pub-form-mod .ownership-info li span:nth-of-type(5), .pub-form-mod .ownership-info li span:nth-of-type(6), .pub-form-mod .ownership-info li span:nth-of-type(7), .pub-form-mod .ownership-info li span:nth-of-type(8) {
  flex: 1;
}
.pub-form-mod .ownership-info li span:nth-of-type(9) {
  width: 145px;
}
.pub-form-mod .ownership-info li.item span {
  padding: 10px;
}
.pub-form-mod .ownership-info li.item.total {
  font-weight: 800;
}
.pub-form-mod .ownership-info li.item.total .operate {
  font-weight: 400;
}
.pub-form-mod .ownership-info-pch li {
  min-height: 40px;
}
.pub-form-mod .ownership-info-pch li span {
  flex: 1;
}
.pub-form-mod .ownership-info-pch li span:nth-of-type(1), .pub-form-mod .ownership-info-pch li span:nth-of-type(2) {
  width: 150px;
}
.pub-form-mod .ownership-info-pch li span:last-of-type {
  width: 155px;
  flex: unset;
}
.pub-form-mod .ownership-info-pch li.item {
  white-space: pre-wrap;
}
.pub-form-mod .ownership-info-pch li.item span {
  padding: 10px;
}
.pub-form-mod .ownership-info-pch li.item.total {
  font-weight: 800;
}
.pub-form-mod .ownership-info-pch li.item.total .operate {
  font-weight: 400;
}
.pub-form-mod .unsetflex {
  flex: unset !important;
}
.pub-form-mod .bankinformation-info li span:nth-of-type(1) {
  width: 300px;
}
.pub-form-mod .bankinformation-info li span:nth-of-type(2) {
  width: 350px;
}
.pub-form-mod .bankinformation-info li span:nth-of-type(3) {
  flex: 1;
}
.pub-form-mod .bankinformation-info li span:last-of-type {
  width: 102px;
}
.pub-form-mod .bankinformation-info li span .area {
  width: 80px;
}
.pub-form-mod .bankinformation-info li textarea {
  height: 40px;
}
.pub-form-mod .summaryFinding-info li span:nth-of-type(1) {
  width: 300px;
}
.pub-form-mod .summaryFinding-info li span:nth-of-type(2) {
  flex: 1;
}
.pub-form-mod .summaryFinding-info li span:last-of-type {
  width: 102px;
}
.pub-form-mod .companySearch-info li span.w-180 {
  width: 180px;
}
.pub-form-mod .companySearch-info li span.w-150 {
  width: 150px;
}
.pub-form-mod .companySearch-info li span:nth-of-type(4) {
  width: 250px;
}
.pub-form-mod .companySearch-info li span.max-width-flex {
  flex: 1;
  max-width: 210px;
}
.pub-form-mod .companySearch-info li span.max-width-flex2 {
  flex: 1;
  max-width: 240px;
}
.pub-form-mod .companySearch-info li span.max-width-flex2-column {
  flex-direction: column;
}
.pub-form-mod .companySearch-info li span.min-width-flex {
  flex: 1;
  min-width: 210px;
}
.pub-form-mod .companySearch-info li span.operate {
  width: 125px;
}
.pub-form-mod .companySearch-info li span.operate .isCheckedPHK {
  color: #003865;
  font-weight: bold;
}
.pub-form-mod .companySearch-info li span.operate2 {
  width: 70px;
  padding: 0px;
}
.pub-form-mod .companySearch-info li span.operate2 .icon {
  margin: 0px;
}
.pub-form-mod .companySearch-info li span.db-date {
  width: 300px;
}
.pub-form-mod .companySearch-info li span.db-date2 {
  width: 250px;
}
.pub-form-mod .companySearch-info li span .area {
  width: 80px;
}
.pub-form-mod .companySearch-info li span .inpt-date.inpt-date-select:first-of-type {
  margin-right: 5px;
}
.pub-form-mod .companySearch-info li span.highlight-box .highlight-checkbox {
  margin-left: 5px;
}
.pub-form-mod .companySearch-info2 li span.w-150 {
  width: 150px;
}
.pub-form-mod .companySearch-info2 li span.min-width-flex {
  flex: 1;
  min-width: 210px;
}
.pub-form-mod .companySearch-info2 li span.max-width-flex {
  flex: 1;
  max-width: 250px;
}
.pub-form-mod .companySearch-info2 li span.max-width-flex2 {
  flex: 1;
  max-width: 240px;
}
.pub-form-mod .companySearch-info2 li span.max-width-flex2-column {
  flex-direction: column;
}
.pub-form-mod .companySearch-info2 li span.db-date {
  width: 300px;
}
.pub-form-mod .companySearch-info2 li span.operate {
  width: 125px;
}
.pub-form-mod .companySearch-info2 li span.operate .isCheckedPHK {
  color: #003865;
  font-weight: bold;
}
.pub-form-mod .companySearch-info2 li span.operate2 {
  width: 70px;
  padding: 0px;
}
.pub-form-mod .companySearch-info2 li span.operate2 .icon {
  margin: 0px;
}
.pub-form-mod .companySearch-info2 li span.db-date2 {
  width: 250px;
}
.pub-form-mod .companySearch-info2 li span .inpt-date.inpt-date-select:first-of-type {
  margin-right: 5px;
}
.pub-form-mod .companySearch-info3 li span.w-180 {
  width: 180px;
}
.pub-form-mod .companySearch-info3 li span.w-150 {
  width: 150px;
}
.pub-form-mod .companySearch-info3 li span.db-date {
  width: 300px;
}
.pub-form-mod .companySearch-info3 li span .inpt-date.inpt-date-select:first-of-type {
  margin-right: 5px;
}
.pub-form-mod .companySearch-info3 li span.max-width-flex {
  flex: 1;
  max-width: 210px;
}
.pub-form-mod .companySearch-info3 li span.max-min-width-flex {
  flex: 1;
  min-width: 210px;
  max-width: 260px;
}
.pub-form-mod .companySearch-info3 li span.min-width-flex {
  flex: 1;
  min-width: 210px;
}
.pub-form-mod .companySearch-info3 li span.operate {
  width: 102px;
}
.pub-form-mod .companySearch-info4 li span.w-150 {
  width: 150px;
}
.pub-form-mod .companySearch-info4 li span.min-width-flex {
  flex: 1;
  min-width: 250px;
}
.pub-form-mod .companySearch-info4 li span.max-width-flex {
  flex: 1;
  max-width: 210px;
}
.pub-form-mod .companySearch-info4 li span.max-min-width-flex {
  flex: 1;
  min-width: 210px;
  max-width: 260px;
}
.pub-form-mod .companySearch-info4 li span.db-date {
  width: 300px;
}
.pub-form-mod .companySearch-info4 li span.operate {
  width: 125px;
}
.pub-form-mod .companySearch-info4 li span.operate .isCheckedPHK {
  color: #003865;
  font-weight: bold;
}
.pub-form-mod .companySearch-info4 li span .inpt-date.inpt-date-select:first-of-type {
  margin-right: 5px;
}
.pub-form-mod .directorandshareholding-info li > span:nth-of-type(1) {
  width: 200px;
}
.pub-form-mod .directorandshareholding-info li > span:nth-of-type(2), .pub-form-mod .directorandshareholding-info li > span:nth-of-type(8), .pub-form-mod .directorandshareholding-info li > span:nth-of-type(9) {
  flex: 1;
  min-width: 100px;
}
.pub-form-mod .directorandshareholding-info li > span:nth-of-type(3), .pub-form-mod .directorandshareholding-info li > span:nth-of-type(4), .pub-form-mod .directorandshareholding-info li > span:nth-of-type(5), .pub-form-mod .directorandshareholding-info li > span:nth-of-type(6), .pub-form-mod .directorandshareholding-info li > span:nth-of-type(7) {
  width: 150px;
}
.pub-form-mod .directorandshareholding-info li > span:last-of-type {
  flex: none;
  width: 125px !important;
}
.pub-form-mod .directorandshareholding-inf1o li > span:nth-of-type(1) {
  width: 200px;
}
.pub-form-mod .directorandshareholding-inf1o li > span:nth-of-type(2), .pub-form-mod .directorandshareholding-inf1o li > span:nth-of-type(8) {
  flex: 1;
  min-width: 150px;
}
.pub-form-mod .directorandshareholding-inf1o li > span:nth-of-type(3), .pub-form-mod .directorandshareholding-inf1o li > span:nth-of-type(4), .pub-form-mod .directorandshareholding-inf1o li > span:nth-of-type(5), .pub-form-mod .directorandshareholding-inf1o li > span:nth-of-type(6), .pub-form-mod .directorandshareholding-inf1o li > span:nth-of-type(7) {
  width: 150px;
}
.pub-form-mod .directorandshareholding-inf1o li > span:last-of-type {
  width: 125px;
}
.pub-form-mod .Marriage-Search-Table-1 li span:nth-of-type(1) {
  width: 200px;
}
.pub-form-mod .Marriage-Search-Table-1 li span:nth-of-type(2) {
  flex: 1;
  min-width: 300px;
}
.pub-form-mod .Marriage-Search-Table-1 li span:last-of-type {
  width: 102px;
}
.pub-form-mod .Marriage-Search-Table-2 li span:nth-of-type(1) {
  width: 200px;
}
.pub-form-mod .Marriage-Search-Table-2 li span:nth-of-type(2), .pub-form-mod .Marriage-Search-Table-2 li span:nth-of-type(3) {
  flex: 1;
  min-width: 200px;
}
.pub-form-mod .Marriage-Search-Table-2 li span:last-of-type {
  width: 102px;
}
.pub-form-mod .financial-ratio-analysis {
  flex: 1;
}
.pub-form-mod .financial-ratio-analysis .financial-ratio-analysis-body {
  height: 40px;
  line-height: 40px;
}
.pub-form-mod .financial-ratio-analysis li {
  display: flex;
}
.pub-form-mod .financial-ratio-analysis li span {
  padding: 0px;
}
.pub-form-mod .financial-ratio-analysis li:first-child {
  height: auto;
}
.pub-form-mod .financial-ratio-analysis li .span-item {
  flex: 1;
}
.pub-form-mod .financial-ratio-analysis li .span-item.left-title {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pub-form-mod .financial-ratio-analysis li .span-item.left-title .left-title-tps {
  height: 30px;
  width: 100%;
  border-bottom: 1px solid #efefef;
  padding: 5px 10px;
}
.pub-form-mod .financial-ratio-analysis li .span-item.financial-ratio-analysis-item {
  display: flex;
  flex-direction: column;
}
.pub-form-mod .financial-ratio-analysis li .span-item.financial-ratio-analysis-item .financial-title {
  width: 100%;
  text-align: center;
  border-bottom: 1px solid #efefef;
  padding: 5px 10px;
  height: 30px;
}
.pub-form-mod .financial-ratio-analysis li .span-item.financial-ratio-analysis-item .financial-content {
  width: 100%;
  text-align: right;
  display: flex;
  height: 30px;
}
.pub-form-mod .financial-ratio-analysis li .span-item.financial-ratio-analysis-item .financial-content div {
  flex: 1;
  padding: 5px 10px;
}
.pub-form-mod .financial-ratio-analysis li .span-item.financial-ratio-analysis-item .financial-content div:first-child {
  border-right: 1px solid #efefef;
}
.pub-form-mod .financial-ratio-analysis li .span-item b {
  padding: 5px 10px;
}
.pub-form-mod .financial-ratio-analysis li .span-item.financial-ratio-analysis-item-content {
  display: flex;
}
.pub-form-mod .financial-ratio-analysis li .span-item.financial-ratio-analysis-item-content div {
  flex: 1;
  text-align: right;
  padding: 5px 10px;
}
.pub-form-mod .personal-details-info .li-35 .employment3 {
  justify-content: start;
  flex-direction: row;
  align-items: center;
}
.pub-form-mod .personal-details-info li span:nth-of-type(1) {
  width: 250px;
}
.pub-form-mod .personal-details-info li span:nth-of-type(2) {
  flex: 1;
}
.pub-form-mod .personal-details-info li span:nth-of-type(3) {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
}
.pub-form-mod .personal-details-info li span:nth-of-type(4) {
  width: 120px;
}
.pub-form-mod .credit-check .li-35 .employment3 {
  justify-content: start;
  flex-direction: row;
  align-items: center;
}
.pub-form-mod .credit-check li span:nth-of-type(1) {
  width: 250px;
}
.pub-form-mod .credit-check li span:nth-of-type(2) {
  flex: 1;
}
.pub-form-mod .credit-check li span:nth-of-type(2).column {
  flex-direction: column;
}
.pub-form-mod .credit-check li span:nth-of-type(2) .input-box-panel {
  display: flex;
  width: 100%;
}
.pub-form-mod .credit-check li span:nth-of-type(2) .input-box-panel:nth-of-type(2) {
  margin-top: 5px;
}
.pub-form-mod .credit-check li span:nth-of-type(2) .input-box-div {
  width: 50%;
}
.pub-form-mod .credit-check li span:nth-of-type(3) {
  width: 100px;
}
.pub-form-mod .participants-table {
  overflow: unset;
}
.pub-form-mod .participants-table li span:nth-of-type(1) {
  width: 170px;
}
.pub-form-mod .participants-table li span:nth-of-type(2), .pub-form-mod .participants-table li span:nth-of-type(3) {
  flex: 1;
}
.pub-form-mod .participants-table li span:nth-of-type(4) {
  width: 100px;
}
.pub-form-mod .directorship-shareholding-box .key-high,
.pub-form-mod .directorship-shareholding-box .key-high-modal {
  color: unset;
  background: rgb(253, 233, 217) !important;
}
.pub-form-mod .general-information-site li span:nth-of-type(1) {
  width: 250px;
}
.pub-form-mod .general-information-site li span:nth-of-type(2) {
  flex: 1;
  display: flex;
}
.pub-form-mod .general-information-site li span:nth-of-type(2) > div {
  flex: 3;
}
.pub-form-mod .general-information-site li span:nth-of-type(2) > span {
  flex: 1;
}
.pub-form-mod .general-information-site li span:nth-of-type(2) > input {
  flex: 2;
}
.pub-form-mod .general-information-site li span:nth-of-type(3) {
  width: 100px;
}
.pub-form-mod .general-information-site li .gener-time-137 {
  flex-direction: column;
}
.pub-form-mod .general-information-site li .gener-time-137 > div {
  display: flex;
  width: 100%;
}
.pub-form-mod .general-information-site li .gener-time-137 > div > div {
  flex: 3;
}
.pub-form-mod .general-information-site li .gener-time-137 > div > span {
  flex: 1;
}
.pub-form-mod .general-information-site li .gener-time-137 > div > input {
  flex: 2;
}
.pub-form-mod .customer-flow-137 li span:nth-of-type(1) {
  width: 180px;
}
.pub-form-mod .customer-flow-137 li span:nth-of-type(2) {
  flex: 1;
  display: flex;
}
.pub-form-mod .customer-flow-137 li span:nth-of-type(2) > div {
  flex: 3;
}
.pub-form-mod .customer-flow-137 li span:nth-of-type(2) > span {
  flex: 1;
}
.pub-form-mod .customer-flow-137 li span:nth-of-type(2) > input {
  flex: 2;
}
.pub-form-mod .customer-flow-137 li span:nth-of-type(3) {
  width: 100px;
}
.pub-form-mod .customer-flow-137 li .gener-time-137 {
  flex-direction: column;
}
.pub-form-mod .customer-flow-137 li .gener-time-137 > div {
  display: flex;
  width: 100%;
}
.pub-form-mod .customer-flow-137 li .gener-time-137 > div > div {
  flex: 3;
}
.pub-form-mod .customer-flow-137 li .gener-time-137 > div > span {
  flex: 1;
}
.pub-form-mod .customer-flow-137 li .gener-time-137 > div > input {
  flex: 2;
}
.pub-form-mod .verification-info li span:nth-of-type(1) {
  width: 180px;
}
.pub-form-mod .verification-info li span:nth-of-type(2), .pub-form-mod .verification-info li span:nth-of-type(3), .pub-form-mod .verification-info li span:nth-of-type(4) {
  flex: 1;
}
.pub-form-mod .verification-info li span:nth-of-type(5) {
  width: 180px;
}
.pub-form-mod .verification-hr-info li span.width-60 {
  width: 60px;
}
.pub-form-mod .verification-hr-info li span.width-180 {
  width: 180px;
}
.pub-form-mod .verification-hr-info li span.width-flex {
  flex: 1;
}
.pub-form-mod .verification-hr-info li span.width-180 {
  width: 180px;
}
.pub-form-mod .summary-info li span:nth-of-type(1) {
  width: 250px;
}
.pub-form-mod .summary-info li span:nth-of-type(2), .pub-form-mod .summary-info li span:nth-of-type(3) {
  flex: 1;
  min-width: 200px;
}
.pub-form-mod .summary-info li span:nth-of-type(4) {
  width: 150px;
}
.pub-form-mod .summary-info li span:nth-of-type(5) {
  width: 80px;
}
.pub-form-mod .registered-charges li span:nth-of-type(1) {
  width: 250px;
}
.pub-form-mod .registered-charges li span:nth-of-type(2) {
  flex: 1;
  min-width: 200px;
}
.pub-form-mod .registered-charges li span:nth-of-type(3) {
  width: 100px;
}
.pub-form-mod .education-qualifications .li-35 .employment3 {
  justify-content: start;
  flex-direction: row;
  align-items: center;
}
.pub-form-mod .education-qualifications li span.ipt-span {
  flex: 1;
}
.pub-form-mod .education-qualifications li span:nth-of-type(3) {
  width: 300px;
  display: flex;
  flex-direction: column;
  align-items: baseline;
  justify-content: center;
}
.pub-form-mod .education-qualifications li span:nth-of-type(3) .select-drop {
  width: 250px !important;
}
.pub-form-mod .education-qualifications li span:nth-of-type(4) {
  width: 130px;
}
.pub-form-mod .professional-background .li-35 .employment3 {
  justify-content: start;
  flex-direction: row;
  align-items: center;
}
.pub-form-mod .professional-background li span:nth-of-type(1) {
  width: 100px;
}
.pub-form-mod .professional-background li span:nth-of-type(2), .pub-form-mod .professional-background li span:nth-of-type(3) {
  flex: 1;
}
.pub-form-mod .professional-background li span:nth-of-type(4) {
  width: 400px;
}
.pub-form-mod .professional-background li span:nth-of-type(5) {
  width: 280px;
  display: flex;
  align-items: baseline;
  justify-content: center;
}
.pub-form-mod .professional-background li span:nth-of-type(5) .select-drop {
  width: 250px !important;
}
.pub-form-mod .professional-background li span:last-of-type {
  width: 130px;
}
.pub-form-mod .professional-background li span.ipt-span-role {
  display: flex;
  flex-direction: column;
}
.pub-form-mod .professional-background li span.ipt-span-role .role-div {
  width: 100%;
  display: flex;
  align-items: center;
}
.pub-form-mod .professional-background li span.ipt-span-role .role-div:not(:first-child) {
  margin-top: 5px;
}
.pub-form-mod .result-details {
  flex: 1;
}
.pub-form-mod .result-details li {
  display: flex;
}
.pub-form-mod .result-details li .spanRight {
  display: flex;
  flex-direction: row-reverse;
}
.pub-form-mod .result-details li .span1 {
  width: 250px;
}
.pub-form-mod .result-details li .span2 {
  flex: 1;
  min-width: 200px;
}
.pub-form-mod .result-details li .span2 .textarea-box span {
  justify-content: center;
}
.pub-form-mod .result-details li .span2 .columnDiv {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.pub-form-mod .result-details li .span2 .columnDiv .sub-item {
  margin-bottom: 10px;
}
.pub-form-mod .result-details li .span2 .columnDiv .sub-item:nth-of-type(1) {
  margin-top: 5px;
}
.pub-form-mod .result-details li .span2 .columnDiv .subs {
  width: 100%;
  display: flex;
  align-items: center;
}
.pub-form-mod .result-details li .span2 .columnDiv .subs :first-child:not(.w100):not(:only-child) {
  min-width: 300px;
  max-width: 25%;
}
.pub-form-mod .result-details li .span2 .columnDiv .subs .row-100 {
  width: 100%;
}
.pub-form-mod .result-details li .span2 .columnDiv .subs :not(:first-child):not(:only-child) {
  margin-left: 10px;
}
.pub-form-mod .result-details li .span2 .columnDiv .subs .input-select-box .inpt-select select {
  margin-left: 0 !important;
}
.pub-form-mod .result-details li .span2 .columnDiv .subs .input-select-box .inpt-select input {
  max-width: unset;
  min-width: unset;
}
.pub-form-mod .result-details li .span2 .columnDiv .subs .div-select-filter .select-dropdown-list {
  overflow-x: hidden;
  margin-left: 0px !important;
}
.pub-form-mod .result-details li .span2 .columnDiv .subs .div-select-filter .select-dropdown-list :not(:first-child) {
  margin-left: 0px;
}
.pub-form-mod .result-details li .span2 .columnDiv .w100 {
  width: 100%;
}
.pub-form-mod .result-details li .span2 .columnDiv2 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.pub-form-mod .result-details li .span2 .columnDiv2 .sub-item {
  margin-bottom: 10px;
}
.pub-form-mod .result-details li .span2 .columnDiv2 .sub-item:nth-of-type(1) {
  margin-top: 5px;
}
.pub-form-mod .result-details li .span2 .columnDiv2 .subs {
  width: 100%;
  display: flex;
  align-items: center;
}
.pub-form-mod .result-details li .span2 .columnDiv2 .subs div {
  min-width: 290px;
  max-width: 25%;
}
.pub-form-mod .result-details li .span2 .columnDiv2 .subs :first-child {
  margin-right: 10px;
}
.pub-form-mod .result-details li .span2 .columnDiv2 .textarea-box,
.pub-form-mod .result-details li .span2 .columnDiv2 .subs-ipt {
  margin-top: 10px;
}
.pub-form-mod .result-details li .span2 .columnDiv1 {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.pub-form-mod .result-details li .span2 .columnDiv1 .row-100 {
  margin-bottom: 10px;
}
.pub-form-mod .result-details li .span3 {
  width: 160px;
}
.pub-form-mod .result-right li:not(:first-child) {
  background: #FFFFFF !important;
}
.pub-form-mod .result-right li:not(:first-child) .span1, .pub-form-mod .result-right li:not(:first-child) .span2 {
  border-left: 1px solid transparent !important;
}
.pub-form-mod .Ownership-chart {
  padding: 15px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  font-family: "微软雅黑", sans-serif;
  font-weight: 400;
  font-style: normal;
  font-size: 12px;
  color: #999999;
  text-align: center;
  line-height: 20px;
}
.pub-form-mod .Ownership-chart .tip {
  margin-top: 5px;
}
.pub-form-mod .key-findings {
  flex: 1;
}
.pub-form-mod .key-findings li {
  display: flex;
}
.pub-form-mod .key-findings li .span textarea {
  height: 100%;
}
.pub-form-mod .key-findings li .sp-02 {
  width: 15%;
}
.pub-form-mod .key-findings li .sp-01 {
  flex: 1;
}
.pub-form-mod .key-findings li textarea {
  height: 100%;
}
.pub-form-mod .key-findings li .columnDiv {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
}
.pub-form-mod .key-findings li .columnDiv .sub-item {
  width: 100%;
  display: flex;
  margin-top: 10px;
}
.pub-form-mod .key-findings-cl {
  flex: 1;
}
.pub-form-mod .key-findings-cl li {
  display: flex;
}
.pub-form-mod .key-findings-cl li .sp-02 {
  width: 300px;
}
.pub-form-mod .key-findings-cl li .sp-01 {
  flex: 1;
}
.pub-form-mod .key-findings-cl li .sp-01 textarea {
  min-height: 90px !important;
}
.pub-form-mod .key-findings-cl li .columnDiv {
  height: 100%;
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.pub-form-mod .key-findings-cl li .columnDiv .sub-item {
  width: 100%;
  display: flex;
  margin-top: 10px;
}
.pub-form-mod .key-findings-cl li .columnDiv .sub-item .inpt-date:nth-of-type(2) {
  margin-left: 10px !important;
}
.pub-form-mod .verification-score .left {
  display: flex;
  flex-direction: column;
  width: 200px;
  flex: unset !important;
}
.pub-form-mod .verification-score .left li {
  width: 200px;
}
.pub-form-mod .verification-score .left li:nth-of-type(2) {
  flex: 1;
  align-items: center;
}
.pub-form-mod .verification-score .verification-info.right {
  flex: 1;
}
.pub-form-mod .verification-score .verification-info.right li span:nth-of-type(1) {
  width: 250px;
}
.pub-form-mod .verification-score .verification-info.right li span:nth-of-type(2) {
  flex: 1;
}
.pub-form-mod .verification-score .verification-info.right li span:nth-of-type(3) {
  width: 160px;
  flex: none;
}
.pub-form-mod .general-info-203 {
  flex: 1;
}
.pub-form-mod .general-info-203 span.span2 {
  flex: 1;
  width: auto;
}
.pub-form-mod .general-info-203 span.span3 {
  width: 240px;
}
.pub-form-mod .general-info-203 span.span4 {
  width: 100px;
  flex-direction: row;
}
.pub-form-mod .related-companies-branches {
  flex: 1;
}
.pub-form-mod .related-companies-branches textarea {
  height: 40px;
}
.pub-form-mod .related-companies-branches .li-border {
  border-bottom: 1px dashed #cccccc;
  padding-bottom: 10px;
}
.pub-form-mod .related-companies-branches .li-border:nth-last-child(1) {
  padding-bottom: 0;
}
.pub-form-mod .related-companies-branches li {
  display: flex;
  margin-top: 10px;
}
.pub-form-mod .related-companies-branches li:nth-child(1) {
  margin: 0;
  height: 35px;
}
.pub-form-mod .related-companies-branches li:nth-child(1) span {
  border-left: 1px solid #efefef;
  padding: 0 5px;
}
.pub-form-mod .related-companies-branches li .source-column {
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
  flex: 1;
}
.pub-form-mod .related-companies-branches li span {
  border-left: 1px solid transparent;
  display: flex;
  width: auto;
  display: flex;
  align-items: center;
  padding: 0 5px;
  flex: 1;
}
.pub-form-mod .related-companies-branches li span:nth-child(1) {
  border-left: 0;
  line-height: 15px;
}
.pub-form-mod .related-companies-branches li:first-child {
  background: #17365d;
  color: #fff;
  font-weight: bold;
  border: none;
}
.pub-form-mod .related-companies-branches li:last-child {
  border: none;
}
.pub-form-mod .pub-form-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pub-form-mod .pub-form-flex button {
  font-size: 13px;
}
.pub-form-mod .property-ownership {
  margin-bottom: 10px;
  flex: 1;
}
.pub-form-mod .property-ownership textarea {
  height: 40px;
}
.pub-form-mod .property-ownership .select-filter {
  width: 200px;
}
.pub-form-mod .property-ownership li {
  display: flex;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.pub-form-mod .property-ownership li:nth-child(1) {
  height: 35px;
}
.pub-form-mod .property-ownership li:nth-child(1) span {
  border-left: 1px solid #efefef;
  justify-content: flex-start;
}
.pub-form-mod .property-ownership li span {
  border-left: 1px solid transparent;
  display: flex;
  width: auto;
  padding: 0 5px;
  display: flex;
  align-items: center;
  justify-content: flex-end;
}
.pub-form-mod .property-ownership li span:nth-child(1) {
  width: 280px;
}
.pub-form-mod .property-ownership li span:nth-child(2) {
  flex: 1;
}
.pub-form-mod .property-ownership li:first-child {
  background: #17365d;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 0;
  margin-bottom: 10px;
}
.pub-form-mod .property-ownership li:first-child span {
  padding: 3px 5px;
}
.pub-form-mod .property-ownership li:last-child {
  border: none;
  padding: 0;
  margin: 0;
}
.pub-form-mod .key-members {
  flex: 1;
}
.pub-form-mod .key-members textarea {
  height: 40px;
}
.pub-form-mod .key-members li {
  display: flex;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.pub-form-mod .key-members li:nth-child(1) {
  height: 35px;
}
.pub-form-mod .key-members li:nth-child(1) span {
  border-left: 1px solid #efefef;
}
.pub-form-mod .key-members li span {
  border-left: 1px solid transparent;
  display: flex;
  width: auto;
  padding: 0 5px;
  display: flex;
  align-items: center;
}
.pub-form-mod .key-members li span:nth-child(1) {
  width: 280px;
}
.pub-form-mod .key-members li span:nth-child(2) {
  flex: 1;
  min-width: 300px;
}
.pub-form-mod .key-members li span:nth-child(3) {
  width: 320px;
}
.pub-form-mod .key-members li span.select-span {
  width: 200px;
}
.pub-form-mod .key-members li span.max-width-500 {
  flex: 1;
  max-width: 500px;
  width: auto;
}
.pub-form-mod .key-members li span:nth-child(2) > input,
.pub-form-mod .key-members li span:nth-child(2) .inpt-date, .pub-form-mod .key-members li span:nth-child(4) > input,
.pub-form-mod .key-members li span:nth-child(4) .inpt-date, .pub-form-mod .key-members li span:nth-child(1) > input,
.pub-form-mod .key-members li span:nth-child(1) .inpt-date, .pub-form-mod .key-members li span:nth-child(3) > input,
.pub-form-mod .key-members li span:nth-child(3) .inpt-date {
  margin: 0 5px;
}
.pub-form-mod .key-members li span:nth-child(2) > input:last-child,
.pub-form-mod .key-members li span:nth-child(2) .inpt-date:last-child, .pub-form-mod .key-members li span:nth-child(4) > input:last-child,
.pub-form-mod .key-members li span:nth-child(4) .inpt-date:last-child, .pub-form-mod .key-members li span:nth-child(1) > input:last-child,
.pub-form-mod .key-members li span:nth-child(1) .inpt-date:last-child, .pub-form-mod .key-members li span:nth-child(3) > input:last-child,
.pub-form-mod .key-members li span:nth-child(3) .inpt-date:last-child {
  margin: 0;
}
.pub-form-mod .key-members li span.opt {
  width: 102px;
}
.pub-form-mod .key-members li:first-child {
  background: #17365d;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 0;
  margin-bottom: 10px;
}
.pub-form-mod .key-members li:first-child span {
  padding: 3px 5px;
}
.pub-form-mod .key-members li:last-child {
  border: none;
  padding: 0;
  margin: 0;
}
.pub-form-mod .key-members .inpt-date select:disabled {
  color: transparent !important;
}
.pub-form-mod .key-members .pub-form-title-select {
  margin-right: 0 !important;
}
.pub-form-mod .key-members .text-role.empty {
  position: relative;
  flex: 1;
  overflow: initial !important;
}
.pub-form-mod .key-members .text-role.empty select,
.pub-form-mod .key-members .text-role.empty input {
  border: 1px solid #f64747;
  background-color: #fffaf9;
  padding-right: 30px;
}
.pub-form-mod .key-members-max li span:nth-child(3) {
  width: 500px;
}
.pub-form-mod .key-members-pch {
  flex: 1;
}
.pub-form-mod .key-members-pch textarea {
  height: 40px;
}
.pub-form-mod .key-members-pch li {
  display: flex;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.pub-form-mod .key-members-pch li:nth-child(1) {
  height: 35px;
}
.pub-form-mod .key-members-pch li:nth-child(1) span {
  border-left: 1px solid #efefef;
}
.pub-form-mod .key-members-pch li span {
  border-left: 1px solid transparent;
  display: flex;
  width: auto;
  padding: 0 5px;
  display: flex;
  align-items: center;
  flex: 1;
}
.pub-form-mod .key-members-pch li span.opt {
  width: 102px;
  flex: unset;
}
.pub-form-mod .key-members-pch .inpt-date select:disabled {
  color: transparent !important;
}
.pub-form-mod .key-members-pch .pub-form-title-select {
  margin-right: 0 !important;
}
.pub-form-mod .key-members-pch .text-role.empty {
  position: relative;
  flex: 1;
  overflow: initial !important;
}
.pub-form-mod .key-members-pch .text-role.empty select,
.pub-form-mod .key-members-pch .text-role.empty input {
  border: 1px solid #f64747;
  background-color: #fffaf9;
  padding-right: 30px;
}
.pub-form-mod .register-of-director {
  flex: 1;
}
.pub-form-mod .register-of-director textarea {
  height: 40px;
}
.pub-form-mod .register-of-director li {
  display: flex;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.pub-form-mod .register-of-director li:nth-child(1) {
  height: 35px;
}
.pub-form-mod .register-of-director li:nth-child(1) span {
  border-left: 1px solid #efefef;
}
.pub-form-mod .register-of-director li span {
  border-left: 1px solid transparent;
  display: flex;
  width: auto;
  padding: 0 5px;
  display: flex;
  align-items: center;
}
.pub-form-mod .register-of-director li span:nth-child(1) {
  width: 400px;
}
.pub-form-mod .register-of-director li span:nth-child(2) {
  flex: 1;
}
.pub-form-mod .register-of-director li span:nth-child(3) {
  width: 400px;
}
.pub-form-mod .register-of-director li span:nth-child(4) {
  width: 200px;
}
.pub-form-mod .register-of-director li span:nth-child(2) > input,
.pub-form-mod .register-of-director li span:nth-child(2) .inpt-date, .pub-form-mod .register-of-director li span:nth-child(4) > input,
.pub-form-mod .register-of-director li span:nth-child(4) .inpt-date, .pub-form-mod .register-of-director li span:nth-child(1) > input,
.pub-form-mod .register-of-director li span:nth-child(1) .inpt-date, .pub-form-mod .register-of-director li span:nth-child(3) > input,
.pub-form-mod .register-of-director li span:nth-child(3) .inpt-date {
  margin: 0 5px;
}
.pub-form-mod .register-of-director li span:nth-child(2) > input:last-child,
.pub-form-mod .register-of-director li span:nth-child(2) .inpt-date:last-child, .pub-form-mod .register-of-director li span:nth-child(4) > input:last-child,
.pub-form-mod .register-of-director li span:nth-child(4) .inpt-date:last-child, .pub-form-mod .register-of-director li span:nth-child(1) > input:last-child,
.pub-form-mod .register-of-director li span:nth-child(1) .inpt-date:last-child, .pub-form-mod .register-of-director li span:nth-child(3) > input:last-child,
.pub-form-mod .register-of-director li span:nth-child(3) .inpt-date:last-child {
  margin: 0;
}
.pub-form-mod .register-of-director li span:nth-child(5) {
  width: 102px;
}
.pub-form-mod .register-of-director li:first-child {
  background: #17365d;
  color: #fff;
  font-weight: bold;
  border: none;
  padding: 0;
  margin-bottom: 10px;
}
.pub-form-mod .register-of-director li:first-child span {
  padding: 3px 5px;
}
.pub-form-mod .register-of-director li:last-child {
  border: none;
  padding: 0;
  margin: 0;
}
.pub-form-mod .register-of-director .inpt-date select:disabled {
  color: transparent !important;
}
.pub-form-mod .register-of-director .pub-form-title-select {
  margin-right: 0 !important;
}
.pub-form-mod .register-of-director .text-role.empty {
  position: relative;
  flex: 1;
  overflow: initial !important;
}
.pub-form-mod .register-of-director .text-role.empty select,
.pub-form-mod .register-of-director .text-role.empty input {
  border: 1px solid #f64747;
  background-color: #fffaf9;
  padding-right: 30px;
}
.pub-form-mod .telephone-inquiry .w50 {
  margin-right: 10% !important;
}
.pub-form-mod .telephone-inquiry .form-int {
  width: 42%;
  display: flex;
  line-height: 40px;
}
.pub-form-mod .telephone-inquiry .form-int .tips {
  font-size: 12px;
  margin-left: 3px;
}
.pub-form-mod .telephone-inquiry .form-int > .inpt-date:first-of-type {
  margin-right: 5px;
}
.pub-form-mod .telephone-inquiry .label {
  min-width: 200px !important;
}
.pub-form-mod .telephone-inquiry .content-len3 input,
.pub-form-mod .telephone-inquiry .content-len3 select,
.pub-form-mod .telephone-inquiry .content-len3 .inpt-date {
  margin-right: 10px;
}
.pub-form-mod .telephone-inquiry .content-len3 .inpt-date,
.pub-form-mod .telephone-inquiry .content-len3 input:nth-child(2) {
  width: 30%;
}
.pub-form-mod .telephone-inquiry .content-len3 input:nth-child(3) {
  width: 40%;
  margin-right: 0;
}
.pub-form-mod .telephone-inquiry .form-col-btns button.small {
  margin-left: 10px !important;
}
.pub-form-mod .operational-details b {
  width: 80px;
  display: inline-block;
  text-align: left;
  margin-left: 10px;
}
.pub-form-mod .global-compliance-check-detail {
  margin-top: 10px !important;
}
.pub-form-mod .business-scope {
  flex: 1;
}
.pub-form-mod .business-scope .span-flex-2 {
  flex-direction: column;
}
.pub-form-mod .business-scope .span-flex-2 .pre {
  display: flex;
  width: 100%;
}
.pub-form-mod .business-scope .span-flex-2 .next {
  display: flex;
  width: 100%;
  margin-top: 10px;
}
.pub-form-mod .business-scope .business-li {
  display: flex;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.pub-form-mod .business-scope .business-li:nth-child(1) {
  padding-bottom: 0;
  margin-bottom: 10px;
  height: 35px;
}
.pub-form-mod .business-scope .business-li:nth-child(1) span {
  border-left: 1px solid #efefef;
  padding: 3px 5px;
  justify-content: flex-start !important;
}
.pub-form-mod .business-scope .business-li:nth-last-child(1) {
  padding-bottom: 0;
  margin-bottom: 0;
}
.pub-form-mod .business-scope .business-li > span {
  border-left: 1px solid transparent;
  width: auto;
  padding: 0 5px;
  display: flex;
  align-items: center;
}
.pub-form-mod .business-scope .business-li > span b {
  text-align: right;
}
.pub-form-mod .business-scope .business-li > span:nth-child(1) {
  width: 225px;
  justify-content: flex-end;
}
.pub-form-mod .business-scope .business-li > span:nth-child(3) {
  width: 300px;
}
.pub-form-mod .business-scope .business-li > span:nth-child(2) {
  flex: 1;
}
.pub-form-mod .business-scope .business-li > span:nth-child(2).editor-36 {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.pub-form-mod .business-scope .business-li > span:nth-child(2).editor-36 .span-flex {
  display: flex;
  width: 50%;
  margin-bottom: 10px;
}
.pub-form-mod .business-scope .business-li > span:nth-child(2) input:nth-child(2) {
  margin-left: 10px;
}
.pub-form-mod .business-scope .business-li > span:nth-child(4) {
  width: 102px;
}
.pub-form-mod .business-scope .business-li .select-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.pub-form-mod .business-scope .business-li:first-child {
  background: #17365d;
  color: #fff;
  font-weight: bold;
  border: none;
}
.pub-form-mod .business-scope .li-border {
  padding-top: 10px;
  border-top: 1px dashed #cccccc;
}
.pub-form-mod .business-scope .span-flex {
  display: flex;
}
.pub-form-mod .business-scope .span-flex input {
  flex: 1;
}
.pub-form-mod .business-scope .span-flex textarea {
  flex: 2;
  margin-left: 10px;
}
.pub-form-mod .business-scope textarea {
  height: 40px;
}
.pub-form-mod .import-export .span1 {
  width: 260px !important;
}
.pub-form-mod .import-export .font-wei {
  font-weight: 600;
}
.pub-form-mod .import-export-text li {
  height: 45px !important;
}
.pub-form-mod .import-export-item {
  display: flex;
  align-items: center;
}
.pub-form-mod .import-export-item .left {
  width: 260px;
}
.pub-form-mod .import-export-item .left .label {
  width: 100%;
  height: 45px;
  display: flex;
  align-items: center;
  padding-left: 5px;
}
.pub-form-mod .import-export-item .left .label:nth-of-type(even) {
  background: #F1F3FA;
}
.pub-form-mod .import-export-item .right {
  flex: 1;
}
.pub-form-mod .import-export-item .right .text {
  align-items: center;
  padding-left: 5px;
  display: flex;
  height: 45px;
}
.pub-form-mod .import-export-item .right .text:nth-of-type(even) {
  background: #F1F3FA;
}
.pub-form-mod .import-export-item .right .text.rs {
  height: 90px;
}
.pub-form-mod .import-export-item .right .font-wei {
  font-weight: 600;
}
.pub-form-mod .business-scope38 {
  flex: 1;
}
.pub-form-mod .business-scope38 .business-li {
  display: flex;
  padding-bottom: 5px;
  margin-bottom: 5px;
}
.pub-form-mod .business-scope38 .business-li:nth-child(1) {
  padding-bottom: 0;
  margin-bottom: 10px;
  height: 35px;
}
.pub-form-mod .business-scope38 .business-li:nth-child(1) span {
  border-left: 1px solid #efefef;
  padding: 3px 5px;
  justify-content: flex-start !important;
}
.pub-form-mod .business-scope38 .business-li:nth-last-child(1) {
  padding-bottom: 0;
  margin-bottom: 0;
}
.pub-form-mod .business-scope38 .business-li > span {
  border-left: 1px solid transparent;
  width: auto;
  padding: 0 5px;
  display: flex;
  align-items: center;
}
.pub-form-mod .business-scope38 .business-li > span b {
  text-align: right;
}
.pub-form-mod .business-scope38 .business-li > span.business-action1 {
  width: 150px;
  justify-content: flex-end;
}
.pub-form-mod .business-scope38 .business-li > span.business-action2 {
  width: 500px;
  justify-content: flex-end;
}
.pub-form-mod .business-scope38 .business-li > span.business-action4 {
  width: 270px;
}
.pub-form-mod .business-scope38 .business-li > span.business-action3 {
  flex: 1;
}
.pub-form-mod .business-scope38 .business-li > span.business-action3 input:nth-child(2) {
  margin-left: 10px;
}
.pub-form-mod .business-scope38 .business-li > span.business-action5 {
  width: 102px;
}
.pub-form-mod .business-scope38 .business-li .select-column {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  justify-content: center;
}
.pub-form-mod .business-scope38 .business-li:first-child {
  background: #17365d;
  color: #fff;
  font-weight: bold;
  border: none;
}
.pub-form-mod .business-scope38 .li-border {
  padding-top: 10px;
  border-top: 1px dashed #cccccc;
}
.pub-form-mod .business-scope38 .span-flex {
  display: flex;
}
.pub-form-mod .business-scope38 .span-flex input {
  flex: 1;
}
.pub-form-mod .business-scope38 .span-flex textarea {
  flex: 2;
  margin-left: 10px;
}
.pub-form-mod .business-scope38 textarea {
  height: 40px;
}
.pub-form-mod .notable-info li span:nth-of-type(1) {
  width: 275px;
}
.pub-form-mod .notable-info li span:nth-of-type(2) {
  flex: 1;
  min-width: 200px;
}
.pub-form-mod .notable-info li span:nth-of-type(3) {
  width: 102px;
}
.pub-form-mod .office-production-address li span:nth-of-type(1) {
  width: 275px;
}
.pub-form-mod .office-production-address li span:nth-of-type(2) {
  flex: 1;
  min-width: 200px;
}
.pub-form-mod .office-production-address li span:nth-of-type(3) {
  width: 60px;
}
.pub-form-mod .industry-info li span:nth-of-type(1) {
  width: 275px;
}
.pub-form-mod .industry-info li span:nth-of-type(2) {
  flex: 1;
  min-width: 200px;
}
.pub-form-mod .industry-info li span:nth-of-type(3) {
  width: 102px;
}
.pub-form-mod .industry-info li:nth-of-type(odd) {
  background: #fff;
}
.pub-form-mod .industry-info li:nth-of-type(even) {
  background: #f1f3fa;
}
.pub-form-mod .industry-info li:first-child {
  height: 45px;
  background: #17365d;
  color: #fff;
  font-weight: bold;
}

/** editor */
.edit-box {
  border: 1px solid #e4e4e4;
  display: flex;
  flex-direction: column;
  width: 100%;
  min-height: 100px;
  position: relative;
}
.edit-box .edit-hd {
  height: 30px;
  background: #f9f9f9;
  border-bottom: 1px solid #e4e4e4;
  display: flex;
  justify-content: left;
  align-items: center;
}
.edit-box .edit-hd img {
  width: 16px;
  margin: 0 5px;
}
.edit-box .edit-hd .icon {
  width: 32px;
  height: 32px;
  cursor: pointer;
  text-indent: -9999px;
}
.edit-box .edit-hd .icon.icon-strong {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAQRJREFUOE+l0z8rhlEYx/HPM8uiLJKUgVJSFmXx5zXwBlBKGWTHTBkUC0YGr4DFYlFKFillUAYxSXk2Ojnn6eqe7jtXnc51+l3ne06/65yWv7jCdM6rUxsveMJpHp2aVs7K5gQqMYMejGEZfVk4wWIpKoCy/gmAqE3gNmijeEjruoBU+4jhDFnFwX8AjW+QPCr+nGOhrgdDmMM6+nGIbXzVAZSabzyHcYabOoDUxhQjmMV86EK60V5TEzewkyHvGEC7SRvHcVd9C00A3fgMgAS8bwKYwnUA9OKjLqALu1jJgH2sRRO3srAZTjhKJ2AQk3lO8jGWqm2MvzAwOukbXnGJi1jwCxWtORGLqESLAAAAAElFTkSuQmCC) center no-repeat;
}
.edit-box .edit-hd .icon.icon-left {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAG5JREFUOE+tk1EKgDAMQ99Opp5Mb6Y3UzIYzGllIwb21zyatkuYSqafGnAOwrK3BsyDgKMFvPm/oCFgA/SkHYggjwgyyDgBS2+cegYyr4BaKwB1ECnX/AqwI5RWrSG2eYfWaB+Sfcq9q7/V2b/xAvbMEhG9KQa5AAAAAElFTkSuQmCC) center no-repeat;
}
.edit-box .edit-hd .icon.icon-right {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAAAXNSR0IArs4c6QAAAGdJREFUOE9jZKAQMFKonwHZgP8kGgbWi2yAA4kGHEA3AJt+fIZiGBDKwMCwGs2U/QwMDLgMwfACKAzCsBiC12fYAhHZEJALcAFH9DCAxQJFBlDkBYoDkeJopDghUZyUSUzJEOUU50YAQA8UES8TMd0AAAAASUVORK5CYII=) center no-repeat;
}
.edit-box .edit-hd .icon.icon-number {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABEAAAAQCAYAAADwMZRfAAAAAXNSR0IArs4c6QAAAJpJREFUOE+t0zEKwkAQBdCXysrWo9iKR7Gy8BDaCxY5kB5CtPEIeggZ3EAQhUyyvxkWZv7+/X+2wcUH61LTpcEBqx5JnFP4R7LPsHQkMdMpGKUkc+nP3lAyGUFSJZ1zSWaBZ/EmbWyQPLAt7wpj0yRXvKYuWxVjq5C02GDe8yS+wWBExDFwxHKKsZHEHbdSR639CTPsBuv/anwDIZIXTPUe0DwAAAAASUVORK5CYII=) center no-repeat;
}
.edit-box .edit-hd .icon.icon-dot {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAQCAYAAAAWGF8bAAAAAXNSR0IArs4c6QAAAHRJREFUOE/VlFEOgCAMQx8382bqydSTaRoZISYGQfZBf1hI19B0IwAnN1ZgifUGTLGuOoKH4AyYsF4p2J1qcyBOEZ9IRZWMMIagEhWOR8o1ThPXJWVLUTNoKf+awyZrb01jpJzv7B6tNO2xel1T7vbbdLV8AQqmGsrPPXu7AAAAAElFTkSuQmCC) center no-repeat;
}
.edit-box .edit-hd .icon.icon-short-line {
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABQAAAAQCAYAAAAWGF8bAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjNGQUQ1NTE5RUNGMzExRUZCMzI5RjMzQTVDQjA0REU4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjNGQUQ1NTFBRUNGMzExRUZCMzI5RjMzQTVDQjA0REU4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6M0ZBRDU1MTdFQ0YzMTFFRkIzMjlGMzNBNUNCMDRERTgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6M0ZBRDU1MThFQ0YzMTFFRkIzMjlGMzNBNUNCMDRERTgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz5gfRKQAAAAWklEQVR42mL8//8/AzbAyMiIXYIAYEHTyIjLAqINBBrAiEOuEUrDbGAkywaQCylxJRMDlQELpWGGYSAeuf3kGMg4pJMNI1UCdUglG4cREMtAw5HlHMkxECDAAHA1Ndb9S8nNAAAAAElFTkSuQmCC) center no-repeat;
}
.edit-box .edit-hd .icon:hover {
  border: 1px solid #ccc;
}
.edit-box .edit-bd {
  flex: 1;
  display: flex;
}
.edit-box .edit-bd .editor {
  flex: 1;
  padding: 10px;
  overflow: auto;
  background-color: #fff;
}
.edit-box .edit-bd .editor.highlight {
  border: 1px solid rgb(248, 190, 39);
  background: rgba(248, 190, 39, 0.06);
}
.edit-box .edit-bd .editor.empty {
  border: 1px solid red;
  background: #fffaf9;
}
.edit-box .edit-bd .editor.disabled {
  background: #f2f2f2 !important;
  border: 1px solid #e4e4e4 !important;
}
.edit-box .edit-bd .editor p {
  line-height: 20px;
}
.edit-box .edit-bd .editor ol {
  padding-left: 20px;
}
.edit-box .edit-bd .editor ol li {
  list-style-type: decimal;
}
.edit-box .edit-bd .editor ul {
  padding-left: 20px;
}
.edit-box .edit-bd .editor ul li {
  list-style-type: disc;
}
.edit-box .edit-bd .editor ul.short-line-list li {
  list-style-type: none;
  position: relative;
}
.edit-box .edit-bd .editor ul.short-line-list li::before {
  content: "-";
  position: absolute;
  top: 0;
  left: -20px;
  font-weight: 600;
}
.edit-box .edit-bd .editor ul.right-arrow-list li {
  list-style-type: none;
  position: relative;
}
.edit-box .edit-bd .editor ul.right-arrow-list li::before {
  font-family: "iconfont" !important;
  font-size: 9px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  content: "\e830";
  position: absolute;
  top: 0;
  left: -20px;
  font-weight: 600;
}
.edit-box .edit-bd .editor a.hyperlink-ckeditor {
  color: #7E00FD;
  cursor: pointer;
}
.edit-box .edit-bd .editor a.hyperlink-ckeditor:hover {
  text-decoration: underline;
}
.edit-box .alert-icon {
  position: absolute;
  right: -7px;
  top: -7px;
  border-radius: 50%;
  width: 20px;
  height: 20px;
  border: 1px solid #17365d;
  text-align: center;
  line-height: 20px;
  font-weight: 800;
  background-color: #fff;
  z-index: 12;
  cursor: pointer;
  font-size: 18px;
}

.pub-upload {
  display: flex;
  align-items: center;
  padding: 20px;
  color: #17365d;
}
.pub-upload .draged-box {
  width: 290px;
  border-radius: 5px;
}
.pub-upload .draged-box form {
  height: 80px;
  display: flex;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: row;
  border-radius: 5px;
  border: 2px dashed #ddd;
  transition: all 0.3s;
}
.pub-upload .draged-box form .excel {
  width: 60px;
  height: 60px;
  background: url(../static/img/excel.a89bcae5.png);
  background-size: cover;
}
.pub-upload .draged-box form p {
  font-size: 14px;
}
.pub-upload .draged-box form p, .pub-upload .draged-box form i {
  pointer-events: none;
}
.pub-upload .draged-box form.dragover {
  border-color: #17365d;
  background-color: rgba(23, 54, 93, 0.1);
}
.pub-upload .draged-box .hint {
  text-align: center;
  text-decoration: underline;
  color: #17365d;
}
.pub-upload .draged-box-files {
  width: 100%;
}
.pub-upload .draged-box-files form {
  height: auto;
  flex-direction: column;
  padding: 20px;
}
.pub-upload .draged-box-files form .up-type-list {
  display: flex;
  margin-bottom: 20px;
}
.pub-upload .draged-box-files form .up-type-list .fa-cloud-upload-alt {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: 140px;
}
.pub-upload .draged-box-files form .up-type-list .image {
  background: url(data:image/png;base64,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);
  width: 60px;
  height: 60px;
  background-size: cover;
}
.pub-upload .draged-box-files form .up-type-list .pdf {
  background: url(../static/img/pdf.e3aab79e.png);
  width: 60px;
  height: 60px;
  background-size: cover;
}
.pub-upload .draged-box-files form .up-type-list .word {
  background: url(../static/img/word.54b59d56.png);
  width: 60px;
  height: 60px;
  background-size: cover;
}
.pub-upload .draged-box-files form .text {
  margin-top: 20px;
  color: #BFBFBF;
}
.pub-upload .file-list {
  height: 80px;
  margin: 0 20px;
  flex: 1;
}
.pub-upload .file-list .file-name {
  display: inline-block;
  vertical-align: top;
  cursor: pointer;
  text-decoration: underline;
  color: #17365d;
}
.pub-upload .file-list > p:first-of-type {
  text-align: right;
}

#Mod27 .pub-form-title-noresults,
#Mod32 .pub-form-title-noresults {
  padding-bottom: 0px;
}
#Mod27 .title-Div-Capital,
#Mod32 .title-Div-Capital {
  line-height: 40px;
  justify-content: space-between;
}
#Mod27 .title-Div-Capital .title-Div-left,
#Mod32 .title-Div-Capital .title-Div-left {
  display: flex;
  height: 40px;
}
#Mod27 .title-Div-right,
#Mod32 .title-Div-right {
  font-size: 14px;
}

#Mod29 .pub-form-title-noresults {
  display: flex;
  justify-content: space-between;
  align-items: center;
}

#Mod28 .input-box,
#Mod28 .pub-form-item-title,
#Mod34 .input-box,
#Mod34 .pub-form-item-title {
  padding-bottom: 0px;
}
#Mod28 .pub-form-item-title-left,
#Mod34 .pub-form-item-title-left {
  padding-left: 30px;
}
#Mod28 .pub-form-item-title-left .title-index,
#Mod34 .pub-form-item-title-left .title-index {
  width: 180px;
}
#Mod28 .pub-form-item-title-left .report-underlink,
#Mod34 .pub-form-item-title-left .report-underlink {
  padding-right: 10px;
  justify-content: flex-end;
}
#Mod28 .pub-form-item-title-left .report-underlink b,
#Mod34 .pub-form-item-title-left .report-underlink b {
  justify-content: flex-end;
}
#Mod28 .title-index-new,
#Mod34 .title-index-new {
  text-align: right !important;
  width: 180px !important;
  padding-right: 10px;
}
#Mod28 .pub-item .item-wrapper .pl-30,
#Mod34 .pub-item .item-wrapper .pl-30 {
  padding: 20px 0 5px 30px;
}
#Mod28 .pub-item .item-wrapper .pl-30 .title-index,
#Mod34 .pub-item .item-wrapper .pl-30 .title-index {
  width: 165px;
  text-align: center;
  line-height: 40px;
  font-size: 14px;
}
#Mod28 .pub-item .item-wrapper .pl-30 .pub-form-title-select,
#Mod34 .pub-item .item-wrapper .pl-30 .pub-form-title-select {
  padding: 0;
}
#Mod28 .pub-item .pub-form-item-title,
#Mod34 .pub-item .pub-form-item-title {
  padding-top: 20px;
}
#Mod28 .pub-item .pub-form-item-title.first,
#Mod34 .pub-item .pub-form-item-title.first {
  padding-top: 10px;
}
#Mod28 .pub-item button,
#Mod34 .pub-item button {
  margin: 0 10px;
}
#Mod28 .pub-item button.small,
#Mod34 .pub-item button.small {
  margin: 0 5px;
}
#Mod28 .pub-form-title-select,
#Mod34 .pub-form-title-select {
  padding: 0;
}

#Mod33 .pub-form-item-title-new,
#Mod33 .pub-form-item-title-new > span {
  display: flex;
  align-items: center;
  background: rgb(240, 242, 245);
  margin-right: 10px;
}
#Mod33 .pub-form-item-title-new {
  padding-bottom: 10px;
  margin-right: 0;
}
#Mod33 .input-box {
  padding-bottom: 0px;
}

#Mod34 .pub-form-item-title {
  padding-bottom: 10px;
}

#Mod24 .input-box,
#Mod25 .input-box,
#Mod29 .input-box,
#Mod30 .input-box,
#Mod36 .input-box,
#Mod37 .input-box,
#Mod38 .input-box,
#Mod40 .input-box,
#Mod41 .input-box,
#Mod42 .input-box,
#Mod43 .input-box,
#Mod45 .input-box,
#Mod46 .input-box,
#Mod47 .input-box {
  padding-bottom: 0;
}

.msgPopover {
  padding: 0px !important;
}

.el-table--border .el-table__cell {
  border-right: #dde5ee;
}

.el-table.is-scrolling-left.el-table--border .el-table-fixed-column--left.is-last-column.el-table__cell {
  border-right: none;
}

select:focus {
  outline: 1px solid #003865;
}

select:hover {
  outline: 1px solid #003865;
}

button:focus {
  border: 1px solid #003865;
}

.textarea-height-small {
  flex: 1;
  height: 40px;
  margin: 0 10px;
}

.el-icon-normal {
  cursor: pointer;
  color: #98a6ad;
  font-size: 16px;
}
.el-icon-normal:hover {
  color: #6c757d;
}
.el-icon-normal.cbiblue {
  color: var(--el-color-primary);
}
.el-icon-normal.cbiblue:hover {
  color: var(--el-color-primary-light-5);
}

.el-icon-active {
  color: rgb(10, 207, 151);
  cursor: pointer;
  font-size: 16px;
}
.el-icon-active:hover {
  color: rgb(20, 183, 134);
}

.select-filter {
  width: 100%;
  position: relative;
}
.select-filter .suffix-inner {
  transform: rotate(90deg);
  width: 16px;
  height: 16px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.select-filter .select-dropdown-list {
  min-width: 100px;
  max-height: 274px;
  overflow-y: auto;
  width: 100%;
  background: #fff;
  border: 1px solid #e4e7ed;
  box-shadow: 0px 0px 12px rgba(0, 0, 0, 0.12);
  z-index: 100;
  position: absolute;
  inset: 43px auto auto 0;
  display: none;
}
.select-filter .select-dropdown-list i {
  padding: 10px;
  display: none;
}
.select-filter.active .suffix-inner {
  transform: rotate(-90deg);
}
.select-filter.active .select-dropdown-list {
  display: block;
}
.select-filter.error {
  border: 1px solid #f64747;
}
.select-filter.disabled {
  background-color: #f2f2f2 !important;
}
.select-filter .select-dropdown-item {
  display: inline-block;
  width: 100% !important;
  padding: 8px !important;
}
.select-filter .select-dropdown-item:hover {
  background: #f5f7fa;
  cursor: pointer;
}
.select-filter .select-dropdown-item.checkd {
  color: #003865;
  font-weight: bold;
}
.select-filter .select-input {
  position: relative;
}
.select-filter .select-input .suffix {
  right: 10px;
  top: 10px;
  position: absolute;
}

.imgContext {
  width: 46px;
  height: 39px;
  margin-top: 5px;
  margin-right: 5px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADwAAAAzCAYAAADLqmunAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAAyZpVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNS1jMDIxIDc5LjE1NTc3MiwgMjAxNC8wMS8xMy0xOTo0NDowMCAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvIiB4bWxuczp4bXBNTT0iaHR0cDovL25zLmFkb2JlLmNvbS94YXAvMS4wL21tLyIgeG1sbnM6c3RSZWY9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9zVHlwZS9SZXNvdXJjZVJlZiMiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIDIwMTQgKFdpbmRvd3MpIiB4bXBNTTpJbnN0YW5jZUlEPSJ4bXAuaWlkOjU4OThFMzA4NkZBNTExRUQ4OUY3RkQ0M0MyODRFNzA4IiB4bXBNTTpEb2N1bWVudElEPSJ4bXAuZGlkOjU4OThFMzA5NkZBNTExRUQ4OUY3RkQ0M0MyODRFNzA4Ij4gPHhtcE1NOkRlcml2ZWRGcm9tIHN0UmVmOmluc3RhbmNlSUQ9InhtcC5paWQ6NTg5OEUzMDY2RkE1MTFFRDg5RjdGRDQzQzI4NEU3MDgiIHN0UmVmOmRvY3VtZW50SUQ9InhtcC5kaWQ6NTg5OEUzMDc2RkE1MTFFRDg5RjdGRDQzQzI4NEU3MDgiLz4gPC9yZGY6RGVzY3JpcHRpb24+IDwvcmRmOlJERj4gPC94OnhtcG1ldGE+IDw/eHBhY2tldCBlbmQ9InIiPz72pC3nAAAFJUlEQVR42tyaUWgcRRjHZy/XiDEpjaLVCrUEvaqhoLmgVq36kKiYlgoaKvjYN6UoGLxUqwULJdW+CCL0oXkyYIMvYvrQXrBVazGQti+2xdRKI6TYQpNKNCZXc+t/zH/qZJy97O7dbu/2gx+Tm52ZnX++b2Z2Z9ZxXVdEZHeADaAdZMB94C7QDOrAPJgCl8Ev4CwYAd8xLxJzKix4PdgCngTZMto5AY6BQXC8GgX3gI3gaS3vCvgGjIIx8huYpHell29lJLSAB8CjbOM2rR3ZxhDY66Mf7zOqHgM/MFo+WFRCCi6DHWDU/c8mwIcgC1Ih20yx/h62p0ze590S9YZcuw3p5cIKfQEc0RodAZtBnY+6yvzcp47tjmj15H27jHI7eW0cdIJGpuPM31WO4H7t5mfAcwHrBxGs8zzvp6xfuzbMvA6jzjPMPxpG8GrwNRv4C2wH9SE6Hlaw4P16eX+X/bkHTPN3o6W8tEJQwRnwMyufBevKHPvlso79cNmv45X0cCu4yoqHwPIKeavcyGhif1zN4+MUfQvTC0HHsPTs76w0YAnhGylYhewA8695zNIH/c7ScsyeY6XPgHODw9gLh/2TdgUcA39yIttpli/V0GE2cjjk5BTFpFVqMjuk9dezrNeF/ax8zhiz1SpYsJ8qIvcHEdzFSrOgLaaxWCna2G/X8nDiKVittb0xTj6VpFdbo5cUvENba+trVPAybY1+z7yeMt42XmT6JiiI2rRr4A3+vfl/VzX1PdqLQJTeiMrDZrvqhaPHy8ObmO4WybDdhq5FGwCPg+/BBFgNihF2RO04OBELls78FdwNnlA7J8rDW5gORCw2TitSj67vuuANTA+IZNkBQ9+/IS13Ei9yv2mVFnK1HtLKoZe5R3YnuJRifAvuEroJ87AM66O6l1PadupJkUwbYfqIEryWGT8lVPAZpq1KcIYZYwkVfIHpGiV4JTMuJVTwFFN5xCPSYAUzrhqzaNQzaZgJ0gnYriw/zb+b1LJkLhNRCy5nJQgjeNFSKD38Nz29jG8aUa+PcbffxPQPNYZVKK9I6BhWgqeVYDVZrfSo0MGQ8IMqu6+KBDfrk1eay1Erl6cfLRXkYfWw5Z8wxXPcarc1+vKU1h441npUkII7LRPDCUt+XM/IQexBpqdVSCsvtVWgcVtInwd5kONhuMu0m+E2qg2JfImwzGvlZP0+n336iE54W23xrOJWyMUApwvS8pb8Dl7bp+WdB5Nafh9/T/KaPOjOaQfrg0abzUb9HO/t1QfhZyP+FBt4OCLB5slezqMN9U/Q8wZZtsXIz3mcGJYkTbfLbyEeAq+AUxGMI3PiU4975mQoh1eLkZdl/W6P2bfb0o6nKcGfg23gVbA9xm2eKR9l1D+gb4nrvncEBDe4vuWG16YqXFqGOfHY6AwjWNpXTN9RGTMzM1b06zFFQbZSjemC93IMyZ2BZ6vMu81c1nTLcYnKhRUs7UumH/Nlwma3z83NiWKx2BiT4F56uU9bz/P8LSezPeUI3gWOgPvBW5by9eCL+fl5USgUMjEJlqLa6ekOCs3yd3vgVynLp4ddYuFTvzmwHuNUX6Y+Aa+LhW1dGfoTDQ0NNfXqlLLkHQT94CYwCEHLmb+VYuWp4kti4Vim5izlkb+V4+ReKdpxnKeQfsprr4mFDzdr0kp9TSsP1eR3jS2zs7PyO6ibGdLb9EK1FtJLfT6cwYx8GpNUmg8mncI4KE/CGNYfLMYQzhs5c78savergOv2jwADAA/n9GfCrC9xAAAAAElFTkSuQmCC) no-repeat center center;
  background-size: 46px;
}

.subject-dialog .el-dialog__body {
  max-height: 70vh !important;
  overflow-y: auto !important;
}

.el-menu-item .menuTitle {
  position: relative;
}
.el-menu-item .menuTitle .orderCount {
  top: -3px;
  height: 15px;
  color: #666;
  padding: 0 5px;
  border-radius: 6px;
  font-size: 12px;
  border: 1px solid #17365d;
  white-space: nowrap !important;
  line-height: 13px !important;
  position: absolute;
  margin-left: 3px;
}
.el-menu-item.is-active .orderCount {
  border: 1px solid #fff;
  color: #fff;
}

.icon-copy {
  font-size: 20px !important;
}

.table-cell-color-span {
  margin-right: 5px;
}

.title-appendix {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.title-appendix button {
  margin: 0 !important;
}

.pub-icon-source {
  font-size: 13px;
  flex: 1;
  font-weight: 400;
}

.source-last {
  padding-bottom: 10px !important;
}

.source-icon-multi .content {
  display: flex;
  justify-content: space-between;
}
.source-icon-multi .content .rightline,
.source-icon-multi .content .right-btn-box {
  flex: 1;
}
.source-icon-multi .content .right-btn-box {
  text-align: right;
}

.h200 textarea {
  height: 200px;
}

.back-verification {
  flex: 1;
}
.back-verification .pub-form-title-noresults {
  background: none !important;
}
.back-verification li {
  display: flex;
  min-height: 50px;
}
.back-verification li textarea {
  height: 40px;
}
.back-verification li > span {
  display: flex;
  width: auto;
  padding: 3px 10px;
  border-left: 1px solid #efefef;
  display: flex;
  align-items: center;
}
.back-verification li .verif1,
.back-verification li .education4 {
  flex: 3;
}
.back-verification li .verif2,
.back-verification li .education2,
.back-verification li .education3 {
  flex: 2;
}
.back-verification li .verif3,
.back-verification li .education1 {
  flex: 1;
}
.back-verification li .verif4 {
  flex: 10;
}
.back-verification li .education5 {
  width: 200px;
}
.back-verification li:nth-of-type(odd) {
  background: #f1f3fa;
}
.back-verification li:nth-of-type(even) {
  background: #fff;
}
.back-verification li:first-child {
  height: 45px;
  background: #17365d;
  color: #fff;
  font-weight: bold;
}
.back-verification li:first-child span {
  height: 100%;
  display: flex;
  flex-direction: row !important;
  align-items: center !important;
}

.document-search {
  flex: 1;
}
.document-search li {
  display: flex;
  min-height: 50px;
}
.document-search li textarea {
  height: 40px;
}
.document-search li > span {
  display: flex;
  width: auto;
  padding: 3px 10px;
  border-left: 1px solid #efefef;
  display: flex;
  align-items: center;
}
.document-search li .education1 {
  width: 50px;
}
.document-search li .education2 {
  flex: 1;
  display: flex;
}
.document-search li .education2 .active {
  color: #771CAA;
}
.document-search li .education2 .pdf {
  background: url(../static/img/pdf.e3aab79e.png);
  width: 40px;
  height: 40px;
  background-size: cover;
}
.document-search li .education2 .word {
  background: url(../static/img/word.54b59d56.png);
  width: 40px;
  height: 40px;
  background-size: cover;
}
.document-search li .education2 .image {
  background: url(data:image/png;base64,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);
  width: 40px;
  height: 40px;
  background-size: cover;
}
.document-search li .education2 .left {
  width: 40px;
  align-self: center;
}
.document-search li .education2 .right {
  flex: 1;
  margin-left: 10px;
  align-self: center;
}
.document-search li .education2 .name {
  cursor: pointer;
}
.document-search li .education3,
.document-search li .education4 {
  width: 100px;
}
.document-search li .education5,
.document-search li .education6 {
  width: 120px;
}
.document-search li .education7 {
  width: 180px;
}
.document-search li .education8 {
  width: 100px;
}
.document-search li:nth-of-type(odd) {
  background: #f1f3fa;
}
.document-search li:nth-of-type(even) {
  background: #fff;
}
.document-search li:first-child {
  height: 45px;
  background: #17365d;
  color: #fff;
  font-weight: bold;
}
.document-search li:first-child span {
  height: 100%;
  display: flex;
  flex-direction: row !important;
  align-items: center !important;
}

.label-line-container {
  width: 190px !important;
}

.label-line-2 {
  word-break: break-all;
  text-overflow: ellipsis;
  display: -webkit-box !important;
  -webkit-box-orient: vertical;
  -webkit-line-clamp: 2;
  /* 超出几行省略 */
  overflow: hidden;
  width: 190px !important;
  text-indent: 1.5rem;
}

.pub-table-of {
  overflow: inherit !important;
}

.trademark-search-info li span:nth-of-type(1) {
  width: 250px;
}
.trademark-search-info li span:nth-of-type(2) {
  flex: 1;
  min-width: 200px;
}
.trademark-search-info li span:nth-of-type(3) {
  width: 200px;
}

/* 外边距、内边距全局样式
------------------------------- */
.mt1 {
  margin-top: 1px !important;
}

.mr1 {
  margin-right: 1px !important;
}

.mb1 {
  margin-bottom: 1px !important;
}

.ml1 {
  margin-left: 1px !important;
}

.pt1 {
  padding-top: 1px !important;
}

.pr1 {
  padding-right: 1px !important;
}

.pb1 {
  padding-bottom: 1px !important;
}

.pl1 {
  padding-left: 1px !important;
}

.mt2 {
  margin-top: 2px !important;
}

.mr2 {
  margin-right: 2px !important;
}

.mb2 {
  margin-bottom: 2px !important;
}

.ml2 {
  margin-left: 2px !important;
}

.pt2 {
  padding-top: 2px !important;
}

.pr2 {
  padding-right: 2px !important;
}

.pb2 {
  padding-bottom: 2px !important;
}

.pl2 {
  padding-left: 2px !important;
}

.mt3 {
  margin-top: 3px !important;
}

.mr3 {
  margin-right: 3px !important;
}

.mb3 {
  margin-bottom: 3px !important;
}

.ml3 {
  margin-left: 3px !important;
}

.pt3 {
  padding-top: 3px !important;
}

.pr3 {
  padding-right: 3px !important;
}

.pb3 {
  padding-bottom: 3px !important;
}

.pl3 {
  padding-left: 3px !important;
}

.mt4 {
  margin-top: 4px !important;
}

.mr4 {
  margin-right: 4px !important;
}

.mb4 {
  margin-bottom: 4px !important;
}

.ml4 {
  margin-left: 4px !important;
}

.pt4 {
  padding-top: 4px !important;
}

.pr4 {
  padding-right: 4px !important;
}

.pb4 {
  padding-bottom: 4px !important;
}

.pl4 {
  padding-left: 4px !important;
}

.mt5 {
  margin-top: 5px !important;
}

.mr5 {
  margin-right: 5px !important;
}

.mb5 {
  margin-bottom: 5px !important;
}

.ml5 {
  margin-left: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.pr5 {
  padding-right: 5px !important;
}

.pb5 {
  padding-bottom: 5px !important;
}

.pl5 {
  padding-left: 5px !important;
}

.mt6 {
  margin-top: 6px !important;
}

.mr6 {
  margin-right: 6px !important;
}

.mb6 {
  margin-bottom: 6px !important;
}

.ml6 {
  margin-left: 6px !important;
}

.pt6 {
  padding-top: 6px !important;
}

.pr6 {
  padding-right: 6px !important;
}

.pb6 {
  padding-bottom: 6px !important;
}

.pl6 {
  padding-left: 6px !important;
}

.mt7 {
  margin-top: 7px !important;
}

.mr7 {
  margin-right: 7px !important;
}

.mb7 {
  margin-bottom: 7px !important;
}

.ml7 {
  margin-left: 7px !important;
}

.pt7 {
  padding-top: 7px !important;
}

.pr7 {
  padding-right: 7px !important;
}

.pb7 {
  padding-bottom: 7px !important;
}

.pl7 {
  padding-left: 7px !important;
}

.mt8 {
  margin-top: 8px !important;
}

.mr8 {
  margin-right: 8px !important;
}

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

.ml8 {
  margin-left: 8px !important;
}

.pt8 {
  padding-top: 8px !important;
}

.pr8 {
  padding-right: 8px !important;
}

.pb8 {
  padding-bottom: 8px !important;
}

.pl8 {
  padding-left: 8px !important;
}

.mt9 {
  margin-top: 9px !important;
}

.mr9 {
  margin-right: 9px !important;
}

.mb9 {
  margin-bottom: 9px !important;
}

.ml9 {
  margin-left: 9px !important;
}

.pt9 {
  padding-top: 9px !important;
}

.pr9 {
  padding-right: 9px !important;
}

.pb9 {
  padding-bottom: 9px !important;
}

.pl9 {
  padding-left: 9px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.mr10 {
  margin-right: 10px !important;
}

.mb10 {
  margin-bottom: 10px !important;
}

.ml10 {
  margin-left: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.pr10 {
  padding-right: 10px !important;
}

.pb10 {
  padding-bottom: 10px !important;
}

.pl10 {
  padding-left: 10px !important;
}

.mt11 {
  margin-top: 11px !important;
}

.mr11 {
  margin-right: 11px !important;
}

.mb11 {
  margin-bottom: 11px !important;
}

.ml11 {
  margin-left: 11px !important;
}

.pt11 {
  padding-top: 11px !important;
}

.pr11 {
  padding-right: 11px !important;
}

.pb11 {
  padding-bottom: 11px !important;
}

.pl11 {
  padding-left: 11px !important;
}

.mt12 {
  margin-top: 12px !important;
}

.mr12 {
  margin-right: 12px !important;
}

.mb12 {
  margin-bottom: 12px !important;
}

.ml12 {
  margin-left: 12px !important;
}

.pt12 {
  padding-top: 12px !important;
}

.pr12 {
  padding-right: 12px !important;
}

.pb12 {
  padding-bottom: 12px !important;
}

.pl12 {
  padding-left: 12px !important;
}

.mt13 {
  margin-top: 13px !important;
}

.mr13 {
  margin-right: 13px !important;
}

.mb13 {
  margin-bottom: 13px !important;
}

.ml13 {
  margin-left: 13px !important;
}

.pt13 {
  padding-top: 13px !important;
}

.pr13 {
  padding-right: 13px !important;
}

.pb13 {
  padding-bottom: 13px !important;
}

.pl13 {
  padding-left: 13px !important;
}

.mt14 {
  margin-top: 14px !important;
}

.mr14 {
  margin-right: 14px !important;
}

.mb14 {
  margin-bottom: 14px !important;
}

.ml14 {
  margin-left: 14px !important;
}

.pt14 {
  padding-top: 14px !important;
}

.pr14 {
  padding-right: 14px !important;
}

.pb14 {
  padding-bottom: 14px !important;
}

.pl14 {
  padding-left: 14px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.mr15 {
  margin-right: 15px !important;
}

.mb15 {
  margin-bottom: 15px !important;
}

.ml15 {
  margin-left: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.pr15 {
  padding-right: 15px !important;
}

.pb15 {
  padding-bottom: 15px !important;
}

.pl15 {
  padding-left: 15px !important;
}

.mt16 {
  margin-top: 16px !important;
}

.mr16 {
  margin-right: 16px !important;
}

.mb16 {
  margin-bottom: 16px !important;
}

.ml16 {
  margin-left: 16px !important;
}

.pt16 {
  padding-top: 16px !important;
}

.pr16 {
  padding-right: 16px !important;
}

.pb16 {
  padding-bottom: 16px !important;
}

.pl16 {
  padding-left: 16px !important;
}

.mt17 {
  margin-top: 17px !important;
}

.mr17 {
  margin-right: 17px !important;
}

.mb17 {
  margin-bottom: 17px !important;
}

.ml17 {
  margin-left: 17px !important;
}

.pt17 {
  padding-top: 17px !important;
}

.pr17 {
  padding-right: 17px !important;
}

.pb17 {
  padding-bottom: 17px !important;
}

.pl17 {
  padding-left: 17px !important;
}

.mt18 {
  margin-top: 18px !important;
}

.mr18 {
  margin-right: 18px !important;
}

.mb18 {
  margin-bottom: 18px !important;
}

.ml18 {
  margin-left: 18px !important;
}

.pt18 {
  padding-top: 18px !important;
}

.pr18 {
  padding-right: 18px !important;
}

.pb18 {
  padding-bottom: 18px !important;
}

.pl18 {
  padding-left: 18px !important;
}

.mt19 {
  margin-top: 19px !important;
}

.mr19 {
  margin-right: 19px !important;
}

.mb19 {
  margin-bottom: 19px !important;
}

.ml19 {
  margin-left: 19px !important;
}

.pt19 {
  padding-top: 19px !important;
}

.pr19 {
  padding-right: 19px !important;
}

.pb19 {
  padding-bottom: 19px !important;
}

.pl19 {
  padding-left: 19px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.mr20 {
  margin-right: 20px !important;
}

.mb20 {
  margin-bottom: 20px !important;
}

.ml20 {
  margin-left: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.pr20 {
  padding-right: 20px !important;
}

.pb20 {
  padding-bottom: 20px !important;
}

.pl20 {
  padding-left: 20px !important;
}

.mt21 {
  margin-top: 21px !important;
}

.mr21 {
  margin-right: 21px !important;
}

.mb21 {
  margin-bottom: 21px !important;
}

.ml21 {
  margin-left: 21px !important;
}

.pt21 {
  padding-top: 21px !important;
}

.pr21 {
  padding-right: 21px !important;
}

.pb21 {
  padding-bottom: 21px !important;
}

.pl21 {
  padding-left: 21px !important;
}

.mt22 {
  margin-top: 22px !important;
}

.mr22 {
  margin-right: 22px !important;
}

.mb22 {
  margin-bottom: 22px !important;
}

.ml22 {
  margin-left: 22px !important;
}

.pt22 {
  padding-top: 22px !important;
}

.pr22 {
  padding-right: 22px !important;
}

.pb22 {
  padding-bottom: 22px !important;
}

.pl22 {
  padding-left: 22px !important;
}

.mt23 {
  margin-top: 23px !important;
}

.mr23 {
  margin-right: 23px !important;
}

.mb23 {
  margin-bottom: 23px !important;
}

.ml23 {
  margin-left: 23px !important;
}

.pt23 {
  padding-top: 23px !important;
}

.pr23 {
  padding-right: 23px !important;
}

.pb23 {
  padding-bottom: 23px !important;
}

.pl23 {
  padding-left: 23px !important;
}

.mt24 {
  margin-top: 24px !important;
}

.mr24 {
  margin-right: 24px !important;
}

.mb24 {
  margin-bottom: 24px !important;
}

.ml24 {
  margin-left: 24px !important;
}

.pt24 {
  padding-top: 24px !important;
}

.pr24 {
  padding-right: 24px !important;
}

.pb24 {
  padding-bottom: 24px !important;
}

.pl24 {
  padding-left: 24px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.mr25 {
  margin-right: 25px !important;
}

.mb25 {
  margin-bottom: 25px !important;
}

.ml25 {
  margin-left: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.pr25 {
  padding-right: 25px !important;
}

.pb25 {
  padding-bottom: 25px !important;
}

.pl25 {
  padding-left: 25px !important;
}

.mt26 {
  margin-top: 26px !important;
}

.mr26 {
  margin-right: 26px !important;
}

.mb26 {
  margin-bottom: 26px !important;
}

.ml26 {
  margin-left: 26px !important;
}

.pt26 {
  padding-top: 26px !important;
}

.pr26 {
  padding-right: 26px !important;
}

.pb26 {
  padding-bottom: 26px !important;
}

.pl26 {
  padding-left: 26px !important;
}

.mt27 {
  margin-top: 27px !important;
}

.mr27 {
  margin-right: 27px !important;
}

.mb27 {
  margin-bottom: 27px !important;
}

.ml27 {
  margin-left: 27px !important;
}

.pt27 {
  padding-top: 27px !important;
}

.pr27 {
  padding-right: 27px !important;
}

.pb27 {
  padding-bottom: 27px !important;
}

.pl27 {
  padding-left: 27px !important;
}

.mt28 {
  margin-top: 28px !important;
}

.mr28 {
  margin-right: 28px !important;
}

.mb28 {
  margin-bottom: 28px !important;
}

.ml28 {
  margin-left: 28px !important;
}

.pt28 {
  padding-top: 28px !important;
}

.pr28 {
  padding-right: 28px !important;
}

.pb28 {
  padding-bottom: 28px !important;
}

.pl28 {
  padding-left: 28px !important;
}

.mt29 {
  margin-top: 29px !important;
}

.mr29 {
  margin-right: 29px !important;
}

.mb29 {
  margin-bottom: 29px !important;
}

.ml29 {
  margin-left: 29px !important;
}

.pt29 {
  padding-top: 29px !important;
}

.pr29 {
  padding-right: 29px !important;
}

.pb29 {
  padding-bottom: 29px !important;
}

.pl29 {
  padding-left: 29px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.mr30 {
  margin-right: 30px !important;
}

.mb30 {
  margin-bottom: 30px !important;
}

.ml30 {
  margin-left: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.pr30 {
  padding-right: 30px !important;
}

.pb30 {
  padding-bottom: 30px !important;
}

.pl30 {
  padding-left: 30px !important;
}

.mt31 {
  margin-top: 31px !important;
}

.mr31 {
  margin-right: 31px !important;
}

.mb31 {
  margin-bottom: 31px !important;
}

.ml31 {
  margin-left: 31px !important;
}

.pt31 {
  padding-top: 31px !important;
}

.pr31 {
  padding-right: 31px !important;
}

.pb31 {
  padding-bottom: 31px !important;
}

.pl31 {
  padding-left: 31px !important;
}

.mt32 {
  margin-top: 32px !important;
}

.mr32 {
  margin-right: 32px !important;
}

.mb32 {
  margin-bottom: 32px !important;
}

.ml32 {
  margin-left: 32px !important;
}

.pt32 {
  padding-top: 32px !important;
}

.pr32 {
  padding-right: 32px !important;
}

.pb32 {
  padding-bottom: 32px !important;
}

.pl32 {
  padding-left: 32px !important;
}

.mt33 {
  margin-top: 33px !important;
}

.mr33 {
  margin-right: 33px !important;
}

.mb33 {
  margin-bottom: 33px !important;
}

.ml33 {
  margin-left: 33px !important;
}

.pt33 {
  padding-top: 33px !important;
}

.pr33 {
  padding-right: 33px !important;
}

.pb33 {
  padding-bottom: 33px !important;
}

.pl33 {
  padding-left: 33px !important;
}

.mt34 {
  margin-top: 34px !important;
}

.mr34 {
  margin-right: 34px !important;
}

.mb34 {
  margin-bottom: 34px !important;
}

.ml34 {
  margin-left: 34px !important;
}

.pt34 {
  padding-top: 34px !important;
}

.pr34 {
  padding-right: 34px !important;
}

.pb34 {
  padding-bottom: 34px !important;
}

.pl34 {
  padding-left: 34px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.mr35 {
  margin-right: 35px !important;
}

.mb35 {
  margin-bottom: 35px !important;
}

.ml35 {
  margin-left: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.pr35 {
  padding-right: 35px !important;
}

.pb35 {
  padding-bottom: 35px !important;
}

.pl35 {
  padding-left: 35px !important;
}

.art-upload-btn {
  position: relative;
  width: 160px;
  height: 160px;
  background: #fff;
  border: 1px dashed #d7dde4;
  border-radius: 4px;
  text-align: center;
  overflow: hidden;
  transition: border-color 0.2s ease;
}
.art-upload-btn .file {
  display: none;
}
.art-upload-btn .btn {
  position: absolute;
  top: 0;
  left: 0;
  width: 160px;
  height: 160px;
  background: rgba(0, 0, 0, 0);
  z-index: 10;
  border: none;
  cursor: pointer;
}
.art-upload-btn .camera {
  position: absolute;
  top: calc(50% - 10px);
  left: calc(50% - 10px);
  font-size: 28px;
  cursor: pointer;
  color: #000;
  z-index: 4;
}
.art-upload-btn .preview {
  width: 100%;
  height: 100%;
  display: flex;
  border: transparent solid 1px;
}
.art-upload-btn .error {
  border: 1px solid #f64747 !important;
}
.art-upload-btn .tool {
  display: none;
}
.art-upload-btn .tool div {
  cursor: pointer;
}
.art-upload-btn .img {
  width: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
.art-upload-btn .loading {
  position: absolute;
  font-size: 12px;
  text-align: center;
  width: 100%;
  height: 100%;
  top: 45%;
  color: #aaa;
}
.art-upload-btn .tool.active {
  display: block;
  z-index: 4;
  position: absolute;
  top: 0;
  display: flex;
  width: 100%;
  height: 100%;
  justify-content: space-evenly;
  align-items: center;
  background: rgba(51, 51, 51, 0.5);
  color: #fff;
}
.art-upload-btn .tool.active div {
  cursor: pointer;
  width: 20px;
  height: 20px;
}
.art-upload-btn .tool.active .view {
  background: url(../static/img/view.351e03b7.png) no-repeat center;
  background-size: 20px 20px;
}
.art-upload-btn .tool.active .del {
  background: url(data:image/png;base64,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) no-repeat center;
  background-size: 20px 20px;
}

.fullscreen {
  display: none;
}

.fullscreenContainer {
  display: none;
}
.fullscreenContainer .loading {
  position: absolute;
  text-align: center;
  color: #666;
}
.fullscreenContainer .exit {
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: fixed;
  text-align: center;
  top: 20px;
  right: 20px;
  color: #fff;
  font-size: 20px;
  background-color: #333;
  border-radius: 100%;
}
.fullscreenContainer .pre {
  top: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: fixed;
  text-align: center;
  left: 20px;
  color: #fff;
  font-size: 20px;
  background-color: #333;
  border-radius: 100%;
}
.fullscreenContainer .next {
  top: 50%;
  cursor: pointer;
  width: 40px;
  height: 40px;
  line-height: 40px;
  position: fixed;
  text-align: center;
  right: 20px;
  color: #fff;
  font-size: 20px;
  background-color: #333;
  border-radius: 100%;
}

.fullscreen.active {
  display: block;
  position: absolute;
  top: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.3);
  width: 100%;
  height: 100%;
  z-index: 9999;
  display: flex;
  justify-content: center;
  align-items: center;
}

.fullscreenContainer.active {
  display: block;
  display: flex;
  justify-content: center;
  align-items: center;
  z-index: 99999;
  position: absolute;
  top: 0;
  left: 0;
  overflow-y: auto;
  width: 100%;
  min-height: 100%;
}

.fullscreenImg {
  max-width: 100%;
}

.content-panel .el-textarea__inner {
  min-height: 32px !important;
}

.source-label {
  width: auto !important;
  margin-right: 10px !important;
  color: #9CABC0;
  font-size: 14px;
}

.setFileds {
  width: 100%;
  display: flex;
  align-items: center;
  margin: 5px 0;
}
.setFileds .field-content {
  margin-left: 10px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.setFileds .field-content :first-child {
  flex: 1;
}
.setFileds .field-content .last-ipt {
  width: 200px;
  max-width: 200px;
  margin-left: 10px;
}
.setFileds .opt-box {
  width: 100px;
}

.underline_cp {
  color: #003865;
  text-decoration: underline;
  cursor: pointer;
}

.whiteSpaceCell {
  white-space: pre-wrap;
}

.checkbox-group {
  display: flex;
  width: 50%;
  align-items: center;
}
.checkbox-group .checkbox-group-text {
  margin-left: 10px;
}
.checkbox-group > input[type=checkbox] {
  z-index: 1;
}

.former-name {
  min-height: 18px;
}

.key-high {
  color: #FF7200;
}

.hover-key {
  background: #fff;
  position: absolute;
  border: 1px solid #e4e4e4;
  left: 0;
  padding: 5px;
  z-index: 12;
}

.key-high-modal {
  background: rgb(255, 255, 0);
}

.NotExport .error {
  border: 1px solid #e4e4e4 !important;
}
.NotExport input.error:hover, .NotExport textarea.error:hover,
.NotExport input.empty:hover, .NotExport textarea.empty:hover {
  border: 1px solid #003865 !important;
}
.NotExport .select-inner {
  background-color: #ffffff !important;
}

.cbi1-dropdown-title-case,
.cbi-module-dropdown-title-case {
  cursor: pointer;
  position: relative;
  background: #003865;
  color: #fff;
  padding: 5px 18px !important;
  line-height: 22px !important;
  font-size: 12px !important;
  border-radius: 3px;
  text-align: center;
}
.cbi1-dropdown-title-case::after,
.cbi-module-dropdown-title-case::after {
  content: "\e7b2";
  font-family: "iconfont" !important;
  /* 使用Iconfont字体 */
  display: inline-block;
  font-size: 18px;
  /* 设置图标的大小 */
  font-weight: 400;
  vertical-align: bottom;
}
.cbi1-dropdown-title-case.underline,
.cbi-module-dropdown-title-case.underline {
  text-decoration: underline;
}
.cbi1-dropdown-title-case:hover,
.cbi-module-dropdown-title-case:hover {
  background: #1179C4;
}
.cbi1-dropdown-title-case > p,
.cbi-module-dropdown-title-case > p {
  display: none;
  position: absolute;
  width: 200px;
  top: 50%;
  transform: translateY(-50%);
  right: 100%;
  padding: 10px;
  text-align: left;
  color: #666;
  font-weight: 400;
  font-size: 12px;
  box-shadow: #aaa 0px 0px 4px;
  z-index: 301;
  background-color: #fff;
  border-radius: 4px;
}
.cbi1-dropdown-title-case > p::after,
.cbi-module-dropdown-title-case > p::after {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  right: -16px;
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  border: 8px solid transparent;
  border-left-color: #ddd;
}

.cbi-module-dropdown-title-case {
  font-size: 14px !important;
}

.dropdown-title-title {
  cursor: pointer;
  position: relative;
  border-left: none !important;
}
.dropdown-title-title.underline {
  text-decoration: underline;
  color: unset !important;
}
.dropdown-title-title > p {
  display: none;
  position: absolute;
  width: 200px;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  padding: 10px;
  text-align: left;
  color: #666;
  font-weight: 400;
  font-size: 12px;
  box-shadow: #aaa 0px 0px 4px;
  z-index: 13;
  background-color: #fff;
  border-radius: 4px;
}
.dropdown-title-title > p::before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: -16px;
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  border: 8px solid transparent;
  border-right-color: #ddd;
}

.dropdown-title {
  cursor: pointer;
  position: relative;
  border-left: none !important;
}
.dropdown-title::after {
  content: "\e7b2";
  font-family: "iconfont" !important;
  /* 使用Iconfont字体 */
  display: inline-block;
  font-size: 18px;
  /* 设置图标的大小 */
  font-weight: 400;
  vertical-align: bottom;
}
.dropdown-title.underline {
  text-decoration: underline;
  color: unset !important;
}
.dropdown-title > p {
  display: none;
  position: absolute;
  width: 200px;
  top: 50%;
  transform: translateY(-50%);
  left: 100%;
  padding: 10px;
  text-align: left;
  color: #666;
  font-weight: 400;
  font-size: 12px;
  box-shadow: #aaa 0px 0px 4px;
  z-index: 13;
  background-color: #fff;
  border-radius: 4px;
}
.dropdown-title > p::before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: -16px;
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  border: 8px solid transparent;
  border-right-color: #ddd;
}

.cbi-dropdown {
  position: relative;
  display: inline-block;
  text-align: left;
}
.cbi-dropdown.active .dropdown-title::after,
.cbi-dropdown.active .cbi-module-dropdown-title-case::after,
.cbi-dropdown.active .cbi1-dropdown-title-case::after {
  content: "\e743";
  font-family: "iconfont" !important;
  /* 使用Iconfont字体 */
  display: inline-block;
  font-size: 18px;
  /* 设置图标的大小 */
  font-weight: 400;
  vertical-align: bottom;
}
.cbi-dropdown .icon {
  font-size: 20px !important;
  font-weight: 400;
}
.cbi-dropdown .dropdown-content, .cbi-dropdown .sub-dropdown-content {
  display: none;
  position: absolute;
  background-color: #fff;
  min-width: 120px;
  box-shadow: 0px 8px 16px 0px rgba(0, 0, 0, 0.2);
  z-index: 301;
  font-weight: 400;
  font-size: 14px;
  padding: 10px 0;
}
.cbi-dropdown .dropdown-content .highlightcheckitem, .cbi-dropdown .sub-dropdown-content .highlightcheckitem {
  margin-right: 5px;
}
.cbi-dropdown .dropdown-content span, .cbi-dropdown .sub-dropdown-content span {
  color: #666;
  padding: 6px 10px;
  text-decoration: none;
  display: block;
  cursor: pointer;
}
.cbi-dropdown .sub-dropdown {
  position: relative;
}
.cbi-dropdown .sub-dropdown .sub-dropdown-content {
  left: 100%;
  top: 0;
  width: -webkit-fit-content;
  width: -moz-fit-content;
  width: fit-content;
  /* 关键：强制宽度适应内容 */
  white-space: nowrap;
  /* 可选：防止内容换行 */
}
.cbi-dropdown .sub-dropdown .right-after::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0px;
  transform: translateY(-50%);
  border: 5px solid transparent;
  border-left-color: #666;
}

.cbi-dropdown.active .dropdown-content,
.sub-dropdown:hover .sub-dropdown-content {
  display: block;
}

.dropdown-content span:hover, .sub-dropdown-content span:hover {
  background-color: #f1f1f1;
}

.cbi-dropdown-hover {
  position: relative;
  display: inline-block;
  cursor: pointer;
}
.cbi-dropdown-hover .dropdown-trigger {
  font-size: 14px;
  color: #666;
  transition: color 0.2s ease, transform 0.2s ease;
  display: inline-block;
}
.cbi-dropdown-hover .dropdown-trigger:hover {
  color: #003865;
}
.cbi-dropdown-hover .dropdown-panel {
  display: none;
  position: absolute;
  right: 0;
  top: 100%;
  background-color: #fff;
  min-width: 100px;
  box-shadow: 0px 4px 12px 0px rgba(0, 0, 0, 0.15);
  border-radius: 4px;
  z-index: 301;
  padding: 6px 0;
}
.cbi-dropdown-hover .dropdown-panel span {
  display: block;
  padding: 8px 12px;
  color: #333;
  font-size: 13px;
  white-space: nowrap;
  cursor: pointer;
  transition: background-color 0.2s ease;
}
.cbi-dropdown-hover .dropdown-panel span:hover {
  background-color: #f5f7fa;
  color: #003865;
}
.cbi-dropdown-hover.active .dropdown-panel {
  display: block;
}
.cbi-dropdown-hover.active .dropdown-trigger {
  color: #003865;
  transform: rotate(180deg);
}

.highlight input, .highlight select, .highlight textarea, .highlight .higlightSpan, .highlight .tags, .highlight .editor, .highlight .select-box > .select-inner {
  background-color: rgb(253, 233, 217) !important;
}
.highlight input > option, .highlight select > option, .highlight textarea > option, .highlight .higlightSpan > option, .highlight .tags > option, .highlight .editor > option, .highlight .select-box > .select-inner > option {
  background-color: #fff !important;
}

.icon-download {
  font-size: 18px !important;
}

.hide-div {
  display: none !important;
}

.hide-div-textarea {
  display: none !important;
}

.dialog-edd-pending .general-info {
  margin-top: 10px;
  flex: 1;
}
.dialog-edd-pending .general-info li {
  display: flex;
  min-height: 50px;
}
.dialog-edd-pending .general-info li textarea {
  height: 40px;
}
.dialog-edd-pending .general-info li > span {
  display: flex;
  width: auto;
  padding: 3px 10px;
  border-left: 1px solid #efefef;
  display: flex;
  align-items: center;
}
.dialog-edd-pending .general-info li > span:nth-child(1) {
  border-left: 0;
  width: 300px;
}
.dialog-edd-pending .general-info li > span:nth-child(3) {
  width: 220px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
}
.dialog-edd-pending .general-info li > span:nth-child(2) {
  flex: 1;
}
.dialog-edd-pending .general-info li > span:nth-child(4) {
  width: 80px;
  display: flex;
}
.dialog-edd-pending .general-info li:nth-of-type(odd) {
  background: #f1f3fa;
}
.dialog-edd-pending .general-info li:nth-of-type(even) {
  background: #fff;
}
.dialog-edd-pending .general-info li:first-child {
  height: 45px;
  background: #17365d;
  color: #fff;
  font-weight: bold;
}
.dialog-edd-pending .general-info li:first-child > span {
  height: 100%;
  display: flex;
  flex-direction: row !important;
  align-items: center !important;
}
.dialog-edd-pending .general-info .li-35 {
  height: 35px !important;
  min-height: 35px !important;
}
.dialog-edd-pending .pub-form-item {
  display: flex;
  margin-top: 10px;
}
.dialog-edd-pending .pub-form-item .opertaor {
  width: 80px;
  margin-left: 10px;
}
.dialog-edd-pending .pub-form-item .label {
  display: flex;
  flex-direction: row;
  margin-right: 10px;
  width: 200px;
  min-height: 28px;
  text-align: right;
  justify-content: flex-end;
  align-items: center;
  color: #252733;
  font-size: 14px;
  letter-spacing: 0.5px;
  flex-wrap: wrap;
}
.dialog-edd-pending .pub-form-item .content {
  position: relative;
  display: flex;
  flex: 1;
  align-items: center;
}
.dialog-edd-pending .report-underlink-second {
  border: 0 !important;
  color: #343434;
  text-decoration: underline;
  margin: 10px 0;
}
.dialog-edd-pending .report-underlink, .dialog-edd-pending .report-hyperlink {
  position: relative;
  border: 0 !important;
  color: #17365d;
  cursor: pointer;
}
.dialog-edd-pending .report-underlink.underline, .dialog-edd-pending .report-hyperlink.underline {
  text-decoration: underline;
  color: #0101ff;
}
.dialog-edd-pending .report-underlink.underline .linkbox, .dialog-edd-pending .report-hyperlink.underline .linkbox {
  position: absolute;
  width: 200px;
  top: 50%;
  transform: translateY(-50%);
  left: 75px;
  height: auto;
  padding: 10px;
  text-align: left;
  color: #666;
  font-weight: 400;
  font-size: 12px;
  box-shadow: #aaa 0px 0px 4px;
  z-index: 3;
  background-color: #fff;
  border-radius: 4px;
  white-space: nowrap;
}
.dialog-edd-pending .report-underlink.underline .linkbox span, .dialog-edd-pending .report-hyperlink.underline .linkbox span {
  display: inline-block;
  line-height: 18px;
  text-decoration: underline;
  color: #0101ff;
  white-space: normal;
  word-break: break-word;
  width: 100%;
}
.dialog-edd-pending .report-underlink.underline .linkbox::before, .dialog-edd-pending .report-hyperlink.underline .linkbox::before {
  content: "";
  position: absolute;
  top: calc(50% - 8px);
  left: -16px;
  width: 0;
  height: 0;
  line-height: 0;
  font-size: 0;
  border: 8px solid transparent;
  border-right-color: #ddd;
}
.dialog-edd-pending .report-underlink.disabled, .dialog-edd-pending .report-hyperlink.disabled {
  color: #c4c4c4;
}
.dialog-edd-pending .report-underlink.disabled .linkbox, .dialog-edd-pending .report-hyperlink.disabled .linkbox {
  display: none;
}

.companySearch-info-phk .w-150 {
  width: 130px !important;
}
.companySearch-info-phk .min-width-flex2 {
  min-width: 360px !important;
}

.companySearch-info-phk-company .db-date {
  width: 240px !important;
}
.companySearch-info-phk-company .w-150 {
  width: 130px !important;
}
.companySearch-info-phk-company .max-width-flex {
  min-width: 100px !important;
}
.companySearch-info-phk-company .min-width-flex2 {
  min-width: 360px !important;
}

.highlight-checkbox {
  margin-left: 5px !important;
}

.ck-editor-box .ck-editor {
  width: 100% !important;
  /* 编辑区内：紧跟图片的段落清除浮动（使段落出现在图片下方） */
  /* 可选：让左对齐样式更友好一点（间距） */
}
.ck-editor-box .ck-editor .ck-content figure.image + p {
  clear: both;
}
.ck-editor-box .ck-editor .ck-content figure.image-style-align-left {
  float: left;
  margin: 0 1em 1em 0;
}
.ck-editor-box .ck-editor .ck-read-only {
  background-color: #f2f2f2 !important;
}

.icon-library1 {
  color: #98a6ad;
}

.icon-library1:hover {
  color: #17365d;
  cursor: pointer;
}

.detail-popover {
  width: auto !important;
}
.detail-popover .pop-table {
  width: 350px;
}
.detail-popover .pop-table .el-table thead th {
  font-weight: bold;
  color: #000;
  background-color: #dde5ee;
  height: 50px;
}
.detail-popover .pop-table .el-table .el-table__header,
.detail-popover .pop-table .el-table .el-table__body {
  min-width: 100%;
}
.detail-popover .pop-table .el-table .cell {
  line-height: 18px;
}

.icon-library1.orange {
  color: #ffa500 !important;
}

.es-file-name {
  display: flex;
  align-items: center;
}
.es-file-name .icon {
  width: 30px;
  height: 30px;
}
.es-file-name .icon.icon-excel {
  background: url(../static/img/excel.a89bcae5.png) no-repeat center center;
  background-size: cover;
}

.remarks-text {
  cursor: pointer;
  max-width: 150px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}

.remarks-popover {
  position: relative;
}
.remarks-popover .remarks-close {
  position: absolute;
  top: -8px;
  right: -8px;
  cursor: pointer;
  color: #909399;
}
.remarks-popover .remarks-close:hover {
  color: #409EFF;
}
.remarks-popover .remarks-content {
  white-space: pre-wrap;
  text-align: left;
  word-break: break-word;
  line-height: 1.6;
  padding-right: 10px;
  max-height: 300px;
  overflow-y: auto;
}
