/*reset css*/
html,
body {
  height: 100%;
}
* {
  margin: 0;
  padding: 0;
}
html {
  background: white;
  color: black;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th {
  text-align: inherit;
}
fieldset,
img {
  border: none;
}
iframe {
  display: block;
}
abbr,
acronym {
  border: none;
  font-variant: normal;
}
del {
  text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}
q:before,
q:after {
  content: '';
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
a:hover,
a:focus {
  text-decoration: none;
}
ins,
a {
  text-decoration: none;
}
a:focus,
*:focus {
  text-decoration: none;
  outline: none;
}
.clearfix {
  zoom: 1;
}
.clearfix:before {
  content: "";
  display: table;
}
.clearfix:after {
  content: "";
  display: table;
  clear: both;
  overflow: hidden;
}
.clear {
  clear: both;
  display: block;
  font-size: 0;
  height: 0;
  line-height: 0;
  overflow: hidden;
}
.hide {
  display: none;
}
.block {
  display: block;
}
.fl {
  float: left;
}
.fr {
  float: right;
}
/*页面切换*/
.drop-enter {
  transform: scale(0.5);
  transform-origin: 50% 100%;
}
.drop-enter .drop-enter-active {
  transform: scale(1);
  transition: all 0.4s;
}
.drop-leave {
  /* transform: scale(0.5); */
  position: absolute;
  top: 90px;
  background: #fff;
  z-index: 10000;
  opacity: 1;
}
.drop-leave .drop-leave-active {
  opacity: 1;
  top: 100%;
  transition: all 0.4s;
}
.up-enter {
  transform: scale(1.5);
}
.up-enter .up-enter-active {
  transform: scale(1);
  transition: all 0.5s;
}
.up-leave {
  position: absolute;
  top: 0;
  z-index: 10000;
  opacity: 1;
}
.up-leave .up-leave-active {
  opacity: 1;
  top: -100%;
  transition: all 0.5s;
}
.right-enter {
  position: absolute;
  top: 0;
  left: -100%;
  /*z-index: 1;*/
  width: 100%;
  height: 100%;
  -webkit-animation: rightIn 1s both ease;
  animation: rightIn 1s both ease;
}
.right-leave {
  position: absolute;
  top: 0;
  left: 0;
  z-index: 10;
  /*background: RGB(238,238,238);*/
  width: 100%;
  height: 100%;
  -webkit-animation: rightOut 1s both ease;
  animation: rightOut 1s both ease;
}
@-webkit-keyframes rightIn {
  0% {
    -webkit-transform: scale(0.8);
    left: -100%;
  }
  25% {
    -webkit-transform: scale(0.8);
    left: -60%;
  }
  75% {
    -webkit-transform: scale(0.8);
    left: 0%;
  }
  100% {
    -webkit-transform: scale(1);
    left: 0%;
  }
}
@keyframes rightIn {
  0% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    left: -100%;
  }
  25% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    left: -60%;
  }
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    left: 0%;
  }
  100% {
    -webkit-transform: scale(1);
    transform: scale(1);
    left: 0%;
  }
}
@-webkit-keyframes rightOut {
  25% {
    -webkit-transform: scale(0.8);
    left: 0%;
  }
  75% {
    -webkit-transform: scale(0.8);
    left: 80%;
  }
  100% {
    -webkit-transform: scale(0.8);
    left: 100%;
  }
}
@keyframes rightOut {
  25% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    left: 0%;
  }
  75% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    left: 80%;
  }
  100% {
    -webkit-transform: scale(0.8);
    transform: scale(0.8);
    left: 100%;
  }
}
/*加载动画*/
.spinner {
  width: 60px;
  height: 60px;
  background-color: #67CF22;
  margin: 100px auto;
  -webkit-animation: rotateplane 1.2s infinite ease-in-out;
  animation: rotateplane 1.2s infinite ease-in-out;
}
@-webkit-keyframes rotateplane {
  0% {
    -webkit-transform: perspective(120px);
  }
  50% {
    -webkit-transform: perspective(120px) rotateY(180deg);
  }
  100% {
    -webkit-transform: perspective(120px) rotateY(180deg) rotateX(180deg);
  }
}
@keyframes rotateplane {
  0% {
    transform: perspective(120px) rotateX(0deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(0deg) rotateY(0deg);
  }
  50% {
    transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
    -webkit-transform: perspective(120px) rotateX(-180.1deg) rotateY(0deg);
  }
  100% {
    transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
    -webkit-transform: perspective(120px) rotateX(-180deg) rotateY(-179.9deg);
  }
}
.header_r {
  margin-right: 50px;
  height: auto;
  float: right;
}
.ct_l {
  float: left;
  width: 200px;
  height: 100%;
  margin-right: 20px;
  background: #fff;
}
.ct_r {
  float: left;
  width: cacl(-120%);
  height: 100%;
}
.autoComplete {
  -webkit-transition: width 0.3s, margin-left 0.3s;
  transition: width 0.3s, margin-left 0.3s;
  width: 0;
  background: transparent;
  border-radius: 0;
  border-bottom: 1px solid #d9d9d9;
}
.input {
  border: 0;
  padding-left: 0;
  padding-right: 0;
  box-shadow: none !important;
}
.autoCompleteShow {
  width: 210px;
  margin-left: 8px;
}
.searchInput {
  margin: 0 5px;
  padding: 0;
  width: 190px;
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
  transition: all linear 0.5s;
  text-indent: 10px;
}
.searchInput:active .searchInput:focus .searchInput:hover {
  box-shadow: none;
  border: none;
  border-bottom: 1px solid #ccc;
  border-radius: 0;
}
.searchIcon {
  cursor: pointer;
  margin-right: 8px;
  font-size: 16px;
}
.searchHeader {
  width: 100%;
  text-align: right;
  line-height: 40px;
}
.searchSpan {
  padding: 0;
  margin: 0 12px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  height: 40px;
}
/* 提示语样式 */
.tips_div {
  width: 100%;
  height: 36px;
  margin: 16px 0;
  line-height: 36px;
  border: 1px solid #91d5ff;
  border-radius: 3px;
  padding-left: 12px;
  background-color: #e6f7ff;
  color: #565c5f;
  font-size: 12px;
}
.tips_div i {
  color: #1890ff;
  font-size: 14px;
  margin-right: 5px;
}
.body {
  padding: 30px 20px;
}
.bodyContent {
  padding: 20px;
  background-color: #ffffff;
}
.operateContent {
  padding-top: 15px;
  background-color: #ffffff;
}
.toolBar {
  padding: 10px 10px 10px 0;
}
.nextSiblingButton {
  margin-left: 10px;
}
.content_t_r {
  padding-right: 16px;
}
.ant-form-inline .has-feedback {
  width: 100%;
}
/** 透明化table的header滚动条 **/
.ant-table-fixed-header .ant-table-scroll .ant-table-header::-webkit-scrollbar {
  opacity: 0.001;
}
/** 透明化table的右固定滚动条 **/
.ant-table-fixed-header .ant-table-body-inner::-webkit-scrollbar {
  opacity: 0.001;
}
.resourceModel .ant-modal-body {
  padding: 0 24px;
}
.sk-circle {
  margin: 50px auto;
  width: 50px;
  height: 50px;
  position: relative;
}
.sk-circle .sk-child {
  width: 100%;
  height: 100%;
  position: absolute;
  left: 0;
  top: 0;
}
.sk-circle .sk-child:before {
  content: '';
  display: block;
  margin: 0 auto;
  width: 15%;
  height: 15%;
  background-color: #1890ff;
  border-radius: 100%;
  -webkit-animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
  animation: sk-circleBounceDelay 1.2s infinite ease-in-out both;
}
.sk-circle .sk-circle2 {
  -webkit-transform: rotate(30deg);
  -ms-transform: rotate(30deg);
  transform: rotate(30deg);
}
.sk-circle .sk-circle3 {
  -webkit-transform: rotate(60deg);
  -ms-transform: rotate(60deg);
  transform: rotate(60deg);
}
.sk-circle .sk-circle4 {
  -webkit-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  transform: rotate(90deg);
}
.sk-circle .sk-circle5 {
  -webkit-transform: rotate(120deg);
  -ms-transform: rotate(120deg);
  transform: rotate(120deg);
}
.sk-circle .sk-circle6 {
  -webkit-transform: rotate(150deg);
  -ms-transform: rotate(150deg);
  transform: rotate(150deg);
}
.sk-circle .sk-circle7 {
  -webkit-transform: rotate(180deg);
  -ms-transform: rotate(180deg);
  transform: rotate(180deg);
}
.sk-circle .sk-circle8 {
  -webkit-transform: rotate(210deg);
  -ms-transform: rotate(210deg);
  transform: rotate(210deg);
}
.sk-circle .sk-circle9 {
  -webkit-transform: rotate(240deg);
  -ms-transform: rotate(240deg);
  transform: rotate(240deg);
}
.sk-circle .sk-circle10 {
  -webkit-transform: rotate(270deg);
  -ms-transform: rotate(270deg);
  transform: rotate(270deg);
}
.sk-circle .sk-circle11 {
  -webkit-transform: rotate(300deg);
  -ms-transform: rotate(300deg);
  transform: rotate(300deg);
}
.sk-circle .sk-circle12 {
  -webkit-transform: rotate(330deg);
  -ms-transform: rotate(330deg);
  transform: rotate(330deg);
}
.sk-circle .sk-circle2:before {
  -webkit-animation-delay: -1.1s;
  animation-delay: -1.1s;
}
.sk-circle .sk-circle3:before {
  -webkit-animation-delay: -1s;
  animation-delay: -1s;
}
.sk-circle .sk-circle4:before {
  -webkit-animation-delay: -0.9s;
  animation-delay: -0.9s;
}
.sk-circle .sk-circle5:before {
  -webkit-animation-delay: -0.8s;
  animation-delay: -0.8s;
}
.sk-circle .sk-circle6:before {
  -webkit-animation-delay: -0.7s;
  animation-delay: -0.7s;
}
.sk-circle .sk-circle7:before {
  -webkit-animation-delay: -0.6s;
  animation-delay: -0.6s;
}
.sk-circle .sk-circle8:before {
  -webkit-animation-delay: -0.5s;
  animation-delay: -0.5s;
}
.sk-circle .sk-circle9:before {
  -webkit-animation-delay: -0.4s;
  animation-delay: -0.4s;
}
.sk-circle .sk-circle10:before {
  -webkit-animation-delay: -0.3s;
  animation-delay: -0.3s;
}
.sk-circle .sk-circle11:before {
  -webkit-animation-delay: -0.2s;
  animation-delay: -0.2s;
}
.sk-circle .sk-circle12:before {
  -webkit-animation-delay: -0.1s;
  animation-delay: -0.1s;
}
@-webkit-keyframes sk-circleBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
@keyframes sk-circleBounceDelay {
  0%,
  80%,
  100% {
    -webkit-transform: scale(0);
    transform: scale(0);
  }
  40% {
    -webkit-transform: scale(1);
    transform: scale(1);
  }
}
.selectorListItem:hover {
  background-color: rgba(0, 0, 0, 0.1);
}
.operate .ant-input {
  width: 200px;
  margin: 0 8px 8px 0;
}
.myNowrap {
  white-space: nowrap;
}
.tableEllipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  word-break: normal;
}
.baseTableEllipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  width: 100%;
}
/*脏标记*/
.k-dirty {
  position: absolute;
  width: 0px;
  height: 0px;
  border-style: solid;
  border-color: #f00 transparent transparent #f00;
  overflow: hidden;
  left: 0;
  top: 0;
  z-index: 999;
}
.main {
  padding: 10px 10px 0 10px;
}
.mainLayout {
  background-color: #fff !important;
}
.mainLayout .ant-layout-content {
  padding: 10px;
}
.content {
  background-color: #fff;
}
.maxHeight {
  height: 100%;
}
.maxWidth {
  width: 100%;
}
.search-select {
  border: none;
  outline: none;
  box-shadow: none;
}
.search-select .ant-select-selection {
  border: none;
  outline: none;
  box-shadow: none;
}
.search-select .ant-select-selection:hover .search-select .ant-select-selection:focus .search-select .ant-select-selection:active {
  border: none;
  outline: none;
  box-shadow: none;
}
.search-select .ant-select-open {
  border: none;
  outline: none;
  box-shadow: none;
}
.smallTable .ant-table-body {
  margin: 0 !important;
}
.smallTable tbody tr {
  border-bottom: 1px solid #e8e8e8;
}
.smallTable .ant-table-fixed {
  border-bottom: 1px solid #e8e8e8 !important;
}
.smallTable .ant-table-header {
  background-color: #f8f8f8 !important;
}
.smallTable .ant-table-thead {
  background-color: #f8f8f8 !important;
}
.smallTable .ant-table-thead tr th {
  background-color: #f8f8f8 !important;
}
/*.a:hover{*/
/*text-decoration: underline;*/
/*}*/
.ant-collapse-item {
  border-bottom: none;
  margin-bottom: 10px;
}
.ant-collapse-header {
  background-color: #eee;
  border-radius: 5px;
}
.ant-collapse-content {
  padding: 0px;
}
.ant-collapse-content:nth-child(2) {
  padding-bottom: 0px;
}
.ant-col-10 .ant-form-item-label {
  width: 100%;
  display: inline-block;
  line-height: 1.5;
  white-space: initial;
  padding-right: 5px;
}
.tableHeader {
  display: inline-block;
}
.emptyPhotoUploader .ant-upload-picture-card-wrapper {
  display: none;
}
.emptyPhotoUploader .defaultAvatar {
  padding: 8px;
  border: 1px solid #d9d9d9;
  background-color: #fff;
  border-radius: 4px;
}
.emptyPhotoUploader .defaultAvatar img {
  width: 100%;
  height: 100%;
}
.iconPhotoUploader {
  margin-left: 67px;
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  z-index: 1000;
}
.iconPhotoUploader .ant-upload-list-item {
  width: 122px;
  height: 160px;
  padding: 0;
  margin: -1px 0 0 -1px;
}
.iconPhotoUploader .ant-upload-list-item-thumbnail {
  width: 122px;
  height: 160px;
}
.iconPhotoUploader .defaultContainer .ant-upload-picture-card-wrapper {
  display: none;
}
.iconPhotoUploader .container {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.iconPhotoUploader .defaultAvatar {
  width: 120px;
  height: auto;
  padding: 0;
  background-color: #fff;
  border-radius: 4px;
}
.iconPhotoUploader .defaultAvatar img {
  width: 100%;
  height: 100%;
}
.tablePhotoToolTip .ant-tooltip-arrow {
  border-right-color: #fff !important;
}
.tablePhotoToolTip .ant-tooltip-inner {
  background-color: #fff;
}
.ant-layout-sider {
  float: left;
  clear: both;
}
.defaultColor {
  color: #CCCCCC;
}
.loadingSpin {
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
}
.loadingSpin .ant-spin-lg .ant-spin-dot {
  width: 50px;
  height: 50px;
}
.loadingSpin .ant-spin-lg .ant-spin-dot i {
  width: 22px;
  height: 22px;
}
.loadingSpin .ant-spin-text {
  font-size: 12pt;
}
.ant-tree li span.ant-tree-switcher:empty {
  display: inline-block;
}
.globalContent {
  height: 100%;
  padding: 8px;
  background-color: #f0f3f5;
}
.globalContent_div {
  background-color: #fff;
  height: 100%;
  padding: 8px 8px 16px 8px;
}
.homeGlobalContent {
  height: 100%;
  padding: 12px 12px 0 12px;
  background-color: #EFF3F6;
}
.ant-btn {
  height: 30px;
  border-radius: 5px !important;
  padding: 0 13px;
}
.editCollapse {
  background-color: #fff !important;
}
.editCollapse .ant-collapse-header {
  padding: 0 16px 8px 6px !important;
  border-bottom: 1px solid #e8e8e8;
  font-weight: bold;
  margin-bottom: 24px;
}
.editCollapse .ant-collapse-header .ant-collapse-arrow {
  text-align: right !important;
  right: 6px;
}
.editCollapse .ant-collapse-item {
  border-bottom: none !important;
}
.editCollapse .ant-collapse-content-box {
  padding: 0 16px !important;
}
.ant-input {
  padding: 3px 11px;
  height: 30px;
  border-radius: 5px !important;
}
.ant-select-selection {
  border-radius: 5px !important;
}
.ant-select-selection--single {
  height: 30px;
}
.ant-form-item {
  margin-bottom: 16px;
}
.ant-form-item .ant-form-item-label {
  line-height: 30px;
}
.ant-form-item .ant-form-item-label label {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  color: rgba(0, 0, 0, 0.65);
}
.ant-form-item .ant-form-item-control {
  line-height: 30px;
}
.ant-menu-item .anticon,
.ant-menu-submenu-title .anticon {
  margin-right: 12px;
}
.ant-pagination {
  float: right;
  margin-top: 16px;
  width: 100%;
  text-align: right;
}
.ant-pagination .ant-select-dropdown {
  text-align: center;
}
.ant-pagination .ant-pagination-total-text {
  float: left;
}
.ant-btn {
  padding: 0 13px;
  height: 30px;
  border-radius: 5px !important;
}
.ant-modal-content .ant-modal-header {
  background-color: #fafafa;
  padding: 9px 16px;
}
.ant-modal-content .ant-modal-header .ant-modal-title {
  font-size: 14px;
  font-weight: bold;
}
.ant-modal-content .ant-modal-close-x {
  width: 40px;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
}
.ant-modal-content .ant-modal-body {
  padding: 24px 16px;
}
.ant-modal-content .ant-modal-footer {
  padding: 8px 16px;
}
.ant-tabs-bar {
  margin-bottom: 0 !important;
}
.ant-layout {
  display: block;
}
.ant-select-arrow {
  right: 8px;
}
.ant-card-head {
  padding: 0 12px;
}
.ant-card-extra {
  padding: 12px 0;
}
.ant-card-head-title {
  padding: 12px 0;
  font-weight: bold;
}
.buttonGutter {
  margin-left: 8px;
}
.rowGutter {
  margin-top: 12px;
}
.rowDark {
  background-color: #F5FCFF;
}
.search .ant-input {
  border-top-right-radius: 0!important;
  border-bottom-right-radius: 0!important;
}
.search .ant-btn {
  border-top-left-radius: 0!important;
  border-bottom-left-radius: 0!important;
}
.basePadding {
  padding: 8px 8px 16px 8px;
  background-color: #fff !important;
}
.dataDicFormTip .ant-tooltip-inner,
.dataDicFormTip .ant-tooltip-arrow::before {
  background-color: #FFFBF5;
  border: 1px solid #F5CE7F;
}
.dataDicFormTip .ant-tooltip-inner {
  color: #F5CE7F;
}
.dataDicFormInput .ant-input-suffix .ant-input-clear-icon {
  transition: opacity 0.3s;
  opacity: 0;
  width: 14px;
  height: 14px;
  font-size: 14px;
}
.dataDicFormInput .ant-input-suffix .ant-input-clear-icon:hover {
  opacity: 1;
}
.dataDicFormInput .ant-input-suffix .ant-input-clear-icon ~ .anticon {
  z-index: 1;
}
.dataDicFormInput .ant-input:hover ~ .ant-input-suffix .ant-input-clear-icon,
.dataDicFormInput .ant-input:focus ~ .ant-input-suffix .ant-input-clear-icon {
  opacity: 1;
}
.dataDicFormInput .ant-input:not(:last-child) {
  padding-right: 30px !important;
}
.selectorInput input {
  cursor: pointer;
}
.selectorInput .ant-input-suffix .ant-input-clear-icon {
  position: absolute;
  right: 0px;
  z-index: 2;
  background: #fff;
  top: 0px;
}
.deleteText {
  color: red !important;
}
::-webkit-scrollbar {
  width: 5px;
  height: 5px;
}
::-webkit-scrollbar-thumb {
  border-radius: 1em;
  background-color: rgba(50, 50, 50, 0.3);
}
::-webkit-scrollbar-track {
  border-radius: 1em;
  background-color: rgba(50, 50, 50, 0.1);
}
.theme-a .themeBgColor {
  background-color: #397EF0;
}
.theme-a .affairDrawer .ant-drawer-header {
  background-color: #0076e4;
}
.theme-a .affairDrawer .ant-tabs-nav {
  background-color: #0076e4;
}
.theme-a .wordColor {
  color: #1890ff !important;
}
.theme-a .bgColor {
  background-color: #1890ff;
}
.theme-a .listFooter {
  background-color: #eef7ff;
}
.theme-a .listItem:hover {
  background-color: #eef7ff;
}
.theme-a .listItem .cancelBtn {
  border: 1px solid #1890ff;
}
.theme-a .affairButton {
  border-color: #1890ff !important;
  background-color: #1890ff !important;
}
.theme-a .affairRadiusDiv:hover {
  box-shadow: 0px 0px 10px 4px rgba(24, 144, 255, 0.35);
  transition: box-shadow 200ms;
}
.theme-a .ant-carousel .slick-dots li.slick-active button {
  background-color: #1890ff;
}
.theme-a .ant-carousel .slick-dots li button {
  background-color: #b1daff;
}
.theme-a .ant-layout {
  background-color: rgba(243, 249, 255, 0.2);
}
.theme-a .anticon-plus-circle {
  color: #1890ff;
}
.theme-a .ant-table tr:nth-child(even) td {
  background: #f5fcff;
}
.theme-a .sideLink .ant-tabs-tab-active {
  background-color: #0069cb !important;
  color: white !important;
}
.theme-a .sideLink .ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar {
  right: 0px;
}
.theme-b .themeBgColor {
  background-color: #288f96;
}
.theme-b .affairDrawer .ant-drawer-header {
  background-color: #288f96;
}
.theme-b .affairDrawer .ant-tabs-nav {
  background-color: #288f96;
}
.theme-b .wordColor {
  color: #33b5be !important;
}
.theme-b .bgColor {
  background-color: #33b5be;
}
.theme-b .listFooter {
  background-color: #f4fcfc;
}
.theme-b .listItem:hover {
  background-color: #f4fcfc;
}
.theme-b .listItem .cancelBtn {
  border: 1px solid #33b5be;
}
.theme-b .affairButton {
  border-color: #33b5be !important;
  background-color: #33b5be !important;
}
.theme-b .affairRadiusDiv:hover {
  box-shadow: 0px 0px 10px 4px rgba(51, 181, 190, 0.35);
  transition: box-shadow 200ms;
}
.theme-b .ant-carousel .slick-dots li.slick-active button {
  background-color: #33b5be;
}
.theme-b .ant-carousel .slick-dots li button {
  background-color: #a4e2e6;
}
.theme-b .ant-layout {
  background-color: #f4fcfc;
}
.theme-b .anticon-plus-circle {
  color: #33b5be;
}
.theme-b .sideLink .ant-tabs-tab-active {
  background-color: #237c82 !important;
  color: white !important;
}
.theme-b .sideLink .ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar {
  right: 0px;
}
.theme-c .themeBgColor {
  background-color: #52A025;
}
.theme-c .affairDrawer .ant-drawer-header {
  background-color: #3d771b;
}
.theme-c .affairDrawer .ant-tabs-nav {
  background-color: #3d771b;
}
.theme-c .wordColor {
  color: #52A025 !important;
}
.theme-c .bgColor {
  background-color: #52A025;
}
.theme-c .listFooter {
  background-color: #ffffff;
}
.theme-c .listItem:hover {
  background-color: #ffffff;
}
.theme-c .listItem .cancelBtn {
  border: 1px solid #52A025;
}
.theme-c .affairButton {
  border-color: #52A025 !important;
  background-color: #52A025 !important;
}
.theme-c .affairRadiusDiv:hover {
  box-shadow: 0px 0px 10px 4px rgba(82, 160, 37, 0.35);
  transition: box-shadow 200ms;
}
.theme-c .ant-carousel .slick-dots li.slick-active button {
  background-color: #52A025;
}
.theme-c .ant-carousel .slick-dots li button {
  background-color: #a2e17d;
}
.theme-c .ant-layout {
  background-color: rgba(245, 255, 250, 0.1);
}
.theme-c .anticon-plus-circle {
  color: #52A025;
}
.theme-c .sideLink .ant-tabs-tab-active {
  background-color: #326217 !important;
  color: white !important;
}
.theme-c .sideLink .ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar {
  right: 0px;
}
.theme-d .themeBgColor {
  background-color: #e01f11;
}
.theme-d .affairDrawer .ant-drawer-header {
  background-color: #e01f11;
}
.theme-d .affairDrawer .ant-tabs-nav {
  background-color: #e01f11;
}
.theme-d .wordColor {
  color: #f04134 !important;
}
.theme-d .bgColor {
  background-color: #f04134;
}
.theme-d .listFooter {
  background-color: #fef7f7;
}
.theme-d .listItem:hover {
  background-color: #fef7f7;
}
.theme-d .listItem .cancelBtn {
  border: 1px solid #f04134;
}
.theme-d .affairButton {
  border-color: #f04134 !important;
  background-color: #f04134 !important;
}
.theme-d .affairRadiusDiv:hover {
  box-shadow: 0px 0px 10px 4px rgba(240, 65, 52, 0.35);
  transition: box-shadow 200ms;
}
.theme-d .ant-carousel .slick-dots li.slick-active button {
  background-color: #f04134;
}
.theme-d .ant-carousel .slick-dots li button {
  background-color: #fbc6c2;
}
.theme-d .ant-layout {
  background-color: rgba(255, 252, 251, 0.2);
}
.theme-d .anticon-plus-circle {
  color: #f04134;
}
.theme-d .sideLink .ant-tabs-tab-active {
  background-color: #c91c0f !important;
  color: white !important;
}
.theme-d .sideLink .ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar {
  right: 0px;
}
.theme-e .themeBgColor {
  background-color: #202325;
}
.theme-e .affairDrawer .ant-drawer-header {
  background-color: #202325;
}
.theme-e .affairDrawer .ant-tabs-nav {
  background-color: #202325;
}
.theme-e .wordColor {
  color: #373d41 !important;
}
.theme-e .bgColor {
  background-color: #373d41;
}
.theme-e .listFooter {
  background-color: #edeff0;
}
.theme-e .listItem:hover {
  background-color: #edeff0;
}
.theme-e .listItem .cancelBtn {
  border: 1px solid #373d41;
}
.theme-e .affairButton {
  border-color: #373d41 !important;
  background-color: #373d41 !important;
}
.theme-e .affairRadiusDiv:hover {
  box-shadow: 0px 0px 10px 4px rgba(55, 61, 65, 0.35);
  transition: box-shadow 200ms;
}
.theme-e .ant-carousel .slick-dots li.slick-active button {
  background-color: #373d41;
}
.theme-e .ant-carousel .slick-dots li button {
  background-color: #7f8a92;
}
.theme-e .ant-layout {
  background-color: #f0f2f5;
}
.theme-e .anticon-plus-circle {
  color: #373d41;
}
.theme-e .sideLink .ant-tabs-tab-active {
  background-color: #141618 !important;
  color: white !important;
}
.theme-e .sideLink .ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar {
  right: 0px;
}
.theme-f .themeBgColor {
  background-color: #0076e4;
}
.theme-f .affairDrawer .ant-drawer-header {
  background-color: #0076e4;
}
.theme-f .affairDrawer .ant-tabs-nav {
  background-color: #0076e4;
}
.theme-f .wordColor {
  color: #1890ff !important;
}
.theme-f .bgColor {
  background-color: #1890ff;
}
.theme-f .listFooter {
  background-color: #eef7ff;
}
.theme-f .listItem:hover {
  background-color: #eef7ff;
}
.theme-f .listItem .cancelBtn {
  border: 1px solid #1890ff;
}
.theme-f .affairButton {
  border-color: #1890ff !important;
  background-color: #1890ff !important;
}
.theme-f .affairRadiusDiv:hover {
  box-shadow: 0px 0px 10px 4px rgba(24, 144, 255, 0.35);
  transition: box-shadow 200ms;
}
.theme-f .ant-carousel .slick-dots li.slick-active button {
  background-color: #1890ff;
}
.theme-f .ant-carousel .slick-dots li button {
  background-color: #b1daff;
}
.theme-f .ant-layout {
  background-color: rgba(243, 249, 255, 0.2);
}
.theme-f .anticon-plus-circle {
  color: #1890ff;
}
.theme-f .sideLink .ant-tabs-tab-active {
  background-color: #0069cb !important;
  color: white !important;
}
.theme-f .sideLink .ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar {
  right: 0px;
}
.theme-g .themeBgColor {
  background-color: #288f96;
}
.theme-g .affairDrawer .ant-drawer-header {
  background-color: #288f96;
}
.theme-g .affairDrawer .ant-tabs-nav {
  background-color: #288f96;
}
.theme-g .wordColor {
  color: #33b5be !important;
}
.theme-g .bgColor {
  background-color: #33b5be;
}
.theme-g .listFooter {
  background-color: #f4fcfc;
}
.theme-g .listItem:hover {
  background-color: #f4fcfc;
}
.theme-g .listItem .cancelBtn {
  border: 1px solid #33b5be;
}
.theme-g .affairButton {
  border-color: #33b5be !important;
  background-color: #33b5be !important;
}
.theme-g .affairRadiusDiv:hover {
  box-shadow: 0px 0px 10px 4px rgba(51, 181, 190, 0.35);
  transition: box-shadow 200ms;
}
.theme-g .ant-carousel .slick-dots li.slick-active button {
  background-color: #33b5be;
}
.theme-g .ant-carousel .slick-dots li button {
  background-color: #a4e2e6;
}
.theme-g .ant-layout {
  background-color: #f4fcfc;
}
.theme-g .anticon-plus-circle {
  color: #33b5be;
}
.theme-g .sideLink .ant-tabs-tab-active {
  background-color: #237c82 !important;
  color: white !important;
}
.theme-g .sideLink .ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar {
  right: 0px;
}
.theme-h .themeBgColor {
  background-color: #3d771b;
  background-color: #52A025;
}
.theme-h .affairDrawer .ant-drawer-header {
  background-color: #3d771b;
}
.theme-h .affairDrawer .ant-tabs-nav {
  background-color: #3d771b;
}
.theme-h .wordColor {
  color: #52A025 !important;
}
.theme-h .bgColor {
  background-color: #52A025;
}
.theme-h .listFooter {
  background-color: #ffffff;
}
.theme-h .listItem:hover {
  background-color: #ffffff;
}
.theme-h .listItem .cancelBtn {
  border: 1px solid #52A025;
}
.theme-h .affairButton {
  border-color: #52A025 !important;
  background-color: #52A025 !important;
}
.theme-h .affairRadiusDiv:hover {
  box-shadow: 0px 0px 10px 4px rgba(82, 160, 37, 0.35);
  transition: box-shadow 200ms;
}
.theme-h .ant-carousel .slick-dots li.slick-active button {
  background-color: #52A025;
}
.theme-h .ant-carousel .slick-dots li button {
  background-color: #a2e17d;
}
.theme-h .ant-layout {
  background-color: rgba(245, 255, 250, 0.1);
}
.theme-h .anticon-plus-circle {
  color: #52A025;
}
.theme-h .sideLink .ant-tabs-tab-active {
  background-color: #326217 !important;
  color: white !important;
}
.theme-h .sideLink .ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar {
  right: 0px;
}
.theme-i .themeBgColor {
  background-color: #e01f11;
}
.theme-i .affairDrawer .ant-drawer-header {
  background-color: #e01f11;
}
.theme-i .affairDrawer .ant-tabs-nav {
  background-color: #e01f11;
}
.theme-i .wordColor {
  color: #f04134 !important;
}
.theme-i .bgColor {
  background-color: #f04134;
}
.theme-i .listFooter {
  background-color: #fef7f7;
}
.theme-i .listItem:hover {
  background-color: #fef7f7;
}
.theme-i .listItem .cancelBtn {
  border: 1px solid #f04134;
}
.theme-i .affairButton {
  border-color: #f04134 !important;
  background-color: #f04134 !important;
}
.theme-i .affairRadiusDiv:hover {
  box-shadow: 0px 0px 10px 4px rgba(240, 65, 52, 0.35);
  transition: box-shadow 200ms;
}
.theme-i .ant-carousel .slick-dots li.slick-active button {
  background-color: #f04134;
}
.theme-i .ant-carousel .slick-dots li button {
  background-color: #fbc6c2;
}
.theme-i .ant-layout {
  background-color: rgba(255, 252, 251, 0.2);
}
.theme-i .anticon-plus-circle {
  color: #f04134;
}
.theme-i .sideLink .ant-tabs-tab-active {
  background-color: #c91c0f !important;
  color: white !important;
}
.theme-i .sideLink .ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar {
  right: 0px;
}
.theme-j .themeBgColor {
  background-color: #202325;
}
.theme-j .affairDrawer .ant-drawer-header {
  background-color: #202325;
}
.theme-j .affairDrawer .ant-tabs-nav {
  background-color: #202325;
}
.theme-j .wordColor {
  color: #373d41 !important;
}
.theme-j .bgColor {
  background-color: #373d41;
}
.theme-j .listFooter {
  background-color: #edeff0;
}
.theme-j .listItem:hover {
  background-color: #edeff0;
}
.theme-j .listItem .cancelBtn {
  border: 1px solid #373d41;
}
.theme-j .affairButton {
  border-color: #373d41 !important;
  background-color: #373d41 !important;
}
.theme-j .affairRadiusDiv:hover {
  box-shadow: 0px 0px 10px 4px rgba(55, 61, 65, 0.35);
  transition: box-shadow 200ms;
}
.theme-j .ant-carousel .slick-dots li.slick-active button {
  background-color: #373d41;
}
.theme-j .ant-carousel .slick-dots li button {
  background-color: #7f8a92;
}
.theme-j .ant-layout {
  background-color: #f0f2f5;
}
.theme-j .anticon-plus-circle {
  color: #373d41;
}
.theme-j .sideLink .ant-tabs-tab-active {
  background-color: #141618 !important;
  color: white !important;
}
.theme-j .sideLink .ant-tabs .ant-tabs-left-bar .ant-tabs-ink-bar {
  right: 0px;
}
/* stylelint-disable at-rule-empty-line-before,at-rule-name-space-after,at-rule-no-unknown */
/* stylelint-disable no-duplicate-selectors */
/* stylelint-disable */
/* stylelint-disable declaration-bang-space-before,no-duplicate-selectors,string-no-newline */
.assets-style-home--index-cardShadow-28Eon {
  border-radius: 4px !important;
  box-shadow: 0px 2px 6px 0px rgba(31, 103, 170, 0.21);
}
.assets-style-home--index-cardDataList-IRKh6 {
  padding: 2px 0;
}
.assets-style-home--index-cardDataList-IRKh6::after {
  content: '';
  display: block;
  clear: both;
}
.assets-style-home--index-cardDataList-IRKh6 li {
  float: left;
  text-align: center;
  padding: 5px 15px;
}
.assets-style-home--index-cardDataList-IRKh6 .assets-style-home--index-serviceCard-12xtB {
  width: 110px;
  padding: 20px;
  height: 130px;
  cursor: pointer;
  box-shadow: none !important;
  text-align: center;
}
.assets-style-home--index-cardDataList-IRKh6 .assets-style-home--index-serviceCard-12xtB img {
  width: 66px;
  height: 68px;
  margin-bottom: 5px;
}
.assets-style-home--index-cardDataList-IRKh6 .assets-style-home--index-serviceCard-12xtB:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}
.assets-style-home--index-dot-1LmNn {
  cursor: pointer;
}
.assets-style-home--index-dot-1LmNn li {
  float: left;
  width: 5px;
  height: 5px;
  border-radius: 50%;
  margin: 0 2px;
  background: #b3bfca;
}
.assets-style-home--index-antdList-21F58 .ant-list-split .ant-list-item {
  border-bottom-style: dashed;
}
.assets-style-home--index-antdList-21F58 .ant-list-split .ant-list-item:last-child {
  border-bottom: 1px dashed #e8e8e8;
}
.assets-style-home--index-antdList-21F58 .ant-list-item-meta-title {
  font-size: 16px;
}
.assets-style-home--index-antdList-21F58 .ant-list-item-meta-description {
  font-size: 12px;
}
.assets-style-home--index-left-NF0wV {
  width: 94px;
  height: 94px;
  margin: 10px 0 0 10px;
  text-align: center;
}
.assets-style-home--index-left-NF0wV p:first-child {
  color: #1890FF;
  font-size: 30px;
}
.assets-style-home--index-left-NF0wV p:last-child {
  color: #595995;
  font-size: 14px;
}
.assets-style-home--index-time-Ip-D2 {
  line-height: 30px;
  color: #8C8C8C;
  font-size: 12px;
}
.assets-style-home--index-teachWorkloadCountMapContent-yGhUk {
  margin-top: 50px;
}
.assets-style-home--index-right-3jnwX li {
  line-height: 40px;
  opacity: 0.65;
  margin: 10px 0 10px 10px;
}
.assets-style-home--index-right-3jnwX li p:first-child {
  font-size: 24px;
  color: #1890FF;
  margin-left: 30px;
}
.assets-style-home--index-right-3jnwX li p:first-child span {
  font-size: 12px;
}
.assets-style-home--index-right-3jnwX li p:last-child {
  font-size: 14px;
  color: #8C8C8C;
  margin-right: 10px;
}
.assets-style-home--index-gongzi-4xS8L {
  padding: 20px 0;
  border-bottom: 1px solid #eeeeee;
}
.assets-style-home--index-gongzi-4xS8L .left p:nth-child(1) {
  color: #000;
  font-size: 14px;
}
.assets-style-home--index-gongzi-4xS8L .left p:nth-child(2) span {
  color: #000;
  font-size: 30px;
}
.assets-style-home--index-gongzi-4xS8L .left p:nth-child(4) {
  width: 106px;
  height: 32px;
  color: #1890FF;
  font-size: 14px;
  border: 1px solid #1890FF;
  line-height: 32px;
  text-align: center;
  cursor: pointer;
  border-radius: 4px;
}
.assets-style-home--index-gongzi-4xS8L .right ul li {
  width: 132px;
  height: 30px;
  background: #ffffff;
  box-shadow: 0px 4px 7px 0px rgba(168, 179, 197, 0.2);
  border-radius: 15px;
  font-size: 14px;
  color: #1890FF;
  margin: 10px 0;
}
.assets-style-home--index-gongziquestion-2pF4g a {
  color: #000000;
  font-size: 14px;
  line-height: 60px;
}
.assets-style-home--index-scientificFundingCountMap-1AM48 .right {
  width: 50%;
  margin-top: 15px;
}
.assets-style-home--index-scientificFundingCountMap-1AM48 .right ul li {
  width: 100%;
  height: 60px;
  margin: 10px 0;
  background: #f5faff;
}
.assets-style-home--index-scientificFundingCountMap-1AM48 .right ul li p {
  line-height: 1;
}
.assets-style-home--index-scientificFundingCountMap-1AM48 .right ul li p:first-child {
  padding-top: 10px;
}
.assets-style-home--index-commonApplication-2qpGK li {
  float: left;
  width: 240px;
  line-height: 40px;
}
.assets-style-home--index-commonApplication-2qpGK li a {
  color: #000;
  font-size: 14px;
  margin-left: 10px;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-noticeTag-3zR4o .ant-tag {
  border-radius: 40px !important;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-tagStyle-2qgUN {
  margin-left: 10px;
  display: inline-block;
  width: 50px;
  border: 1px solid #fbbf8e;
  border-radius: 11.5px;
  color: #fbbf8e;
  text-align: center;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-gongzi-4xS8L {
  padding: 24px 16px 24px 0;
  border-bottom: 1px solid #eeeeee;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-gongzi-4xS8L .left p:nth-child(1) {
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  margin-top: 8px;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-gongzi-4xS8L .left p:nth-child(1) img {
  position: relative;
  bottom: 2px;
  left: 16px;
  cursor: pointer;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-gongzi-4xS8L .left p:nth-child(2) span {
  color: rgba(0, 0, 0, 0.85);
  font-size: 30px;
  font-weight: 600;
  margin-top: 8px;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-gongzi-4xS8L .left p:nth-child(2) img {
  position: relative;
  bottom: 4px;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-gongzi-4xS8L .left p:nth-child(3) img {
  height: 100px;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-gongzi-4xS8L .right ul li {
  width: 150px;
  height: 32px;
  line-height: 32px;
  background: #ffffff;
  box-shadow: 0px 4px 7px 0px rgba(168, 179, 197, 0.2);
  border-radius: 15px;
  font-size: 14px;
  color: #1890FF;
  margin: 8px 0 16px 0;
  padding: 0 8px;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-gongziquestion-2pF4g a {
  color: rgba(0, 0, 0, 0.65);
  font-size: 14px;
  line-height: 44px;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-tabContent-2vF9b {
  background-color: #ffffff;
  width: 100%;
  height: 328px;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-tabContent-2vF9b .ant-tabs-bar {
  margin: 0;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-tabContent-2vF9b .ant-tabs-tab {
  font-size: 16px;
  font-weight: bold !important;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-metaContent-3s6AD {
  width: 100%;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-metaContent-3s6AD .ant-list-item-meta-content {
  width: 100%;
}
.assets-style-home--index-globalContent-2IMW6 .assets-style-home--index-metaContent-3s6AD .ant-list-item-meta-title {
  margin-bottom: 0;
}
.assets-style-home--index-globalContent-2IMW6 .ant-card-extra {
  padding: 0;
}
.assets-style-home--index-globalContent-2IMW6 .ant-badge {
  font-size: 16px;
}
.assets-style-home--index-globalContent-2IMW6 .ant-badge-count {
  background: #FF7777;
}
.assets-style-home--index-globalContent-2IMW6 .ant-tabs-extra-content {
  font-size: 14px;
}
.assets-style-home--index-globalContent-2IMW6 .ant-list-item {
  padding: 10px 0;
  border-bottom-style: dashed !important;
}
.assets-style-home--index-globalContent-2IMW6 .ant-list-split .ant-list-item:last-child {
  border-bottom: 1px solid #e8e8e8;
}
.assets-style-nulDataInfo--index-cardData-2HMYh {
  width: 100%;
  height: 200px;
  background: url(../../assets/images/2X7kAYeRBl.png) no-repeat center;
}
.assets-style-nulDataInfo--index-cardData-2HMYh .assets-style-nulDataInfo--index-message-22FMR {
  top: 150px;
  position: relative;
  text-align: center;
  color: #DBDBDB;
  font-size: 14px;
}
.assets-style-nulDataInfo--index-pageData-CPecl {
  width: 100%;
  height: 400px;
  background: url(../../assets/images/2X7kAYeRBl.png) no-repeat center;
}
.assets-style-nulDataInfo--index-pageData-CPecl .assets-style-nulDataInfo--index-message-22FMR {
  top: 260px;
  position: relative;
  text-align: center;
  color: #DBDBDB;
  font-size: 14px;
}
.ant-table-fixed-header .ant-table-scroll .ant-table-header {
  overflow-y: hidden !important;
}
.page_table_box {
  border: 1px solid #f0f0f0;
  overflow: hidden;
}
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-tbody > tr > td,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-tbody > tr > td,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-tbody > tr > td,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td .ant-table-thead > tr > th,
.page_table_box .ant-table-tbody > tr > td {
  padding: 7px 8px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-thead > tr > th img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-thead > tr > th img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-thead > tr > th img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-thead > tr > th img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-header > table > .ant-table-tbody > tr > td img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-body > table > .ant-table-tbody > tr > td img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-tbody > tr > td img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-tbody > tr > td img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-tbody > tr > td img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td img,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > table > .ant-table-tbody > tr > td .ant-table-thead > tr > th img,
.page_table_box .ant-table-tbody > tr > td img {
  max-height: 16px;
}
.page_table_box .ant-table-thead > tr > th {
  font-weight: 700;
  color: #000;
}
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-left > .ant-table-body-outer > .ant-table-body-inner,
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner {
  overflow: hidden !important;
}
.page_table_box .ant-table-tbody > tr.ant-table-row-selected td {
  background-color: #fafafa !important;
}
.page_table_box .ant-table-fixed-left,
.page_table_box .ant-table-fixed-right {
  height: 100%;
}
.page_table_box.scrollLeft .ant-table-fixed-right .customTable,
.page_table_box.scrollMiddle .ant-table-fixed-right .customTable {
  margin-left: 6px;
  box-shadow: -6px 0 6px -4px rgba(0, 0, 0, 0.15);
}
.page_table_box.scrollRight .ant-table-fixed-left,
.page_table_box.scrollMiddle .ant-table-fixed-left {
  padding-right: 6px;
}
.page_table_box.scrollRight .ant-table-fixed-left .customTable,
.page_table_box.scrollMiddle .ant-table-fixed-left .customTable {
  box-shadow: 6px 0 6px -4px rgba(39, 32, 32, 0.15);
}
.page_table_box .ant-table-middle.ant-table-empty > .ant-table-content > .ant-table-scroll > .ant-table-body > div > div:first-child > table:not(.noscrollx) {
  margin-bottom: 12px;
}
.page_table_box .ant-table-middle > .ant-table-content .ant-table-placeholder {
  border-bottom: none;
}
.page_table_box .ant-table-middle > .ant-table-content > .ant-table-scroll > .ant-table-body > div > div:nth-child(2) {
  z-index: 999;
}
.page_table_box .ant-table-fixed-header .ant-table-scroll .ant-table-header {
  border: none;
}
.page_table_box .ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  border-right: none;
}
.page_table_box .ant-table-fixed-right > .ant-table-body-outer > .ant-table-body-inner > div > div:nth-child(2) {
  opacity: 0;
}
.page_pagination {
  margin-top: 8px;
}
.assets-style-gatherInfo--index-settingTree-sFQTo .ant-tree-switcher {
  width: 0 !important;
}
.assets-style-gatherInfo--index-settingTree-sFQTo li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.assets-style-gatherInfo--index-settingTree-sFQTo li .ant-tree-node-content-wrapper {
  display: inline;
}
.assets-style-selector--index-treeSelector-1Ilwi .assets-style-selector--index-listItem-2o3xQ {
  padding: 10px;
  cursor: pointer;
  border: none;
}
.assets-style-selector--index-treeSelector-1Ilwi .ant-tree li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.assets-style-selector--index-treeSelector-1Ilwi .ant-tree li .ant-tree-node-content-wrapper {
  display: inline;
}
.assets-style-selector--index-userSelector-3AN_- .assets-style-selector--index-listItem-2o3xQ {
  padding: 4px 8px;
  cursor: pointer;
  border: none;
}
.assets-style-selector--index-userSelector-3AN_- .assets-style-selector--index-userBorder-NEhey {
  border: 1px solid rgba(191, 191, 191, 0.5);
  border-radius: 5px;
}
.assets-style-selector--index-roleSelector-c4VAM .assets-style-selector--index-selectedArea-39n64 {
  border: 1px solid rgba(191, 191, 191, 0.5);
  border-radius: 5px;
  margin-left: 12px;
}
.assets-style-selector--index-roleSelector-c4VAM .assets-style-selector--index-listItem-2o3xQ {
  padding: 10px;
  cursor: pointer;
  border: none;
}
.assets-style-selector--index-border-2-kvx {
  border: 1px solid #bfbfbf;
  border-radius: 5px;
  margin-top: 12px;
}
.assets-style-selector--index-clearIcon-2MR-2 {
  color: red !important;
  margin-right: 5px;
}
.assets-style-lyDivider--style-dividerMargin-2ocxv {
  margin: 0 4px;
}
.assets-style-lyDivider--style-transparent-33NNx {
  width: 0px;
}
.assets-style-lyPagination--style-pagination-1hnjT {
  margin-top: 16px;
  float: right;
  width: 100%;
  text-align: right;
}
.assets-style-lyPagination--style-pagination-1hnjT .ant-pagination-total-text {
  float: left;
  padding-top: 3px;
}
.assets-style-archives-personnel-personBasicInfo--index-formItem-3iac4 {
  margin-bottom: 0;
  height: 38px;
  width: 100%;
}
.assets-style-archives-personnel-personBasicInfo--index-formItem-3iac4 .ant-form-item-label {
  line-height: 38px;
  height: 38px;
  border-bottom: 1px solid #e8e8e8;
  background-color: #fafafa;
  padding: 0 8px;
  justify-content: flex-end;
}
.assets-style-archives-personnel-personBasicInfo--index-formItem-3iac4 .ant-form-item-control {
  padding: 3px 10px;
  border-left: 1px solid #e8e8e8;
  border-right: 1px solid #e8e8e8;
  border-bottom: 1px solid #e8e8e8;
  display: inline-block;
  width: 100%;
  height: 38px;
}
.assets-style-archives-personnel-personBasicInfo--index-formItem-3iac4 .ant-form-item-label > label::after {
  display: none;
}
.assets-style-archives-personnel-personBasicInfo--index-formItem-3iac4 .assets-style-archives-personnel-personBasicInfo--index-value-1teoN {
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  height: 29px;
}
.assets-style-archives-personnel-personBasicInfo--index-formItem-3iac4 .assets-style-archives-personnel-personBasicInfo--index-value-1teoN span {
  color: rgba(0, 0, 0, 0.85);
}
.assets-style-archives-personnel-personBasicInfo--index-formItem-3iac4 .assets-style-archives-personnel-personBasicInfo--index-value-1teoN .assets-style-archives-personnel-personBasicInfo--index-normalCompareDiv-2T3b6 {
  display: flex;
  justify-content: space-between;
  height: 100%;
}
.assets-style-archives-personnel-personBasicInfo--index-formItem-3iac4 .assets-style-archives-personnel-personBasicInfo--index-value-1teoN .assets-style-archives-personnel-personBasicInfo--index-normalCompareDiv-2T3b6 .assets-style-archives-personnel-personBasicInfo--index-columnValue-BIrKF {
  max-width: 65%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.assets-style-archives-personnel-personBasicInfo--index-formItem-3iac4 .assets-style-archives-personnel-personBasicInfo--index-value-1teoN .assets-style-archives-personnel-personBasicInfo--index-normalCompareDiv-2T3b6 .assets-style-archives-personnel-personBasicInfo--index-tipIcon-2yykK {
  display: flex;
  align-items: center;
}
.assets-style-archives-personnel-personBasicInfo--index-title-3t9lz {
  color: rgba(0, 0, 0, 0.65);
  display: inline;
}
.assets-style-archives-personnel-personBasicInfo--index-firstRowFormItem-3qoiy .ant-form-item-label {
  border-top: 1px solid #e8e8e8;
}
.assets-style-archives-personnel-personBasicInfo--index-firstRowFormItem-3qoiy .ant-form-item-control {
  border-top: 1px solid #e8e8e8;
}
.assets-style-archives-personnel-personBasicInfo--index-firstColFormItem-qiWWR .ant-form-item-label {
  border-left: 1px solid #e8e8e8;
}
.assets-style-archives-personnel-personBasicInfo--index-emptyCol-2odH7 {
  height: 38px;
  border-bottom: 1px solid #e8e8e8;
}
.assets-style-archives-personnel-personBasicInfo--index-lastEmptyCol-QAXoz {
  border-right: 1px solid #e8e8e8;
}
.assets-style-archives-personnel-personBasicInfo--index-oneRowEmptyCol-1JbGf {
  border-top: 1px solid #e8e8e8;
}
.assets-style-archives-personnel-personBasicInfo--index-operateComponent-Us5jk {
  position: fixed;
  line-height: 70px;
  z-index: 999;
}
.assets-style-archives-personnel-personBasicInfo--index-categoryTitle-3Nrc4 {
  height: 30px;
  line-height: 30px;
  font-weight: bold;
  margin-top: 12px;
}
.assets-style-archives-personnel-personBasicInfo--index-auditResult-CLtl8 {
  margin-left: 18px;
  display: inline-block;
  font-weight: normal;
}
.assets-style-archives-personnel-personBasicInfo--index-auditResult-CLtl8 > :nth-child(2) {
  margin-top: 4px;
}
.assets-style-archives-personnel-personBasicInfo--index-personBaseAnchor-uIdaP {
  margin-right: 10px;
  margin-top: 16px;
}
.assets-style-archives-personnel-personBasicInfo--index-personBaseAnchor-uIdaP > :first-child {
  position: fixed;
}
.assets-style-archives-personnel-personBasicInfo--index-personBaseAnchor-uIdaP .assets-style-archives-personnel-personBasicInfo--index-edit-2pOoD {
  margin-right: 8px;
}
.assets-style-archives-personnel-personBasicInfo--index-personBaseAnchor-uIdaP .assets-style-archives-personnel-personBasicInfo--index-tempSave-11IyJ {
  margin-left: -40px;
}
.assets-style-archives-personnel-personBasicInfo--index-personBaseAnchor-uIdaP img {
  width: 14px;
  height: 14px;
  margin-right: 3px;
  margin-top: -4px;
}
.assets-style-archives-personnel-personBasicInfo--index-gridForm-1F-fN .ant-col-8 {
  display: flex;
}
.assets-style-archives-personnel-personBaseAnchor--index-anchor-2XMVW {
  margin-top: 12px;
  float: left;
  padding-left: 5px;
}
.assets-style-archives-personnel-personBaseAnchor--index-anchor-2XMVW .ant-anchor-ink  .ant-anchor-ink-ball {
  display: block;
  border-radius: 0;
  width: 0;
  border-width: 1px;
  height: 30px;
  top: 0;
}
.assets-style-loadingSpin--style-main-y2aha {
  width: 100%;
  top: 50%;
}
.assets-style-loadingSpin--style-main-y2aha .assets-style-loadingSpin--style-loadingSpin-27phX {
  position: absolute;
  left: 50%;
  top: 50%;
  text-align: center;
}
.assets-style-loadingSpin--style-defaultSpin-3H-g_ .ant-spin-text {
  font-size: 14px;
}
.assets-style-loadingSpin--style-smallSpin-1QdMc .ant-spin-text {
  font-size: 12px;
}
.assets-style-loadingSpin--style-largeSpin-1Y583 .ant-spin-text {
  font-size: 16px;
}
.assets-style-downloader--attachmentDownloader-title-10fHA {
  display: flex;
  align-items: center;
}
.assets-style-downloader--attachmentDownloader-title-10fHA > a:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 18px);
}
.assets-style-downloader--attachmentDownloader-title-10fHA .anticon-download {
  margin-left: 4px;
}
.assets-style-previewer--picturepreviewer-main-DjKa7 {
  width: 104px;
  height: 104px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 8px;
  position: relative;
}
.assets-style-previewer--picturepreviewer-main-DjKa7 .assets-style-previewer--picturepreviewer-container-2c5E0 {
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
  padding: 0;
}
.assets-style-previewer--picturepreviewer-main-DjKa7 .assets-style-previewer--picturepreviewer-container-2c5E0:before {
  content: ' ';
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.assets-style-previewer--picturepreviewer-main-DjKa7 .assets-style-previewer--picturepreviewer-container-2c5E0 span {
  display: block;
}
.assets-style-previewer--picturepreviewer-main-DjKa7 .assets-style-previewer--picturepreviewer-container-2c5E0 img {
  width: 100%;
  height: 100%;
  position: static;
  display: block;
  object-fit: cover;
}
.assets-style-previewer--picturepreviewer-main-DjKa7 .assets-style-previewer--picturepreviewer-actions-3kXag {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.assets-style-previewer--picturepreviewer-main-DjKa7 .assets-style-previewer--picturepreviewer-actions-3kXag .anticon {
  z-index: 10;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  font-size: 16px;
  width: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.assets-style-previewer--picturepreviewer-main-DjKa7:hover .assets-style-previewer--picturepreviewer-container-2c5E0 {
  background: transparent;
}
.assets-style-previewer--picturepreviewer-main-DjKa7:hover .assets-style-previewer--picturepreviewer-container-2c5E0:before {
  opacity: 1;
}
.assets-style-previewer--picturepreviewer-main-DjKa7:hover .assets-style-previewer--picturepreviewer-actions-3kXag {
  opacity: 1;
}
.assets-style-previewer--tableAttachmentPreviewer-container-39BGL {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.assets-style-previewer--tableAttachmentPreviewer-container-39BGL > div :nth-child(n+2) {
  margin-left: 4px;
}
.assets-style-previewer--tableAttachmentPreviewer-container-39BGL .assets-style-previewer--tableAttachmentPreviewer-file-2ytsx {
  color: #FAAD14;
}
.assets-style-previewer--tableAttachmentPreviewer-container-39BGL .assets-style-previewer--tableAttachmentPreviewer-left-3KRDN,
.assets-style-previewer--tableAttachmentPreviewer-container-39BGL .assets-style-previewer--tableAttachmentPreviewer-right-2iz1n {
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.assets-style-previewer--tableAttachmentPreviewer-container-39BGL .assets-style-previewer--tableAttachmentPreviewer-lastPage-3GENe {
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.25);
}
.assets-style-previewer--tableAttachmentPreviewer-pageContainer-SJ3h1 {
  display: flex;
  justify-content: center;
  align-items: center;
}
.assets-style-previewer--tableAttachmentPreviewer-noPage-1wHMZ {
  justify-content: flex-start;
}
.assets-style-previewer--tableAttachmentPreviewer-hasPage-3GTI9 {
  width: calc(100% - 28px);
}
.assets-style-previewer--tablePhotoPreviewer-main-3s_jP {
  display: inline-block;
}
.assets-style-previewer--tablePhotoPreviewer-main-3s_jP .assets-style-previewer--tablePhotoPreviewer-tableImg-3FBPM {
  max-height: 20px;
  max-width: 20px;
}
.assets-style-previewer--tablePhotoPreviewer-previewer-7j_SH .assets-style-previewer--tablePhotoPreviewer-container-9AaEt {
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
  padding: 0;
}
.assets-style-previewer--tablePhotoPreviewer-previewer-7j_SH .assets-style-previewer--tablePhotoPreviewer-container-9AaEt:before {
  content: ' ';
  position: absolute;
  z-index: 1;
  background-color: rgba(0, 0, 0, 0.5);
  -webkit-transition: all .3s;
  transition: all .3s;
  width: 100%;
  height: 100%;
  opacity: 0;
}
.assets-style-previewer--tablePhotoPreviewer-previewer-7j_SH .assets-style-previewer--tablePhotoPreviewer-container-9AaEt span {
  display: block;
}
.assets-style-previewer--tablePhotoPreviewer-previewer-7j_SH .assets-style-previewer--tablePhotoPreviewer-container-9AaEt img {
  width: 100%;
  height: 100%;
  position: static;
  display: block;
  object-fit: cover;
}
.assets-style-previewer--tablePhotoPreviewer-previewer-7j_SH .assets-style-previewer--tablePhotoPreviewer-actions--y2yJ {
  position: absolute;
  left: 50%;
  top: 50%;
  -webkit-transform: translate(-50%, -50%);
  -ms-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  z-index: 10;
  white-space: nowrap;
  opacity: 0;
  -webkit-transition: all .3s;
  transition: all .3s;
}
.assets-style-previewer--tablePhotoPreviewer-previewer-7j_SH .assets-style-previewer--tablePhotoPreviewer-actions--y2yJ .anticon {
  z-index: 10;
  -webkit-transition: all .3s;
  transition: all .3s;
  cursor: pointer;
  font-size: 16px;
  width: 16px;
  color: rgba(255, 255, 255, 0.85);
}
.assets-style-previewer--tablePhotoPreviewer-previewer-7j_SH:hover .assets-style-previewer--tablePhotoPreviewer-container-9AaEt {
  background: transparent;
}
.assets-style-previewer--tablePhotoPreviewer-previewer-7j_SH:hover .assets-style-previewer--tablePhotoPreviewer-container-9AaEt:before {
  opacity: 1;
}
.assets-style-previewer--tablePhotoPreviewer-previewer-7j_SH:hover .assets-style-previewer--tablePhotoPreviewer-actions--y2yJ {
  opacity: 1;
}
.assets-style-archives-personnel-personArchives--index-photoRequired-3T49x:before {
  display: inline-block;
  margin-right: 4px;
  content: "*";
  font-family: SimSun;
  line-height: 1;
  font-size: 14px;
  color: #f5222d;
}
.assets-style-archives-personnel-personArchives--index-RequiredExplain-1_EVU {
  color: #f5222d;
  line-height: 1.5;
  transition: color 0.15s cubic-bezier(0.215, 0.61, 0.355, 1);
  margin-top: -2px;
}
.assets-style-archives-personnel-personArchives--index-noSetting-2Vb3q {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: red;
}
.assets-style-archives-personnel-personArchives--index-tableBox-3r9zP .ant-table-placeholder {
  z-index: 0;
}
.assets-style-personLog--index-formItem-1MAZb label {
  display: flex;
}
.assets-style-personLog--index-formItem-1MAZb .ant-form-item-label label:after {
  display: none;
}
.assets-style-personLog--index-formItem-1MAZb .ant-form-item-required:before {
  display: none;
}
.assets-style-personLog--index-formItem-1MAZb .ant-form-item-children {
  display: flex;
}
.assets-style-personLog--index-tip-2qxHw {
  color: rgba(0, 0, 0, 0.65);
}
.assets-style-personLog--index-delete-1N35S {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 100%;
  color: red;
}
.assets-style-personLog--index-auditDescriptions-3nIBp .ant-descriptions-item-label,
.assets-style-personLog--index-auditDescriptions-3nIBp .ant-descriptions-item-content {
  display: inline-block;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  padding: 8px !important;
}
.assets-style-personLog--index-auditDescriptions-3nIBp .ant-descriptions-item-label {
  text-align: right;
  color: #878787;
  width: 20%;
}
.assets-style-personLog--index-auditDescriptions-3nIBp .ant-descriptions-item-content {
  color: rgba(0, 0, 0, 0.85);
  width: 30%;
}
.assets-style-personLog--index-auditDescriptions-3nIBp .ant-descriptions-item-no-label {
  background-color: #fff !important;
  border-right: none !important;
}
.assets-style-personLog--index-auditDescriptions-3nIBp .ant-descriptions-title {
  color: #808080;
  font-size: 14px;
  margin: 18px 0 12px;
}
.assets-style-personLog--index-baseDescriptions-1UldY .ant-descriptions-item-label,
.assets-style-personLog--index-baseDescriptions-1UldY .ant-descriptions-item-content {
  height: 37px;
}
.assets-style-personLog--index-photoDescriptions-zHmL3 .ant-descriptions-item-label,
.assets-style-personLog--index-photoDescriptions-zHmL3 .ant-descriptions-item-content {
  height: 120px;
  line-height: 100px;
}
.assets-style-personLog--index-attachmentDescriptions-2Nlbu .ant-descriptions-item-label,
.assets-style-personLog--index-attachmentDescriptions-2Nlbu .ant-descriptions-item-content {
  height: 37px;
}
.assets-style-personLog--index-detailTitle-3QG53 {
  color: #808080;
  font-size: 14px;
  font-weight: bold;
  margin-bottom: 12px;
}
.assets-style-personLog--index-auditStatus-2E8jh {
  position: absolute;
  top: -32px;
  right: 0;
}
.assets-style-personLog--index-editHeaderDescriptions-2lUbM .ant-descriptions-item-label,
.assets-style-personLog--index-editHeaderDescriptions-2lUbM .ant-descriptions-item-content {
  text-align: center;
  height: 37px;
}
.assets-style-personLog--index-editHeaderDescriptions-2lUbM .ant-descriptions-item-label {
  width: 50%;
}
.assets-style-personLog--index-editHeaderDescriptions-2lUbM .ant-descriptions-item-content {
  width: 50%;
  background-color: #fafafa;
  color: #878787;
}
.assets-style-personLog--index-editHeaderDescriptions-2lUbM .ant-descriptions-view {
  border-bottom: none !important;
  border-bottom-left-radius: 0 !important;
  border-bottom-right-radius: 0 !important;
}
.assets-style-personLog--index-editContentDescriptions-2zBja .ant-descriptions-view {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.assets-style-personLog--index-noAudit-jdelc .ant-descriptions-title {
  margin-top: 0;
}
.assets-style-ellipsisTooltip--index-toolTipTitle-XfypV ::-webkit-scrollbar {
  width: 3px;
  height: 3px;
}
.assets-style-ellipsisTooltip--index-toolTipTitle-XfypV ::-webkit-scrollbar-thumb {
  border-radius: 1em;
  background-color: rgba(241, 238, 238, 0.774);
}
.assets-style-ellipsisTooltip--index-toolTipTitle-XfypV ::-webkit-scrollbar-track {
  border-radius: 1em;
  background-color: rgba(241, 238, 238, 0.425);
}
.assets-style-uploader--formPhotoUploader-uploader-1UCOQ .ant-upload-picture-card-wrapper {
  height: 100%;
}
.assets-style-uploader--formPhotoUploader-uploader-1UCOQ .ant-upload-select-picture-card {
  display: none;
}
.assets-style-uploader--formPhotoUploader-uploader-1UCOQ .ant-upload-list-picture-card {
  height: 100%;
}
.assets-style-uploader--formPhotoUploader-uploader-1UCOQ .ant-upload-list-picture-card-container {
  margin: 0;
  width: 100%;
  height: 100%;
}
.assets-style-uploader--formPhotoUploader-uploader-1UCOQ .ant-upload-list-item {
  margin: 0;
  padding: 0;
  width: 100%;
  height: 100%;
  border: none !important;
}
.assets-style-uploader--formPhotoUploader-uploader-1UCOQ .ant-upload-list-item:hover label {
  opacity: 1;
}
.assets-style-uploader--formPhotoUploader-uploader-1UCOQ .ant-upload-list-item-thumbnail {
  opacity: 1;
}
.assets-style-uploader--formPhotoUploader-uploader-1UCOQ .ant-upload-list-item-actions {
  top: auto;
  bottom: 0;
  transform: translate(-50%, 0);
  width: 100%;
}
.assets-style-uploader--formPhotoUploader-uploader-1UCOQ .assets-style-uploader--formPhotoUploader-icon-3M-ic {
  color: #fff;
  cursor: pointer;
  font-size: 12px;
  letter-spacing: 2px;
  font-weight: lighter;
}
.assets-style-uploader--formPhotoUploader-uploader-1UCOQ .assets-style-uploader--formPhotoUploader-tip-1_xSG {
  color: #fff;
  position: absolute;
  bottom: 40%;
  width: 100%;
  opacity: 0;
  z-index: 999;
  padding: 0 8px;
  font-size: 12px;
  text-align: center;
}
.assets-style-uploader--photopuloader-uploader-DDPab .ant-upload-list-picture-card .ant-upload-list-item-info:before {
  left: 0;
}
.assets-style-archives-personnel--index-formItem-ICLDf label {
  display: flex;
}
.assets-style-archives-personnel--index-formItem-ICLDf .ant-form-item-label label:after {
  display: none;
}
.assets-style-archives-personnel--index-formItem-ICLDf .ant-form-item-children {
  display: flex;
}
.assets-style-archives-personnel--index-operation-X4aEc {
  position: fixed;
  right: 9%;
  bottom: 85px;
}
.assets-style-archives-personnel--index-operation-X4aEc ul li {
  float: left;
  width: 40px;
  height: 40px;
  border-radius: 50%;
  border: 1px solid #1890FF;
  margin: 0 5px;
  cursor: pointer;
  opacity: 0.6;
  text-align: center;
  line-height: 40px;
  font-size: 16px;
}
.assets-style-archives-personnel--index-header-2DYzI {
  padding: 8px 8px;
  width: 100%;
  height: 32.5px;
  text-align: text;
}
.assets-style-archives-personnel--index-header-2DYzI .assets-style-archives-personnel--index-operateSpan-3kop8 {
  position: relative;
  line-height: 30px;
  z-index: 1;
  float: right;
}
.assets-style-archives-personnel--index-header-2DYzI .assets-style-archives-personnel--index-bgcBlock-1F69N {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 47px;
  opacity: 0.2;
}
.assets-style-archives-personnel--index-header-2DYzI .ant-alert {
  display: inline-block;
  padding: 4px 15px 3px 37px;
}
.assets-style-archives-personnel--index-header-2DYzI .ant-alert-icon {
  top: 6px;
  font-size: 16px;
}
.assets-style-archives-personnel--index-secHeader-35WwR {
  display: flex;
  margin-top: 8px;
  padding: 8px 8px 8px 18px;
  height: 36px;
  width: 100%;
  text-align: text;
}
.assets-style-archives-personnel--index-secHeader-35WwR .assets-style-archives-personnel--index-operateSpan-3kop8 {
  position: relative;
  line-height: 30px;
  z-index: 1;
  float: right;
}
.assets-style-archives-personnel--index-secHeader-35WwR .assets-style-archives-personnel--index-bgcBlock-1F69N {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 47px;
  opacity: 0.2;
}
.assets-style-archives-personnel--index-secHeader-35WwR .assets-style-archives-personnel--index-tips-tlPu2 {
  display: flex;
  margin-right: 8px;
  overflow: hidden;
  min-width: 60px;
}
.assets-style-archives-personnel--index-secHeader-35WwR .assets-style-archives-personnel--index-tips-tlPu2 .assets-style-archives-personnel--index-tipIcon-2qqnA {
  display: flex;
  margin-right: 8px;
  border-radius: 50%;
  width: 18px;
  height: 18px;
}
.assets-style-archives-personnel--index-secHeader-35WwR .assets-style-archives-personnel--index-tips-tlPu2 .assets-style-archives-personnel--index-tipText-2-q_x {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  line-height: 20px;
}
.assets-style-archives-personnel--index-secHeader-35WwR .ant-alert {
  display: inline-block;
  padding: 4px 15px 3px 37px;
}
.assets-style-archives-personnel--index-secHeader-35WwR .ant-alert-icon {
  top: 6px;
  font-size: 16px;
}
.assets-style-archives-personnel--index-tabs-1woFn {
  padding-top: 10px;
  background-color: #FBFBFB;
  border-top: 1px solid #e8e8e8;
}
.assets-style-archives-personnel--index-tabs-1woFn .ant-tabs-bar {
  margin-bottom: 0;
}
.assets-style-archives-personnel--index-tabs-1woFn .ant-tabs-tab {
  border-color: transparent !important;
  background: transparent !important;
}
.assets-style-archives-personnel--index-tabs-1woFn .ant-tabs-tab-active {
  background: #fff !important;
  border-top: 1px solid #e8e8e8 !important;
  border-left: 1px solid #e8e8e8 !important;
  border-right: 1px solid #e8e8e8 !important;
}
.assets-style-archives-personnel--index-triangle-22mC6 {
  width: 0;
  height: 0;
  border-style: solid;
  border-width: 0px 10px 10px 0px;
  border-color: rgba(0, 0, 0, 0.15) #fff #fff rgba(0, 0, 0, 0.15);
}
.assets-style-archives-personnel--index-taskDiv-trLp0 {
  color: #696969;
  width: 40px;
  padding-left: 8px;
  padding-right: 8px;
  text-align: center;
  text-overflow: ellipsis;
  overflow: hidden;
  whiteSpace: nowrap;
  display: inline-block;
  -webkit-line-clamp: 6;
  /* 设置超出多少行隐藏 */
  -webkit-box-orient: vertical;
  display: -webkit-box;
  /* 设置 display 为 -webkit-box 或者 -webkit-inline-box 时为隐藏状态 */
}
.assets-style-archives-personnel--index-avatarImg-2jUEe {
  width: 100%;
  height: 100%;
  position: static;
  object-fit: cover;
}
.assets-style-archives-personnel--index-avatar-1_0JD {
  background-color: #fff;
  border: 1px solid #e8e8e8;
  top: 0;
  right: 0;
  position: absolute;
}
.ant-descriptions-bordered .ant-descriptions-view > table {
  table-layout: fixed;
}
.assets-style-businessApply--index-listItem-3fWNu:hover {
  cursor: pointer;
  box-shadow: #A9A9A9 7px 9px 10px;
}
.assets-style-businessApply--index-searchContent-1Qcyk {
  left: 15px;
  position: relative;
  display: inline-block;
  transition: width 600ms,visibility 120ms;
}
.assets-style-businessApply--index-searchDiv-2gTgP {
  padding: 8px 0;
  margin: 8px 8px 0 8px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(7, 108, 201, 0.1);
  border-radius: 4px;
}
.assets-style-businessApply--index-iconButton-rLmcG {
  cursor: pointer;
}
.assets-style-businessApply--index-searchIcon-_5dm6 {
  margin-left: 30px;
  font-size: 20px;
  vertical-align: middle;
  color: rgba(0, 0, 0, 0.4);
}
.assets-style-businessApply--index-clearIcon-3dFxf {
  margin-right: 10px;
  color: #ccc;
}
.assets-style-businessApply--index-search-OSwIn .assets-style-businessApply--index-searchContent-1Qcyk {
  visibility: visible;
}
@media (min-width: 1280px) {
  .assets-style-businessApply--index-search-OSwIn .assets-style-businessApply--index-searchContent-1Qcyk {
    width: 700px;
  }
}
@media (min-width: 1600px) {
  .assets-style-businessApply--index-search-OSwIn .assets-style-businessApply--index-searchContent-1Qcyk {
    width: 1000px;
  }
}
.assets-style-businessApply--index-leave-3v_VL .assets-style-businessApply--index-searchContent-1Qcyk {
  width: 45px;
  visibility: hidden;
}
.assets-style-businessApply--index-empty-1sScN {
  display: flex;
  justify-content: center;
  align-items: center;
}
.assets-style-businessApply--index-content-3gQ-M {
  display: flex;
  padding-left: 8px;
  padding-bottom: 16px;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-left-1uhfj {
  display: inline-block;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-left-1uhfj .assets-style-businessApply--index-pagination-37TT- {
  height: 56.5px;
  background: #ffffff;
  box-shadow: 0px 0px 10px 0px rgba(7, 108, 201, 0.1);
  border-radius: 4px;
  padding: 0 8px;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe {
  display: inline-block;
  width: 387px;
  overflow: hidden;
  float: right;
  position: absolute;
  right: 8px;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo {
  border-radius: 6px;
  box-shadow: 0 0 10px rgba(0, 88, 37, 0.1);
  min-height: 405px;
  background-color: white;
  border: 1px solid #e8e8e8;
  position: relative;
  /* 全部事务右边推荐事务 */
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-emptyDiv-12wGA {
  height: 355px;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo:hover {
  cursor: pointer;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo:hover .assets-style-businessApply--index-rightAffairsBox-1DPnM .anticon {
  display: inline-block;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-rightAffairsBox-1DPnM .anticon {
  display: none;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-iconLeft-2zg3k {
  color: #D4D4D4;
  font-size: 25px;
  position: absolute;
  left: 10px;
  z-index: 2;
  top: 47%;
  transform: translateY(-50%);
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-iconLeft-2zg3k:hover {
  color: #AAAAAA;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-iconRight-WLML7 {
  color: #D4D4D4;
  font-size: 25px;
  position: absolute;
  right: 10px;
  z-index: 2;
  top: 47%;
  transform: translateY(-50%);
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-iconRight-WLML7:hover {
  color: #AAAAAA;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .ant-card {
  position: static;
  color: #666666;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .ant-card-body {
  padding: 0px;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .ant-card-head {
  border-bottom: none;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .ant-list-grid .ant-list-item {
  margin-bottom: 0;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .ant-carousel .slick-dots {
  bottom: 35px;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .ant-carousel .slick-slider {
  position: static;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .ant-carousel .slick-dots li.slick-active button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  /*background: #1890ff;*/
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .ant-carousel .slick-dots li button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  /*background: #b8c4cc;*/
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .assets-style-businessApply--index-title-2AwMH {
  font-size: 18px;
  font-weight: bold;
  color: #474747;
  line-height: 21px;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .assets-style-businessApply--index-fontBlack-DIWhJ {
  font-size: 18px;
  font-weight: bold;
  color: #474747;
  line-height: 21px;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .assets-style-businessApply--index-serviceCollectDivRelative-3wBHG {
  position: relative;
  text-align: center;
  /* .radiusDiv:hover{
             box-shadow: 0px 0px 10px 4px rgba(68, 126, 98, 0.35);


           }*/
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .assets-style-businessApply--index-serviceCollectDivRelative-3wBHG .assets-style-businessApply--index-boxShadow-3cX1z {
  cursor: pointer;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .assets-style-businessApply--index-serviceCollectDivRelative-3wBHG .assets-style-businessApply--index-radiusDiv-1pdFT {
  /*border: 1px solid rgba(90, 137, 181, 0.33);*/
  background: #ffffff;
  height: 66px;
  width: 66px;
  line-height: 60px;
  overflow: hidden;
  margin-bottom: 15px;
  margin-left: 22px;
  border: 1px solid rgba(220, 220, 220, 0.2);
  border-radius: 50%;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .assets-style-businessApply--index-serviceCollectDivRelative-3wBHG .assets-style-businessApply--index-radiusDiv-1pdFT .assets-style-businessApply--index-imageRadius-10xxv {
  vertical-align: middle;
  width: 32px;
  height: 32px;
  display: inline-block;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .assets-style-businessApply--index-serviceCollectDivRelative-3wBHG .ant-card-body {
  padding: 11px 7px 18px 9px;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .assets-style-businessApply--index-serviceCollectDivRelative-3wBHG .ant-card-bordered {
  border: none;
}
.assets-style-businessApply--index-content-3gQ-M .assets-style-businessApply--index-right-QwyMe .assets-style-businessApply--index-rightTop-24YJo .assets-style-businessApply--index-affairTitle-2lWDO .assets-style-businessApply--index-serviceCollectDivRelative-3wBHG .assets-style-businessApply--index-textCenter-312ma {
  text-align: center;
}
.assets-style-businessApply--index-limitedTime-1SYby {
  position: absolute;
  top: 0px;
  left: 0px;
  height: 45px;
  width: 50px;
}
.assets-style-businessApply--index-limitedTime-1SYby .assets-style-businessApply--index-backBorder-12F9A {
  border-top: solid 40px #ff9900;
  border-right: solid 50px rgba(0, 0, 0, 0);
}
.assets-style-businessApply--index-limitedTime-1SYby .assets-style-businessApply--index-inner-3abRo {
  color: #ffffff;
  font-size: 12px;
  position: absolute;
  top: 5px;
  left: 1px;
  transform: rotate(-45deg);
}
.assets-style-businessApply--index-limitedTimeLeft-wC0oo {
  position: absolute;
  top: 0px;
  left: -7px;
  width: 50px;
  height: 45px;
}
.assets-style-businessApply--index-limitedTimeLeft-wC0oo .assets-style-businessApply--index-backBorder-12F9A {
  border-top: solid 50px #ff9900;
  border-right: solid 60px rgba(0, 0, 0, 0);
}
.assets-style-businessApply--index-limitedTimeLeft-wC0oo .assets-style-businessApply--index-inner-3abRo {
  color: #ffffff;
  font-size: 12px;
  position: absolute;
  top: 5px;
  left: 1px;
  transform: rotate(-45deg);
}
.assets-style-businessApply--index-cardFrame-2UlKd .ant-list-item-meta {
  margin-bottom: 0;
}
.assets-style-businessApply--index-cardFrame-2UlKd .ant-list-item-meta-title {
  margin-bottom: 0;
}
.assets-style-businessApply--index-cardFrame-2UlKd .ant-list-item-meta-content {
  width: calc(100% - 100px);
}
.assets-style-businessApply--index-cardFrame-2UlKd .assets-style-businessApply--index-cardItem-3l9rG {
  height: 135px;
}
.assets-style-businessApply--index-cardFrame-2UlKd .assets-style-businessApply--index-cardItem-3l9rG:hover {
  box-shadow: 0px 0px 10px 0px rgba(3, 57, 107, 0.4);
  transition: all 0.5s;
  cursor: pointer;
}
.assets-style-businessApply--index-cardFrame-2UlKd .assets-style-businessApply--index-cardItem-3l9rG:hover button {
  display: inline-block;
  position: absolute;
  z-index: 2;
  opacity: 0.6;
  right: 10px;
  top: 25px;
}
.assets-style-businessApply--index-cardFrame-2UlKd .assets-style-businessApply--index-cardItem-3l9rG:hover button:hover {
  opacity: 1;
}
.assets-style-businessApply--index-cardFrame-2UlKd button {
  display: none;
  opacity: 0;
}
.assets-style-businessApply--index-cardFrame-2UlKd .assets-style-businessApply--index-comment-2MpD8 {
  margin-left: 6px;
  color: rgba(0, 0, 0, 0.85);
}
.assets-style-businessApply--index-cardFrame-2UlKd .assets-style-businessApply--index-saveIco-yl5pT {
  width: 48px;
  height: 48px;
}
.assets-style-businessApply--index-cardFrame-2UlKd .assets-style-businessApply--index-tjDiv-1Z3es {
  position: relative;
  left: 2px;
  top: -2px;
}
.assets-style-businessApply--index-cardFrame-2UlKd .assets-style-businessApply--index-tjDiv-1Z3es .assets-style-businessApply--index-iconTj-KDITw {
  position: absolute;
  color: #fff;
  font-size: 13px;
  top: 1px;
  left: 6px;
}
.assets-style-businessApply--index-cardFrame-2UlKd .assets-style-businessApply--index-jian-3FAXC {
  display: inline-flex;
  height: 31px;
  width: calc(100% - 50px);
}
.plugins-Ellipsis-index-ellipsis-3YN7y {
  overflow: hidden;
  display: inline-block;
  word-break: break-all;
  width: 100%;
}

.plugins-Ellipsis-index-lines-2InfR {
  position: relative;
}
.plugins-Ellipsis-index-lines-2InfR .plugins-Ellipsis-index-shadow-FOaPe {
  display: block;
  position: relative;
  color: transparent;
  opacity: 0;
  z-index: -999;
}

.plugins-Ellipsis-index-lineClamp-1R8hh {
  position: relative;
  overflow: hidden;
  text-overflow: ellipsis;
  display: -webkit-box;
}
.assets-style-provePrint--index-listItem-ORm8l:hover {
  cursor: pointer;
  box-shadow: #a9a9a9 7px 9px 10px;
}
.assets-style-provePrint--index-seal-2eAz- {
  position: absolute;
  right: 30px;
  bottom: 70px;
  width: 100px;
  height: 100px;
}
.assets-style-provePrint--index-card-2iIXd .ant-card-actions li {
  margin: 0;
}
.assets-style-provePrint--index-card-2iIXd .ant-card-actions li span {
  width: 100%;
}
.assets-style-provePrint--index-card-2iIXd :hover {
  cursor: pointer;
}
.assets-style-provePrint--index-drawer-aK-Ob .ant-drawer-body {
  padding: 0;
}
.assets-style-notice--index-radioBtn-2HneM .ant-radio-button-wrapper-checked:first-child {
  border-color: #fff;
  color: #000;
  font-size: 16px;
  outline: none;
}
.assets-style-notice--index-radioBtn-2HneM .ant-radio-button-wrapper {
  height: 0px;
  padding: 0px;
  border: 1px solid #fff;
  font-size: 16px;
  box-shadow: none;
  color: #8c8c8c;
}
.assets-style-notice--index-radioBtn-2HneM .ant-radio-button-wrapper-checked {
  border-color: #fff !important;
  color: #000 !important;
  font-size: 16px;
  outline: none !important;
  box-shadow: none !important;
}
.assets-style-notice--index-radioBtn-2HneM .ant-divider {
  width: 2px;
  color: #b5bdc9;
  transform: skewX(-30deg);
}
.assets-style-notice--index-item-2AS1w {
  transition: all .3s;
  overflow: hidden;
  cursor: pointer;
}
.assets-style-notice--index-item-2AS1w:last-child {
  border-bottom: 0;
}
.assets-style-notice--index-item-2AS1w .assets-style-notice--index-meta-1BUKj {
  width: 100%;
}
.assets-style-notice--index-item-2AS1w .assets-style-notice--index-title-2-GGr {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.65);
  line-height: 22px;
  margin-bottom: 8px;
}
.assets-style-notice--index-item-2AS1w .assets-style-notice--index-extra-3ZCDQ {
  float: right;
  margin-right: 24px;
}
.assets-style-notice--index-item-2AS1w .assets-style-notice--index-del-1Jx_j {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  font-weight: normal;
  margin-right: 0;
  margin-top: -1.5px;
}
.assets-style-notice--index-item-2AS1w .assets-style-notice--index-isRead-3fe0r {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  font-weight: normal;
  margin-top: -1.5px;
}
.assets-style-notice--index-item-2AS1w .assets-style-notice--index-description-F4Sqa {
  font-size: 12px;
  line-height: 1.5;
}
.assets-style-notice--index-noticeTag-3WRbs .ant-tag {
  border-radius: 40px !important;
}
.assets-style-notice--index-tagStyle-ZOE25 {
  margin-left: 10px;
  display: inline-block;
  width: 50px;
  border: 1px solid #fbbf8e;
  border-radius: 11.5px;
  color: #fbbf8e;
  text-align: center;
}
.assets-style-notice--index-card-1ku8X .ant-card-head {
  padding: 0px 8px 0px 8px!important;
}
.assets-style-notice--index-card-1ku8X .ant-card-body {
  padding: 0px 8px 16px 8px!important;
}
.assets-style-notice--index-card-1ku8X .ant-list-item-meta-title {
  margin-bottom: 0px;
}
.assets-style-notice--index-card-1ku8X .ant-card-head .ant-card-head-title {
  padding: 12px 0px!important;
}
.assets-style-notice--index-tabs-2zCZh .ant-tabs-nav-wrap {
  padding: 0 12px;
}
.assets-style-notice--index-tabs-2zCZh .ant-list-item-meta-title {
  margin-bottom: 0px;
  line-height: normal;
}
.assets-style-notice--index-tabs-2zCZh .ant-tabs-tab {
  font-size: 16px;
  font-weight: bold !important;
}
.assets-style-notice--index-attachment-1tkkx {
  font-weight: normal;
  line-height: 30px;
}
.assets-style-notice--index-file-3W1y0 {
  line-height: 30px;
}
.assets-style-notice--index-file-3W1y0 a {
  color: #555;
}
@font-face {
  font-family: 'iconfont';
  /* project id 864711 */
  src: url('//at.alicdn.com/t/font_864711_o0fi9nz4ues.eot');
  src: url('//at.alicdn.com/t/font_864711_o0fi9nz4ues.eot?#iefix') format('embedded-opentype'), url('//at.alicdn.com/t/font_864711_o0fi9nz4ues.woff') format('woff'), url('//at.alicdn.com/t/font_864711_o0fi9nz4ues.ttf') format('truetype'), url('//at.alicdn.com/t/font_864711_o0fi9nz4ues.svg#iconfont') format('svg');
}
.assets-style-attention--page-iconfont-xiL7y {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
.assets-style-attention--page-attentionPage-MSN7I {
  height: 100%;
}
.assets-style-attention--page-attentionPage-MSN7I ul {
  padding: 0px;
}
.assets-style-attention--page-attentionPage-MSN7I .ant-tabs-ink-bar {
  background-color: #52A025;
  height: 3px;
  margin-left: 20px;
}
.assets-style-attention--page-attentionPage-MSN7I .ant-tabs-nav .ant-tabs-tab {
  margin-left: 20px;
  font-size: 16px;
  width: 120px;
  margin-right: -10px;
  text-align: center;
}
.assets-style-attention--page-attentionPage-MSN7I .ant-tabs-nav .ant-tabs-tab:first-child {
  margin-left: 20px;
}
.assets-style-attention--page-attentionPage-MSN7I .ant-tabs-nav-container {
  line-height: 40px;
}
@media (min-width: 0px) {
  .assets-style-attention--page-headOpt-cVE6d {
    width: 85%;
  }
  .assets-style-attention--page-delete-1cvbN {
    width: 13%;
  }
}
@media (min-width: 1601px) {
  .assets-style-attention--page-headOpt-cVE6d {
    width: 88%;
  }
  .assets-style-attention--page-delete-1cvbN {
    width: 9%;
  }
}
.assets-style-attention--page-mainContent-3AoPt {
  height: 100%;
  background: #ffffff;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-tabTop-2Hy7x {
  border-bottom: 1px solid #e8e8e8;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-tabTop-2Hy7x ul li {
  list-style: none;
  display: inline-block;
  text-align: center;
  padding: 0px 12px;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-search-1FRB1 {
  width: 100%;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-searchIcon-2sEdo {
  color: rgba(0, 0, 0, 0.25);
  font-weight: bold;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-filter-1gGwx {
  width: 80%;
  display: inline-block;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-filter-1gGwx li:first-child {
  padding-left: 5px;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-filter-1gGwx li {
  font-size: 14px;
  font-weight: bold;
  cursor: pointer;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-searchInput-2gKDY {
  width: 20%;
  display: inline-block;
  text-align: right;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-headOpt-cVE6d {
  margin-top: 7px;
  display: inline-block;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-headOpt-cVE6d .assets-style-attention--page-pageingButton-D1m7U {
  color: #1890ff;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-headOpt-cVE6d .assets-style-attention--page-pageingNotAllowed-3i4oy {
  color: #D1D1D1;
  cursor: not-allowed;
  margin: 0 25px;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-headOpt-cVE6d li:nth-child(1) {
  width: 15%;
  min-width: 200px;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-headOpt-cVE6d li:nth-child(2) {
  width: 15%;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-delete-1cvbN {
  margin-top: 12px;
  display: inline-block;
  float: right;
  padding: 3px 20px;
  text-align: center;
  border-radius: 3px;
  color: #ffffff;
  background: #e66767;
  cursor: pointer;
  margin-left: 10px;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-tabTop-2Hy7x .assets-style-attention--page-checkBox-2Vtnm {
  margin: 12px 0px;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-tabTop-2Hy7x .assets-style-attention--page-checkBox-2Vtnm li {
  padding: 0px;
  text-align: left;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-mainList-3MvG6 ul li {
  list-style: none;
  display: inline-block;
  text-align: center;
  padding: 0px 20px;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-mainList-3MvG6 ul:first-child {
  text-align: left;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-mainList-3MvG6 ul:last-child li {
  padding: 0px;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-listDiv-1BmMi {
  width: 100%;
  border-bottom: 1px solid #f0f2f1;
}
.assets-style-attention--page-mainContent-3AoPt .assets-style-attention--page-listDiv-1BmMi .assets-style-attention--page-cancel-2p4Jy {
  display: inline-block;
  width: 110px;
  text-align: center;
  height: 35px;
  line-height: 35px;
  border-radius: 16px;
  margin-top: 10px;
}
.assets-style-attention--page-listDiv-1BmMi {
  /*  .todo,.doing,.done{
      display: inline-block;
      border-radius: 3px;
      padding: 0px 10px;
      text-align: center;
      color:#ffffff;
      margin-right: 15px;
      font-size: 14px;
    }
    .todo{
      background: #e66767;
    }
    .doing{
      background: #eca928;
    }
    .done{
      background: #37a164;
    }*/
}
.assets-style-attention--page-listDiv-1BmMi .ant-checkbox-group {
  width: 100%;
}
.assets-style-attention--page-listDiv-1BmMi .ant-list-item {
  padding: 12px 10px 12px 0px;
}
.assets-style-attention--page-listDiv-1BmMi .ant-list-item-meta-title {
  margin-bottom: 0px;
}
.assets-style-attention--page-listDiv-1BmMi .ant-list-item-meta-title a {
  color: #363636;
  font-size: 16px;
  font-family: MicrosoftYaHei-Bold;
  font-weight: bold;
}
.assets-style-attention--page-listDiv-1BmMi .ant-list-item-meta-avatar {
  margin-right: 0px;
  padding-top: 10px;
}
.assets-style-attention--page-listDiv-1BmMi .assets-style-attention--page-title-1VFjf a:hover {
  color: #1890ff;
  text-decoration: underline;
}
.assets-style-attention--page-listDiv-1BmMi .assets-style-attention--page-listUl-2qZ_u {
  padding-top: 5px;
  width: 100%;
}
.assets-style-attention--page-listDiv-1BmMi .assets-style-attention--page-listUl-2qZ_u li {
  padding: 0px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  border-left: 2px solid #b2b2b2;
  line-height: 14px;
  text-align: center;
}
.assets-style-attention--page-listDiv-1BmMi .assets-style-attention--page-listUl-2qZ_u li:nth-child(1) {
  width: 12%;
  text-align: left;
  border-left: none;
  padding: 0px;
}
.assets-style-attention--page-listDiv-1BmMi .assets-style-attention--page-listUl-2qZ_u li:nth-child(2) {
  width: 23%;
}
.assets-style-attention--page-listDiv-1BmMi .assets-style-attention--page-listUl-2qZ_u li:nth-child(3),
.assets-style-attention--page-listDiv-1BmMi .assets-style-attention--page-listUl-2qZ_u li:nth-child(4) {
  width: 25%;
}
.assets-style-attention--page-listDiv-1BmMi .assets-style-attention--page-listUl-2qZ_u li:nth-child(5) {
  width: 10%;
}
.assets-style-attention--page-listDiv-1BmMi .assets-style-attention--page-listUl-2qZ_u li:nth-child(5):hover {
  color: #1890ff;
  text-decoration: underline;
  cursor: pointer;
}
.assets-style-attention--page-pagination-2O0p9 {
  width: 100%;
  padding-right: 20px;
  padding-top: 30px;
  text-align: right;
  height: 100px;
  text-align: center;
}
.assets-style-attention--page-modalContent-1r5sb {
  width: 100%;
  text-align: center;
  font-size: 14px;
}
.assets-style-attention--page-modalContent-1r5sb .assets-style-attention--page-icon-2F0eI {
  color: #f1a42b;
}
.assets-style-attention--page-ant-modal-footer-2c-yG {
  background: #f8faf9;
}
@font-face {
  font-family: 'iconfont';
  /* project id 864711 */
  src: url('//at.alicdn.com/t/font_864711_j7wyjg6p5q.eot');
  src: url('//at.alicdn.com/t/font_864711_j7wyjg6p5q.eot?#iefix') format('embedded-opentype'), url('//at.alicdn.com/t/font_864711_j7wyjg6p5q.woff') format('woff'), url('//at.alicdn.com/t/font_864711_j7wyjg6p5q.ttf') format('truetype'), url('//at.alicdn.com/t/font_864711_j7wyjg6p5q.svg#iconfont') format('svg');
}
.assets-style-transactionCard--index-iconfont-2kWmA {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
/*事务列表公共样式*/
.assets-style-transactionCard--index-transaction-sywou {
  width: 100%;
  background: #ffffff;
  overflow: hidden;
  margin-bottom: 25px;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-title-3kvxc {
  border-bottom: 1px solid #E1E6E3;
  line-height: 51px;
  padding: 0 21px;
  vertical-align: middle;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-headTitle-3CHjT {
  font-weight: bold;
  color: #005825;
  font-size: 18px;
  line-height: 51px;
  text-align: left;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-headTitle-3CHjT:hover {
  border-bottom: 1px solid #005825;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-cardInfo-1lR6F {
  position: absolute;
  top: -12px;
  left: 95px;
  font-size: 12px;
  color: #B9BFBB;
  cursor: pointer;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-totalSpan-wXAq3 {
  height: 17px;
  width: 35px;
  display: inline-block;
  position: relative;
  top: 17px;
  background: #FD6767;
  border-radius: 8px 8px 9px 0px;
  font-size: 14px;
  font-family: ArialMT;
  font-weight: normal;
  margin-left: 15px;
  color: #ffffff;
  text-align: center;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-totalSpan-wXAq3 span {
  position: relative;
  top: -17px;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-count-3ybG- {
  display: inline-block;
  float: right;
  /* margin-right: 35px;*/
  line-height: 51px;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-count-3ybG- a {
  color: #62B68E;
  font-size: 14px;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-count-3ybG- a:hover {
  text-decoration: underline;
  color: #005825;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-isShow-2KCE_ {
  float: right;
  color: #C9C9C9;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-isShow-2KCE_ a {
  color: #C9C9C9;
  font-size: 14px;
  height: 14px;
  line-height: 14px;
  margin-right: 7px;
  cursor: pointer;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-isShow-2KCE_ a:hover {
  color: #005825;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-isShow-2KCE_ a:hover .assets-style-transactionCard--index-plus-3qzEW {
  text-decoration: underline;
}
@media (min-width: 1680px) {
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-approvalUl-2yeEt li:nth-child(1) {
    width: 40%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-approvalUl-2yeEt li:nth-child(2) {
    width: 17%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-approvalUl-2yeEt li:nth-child(3) {
    width: 20%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-approvalUl-2yeEt li:nth-child(4) {
    width: 18%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-approvalUl-2yeEt li:nth-child(5) {
    width: 5%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-applyUl-1fKxA li:nth-child(1) {
    width: 40%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-applyUl-1fKxA li:nth-child(2) {
    width: 23%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-applyUl-1fKxA li:nth-child(3) {
    width: 11%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-applyUl-1fKxA li:nth-child(4) {
    width: 11%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-applyUl-1fKxA li:nth-child(5) {
    width: 10%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-applyUl-1fKxA li:nth-child(6) {
    width: 5%;
  }
}
@media (max-width: 1680px) {
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-approvalUl-2yeEt li:nth-child(1) {
    width: 30%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-approvalUl-2yeEt li:nth-child(2) {
    width: 20%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-approvalUl-2yeEt li:nth-child(3) {
    width: 22%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-approvalUl-2yeEt li:nth-child(4) {
    width: 22%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-approvalUl-2yeEt li:nth-child(5) {
    width: 5%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-applyUl-1fKxA li:nth-child(1) {
    width: 34%;
    margin-left: -20px;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-applyUl-1fKxA li:nth-child(2) {
    width: 23%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-applyUl-1fKxA li:nth-child(3) {
    width: 13%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-applyUl-1fKxA li:nth-child(4) {
    width: 13%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-applyUl-1fKxA li:nth-child(5) {
    width: 12%;
  }
  .assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-applyUl-1fKxA li:nth-child(6) {
    width: 3%;
  }
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 {
  margin: 0px 16px;
  position: relative;
  overflow: hidden;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-bottomUl-2tsTW {
  width: 100%;
  height: 58px;
  text-align: center;
  line-height: 58px;
  position: absolute;
  bottom: 0;
  list-style: none;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-bottomUl-2tsTW a {
  color: #62B68E;
}
.assets-style-transactionCard--index-transaction-sywou .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-bottomUl-2tsTW a:hover {
  color: #005825;
  text-decoration: underline;
}
.assets-style-transactionCard--index-dataList-3JYuG {
  overflow: hidden;
  text-align: center;
  position: relative;
}
.assets-style-transactionCard--index-dataList-3JYuG .assets-style-transactionCard--index-listMain-1OcK- {
  overflow: hidden;
}
.assets-style-transactionCard--index-dataList-3JYuG .assets-style-transactionCard--index-listMain-1OcK- ul {
  height: 41px;
  box-shadow: #E1E6E3 0px 0.4px;
  width: 97%;
  cursor: pointer;
  padding: 0px 5px;
}
.assets-style-transactionCard--index-dataList-3JYuG .assets-style-transactionCard--index-listMain-1OcK- ul:hover {
  background: #F5FDF8;
  /*background-color : #e6fff5;*/
}
.assets-style-transactionCard--index-dataList-3JYuG .assets-style-transactionCard--index-listMain-1OcK- ul li {
  display: inline-block;
  height: 40px;
  padding-right: 16px;
  line-height: 40px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  text-align: left;
  color: #B1B1B1;
}
.assets-style-transactionCard--index-dataList-3JYuG .assets-style-transactionCard--index-listMain-1OcK- ul li a {
  color: #B1B1B1;
  cursor: pointer;
}
.assets-style-transactionCard--index-dataList-3JYuG .assets-style-transactionCard--index-listMain-1OcK- ul li a:hover {
  color: #005825;
  text-decoration: underline;
}
.assets-style-transactionCard--index-dataList-3JYuG .assets-style-transactionCard--index-listMain-1OcK- ul .assets-style-transactionCard--index-doing-Gj0JA .assets-style-transactionCard--index-iconfont-2kWmA {
  color: #eca928;
  font-size: 6px;
}
.assets-style-transactionCard--index-dataList-3JYuG .assets-style-transactionCard--index-listMain-1OcK- ul .assets-style-transactionCard--index-done-3pPcn .assets-style-transactionCard--index-iconfont-2kWmA {
  color: #37a164;
  font-size: 6px;
}
.assets-style-transactionCard--index-dataList-3JYuG .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-approvalUl-2yeEt li:nth-child(1) a,
.assets-style-transactionCard--index-dataList-3JYuG .assets-style-transactionCard--index-listMain-1OcK- .assets-style-transactionCard--index-applyUl-1fKxA li:nth-child(1) a {
  color: #363636;
  font-weight: bold;
}
.assets-style-transactionCard--index-dataList-3JYuG .assets-style-transactionCard--index-notMore-31CNF {
  font-size: 14px;
  color: #B1B1B1;
  list-style: none;
}
.assets-style-transactionCard--index-dataList-3JYuG .assets-style-transactionCard--index-notMore-31CNF li {
  position: absolute;
  width: 100%;
  bottom: 0px;
  text-align: center;
}
.assets-style-transactionCard--index-normal-l_wk2 {
  height: 360px;
}
.assets-style-transactionCard--index-normal-l_wk2 .assets-style-transactionCard--index-nullData-34e3p {
  height: 302px;
  width: 100%;
  background: url(../../assets/images/2X7kAYeRBl.png) no-repeat center;
}
.assets-style-transactionCard--index-normal-l_wk2 .assets-style-transactionCard--index-nullData-34e3p .assets-style-transactionCard--index-message-1lj00 {
  position: relative;
  top: 230.25px;
  text-align: center;
  color: #DBDBDB;
  font-size: 14px;
}
.assets-style-transactionCard--index-normal-l_wk2 .assets-style-transactionCard--index-list-1XgH2 {
  height: 307px;
  width: 100%;
}
.assets-style-transactionCard--index-normal-l_wk2 .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-dataList-3JYuG {
  height: 249px;
}
.assets-style-transactionCard--index-normal-l_wk2 .assets-style-transactionCard--index-list-1XgH2 .assets-style-transactionCard--index-dataList-3JYuG .assets-style-transactionCard--index-listMain-1OcK- {
  height: 307px;
}
.assets-style-transactionCard--index-transactionCard-3IeLG {
  position: relative;
  padding: 0 21px;
  height: 360px;
}
/****************标题部分开始***************/
.assets-style-transactionCard--index-title-3kvxc {
  border-bottom: 1px solid #E1E6E3;
  height: 61px;
  line-height: 61px;
  width: 100%;
  padding: 0;
  vertical-align: middle;
}
.assets-style-transactionCard--index-title-3kvxc li {
  float: left;
  list-style: none;
  height: 40px;
  width: 200px;
  text-align: center;
  vertical-align: middle;
  margin-top: 9px;
  display: inline-block;
  color: #005825;
  font-size: 16px;
  padding: 0px;
}
.assets-style-transactionCard--index-title-3kvxc li span {
  height: 34px;
  width: 100%;
  display: inline-block;
  margin-left: -15px;
  position: relative;
  top: -10px;
  cursor: pointer;
  text-align: center;
}
.assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-active-1Y1SP {
  background: #37A164;
  color: #ffffff;
}
.assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-more-2NKCe {
  height: 59px;
  line-height: 59px;
  width: 250px;
  margin: 0px;
  float: right;
  text-align: right;
}
.assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-more-2NKCe a {
  font-weight: normal;
  font-size: 14px;
  color: #37A164;
  cursor: pointer;
}
.assets-style-transactionCard--index-title-3kvxc .assets-style-transactionCard--index-more-2NKCe a:hover {
  color: #005825;
  text-decoration: underline;
}
/****************标题部分结束***************/
.assets-style-transactionCard--index-listBottom-2H4gr {
  width: 100%;
  position: absolute;
  bottom: 10px;
  text-align: center;
  height: 50px;
  line-height: 50px;
}
.assets-style-transactionCard--index-listBottom-2H4gr a {
  color: #B1B1B1;
  cursor: pointer;
  font-size: 14px;
}
.assets-style-transactionCard--index-listBottom-2H4gr a:hover {
  color: #005825;
  text-decoration: underline;
}
.assets-style-transactionCard--index-popover-3IUSV {
  width: 300px;
}
.assets-style-transactionCard--index-popover-3IUSV p {
  width: 100%;
  padding: 10px 0px;
  text-align: center;
}
.assets-style-transactionCard--index-popover-3IUSV p:last-child {
  border: 1px solid #E1E6E3;
  padding: 0px;
  margin: 10px auto;
  width: 96%;
}
.assets-style-transactionCard--index-popover-3IUSV .assets-style-transactionCard--index-process-3GU9f {
  position: relative;
}
.assets-style-transactionCard--index-popover-3IUSV .assets-style-transactionCard--index-process-3GU9f .assets-style-transactionCard--index-circleDiv-3fsyr {
  position: absolute;
  width: 100%;
  height: 160px;
  line-height: 160px;
  font-size: 36px;
  font-weight: bold;
  color: #62B68E;
  text-align: center;
  z-index: 2;
  top: 10px;
  left: 0px;
}
.assets-style-transactionCard--index-popover-3IUSV .assets-style-transactionCard--index-process-3GU9f .assets-style-transactionCard--index-circleSvg-23-_w {
  width: 160px;
  height: 160px;
  viewbox: 0 0 160px 160px;
}
.assets-style-transactionCard--index-popover-3IUSV .assets-style-transactionCard--index-process-3GU9f .assets-style-transactionCard--index-circleSvg-23-_w circle {
  -webkit-transition: stroke-dasharray 0.25s;
  transition: stroke-dasharray 0.25s;
  stroke-width: 15px;
  fill: none;
}
.assets-style-transactionCard--index-popover-3IUSV .assets-style-transactionCard--index-process-3GU9f .assets-style-transactionCard--index-circleSvg-23-_w circle:last-child {
  transform: matrix(0, -1, 1, 0, 0, 160px);
  stroke: #62B68E;
}
.assets-style-transactionCard--index-popover-3IUSV .assets-style-transactionCard--index-process-3GU9f .assets-style-transactionCard--index-circleSvg-23-_w circle:first-child {
  stroke: #D1D3D7;
}
.assets-style-transactionCard--index-popover-3IUSV ul {
  border: 1px solid #E1E6E3;
  text-align: left;
  line-height: 28px;
}
.assets-style-transactionCard--index-popover-3IUSV ul li {
  display: inline-block;
  list-style: none;
  text-align: center;
}
.assets-style-transactionCard--index-popover-3IUSV ul li:nth-child(1) {
  width: 35%;
  background: #DBDBDB;
}
.assets-style-transactionCard--index-popover-3IUSV ul li:nth-child(2) {
  width: 65%;
}
/*
:global(#loading-mask){
  background: red;
}
div#loading-mask {
  display: none;
}*/
.assets-style-dataGather-dataAudit--personnelAudit-title-2bshs {
  font-size: 20px;
}
.assets-style-dataGather-dataAudit--personnelAudit-userInfo-3zGnL {
  display: flex;
  align-items: center;
  line-height: 32px;
}
.assets-style-dataGather-dataAudit--personnelAudit-userInfo-3zGnL .assets-style-dataGather-dataAudit--personnelAudit-avatarArea-3LsV7 {
  display: inline-block;
  width: 90px;
}
.assets-style-dataGather-dataAudit--personnelAudit-userInfo-3zGnL .assets-style-dataGather-dataAudit--personnelAudit-avatarArea-3LsV7 .assets-style-dataGather-dataAudit--personnelAudit-avatarParent-2Jlmq {
  overflow: hidden;
  position: relative;
  display: inline-block;
  width: 100%;
  height: 90px;
  border-radius: 50%;
}
.assets-style-dataGather-dataAudit--personnelAudit-userInfo-3zGnL .assets-style-dataGather-dataAudit--personnelAudit-avatarArea-3LsV7 .assets-style-dataGather-dataAudit--personnelAudit-avatarParent-2Jlmq .assets-style-dataGather-dataAudit--personnelAudit-avatar-3QKe8 {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.assets-style-dataGather-dataAudit--personnelAudit-userInfo-3zGnL .assets-style-dataGather-dataAudit--personnelAudit-detail-AOwgf {
  flex: 1 1;
  display: inline-block;
  width: calc(100% - 110px);
  float: right;
  padding-left: 8px;
}
.assets-style-dataGather-dataAudit--personnelAudit-userInfo-3zGnL .assets-style-dataGather-dataAudit--personnelAudit-detail-AOwgf .assets-style-dataGather-dataAudit--personnelAudit-username-22kyi {
  font-size: 16px;
  font-weight: bold;
}
.assets-style-dataGather-dataAudit--personnelAudit-userInfo-3zGnL .assets-style-dataGather-dataAudit--personnelAudit-detail-AOwgf .assets-style-dataGather-dataAudit--personnelAudit-commitTime-1WMV_ {
  padding-left: 12px;
}
.assets-style-dataGather-dataAudit--personnelAudit-userInfo-3zGnL .assets-style-dataGather-dataAudit--personnelAudit-detail-AOwgf .assets-style-dataGather-dataAudit--personnelAudit-baseInfo-1yQ3H {
  width: 20%;
  overflow: hidden;
  white-space: nowrap;
  float: left;
}
.assets-style-dataGather-dataAudit--personnelAudit-userInfo-3zGnL .assets-style-dataGather-dataAudit--personnelAudit-detail-AOwgf .assets-style-dataGather-dataAudit--personnelAudit-otherInfo-3uk6J {
  width: 20%;
  float: left;
  overflow: hidden;
  white-space: nowrap;
  padding-right: 5px;
}
.assets-style-dataGather-dataAudit--personnelAudit-audit-tabs-parent-2sSR0 {
  width: 100%;
  display: flex;
  border-bottom: 1px solid #e8e8e8;
}
.assets-style-dataGather-dataAudit--personnelAudit-audit-tabs-parent-2sSR0 .assets-style-dataGather-dataAudit--personnelAudit-audit-normal-left-xJAor {
  flex: 1 1 0%;
  overflow: hidden;
  line-height: 40px;
  height: 40px;
  white-space: nowrap;
}
.assets-style-dataGather-dataAudit--personnelAudit-audit-tabs-parent-2sSR0 .assets-style-dataGather-dataAudit--personnelAudit-audit-normal-left-xJAor.assets-style-dataGather-dataAudit--personnelAudit-audit-more-1SACx {
  white-space: normal;
  height: auto;
}
.assets-style-dataGather-dataAudit--personnelAudit-audit-tabs-parent-2sSR0 .assets-style-dataGather-dataAudit--personnelAudit-audit-normal-left-xJAor::-webkit-scrollbar {
  display: none;
}
.assets-style-dataGather-dataAudit--personnelAudit-audit-tabs-parent-2sSR0 .assets-style-dataGather-dataAudit--personnelAudit-audit-normal-right-3w70i {
  width: 40px;
  text-align: center;
  line-height: 40px;
}
.assets-style-dataGather-dataAudit--personnelAudit-audit-more-parent-1cLvj {
  width: 100%;
  height: auto;
  margin: 10px auto;
  border: 1px solid #e8e8e8;
  border-radius: 5px;
  padding: 10px 15px;
  position: relative;
  display: table;
}
.assets-style-dataGather-dataAudit--personnelAudit-audit-more-parent-1cLvj .assets-style-dataGather-dataAudit--personnelAudit-audit-icon-down-39TrZ {
  position: absolute;
  top: 5px;
  right: 5px;
}
.assets-style-dataGather-dataAudit--personnelAudit-audit-normal-left-xJAor .assets-style-dataGather-dataAudit--personnelAudit-audit-info-1bSav,
.assets-style-dataGather-dataAudit--personnelAudit-audit-more-parent-1cLvj .assets-style-dataGather-dataAudit--personnelAudit-audit-info-1bSav {
  height: 40px;
  cursor: pointer;
  padding: 0 15px;
  float: left;
}
.assets-style-dataGather-dataAudit--personnelAudit-audit-normal-left-xJAor .assets-style-dataGather-dataAudit--personnelAudit-audit-info-1bSav.assets-style-dataGather-dataAudit--personnelAudit-audit-info-select-2RV_n,
.assets-style-dataGather-dataAudit--personnelAudit-audit-more-parent-1cLvj .assets-style-dataGather-dataAudit--personnelAudit-audit-info-1bSav.assets-style-dataGather-dataAudit--personnelAudit-audit-info-select-2RV_n {
  border-bottom: 3px solid #1890FE;
  color: #1890FE;
}
.assets-style-dataGather-dataAudit--personnelAudit-spin-content-3SQH_ {
  width: 100%;
  height: 100%;
  padding: 0 8px;
}
.assets-style-dataGather-dataAudit--personnelAudit-formItem-1xyw0 label {
  display: flex !important;
}
.assets-style-dataGather-dataAudit--personnelAudit-formItem-1xyw0 .ant-form-item-label label:after {
  display: none;
}
.assets-style-dataGather-dataAudit--personnelAudit-formItem-1xyw0 .ant-form-item-required:before {
  display: none;
}
.assets-style-dataGather-dataAudit--personnelAudit-formItem-1xyw0 .ant-form-item-children {
  display: flex;
}
.assets-style-dataGather-dataAudit--personnelAudit-formItem-1xyw0 .ant-form-item-control {
  line-height: 40px;
}
.assets-style-dataGather-dataAudit--personnelAudit-descriptions-xmyns .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label {
  font-weight: bold;
  padding: 8px;
}
.assets-style-dataGather-dataAudit--personnelAudit-descriptions-xmyns .ant-descriptions-item-no-label {
  display: none;
}
.assets-style-dataGather-dataAudit--personnelAudit-descriptions-xmyns .ant-descriptions-item-label,
.assets-style-dataGather-dataAudit--personnelAudit-descriptions-xmyns .ant-descriptions-item-content {
  width: 33.3%;
}
.assets-style-dataGather-dataAudit--personnelAudit-detailDescriptions-3M4gw .ant-descriptions-bordered.ant-descriptions-small .ant-descriptions-item-label {
  font-weight: bold;
  padding: 8px;
}
.assets-style-dataGather-dataAudit--personnelAudit-detailDescriptions-3M4gw .ant-descriptions-item-no-label {
  display: none;
}
.assets-style-dataGather-dataAudit--personnelAudit-detailDescriptions-3M4gw .ant-descriptions-item-label,
.assets-style-dataGather-dataAudit--personnelAudit-detailDescriptions-3M4gw .ant-descriptions-item-content {
  width: 50%;
}
.assets-style-dataGather-dataAudit--personnelAudit-tooltip-2wJq2 .ant-tooltip-arrow {
  border-right-color: #fff !important;
}
.assets-style-dataGather-dataAudit--personnelAudit-tooltip-2wJq2 .ant-tooltip-inner {
  background-color: #fff;
}
.assets-style-audit--index-layout-footer-3FhDG {
  background-color: white !important;
  height: 50px;
  display: flex;
  align-items: center;
  width: 100%;
  position: absolute;
  bottom: 0;
}
.assets-style-audit--index-layout-header-2FHdC {
  background-color: white !important;
  display: flex;
  align-items: center;
  width: 100%;
}
.assets-style-audit--index-layout-content-3ErHb {
  position: absolute;
  bottom: 50px;
  width: 100%;
}
.assets-style-audit--index-taskTitle-1eyl7 {
  padding: 8px 8px 0 8px;
  margin-bottom: 2px;
  box-shadow: rgba(0, 0, 0, 0.25) 0px 2px 10px;
}
.assets-style-audit--index-taskTitle-1eyl7 .assets-style-audit--index-searchRow-3PBVj {
  display: flex;
  align-items: center;
}
.assets-style-audit--index-taskTitle-1eyl7 .assets-style-audit--index-searchRow-3PBVj .assets-style-audit--index-keyWord-QXJaI {
  width: 250px;
  margin-right: 12px;
}
.assets-style-audit--index-taskTitle-1eyl7 .assets-style-audit--index-searchRow-3PBVj .assets-style-audit--index-department-26a0Q {
  width: 250px;
  margin-right: 12px;
}
.assets-style-audit--index-taskTitle-1eyl7 .assets-style-audit--index-searchRow-3PBVj .assets-style-audit--index-department-26a0Q input {
  cursor: pointer;
}
.assets-style-audit--index-taskTitle-1eyl7 .assets-style-audit--index-content-3ySsi {
  display: flex;
  align-items: flex-end;
  line-height: 40px;
}
.assets-style-audit--index-taskTitle-1eyl7 .assets-style-audit--index-content-3ySsi .assets-style-audit--index-gatherNameTitle-97OV1 {
  font-weight: bold;
  color: rgba(0, 0, 0, 0.65);
  float: left;
  position: absolute;
  top: 0;
}
.assets-style-audit--index-taskTitle-1eyl7 .assets-style-audit--index-content-3ySsi .assets-style-audit--index-gatherNameArea-IyF8f {
  display: flex;
  flex: 1 1;
  float: left;
  height: 100%;
  margin-left: 65px;
}
.assets-style-audit--index-taskTitle-1eyl7 .assets-style-audit--index-content-3ySsi .assets-style-audit--index-gatherNameArea-IyF8f .assets-style-audit--index-gatherTask-3N7M7 {
  padding: 0 10px;
  cursor: pointer;
  float: left;
  height: 40px;
  line-height: 40px;
}
.assets-style-audit--index-taskTitle-1eyl7 .assets-style-audit--index-content-3ySsi .assets-style-audit--index-gatherNameArea-IyF8f .anticon {
  margin-left: 5px;
}
.assets-style-audit--index-taskTitle-1eyl7 .assets-style-audit--index-content-3ySsi .assets-style-audit--index-gatherNameArea-IyF8f > :first-child {
  margin-left: 6px;
  text-align: left;
  overflow: hidden;
  height: 100%;
  float: left;
}
.assets-style-audit--index-taskTitle-1eyl7 .assets-style-audit--index-content-3ySsi .assets-style-audit--index-gatherNameArea-IyF8f > :nth-child(2) {
  text-align: center;
  height: 100%;
  float: left;
}
.assets-style-audit--index-taskTitle-1eyl7 .assets-style-audit--index-dataStatusTitle-3tmYX {
  font-weight: bold;
  color: rgba(0, 0, 0, 0.65);
  height: 43px;
  line-height: 43px;
  float: left;
}
.assets-style-audit--index-taskTitle-1eyl7 .assets-style-audit--index-statusTab-1gRjG {
  display: inline-block;
  margin-left: 0px;
  color: #CCCCCC;
  float: left;
}
.assets-style-audit--index-taskContent-e4Ynz {
  padding: 8px 8px 0 8px;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD {
  width: 100%;
  cursor: default;
  border-radius: 5px;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .assets-style-audit--index-checkbox-1yE1o {
  position: absolute;
  left: 0;
  top: 0;
  margin-top: 5%;
  margin-left: 5%;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .assets-style-audit--index-avatar-2Nz5C {
  overflow: hidden;
  position: relative;
  display: inline-block;
  margin-top: 20%;
  border-radius: 50%;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .assets-style-audit--index-avatar-2Nz5C img {
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .assets-style-audit--index-metaTitle-3Y3Uh {
  width: 100%;
  text-align: center;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .assets-style-audit--index-metaTitle-3Y3Uh label {
  font-size: 16px;
  font-weight: bold;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .assets-style-audit--index-metaDescription-2rjuX {
  width: 100%;
  text-align: center;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .assets-style-audit--index-metaDescription-2rjuX .assets-style-audit--index-postType-2KIaq {
  height: 21px;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .assets-style-audit--index-metaDescription-2rjuX .assets-style-audit--index-userInfo-25bdr {
  display: flex;
  align-items: center;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .assets-style-audit--index-metaDescription-2rjuX .assets-style-audit--index-userInfo-25bdr > :nth-child(1) {
  float: left;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .assets-style-audit--index-metaDescription-2rjuX .assets-style-audit--index-userInfo-25bdr > :nth-child(3) {
  float: right;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .assets-style-audit--index-metaDescription-2rjuX span,
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .assets-style-audit--index-metaDescription-2rjuX label {
  color: #666;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .ant-card-actions li {
  margin: 0;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .ant-card-actions li span {
  width: 100%;
}
.assets-style-audit--index-taskContent-e4Ynz .assets-style-audit--index-auditCard-3kGtD .ant-btn {
  border-top-left-radius: 0 !important;
  border-top-right-radius: 0 !important;
}
.assets-style-audit--index-taskContent-e4Ynz .ant-col-4:nth-child(6n+2),
.assets-style-audit--index-taskContent-e4Ynz .ant-col-4:nth-child(6n+3),
.assets-style-audit--index-taskContent-e4Ynz .ant-col-4:nth-child(6n+4),
.assets-style-audit--index-taskContent-e4Ynz .ant-col-4:nth-child(6n+5),
.assets-style-audit--index-taskContent-e4Ynz .ant-col-4:nth-child(6n+6) {
  padding-left: 12px;
}
.assets-style-audit--index-image-3mkWQ {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 0px;
  margin-top: 5px;
}
.assets-style-dataGather-gatherDefine--index-task-parent-1qltG {
  width: 33.33%;
  float: left;
  height: 233px;
  display: flex;
  align-items: center;
}
.assets-style-dataGather-gatherDefine--index-task-parent-1qltG .assets-style-dataGather-gatherDefine--index-task-parent-content-142LQ:hover {
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.assets-style-dataGather-gatherDefine--index-task-parent-1qltG .assets-style-dataGather-gatherDefine--index-task-parent-content-142LQ {
  width: 95%;
  height: 210px;
  border-radius: 5px;
  background-color: white;
  margin: auto;
  display: flex;
  align-items: center;
}
.assets-style-dataGather-gatherDefine--index-task-parent-1qltG .assets-style-dataGather-gatherDefine--index-task-parent-content-142LQ .assets-style-dataGather-gatherDefine--index-task-add-content-2H0v4 {
  width: 90%;
  height: 180px;
  display: flex;
  align-items: center;
  margin: auto;
  border-radius: 5px;
  border: 1px dashed #e4e4e4;
}
.assets-style-dataGather-gatherDefine--index-task-parent-1qltG .assets-style-dataGather-gatherDefine--index-task-parent-content-142LQ .assets-style-dataGather-gatherDefine--index-task-add-content-2H0v4.assets-style-dataGather-gatherDefine--index-task-add-cursor-2aqHY {
  cursor: pointer;
}
.assets-style-dataGather-gatherDefine--index-task-parent-1qltG .assets-style-dataGather-gatherDefine--index-task-parent-content-142LQ .assets-style-dataGather-gatherDefine--index-text-context-37FEv {
  height: 25%;
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.assets-style-dataGather-gatherDefine--index-task-parent-1qltG .assets-style-dataGather-gatherDefine--index-task-parent-content-142LQ .assets-style-dataGather-gatherDefine--index-text-context-37FEv .assets-style-dataGather-gatherDefine--index-text-icon-1yscN {
  margin-left: 3%;
  color: #2491E6;
  font-size: 14pt;
  cursor: pointer;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-addCard-atK8G {
  text-align: center;
  line-height: 188px;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-addCard-atK8G .assets-style-dataGather-gatherDefine--index-iconPlus-1mqed {
  color: #5E5E5E;
  font-size: 20px;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-addCard-atK8G .assets-style-dataGather-gatherDefine--index-title-2LXr1 {
  margin-left: 8px;
  color: #B0B0B0;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-addCard-atK8G .ant-card {
  border: none;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-addCard-atK8G .ant-card-body {
  border: 1px dashed #e4e4e4;
  cursor: pointer;
  padding: 0;
  height: 188px;
  border-radius: 5px;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .assets-style-dataGather-gatherDefine--index-content-2bQMu {
  display: flex;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .assets-style-dataGather-gatherDefine--index-content-2bQMu .assets-style-dataGather-gatherDefine--index-info-24Qno {
  margin-left: 24px;
  width: calc(100% - 115px);
  display: inline-block;
  float: right;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .assets-style-dataGather-gatherDefine--index-content-2bQMu .assets-style-dataGather-gatherDefine--index-info-24Qno .assets-style-dataGather-gatherDefine--index-title-2LXr1 {
  font-weight: bold;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .assets-style-dataGather-gatherDefine--index-content-2bQMu .assets-style-dataGather-gatherDefine--index-info-24Qno .assets-style-dataGather-gatherDefine--index-ratioTitle-3WsIO {
  margin-top: 8px;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .assets-style-dataGather-gatherDefine--index-content-2bQMu .assets-style-dataGather-gatherDefine--index-info-24Qno .assets-style-dataGather-gatherDefine--index-ratio-q9EqZ {
  display: flex;
  line-height: 42px;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .assets-style-dataGather-gatherDefine--index-content-2bQMu .assets-style-dataGather-gatherDefine--index-info-24Qno .assets-style-dataGather-gatherDefine--index-ratio-q9EqZ > div {
  display: inline-block;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .assets-style-dataGather-gatherDefine--index-content-2bQMu .assets-style-dataGather-gatherDefine--index-info-24Qno .assets-style-dataGather-gatherDefine--index-ratio-q9EqZ .assets-style-dataGather-gatherDefine--index-radioLine-3_g_W {
  width: calc(100% - 100px);
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .assets-style-dataGather-gatherDefine--index-content-2bQMu .assets-style-dataGather-gatherDefine--index-info-24Qno .assets-style-dataGather-gatherDefine--index-ratio-q9EqZ .assets-style-dataGather-gatherDefine--index-count-2Ehtc {
  width: 100px;
  height: 30px;
  float: right;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .assets-style-dataGather-gatherDefine--index-content-2bQMu .assets-style-dataGather-gatherDefine--index-info-24Qno .assets-style-dataGather-gatherDefine--index-ratio-q9EqZ .assets-style-dataGather-gatherDefine--index-count-2Ehtc > span {
  position: absolute;
  top: 0px;
  right: 10px;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .assets-style-dataGather-gatherDefine--index-content-2bQMu img {
  height: 91px;
  width: 91px;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .ant-card {
  padding: 0;
  height: 188px;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .ant-card:hover {
  cursor: default;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .ant-card .ant-card-body {
  padding: 24px 32px 8px;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .ant-card-head {
  background-color: #fafafa;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .ant-card-head-title {
  font-size: 15px;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .anticon {
  font-size: 18px;
  vertical-align: middle;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .ant-slider {
  margin: 14px 17px 10px 0;
  cursor: default;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .ant-slider-rail,
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .ant-slider-track,
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .ant-slider-step {
  height: 8px;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .ant-slider-rail {
  border-radius: 4px;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .ant-slider-track {
  background: linear-gradient(to right, #5FD8AF, #50BAEE);
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .assets-style-dataGather-gatherDefine--index-gatherCard-3SQh- .ant-slider-handle {
  width: 17px;
  height: 17px;
  border: 4px solid #50BAEE;
}
.assets-style-dataGather-gatherDefine--index-main-2iDaD .ant-card {
  border-radius: 5px;
}
@media (min-width: 1024px) {
  .assets-style-dataGather-gatherDefine--index-main-2iDaD .ant-col-xxl-8:nth-child(3n+2),
  .assets-style-dataGather-gatherDefine--index-main-2iDaD .ant-col-xxl-8:nth-child(3n+3) {
    padding-left: 0;
  }
  .assets-style-dataGather-gatherDefine--index-main-2iDaD .ant-col-xl-12:nth-child(even) {
    padding-left: 12px;
  }
  .assets-style-dataGather-gatherDefine--index-main-2iDaD .ant-col-xxl-8:nth-child(n+4) {
    margin-top: 0;
  }
  .assets-style-dataGather-gatherDefine--index-main-2iDaD .ant-col-xl-12:nth-child(n+3) {
    margin-top: 12px;
  }
}
@media (min-width: 1600px) {
  .assets-style-dataGather-gatherDefine--index-main-2iDaD .ant-col-xl-12:nth-child(even) {
    padding-left: 0;
  }
  .assets-style-dataGather-gatherDefine--index-main-2iDaD .ant-col-xxl-8:nth-child(3n+2),
  .assets-style-dataGather-gatherDefine--index-main-2iDaD .ant-col-xxl-8:nth-child(3n+3) {
    padding-left: 12px;
  }
  .assets-style-dataGather-gatherDefine--index-main-2iDaD .ant-col-xl-12:nth-child(n+3) {
    margin-top: 0;
  }
  .assets-style-dataGather-gatherDefine--index-main-2iDaD .ant-col-xxl-8:nth-child(n+4) {
    margin-top: 12px;
  }
}
.assets-style-dataGather-gatherDefine-setting--index-layout-parent-content-3p376 {
  height: 100%;
  background-color: white !important;
}
.assets-style-dataGather-gatherDefine-setting--index-step-344Bh {
  padding: 0px 200px;
  background-color: transparent;
  height: 64px;
  display: flex;
  align-items: center;
}
.assets-style-dataGather-gatherDefine-setting--index-layout-content-relative-3fnYX {
  width: 100%;
  position: relative;
}
.assets-style-dataGather-gatherDefine-setting--index-firstStep-1kXdS {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.assets-style-dataGather-gatherDefine-setting--index-secondStep-3Ojgy .assets-style-dataGather-gatherDefine-setting--index-settingArea-26ykq {
  padding-left: 8px;
}
.assets-style-dataGather-gatherDefine-setting--index-secondStep-3Ojgy .assets-style-dataGather-gatherDefine-setting--index-title-1xwm0 {
  display: flex;
  align-items: center;
}
.assets-style-dataGather-gatherDefine-setting--index-secondStep-3Ojgy .assets-style-dataGather-gatherDefine-setting--index-name-2XJaT {
  font-size: 16px;
}
.assets-style-dataGather-gatherDefine-setting--index-secondStep-3Ojgy .assets-style-dataGather-gatherDefine-setting--index-sort-HxAXt {
  position: absolute;
  right: 0;
}
.assets-style-dataGather-gatherDefine-setting--index-secondStep-3Ojgy .assets-style-dataGather-gatherDefine-setting--index-settingTree-kmqEL .ant-tree-switcher {
  width: 0 !important;
}
.assets-style-dataGather-gatherDefine-setting--index-secondStep-3Ojgy .assets-style-dataGather-gatherDefine-setting--index-settingTree-kmqEL li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.assets-style-dataGather-gatherDefine-setting--index-secondStep-3Ojgy .assets-style-dataGather-gatherDefine-setting--index-settingTree-kmqEL li .ant-tree-node-content-wrapper {
  display: inline;
}
.assets-style-departmentTree--index-container-2Uexf {
  padding: 8px;
}
.assets-style-departmentTree--index-container-2Uexf .assets-style-departmentTree--index-search-1BfHA {
  margin-bottom: 5px;
}
.assets-style-departmentTree--index-container-2Uexf .ant-tree li {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.assets-style-departmentTree--index-container-2Uexf .ant-tree li .ant-tree-node-content-wrapper {
  display: inline;
}
.assets-style-departmentTree--index-rightBorder-gx3nL {
  border-right: 1px solid #ddd;
}
.assets-style-affairs--index-itemButton-2ts_4 {
  border-radius: 20px;
}
.assets-style-affairs--index-itemName-7iOpx {
  font-size: 16px;
  height: 16px;
  color: #363636;
  font-weight: bold;
}
.assets-style-affairs--index-itemButton-2ts_4 i {
  margin-right: 5px;
}
.assets-style-affairs--index-footerStyle-3oh8_ {
  color: #999999;
  height: 36px;
  line-height: 36px;
  margin-bottom: 10px;
}
.assets-style-affairs--index-pageingNotAllowed-2fuab {
  color: #D1D1D1;
  cursor: not-allowed;
  margin: 0 25px;
}
.assets-style-affairs--index-pageingButton-3CQus {
  color: #55906E;
  margin: 0px 25px;
}
/* 紧急程度 -- 特急，加急，超时，快到期*/
.assets-style-affairs--index-emergencySpecial-8IyUr,
.assets-style-affairs--index-emergency-1I0Rw,
.assets-style-affairs--index-emergencyed-oICCp,
.assets-style-affairs--index-emergencying-2pAa3 {
  height: 20px;
  padding: 0 4px 2px 4px;
  color: #fff;
  margin: 2px 13px 2px 0;
  font-size: 12px;
}
.assets-style-affairs--index-emergencySpecial-8IyUr {
  color: #FD6767;
}
.assets-style-affairs--index-emergencySpecial-8IyUr .assets-style-affairs--index-icon-2nSey {
  font-size: 16px;
  position: relative;
  top: 1px;
}
.assets-style-affairs--index-emergency-1I0Rw {
  background-color: #f2aa18;
}
.assets-style-affairs--index-emergencyed-oICCp {
  color: #fd9c67;
}
.assets-style-affairs--index-emergencying-2pAa3 {
  color: #f2aa18;
}
.assets-style-affairs--index-conditionTitle-2nwUz {
  color: #ADADAD;
  font-weight: normal;
}
.assets-style-affairs--index-conditionStyle-XMS9B {
  font-weight: bold;
  cursor: pointer;
  margin-left: 30px;
}
.assets-style-affairs--index-paginationStyle-VwbtK {
  text-align: center;
  font-size: 14px;
  padding-top: 30px;
}
.assets-style-affairs--index-tabBarStyle-29noX {
  text-align: left;
  color: #999999;
}
.assets-style-affairs--index-breadcrumb-3-AMB {
  width: 219px;
  height: 55px;
  font-size: 14px;
  color: #999999;
  line-height: 55px;
}
.assets-style-affairs--index-breadcrumbItem-Q7HCG {
  color: #666666;
  font-weight: bold;
}
.assets-style-affairs--index-prefix-3dx1a {
  color: rgba(0, 0, 0, 0.25);
}
.assets-style-affairs--index-inputWidth-3W-e8 {
  width: 318px;
}
.assets-style-affairs--index-pagingMargin2-1S5T7 {
  margin-left: 50px;
}
.assets-style-affairs--index-pagingLeft-jxt69 {
  display: inline-block;
  width: 90%;
}
.assets-style-affairs--index-pagingRight-1m963 {
  display: inline-block;
  text-align: right;
  padding-right: 10px;
  width: 10%;
}
.assets-style-affairs--index-itemRow-drswK {
  color: #ADADAD;
  font-size: 14px;
  padding: 8px 0 0 0px;
}
.assets-style-affairs--index-itemRow-drswK span {
  border-right: solid 1px #e8e8e8;
  margin-right: 10px;
  padding-right: 10px;
  width: 215px;
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.assets-style-affairs--index-itemRow-drswK span:nth-child(1) {
  width: 200px;
}
.assets-style-affairs--index-itemRow-drswK span:nth-child(2) {
  width: 200px;
}
.assets-style-affairs--index-itemRow-drswK span:last-child {
  border-right: none;
  margin-right: 0;
  padding-right: 0;
}
.assets-style-affairs--index-itemRowLeft-3cVsa {
  width: 90%;
  float: left;
  cursor: pointer;
}
.assets-style-affairs--index-itemRowRight-3qlL3 {
  float: right;
  text-align: right;
  line-height: 63px;
  cursor: pointer;
}
.assets-style-affairs--index-source-3C4iV {
  cursor: pointer;
}
.assets-style-affairs--index-emergencyText-1tCZL {
  margin-left: 5px;
}
.assets-style-affairs--index-card-2-xvl {
  float: left;
  display: inline-block;
  width: 100%;
  overflow: hidden;
  border-radius: 6px;
  margin-bottom: 25px;
  box-shadow: 0 0 10px rgba(0, 88, 37, 0.1);
}
.assets-style-affairs--index-descText-2Nq2q {
  color: #999999;
  font-size: 14px;
}
.assets-style-affairs--index-newsSearch-fQN7V {
  width: 358px;
  display: inline-block;
  position: relative;
}
.assets-style-affairs--index-newsSearch-fQN7V .anticon {
  padding-top: 2px;
}
.assets-style-affairs--index-newsSearch-fQN7V .anticon-close {
  cursor: pointer;
}
.assets-style-affairs--index-viewMore-uuE6j {
  color: #DEDEDE;
  font-size: 14px;
  float: right;
  margin-right: 20px;
  cursor: pointer;
}
.assets-style-affairs--index-viewMore-uuE6j .anticon {
  transform: rotate(90deg);
}
.assets-style-affairs--index-statusWidth-nIGnZ {
  width: 100%;
}
.assets-style-affairs--index-warning-Bk3K3 {
  color: #FD6767;
}
.assets-style-affairs--index-icon-2nSey {
  font-size: 12px;
}
.assets-style-affairs--index-overtime-3ufzB {
  color: #F9892C;
}
.assets-style-affairs--index-near-2wrZg {
  color: #F2AA18;
}
.assets-style-affairs--index-body1-2bOER {
  background-color: #f2f2f2;
}
.assets-style-affairs--index-body1-2bOER .assets-style-affairs--index-condition-1Zu1I {
  margin: 10px 10px 10px 0px ;
  height: 60px;
}
.assets-style-affairs--index-body1-2bOER .assets-style-affairs--index-condition-1Zu1I .assets-style-affairs--index-typeDetail-1WqlU {
  margin: 10px 25px;
}
.assets-style-affairs--index-body1-2bOER .assets-style-affairs--index-condition-1Zu1I .assets-style-affairs--index-typeDetail-1WqlU li {
  display: inline-block;
  margin-right: 50px;
}
.assets-style-affairs--index-body1-2bOER .assets-style-affairs--index-condition-1Zu1I .assets-style-affairs--index-fold-2L08f {
  margin: 0 10px;
}
.assets-style-affairs--index-body2-26lm8 {
  border-top: 1px solid #e8e8e8;
}
.assets-style-affairs--index-batchAudit-3BZkN {
  text-align: right;
  height: 60px;
  line-height: 60px;
}
.assets-style-affairs--index-modal-5z-i6 li {
  margin: 10px 20px;
  list-style-type: none;
}
.assets-style-affairs--index-modal-5z-i6 li i {
  cursor: pointer;
}
.assets-style-affairs--index-submit-3i0JU {
  text-align: center;
}
.assets-style-affairs--index-dashedStyle-2CWD_ .ant-list-item {
  height: 55px;
}
.assets-style-affairs--index-container-ddAAf {
  padding: 24px 32px;
  box-shadow: 0px 0px 10px 0px rgba(7, 108, 201, 0.1);
  border-radius: 4px;
}
.assets-style-affairs--index-affairsTab-2xMQL .ant-tabs .ant-tabs-bar {
  margin-bottom: 0;
}
.assets-style-affairs--index-affairsTab-2xMQL .ant-tabs-bar {
  margin-bottom: 0;
  border-bottom: solid 2px #e8e8e8;
}
.assets-style-affairs--index-affairsTab-2xMQL .ant-tabs-nav .ant-tabs-tab-active {
  font-size: 16px;
  font-weight: bold;
}
.assets-style-affairs--index-affairsTab-2xMQL .ant-tabs-nav .ant-tabs-tab {
  font-size: 16px;
}
.assets-style-affairs--index-solidStyle-19GaD .ant-list-item {
  padding: 8px 10px 8px 0px;
}
.assets-style-affairs--index-solidStyle-19GaD .ant-list-item:hover {
  cursor: pointer;
}
.assets-style-exception--index-exceptionContent-35plI {
  text-align: center;
  padding-top: 180px;
  color: #9DA6B8;
  font-size: 18px;
  line-height: 24px;
}
.assets-style-exception--index-exceptionContent-35plI .assets-style-exception--index-tip-3A4wI {
  margin-bottom: 15px;
}
.assets-style-proveTemplate--index-proveTemplate-21n5h {
  display: flex;
}
.assets-style-proveTemplate--index-proveTemplate-21n5h .assets-style-proveTemplate--index-tabPaneName-3kt0E {
  max-width: 130px;
  white-space: nowrap;
  /*规定段落中的文本不进行换行*/
  overflow: hidden;
  /*内容会被修剪，并且其余内容是不可见的。*/
  text-overflow: ellipsis;
  /*显示省略号来代表被修剪的文本*/
}
.assets-style-proveTemplate--index-proveTemplate-21n5h .ant-tabs-bar.ant-tabs-left-bar.ant-tabs-card-bar {
  width: 180px;
}
.assets-style-proveTemplate--index-proveTemplate-21n5h .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab .ant-tabs-close-x {
  width: 15px;
  border: 1px solid #397ef0;
  border-radius: 100%;
  padding: 2px;
  font-size: 8px;
  color: #397ef0 !important;
  float: right;
  margin-top: -25px;
}
.assets-style-proveTemplate--index-proveTemplate-21n5h .ant-tabs-vertical.ant-tabs-card.ant-tabs-left .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab {
  background-color: white;
  border: none;
  margin: 8px 0;
}
.assets-style-proveTemplate--index-proveTemplate-21n5h .ant-tabs-vertical.ant-tabs-card.ant-tabs-left .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab-active {
  background-color: #f5f9fe;
}
.assets-style-proveTemplate--index-proveTemplate-21n5h .ant-tabs-vertical.ant-tabs-card.ant-tabs-left .ant-tabs-card-bar.ant-tabs-left-bar .ant-tabs-tab {
  border-right: 1px solid #e8e8e8 !important;
}
.assets-style-proveTemplate--index-proveTemplate-21n5h .ant-tabs .ant-tabs-left-bar .ant-tabs-tab {
  text-align: left;
}
.assets-style-proveTemplate--index-proveTemplate-21n5h .ant-tabs-nav-scroll {
  height: 640px;
}
.assets-style-message--index-tabs-3yipI .ant-tabs-nav-scroll {
  text-align: center;
}
.assets-style-message--index-tabs-3yipI .ant-tabs-bar {
  margin-bottom: 4px;
}
.assets-style-message--index-list-1lpnG {
  max-height: 400px;
}
.assets-style-message--index-list-1lpnG .assets-style-message--index-item-1V4Rg {
  transition: all .3s;
  overflow: hidden;
  cursor: pointer;
  padding-left: 24px;
  padding-right: 24px;
}
.assets-style-message--index-list-1lpnG .assets-style-message--index-item-1V4Rg:last-child {
  border-bottom: 0;
}
.assets-style-message--index-list-1lpnG .assets-style-message--index-item-1V4Rg .assets-style-message--index-meta-v05Xl {
  width: 100%;
}
.assets-style-message--index-list-1lpnG .assets-style-message--index-item-1V4Rg .assets-style-message--index-title-UzIKk {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.65);
  line-height: 22px;
  margin-bottom: 8px;
}
.assets-style-message--index-list-1lpnG .assets-style-message--index-item-1V4Rg .assets-style-message--index-extra-2M8Vh {
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  font-weight: normal;
  margin-right: 0;
  margin-top: -1.5px;
}
.assets-style-message--index-list-1lpnG .assets-style-message--index-item-1V4Rg .assets-style-message--index-description-1Xryn {
  font-size: 12px;
  line-height: 1.5;
}
.assets-style-message--index-all-26Xqz {
  height: 46px;
  line-height: 46px;
  text-align: center;
  color: rgba(0, 0, 0, 0.65);
  border-radius: 0 0 4px 4px;
  border-top: 1px solid #e8e8e8;
  transition: all .3s;
  cursor: pointer;
}
.assets-style-message--index-popover-36IPc {
  width: 336px;
}
.assets-style-message--index-popover-36IPc .ant-popover-inner-content {
  padding: 0;
}
.assets-style-message--index-top-30WtL {
  padding-top: 10px;
  padding-bottom: 10px;
}
.assets-style-message--index-notReadMessageTotal-3FWnl {
  color: #cccccc;
  margin-left: 15px;
}
.assets-style-message--index-readAll-3OkXR {
  color: #cccccc;
  float: right;
  margin-right: 15px;
}
.assets-style-message--index-divider-_TxOy {
  height: 1px;
  background: #e8e8e8;
}
.assets-style-header--index-header-1nF96 {
  padding: 0;
}
.assets-style-header--index-trigger-3Vcg1 {
  color: #fff;
  font-size: 20px;
  margin-left: 8px;
  cursor: pointer;
}
.assets-style-header--index-topNav-2efET {
  width: 100%;
  height: 40px;
  margin: 12px 0;
}
.assets-style-header--index-topNav-2efET .noticeIcon {
  font-size: 18px;
  position: relative;
  top: -13px;
  color: #fff;
}
.assets-style-header--index-topNav-2efET .ant-badge-count {
  top: -15px;
  box-shadow: none;
}
.assets-style-header--index-topNav-2efET .anticon-setting {
  font-size: 18px;
  color: #fff;
  /* color: rgba(0, 0, 0, 0.65); */
  position: relative;
  top: -9px;
}
.assets-style-header--index-noticeButtonClass-2bfiQ {
  cursor: pointer;
  display: inline-block;
  transition: all .3s;
  height: 35px;
  padding: 0 7px;
  border-radius: 5px;
  margin: 2px 5px 0 5px;
  color: #fff;
}
.assets-style-header--index-noticeButtonClass-2bfiQ:hover {
  background: #e6f7ff;
}
.assets-style-header--index-noticeButtonClass-2bfiQ:hover .ant-popover-open {
  background: #e6f7ff;
}
.assets-style-header--index-noticeButtonClass-2bfiQ:hover .noticeIcon {
  color: rgba(0, 0, 0, 0.65);
}
.assets-style-header--index-noticeButtonClass-2bfiQ:hover .anticon-setting {
  color: rgba(0, 0, 0, 0.65);
}
.assets-style-header--index-action-3uYUQ {
  cursor: pointer;
  padding: 0 19px;
  display: inline-block;
  transition: all .3s;
  height: 100%;
  line-height: 40px;
  vertical-align: top;
  margin: 0 5px;
  border-radius: 5px;
}
.assets-style-header--index-action-3uYUQ:hover {
  background: #e6f7ff;
}
.assets-style-header--index-action-3uYUQ:hover .assets-style-header--index-name-1fUAM {
  color: rgba(0, 0, 0, 0.65);
}
.assets-style-header--index-action-3uYUQ .assets-style-header--index-name-1fUAM {
  font-size: 14px;
  color: #fff;
}
.assets-style-header--index-action-3uYUQ .ant-avatar {
  background: rgba(255, 255, 255, 0.85);
  margin: -4px 5px 0 0;
}
.assets-style-header--index-action-3uYUQ .ant-avatar img {
  position: relative;
}
.assets-style-header--index-drawerContainer-2kClJ .ant-drawer-header {
  border-bottom: none;
}
.assets-style-header--index-drawerContainer-2kClJ .ant-drawer-content-wrapper {
  padding: 40px 0;
  background-color: #ffffff;
}
.assets-style-header--index-drawerContainer-2kClJ .ant-drawer-title {
  font-size: 22px;
  font-weight: 600;
  color: #333;
}
.assets-style-header--index-drawerContainer-2kClJ .assets-style-header--index-skinTitle-ehcw1 {
  margin: 30px 0;
  font-size: 18px;
  color: #333;
}
.assets-style-header--index-drawerContainer-2kClJ .assets-style-header--index-themeList-2Qp95 {
  text-align: center;
}
.assets-style-header--index-drawerContainer-2kClJ .assets-style-header--index-themeList-2Qp95 .assets-style-header--index-themeItem-SLrk_ {
  display: inline-block;
  margin: 0 10px;
}
.assets-style-header--index-drawerContainer-2kClJ .assets-style-header--index-themeList-2Qp95 .assets-style-header--index-themeItem-SLrk_ .assets-style-header--index-themePanel-2UaAG {
  width: 50px;
  height: 50px;
  cursor: pointer;
  border-radius: 50%;
  overflow: hidden;
  position: relative;
}
.assets-style-header--index-drawerContainer-2kClJ .assets-style-header--index-themeList-2Qp95 .assets-style-header--index-themeItem-SLrk_ .assets-style-header--index-themeTitle-z2S6S {
  font-size: 12px;
  margin-bottom: 10px;
}
.assets-style-header--index-drawerContainer-2kClJ .assets-style-header--index-themeList-2Qp95 .assets-style-header--index-themeItem-SLrk_ .assets-style-header--index-selectedIcon-2K4VX {
  position: absolute;
  top: 0;
  left: 12px;
  z-index: 999;
}
.assets-style-header--index-menuWrap-1bvy2 .ant-dropdown-menu-submenu-title .ant-dropdown-menu-submenu-arrow {
  left: 8px;
  top: 3px;
  right: auto !important;
  transform: rotateY(180deg);
}
.assets-style-header--index-menuWrap-1bvy2 li {
  padding-left: 10px;
}
.assets-style-header--index-menuWrap-1bvy2 li:nth-child(2),
.assets-style-header--index-menuWrap-1bvy2 li:nth-child(3),
.assets-style-header--index-menuWrap-1bvy2 li:nth-child(5) {
  padding-left: 14px;
}
.assets-style-header--index-menuWrap-1bvy2 .ant-dropdown-menu-submenu {
  margin-left: -8px;
  margin-top: -4px;
}
.assets-style-header--index-roleSwitch-1ZZUY {
  padding: 7px 0;
}
.assets-style-header--index-roleSwitch-1ZZUY li {
  width: 80px;
  height: 110px;
  background: #F0F2F5;
  margin: 0 5px;
  text-align: center;
  color: #595959;
  font-size: 14px;
  padding-top: 10px;
  cursor: pointer;
}
.assets-style-header--index-roleSwitch-1ZZUY li img {
  margin-bottom: 10px;
}
.assets-style-header--index-subMenuWrap-3cN7F:hover {
  background: #ffffff !important;
}
.assets-style-header--index-integrity-1blEr .ant-popover-arrow {
  width: 12px;
  height: 12px;
  border-width: 6px;
  top: 9px !important;
}
.assets-style-header--index-integrity-1blEr .ant-popover-arrow:before {
  width: 12px;
  height: 12px;
  background-color: #fff;
}
.assets-style-header--index-integrity-1blEr .ant-popover-inner {
  margin-top: 5px;
  background-color: #fff;
}
.assets-style-header--index-integrity-1blEr .anticon {
  cursor: pointer;
}
.assets-style-header--index-integrity-1blEr .anticon-double-right,
.assets-style-header--index-integrity-1blEr .anticon-close {
  float: right;
  padding-top: 4px;
}
.assets-style-header--index-integrity-1blEr .ant-popover-title {
  color: rgba(0, 0, 0, 0.45);
  padding: 12px 16px;
  border-bottom: none;
}
.assets-style-header--index-integrity-1blEr .assets-style-header--index-updateInfoTip-2blB4 {
  padding: 8px 12px;
  background-color: #FFFFD3;
  color: red;
}
.assets-style-header--index-integrity-1blEr .assets-style-header--index-integrityList-1LCTR .assets-style-header--index-integrityItem-36aHZ {
  width: 105px;
  display: inline-block;
  text-align: center;
  padding: 12px 0;
}
.assets-style-header--index-integrity-1blEr .assets-style-header--index-integrityList-1LCTR .assets-style-header--index-integrityItem-36aHZ .assets-style-header--index-title-1wzn4 {
  padding-right: 4px;
  cursor: pointer;
}
.assets-style-header--index-integrity-1blEr .assets-style-header--index-integrityList-1LCTR .assets-style-header--index-integrityItem-36aHZ .assets-style-header--index-percent-1r9Kx {
  color: #919191;
  font-size: 30px;
}
.assets-style-header--index-integrity-1blEr .assets-style-header--index-integrityList-1LCTR .assets-style-header--index-integrityItem-36aHZ .assets-style-header--index-percent-1r9Kx span {
  cursor: pointer;
}
.assets-style-header--index-integrity-1blEr .assets-style-header--index-integrityList-1LCTR .assets-style-header--index-integrityItem-36aHZ .assets-style-header--index-lowPercent-1-mh_ {
  color: #FF7C7C;
}
.assets-style-header--index-integrity-1blEr .assets-style-header--index-integrityList-1LCTR .assets-style-header--index-integrityItem-36aHZ .assets-style-header--index-gutter-5xBxS {
  border-right: 2px solid #d8ddde;
}
.assets-style-header--index-integrity-1blEr .assets-style-header--index-showMore-1IUir {
  text-align: center;
  color: #919191;
  font-size: 30px;
}
.assets-style-header--index-integrity-1blEr .assets-style-header--index-showMore-1IUir .assets-style-header--index-down-iQrD2 {
  transform: rotate(-90deg);
}
.assets-style-header--index-integrity-1blEr .assets-style-header--index-showMore-1IUir .assets-style-header--index-up-DQOmF {
  transform: rotate(90deg);
}
.assets-style-backHomeIcon--index-container-3YdfY {
  cursor: pointer;
  transition: all .3s;
  height: 35px;
  padding: 0 7px;
  border-radius: 5px;
  margin: 2px 5px 0 5px;
  color: #fff;
}
.assets-style-backHomeIcon--index-container-3YdfY .anticon-home {
  font-size: 18px;
  position: relative;
  top: -13px;
  color: #fff;
}
.assets-style-backHomeIcon--index-container-3YdfY:hover {
  background: #e6f7ff;
}
.assets-style-backHomeIcon--index-container-3YdfY:hover .anticon-home {
  color: rgba(0, 0, 0, 0.65);
}
.assets-style-login--index-container-gN6HD {
  min-height: 100%;
  height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  align-items: center;
  justify-content: center;
}
.assets-style-login--index-container-gN6HD .ant-input-affix-wrapper .ant-input:not(:first-child) {
  padding-left: 34px;
}
.assets-style-login--index-container-gN6HD .ant-tabs .ant-tabs-bar {
  border-bottom: 0;
  margin-bottom: 24px;
  text-align: center;
}
.assets-style-login--index-container-gN6HD .ant-form-item-control {
  line-height: 40px;
}
.assets-style-login--index-container-gN6HD .ant-input {
  height: 40px;
  padding: 6px 11px;
}
.assets-style-login--index-container-gN6HD .ant-btn {
  height: 40px;
  padding: 0 15px;
}
.assets-style-login--index-container-gN6HD .ant-input-group-wrapper .ant-input {
  border-top-left-radius: 0 !important;
  border-bottom-left-radius: 0 !important;
}
.assets-style-login--index-container-gN6HD .assets-style-login--index-logo-nKn1V {
  text-align: center;
  margin-bottom: 40px;
}
.assets-style-login--index-container-gN6HD .assets-style-login--index-logo-nKn1V img {
  width: 100%;
  height: auto;
  max-width: 369px;
}
.assets-style-login--index-container-gN6HD .assets-style-login--index-content-nlv36 {
  width: 100%;
  height: 100%;
  background-size: 100%;
}
.assets-style-login--index-container-gN6HD .assets-style-login--index-main-2C7Z0 {
  padding: 0 16px;
}
.assets-style-login--index-container-gN6HD .assets-style-login--index-submit-11COT {
  width: 100%;
  margin-top: 24px;
}
.assets-style-login--index-getCaptcha-3h7jO {
  display: block;
  width: 100%;
}
.assets-style-login--index-bg-2K-5T {
  display: flex;
  justify-content: center;
}
.assets-style-login--index-bg-2K-5T .assets-style-login--index-bg2Img-qhET2 {
  padding: 2px;
}
.assets-style-login--index-bg-2K-5T .assets-style-login--index-login-1UauA {
  float: right;
  padding-right: 16px;
}
@media screen and (min-width: 992px) {
  .assets-style-login--index-bg-2K-5T .assets-style-login--index-bg2Img-qhET2 {
    width: 768px;
    height: 468px;
  }
  .assets-style-login--index-bg-2K-5T .assets-style-login--index-login-1UauA {
    width: 311px;
  }
  .assets-style-login--index-bg-2K-5T .assets-style-login--index-logo-nKn1V {
    margin-top: 90px;
  }
}
@media screen and (min-width: 1200px) {
  .assets-style-login--index-bg-2K-5T .assets-style-login--index-bg2Img-qhET2 {
    width: 871px;
    height: 531px;
  }
  .assets-style-login--index-bg-2K-5T .assets-style-login--index-login-1UauA {
    width: 352px;
  }
  .assets-style-login--index-bg-2K-5T .assets-style-login--index-logo-nKn1V {
    margin-top: 100px;
  }
}
@media screen and (min-width: 1600px) {
  .assets-style-login--index-bg-2K-5T .assets-style-login--index-bg2Img-qhET2 {
    width: 1024px;
    height: 624px;
  }
  .assets-style-login--index-bg-2K-5T .assets-style-login--index-login-1UauA {
    width: 414px;
  }
}
.assets-style-login--index-userIcon-1rkWA {
  color: rgba(0, 0, 0, 0.25);
  position: absolute;
  z-index: 9999;
  padding-top: 13px;
  padding-left: 10px;
}
.ant-input-group-addon:first-child {
  background: #fff;
}
.assets-style-logo--index-logo-EMId6 {
  height: 64px;
  line-height: 64px;
  overflow: hidden;
  text-align: center;
}
.assets-style-logo--index-logo-EMId6 .assets-style-logo--index-logoExpanded-oeWMR {
  height: 43px;
}
.assets-style-logo--index-logo-EMId6 .assets-style-logo--index-logoCollapsed-X10fD {
  width: 44px;
  height: 43px;
}
/*********************蓝色主题 start*********************/
/*********************蓝色主题 end*********************/
/*********************红色主题 start*********************/
/*********************红色主题 end*********************/
/********************绿色主题 start********************/
/********************绿色主题 end********************/
@font-face {
  font-family: 'iconfont';
  /* project id 864711 */
  src: url('//at.alicdn.com/t/font_864711_lfdllpqd6uq.eot');
  src: url('//at.alicdn.com/t/font_864711_lfdllpqd6uq.eot?#iefix') format('embedded-opentype'), url('//at.alicdn.com/t/font_864711_lfdllpqd6uq.woff2') format('woff2'), url('//at.alicdn.com/t/font_864711_lfdllpqd6uq.woff') format('woff'), url('//at.alicdn.com/t/font_864711_lfdllpqd6uq.ttf') format('truetype'), url('//at.alicdn.com/t/font_864711_lfdllpqd6uq.svg#iconfont') format('svg');
}
.assets-style-dataGather-gatherTaskFill--index-iconfont-1cRw_ {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd {
  width: 0px;
  position: relative;
  transition: width 0.3s ease;
  word-break: break-all;
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(0, 88, 37, 0.1);
  border-bottom-right-radius: 10px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd.assets-style-dataGather-gatherTaskFill--index-showBigList-3pyep {
  width: 300px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd.assets-style-dataGather-gatherTaskFill--index-showBigList-3pyep .assets-style-dataGather-gatherTaskFill--index-toggle-1gvcA {
  text-align: left;
  position: relative;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd.assets-style-dataGather-gatherTaskFill--index-showBigList-3pyep .assets-style-dataGather-gatherTaskFill--index-moreButton-zXiaF {
  float: right;
  margin-top: 14px;
  margin-right: 5px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd.assets-style-dataGather-gatherTaskFill--index-showBigList-3pyep .assets-style-dataGather-gatherTaskFill--index-searchButton-3WXUy {
  float: right;
  line-height: 64px;
  margin-right: 20px;
  font-size: 18px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd.assets-style-dataGather-gatherTaskFill--index-showBigList-3pyep .assets-style-dataGather-gatherTaskFill--index-searchButton-3WXUy:hover {
  color: #228B22;
  cursor: pointer;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM {
  width: 300px;
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  background: #F2F3F4;
  border-bottom: 1px solid #E1E6E3;
  padding: 0 10px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM.assets-style-dataGather-gatherTaskFill--index-show-2Ya1w {
  display: block;
  /*  :global(.anticon-search){
        font-size: 22px;
        line-height: 64px;
      }*/
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM.assets-style-dataGather-gatherTaskFill--index-show-2Ya1w input {
  width: 200px;
  display: inline-block;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM.assets-style-dataGather-gatherTaskFill--index-show-2Ya1w .ant-btn {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM.assets-style-dataGather-gatherTaskFill--index-show-2Ya1w .anticon-check {
  display: none;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM.assets-style-dataGather-gatherTaskFill--index-show-2Ya1w .icon-shuaxin {
  display: none;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM.assets-style-dataGather-gatherTaskFill--index-show-2Ya1w .assets-style-dataGather-gatherTaskFill--index-showSearchIcon-2nNXx {
  display: inline-block;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM .ant-input-affix-wrapper {
  width: 200px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM .ant-input-affix-wrapper .anticon-close-circle {
  font-size: 14px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM input {
  /* border-radius: 20px;*/
  display: none;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM i {
  cursor: pointer;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-toggle-1gvcA {
  margin: 0 auto;
  height: 64px;
  line-height: 64px;
  overflow: hidden;
  border-bottom: 1px solid #E1E6E3;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-toggle-1gvcA .ant-input-group-wrapper {
  vertical-align: middle;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-toggle-1gvcA .assets-style-dataGather-gatherTaskFill--index-sideLogo-14U0v {
  display: inline-block;
  text-align: center;
  margin-top: -2px;
  width: 60px;
  height: 64px;
  line-height: 64px;
  vertical-align: middle;
  font-size: 24px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-toggle-1gvcA .assets-style-dataGather-gatherTaskFill--index-sideLogo-14U0v:hover {
  background: #D5E6E0;
  cursor: pointer;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-toggle-1gvcA .assets-style-dataGather-gatherTaskFill--index-sideLogo-14U0v.assets-style-dataGather-gatherTaskFill--index-disabled-WFsJr {
  cursor: not-allowed;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideLeft-1Z-hg {
  z-index: 2;
  background: #F2F3F4;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideLeft-1Z-hg.assets-style-dataGather-gatherTaskFill--index-borderRadius-2rpMN {
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideLeft-1Z-hg > div:last-child > div:nth-of-type(2) {
  display: none;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideRight-1S9nX {
  position: absolute;
  transition: width 0.5s ease,left 0.3s ease;
  background: #ffffff;
  top: 0;
  left: 60px;
  height: 100%;
  border-bottom-right-radius: 10px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideRight-1S9nX.assets-style-dataGather-gatherTaskFill--index-leftExp-1ihK8 {
  left: 300px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG {
  position: absolute;
  right: 0;
  top: 0;
  margin-right: -32px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-tagItem-3a8js {
  margin-bottom: 4px;
  width: 32px;
  z-index: 1002;
  color: #888888;
  font-size: 14px;
  background: #f0f3f6;
  text-align: center;
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 12px 6px;
  line-height: 1.2;
  box-shadow: 1px 1px 1px 1px rgba(0, 88, 37, 0.3);
  /* &:hover{
        background: @theme-green-3;
        cursor: pointer;
      }*/
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-tagItem-3a8js.assets-style-dataGather-gatherTaskFill--index-current-17tht {
  color: #ffffff;
  background: #f2aa18;
  font-size: 14px;
  border: none;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-hideTag-2xvTI {
  margin-bottom: 4px;
  width: 32px;
  z-index: 1002;
  color: #888888;
  font-size: 14px;
  background: #228B22;
  text-align: center;
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 12px 6px;
  line-height: 1.2;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-hideTag-2xvTI:hover {
  cursor: pointer;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-addBtnWrap-QYf22 {
  width: 100%;
  height: 73px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  padding: 20px 0;
  /* border-top: 1px solid #E1E6E3;*/
  cursor: pointer;
  background: #F2F3F4;
  border-bottom-right-radius: 10px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-addBtnWrap-QYf22.assets-style-dataGather-gatherTaskFill--index-moreData-10tSu {
  border-bottom-right-radius: 0;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-addBtnWrap-QYf22 .assets-style-dataGather-gatherTaskFill--index-rollback-3x7ry {
  float: right;
  color: #37A164;
  font-size: 18px;
  padding-right: 32px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-addBtnWrap-QYf22 .assets-style-dataGather-gatherTaskFill--index-rollback-3x7ry i {
  margin-right: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-addBtnContent-1JXOp {
  width: 300px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-addBtnContent-1JXOp .assets-style-dataGather-gatherTaskFill--index-buttonDiv-17LsV {
  width: 60px;
  text-align: center;
  display: inline-block;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-addBtnContent-1JXOp .assets-style-dataGather-gatherTaskFill--index-addName-yCMfm {
  display: inline-block;
  vertical-align: middle;
  line-height: 30px;
  font-size: 16px;
  color: #37A164;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE {
  width: 60px;
  overflow: hidden;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE.assets-style-dataGather-gatherTaskFill--index-showFull-1Txwh {
  width: 300px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt {
  border: none;
  background: #f4f5f5;
  transition: background 0.8s ease-in;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt:hover {
  background: #D5E6E0;
  cursor: pointer;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr {
  cursor: pointer;
  display: table;
  width: 100%;
  text-align: center;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr:hover .assets-style-dataGather-gatherTaskFill--index-emptyTips-2lTSm {
  color: #37A164;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-emptyTips-2lTSm {
  display: table-cell;
  font-size: 14px;
  vertical-align: middle;
  color: #6C6C6C;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-emptyTips-2lTSm .assets-style-dataGather-gatherTaskFill--index-emptyContent-3o8H5 {
  margin: auto;
  width: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-emptyTips-2lTSm .assets-style-dataGather-gatherTaskFill--index-emptyContent-3o8H5 i {
  color: #BCBCBC;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-emptyMore-1F0-G {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-emptyMore-1F0-G .assets-style-dataGather-gatherTaskFill--index-collectText-3UOPd {
  margin-top: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-emptyMore-1F0-G .assets-style-dataGather-gatherTaskFill--index-collectBtn-1cMr_ {
  margin-top: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-nothing-12pTF {
  padding: 20px;
  text-align: center;
  margin: auto;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .ant-card-meta-title span {
  color: #474747;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse {
  background: none;
  border: none;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr {
  cursor: pointer;
  display: table;
  width: 100%;
  text-align: center;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr:hover .assets-style-dataGather-gatherTaskFill--index-emptyTips-2lTSm {
  color: #37A164;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-emptyTips-2lTSm {
  display: table-cell;
  font-size: 14px;
  vertical-align: middle;
  color: #6C6C6C;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-emptyTips-2lTSm .assets-style-dataGather-gatherTaskFill--index-emptyContent-3o8H5 {
  margin: auto;
  width: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-emptyTips-2lTSm .assets-style-dataGather-gatherTaskFill--index-emptyContent-3o8H5 i {
  color: #BCBCBC;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-emptyMore-1F0-G {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-emptyMore-1F0-G .assets-style-dataGather-gatherTaskFill--index-collectText-3UOPd {
  margin-top: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-emptyMore-1F0-G .assets-style-dataGather-gatherTaskFill--index-collectBtn-1cMr_ {
  margin-top: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr .assets-style-dataGather-gatherTaskFill--index-nothing-12pTF {
  padding: 20px;
  text-align: center;
  margin: auto;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse-content {
  background: #F2F3F4;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse-content .ant-collapse-content-box {
  padding: 5px!important;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse .ant-collapse-item.ant-collapse-no-arrow .ant-collapse-header {
  padding: 12px;
  line-height: 27px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse .ant-collapse-item.ant-collapse-no-arrow .ant-collapse-header .anticon-star {
  color: #37A164;
  float: right;
  line-height: 27px;
  margin-right: 20px;
  cursor: pointer;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse-item-active .ant-collapse-header {
  border-bottom: 2px solid #37A164;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse-item-active .assets-style-dataGather-gatherTaskFill--index-serviceCount-3WxY7 {
  background: #37A164;
  border: 1px solid #28844F;
  color: #fff;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceDomainIconDiv-15e9U {
  width: 100%;
  text-align: center;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceDomainIconDiv-15e9U .assets-style-dataGather-gatherTaskFill--index-serviceDomainIcon-1YLjO {
  display: inline-block;
  border: 1px solid rgba(87, 177, 134, 0.1);
  background-color: #62b68e;
  overflow: hidden;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin: 6px auto 0;
  box-shadow: 0 2px 7px 0 rgba(87, 177, 134, 0.24);
  line-height: 40px;
  text-align: center;
  color: #fff;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceCount-3WxY7 {
  width: 31px;
  height: 27px;
  background: #F0F3F6;
  border: 1px solid #CFD7DE;
  border-radius: 14px;
  font-size: 14px;
  text-align: center;
  float: right;
  display: inline-block;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG {
  height: 40px;
  line-height: 40px;
  padding: 0 5px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG .assets-style-dataGather-gatherTaskFill--index-affairIcon-2pscw {
  margin-bottom: 15px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG .assets-style-dataGather-gatherTaskFill--index-serviceIconDiv-16XyX {
  width: 100%;
  text-align: center;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG .assets-style-dataGather-gatherTaskFill--index-serviceIconDiv-16XyX .assets-style-dataGather-gatherTaskFill--index-serviceIcon-14f8k {
  display: inline-block;
  border: 1px solid rgba(87, 177, 134, 0.1);
  background-color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 7px 0 rgba(87, 177, 134, 0.24);
  line-height: 30px;
  text-align: center;
  margin-top: 1px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG .assets-style-dataGather-gatherTaskFill--index-serviceIconDiv-16XyX .assets-style-dataGather-gatherTaskFill--index-serviceIcon-14f8k img {
  margin: 0;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG:hover {
  background: #8DCD76;
  color: #fff;
  cursor: pointer;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG:hover i {
  display: inline;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG .assets-style-dataGather-gatherTaskFill--index-edit-2A1_F i {
  color: #999;
  float: none;
  position: absolute;
  right: 35px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG img {
  height: 20px;
  width: 20px;
  vertical-align: middle;
  margin-right: 10px;
  display: inline-block;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG i {
  color: #fff;
  display: none;
  float: right;
  vertical-align: middle;
  line-height: 40px;
  margin-right: 5px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG .assets-style-dataGather-gatherTaskFill--index-serviceName-1Sbw0 {
  width: calc(100% - 50px);
  vertical-align: middle;
  /*text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;*/
  color: #474747;
  display: inline-block;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG .assets-style-dataGather-gatherTaskFill--index-serviceName-1Sbw0 .assets-style-dataGather-gatherTaskFill--index-ellipsis-1vyBq {
  display: inline;
  color: #474747 ;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG .assets-style-dataGather-gatherTaskFill--index-heart-3C5ht {
  color: #ff0000;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreDataWrap-2cgAr {
  z-index: 9999;
  overflow: hidden;
  transition: width 0.3s ease;
  border-bottom-right-radius: 10px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX {
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 88, 37, 0.1);
  padding: 0 20px 0 30px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 {
  height: 64px;
  border-bottom: 1px solid #E1E6E3;
  font-size: 18px;
  line-height: 64px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 .assets-style-dataGather-gatherTaskFill--index-title-35wL_ {
  vertical-align: middle;
  font-size: 18px;
  font-weight: normal;
  color: #666;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 .assets-style-dataGather-gatherTaskFill--index-leftIcon-2jKX1 {
  margin-right: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 .anticon-bars {
  font-size: 28px;
  vertical-align: middle;
  color: #828282;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 .assets-style-dataGather-gatherTaskFill--index-divider-3KsVm {
  margin-left: 28px;
  height: 22px;
  color: #aeaeae;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 .anticon-question-circle-o {
  margin-left: 5px;
  cursor: pointer;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 .assets-style-dataGather-gatherTaskFill--index-closeIcon-fWlDp {
  font-size: 18px;
  float: right;
  line-height: 64px;
  margin-right: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 .assets-style-dataGather-gatherTaskFill--index-closeIcon-fWlDp:hover {
  cursor: pointer;
  color: #228B22;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM {
  position: relative;
  display: inline-block;
  background: none;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 .assets-style-dataGather-gatherTaskFill--index-addCustom-2urJj {
  float: right;
  line-height: 64px;
  padding-right: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA {
  padding: 20px 0;
  position: relative;
  overflow: auto;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-pt-search-38pb_ {
  float: right;
  padding-right: 50px;
  margin-bottom: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-pt-search-38pb_ .assets-style-dataGather-gatherTaskFill--index-ant-select-auto-complete-2HUOx {
  vertical-align: middle;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-pt-search-38pb_ .assets-style-dataGather-gatherTaskFill--index-searchButton-3WXUy {
  vertical-align: middle;
  margin-top: -3px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-pt-search-38pb_ .assets-style-dataGather-gatherTaskFill--index-clearIcon-1OMW4 {
  right: 145px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl {
  display: inline-block;
  width: calc(100% - 220px);
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT {
  margin-bottom: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5 {
  font-size: 18px;
  color: #005825;
  height: 32px;
  line-height: 32px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5 .assets-style-dataGather-gatherTaskFill--index-tag-2CDR9 {
  width: 6px;
  height: 24px;
  background: #45AA70;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 4px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5.assets-style-dataGather-gatherTaskFill--index-serviceDomain-DTgja {
  padding: 5px 10px;
  height: 42px;
  border: 1px solid #fff;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5.assets-style-dataGather-gatherTaskFill--index-serviceDomain-DTgja:hover {
  border-radius: 4px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5.assets-style-dataGather-gatherTaskFill--index-serviceDomain-DTgja:hover .assets-style-dataGather-gatherTaskFill--index-collectSpan-3TRqr {
  display: inline;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5.assets-style-dataGather-gatherTaskFill--index-serviceDomain-DTgja:hover .assets-style-dataGather-gatherTaskFill--index-collectSpan-3TRqr i {
  cursor: pointer;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5.assets-style-dataGather-gatherTaskFill--index-serviceDomain-DTgja:hover .assets-style-dataGather-gatherTaskFill--index-collectSpan-3TRqr i.assets-style-dataGather-gatherTaskFill--index-deleteCollect-24Tm_ {
  color: #37A164;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5.assets-style-dataGather-gatherTaskFill--index-serviceDomain-DTgja .assets-style-dataGather-gatherTaskFill--index-collectSpan-3TRqr {
  display: none;
  float: right;
  font-size: 14px;
  color: #000;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5.assets-style-dataGather-gatherTaskFill--index-serviceDomain-DTgja .assets-style-dataGather-gatherTaskFill--index-collectSpan-3TRqr i {
  margin-right: 10px;
  color: #CDCDCD;
  vertical-align: middle;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-pointer-zlwWV {
  cursor: pointer;
  font-size: 16px;
  padding-left: 10px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t {
  padding: 0 30px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 {
  overflow: hidden;
  width: 100%;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 i.iconfont {
  color: #d2cece;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .anticon-star {
  color: #d2cece;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .ant-card-meta-title span:hover {
  color: #52A025;
  text-decoration: underline;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li {
  list-style: none;
  float: left;
  padding-left: 5px;
  width: 265px;
  cursor: pointer;
  margin-right: 20px;
  margin-top: 10px;
  height: 128px;
  z-index: 0;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li .ant-card-meta-detail > div:not(:last-child) {
  margin-bottom: 0px;
  height: 28px;
  line-height: 28px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li .ant-card-meta-title {
  font-weight: 600;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li .ant-card-bordered:hover {
  box-shadow: 0px 0px 10px 0px rgba(3, 57, 107, 0.4);
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li .ant-card-body {
  padding: 20px 24px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li .assets-style-dataGather-gatherTaskFill--index-content-3Ejva span {
  display: block;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li .assets-style-dataGather-gatherTaskFill--index-contentCus-AZ_Lm .assets-style-dataGather-gatherTaskFill--index-heartNoFloat-3u_3t {
  color: #ff0000;
  cursor: pointer;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li .assets-style-dataGather-gatherTaskFill--index-contentCus-AZ_Lm .assets-style-dataGather-gatherTaskFill--index-unHeartNoFloat-93l5s {
  color: #CCCCCC;
  cursor: pointer;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li .assets-style-dataGather-gatherTaskFill--index-contentCus-AZ_Lm span {
  display: inline-block;
  margin: 5px 20px 5px 0px;
  font-size: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li .assets-style-dataGather-gatherTaskFill--index-contentCus-AZ_Lm span i {
  font-size: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li .assets-style-dataGather-gatherTaskFill--index-heart-3C5ht,
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li .assets-style-dataGather-gatherTaskFill--index-unHeart-3cjt1 {
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 18px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li .assets-style-dataGather-gatherTaskFill--index-heart-3C5ht {
  color: #ff0000;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li .assets-style-dataGather-gatherTaskFill--index-unHeart-3cjt1 {
  color: #CCCCCC;
  display: none;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li:hover .assets-style-dataGather-gatherTaskFill--index-unHeart-3cjt1 {
  display: block;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li:hover .assets-style-dataGather-gatherTaskFill--index-unHeart-3cjt1:hover {
  color: #ff0000;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-divRelative-OtfXQ {
  position: relative;
  text-align: center;
  height: 128px;
  z-index: 2;
  padding-top: 27%;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-image-2SfrW {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-fontlist-3V8I9 {
  word-wrap: break-word;
  word-break: break-all;
  font-family: "Microsoft YaHei";
  margin: 0 auto;
  font-size: 14px;
  height: 21px;
  width: 84px;
  line-height: 20px;
  color: #666666;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-closeRight-3MvJs {
  position: absolute;
  top: 7px;
  opacity: 1;
  text-align: right;
  width: 112px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-closeRight-3MvJs .iconfont {
  opacity: 0;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-closeRight-3MvJs .assets-style-dataGather-gatherTaskFill--index-customLeft-LorOr {
  float: left;
  margin-left: 12px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-closeRight-3MvJs .assets-style-dataGather-gatherTaskFill--index-customLeft-LorOr.assets-style-dataGather-gatherTaskFill--index-delete-XHhyL {
  margin-left: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-closeRight-3MvJs span i.anticon.anticon-plus-circle-o::before {
  color: #f4f9f6;
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  font-size: 16px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-closeRight-3MvJs span i.anticon.anticon-minus-circle-o::before {
  color: #f4f9f6;
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  font-size: 16px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-closeRight-3MvJs span i.anticon.anticon-question-circle-o::before {
  border-radius: 50%;
  font-size: 16px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-closeRight-3MvJs .anticon-star {
  opacity: 0;
  font-size: 16px;
  line-height: 24px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-closeRight-3MvJs .anticon-star.assets-style-dataGather-gatherTaskFill--index-deleteCollect-24Tm_ {
  color: #37A164;
  opacity: 1;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-closeRight-3MvJs .assets-style-dataGather-gatherTaskFill--index-operation1-3IsqI {
  padding-right: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-closeRight-3MvJs .assets-style-dataGather-gatherTaskFill--index-operation2-2i-Oh {
  padding-right: 12px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-mask-1D0q4 {
  background-color: rgba(35, 145, 230, 0.1);
  border-radius: 4px;
  height: 128px;
  width: 112px;
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  border: 1px solid #62B68E;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-noData-1Gwux {
  padding: 20px;
  text-align: center;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-noData-1Gwux .assets-style-dataGather-gatherTaskFill--index-noDataTips-1m6us {
  margin-top: 10px;
  color: #666666;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn {
  width: 180px;
  position: fixed;
  top: 180px;
  right: 140px;
  height: calc(100% - 300px);
  overflow: hidden;
  background: #F4F9F6;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchorDiv-2bIQP {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchorDiv-2bIQP.assets-style-dataGather-gatherTaskFill--index-show-2Ya1w {
  width: 200px;
  /*:global(.ant-affix){
            position:absolute !important;
            left:0!important;
            top:0 !important;
            z-index:1;
            display: block;
          }*/
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchorDiv-2bIQP .ant-affix {
  z-index: 1;
  display: none;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w {
  margin: 40px 10px 0 0;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w.ant-anchor-wrapper {
  overflow: visible;
  width: 200px;
  background: none;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w.ant-anchor-wrapper .assets-style-dataGather-gatherTaskFill--index-anchorTitle-1Sn8h {
  position: absolute;
  top: -30px;
  font-size: 16px;
  color: #005825;
  font-weight: bold;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w.ant-anchor-wrapper .ant-anchor-link {
  padding-top: 15px;
  padding-bottom: 15px;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w .ant-anchor-ink:before {
  width: 1px;
  background-color: #e7e7e7;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w .ant-anchor-link-active .ant-anchor-link-title {
  color: #37A164;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w .ant-anchor-ink-ball {
  border: 2px solid #37A164;
  transform: translateX(-45%);
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w a:hover {
  color: #37A164;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-affairTitle-3dX9p {
  overflow: hidden;
  text-overflow: ellipsis;
  height: 30px;
  margin-top: -2px;
  width: 145px;
  padding-right: 15px;
  display: inline-block;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd a.assets-style-dataGather-gatherTaskFill--index-affairTitle-3dX9p {
  color: #333333;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-background-1ozrc {
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-background-1ozrc.assets-style-dataGather-gatherTaskFill--index-show-2Ya1w {
  display: block;
}
.assets-style-dataGather-gatherTaskFill--index-itemDraging-OIBPe {
  background: #D5E6E0;
  padding: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt {
  z-index: 99999;
  height: 64px;
  line-height: 64px;
  text-align: left;
  background: #D5E6E0;
  border: 1px solid #efefef;
  cursor: pointer;
}
.assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt.assets-style-dataGather-gatherTaskFill--index-forbid-3__vL {
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.25);
}
.assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt:hover i {
  display: inline;
}
.assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt .assets-style-dataGather-gatherTaskFill--index-iconDiv-2cCwX {
  width: 60px;
  text-align: center;
  height: 64px;
  display: inline-block;
  line-height: 64px;
  vertical-align: middle;
}
.assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt .assets-style-dataGather-gatherTaskFill--index-systemName-2WV92 {
  display: inline-block;
  vertical-align: middle;
  height: 64px;
  line-height: 64px;
  font-size: 16px;
}
.assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt i {
  color: #98ACA5;
  line-height: 64px;
  display: none;
  float: right;
  vertical-align: middle;
}
.assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt i:hover {
  cursor: pointer;
  color: #228B22;
}
.assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt .iconfont {
  margin-right: 12px;
}
.assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt .anticon-star {
  margin-right: 12px;
  color: #37a164;
}
.assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt .assets-style-dataGather-gatherTaskFill--index-iconTag-5srH5 {
  width: 60px;
  text-align: center;
}
.assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt .assets-style-dataGather-gatherTaskFill--index-iconTag-5srH5 .assets-style-dataGather-gatherTaskFill--index-iconCon-pX_Dw {
  display: inline-block;
  border: 1px solid rgba(87, 177, 134, 0.1);
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin: 6px auto 0;
  box-shadow: 0px 2px 7px 0px rgba(87, 177, 134, 0.24);
  line-height: 46px;
  text-align: center;
}
.assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt .assets-style-dataGather-gatherTaskFill--index-iconTag-5srH5 img {
  vertical-align: middle;
  width: 20px;
  height: 20px;
  display: inline-block;
}
.assets-style-dataGather-gatherTaskFill--index-hiddenBody-TyE33 {
  overflow: hidden;
}
.assets-style-dataGather-gatherTaskFill--index-showBody-1KaN0 {
  overflow: auto;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy {
  overflow: hidden;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .ant-modal-header {
  padding: 14px 24px;
  background: green;
  font-size: 16px;
  font-weight: normal;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .ant-modal-title {
  color: #ffffff;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .ant-modal-close-x {
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #ffffff;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .ant-modal-body {
  padding: 0;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-customerForm-2UrpY {
  padding: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-customerForm-2UrpY .assets-style-dataGather-gatherTaskFill--index-iconSelect-1qkyy {
  width: 100%;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-customerForm-2UrpY .assets-style-dataGather-gatherTaskFill--index-iconSelect-1qkyy .assets-style-dataGather-gatherTaskFill--index-iconDiv-2cCwX {
  width: 132px;
  height: 132px;
  line-height: 132px;
  text-align: center;
  border: 1px dashed #D5E6E0;
  display: inline-block;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-customerForm-2UrpY .assets-style-dataGather-gatherTaskFill--index-iconSelect-1qkyy .assets-style-dataGather-gatherTaskFill--index-iconDiv-2cCwX .assets-style-dataGather-gatherTaskFill--index-iconTag-5srH5 {
  display: inline-block;
  border: 1px solid rgba(87, 177, 134, 0.1);
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  height: 66px;
  width: 66px;
  border-radius: 50%;
  margin: 5px auto 0;
  box-shadow: 0px 2px 7px 0px rgba(87, 177, 134, 0.8);
  line-height: 60px;
  vertical-align: middle;
  margin-top: -8px;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-customerForm-2UrpY .assets-style-dataGather-gatherTaskFill--index-iconSelect-1qkyy .assets-style-dataGather-gatherTaskFill--index-iconDiv-2cCwX .assets-style-dataGather-gatherTaskFill--index-iconTag-5srH5 img {
  vertical-align: middle;
  width: 32px;
  height: 32px;
  display: inline-block;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-customerForm-2UrpY .assets-style-dataGather-gatherTaskFill--index-iconSelect-1qkyy .assets-style-dataGather-gatherTaskFill--index-iconBottom-4r092 {
  display: inline-block;
  vertical-align: bottom;
  padding: 0 20px;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-customerForm-2UrpY .assets-style-dataGather-gatherTaskFill--index-iconSelect-1qkyy .assets-style-dataGather-gatherTaskFill--index-iconBottom-4r092 .assets-style-dataGather-gatherTaskFill--index-iconRandom-3RJ_h {
  margin-right: 20px;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-iconSelectDiv-21Hdo {
  padding: 20px;
  height: 300px;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-iconSelectDiv-21Hdo .assets-style-dataGather-gatherTaskFill--index-iconListDiv-1SOiD .assets-style-dataGather-gatherTaskFill--index-logoList-1z6KR li {
  height: 80px;
  width: 100px;
  float: left;
  position: relative;
  margin: 2px;
  z-index: 0;
  cursor: pointer;
  text-align: center;
  display: table;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-iconSelectDiv-21Hdo .assets-style-dataGather-gatherTaskFill--index-iconListDiv-1SOiD .assets-style-dataGather-gatherTaskFill--index-logoList-1z6KR li .assets-style-dataGather-gatherTaskFill--index-logoDivRelative-1FmkN {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  height: 80px;
  z-index: 2;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-iconSelectDiv-21Hdo .assets-style-dataGather-gatherTaskFill--index-iconListDiv-1SOiD .assets-style-dataGather-gatherTaskFill--index-logoList-1z6KR li .assets-style-dataGather-gatherTaskFill--index-logoDivRelative-1FmkN .assets-style-dataGather-gatherTaskFill--index-image-2SfrW {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-iconSelectDiv-21Hdo .assets-style-dataGather-gatherTaskFill--index-iconListDiv-1SOiD .assets-style-dataGather-gatherTaskFill--index-logoList-1z6KR li:hover {
  background: rgba(141, 205, 118, 0.4);
}
.assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-iconSelectDiv-21Hdo .assets-style-dataGather-gatherTaskFill--index-iconListDiv-1SOiD .assets-style-dataGather-gatherTaskFill--index-logoList-1z6KR li.assets-style-dataGather-gatherTaskFill--index-active-asBOz {
  background: rgba(141, 205, 118, 0.4);
}
.assets-style-dataGather-gatherTaskFill--index-affairName-2ET6F :hover {
  text-decoration: underline;
}
.assets-style-dataGather-gatherTaskFill--index-bodyFixed-3Xc7T {
  position: fixed;
  width: 100%;
}
/****************绿色主题开始******************/
.theme-green .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-tagItem-3a8js:hover {
  background: #E6FFF1;
  cursor: pointer;
}
.theme-green .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-tagItem-3a8js.assets-style-dataGather-gatherTaskFill--index-current-17tht {
  box-shadow: 1px 1px 1px 1px rgba(0, 88, 37, 0.3);
  background: #f2aa18;
}
/**************** 蓝色主题开始*****************/
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd {
  box-shadow: 0 0 10px 0 rgba(35, 145, 230, 0.3);
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd.assets-style-dataGather-gatherTaskFill--index-showBigList-3pyep .assets-style-dataGather-gatherTaskFill--index-searchButton-3WXUy:hover {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM {
  background: #fafdff;
  /*i{
        &:hover{
          color:@theme-blue-1;
        }
      }*/
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-toggle-1gvcA .assets-style-dataGather-gatherTaskFill--index-sideLogo-14U0v:hover {
  background: #e6f7ff;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideLeft-1Z-hg {
  background: #fafdff;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-tagItem-3a8js {
  background: #fafdff;
  cursor: pointer;
  box-shadow: 1px 1px 1px 1px rgba(0, 88, 37, 0.3);
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-tagItem-3a8js:hover {
  background: #e6f7ff;
  cursor: pointer;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-tagItem-3a8js.assets-style-dataGather-gatherTaskFill--index-current-17tht {
  box-shadow: 1px 1px 1px 1px rgba(0, 88, 37, 0.3);
  background: #f2aa18;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-hideTag-2xvTI {
  background: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-addBtnWrap-QYf22 {
  background: #fafdff;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-addBtnWrap-QYf22 .assets-style-dataGather-gatherTaskFill--index-rollback-3x7ry {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-addBtnContent-1JXOp .assets-style-dataGather-gatherTaskFill--index-addName-yCMfm {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt {
  background: #f4f5f5;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt:hover {
  background: #D5E6E0;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr:hover .assets-style-dataGather-gatherTaskFill--index-emptyTips-2lTSm {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr:hover .assets-style-dataGather-gatherTaskFill--index-emptyTips-2lTSm {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse-content {
  background: #F2F3F4;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse .ant-collapse-item.ant-collapse-no-arrow .ant-collapse-header .anticon-star {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse-item-active .ant-collapse-header {
  border-bottom: 2px solid #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse-item-active .assets-style-dataGather-gatherTaskFill--index-serviceCount-3WxY7 {
  background: #2391e6;
  border: 1px solid #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceDomainIconDiv-15e9U .assets-style-dataGather-gatherTaskFill--index-serviceDomainIcon-1YLjO {
  border: 1px solid rgba(35, 145, 230, 0.1);
  background-color: #2391e6;
  box-shadow: 0 2px 7px 0 rgba(35, 145, 230, 0.3);
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceCount-3WxY7 {
  background: #F0F3F6;
  border: 1px solid #CFD7DE;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG .assets-style-dataGather-gatherTaskFill--index-serviceIconDiv-16XyX .assets-style-dataGather-gatherTaskFill--index-serviceIcon-14f8k {
  border: 1px solid rgba(87, 177, 134, 0.1);
  box-shadow: 0 2px 7px 0 rgba(87, 177, 134, 0.24);
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG:hover {
  background: #a2ceff;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX {
  box-shadow: 0 0 10px 0 rgba(0, 88, 37, 0.1);
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 {
  border-bottom: 1px solid #E1E6E3;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 .assets-style-dataGather-gatherTaskFill--index-closeIcon-fWlDp:hover {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5 {
  color: #1F5BCB;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5 .assets-style-dataGather-gatherTaskFill--index-tag-2CDR9 {
  background: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5.assets-style-dataGather-gatherTaskFill--index-serviceDomain-DTgja:hover .assets-style-dataGather-gatherTaskFill--index-collectSpan-3TRqr i.assets-style-dataGather-gatherTaskFill--index-deleteCollect-24Tm_ {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li:hover .assets-style-dataGather-gatherTaskFill--index-fontlist-3V8I9 {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .ant-card-meta-title span:hover {
  color: #2391e6;
  text-decoration: underline;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-closeRight-3MvJs .anticon-star.assets-style-dataGather-gatherTaskFill--index-deleteCollect-24Tm_ {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-mask-1D0q4 {
  border: 1px solid #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn {
  background: #f3f7f9;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w.ant-anchor-wrapper .assets-style-dataGather-gatherTaskFill--index-anchorTitle-1Sn8h {
  color: #1F5BCB;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w .ant-anchor-ink:before {
  background-color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w .ant-anchor-link-active .ant-anchor-link-title {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w .ant-anchor-ink-ball {
  border: 2px solid #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w a:hover {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-itemDraging-OIBPe {
  background: #D5E6E0;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt {
  background: #D5E6E0;
  border: 1px solid #efefef;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt i {
  color: #98ACA5;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt i:hover {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt .anticon-star {
  color: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt .assets-style-dataGather-gatherTaskFill--index-iconTag-5srH5 .assets-style-dataGather-gatherTaskFill--index-iconCon-pX_Dw {
  border: 1px solid rgba(87, 177, 134, 0.1);
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 2px 7px 0px rgba(87, 177, 134, 0.24);
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .ant-modal-header {
  background: #2391e6;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-customerForm-2UrpY .assets-style-dataGather-gatherTaskFill--index-iconSelect-1qkyy .assets-style-dataGather-gatherTaskFill--index-iconDiv-2cCwX {
  border: 1px dashed #D5E6E0;
}
.theme-blue .assets-style-dataGather-gatherTaskFill--index-customerModal-MBFWy .assets-style-dataGather-gatherTaskFill--index-customerForm-2UrpY .assets-style-dataGather-gatherTaskFill--index-iconSelect-1qkyy .assets-style-dataGather-gatherTaskFill--index-iconDiv-2cCwX .assets-style-dataGather-gatherTaskFill--index-iconTag-5srH5 {
  border: 1px solid rgba(87, 177, 134, 0.1);
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 2px 7px 0px rgba(35, 145, 230, 0.3);
}
/*************** 蓝色主题结束*****************/
/**************** 红色主题开始*****************/
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd {
  box-shadow: 0 0 10px 0 rgba(169, 0, 33, 0.3);
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd.assets-style-dataGather-gatherTaskFill--index-showBigList-3pyep .assets-style-dataGather-gatherTaskFill--index-searchButton-3WXUy:hover {
  color: #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-affairName-2ET6F :hover {
  text-decoration: underline;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-searchLayout-2FtCM {
  background: #fafdff;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-toggle-1gvcA .assets-style-dataGather-gatherTaskFill--index-sideLogo-14U0v:hover {
  background: #fff1f0;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideLeft-1Z-hg {
  background: #fafdff;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-tagItem-3a8js {
  background: #fafdff;
  box-shadow: 1px 1px 1px 1px rgba(0, 88, 37, 0.3);
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-tagItem-3a8js:hover {
  background: #fff1f0;
  cursor: pointer;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-tagItem-3a8js.assets-style-dataGather-gatherTaskFill--index-current-17tht {
  background: #f2aa18;
  box-shadow: 1px 1px 1px 1px rgba(0, 88, 37, 0.3);
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-sideTag-3M2KG .assets-style-dataGather-gatherTaskFill--index-hideTag-2xvTI {
  background: #F63E62;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-addBtnWrap-QYf22 {
  background: #fafdff;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-addBtnWrap-QYf22 .assets-style-dataGather-gatherTaskFill--index-rollback-3x7ry {
  color: #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-addBtnContent-1JXOp .assets-style-dataGather-gatherTaskFill--index-addName-yCMfm {
  color: #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-systemList-14XXE .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr:hover .assets-style-dataGather-gatherTaskFill--index-emptyTips-2lTSm {
  color: #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-emptyTipsDiv-3aFPr:hover .assets-style-dataGather-gatherTaskFill--index-emptyTips-2lTSm {
  color: #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse-content {
  background: #F2F3F4;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse .ant-collapse-item.ant-collapse-no-arrow .ant-collapse-header .anticon-star {
  color: #F63E62;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse-item-active .ant-collapse-header {
  border-bottom: 2px solid #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .ant-collapse-item-active .assets-style-dataGather-gatherTaskFill--index-serviceCount-3WxY7 {
  background: #9A001E;
  border: 1px solid #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-serviceList-2eDiH .assets-style-dataGather-gatherTaskFill--index-serviceItem-z3-nG:hover {
  background: rgba(255, 71, 72, 0.2);
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX {
  box-shadow: 0 0 10px 0 rgba(169, 0, 33, 0.1);
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 {
  /*border-bottom: 1px solid @theme-red-5;*/
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-titleBar-K0LM9 .assets-style-dataGather-gatherTaskFill--index-closeIcon-fWlDp:hover {
  color: #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5 {
  color: #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5 .assets-style-dataGather-gatherTaskFill--index-tag-2CDR9 {
  background: #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-type-2BuF5.assets-style-dataGather-gatherTaskFill--index-serviceDomain-DTgja:hover .assets-style-dataGather-gatherTaskFill--index-collectSpan-3TRqr i.assets-style-dataGather-gatherTaskFill--index-deleteCollect-24Tm_ {
  color: #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 li:hover .assets-style-dataGather-gatherTaskFill--index-fontlist-3V8I9 {
  color: #F63E62;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .ant-card-meta-title span:hover {
  color: #F63E62;
  text-decoration: underline;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-closeRight-3MvJs .anticon-star.assets-style-dataGather-gatherTaskFill--index-deleteCollect-24Tm_ {
  color: #F63E62;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-contentBody-1fmVA .assets-style-dataGather-gatherTaskFill--index-contentList-2w9kl .assets-style-dataGather-gatherTaskFill--index-typeItem-4qzmT .assets-style-dataGather-gatherTaskFill--index-dataList-LMx3t .assets-style-dataGather-gatherTaskFill--index-ullist-1_2P2 .assets-style-dataGather-gatherTaskFill--index-mask-1D0q4 {
  border: 1px solid #F63E62;
  background-color: #fffbfb;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn {
  background: #fffbfb;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w.ant-anchor-wrapper .assets-style-dataGather-gatherTaskFill--index-anchorTitle-1Sn8h {
  color: #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w .ant-anchor-ink:before {
  background-color: #F63E62;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w .ant-anchor-link-active .ant-anchor-link-title {
  color: #F63E62;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w .ant-anchor-ink-ball {
  border: 2px solid #F63E62;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd .assets-style-dataGather-gatherTaskFill--index-moreContent-y0FJX .assets-style-dataGather-gatherTaskFill--index-anchorContent-6dhtn .assets-style-dataGather-gatherTaskFill--index-anchor-IhD9w a:hover {
  color: #F63E62;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt i {
  color: #98ACA5;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt i:hover {
  color: #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt .anticon-star {
  color: #9A001E;
}
.theme-red .assets-style-dataGather-gatherTaskFill--index-sideTagitem-2n-pt .assets-style-dataGather-gatherTaskFill--index-iconTag-5srH5 .assets-style-dataGather-gatherTaskFill--index-iconCon-pX_Dw {
  border: 1px solid rgba(169, 0, 33, 0.1);
  background-color: #fffbfb;
  box-shadow: 0px 2px 7px 0px rgba(169, 0, 33, 0.3);
}
/*************** 红色主题结束*****************/
@media (max-width: 1400px) {
  .font-normal .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd {
    margin-left: 0px;
  }
  .font-normal .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd.assets-style-dataGather-gatherTaskFill--index-showBigList-3pyep {
    margin-left: 0;
  }
}
@media (max-width: 1540px) {
  .font-large .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd {
    margin-left: 0px;
  }
  .font-large .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd.assets-style-dataGather-gatherTaskFill--index-showBigList-3pyep {
    margin-left: 0;
  }
}
@media (max-width: 1750px) {
  .font-extraLarge .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd {
    margin-left: 0px;
  }
  .font-extraLarge .assets-style-dataGather-gatherTaskFill--index-portalSidelink-3gmpd.assets-style-dataGather-gatherTaskFill--index-showBigList-3pyep {
    margin-left: 0;
  }
}
.assets-style-dataGather-gatherTaskFill--index-sideLink-1SNKR {
  background: #f2f3f4;
  top: 20px;
  left: 0;
  z-index: 100;
  position: absolute;
  border: 1px solid #e1e6e3;
  box-shadow: 0 0 10px 0 rgba(0, 88, 37, 0.1);
  border-bottom-right-radius: 10px;
}
.assets-style-navigationBar--index-breadCrumb-sbuqP {
  height: 32px;
  background: #fff;
  line-height: 32px;
}
.assets-style-navigationBar--index-breadCrumb-sbuqP .assets-style-navigationBar--index-prefix-U8WpV {
  color: rgba(0, 0, 0, 0.45);
  padding-left: 8px;
}
.assets-style-navigationBar--index-breadCrumb-sbuqP .ant-breadcrumb {
  line-height: 32px;
  display: inline-block;
}
.assets-style-secBaseComponent--index-sider-1RSc6 {
  float: left;
  background-image: url(../../assets/images/23ff9-Svvh.png) !important;
  background-position: left bottom !important;
  background-attachment: scroll !important;
  background-repeat: no-repeat !important;
  background-size: 200px 360px !important;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .assets-style-secBaseComponent--index-avatarContainer-2GaFX {
  padding: 20px 0px;
  text-align: center;
  color: #fff;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .assets-style-secBaseComponent--index-avatarContainer-2GaFX .assets-style-secBaseComponent--index-avatar-2cjaQ {
  margin-bottom: 6px;
  border: 1px solid #e8e8e8;
  background-color: #fff;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .assets-style-secBaseComponent--index-ly-sider-title-3bde4 {
  font-size: 20px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .assets-style-secBaseComponent--index-ly-sider-title-3bde4 img {
  width: 57px;
  height: 51px;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .assets-style-secBaseComponent--index-ly-sider-title-3bde4 div {
  margin-bottom: 26px;
  margin-top: 12px;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-vertical .ant-menu-item,
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-vertical-left .ant-menu-item,
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-vertical-right .ant-menu-item,
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-inline .ant-menu-item,
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-vertical .ant-menu-submenu-title,
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-vertical-left .ant-menu-submenu-title,
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-vertical-right .ant-menu-submenu-title,
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-inline .ant-menu-submenu-title {
  margin-top: 0;
  margin-bottom: 0;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu,
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-submenu {
  min-height: 100%;
  background: transparent;
  border-right: none;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-item > a,
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-submenu > .ant-menu-submenu-title > span {
  color: #fff;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu > .ant-menu-submenu > .ant-menu-submenu-title > .ant-menu-submenu-arrow::after,
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu > .ant-menu-submenu > .ant-menu-submenu-title > .ant-menu-submenu-arrow::before {
  background: #fff;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-submenu .ant-menu-submenu-title > span {
  color: #fff;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-item:hover > a,
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-item-active > a {
  color: #fff;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
  background: #fff;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-submenu > .ant-menu {
  background: transparent;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected > a {
  color: var(--primary-color);
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-inline .ant-menu-item-selected::after {
  display: none;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ly-sider-title {
  font-size: 20px;
  font-family: Source Han Sans CN;
  font-weight: bold;
  color: #FFFFFF;
  text-align: center;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ly-sider-title img {
  width: 57px;
  height: 51px;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ly-sider-title div {
  margin-bottom: 26px;
  margin-top: 12px;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ly-sider-btn-fixed {
  position: absolute;
  bottom: 0;
  left: 0;
  height: 40px;
  width: 100%;
  padding-left: 24px;
  line-height: 40px;
  border-top: 1px solid transparent;
  border-right: 1px solid transparent;
  background: transparent;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ly-sider-btn-fixed .anticon {
  cursor: pointer;
}
.assets-style-secBaseComponent--index-sider-1RSc6 .ant-menu-item > a {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
/*********************蓝色主题 start*********************/
/*********************蓝色主题 end*********************/
/*********************红色主题 start*********************/
/*********************红色主题 end*********************/
/********************绿色主题 start********************/
/********************绿色主题 end********************/
@font-face {
  font-family: 'iconfont';
  /* project id 864711 */
  src: url('//at.alicdn.com/t/font_864711_lfdllpqd6uq.eot');
  src: url('//at.alicdn.com/t/font_864711_lfdllpqd6uq.eot?#iefix') format('embedded-opentype'), url('//at.alicdn.com/t/font_864711_lfdllpqd6uq.woff2') format('woff2'), url('//at.alicdn.com/t/font_864711_lfdllpqd6uq.woff') format('woff'), url('//at.alicdn.com/t/font_864711_lfdllpqd6uq.ttf') format('truetype'), url('//at.alicdn.com/t/font_864711_lfdllpqd6uq.svg#iconfont') format('svg');
}
.assets-style-globalInfo--index-iconfont-2p5EH {
  font-family: "iconfont" !important;
  font-size: 16px;
  font-style: normal;
  -webkit-font-smoothing: antialiased;
  -webkit-text-stroke-width: 0.2px;
  -moz-osx-font-smoothing: grayscale;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 {
  width: 0px;
  position: relative;
  transition: width 0.3s ease;
  word-break: break-all;
  cursor: pointer;
  box-shadow: 0 0 10px 0 rgba(0, 88, 37, 0.1);
  border-bottom-right-radius: 10px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1.assets-style-globalInfo--index-showBigList-3Yb0E {
  width: 300px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1.assets-style-globalInfo--index-showBigList-3Yb0E .assets-style-globalInfo--index-toggle-1VNR0 {
  text-align: left;
  position: relative;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1.assets-style-globalInfo--index-showBigList-3Yb0E .assets-style-globalInfo--index-moreButton-hyyRI {
  float: right;
  margin-top: 14px;
  margin-right: 5px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1.assets-style-globalInfo--index-showBigList-3Yb0E .assets-style-globalInfo--index-searchButton-t5ire {
  float: right;
  line-height: 64px;
  margin-right: 20px;
  font-size: 18px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1.assets-style-globalInfo--index-showBigList-3Yb0E .assets-style-globalInfo--index-searchButton-t5ire:hover {
  color: #228B22;
  cursor: pointer;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-searchLayout-2_F6d {
  width: 300px;
  position: absolute;
  display: none;
  top: 0;
  left: 0;
  background: #F2F3F4;
  border-bottom: 1px solid #E1E6E3;
  padding: 0 10px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-searchLayout-2_F6d.assets-style-globalInfo--index-show-1gBjJ {
  display: block;
  /*  :global(.anticon-search){
        font-size: 22px;
        line-height: 64px;
      }*/
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-searchLayout-2_F6d.assets-style-globalInfo--index-show-1gBjJ input {
  width: 200px;
  display: inline-block;
  border-top-right-radius: 0px;
  border-bottom-right-radius: 0px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-searchLayout-2_F6d.assets-style-globalInfo--index-show-1gBjJ .ant-btn {
  border-top-left-radius: 0px;
  border-bottom-left-radius: 0px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-searchLayout-2_F6d.assets-style-globalInfo--index-show-1gBjJ .anticon-check {
  display: none;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-searchLayout-2_F6d.assets-style-globalInfo--index-show-1gBjJ .icon-shuaxin {
  display: none;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-searchLayout-2_F6d.assets-style-globalInfo--index-show-1gBjJ .assets-style-globalInfo--index-showSearchIcon-1VnTs {
  display: inline-block;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-searchLayout-2_F6d .ant-input-affix-wrapper {
  width: 200px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-searchLayout-2_F6d .ant-input-affix-wrapper .anticon-close-circle {
  font-size: 14px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-searchLayout-2_F6d input {
  /* border-radius: 20px;*/
  display: none;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-searchLayout-2_F6d i {
  cursor: pointer;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-toggle-1VNR0 {
  margin: 0 auto;
  height: 64px;
  line-height: 64px;
  overflow: hidden;
  border-bottom: 1px solid #E1E6E3;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-toggle-1VNR0 .ant-input-group-wrapper {
  vertical-align: middle;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-toggle-1VNR0 .assets-style-globalInfo--index-sideLogo-EF8XN {
  display: inline-block;
  text-align: center;
  margin-top: -2px;
  width: 60px;
  height: 64px;
  line-height: 64px;
  vertical-align: middle;
  font-size: 24px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-toggle-1VNR0 .assets-style-globalInfo--index-sideLogo-EF8XN:hover {
  background: #D5E6E0;
  cursor: pointer;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-toggle-1VNR0 .assets-style-globalInfo--index-sideLogo-EF8XN.assets-style-globalInfo--index-disabled-RN9Ab {
  cursor: not-allowed;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideLeft-3nxHR {
  z-index: 2;
  background: #F2F3F4;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideLeft-3nxHR.assets-style-globalInfo--index-borderRadius-17893 {
  border-bottom-right-radius: 10px;
  overflow: hidden;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideLeft-3nxHR > div:last-child > div:nth-of-type(2) {
  display: none;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideRight-3ICg2 {
  position: absolute;
  transition: width 0.5s ease,left 0.3s ease;
  background: #ffffff;
  top: 0;
  left: 60px;
  height: 100%;
  border-bottom-right-radius: 10px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideRight-3ICg2.assets-style-globalInfo--index-leftExp-3BDCY {
  left: 300px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 {
  position: absolute;
  right: 0;
  top: 70px;
  margin-right: -32px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-tagItem-CwUqn {
  margin-bottom: 4px;
  width: 32px;
  z-index: 1002;
  color: #888888;
  font-size: 14px;
  background: #f0f3f6;
  text-align: center;
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 12px 6px;
  line-height: 1.2;
  box-shadow: 1px 1px 1px 1px rgba(0, 88, 37, 0.3);
  /* &:hover{
        background: @theme-green-3;
        cursor: pointer;
      }*/
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-tagItem-CwUqn.assets-style-globalInfo--index-current-23NY- {
  color: #ffffff;
  background: #f2aa18;
  font-size: 14px;
  border: none;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-hideTag-3zWwu {
  margin-bottom: 4px;
  width: 32px;
  z-index: 1002;
  color: #888888;
  font-size: 14px;
  background: #228B22;
  text-align: center;
  border-left: none;
  border-radius: 0 8px 8px 0;
  padding: 12px 6px;
  line-height: 1.2;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-hideTag-3zWwu:hover {
  cursor: pointer;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 .ant-tabs .ant-tabs-left-bar {
  border-right: 0px !important;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-addBtnWrap-2m64s {
  width: 100%;
  height: 73px;
  overflow: hidden;
  position: absolute;
  bottom: 0;
  padding: 20px 0;
  /* border-top: 1px solid #E1E6E3;*/
  cursor: pointer;
  background: #F2F3F4;
  border-bottom-right-radius: 10px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-addBtnWrap-2m64s.assets-style-globalInfo--index-moreData-2gKN4 {
  border-bottom-right-radius: 0;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-addBtnWrap-2m64s .assets-style-globalInfo--index-rollback-ZpkZ6 {
  float: right;
  color: #37A164;
  font-size: 18px;
  padding-right: 32px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-addBtnWrap-2m64s .assets-style-globalInfo--index-rollback-ZpkZ6 i {
  margin-right: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-addBtnContent-2Z9BA {
  width: 300px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-addBtnContent-2Z9BA .assets-style-globalInfo--index-buttonDiv-3jXme {
  width: 60px;
  text-align: center;
  display: inline-block;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-addBtnContent-2Z9BA .assets-style-globalInfo--index-addName-1bqw2 {
  display: inline-block;
  vertical-align: middle;
  line-height: 30px;
  font-size: 16px;
  color: #37A164;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi {
  width: 60px;
  overflow: hidden;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi.assets-style-globalInfo--index-showFull-alg0C {
  width: 300px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-sideTagitem-tHX_g {
  border: none;
  background: #f4f5f5;
  transition: background 0.8s ease-in;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-sideTagitem-tHX_g:hover {
  background: #D5E6E0;
  cursor: pointer;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 {
  cursor: pointer;
  display: table;
  width: 100%;
  text-align: center;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-emptyTipsDiv-1YSx6:hover .assets-style-globalInfo--index-emptyTips-3MAkZ {
  color: #37A164;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-emptyTips-3MAkZ {
  display: table-cell;
  font-size: 14px;
  vertical-align: middle;
  color: #6C6C6C;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-emptyTips-3MAkZ .assets-style-globalInfo--index-emptyContent-wpt0F {
  margin: auto;
  width: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-emptyTips-3MAkZ .assets-style-globalInfo--index-emptyContent-wpt0F i {
  color: #BCBCBC;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-emptyMore-Bqj-y {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-emptyMore-Bqj-y .assets-style-globalInfo--index-collectText-3_6vF {
  margin-top: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-emptyMore-Bqj-y .assets-style-globalInfo--index-collectBtn-3pksG {
  margin-top: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-nothing-2DpQv {
  padding: 20px;
  text-align: center;
  margin: auto;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .ant-card-meta-title span {
  color: #474747;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse {
  background: none;
  border: none;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 {
  cursor: pointer;
  display: table;
  width: 100%;
  text-align: center;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-emptyTipsDiv-1YSx6:hover .assets-style-globalInfo--index-emptyTips-3MAkZ {
  color: #37A164;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-emptyTips-3MAkZ {
  display: table-cell;
  font-size: 14px;
  vertical-align: middle;
  color: #6C6C6C;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-emptyTips-3MAkZ .assets-style-globalInfo--index-emptyContent-wpt0F {
  margin: auto;
  width: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-emptyTips-3MAkZ .assets-style-globalInfo--index-emptyContent-wpt0F i {
  color: #BCBCBC;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-emptyMore-Bqj-y {
  display: table-cell;
  vertical-align: middle;
  text-align: center;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-emptyMore-Bqj-y .assets-style-globalInfo--index-collectText-3_6vF {
  margin-top: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-emptyMore-Bqj-y .assets-style-globalInfo--index-collectBtn-3pksG {
  margin-top: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-emptyTipsDiv-1YSx6 .assets-style-globalInfo--index-nothing-2DpQv {
  padding: 20px;
  text-align: center;
  margin: auto;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse-content {
  background: #F2F3F4;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse-content .ant-collapse-content-box {
  padding: 5px!important;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse .ant-collapse-item.ant-collapse-no-arrow .ant-collapse-header {
  padding: 12px;
  line-height: 27px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse .ant-collapse-item.ant-collapse-no-arrow .ant-collapse-header .anticon-star {
  color: #37A164;
  float: right;
  line-height: 27px;
  margin-right: 20px;
  cursor: pointer;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse-item-active .ant-collapse-header {
  border-bottom: 2px solid #37A164;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse-item-active .assets-style-globalInfo--index-serviceCount-3YngE {
  background: #37A164;
  border: 1px solid #28844F;
  color: #fff;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceDomainIconDiv-3XrND {
  width: 100%;
  text-align: center;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceDomainIconDiv-3XrND .assets-style-globalInfo--index-serviceDomainIcon-2AZYr {
  display: inline-block;
  border: 1px solid rgba(87, 177, 134, 0.1);
  background-color: #62b68e;
  overflow: hidden;
  height: 40px;
  width: 40px;
  border-radius: 50%;
  margin: 6px auto 0;
  box-shadow: 0 2px 7px 0 rgba(87, 177, 134, 0.24);
  line-height: 40px;
  text-align: center;
  color: #fff;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceCount-3YngE {
  width: 31px;
  height: 27px;
  background: #F0F3F6;
  border: 1px solid #CFD7DE;
  border-radius: 14px;
  font-size: 14px;
  text-align: center;
  float: right;
  display: inline-block;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw {
  height: 40px;
  line-height: 40px;
  padding: 0 5px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw .assets-style-globalInfo--index-affairIcon-3DUjH {
  margin-bottom: 15px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw .assets-style-globalInfo--index-serviceIconDiv-2sDNr {
  width: 100%;
  text-align: center;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw .assets-style-globalInfo--index-serviceIconDiv-2sDNr .assets-style-globalInfo--index-serviceIcon-13dxU {
  display: inline-block;
  border: 1px solid rgba(87, 177, 134, 0.1);
  background-color: rgba(255, 255, 255, 0.5);
  overflow: hidden;
  height: 36px;
  width: 36px;
  border-radius: 50%;
  box-shadow: 0 2px 7px 0 rgba(87, 177, 134, 0.24);
  line-height: 30px;
  text-align: center;
  margin-top: 1px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw .assets-style-globalInfo--index-serviceIconDiv-2sDNr .assets-style-globalInfo--index-serviceIcon-13dxU img {
  margin: 0;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw:hover {
  background: #8DCD76;
  color: #fff;
  cursor: pointer;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw:hover i {
  display: inline;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw .assets-style-globalInfo--index-edit-2ziQ9 i {
  color: #999;
  float: none;
  position: absolute;
  right: 35px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw img {
  height: 20px;
  width: 20px;
  vertical-align: middle;
  margin-right: 10px;
  display: inline-block;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw i {
  color: #fff;
  display: none;
  float: right;
  vertical-align: middle;
  line-height: 40px;
  margin-right: 5px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw .assets-style-globalInfo--index-serviceName-1l6bM {
  width: calc(100% - 50px);
  vertical-align: middle;
  /*text-overflow: ellipsis;
        overflow: hidden;
        white-space: nowrap;*/
  color: #474747;
  display: inline-block;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw .assets-style-globalInfo--index-serviceName-1l6bM .assets-style-globalInfo--index-ellipsis-2QE7P {
  display: inline;
  color: #474747 ;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw .assets-style-globalInfo--index-heart-qwlHU {
  color: #ff0000;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreDataWrap-3XtSD {
  z-index: 9999;
  overflow: hidden;
  transition: width 0.3s ease;
  border-bottom-right-radius: 10px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W {
  position: relative;
  background-color: #fff;
  box-shadow: 0 0 10px 0 rgba(0, 88, 37, 0.1);
  padding: 0 20px 0 30px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY {
  height: 64px;
  border-bottom: 1px solid #E1E6E3;
  font-size: 18px;
  line-height: 64px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY .assets-style-globalInfo--index-title--Jh7m {
  vertical-align: middle;
  font-size: 18px;
  font-weight: normal;
  color: #666;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY .assets-style-globalInfo--index-leftIcon-1JxSa {
  margin-right: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY .anticon-bars {
  font-size: 28px;
  vertical-align: middle;
  color: #828282;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY .assets-style-globalInfo--index-divider-3Cy3P {
  margin-left: 28px;
  height: 22px;
  color: #aeaeae;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY .anticon-question-circle-o {
  margin-left: 5px;
  cursor: pointer;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY .assets-style-globalInfo--index-closeIcon-39H_E {
  font-size: 18px;
  float: right;
  line-height: 64px;
  margin-right: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY .assets-style-globalInfo--index-closeIcon-39H_E:hover {
  cursor: pointer;
  color: #228B22;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY .assets-style-globalInfo--index-searchLayout-2_F6d {
  position: relative;
  display: inline-block;
  background: none;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY .assets-style-globalInfo--index-addCustom-1lRrO {
  float: right;
  line-height: 64px;
  padding-right: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL {
  padding: 20px 0;
  position: relative;
  overflow: auto;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-pt-search-3HcBx {
  float: right;
  padding-right: 50px;
  margin-bottom: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-pt-search-3HcBx .assets-style-globalInfo--index-ant-select-auto-complete-244KH {
  vertical-align: middle;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-pt-search-3HcBx .assets-style-globalInfo--index-searchButton-t5ire {
  vertical-align: middle;
  margin-top: -3px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-pt-search-3HcBx .assets-style-globalInfo--index-clearIcon-3H8Bb {
  right: 145px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR {
  display: inline-block;
  width: calc(100% - 220px);
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD {
  margin-bottom: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1 {
  font-size: 18px;
  color: #005825;
  height: 32px;
  line-height: 32px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1 .assets-style-globalInfo--index-tag-32oKP {
  width: 6px;
  height: 24px;
  background: #45AA70;
  display: inline-block;
  vertical-align: middle;
  margin-right: 5px;
  border-radius: 4px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1.assets-style-globalInfo--index-serviceDomain-2srs6 {
  padding: 5px 10px;
  height: 42px;
  border: 1px solid #fff;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1.assets-style-globalInfo--index-serviceDomain-2srs6:hover {
  border-radius: 4px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1.assets-style-globalInfo--index-serviceDomain-2srs6:hover .assets-style-globalInfo--index-collectSpan-1xGrI {
  display: inline;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1.assets-style-globalInfo--index-serviceDomain-2srs6:hover .assets-style-globalInfo--index-collectSpan-1xGrI i {
  cursor: pointer;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1.assets-style-globalInfo--index-serviceDomain-2srs6:hover .assets-style-globalInfo--index-collectSpan-1xGrI i.assets-style-globalInfo--index-deleteCollect-3w3fI {
  color: #37A164;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1.assets-style-globalInfo--index-serviceDomain-2srs6 .assets-style-globalInfo--index-collectSpan-1xGrI {
  display: none;
  float: right;
  font-size: 14px;
  color: #000;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1.assets-style-globalInfo--index-serviceDomain-2srs6 .assets-style-globalInfo--index-collectSpan-1xGrI i {
  margin-right: 10px;
  color: #CDCDCD;
  vertical-align: middle;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-pointer-1L4fR {
  cursor: pointer;
  font-size: 16px;
  padding-left: 10px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl {
  padding: 0 30px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ {
  overflow: hidden;
  width: 100%;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ i.iconfont {
  color: #d2cece;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .anticon-star {
  color: #d2cece;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .ant-card-meta-title span:hover {
  color: #52A025;
  text-decoration: underline;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li {
  list-style: none;
  float: left;
  padding-left: 5px;
  width: 265px;
  cursor: pointer;
  margin-right: 20px;
  margin-top: 10px;
  height: 128px;
  z-index: 0;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li .ant-card-meta-detail > div:not(:last-child) {
  margin-bottom: 0px;
  height: 28px;
  line-height: 28px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li .ant-card-meta-title {
  font-weight: 600;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li .ant-card-bordered:hover {
  box-shadow: 0px 0px 10px 0px rgba(3, 57, 107, 0.4);
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li .ant-card-body {
  padding: 20px 24px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li .assets-style-globalInfo--index-content-1ceoJ span {
  display: block;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li .assets-style-globalInfo--index-contentCus-2MJbh .assets-style-globalInfo--index-heartNoFloat-2NTwH {
  color: #ff0000;
  cursor: pointer;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li .assets-style-globalInfo--index-contentCus-2MJbh .assets-style-globalInfo--index-unHeartNoFloat-3R_Q0 {
  color: #CCCCCC;
  cursor: pointer;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li .assets-style-globalInfo--index-contentCus-2MJbh span {
  display: inline-block;
  margin: 5px 20px 5px 0px;
  font-size: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li .assets-style-globalInfo--index-contentCus-2MJbh span i {
  font-size: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li .assets-style-globalInfo--index-heart-qwlHU,
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li .assets-style-globalInfo--index-unHeart-RnDjT {
  position: absolute;
  right: 24px;
  top: 18px;
  font-size: 18px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li .assets-style-globalInfo--index-heart-qwlHU {
  color: #ff0000;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li .assets-style-globalInfo--index-unHeart-RnDjT {
  color: #CCCCCC;
  display: none;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li:hover .assets-style-globalInfo--index-unHeart-RnDjT {
  display: block;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li:hover .assets-style-globalInfo--index-unHeart-RnDjT:hover {
  color: #ff0000;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-divRelative-pIlYM {
  position: relative;
  text-align: center;
  height: 128px;
  z-index: 2;
  padding-top: 27%;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-image-1BfSr {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-fontlist-E4DsU {
  word-wrap: break-word;
  word-break: break-all;
  font-family: "Microsoft YaHei";
  margin: 0 auto;
  font-size: 14px;
  height: 21px;
  width: 84px;
  line-height: 20px;
  color: #666666;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-closeRight-2nOHQ {
  position: absolute;
  top: 7px;
  opacity: 1;
  text-align: right;
  width: 112px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-closeRight-2nOHQ .iconfont {
  opacity: 0;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-closeRight-2nOHQ .assets-style-globalInfo--index-customLeft-totOX {
  float: left;
  margin-left: 12px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-closeRight-2nOHQ .assets-style-globalInfo--index-customLeft-totOX.assets-style-globalInfo--index-delete-2IxUW {
  margin-left: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-closeRight-2nOHQ span i.anticon.anticon-plus-circle-o::before {
  color: #f4f9f6;
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  font-size: 16px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-closeRight-2nOHQ span i.anticon.anticon-minus-circle-o::before {
  color: #f4f9f6;
  background-color: rgba(0, 0, 0, 0.65);
  border-radius: 50%;
  font-size: 16px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-closeRight-2nOHQ span i.anticon.anticon-question-circle-o::before {
  border-radius: 50%;
  font-size: 16px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-closeRight-2nOHQ .anticon-star {
  opacity: 0;
  font-size: 16px;
  line-height: 24px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-closeRight-2nOHQ .anticon-star.assets-style-globalInfo--index-deleteCollect-3w3fI {
  color: #37A164;
  opacity: 1;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-closeRight-2nOHQ .assets-style-globalInfo--index-operation1-1vAC0 {
  padding-right: 20px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-closeRight-2nOHQ .assets-style-globalInfo--index-operation2-2Qkll {
  padding-right: 12px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-mask-22KLT {
  background-color: rgba(35, 145, 230, 0.1);
  border-radius: 4px;
  height: 128px;
  width: 112px;
  z-index: 1;
  top: 0;
  left: 0;
  position: absolute;
  opacity: 0;
  border: 1px solid #62B68E;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-noData-Lv4gw {
  padding: 20px;
  text-align: center;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-noData-Lv4gw .assets-style-globalInfo--index-noDataTips-37Jmy {
  margin-top: 10px;
  color: #666666;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 {
  width: 180px;
  position: fixed;
  top: 180px;
  right: 140px;
  height: calc(100% - 300px);
  overflow: hidden;
  background: #F4F9F6;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchorDiv-3mVQ8 {
  height: 100%;
  overflow-x: hidden;
  overflow-y: auto;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchorDiv-3mVQ8.assets-style-globalInfo--index-show-1gBjJ {
  width: 200px;
  /*:global(.ant-affix){
            position:absolute !important;
            left:0!important;
            top:0 !important;
            z-index:1;
            display: block;
          }*/
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchorDiv-3mVQ8 .ant-affix {
  z-index: 1;
  display: none;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH {
  margin: 40px 10px 0 0;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH.ant-anchor-wrapper {
  overflow: visible;
  width: 200px;
  background: none;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH.ant-anchor-wrapper .assets-style-globalInfo--index-anchorTitle-3xneZ {
  position: absolute;
  top: -30px;
  font-size: 16px;
  color: #005825;
  font-weight: bold;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH.ant-anchor-wrapper .ant-anchor-link {
  padding-top: 15px;
  padding-bottom: 15px;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH .ant-anchor-ink:before {
  width: 1px;
  background-color: #e7e7e7;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH .ant-anchor-link-active .ant-anchor-link-title {
  color: #37A164;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH .ant-anchor-ink-ball {
  border: 2px solid #37A164;
  transform: translateX(-45%);
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH a:hover {
  color: #37A164;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-affairTitle-2B318 {
  overflow: hidden;
  text-overflow: ellipsis;
  height: 30px;
  margin-top: -2px;
  width: 145px;
  padding-right: 15px;
  display: inline-block;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 a.assets-style-globalInfo--index-affairTitle-2B318 {
  color: #333333;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-background-2Vf7q {
  background: rgba(0, 0, 0, 0.6);
  transition: all 0.5s ease;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  z-index: -1;
}
.assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-background-2Vf7q.assets-style-globalInfo--index-show-1gBjJ {
  display: block;
}
.assets-style-globalInfo--index-itemDraging-2-A1A {
  background: #D5E6E0;
  padding: 20px;
}
.assets-style-globalInfo--index-sideTagitem-tHX_g {
  z-index: 99999;
  height: 64px;
  line-height: 64px;
  text-align: left;
  background: #D5E6E0;
  border: 1px solid #efefef;
  cursor: pointer;
}
.assets-style-globalInfo--index-sideTagitem-tHX_g.assets-style-globalInfo--index-forbid-LaCQo {
  cursor: not-allowed;
  color: rgba(0, 0, 0, 0.25);
}
.assets-style-globalInfo--index-sideTagitem-tHX_g:hover i {
  display: inline;
}
.assets-style-globalInfo--index-sideTagitem-tHX_g .assets-style-globalInfo--index-iconDiv-3Bc4v {
  width: 60px;
  text-align: center;
  height: 64px;
  display: inline-block;
  line-height: 64px;
  vertical-align: middle;
}
.assets-style-globalInfo--index-sideTagitem-tHX_g .assets-style-globalInfo--index-systemName-fFPQO {
  display: inline-block;
  vertical-align: middle;
  height: 64px;
  line-height: 64px;
  font-size: 16px;
}
.assets-style-globalInfo--index-sideTagitem-tHX_g i {
  color: #98ACA5;
  line-height: 64px;
  display: none;
  float: right;
  vertical-align: middle;
}
.assets-style-globalInfo--index-sideTagitem-tHX_g i:hover {
  cursor: pointer;
  color: #228B22;
}
.assets-style-globalInfo--index-sideTagitem-tHX_g .iconfont {
  margin-right: 12px;
}
.assets-style-globalInfo--index-sideTagitem-tHX_g .anticon-star {
  margin-right: 12px;
  color: #37a164;
}
.assets-style-globalInfo--index-sideTagitem-tHX_g .assets-style-globalInfo--index-iconTag-1o_DK {
  width: 60px;
  text-align: center;
}
.assets-style-globalInfo--index-sideTagitem-tHX_g .assets-style-globalInfo--index-iconTag-1o_DK .assets-style-globalInfo--index-iconCon-1NUrz {
  display: inline-block;
  border: 1px solid rgba(87, 177, 134, 0.1);
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  height: 50px;
  width: 50px;
  border-radius: 50%;
  margin: 6px auto 0;
  box-shadow: 0px 2px 7px 0px rgba(87, 177, 134, 0.24);
  line-height: 46px;
  text-align: center;
}
.assets-style-globalInfo--index-sideTagitem-tHX_g .assets-style-globalInfo--index-iconTag-1o_DK img {
  vertical-align: middle;
  width: 20px;
  height: 20px;
  display: inline-block;
}
.assets-style-globalInfo--index-hiddenBody-5zMMN {
  overflow: hidden;
}
.assets-style-globalInfo--index-showBody-2Cb6h {
  overflow: auto;
}
.assets-style-globalInfo--index-customerModal-qj9Ty {
  overflow: hidden;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .ant-modal-header {
  padding: 14px 24px;
  background: green;
  font-size: 16px;
  font-weight: normal;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .ant-modal-title {
  color: #ffffff;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .ant-modal-close-x {
  width: 50px;
  height: 50px;
  line-height: 50px;
  color: #ffffff;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .ant-modal-body {
  padding: 0;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-customerForm-2jcK4 {
  padding: 20px;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-customerForm-2jcK4 .assets-style-globalInfo--index-iconSelect-3Al1_ {
  width: 100%;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-customerForm-2jcK4 .assets-style-globalInfo--index-iconSelect-3Al1_ .assets-style-globalInfo--index-iconDiv-3Bc4v {
  width: 132px;
  height: 132px;
  line-height: 132px;
  text-align: center;
  border: 1px dashed #D5E6E0;
  display: inline-block;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-customerForm-2jcK4 .assets-style-globalInfo--index-iconSelect-3Al1_ .assets-style-globalInfo--index-iconDiv-3Bc4v .assets-style-globalInfo--index-iconTag-1o_DK {
  display: inline-block;
  border: 1px solid rgba(87, 177, 134, 0.1);
  background-color: rgba(255, 255, 255, 0.3);
  overflow: hidden;
  height: 66px;
  width: 66px;
  border-radius: 50%;
  margin: 5px auto 0;
  box-shadow: 0px 2px 7px 0px rgba(87, 177, 134, 0.8);
  line-height: 60px;
  vertical-align: middle;
  margin-top: -8px;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-customerForm-2jcK4 .assets-style-globalInfo--index-iconSelect-3Al1_ .assets-style-globalInfo--index-iconDiv-3Bc4v .assets-style-globalInfo--index-iconTag-1o_DK img {
  vertical-align: middle;
  width: 32px;
  height: 32px;
  display: inline-block;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-customerForm-2jcK4 .assets-style-globalInfo--index-iconSelect-3Al1_ .assets-style-globalInfo--index-iconBottom-2GY-4 {
  display: inline-block;
  vertical-align: bottom;
  padding: 0 20px;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-customerForm-2jcK4 .assets-style-globalInfo--index-iconSelect-3Al1_ .assets-style-globalInfo--index-iconBottom-2GY-4 .assets-style-globalInfo--index-iconRandom-1To6c {
  margin-right: 20px;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-iconSelectDiv-1G3p4 {
  padding: 20px;
  height: 300px;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-iconSelectDiv-1G3p4 .assets-style-globalInfo--index-iconListDiv-3m_Uj .assets-style-globalInfo--index-logoList-By-uT li {
  height: 80px;
  width: 100px;
  float: left;
  position: relative;
  margin: 2px;
  z-index: 0;
  cursor: pointer;
  text-align: center;
  display: table;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-iconSelectDiv-1G3p4 .assets-style-globalInfo--index-iconListDiv-3m_Uj .assets-style-globalInfo--index-logoList-By-uT li .assets-style-globalInfo--index-logoDivRelative-SouYA {
  display: table-cell;
  vertical-align: middle;
  position: relative;
  height: 80px;
  z-index: 2;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-iconSelectDiv-1G3p4 .assets-style-globalInfo--index-iconListDiv-3m_Uj .assets-style-globalInfo--index-logoList-By-uT li .assets-style-globalInfo--index-logoDivRelative-SouYA .assets-style-globalInfo--index-image-1BfSr {
  width: 40px;
  height: 40px;
  margin-bottom: 0;
}
.assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-iconSelectDiv-1G3p4 .assets-style-globalInfo--index-iconListDiv-3m_Uj .assets-style-globalInfo--index-logoList-By-uT li:hover {
  background: rgba(141, 205, 118, 0.4);
}
.assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-iconSelectDiv-1G3p4 .assets-style-globalInfo--index-iconListDiv-3m_Uj .assets-style-globalInfo--index-logoList-By-uT li.assets-style-globalInfo--index-active-1uqex {
  background: rgba(141, 205, 118, 0.4);
}
.assets-style-globalInfo--index-affairName-Jlu1c :hover {
  text-decoration: underline;
}
.assets-style-globalInfo--index-bodyFixed-2t_yx {
  position: fixed;
  width: 100%;
}
/****************绿色主题开始******************/
.theme-green .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-tagItem-CwUqn:hover {
  background: #E6FFF1;
  cursor: pointer;
}
.theme-green .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-tagItem-CwUqn.assets-style-globalInfo--index-current-23NY- {
  box-shadow: 1px 1px 1px 1px rgba(0, 88, 37, 0.3);
  background: #f2aa18;
}
/**************** 蓝色主题开始*****************/
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 {
  box-shadow: 0 0 10px 0 rgba(35, 145, 230, 0.3);
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1.assets-style-globalInfo--index-showBigList-3Yb0E .assets-style-globalInfo--index-searchButton-t5ire:hover {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-searchLayout-2_F6d {
  background: #fafdff;
  /*i{
        &:hover{
          color:@theme-blue-1;
        }
      }*/
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-toggle-1VNR0 .assets-style-globalInfo--index-sideLogo-EF8XN:hover {
  background: #e6f7ff;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideLeft-3nxHR {
  background: #fafdff;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-tagItem-CwUqn {
  background: #fafdff;
  cursor: pointer;
  box-shadow: 1px 1px 1px 1px rgba(0, 88, 37, 0.3);
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-tagItem-CwUqn:hover {
  background: #e6f7ff;
  cursor: pointer;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-tagItem-CwUqn.assets-style-globalInfo--index-current-23NY- {
  box-shadow: 1px 1px 1px 1px rgba(0, 88, 37, 0.3);
  background: #f2aa18;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-hideTag-3zWwu {
  background: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-addBtnWrap-2m64s {
  background: #fafdff;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-addBtnWrap-2m64s .assets-style-globalInfo--index-rollback-ZpkZ6 {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-addBtnContent-2Z9BA .assets-style-globalInfo--index-addName-1bqw2 {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-sideTagitem-tHX_g {
  background: #f4f5f5;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-sideTagitem-tHX_g:hover {
  background: #D5E6E0;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-emptyTipsDiv-1YSx6:hover .assets-style-globalInfo--index-emptyTips-3MAkZ {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-emptyTipsDiv-1YSx6:hover .assets-style-globalInfo--index-emptyTips-3MAkZ {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse-content {
  background: #F2F3F4;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse .ant-collapse-item.ant-collapse-no-arrow .ant-collapse-header .anticon-star {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse-item-active .ant-collapse-header {
  border-bottom: 2px solid #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse-item-active .assets-style-globalInfo--index-serviceCount-3YngE {
  background: #2391e6;
  border: 1px solid #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceDomainIconDiv-3XrND .assets-style-globalInfo--index-serviceDomainIcon-2AZYr {
  border: 1px solid rgba(35, 145, 230, 0.1);
  background-color: #2391e6;
  box-shadow: 0 2px 7px 0 rgba(35, 145, 230, 0.3);
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceCount-3YngE {
  background: #F0F3F6;
  border: 1px solid #CFD7DE;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw .assets-style-globalInfo--index-serviceIconDiv-2sDNr .assets-style-globalInfo--index-serviceIcon-13dxU {
  border: 1px solid rgba(87, 177, 134, 0.1);
  box-shadow: 0 2px 7px 0 rgba(87, 177, 134, 0.24);
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw:hover {
  background: #a2ceff;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W {
  box-shadow: 0 0 10px 0 rgba(0, 88, 37, 0.1);
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY {
  border-bottom: 1px solid #E1E6E3;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY .assets-style-globalInfo--index-closeIcon-39H_E:hover {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1 {
  color: #1F5BCB;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1 .assets-style-globalInfo--index-tag-32oKP {
  background: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1.assets-style-globalInfo--index-serviceDomain-2srs6:hover .assets-style-globalInfo--index-collectSpan-1xGrI i.assets-style-globalInfo--index-deleteCollect-3w3fI {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li:hover .assets-style-globalInfo--index-fontlist-E4DsU {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .ant-card-meta-title span:hover {
  color: #2391e6;
  text-decoration: underline;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-closeRight-2nOHQ .anticon-star.assets-style-globalInfo--index-deleteCollect-3w3fI {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-mask-22KLT {
  border: 1px solid #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 {
  background: #f3f7f9;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH.ant-anchor-wrapper .assets-style-globalInfo--index-anchorTitle-3xneZ {
  color: #1F5BCB;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH .ant-anchor-ink:before {
  background-color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH .ant-anchor-link-active .ant-anchor-link-title {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH .ant-anchor-ink-ball {
  border: 2px solid #2391e6;
}
.theme-blue .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH a:hover {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-itemDraging-2-A1A {
  background: #D5E6E0;
}
.theme-blue .assets-style-globalInfo--index-sideTagitem-tHX_g {
  background: #D5E6E0;
  border: 1px solid #efefef;
}
.theme-blue .assets-style-globalInfo--index-sideTagitem-tHX_g i {
  color: #98ACA5;
}
.theme-blue .assets-style-globalInfo--index-sideTagitem-tHX_g i:hover {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-sideTagitem-tHX_g .anticon-star {
  color: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-sideTagitem-tHX_g .assets-style-globalInfo--index-iconTag-1o_DK .assets-style-globalInfo--index-iconCon-1NUrz {
  border: 1px solid rgba(87, 177, 134, 0.1);
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 2px 7px 0px rgba(87, 177, 134, 0.24);
}
.theme-blue .assets-style-globalInfo--index-customerModal-qj9Ty .ant-modal-header {
  background: #2391e6;
}
.theme-blue .assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-customerForm-2jcK4 .assets-style-globalInfo--index-iconSelect-3Al1_ .assets-style-globalInfo--index-iconDiv-3Bc4v {
  border: 1px dashed #D5E6E0;
}
.theme-blue .assets-style-globalInfo--index-customerModal-qj9Ty .assets-style-globalInfo--index-customerForm-2jcK4 .assets-style-globalInfo--index-iconSelect-3Al1_ .assets-style-globalInfo--index-iconDiv-3Bc4v .assets-style-globalInfo--index-iconTag-1o_DK {
  border: 1px solid rgba(87, 177, 134, 0.1);
  background-color: rgba(255, 255, 255, 0.3);
  box-shadow: 0px 2px 7px 0px rgba(35, 145, 230, 0.3);
}
/*************** 蓝色主题结束*****************/
/**************** 红色主题开始*****************/
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 {
  box-shadow: 0 0 10px 0 rgba(169, 0, 33, 0.3);
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1.assets-style-globalInfo--index-showBigList-3Yb0E .assets-style-globalInfo--index-searchButton-t5ire:hover {
  color: #9A001E;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-affairName-Jlu1c :hover {
  text-decoration: underline;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-searchLayout-2_F6d {
  background: #fafdff;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-toggle-1VNR0 .assets-style-globalInfo--index-sideLogo-EF8XN:hover {
  background: #fff1f0;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideLeft-3nxHR {
  background: #fafdff;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-tagItem-CwUqn {
  background: #fafdff;
  box-shadow: 1px 1px 1px 1px rgba(0, 88, 37, 0.3);
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-tagItem-CwUqn:hover {
  background: #fff1f0;
  cursor: pointer;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-tagItem-CwUqn.assets-style-globalInfo--index-current-23NY- {
  background: #f2aa18;
  box-shadow: 1px 1px 1px 1px rgba(0, 88, 37, 0.3);
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-sideTag-kTBq0 .assets-style-globalInfo--index-hideTag-3zWwu {
  background: #F63E62;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-addBtnWrap-2m64s {
  background: #fafdff;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-addBtnWrap-2m64s .assets-style-globalInfo--index-rollback-ZpkZ6 {
  color: #9A001E;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-addBtnContent-2Z9BA .assets-style-globalInfo--index-addName-1bqw2 {
  color: #9A001E;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-systemList-3BDpi .assets-style-globalInfo--index-emptyTipsDiv-1YSx6:hover .assets-style-globalInfo--index-emptyTips-3MAkZ {
  color: #9A001E;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-emptyTipsDiv-1YSx6:hover .assets-style-globalInfo--index-emptyTips-3MAkZ {
  color: #9A001E;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse-content {
  background: #F2F3F4;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse .ant-collapse-item.ant-collapse-no-arrow .ant-collapse-header .anticon-star {
  color: #F63E62;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse-item-active .ant-collapse-header {
  border-bottom: 2px solid #9A001E;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .ant-collapse-item-active .assets-style-globalInfo--index-serviceCount-3YngE {
  background: #9A001E;
  border: 1px solid #9A001E;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-serviceList-1NIR_ .assets-style-globalInfo--index-serviceItem-ATtIw:hover {
  background: rgba(255, 71, 72, 0.2);
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W {
  box-shadow: 0 0 10px 0 rgba(169, 0, 33, 0.1);
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY {
  /*border-bottom: 1px solid @theme-red-5;*/
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-titleBar-zNdkY .assets-style-globalInfo--index-closeIcon-39H_E:hover {
  color: #9A001E;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1 {
  color: #9A001E;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1 .assets-style-globalInfo--index-tag-32oKP {
  background: #9A001E;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-type-1UIQ1.assets-style-globalInfo--index-serviceDomain-2srs6:hover .assets-style-globalInfo--index-collectSpan-1xGrI i.assets-style-globalInfo--index-deleteCollect-3w3fI {
  color: #9A001E;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ li:hover .assets-style-globalInfo--index-fontlist-E4DsU {
  color: #F63E62;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .ant-card-meta-title span:hover {
  color: #F63E62;
  text-decoration: underline;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-closeRight-2nOHQ .anticon-star.assets-style-globalInfo--index-deleteCollect-3w3fI {
  color: #F63E62;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-contentBody-157wL .assets-style-globalInfo--index-contentList-1eKzR .assets-style-globalInfo--index-typeItem-2XfwD .assets-style-globalInfo--index-dataList-9bHFl .assets-style-globalInfo--index-ullist-ccSx_ .assets-style-globalInfo--index-mask-22KLT {
  border: 1px solid #F63E62;
  background-color: #fffbfb;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 {
  background: #fffbfb;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH.ant-anchor-wrapper .assets-style-globalInfo--index-anchorTitle-3xneZ {
  color: #9A001E;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH .ant-anchor-ink:before {
  background-color: #F63E62;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH .ant-anchor-link-active .ant-anchor-link-title {
  color: #F63E62;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH .ant-anchor-ink-ball {
  border: 2px solid #F63E62;
}
.theme-red .assets-style-globalInfo--index-portalSidelink-3IxM1 .assets-style-globalInfo--index-moreContent-179_W .assets-style-globalInfo--index-anchorContent-3gLi0 .assets-style-globalInfo--index-anchor-2hRLH a:hover {
  color: #F63E62;
}
.theme-red .assets-style-globalInfo--index-sideTagitem-tHX_g i {
  color: #98ACA5;
}
.theme-red .assets-style-globalInfo--index-sideTagitem-tHX_g i:hover {
  color: #9A001E;
}
.theme-red .assets-style-globalInfo--index-sideTagitem-tHX_g .anticon-star {
  color: #9A001E;
}
.theme-red .assets-style-globalInfo--index-sideTagitem-tHX_g .assets-style-globalInfo--index-iconTag-1o_DK .assets-style-globalInfo--index-iconCon-1NUrz {
  border: 1px solid rgba(169, 0, 33, 0.1);
  background-color: #fffbfb;
  box-shadow: 0px 2px 7px 0px rgba(169, 0, 33, 0.3);
}
/*************** 红色主题结束*****************/
@media (max-width: 1400px) {
  .font-normal .assets-style-globalInfo--index-portalSidelink-3IxM1 {
    margin-left: 0px;
  }
  .font-normal .assets-style-globalInfo--index-portalSidelink-3IxM1.assets-style-globalInfo--index-showBigList-3Yb0E {
    margin-left: 0;
  }
}
@media (max-width: 1540px) {
  .font-large .assets-style-globalInfo--index-portalSidelink-3IxM1 {
    margin-left: 0px;
  }
  .font-large .assets-style-globalInfo--index-portalSidelink-3IxM1.assets-style-globalInfo--index-showBigList-3Yb0E {
    margin-left: 0;
  }
}
@media (max-width: 1750px) {
  .font-extraLarge .assets-style-globalInfo--index-portalSidelink-3IxM1 {
    margin-left: 0px;
  }
  .font-extraLarge .assets-style-globalInfo--index-portalSidelink-3IxM1.assets-style-globalInfo--index-showBigList-3Yb0E {
    margin-left: 0;
  }
}
.assets-style-globalInfo--index-sideLink-3SxNc {
  background: #f2f3f4;
  top: 150px;
  left: 0;
  z-index: 100;
  position: absolute;
  border: 1px solid #e1e6e3;
  box-shadow: 0 0 10px 0 rgba(0, 88, 37, 0.1);
  border-bottom-right-radius: 10px;
}
.assets-style-globalInfo--index-sideLink-3SxNc .ant-tabs .ant-tabs-left-bar {
  width: 40px;
}
.assets-style-globalInfo--index-sideLink-3SxNc .ant-tabs .ant-tabs-left-bar .ant-tabs-tab,
.assets-style-globalInfo--index-sideLink-3SxNc .ant-tabs .ant-tabs-right-bar .ant-tabs-tab {
  padding: 8px 10px ;
}
.assets-style-globalInfo--index-sideLink-3SxNc .ant-tabs-tab-prev,
.assets-style-globalInfo--index-sideLink-3SxNc .ant-tabs-tab-next,
.assets-style-globalInfo--index-sideLink-3SxNc .ant-tabs-tab {
  background-color: white;
  border-radius: 0 10px 10px 0;
}
.assets-style-globalBaseInfoAudit--index-main-1f9sy {
  background-color: #fff !important;
}
.assets-style-globalBaseInfoAudit--index-main-1f9sy .assets-style-globalBaseInfoAudit--index-avatarPadding-rUoJ2 {
  padding: 8px 2px 16px 8px;
}
.assets-style-globalBaseInfoAudit--index-main-1f9sy .assets-style-globalBaseInfoAudit--index-cardListPadding-tnx3d {
  padding: 8px 8px 16px 16px;
}
.assets-style-globalBaseInfoAudit--index-main-1f9sy .assets-style-globalBaseInfoAudit--index-tableSider-3_nCb {
  margin-right: 22px;
}
.assets-style-globalBaseInfoAudit--index-main-1f9sy .assets-style-globalBaseInfoAudit--index-cardSider-3rZCb {
  margin-right: 4px;
}
.assets-style-globalBaseInfoAudit--index-main-1f9sy .assets-style-globalBaseInfoAudit--index-image-2JqMD {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 0px;
  margin-top: 5px;
}
.assets-style-globalBaseInfoAudit--index-main-1f9sy .assets-style-globalBaseInfoAudit--index-formItem-1ZZdn {
  margin-bottom: 8px;
  margin-right: 8px;
  width: 97%;
}
.assets-style-globalBaseInfoAudit--index-main-1f9sy .assets-style-globalBaseInfoAudit--index-formItem-1ZZdn .ant-form-item-label {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.assets-style-globalBaseInfoAudit--index-main-1f9sy .assets-style-globalBaseInfoAudit--index-formItem-1ZZdn .ant-form-item {
  margin-right: 0;
}
.assets-style-globalBaseInfoAudit--index-main-1f9sy .assets-style-globalBaseInfoAudit--index-formItem-1ZZdn .ant-form-item-children {
  display: flex;
}
.assets-style-globalBaseInfoAudit--index-main-1f9sy .assets-style-globalBaseInfoAudit--index-settingIcon-7kcpP {
  font-size: 16px;
  color: #b5bdc8;
  cursor: pointer;
}
.assets-style-globalBaseInfoAudit--index-main-1f9sy .assets-style-globalBaseInfoAudit--index-settingIcon-7kcpP .assets-style-globalBaseInfoAudit--index-tip-2D1LV {
  font-size: 14px;
  margin-left: 4px;
}
.assets-style-globalBaseInfoAudit--index-main-1f9sy .ant-layout-header {
  background-color: #fff !important;
}
.assets-style-globalBaseInfoAudit--index-cardContainer-2Rs1L {
  display: inline-block;
}
.assets-style-globalBaseInfoAudit--index-cardContainer-2Rs1L .ant-card {
  color: #e8e8e8 !important;
}
.assets-style-globalBaseInfoAudit--index-rightCard-12vv6 {
  margin-left: 16px;
}
.assets-style-globalBaseInfoAudit--index-searchLayout-1v_as {
  height: 100%;
}
.assets-style-globalBaseInfoAudit--index-searchLayout-1v_as .assets-style-globalBaseInfoAudit--index-initSearch-3immZ {
  background-color: #fff;
  display: flex;
  justify-content: center;
}
.assets-style-globalBaseInfoAudit--index-searchLayout-1v_as .assets-style-globalBaseInfoAudit--index-initSearch-3immZ .assets-style-globalBaseInfoAudit--index-area-2u-8L {
  padding-top: 15%;
  text-align: center;
}
.assets-style-globalBaseInfoAudit--index-searchLayout-1v_as .assets-style-globalBaseInfoAudit--index-initSearch-3immZ .assets-style-globalBaseInfoAudit--index-area-2u-8L .assets-style-globalBaseInfoAudit--index-titleArea-3hfXX {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.assets-style-globalBaseInfoAudit--index-searchLayout-1v_as .assets-style-globalBaseInfoAudit--index-initSearch-3immZ .assets-style-globalBaseInfoAudit--index-area-2u-8L .assets-style-globalBaseInfoAudit--index-titleArea-3hfXX img {
  width: 78px;
  height: 108px;
}
.assets-style-globalBaseInfoAudit--index-searchLayout-1v_as .assets-style-globalBaseInfoAudit--index-initSearch-3immZ .assets-style-globalBaseInfoAudit--index-area-2u-8L .assets-style-globalBaseInfoAudit--index-titleArea-3hfXX span {
  font-size: 34px;
  font-weight: bold;
  color: #108ee9;
}
.assets-style-globalBaseInfoAudit--index-searchLayout-1v_as .assets-style-globalBaseInfoAudit--index-initSearch-3immZ .assets-style-globalBaseInfoAudit--index-area-2u-8L .assets-style-globalBaseInfoAudit--index-searchArea-13Pty {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.assets-style-globalBaseInfoAudit--index-searchLayout-1v_as .assets-style-globalBaseInfoAudit--index-initSearch-3immZ .assets-style-globalBaseInfoAudit--index-area-2u-8L .assets-style-globalBaseInfoAudit--index-searchArea-13Pty .assets-style-globalBaseInfoAudit--index-searchBtn-23lTU {
  height: 42px;
  padding: 0 15px;
  font-size: 16px;
}
.assets-style-globalBaseInfoAudit--index-searchLayout-1v_as .assets-style-globalBaseInfoAudit--index-initSearch-3immZ .assets-style-globalBaseInfoAudit--index-area-2u-8L .assets-style-globalBaseInfoAudit--index-searchArea-13Pty .assets-style-globalBaseInfoAudit--index-searchInput-1ciL8 {
  padding: 20px 10px;
  font-size: 16px;
}
.assets-style-globalBaseInfoAudit--index-searchLayout-1v_as .assets-style-globalBaseInfoAudit--index-resultSearch-399G0 {
  width: 100%;
  background-color: #fff;
  display: block;
}
.assets-style-globalBaseInfoAudit--index-searchLayout-1v_as .assets-style-globalBaseInfoAudit--index-resultSearch-399G0 .assets-style-globalBaseInfoAudit--index-area-2u-8L .assets-style-globalBaseInfoAudit--index-titleArea-3hfXX {
  display: none;
}
.assets-style-globalBaseInfoAudit--index-searchLayout-1v_as .assets-style-globalBaseInfoAudit--index-resultSearch-399G0 .assets-style-globalBaseInfoAudit--index-area-2u-8L .assets-style-globalBaseInfoAudit--index-searchArea-13Pty .assets-style-globalBaseInfoAudit--index-searchInput-1ciL8 {
  width: 300px;
}
.assets-style-globalBaseInfoAudit--index-avatarTooltip-3W7Qf .assets-style-globalBaseInfoAudit--index-padding-3ns3F {
  padding-left: 28px;
}
.assets-style-globalBaseInfoAudit--index-avatarTooltip-3W7Qf .assets-style-globalBaseInfoAudit--index-info-3Iepw {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}
.assets-style-globalBaseInfoAudit--index-avatarTooltip-3W7Qf .assets-style-globalBaseInfoAudit--index-width_226-1hPUJ {
  width: 226px;
}
.assets-style-globalBaseInfoAudit--index-avatarTooltip-3W7Qf .assets-style-globalBaseInfoAudit--index-width_198-2E9xk {
  width: 198px;
}
.assets-style-globalBaseInfoAudit--index-avatarTooltip-3W7Qf .ant-tooltip-arrow {
  border-right-color: #fff !important;
}
.assets-style-globalBaseInfoAudit--index-avatarTooltip-3W7Qf .ant-tooltip-inner {
  background-color: #fff;
  padding: 18px 12px;
}
.assets-style-globalBaseInfoAudit--index-avatarTooltip-3W7Qf .ant-card-body {
  padding: 0;
}
.assets-style-globalBaseInfoAudit--index-searchPlan-2vhuY {
  display: flex;
  line-height: 30px;
  font-size: 14px;
}
.assets-style-globalBaseInfoAudit--index-searchPlan-2vhuY .ant-tag {
  line-height: 30px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 4px;
}
.assets-style-globalBaseInfoAudit--index-searchPlan-2vhuY .assets-style-globalBaseInfoAudit--index-title-3G3pM {
  width: 80px;
}
.assets-style-globalBaseInfoAudit--index-searchPlan-2vhuY .assets-style-globalBaseInfoAudit--index-tags-1MlSs {
  text-align: left;
}
.assets-style-globalBaseInfoAudit--index-searchTypeSelector-2es2y .ant-select-selection__rendered {
  margin-left: 0;
}
.assets-style-globalBaseInfoAudit--index-planSearchForm-2_CJe .ant-form-item-no-colon::after {
  display: none;
}
.assets-style-globalBaseInfoAudit--index-planSearchForm-2_CJe .ant-select-selection__rendered {
  margin-left: 11px;
  color: rgba(0, 0, 0, 0.45);
  display: flex;
}
.assets-style-globalBaseInfoAudit--index-batchUpdateUserRow-1Ir8u .assets-style-globalBaseInfoAudit--index-label-31vFV {
  text-align: right;
  padding-right: 8px;
}
.assets-style-globalBaseInfoAudit--index-batchUpdateUserRow-1Ir8u .assets-style-globalBaseInfoAudit--index-button-3_zII {
  padding-left: 8px;
}
.assets-style-selector-multiTreeSelector--index-multipleSelector-8JFU3 .ant-select-selection--multiple {
  min-height: 30px;
  max-height: 30px;
  overflow: hidden;
}
.assets-style-selector-multiTreeSelector--index-multipleSelector-8JFU3 .ant-select-selection--multiple .ant-select-selection__rendered {
  white-space: nowrap;
  overflow: hidden;
}
.assets-style-selector-multiTreeSelector--index-multipleSelector-8JFU3 .ant-select-selection--multiple .ant-select-selection__choice,
.assets-style-selector-multiTreeSelector--index-multipleSelector-8JFU3 .ant-select-selection--multiple .ant-select-search--inline {
  float: none;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
}
.assets-style-selector-multiTreeSelector--index-multipleSelector-8JFU3 .ant-select-selection--multiple {
  cursor: pointer;
}
.assets-style-selector-multiTreeSelector--index-treeSelector-fx6r7 .ant-select-tree li .ant-select-tree-node-content-wrapper {
  overflow-x: clip;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.assets-style-selector-departmentMultiTreeSelector--index-multipleSelector-1GtLc .ant-select-selection--multiple {
  min-height: 30px;
  max-height: 30px;
  overflow: hidden;
}
.assets-style-selector-departmentMultiTreeSelector--index-multipleSelector-1GtLc .ant-select-selection--multiple .ant-select-selection__rendered {
  white-space: nowrap;
  overflow: hidden;
}
.assets-style-selector-departmentMultiTreeSelector--index-multipleSelector-1GtLc .ant-select-selection--multiple .ant-select-selection__choice,
.assets-style-selector-departmentMultiTreeSelector--index-multipleSelector-1GtLc .ant-select-selection--multiple .ant-select-search--inline {
  float: none;
  display: inline-block;
  vertical-align: top;
  margin-top: 2px;
}
.assets-style-selector-departmentMultiTreeSelector--index-multipleSelector-1GtLc .ant-select-selection--multiple {
  cursor: pointer;
}
.assets-style-selector-departmentMultiTreeSelector--index-treeSelector-2AgQy .ant-select-tree li .ant-select-tree-node-content-wrapper {
  overflow-x: clip;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.assets-style-globalOtherInfoAudit--index-main-8NLx2 {
  background-color: #fff !important;
}
.assets-style-globalOtherInfoAudit--index-main-8NLx2 .assets-style-globalOtherInfoAudit--index-avatarPadding-2LYDu {
  padding: 8px 2px 16px 8px;
}
.assets-style-globalOtherInfoAudit--index-main-8NLx2 .assets-style-globalOtherInfoAudit--index-cardListPadding-A7QHD {
  padding: 8px 8px 16px 16px;
}
.assets-style-globalOtherInfoAudit--index-main-8NLx2 .assets-style-globalOtherInfoAudit--index-tableSider-3e1EQ {
  margin-right: 22px;
}
.assets-style-globalOtherInfoAudit--index-main-8NLx2 .assets-style-globalOtherInfoAudit--index-cardSider-ieXAR {
  margin-right: 4px;
}
.assets-style-globalOtherInfoAudit--index-main-8NLx2 .assets-style-globalOtherInfoAudit--index-image-1WO8Y {
  width: 20px;
  height: 20px;
  cursor: pointer;
  position: absolute;
  right: 0px;
  margin-top: 5px;
}
.assets-style-globalOtherInfoAudit--index-main-8NLx2 .assets-style-globalOtherInfoAudit--index-formItem-3Yhfs {
  margin-bottom: 8px;
  margin-right: 8px;
  width: 97%;
}
.assets-style-globalOtherInfoAudit--index-main-8NLx2 .assets-style-globalOtherInfoAudit--index-formItem-3Yhfs .ant-form-item-label {
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
}
.assets-style-globalOtherInfoAudit--index-main-8NLx2 .assets-style-globalOtherInfoAudit--index-formItem-3Yhfs .ant-form-item {
  margin-right: 0;
}
.assets-style-globalOtherInfoAudit--index-main-8NLx2 .assets-style-globalOtherInfoAudit--index-formItem-3Yhfs .ant-form-item-children {
  display: flex;
}
.assets-style-globalOtherInfoAudit--index-main-8NLx2 .assets-style-globalOtherInfoAudit--index-settingIcon-2w94r {
  font-size: 16px;
  color: #b5bdc8;
  cursor: pointer;
}
.assets-style-globalOtherInfoAudit--index-main-8NLx2 .assets-style-globalOtherInfoAudit--index-settingIcon-2w94r .assets-style-globalOtherInfoAudit--index-tip-3Nwd5 {
  font-size: 14px;
  margin-left: 4px;
}
.assets-style-globalOtherInfoAudit--index-main-8NLx2 .ant-layout-header {
  background-color: #fff !important;
}
.assets-style-globalOtherInfoAudit--index-cardContainer-_0wo7 {
  display: inline-block;
}
.assets-style-globalOtherInfoAudit--index-cardContainer-_0wo7 .ant-card {
  color: #e8e8e8 !important;
}
.assets-style-globalOtherInfoAudit--index-rightCard-1ZOMl {
  margin-left: 16px;
}
.assets-style-globalOtherInfoAudit--index-searchLayout-1z_jk {
  height: 100%;
}
.assets-style-globalOtherInfoAudit--index-searchLayout-1z_jk .assets-style-globalOtherInfoAudit--index-initSearch-144_q {
  background-color: #fff;
  display: flex;
  justify-content: center;
}
.assets-style-globalOtherInfoAudit--index-searchLayout-1z_jk .assets-style-globalOtherInfoAudit--index-initSearch-144_q .assets-style-globalOtherInfoAudit--index-area-P0NBK {
  padding-top: 15%;
  text-align: center;
}
.assets-style-globalOtherInfoAudit--index-searchLayout-1z_jk .assets-style-globalOtherInfoAudit--index-initSearch-144_q .assets-style-globalOtherInfoAudit--index-area-P0NBK .assets-style-globalOtherInfoAudit--index-titleArea-1hPAV {
  display: flex;
  align-items: flex-end;
  justify-content: center;
}
.assets-style-globalOtherInfoAudit--index-searchLayout-1z_jk .assets-style-globalOtherInfoAudit--index-initSearch-144_q .assets-style-globalOtherInfoAudit--index-area-P0NBK .assets-style-globalOtherInfoAudit--index-titleArea-1hPAV img {
  width: 78px;
  height: 108px;
}
.assets-style-globalOtherInfoAudit--index-searchLayout-1z_jk .assets-style-globalOtherInfoAudit--index-initSearch-144_q .assets-style-globalOtherInfoAudit--index-area-P0NBK .assets-style-globalOtherInfoAudit--index-titleArea-1hPAV span {
  font-size: 34px;
  font-weight: bold;
  color: #108ee9;
}
.assets-style-globalOtherInfoAudit--index-searchLayout-1z_jk .assets-style-globalOtherInfoAudit--index-initSearch-144_q .assets-style-globalOtherInfoAudit--index-area-P0NBK .assets-style-globalOtherInfoAudit--index-searchArea-a20kL {
  display: flex;
  justify-content: center;
  margin-top: 15px;
}
.assets-style-globalOtherInfoAudit--index-searchLayout-1z_jk .assets-style-globalOtherInfoAudit--index-initSearch-144_q .assets-style-globalOtherInfoAudit--index-area-P0NBK .assets-style-globalOtherInfoAudit--index-searchArea-a20kL .assets-style-globalOtherInfoAudit--index-searchBtn-2xxxg {
  height: 42px;
  padding: 0 15px;
  font-size: 16px;
}
.assets-style-globalOtherInfoAudit--index-searchLayout-1z_jk .assets-style-globalOtherInfoAudit--index-initSearch-144_q .assets-style-globalOtherInfoAudit--index-area-P0NBK .assets-style-globalOtherInfoAudit--index-searchArea-a20kL .assets-style-globalOtherInfoAudit--index-searchInput-1Klyt {
  padding: 20px 10px;
  font-size: 16px;
}
.assets-style-globalOtherInfoAudit--index-searchLayout-1z_jk .assets-style-globalOtherInfoAudit--index-resultSearch-ekHNA {
  width: 100%;
  background-color: #fff;
  display: block;
}
.assets-style-globalOtherInfoAudit--index-searchLayout-1z_jk .assets-style-globalOtherInfoAudit--index-resultSearch-ekHNA .assets-style-globalOtherInfoAudit--index-area-P0NBK .assets-style-globalOtherInfoAudit--index-titleArea-1hPAV {
  display: none;
}
.assets-style-globalOtherInfoAudit--index-searchLayout-1z_jk .assets-style-globalOtherInfoAudit--index-resultSearch-ekHNA .assets-style-globalOtherInfoAudit--index-area-P0NBK .assets-style-globalOtherInfoAudit--index-searchArea-a20kL .assets-style-globalOtherInfoAudit--index-searchInput-1Klyt {
  width: 300px;
}
.assets-style-globalOtherInfoAudit--index-avatarTooltip-29OYw .assets-style-globalOtherInfoAudit--index-padding-21Efc {
  padding-left: 28px;
}
.assets-style-globalOtherInfoAudit--index-avatarTooltip-29OYw .assets-style-globalOtherInfoAudit--index-info-17Rjl {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
}
.assets-style-globalOtherInfoAudit--index-avatarTooltip-29OYw .assets-style-globalOtherInfoAudit--index-width_226-wbzwB {
  width: 226px;
}
.assets-style-globalOtherInfoAudit--index-avatarTooltip-29OYw .assets-style-globalOtherInfoAudit--index-width_198-2YbBx {
  width: 198px;
}
.assets-style-globalOtherInfoAudit--index-avatarTooltip-29OYw .ant-tooltip-arrow {
  border-right-color: #fff !important;
}
.assets-style-globalOtherInfoAudit--index-avatarTooltip-29OYw .ant-tooltip-inner {
  background-color: #fff;
  padding: 18px 12px;
}
.assets-style-globalOtherInfoAudit--index-avatarTooltip-29OYw .ant-card-body {
  padding: 0;
}
.assets-style-globalOtherInfoAudit--index-searchPlan-3ckIM {
  display: flex;
  line-height: 30px;
  font-size: 14px;
}
.assets-style-globalOtherInfoAudit--index-searchPlan-3ckIM .ant-tag {
  line-height: 30px;
  font-size: 14px;
  cursor: pointer;
  margin-bottom: 4px;
}
.assets-style-globalOtherInfoAudit--index-searchPlan-3ckIM .assets-style-globalOtherInfoAudit--index-title-1UtGn {
  width: 80px;
}
.assets-style-globalOtherInfoAudit--index-searchPlan-3ckIM .assets-style-globalOtherInfoAudit--index-tags-paAvo {
  text-align: left;
}
.assets-style-globalOtherInfoAudit--index-searchTypeSelector-todwr .ant-select-selection__rendered {
  margin-left: 0;
}
.assets-style-globalOtherInfoAudit--index-planSearchForm-24m68 .ant-form-item-no-colon::after {
  display: none;
}
.assets-style-globalOtherInfoAudit--index-planSearchForm-24m68 .ant-select-selection__rendered {
  margin-left: 11px;
  color: rgba(0, 0, 0, 0.45);
  display: flex;
}
.assets-style-globalOtherInfoAudit--index-batchUpdateUserRow-IjB7K .assets-style-globalOtherInfoAudit--index-label-3Gl-r {
  text-align: right;
  padding-right: 8px;
}
.assets-style-globalOtherInfoAudit--index-batchUpdateUserRow-IjB7K .assets-style-globalOtherInfoAudit--index-button-3QFW_ {
  padding-left: 8px;
}
.assets-style-personalCenter--index-main-1m_nX {
  height: 100%;
}
.assets-style-personalCenter--index-main-1m_nX .ant-layout-sider {
  background-color: #EFF3F6;
}
.assets-style-personalCenter--index-main-1m_nX .ant-layout-content {
  padding: 0px 24px 12px 6px;
  background-color: #f0f3f5;
}
.assets-style-personalCenter--index-main-1m_nX .assets-style-personalCenter--index-sider-3To8V {
  margin: 12px 0px 12px 32px;
  background-color: #fff;
}
/**
 * Created by Administrator on 2020/4/11.
 */
.assets-style-noticeHeader--index-logo-3JhuF {
  height: 64px;
  line-height: 64px;
  overflow: hidden;
  text-align: center;
  width: 256px;
}
.assets-style-noticeHeader--index-logo-3JhuF .assets-style-noticeHeader--index-logoExpanded-5Pgj7 {
  height: 43px;
}
.assets-style-noticeHeader--index-logo-3JhuF .assets-style-noticeHeader--index-logoCollapsed-ZAqk2 {
  width: 44px;
  height: 43px;
}
.assets-style-personalCenter--sider-info-DWTT0 {
  text-align: center;
}
.assets-style-personalCenter--sider-info-DWTT0 .assets-style-personalCenter--sider-title-2rRQt {
  font-size: 16px;
  font-weight: bold;
  line-height: 48px;
}
.assets-style-personalCenter--sider-info-DWTT0 .assets-style-personalCenter--sider-name-1ArJx {
  font-size: 16px;
  font-weight: bold;
}
.assets-style-personalCenter--sider-info-DWTT0 .assets-style-personalCenter--sider-baseInfo-iijZL {
  margin: 8px 0px 24px;
  line-height: 16px;
}
.assets-style-personalCenter--sider-info-DWTT0 .assets-style-personalCenter--sider-baseInfo-iijZL > div {
  display: inline-block;
  width: 112px;
  color: rgba(0, 0, 0, 0.65);
}
.assets-style-personalCenter--sider-info-DWTT0 .assets-style-personalCenter--sider-baseInfo-iijZL .assets-style-personalCenter--sider-staffId-25PPu {
  border-right: solid 2px rgba(0, 0, 0, 0.25);
  text-align: right;
  padding-right: 8px;
}
.assets-style-personalCenter--sider-info-DWTT0 .assets-style-personalCenter--sider-baseInfo-iijZL .assets-style-personalCenter--sider-department-3kf7o {
  text-align: left;
  padding-left: 8px;
}
.assets-style-personalCenter--data-main-3ybUL .ant-row {
  margin: 0 !important;
}
.assets-style-personalCenter--data-main-3ybUL .ant-row .ant-col {
  margin-top: 12px;
}
.assets-style-personalCenter--data-main-3ybUL .ant-card {
  width: 100%;
}
.assets-style-personalCenter--data-main-3ybUL .ant-card-body {
  padding: 16px 24px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-tip-2GxXe {
  text-align: right;
  margin-bottom: 12px;
  color: rgba(0, 0, 0, 0.45);
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O {
  display: flex;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O .assets-style-personalCenter--data-total-1HtGX {
  width: 120px;
  height: 100%;
  display: flex;
  align-items: center;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O .assets-style-personalCenter--data-total-1HtGX .assets-style-personalCenter--data-background-1lagR {
  width: 94px;
  height: 94px;
  text-align: center;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O .assets-style-personalCenter--data-total-1HtGX .assets-style-personalCenter--data-background-1lagR .assets-style-personalCenter--data-num-whd9r {
  font-size: 32px;
  line-height: 32px;
  margin-top: 9px;
  color: #1890FF;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O .assets-style-personalCenter--data-total-1HtGX .assets-style-personalCenter--data-background-1lagR .assets-style-personalCenter--data-unit-2GErF {
  color: #60609A;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O .assets-style-personalCenter--data-detail-2abIL {
  width: calc(100% - 120px);
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-container-10roZ {
  display: flex;
  align-items: center;
  height: 100%;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-container-10roZ > div {
  width: 100%;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-container-10roZ > div > div {
  padding-left: 16px;
  padding-right: 8px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-container-10roZ > div > div > span {
  line-height: 24px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-container-10roZ > div > div:not(:last-child) {
  margin-bottom: 4px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-num-whd9r {
  font-size: 24px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-unit-2GErF {
  font-size: 14px;
  margin-left: 12px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-teachWorkload-1SCeL .assets-style-personalCenter--data-count-1Qi1O .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-year-1PYzB {
  float: right;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-salary-168q7 .assets-style-personalCenter--data-month-2pds8 {
  font-weight: bold;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-salary-168q7 .assets-style-personalCenter--data-month-2pds8 img {
  margin-left: 8px;
  cursor: pointer;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-salary-168q7 .assets-style-personalCenter--data-detail-2abIL {
  display: flex;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-salary-168q7 .assets-style-personalCenter--data-detail-2abIL .ant-btn {
  padding: 6px 32px;
  height: 32px;
  width: 100%;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-salary-168q7 .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-currentMonth-3wT6l {
  width: calc(100% - 200px);
  margin-top: 16px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-salary-168q7 .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-currentMonth-3wT6l .assets-style-personalCenter--data-num-whd9r {
  font-size: 40px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-salary-168q7 .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-currentMonth-3wT6l .assets-style-personalCenter--data-arraor-1xd_t {
  margin-top: -8px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-salary-168q7 .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-otherMonth-2dLSj {
  width: 200px;
  padding-right: 24px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-salary-168q7 .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-otherMonth-2dLSj > div {
  height: 32px;
  line-height: 32px;
  background: #ffffff;
  font-size: 14px;
  margin: 16px 0;
  padding: 0 12px;
  font-weight: bold;
  box-shadow: 0px 4px 7px 0px rgba(168, 179, 197, 0.2);
  border-radius: 15px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-salary-168q7 .assets-style-personalCenter--data-detail-2abIL .assets-style-personalCenter--data-otherMonth-2dLSj > div:first-child {
  color: #1890FF;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-salary-168q7 .assets-style-personalCenter--data-reason-11qUl {
  margin-top: 12px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-scientificFunding-14OK2 {
  display: flex;
  height: 100%;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-scientificFunding-14OK2 .assets-style-personalCenter--data-chart-1FeCc {
  width: 250px;
  height: 100%;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-scientificFunding-14OK2 .assets-style-personalCenter--data-list-3hW-b {
  width: calc(100% - 250px);
  height: 100%;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-scientificFunding-14OK2 .assets-style-personalCenter--data-list-3hW-b .assets-style-personalCenter--data-item-26Hd3 {
  background-color: #f1f8ff;
  padding: 8px 8px 8px 12px;
  width: calc(100% - 8px);
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-scientificFunding-14OK2 .assets-style-personalCenter--data-list-3hW-b .assets-style-personalCenter--data-item-26Hd3:not(:last-child) {
  margin-bottom: 12px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-scientificFunding-14OK2 .assets-style-personalCenter--data-list-3hW-b .assets-style-personalCenter--data-item-26Hd3 .assets-style-personalCenter--data-info-_5L7s {
  display: flex;
  align-items: flex-end;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-scientificFunding-14OK2 .assets-style-personalCenter--data-list-3hW-b .assets-style-personalCenter--data-item-26Hd3 .assets-style-personalCenter--data-info-_5L7s .assets-style-personalCenter--data-num-whd9r {
  font-size: 24px;
  line-height: 24px;
  font-weight: bold;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-scientificFunding-14OK2 .assets-style-personalCenter--data-list-3hW-b .assets-style-personalCenter--data-item-26Hd3 .assets-style-personalCenter--data-info-_5L7s .assets-style-personalCenter--data-unit-2GErF {
  font-size: 14px;
  line-height: 18px;
  margin-left: 8px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-scientificFunding-14OK2 .assets-style-personalCenter--data-list-3hW-b .assets-style-personalCenter--data-selected-3EhgO {
  box-shadow: 0 4px 8px rgba(0, 0, 0, 0.15);
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-guideStudent-1N5Wg .ant-card-body {
  padding: 0 24px;
}
.assets-style-personalCenter--data-main-3ybUL .assets-style-personalCenter--data-guideStudent-1N5Wg .ant-col {
  margin-top: 0;
}
.assets-style-personalCenter--file-container-3K5DC {
  padding-top: 12px;
  height: 100%;
}
.assets-style-personalCenter--file-container-3K5DC .assets-style-personalCenter--file-main-2Zpr5 {
  display: flex;
  height: 100%;
}
.assets-style-personalCenter--file-container-3K5DC .assets-style-personalCenter--file-main-2Zpr5 .assets-style-personalCenter--file-info-2iIUX {
  width: calc(100% - 120px);
}
.assets-style-personalCenter--file-container-3K5DC .assets-style-personalCenter--file-main-2Zpr5 .assets-style-personalCenter--file-navigator-1iwHk {
  width: 120px;
}
.assets-style-personalCenter--file-detailTitle-1mr77 {
  font-size: 16px;
  font-weight: bold;
  font-color: "rgba(0, 0, 0, 0.85)";
  margin-top: 12px;
}
.assets-style-personalCenter--file-subjectTitle-6jrUG {
  font-size: 16px;
  text-align: center;
}
.assets-style-personalCenter--file-scientificResearch-18myO .assets-style-personalCenter--file-chart-3T4PC {
  height: 200px;
}
.assets-style-personalCenter--file-scientificResearch-18myO .assets-style-personalCenter--file-guideStudent-1Kn92 .assets-style-personalCenter--file-chart-3T4PC {
  height: calc(100% - 36px);
}
.assets-style-personalCenter--file-scientificResearch-18myO .assets-style-personalCenter--file-guideStudent-1Kn92 .assets-style-personalCenter--file-legend-2XXHf {
  display: flex;
  justify-content: center;
  align-items: center;
  line-height: 36px;
}
.assets-style-personalCenter--file-scientificResearch-18myO .assets-style-personalCenter--file-guideStudent-1Kn92 .assets-style-personalCenter--file-legend-2XXHf .assets-style-personalCenter--file-circle-3DiFX {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  margin-right: 4px;
}
.assets-style-personalCenter--file-scientificResearch-18myO .assets-style-personalCenter--file-guideStudent-1Kn92 .assets-style-personalCenter--file-legend-2XXHf .assets-style-personalCenter--file-circle-3DiFX > div {
  width: 10px;
  height: 10px;
  background: #fff;
  border-radius: 50%;
  position: relative;
  top: 3px;
  left: 3px;
}
.assets-style-personalCenter--file-scientificResearch-18myO .assets-style-personalCenter--file-guideStudent-1Kn92 .assets-style-personalCenter--file-legend-2XXHf span {
  color: rgba(0, 0, 0, 0.85);
}
.assets-style-personalCenter--file-salary-3tJJi .assets-style-personalCenter--file-chart-3T4PC {
  height: 200px;
}
.assets-style-personalCenter--file-salary-3tJJi .ant-calendar-picker:hover .ant-calendar-picker-clear {
  display: none;
}
.assets-style-personalCenter--file-training-10lp5 .ant-tabs-bar {
  margin-bottom: 12px !important;
}
.assets-style-personalCenter--file-training-10lp5 .assets-style-personalCenter--file-chart-3T4PC {
  height: 200px;
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a {
  background-color: #ffffff;
  padding: 8px 16px;
  min-height: 107.5px;
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a .assets-style-personalCenter--grow-title-2_f6T {
  font-size: 16px;
  font-weight: bold;
  font-family: '\5FAE\8F6F\96C5\9ED1';
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a .assets-style-personalCenter--grow-dateFont-1PbUy {
  font-weight: bold;
  font-family: '\5FAE\8F6F\96C5\9ED1';
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a .assets-style-personalCenter--grow-gap-1YKuu {
  margin: 7px 0 0 4px;
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a .assets-style-personalCenter--grow-gap1-quMXY {
  margin: 12px 0 12px 4px;
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a .assets-style-personalCenter--grow-headerChildDiv-3FBRE {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  word-break: break-all;
  padding-right: 12px;
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a .assets-style-personalCenter--grow-bodyChildDiv-2k4vY {
  text-overflow: ellipsis;
  overflow: hidden;
  white-space: nowrap;
  word-break: break-all;
  padding-right: 12px;
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a .ant-steps-item {
  margin: 8px 0;
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a .assets-style-personalCenter--grow-stepStyle-3OWua .ant-steps-item-content {
  min-height: 52px;
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a .assets-style-personalCenter--grow-stepStyle-3OWua .ant-steps-item-title {
  height: 24px;
  font-size: 16px;
  font-weight: bold;
  margin-bottom: 8px;
  font-family: '\5FAE\8F6F\96C5\9ED1';
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a .assets-style-personalCenter--grow-stepStyle-3OWua .ant-steps-item-icon {
  border-color: #D9D9D9;
  width: 14px;
  height: 14px;
  line-height: 14px;
  margin: 5px 16px 5px 5px;
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a .assets-style-personalCenter--grow-stepStyle-3OWua .ant-steps-icon {
  display: none;
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a .assets-style-personalCenter--grow-stepStyle-3OWua .ant-steps-item-tail {
  left: 11px !important;
  padding: 21px 0 6px !important;
}
.assets-style-personalCenter--grow-contentDiv-Sdj5a .assets-style-personalCenter--grow-stepStyle-3OWua .ant-steps-item-tail::after {
  border: dotted 1px #D9D9D9;
  background-color: #FFFFFF !important;
  height: calc(100% + 17px) !important;
}
.assets-style-personalCenter--grow-anchorWrap-2kRlQ {
  background-color: rgba(255, 255, 255, 0.5) !important;
}
.assets-style-entryFill--entryHome-boxShadow-2_Y8U:hover {
  box-shadow: #A9A9A9 7px 9px 10px;
}
.assets-style-home--simpleHome-main-2w3ry {
  min-height: 100%;
  padding: 18px;
}
.assets-style-home--simpleHome-user-_0cmA {
  display: flex;
}
.assets-style-home--simpleHome-user-_0cmA .assets-style-home--simpleHome-userInfo-ae5DR {
  margin-left: 24px;
}
.assets-style-home--simpleHome-user-_0cmA .assets-style-home--simpleHome-userInfo-ae5DR > span:nth-child(1) {
  line-height: 48px;
  font-weight: bold;
  font-size: 20px;
}
.assets-style-home--simpleHome-title-1cdwm :nth-child(1) {
  position: relative;
  display: inline-block;
  padding-top: 24px;
  font-size: 16px;
  font-weight: bold;
}
.assets-style-home--simpleHome-title-1cdwm :nth-child(2) {
  margin-top: 8px;
  height: 2px;
  width: 76px;
  margin-left: -4px;
}
.assets-style-home--simpleHome-card-13QBk .assets-style-home--simpleHome-category-2DCen {
  margin-top: 16px;
  margin-left: -8px;
  margin-bottom: 8px;
}
.assets-style-home--simpleHome-card-13QBk .assets-style-home--simpleHome-photo-1rmay {
  margin-bottom: 8px;
  width: 66px;
  height: 66px;
}
.assets-style-home--simpleHome-card-13QBk .assets-style-home--simpleHome-title-1cdwm {
  color: rgba(0, 0, 0, 0.65);
}
.assets-style-home--simpleHome-card-13QBk .assets-style-home--simpleHome-categoryRemark-2DJgL {
  margin-left: 4px;
  cursor: pointer;
}
.assets-style-home--simpleHome-card-13QBk .assets-style-home--simpleHome-serviceRemark-Cf0j_ {
  position: absolute;
  top: -8px;
  left: -8px;
  color: rgba(0, 0, 0, 0.65);
}
.assets-style-home--simpleHome-card-13QBk .ant-card-grid {
  width: 104px;
  height: 131px;
  padding: 19px;
  text-align: center;
  box-shadow: none;
}
.assets-style-home--simpleHome-card-13QBk .ant-card-grid:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}
.assets-style-home--simpleHome-card-13QBk .ant-badge-count {
  top: 6px;
  right: 4px;
  box-shadow: 0 0 6px 2px rgba(255, 255, 255, 0.4);
}
.assets-style-home--simpleHome-largeCard-1SvmL .assets-style-home--simpleHome-photo-1rmay {
  margin-left: -4px;
}
.assets-style-home--simpleHome-largeCard-1SvmL .assets-style-home--simpleHome-title-1cdwm {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  display: inline-block;
  width: 84px;
  margin-left: -10px;
}
