/*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;
}
.operateForm .ant-row .ant-form-item {
  width: 100%;
}
.ant-form-inline .has-feedback {
  width: 100%;
}
.ant-table-fixed-header .ant-table-scroll .ant-table-header::-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;
}
.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;
  background-color: #eee;
}
.mainLayout {
  background-color: #fff !important;
}
.mainLayout .ant-layout-content {
  padding: 20px;
}
.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;
}
.auditCard .ant-card-actions li {
  margin: 0;
}
.auditCard .ant-card-actions li span {
  width: 100%;
}
.smallTable .ant-table-tbody {
  border-bottom: 1px solid #e8e8e8;
}
.smallTable .ant-table-header {
  background-color: #f8f8f8 !important;
}
.smallTable .ant-table-header tr th {
  background-color: #f8f8f8 !important;
}
.smallTable .ant-table-fixed-right {
  box-shadow: none;
}
/*.a:hover{*/
/*text-decoration: underline;*/
/*}*/
.tableHeader {
  display: inline-block;
}
.ant-layout-sider {
  float: left;
  clear: both;
}
.warning-table-bg {
  background-color: rgba(255, 0, 0, 0.1);
}
.ant-btn.ant-btn-primary.christmas:before {
  display: none!important;
}
.emptyPhotoUploader .ant-upload-picture-card-wrapper {
  display: none;
}
.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: 120px;
  padding: 0;
  background-color: #fff;
  border-radius: 4px;
}
.iconPhotoUploader .defaultAvatar img {
  width: 100%;
  height: 100%;
}
.ant-table-bordered.ant-table-fixed-header .ant-table-scroll .ant-table-header.ant-table-hide-scrollbar .ant-table-thead > tr:only-child > th:last-child {
  border-right: 1px solid #e8e8e8 !important;
}
.tablePhotoToolTip .ant-tooltip-arrow {
  border-right-color: #fff !important;
}
.tablePhotoToolTip .ant-tooltip-inner {
  background-color: #fff;
}
.ant-table-fixed-header .ant-table-content .ant-table-scroll .ant-table-body {
  min-height: 1px;
}
.ant-menu-item .anticon,
.ant-menu-submenu-title .anticon {
  margin-right: 12px;
}
.ant-btn {
  height: 30px;
  border-radius: 5px !important;
  padding: 0 13px;
}
.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-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-input {
  padding: 3px 11px;
  height: 30px;
  border-radius: 5px !important;
}
.ant-select-selection {
  border-radius: 5px !important;
}
.ant-select-selection--single {
  height: 30px;
}
.ant-card-head {
  padding: 0 12px;
}
.ant-card-head-title {
  padding: 12px 0;
  font-weight: bold;
}
.alert_info {
  line-height: 14px;
  height: 30px;
}
.alert_info .ant-alert-icon {
  top: 9px;
}
.drawer .ant-drawer-body {
  padding: 0;
}
.globalContent {
  height: 100%;
  padding: 8px;
  background-color: #f0f3f5;
}
.globalContent_div {
  background-color: #fff;
  min-height: 100%;
  padding: 8px 8px 16px 8px;
  margin-bottom: 8px;
}
.rowGutter {
  padding-top: 12px;
}
.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;
}
.treeSiderButton {
  position: absolute;
  right: -18px;
  top: 48%;
  width: 18px;
  height: 36px;
  line-height: 36px;
  background-color: #f1f2f6;
  cursor: pointer;
  border-radius: 0 36px 36px 0;
  z-index: 999;
}
.treeSiderButton .anticon {
  font-size: 14px;
  transition: color 0.3s;
}
.rowGutter {
  padding-top: 12px;
}
.basePadding {
  padding: 8px 8px 16px 8px;
  background-color: #fff !important;
}
.theme-a .themeBgColor {
  background-color: #397EF0;
}
.theme-a .themeBgColor .oc-export-btn:hover,
.theme-a .themeBgColor .oc-export-btn:focus,
.theme-a .themeBgColor .oc-export-btn:active {
  background-color: #0069cb;
  border-color: #0069cb;
}
.theme-a .affairDrawer .ant-drawer-header {
  background-color: #0076e4;
}
.theme-a .affairDrawer .ant-tabs-nav {
  background-color: #0076e4;
}
.theme-a .wordColor {
  color: #1890ff;
}
.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 .filingCard .ant-card-body {
  padding: 0;
  border-left: 4px solid #0076e4;
}
.theme-a .sidebarTitle {
  color: #000;
}
.theme-a .treeSiderButton:hover {
  background-color: #0076e4;
}
.theme-a .treeSiderButton:hover .anticon {
  color: #fff;
}
.theme-a .treeSiderButton .anticon {
  color: #1890ff;
}
.theme-a .checkedTeacherCard .ant-card {
  color: #1890ff !important;
  border: 1px solid #1890ff;
}
.theme-a .anticon-plus-circle {
  color: #1890ff;
}
.theme-a .ant-card-actions {
  background-color: #f7fbff;
}
.theme-a .ant-card-actions li:not(:last-child) {
  border-right: 1px solid #a5ccfe;
}
.theme-a .ant-table tr:nth-child(even) td {
  background: #f5fcff;
}
.theme-b .themeBgColor {
  background-color: #288f96;
}
.theme-b .themeBgColor .oc-export-btn:hover,
.theme-b .themeBgColor .oc-export-btn:focus,
.theme-b .themeBgColor .oc-export-btn:active {
  background-color: #237c82;
  border-color: #237c82;
}
.theme-b .affairDrawer .ant-drawer-header {
  background-color: #288f96;
}
.theme-b .affairDrawer .ant-tabs-nav {
  background-color: #288f96;
}
.theme-b .wordColor {
  color: #33b5be;
}
.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 .filingCard .ant-card-body {
  padding: 0;
  border-left: 4px solid #288f96;
}
.theme-b .sidebarTitle {
  color: #000;
}
.theme-b .treeSiderButton:hover {
  background-color: #288f96;
}
.theme-b .treeSiderButton:hover .anticon {
  color: #fff;
}
.theme-b .treeSiderButton .anticon {
  color: #33b5be;
}
.theme-b .checkedTeacherCard .ant-card {
  color: #33b5be !important;
  border: 1px solid #33b5be;
}
.theme-b .anticon-plus-circle {
  color: #33b5be;
}
.theme-c .themeBgColor {
  background-color: #00753b;
}
.theme-c .themeBgColor .oc-export-btn:hover,
.theme-c .themeBgColor .oc-export-btn:focus,
.theme-c .themeBgColor .oc-export-btn:active {
  background-color: #005c2e;
  border-color: #005c2e;
}
.theme-c .affairDrawer .ant-drawer-header {
  background-color: #00753b;
}
.theme-c .affairDrawer .ant-tabs-nav {
  background-color: #00753b;
}
.theme-c .wordColor {
  color: #00a854;
}
.theme-c .bgColor {
  background-color: #00a854;
}
.theme-c .listFooter {
  background-color: #f5fffa;
}
.theme-c .listItem:hover {
  background-color: #f5fffa;
}
.theme-c .listItem .cancelBtn {
  border: 1px solid #00a854;
}
.theme-c .filingCard .ant-card-body {
  padding: 0;
  border-left: 4px solid #00753b;
}
.theme-c .sidebarTitle {
  color: #000;
}
.theme-c .treeSiderButton:hover {
  background-color: #00753b;
}
.theme-c .treeSiderButton:hover .anticon {
  color: #fff;
}
.theme-c .treeSiderButton .anticon {
  color: #00a854;
}
.theme-c .checkedTeacherCard .ant-card {
  color: #00a854 !important;
  border: 1px solid #00a854;
}
.theme-c .anticon-plus-circle {
  color: #00a854;
}
.theme-d .themeBgColor {
  background-color: #e01f11;
}
.theme-d .themeBgColor .oc-export-btn:hover,
.theme-d .themeBgColor .oc-export-btn:focus,
.theme-d .themeBgColor .oc-export-btn:active {
  background-color: #c91c0f;
  border-color: #c91c0f;
}
.theme-d .affairDrawer .ant-drawer-header {
  background-color: #e01f11;
}
.theme-d .affairDrawer .ant-tabs-nav {
  background-color: #e01f11;
}
.theme-d .wordColor {
  color: #f04134;
}
.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 .filingCard .ant-card-body {
  padding: 0;
  border-left: 4px solid #e01f11;
}
.theme-d .sidebarTitle {
  color: #000;
}
.theme-d .treeSiderButton:hover {
  background-color: #e01f11;
}
.theme-d .treeSiderButton:hover .anticon {
  color: #fff;
}
.theme-d .treeSiderButton .anticon {
  color: #f04134;
}
.theme-d .checkedTeacherCard .ant-card {
  color: #f04134 !important;
  border: 1px solid #f04134;
}
.theme-d .anticon-plus-circle {
  color: #f04134;
}
.theme-e .themeBgColor {
  background-color: #202325;
}
.theme-e .themeBgColor .oc-export-btn:hover,
.theme-e .themeBgColor .oc-export-btn:focus,
.theme-e .themeBgColor .oc-export-btn:active {
  background-color: #141618;
  border-color: #141618;
}
.theme-e .affairDrawer .ant-drawer-header {
  background-color: #202325;
}
.theme-e .affairDrawer .ant-tabs-nav {
  background-color: #202325;
}
.theme-e .wordColor {
  color: #373d41;
}
.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 .filingCard .ant-card-body {
  padding: 0;
  border-left: 4px solid #202325;
}
.theme-e .sidebarTitle {
  color: #000;
}
.theme-e .treeSiderButton:hover {
  background-color: #202325;
}
.theme-e .treeSiderButton:hover .anticon {
  color: #fff;
}
.theme-e .treeSiderButton .anticon {
  color: #373d41;
}
.theme-e .checkedTeacherCard .ant-card {
  color: #373d41 !important;
  border: 1px solid #373d41;
}
.theme-e .anticon-plus-circle {
  color: #373d41;
}
.theme-f .themeBgColor {
  background-color: #397EF0;
}
.theme-f .themeBgColor .oc-export-btn:hover,
.theme-f .themeBgColor .oc-export-btn:focus,
.theme-f .themeBgColor .oc-export-btn:active {
  background-color: #0069cb;
  border-color: #0069cb;
}
.theme-f .affairDrawer .ant-drawer-header {
  background-color: #0076e4;
}
.theme-f .affairDrawer .ant-tabs-nav {
  background-color: #0076e4;
}
.theme-f .wordColor {
  color: #1890ff;
}
.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 .filingCard .ant-card-body {
  padding: 0;
  border-left: 4px solid #0076e4;
}
.theme-f .departmentTree .scroller > div:nth-child(2) > div {
  background-color: #eee !important;
}
.theme-f .departmentTree .scroller > div:last-child > div {
  background-color: #eee !important;
}
.theme-f .departmentTree .ant-tree-switcher {
  color: rgba(255, 255, 255, 0.65) !important;
  background-color: #001529 !important;
}
.theme-f .departmentTree .ant-tree-node-content-wrapper {
  color: rgba(255, 255, 255, 0.65);
}
.theme-f .departmentTree .ant-tree-node-content-wrapper:hover {
  color: #000;
}
.theme-f .departmentTree .ant-tree-node-selected {
  color: #000;
}
.theme-f .sidebarTitle {
  color: #fff;
}
.theme-f .treeSiderButton:hover {
  background-color: #0076e4;
}
.theme-f .treeSiderButton:hover .anticon {
  color: #fff;
}
.theme-f .treeSiderButton .anticon {
  color: #1890ff;
}
.theme-f .checkedTeacherCard .ant-card {
  color: #1890ff !important;
  border: 1px solid #1890ff;
}
.theme-f .anticon-plus-circle {
  color: #1890ff;
}
.theme-g .themeBgColor {
  background-color: #288f96;
}
.theme-g .themeBgColor .oc-export-btn:hover,
.theme-g .themeBgColor .oc-export-btn:focus,
.theme-g .themeBgColor .oc-export-btn:active {
  background-color: #237c82;
  border-color: #237c82;
}
.theme-g .affairDrawer .ant-drawer-header {
  background-color: #288f96;
}
.theme-g .affairDrawer .ant-tabs-nav {
  background-color: #288f96;
}
.theme-g .wordColor {
  color: #33b5be;
}
.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 .filingCard .ant-card-body {
  padding: 0;
  border-left: 4px solid #288f96;
}
.theme-g .departmentTree .scroller > div:nth-child(2) > div {
  background-color: #eee !important;
}
.theme-g .departmentTree .scroller > div:last-child > div {
  background-color: #eee !important;
}
.theme-g .departmentTree .ant-tree-switcher {
  color: rgba(255, 255, 255, 0.65) !important;
  background-color: #001529 !important;
}
.theme-g .departmentTree .ant-tree-node-content-wrapper {
  color: rgba(255, 255, 255, 0.65);
}
.theme-g .departmentTree .ant-tree-node-content-wrapper:hover {
  color: #000;
}
.theme-g .departmentTree .ant-tree-node-selected {
  color: #000;
}
.theme-g .sidebarTitle {
  color: #fff;
}
.theme-g .treeSiderButton:hover {
  background-color: #288f96;
}
.theme-g .treeSiderButton:hover .anticon {
  color: #fff;
}
.theme-g .treeSiderButton .anticon {
  color: #33b5be;
}
.theme-g .checkedTeacherCard .ant-card {
  color: #33b5be !important;
  border: 1px solid #33b5be;
}
.theme-g .anticon-plus-circle {
  color: #33b5be;
}
.theme-h .themeBgColor {
  background-color: #00753b;
}
.theme-h .themeBgColor .oc-export-btn:hover,
.theme-h .themeBgColor .oc-export-btn:focus,
.theme-h .themeBgColor .oc-export-btn:active {
  background-color: #005c2e;
  border-color: #005c2e;
}
.theme-h .affairDrawer .ant-drawer-header {
  background-color: #00753b;
}
.theme-h .affairDrawer .ant-tabs-nav {
  background-color: #00753b;
}
.theme-h .wordColor {
  color: #00a854;
}
.theme-h .bgColor {
  background-color: #00a854;
}
.theme-h .listFooter {
  background-color: #f5fffa;
}
.theme-h .listItem:hover {
  background-color: #f5fffa;
}
.theme-h .listItem .cancelBtn {
  border: 1px solid #00a854;
}
.theme-h .filingCard .ant-card-body {
  padding: 0;
  border-left: 4px solid #00753b;
}
.theme-h .departmentTree .scroller > div:nth-child(2) > div {
  background-color: #eee !important;
}
.theme-h .departmentTree .scroller > div:last-child > div {
  background-color: #eee !important;
}
.theme-h .departmentTree .ant-tree-switcher {
  color: rgba(255, 255, 255, 0.65) !important;
  background-color: #001529 !important;
}
.theme-h .departmentTree .ant-tree-node-content-wrapper {
  color: rgba(255, 255, 255, 0.65);
}
.theme-h .departmentTree .ant-tree-node-content-wrapper:hover {
  color: #000;
}
.theme-h .departmentTree .ant-tree-node-selected {
  color: #000;
}
.theme-h .sidebarTitle {
  color: #fff;
}
.theme-h .treeSiderButton:hover {
  background-color: #00753b;
}
.theme-h .treeSiderButton:hover .anticon {
  color: #fff;
}
.theme-h .treeSiderButton .anticon {
  color: #00a854;
}
.theme-h .checkedTeacherCard .ant-card {
  color: #00a854 !important;
  border: 1px solid #00a854;
}
.theme-h .anticon-plus-circle {
  color: #00a854;
}
.theme-i .themeBgColor {
  background-color: #e01f11;
}
.theme-i .themeBgColor .oc-export-btn:hover,
.theme-i .themeBgColor .oc-export-btn:focus,
.theme-i .themeBgColor .oc-export-btn:active {
  background-color: #c91c0f;
  border-color: #c91c0f;
}
.theme-i .affairDrawer .ant-drawer-header {
  background-color: #e01f11;
}
.theme-i .affairDrawer .ant-tabs-nav {
  background-color: #e01f11;
}
.theme-i .wordColor {
  color: #f04134;
}
.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 .filingCard .ant-card-body {
  padding: 0;
  border-left: 4px solid #e01f11;
}
.theme-i .departmentTree .scroller > div:nth-child(2) > div {
  background-color: #eee !important;
}
.theme-i .departmentTree .scroller > div:last-child > div {
  background-color: #eee !important;
}
.theme-i .departmentTree .ant-tree-switcher {
  color: rgba(255, 255, 255, 0.65) !important;
  background-color: #001529 !important;
}
.theme-i .departmentTree .ant-tree-node-content-wrapper {
  color: rgba(255, 255, 255, 0.65);
}
.theme-i .departmentTree .ant-tree-node-content-wrapper:hover {
  color: #000;
}
.theme-i .departmentTree .ant-tree-node-selected {
  color: #000;
}
.theme-i .sidebarTitle {
  color: #fff;
}
.theme-i .treeSiderButton:hover {
  background-color: #e01f11;
}
.theme-i .treeSiderButton:hover .anticon {
  color: #fff;
}
.theme-i .treeSiderButton .anticon {
  color: #f04134;
}
.theme-i .checkedTeacherCard .ant-card {
  color: #f04134 !important;
  border: 1px solid #f04134;
}
.theme-i .anticon-plus-circle {
  color: #f04134;
}
.theme-j .themeBgColor {
  background-color: #202325;
}
.theme-j .themeBgColor .oc-export-btn:hover,
.theme-j .themeBgColor .oc-export-btn:focus,
.theme-j .themeBgColor .oc-export-btn:active {
  background-color: #141618;
  border-color: #141618;
}
.theme-j .affairDrawer .ant-drawer-header {
  background-color: #202325;
}
.theme-j .affairDrawer .ant-tabs-nav {
  background-color: #202325;
}
.theme-j .wordColor {
  color: #373d41;
}
.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 .filingCard .ant-card-body {
  padding: 0;
  border-left: 4px solid #202325;
}
.theme-j .departmentTree .scroller > div:nth-child(2) > div {
  background-color: #eee !important;
}
.theme-j .departmentTree .scroller > div:last-child > div {
  background-color: #eee !important;
}
.theme-j .departmentTree .ant-tree-switcher {
  color: rgba(255, 255, 255, 0.65) !important;
  background-color: #001529 !important;
}
.theme-j .departmentTree .ant-tree-node-content-wrapper {
  color: rgba(255, 255, 255, 0.65);
}
.theme-j .departmentTree .ant-tree-node-content-wrapper:hover {
  color: #000;
}
.theme-j .departmentTree .ant-tree-node-selected {
  color: #000;
}
.theme-j .sidebarTitle {
  color: #fff;
}
.theme-j .treeSiderButton:hover {
  background-color: #202325;
}
.theme-j .treeSiderButton:hover .anticon {
  color: #fff;
}
.theme-j .treeSiderButton .anticon {
  color: #373d41;
}
.theme-j .checkedTeacherCard .ant-card {
  color: #373d41 !important;
  border: 1px solid #373d41;
}
.theme-j .anticon-plus-circle {
  color: #373d41;
}
.assets-style-home--index-content-style-29gCw {
  background: #fff;
}
.assets-style-home--index-content-style-29gCw .ant-divider-horizontal {
  margin: 15px 0 20px 0;
}
.assets-style-home--index-icon-style-hxWN1 {
  float: right;
  padding-right: 20px;
  line-height: 30px;
  cursor: pointer;
}
.assets-style-home--index-serviceGrid-1iOUy {
  width: 110px;
  padding: 20px;
  height: 130px;
  cursor: pointer;
  box-shadow: none !important;
  text-align: center;
  float: left;
}
.assets-style-home--index-serviceGrid-1iOUy img {
  width: 66px;
  height: 68px;
  margin-bottom: 5px;
}
.assets-style-home--index-serviceGrid-1iOUy:hover {
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15) !important;
}
.assets-style-home--index-serviceGrid-1iOUy .assets-style-home--index-rowDark-3sUkd {
  background-color: #f7f7f7;
}
.assets-style-home--index-leaveSortWrap-27Xb9 {
  position: relative;
}
.assets-style-home--index-leaveSortWrap-27Xb9 .prev,
.assets-style-home--index-leaveSortWrap-27Xb9 .next {
  position: absolute;
  top: 50%;
  height: 50px;
  width: 50px;
  margin-top: -25px;
  text-align: center;
  line-height: 45px;
  border-radius: 50%;
  font-size: 20px;
  z-index: 100;
  cursor: pointer;
}
.assets-style-home--index-leaveSortWrap-27Xb9 .prev {
  left: 0;
  opacity: 0.1;
  background: #000;
  border: 1px solid #eeeeee;
}
.assets-style-home--index-leaveSortWrap-27Xb9 .next {
  right: 0;
  opacity: 0.1;
  background: #000;
  border: 1px solid #eeeeee;
}
.assets-style-home--index-leaveSortWrap-27Xb9 .prev:hover,
.assets-style-home--index-leaveSortWrap-27Xb9 .next:hover {
  opacity: 1;
  background: #ffffff;
}
.assets-style-home--index-leaveSortWrap-27Xb9 .leaveSort {
  margin: 0 auto;
  white-space: nowrap;
  overflow: hidden;
  width: 100%;
}
.assets-style-home--index-leaveSortWrap-27Xb9 .leaveSort .card {
  display: inline-block;
}
.assets-style-home--index-leaveSortWrap-27Xb9 .leaveSort .bannerChild {
  float: left;
  width: 100%;
  transition: 1s;
}
.assets-style-home--index-leaveSortWrap-27Xb9 .leaveSort .bannerChild {
  font-size: 0;
}
.assets-style-home--index-trans-2VuBW {
  transition: all 2s;
}
.assets-style-home--index-tagBox-3T4DU {
  position: relative;
  overflow: hidden;
}
.assets-style-home--index-tagBox-3T4DU a {
  display: inline-block;
}
.assets-style-home--index-tagBox-3T4DU .assets-style-home--index-imgBox-7Dopg {
  position: absolute;
  left: 0;
  top: 0;
  height: 80%;
  width: 100%;
  text-align: center;
  opacity: 0.5;
}
.assets-style-home--index-tagBox-3T4DU .assets-style-home--index-imgBox-7Dopg img {
  height: 80%;
}
.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_table_box .ant-table-fixed-left,
.page_table_box .ant-table-fixed-right {
  z-index: 999;
}
.page_pagination {
  margin-top: 8px;
}
/*
 * 固定表格总结行（合计行）的样式
 */
.assets-style-tableBox--style-fixed-summary-row-1oMmc {
  position: sticky;
  /* 关键属性：开启粘性定位 */
  bottom: 0;
  /* 关键属性：粘在滚动容器的底部 */
  z-index: 1;
  /* 确保它显示在滚动内容的上方 */
  /* 以下为美化样式，让它看起来更像一个独立的栏 */
  background-color: #fafafa;
  /* 设置一个背景色 */
  border-top: 1px solid #e8e8e8;
  /* 顶部加一条分割线 */
}
/* Antd 在表格有滚动条时，会给单元格添加额外的左右边框，我们需要覆盖掉，防止错位 */
.assets-style-tableBox--style-fixed-summary-row-1oMmc > td {
  border-left: none !important;
  border-right: none !important;
}
/* 确保固定在左侧的列也能正常显示背景色 */
.assets-style-tableBox--style-ant-table-ping-left-8t-yy .assets-style-tableBox--style-fixed-summary-row-1oMmc .assets-style-tableBox--style-ant-table-cell-fix-left-3JW4p {
  background-color: #fafafa;
}
/* 确保固定在右侧的列也能正常显示背景色 */
.assets-style-tableBox--style-ant-table-ping-right-2wtC1 .assets-style-tableBox--style-fixed-summary-row-1oMmc .assets-style-tableBox--style-ant-table-cell-fix-right-3XAbJ {
  background-color: #fafafa;
}
.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-templateManage--index-card-content-mezBq:hover {
  cursor: pointer;
  box-shadow: #A9A9A9 7px 9px 10px;
}
.assets-style-templateManage--index-card-content-mezBq {
  width: 100%;
  height: 203px;
  cursor: default;
  border-radius: 5px;
}
.assets-style-templateManage--index-card-add-content-38Bjh:hover {
  cursor: pointer;
  box-shadow: #A9A9A9 7px 9px 10px;
}
.assets-style-templateManage--index-card-add-content-38Bjh {
  width: 100%;
  height: 203px;
  border-radius: 5px;
  cursor: default;
}
.assets-style-typeManage--index-card-content-2XW5k:hover {
  cursor: pointer;
  box-shadow: #A9A9A9 7px 9px 10px;
}
.assets-style-typeManage--index-card-content-2XW5k {
  width: 100%;
  height: 203px;
  cursor: default;
  border-radius: 5px;
}
.assets-style-salaryQuery--index-standardTable-1xE3U .ant-table-thead > tr > th {
  padding: 8px 16px;
  word-break: break-word;
}
.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;
}
.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-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-teacherInfo--style-teacherForm-1wMjM .ant-form-item {
  margin-bottom: 12px;
}
.assets-style-teacherInfo--style-customObjectList-1TBiw {
  height: 200px;
  width: 100%;
  border: 1px solid #F2F2F2;
  border-radius: 5px;
  padding: 10px 20px;
}
.assets-style-teacherInfo--style-customObjectList-1TBiw .ant-tag-has-color {
  color: #0076E4;
  margin: 0 6px;
}
.assets-style-teacherInfo--style-customObjectList-1TBiw .ant-tag-has-color i {
  position: absolute;
  background-color: #FAD2AB;
  color: #fff;
  margin-top: -8px;
  margin-left: 2px;
  border-radius: 50%;
  padding: 2px;
}
.assets-style-teacherInfo--style-salaryForm-3T-VW .ant-form-item .ant-form-item-label {
  width: 90px;
  display: inline-block;
}
.assets-style-teacherInfo--style-salaryForm-3T-VW .ant-form-item .ant-form-item-control-wrapper {
  display: inline-block;
  width: calc(100% - 120px);
}
.assets-style-teacherInfo--style-salaryForm-3T-VW .assets-style-teacherInfo--style-column1-2DqMP .ant-form-item-label {
  width: 71px;
  display: inline-block;
}
.assets-style-teacherInfo--style-salaryForm-3T-VW .assets-style-teacherInfo--style-column1-2DqMP .ant-form-item-control-wrapper {
  display: inline-block;
  width: calc(100% - 120px);
}
.assets-style-allowance-allowanceSetting-deptQuotaSetting--index-editable-cell-14CZb {
  position: relative;
}
.assets-style-allowance-allowanceSetting-deptQuotaSetting--index-editable-cell-value-wrap-3qf8_ {
  padding: 5px 12px;
  cursor: pointer;
}
.assets-style-allowance-allowanceSetting-deptQuotaSetting--index-editable-row-3ugL1:hover .assets-style-allowance-allowanceSetting-deptQuotaSetting--index-editable-cell-value-wrap-3qf8_ {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 4px 11px;
}
.assets-style-allowance-report--style-table-hidden-2O5Dg .ant-table-scroll {
  overflow: hidden !important;
}
.assets-style-allowance-report--style-table-content-3VEkn .ant-table-small > .ant-table-content .ant-table-placeholder,
.assets-style-allowance-report--style-table-content-3VEkn .ant-table-small > .ant-table-content .ant-table-row:last-child td {
  border-bottom: 1px solid #e8e8e8;
}
.assets-style-allowance-personnelReview--index-card-1_R6Y .ant-card-actions li {
  margin: 0;
}
.assets-style-allowance-personnelReview--index-card-1_R6Y .ant-card-actions li span {
  width: 100%;
}
.assets-style-allowance-personnelReview--index-card-1_R6Y :hover {
  cursor: pointer;
}
.assets-style-allowance-personnelReview--index-emptyData-3wWdS {
  display: flex;
  align-items: center;
  justify-content: center;
}
.assets-style-allowance-personnelReview--index-listItem-3yJe-:hover {
  cursor: pointer;
  box-shadow: #A9A9A9 7px 9px 10px;
}
.assets-style-allowance-queryAndStatistics-statistics--index-emptyData-1Jg40 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.assets-style-system-flow--style-listItem-hO8Ws:hover {
  cursor: pointer;
  box-shadow: #A9A9A9 7px 9px 10px;
}
.assets-style-system-flow--style-card-2K_e9 .ant-card-actions li {
  margin: 0;
}
.assets-style-system-flow--style-card-2K_e9 .ant-card-actions li span {
  width: 100%;
}
.assets-style-system-flow--style-card-2K_e9 :hover {
  cursor: pointer;
}
.assets-style-audit--index-empty-main-1F6y9 {
  width: 100%;
  height: 100%;
  display: table;
}
.assets-style-audit--index-empty-main-1F6y9 .assets-style-audit--index-empty-parent-1mImd {
  width: 100%;
  text-align: center;
  height: 150px;
  display: table-cell;
  vertical-align: middle;
}
.assets-style-audit--index-main-spin-2kI6Z {
  width: 100%;
  height: 100%;
}
.assets-style-audit--index-main-spin-2kI6Z .ant-spin-container {
  width: 100%;
  height: 100%;
}
.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-change--manage-card-yfN3e {
  height: 100%;
}
.assets-style-change--manage-card-yfN3e .ant-card-actions li {
  margin: 0;
}
.assets-style-change--manage-card-yfN3e .ant-card-actions li span {
  width: 100%;
}
.assets-style-change--manage-card-yfN3e :hover {
  cursor: pointer;
}
.assets-style-change--manage-listItem-R9I9H:hover {
  cursor: pointer;
  box-shadow: #A9A9A9 7px 9px 10px;
}
.assets-style-change--manage-change-parent-mcuad {
  height: 166px;
  width: 394px;
  position: relative;
  display: inline-block;
  margin-top: 10px;
}
.assets-style-change--manage-listItem-R9I9H {
  width: 100%;
  height: 100%;
}
.assets-style-change--manage-emptyData-25gB7 {
  display: flex;
  align-items: center;
  justify-content: center;
}
.assets-style-change--manage-empty-main-1Nkrw {
  width: 100%;
  height: 100%;
  display: table;
}
.assets-style-change--manage-empty-main-1Nkrw .assets-style-change--manage-empty-parent-30Kms {
  width: 100%;
  text-align: center;
  height: 150px;
  display: table-cell;
  vertical-align: middle;
}
.assets-style-change--index-empty-main-3HKj_ {
  width: 100%;
  height: 100%;
  display: table;
}
.assets-style-change--index-empty-main-3HKj_ .assets-style-change--index-empty-parent-2bwol {
  width: 100%;
  text-align: center;
  height: 150px;
  display: table-cell;
  vertical-align: middle;
}
.assets-style-change--index-main-spin-2J4Mk {
  width: 100%;
  height: 100%;
}
.assets-style-change--index-main-spin-2J4Mk .ant-spin-container {
  width: 100%;
  height: 100%;
}
.assets-style-change--index-query-col-uB3JE .ant-form-item {
  margin-bottom: 5px;
}
.assets-style-change--index-query-col-uB3JE .ant-input-number-input-wrap input {
  width: 100% !important;
}
.assets-style-standard-correction--index-tables-1rIaj tr td {
  border: 1px solid #d9d9d9;
  height: 30px;
  width: 200px;
  text-align: center;
}
.assets-style-standard-correction--index-tds-1TmO1 {
  background-color: #f5f6fa;
  color: #000000;
  width: 100px;
  vertical-align: middle;
}
.assets-style-standard-correction--index-hover-leave-1_4wq {
  color: #595959;
  cursor: default;
}
.assets-style-standard-correction--index-hover-b-29D-v {
  color: #1890ff;
  cursor: pointer;
}
.assets-style-standard-correction--index-hover-c-3di8Q {
  color: #33b5be;
  cursor: pointer;
}
.assets-style-standard-correction--index-hover-g-1MlCv {
  color: #00a854;
  cursor: pointer;
}
.assets-style-standard-correction--index-hover-r-2RWr- {
  color: #f04134;
  cursor: pointer;
}
.assets-style-standard-correction--index-hover-bl-8zchn {
  color: #373d41;
  cursor: pointer;
}
.assets-style-standard-postStandard--index-editable-cell-RToRU {
  position: relative;
}
.assets-style-standard-postStandard--index-editable-cell-value-wrap-e4a-P {
  padding: 5px 12px;
  cursor: pointer;
}
.assets-style-standard-postStandard--index-editable-row-2lwhX:hover .assets-style-standard-postStandard--index-editable-cell-value-wrap-e4a-P {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 4px 11px;
}
.assets-style-standard-postStandard--index-hover-leave-UmvaK {
  color: #595959;
  cursor: default;
}
.assets-style-standard-postStandard--index-hover-b-1-8e6 {
  color: #1890ff;
  cursor: pointer;
}
.assets-style-standard-postStandard--index-hover-c-ePCiv {
  color: #33b5be;
  cursor: pointer;
}
.assets-style-standard-postStandard--index-hover-g-3Z6d1 {
  color: #00a854;
  cursor: pointer;
}
.assets-style-standard-postStandard--index-hover-r-2oV2h {
  color: #f04134;
  cursor: pointer;
}
.assets-style-standard-postStandard--index-hover-bl-3UXtk {
  color: #373d41;
  cursor: pointer;
}
.assets-style-basicData--index-empty-main-3Wiab {
  width: 100%;
  height: 100%;
  display: table;
}
.assets-style-basicData--index-empty-main-3Wiab .assets-style-basicData--index-empty-parent-33ssr {
  width: 100%;
  text-align: center;
  height: 150px;
  display: table-cell;
  vertical-align: middle;
}
.assets-style-basicData--index-main-spin-2D6o2 {
  width: 100%;
  height: 100%;
}
.assets-style-basicData--index-main-spin-2D6o2 .ant-spin-container {
  width: 100%;
  height: 100%;
}
.assets-style-basicData--index-query-col-3Ni-1 .ant-form-item {
  margin-bottom: 12px;
}
.assets-style-basicData--index-query-col-3Ni-1 .ant-input-number-input-wrap input {
  width: 100% !important;
}
.assets-style-salarySystem-salarySheet--salarySheet-drawer-main-1qI3g .ant-drawer-body {
  padding: 0 !important;
  height: 100%;
}
.assets-style-salarySystem-salarySheet--salarySheet-drawer-main-1qI3g .assets-style-salarySystem-salarySheet--salarySheet-drawer-head-1_nwP {
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding: 0 15px;
  font-size: large;
  font-weight: bolder;
  border-bottom: 1px solid #E1E1E1;
}
.assets-style-salarySystem-salarySheet--salarySheet-drawer-main-1qI3g .assets-style-salarySystem-salarySheet--salarySheet-drawer-content-2jVsI {
  padding: 0 15px;
  width: 100%;
}
.assets-style-salarySystem-salarySheet--salarySheet-drawer-main-1qI3g .assets-style-salarySystem-salarySheet--salarySheet-drawer-content-column-9vQhf {
  width: 100%;
  height: 180px;
  background-color: #F9F9F9;
  border: 1px dashed #E1E1E1;
  position: relative;
}
.assets-style-salarySystem-salarySheet--salarySheet-drawer-main-1qI3g .assets-style-salarySystem-salarySheet--salarySheet-drawer-content-column-9vQhf:before {
  box-sizing: content-box;
  width: 0px;
  height: 0px;
  position: absolute;
  top: 178px;
  left: 101px;
  padding: 0;
  border-bottom: 8px dashed transparent;
  border-top: 8px dashed #F9F9F9;
  border-left: 8px dashed transparent;
  border-right: 8px dashed transparent;
  display: block;
  content: '';
  z-index: 12;
}
.assets-style-salarySystem-salarySheet--salarySheet-drawer-main-1qI3g .assets-style-salarySystem-salarySheet--salarySheet-drawer-content-column-9vQhf:after {
  box-sizing: content-box;
  width: 0px;
  height: 0px;
  position: absolute;
  top: 178px;
  left: 100px;
  padding: 0;
  border-bottom: 9px dashed transparent;
  border-top: 9px dashed #E1E1E1;
  border-left: 9px dashed transparent;
  border-right: 9px dashed transparent;
  display: block;
  content: '';
  z-index: 10;
}
.assets-style-salarySystem-salarySheet--salarySheet-drawer-main-1qI3g .assets-style-salarySystem-salarySheet--salarySheet-drawer-content-form-1jNvC {
  width: 100%;
  border: 1px dashed #E1E1E1;
  border-top: 0;
}
.assets-style-salarySystem-salarySheet--salarySheet-drawer-main-1qI3g .assets-style-salarySystem-salarySheet--salarySheet-column-main-2vnHr {
  padding: 5px 8px;
  margin-bottom: 10px;
  background-color: white;
  color: #8c8c8c;
  border: 1px solid #8c8c8c;
  border-radius: 5px;
  float: left;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
}
.assets-style-salarySystem-salarySheet--salarySheet-drawer-main-1qI3g .assets-style-salarySystem-salarySheet--salarySheet-column-main-select-6Q_LA {
  color: white;
}
.assets-style-salarySystem-salarySheet--salarySheet-drawer-main-1qI3g .assets-style-salarySystem-salarySheet--salarySheet-column-main-change-3kxPo:after {
  box-sizing: content-box;
  width: 0;
  height: 0;
  position: absolute;
  top: 0px;
  left: 0px;
  padding: 0;
  border-bottom: 5px solid transparent;
  border-top: 5px solid red;
  border-left: 5px solid red;
  border-right: 5px solid transparent;
  border-radius: 5px 0 0 0;
  display: block;
  content: '';
  z-index: 10;
}
.assets-style-salarySystem-salarySheet--salarySheet-drawer-main-1qI3g .assets-style-salarySystem-salarySheet--salarySheet-column-delete-3RLGg {
  position: absolute;
  top: -7px;
  right: -5px;
  background-color: red;
  border-radius: 11px;
  color: white;
  padding: 2px;
}
.assets-style-salarySystem-salarySheet--salarySheet-empty-main-7KxA4 {
  width: 100%;
  height: 100%;
  display: table;
}
.assets-style-salarySystem-salarySheet--salarySheet-empty-main-7KxA4 .assets-style-salarySystem-salarySheet--salarySheet-empty-parent-2WJ_j {
  width: 100%;
  text-align: center;
  height: 150px;
  display: table-cell;
  vertical-align: middle;
}
.assets-style-salarySystem-salarySheet--salarySheet-formula-main-1M2ae {
  width: 100%;
  height: 180px;
  border-radius: 5px;
  border: 1px solid #E1E1E1;
}
.assets-style-salarySystem-salarySheet--salarySheet-character-134Jc {
  padding: 5px 8px;
  margin-bottom: 10px;
  min-width: 50px;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
  border: 1px solid #E1E1E1;
}
.assets-style-salarySystem-salarySheet--salarySheet-heart-2Q8e_ {
  animation: assets-style-salarySystem-salarySheet--salarySheet-heart-2Q8e_ 1s ease infinite;
}
@keyframes assets-style-salarySystem-salarySheet--salarySheet-heart-2Q8e_ {
  0% {
    opacity: 0.1;
  }
  100% {
    opacity: 1;
  }
}
.assets-style-salarySystem-salarySheet--salarySheet-function-div-2-PLE {
  height: 28px;
  line-height: 28px;
  border-bottom: 1px solid #E1E1E1;
  cursor: pointer;
}
.assets-style-salarySystem-salarySheet--salarySheet-function-div-2-PLE:hover {
  color: #1890ff;
}
.assets-style-personAccountSet--style-customObjectList-VCANo {
  height: 200px;
  width: 100%;
  border: 1px solid #F2F2F2;
  border-radius: 5px;
  padding: 10px 20px;
}
.assets-style-personAccountSet--style-customObjectList-VCANo .ant-tag-has-color {
  color: #0076E4;
  margin: 0 6px;
}
.assets-style-personAccountSet--style-customObjectList-VCANo .ant-tag-has-color i {
  position: absolute;
  background-color: #FAD2AB;
  color: #fff;
  margin-top: -8px;
  margin-left: 2px;
  border-radius: 50%;
  padding: 2px;
}
.assets-style-dynamicData--index-card-saAPc {
  height: 100%;
}
.assets-style-dynamicData--index-card-saAPc .ant-card-actions li {
  margin: 0;
}
.assets-style-dynamicData--index-card-saAPc .ant-card-actions li span {
  width: 100%;
}
.assets-style-dynamicData--index-card-saAPc :hover {
  cursor: pointer;
}
.assets-style-dynamicData--index-listItem-2c62f:hover {
  cursor: pointer;
  box-shadow: #A9A9A9 7px 9px 10px;
}
.assets-style-dynamicData--index-change-parent-X2LXK {
  height: 166px;
  width: 394px;
  position: relative;
  display: inline-block;
  margin-top: 10px;
}
.assets-style-dynamicData--index-listItem-2c62f {
  width: 100%;
  height: 100%;
}
.assets-style-dynamicData--index-emptyData-1w5Er {
  display: flex;
  align-items: center;
  justify-content: center;
}
.assets-style-dynamicData--index-empty-main-1azBe {
  width: 100%;
  height: 100%;
  display: table;
}
.assets-style-dynamicData--index-empty-main-1azBe .assets-style-dynamicData--index-empty-parent-2Z1bQ {
  width: 100%;
  text-align: center;
  height: 150px;
  display: table-cell;
  vertical-align: middle;
}
.assets-style-socialSecurity-baseSetting-socialInsurancePaymentRatio--index-editable-cell-1RoKW {
  position: relative;
}
.assets-style-socialSecurity-baseSetting-socialInsurancePaymentRatio--index-editable-cell-value-wrap-3jAEN {
  padding: 5px 12px;
  cursor: pointer;
  height: 31px;
}
.assets-style-socialSecurity-baseSetting-socialInsurancePaymentRatio--index-editable-row-1hI5k:hover .assets-style-socialSecurity-baseSetting-socialInsurancePaymentRatio--index-editable-cell-value-wrap-3jAEN {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 4px 11px;
}
.assets-style-socialSecurity-baseSetting-housingFundPaymentRatio--index-editable-cell-1atmg {
  position: relative;
}
.assets-style-socialSecurity-baseSetting-housingFundPaymentRatio--index-editable-cell-value-wrap-1vBcP {
  padding: 5px 12px;
  cursor: pointer;
  height: 31px;
}
.assets-style-socialSecurity-baseSetting-housingFundPaymentRatio--index-editable-row-140-a:hover .assets-style-socialSecurity-baseSetting-housingFundPaymentRatio--index-editable-cell-value-wrap-1vBcP {
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 4px 11px;
}
.assets-style-socialSecurity-baseSetting-housingFundPaymentRatio--index-zindex99-30z9j {
  z-index: 99;
}
.assets-style-incomeTax--factor-drawer-main-DysYG .ant-drawer-body {
  padding: 0 !important;
  height: 100%;
}
.assets-style-incomeTax--factor-main-2Mb2p {
  width: 100%;
  height: 100%;
}
.assets-style-incomeTax--factor-main-2Mb2p .assets-style-incomeTax--factor-main-content-left-3_iWj {
  height: 100%;
}
.assets-style-incomeTax--factor-main-2Mb2p .assets-style-incomeTax--factor-main-content-right-kkZtc {
  height: 100%;
}
.assets-style-incomeTax--factor-drawer-main-DysYG .assets-style-incomeTax--factor-drawer-head-2SCNs {
  width: 100%;
  height: 48px;
  line-height: 48px;
  padding: 0 15px;
  font-size: large;
  font-weight: bolder;
  border-bottom: 1px solid #E1E1E1;
}
.assets-style-incomeTax--factor-drawer-main-DysYG .assets-style-incomeTax--factor-drawer-content-1Q-rO {
  padding: 15px 15px;
  width: 100%;
}
.assets-style-incomeTax--factor-drawer-main-DysYG .assets-style-incomeTax--factor-drawer-form-L6mmq {
  padding: 15px;
  border-radius: 4px;
  box-shadow: 0 0 5px #D9D9D9;
}
.assets-style-incomeTax--factor-drawer-main-DysYG .assets-style-incomeTax--factor-drawer-scorllbar-2jw0P {
  width: 95%;
  box-shadow: 0 0 5px #D9D9D9;
  height: 100%;
}
.assets-style-socialSecurity-sheet--index-empty-main-3scNv {
  width: 100%;
  height: 100%;
  display: table;
}
.assets-style-socialSecurity-sheet--index-empty-main-3scNv .assets-style-socialSecurity-sheet--index-empty-parent-1ENvE {
  width: 100%;
  text-align: center;
  height: 150px;
  display: table-cell;
  vertical-align: middle;
}
.assets-style-socialSecurity-sheet--index-main-spin-pzRfi {
  width: 100%;
  height: 100%;
}
.assets-style-socialSecurity-sheet--index-main-spin-pzRfi .ant-spin-container {
  width: 100%;
  height: 100%;
}
.assets-style-socialSecurity-sheet--speed-progress-186Oc .ant-progress-bg {
  height: 15px !important;
  background: #3C9FFC linear-gradient(to right, #64B4FD, #8ECAFF) !important;
}
.assets-style-socialSecurity-sheet--speed-progress-186Oc.assets-style-socialSecurity-sheet--speed-error-pCCmu .ant-progress-bg {
  height: 15px !important;
  background: #3C9FFC linear-gradient(to right, red, #CD3333) !important;
}
.assets-style-salaryCalculate--index-card-content-2jw0h:hover {
  cursor: pointer;
  box-shadow: #F6F7F9 7px 7px 10px;
  background-color: #FBFBFB;
}
.assets-style-salaryCalculate--index-card-content-2jw0h {
  width: 80%;
  height: 100%;
  border-radius: 5px;
  box-shadow: #F6F7F9 7px 7px 10px;
  padding: 20px;
}
.assets-style-salaryCalculate--index-card-div-3_gh_ {
  width: 20%;
  float: left;
  height: 250px;
}
.assets-style-salaryCalculate--index-step-content-JOSai {
  width: 20%;
  float: left;
}
.assets-style-salaryCalculate--index-select-input-B3GU8 {
  width: 100%;
  margin: 20px 0;
}
.assets-style-salaryStatistic--index-salaryForm-mUwRd .ant-form-item {
  margin-bottom: 5px;
}
.assets-style-incomeTax--formula-head-3X945 .assets-style-incomeTax--formula-head-title-27Hgl {
  width: 100%;
  height: 60px;
  line-height: 60px;
  text-align: center;
  font-size: 18px;
  font-weight: bolder;
}
.assets-style-incomeTax--formula-head-3X945 .assets-style-incomeTax--formula-head-month-VrTxs {
  width: 100%;
  height: 32px;
}
.assets-style-incomeTax--formula-cumulative-udBGT {
  width: 100%;
  height: 78px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.assets-style-incomeTax--formula-h-title-1JiLG {
  font-size: 16px;
  font-weight: bolder;
  margin: 20px 0px 12px 0px;
}
.assets-style-incomeTax--formula-remark-FJHzF {
  height: 60px;
  padding-left: 12px;
  line-height: 35px;
}
.assets-style-incomeTax--formula-pd-24xqZ {
  padding: 0px 12px;
}
.assets-style-incomeTax--formula-character-3ziFs {
  padding: 5px 8px;
  margin-bottom: 10px;
  min-width: 50px;
  text-align: center;
  border-radius: 5px;
  display: inline-block;
  cursor: pointer;
  position: relative;
  margin-right: 10px;
  border: 1px solid #E1E1E1;
}
/* 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-person--index-main-3ZHBT {
  width: 100%;
  height: 100%;
  position: relative;
  background-color: #1890ff;
}
.assets-style-person--index-bg-2ulzw {
  height: 250px;
  width: 100%;
}
.assets-style-person--index-bg2-m4H0o {
  width: 100%;
  background-color: #ececec;
}
.assets-style-person--index-info-content-nEKOC {
  padding: 0 15px;
  width: 90%;
  left: 5%;
  background-color: white;
  position: absolute;
  top: 40px;
  bottom: 30px;
}
.assets-style-person--index-tab-45MZE {
  width: 100%;
  height: 40px;
  line-height: 40px;
  position: relative;
}
.assets-style-person--index-tab-45MZE .assets-style-person--index-tab-right-3WKMq {
  width: 132px;
  position: absolute;
  right: 0;
  text-align: right;
}
.assets-style-person--index-tab-45MZE .assets-style-person--index-tab-right-3WKMq .assets-style-person--index-tab-right-salary-1WLPY {
  font-size: 14px;
  color: #404040;
  float: left;
  margin-left: 10px;
  cursor: pointer;
}
.assets-style-person--index-tab-45MZE .assets-style-person--index-tab-right-3WKMq .assets-style-person--index-tab-right-select-2jPke {
  height: 100%;
  color: #108ee9;
  border-bottom: solid 2px #108ee9;
}
.assets-style-person--index-cs-21OjT {
  height: 40px;
  line-height: 32px;
  width: 100%;
}
.assets-style-person--index-cs-21OjT .ant-calendar-picker {
  width: 136px;
  cursor: pointer;
}
.assets-style-person--index-cs-21OjT .ant-calendar-picker input {
  cursor: pointer;
  border: 0;
  font-size: 18px;
  font-weight: bold;
}
.assets-style-person--index-fnw-1lpxm {
  line-height: 30px;
}
.assets-style-person--index-empty-main-Jk7vH {
  width: 100%;
  height: 100%;
  display: table;
}
.assets-style-person--index-empty-main-Jk7vH .assets-style-person--index-empty-parent-1ji86 {
  width: 100%;
  text-align: center;
  height: 150px;
  display: table-cell;
  vertical-align: middle;
}
.assets-style-person--index-main-spin-1v_fF {
  width: 100%;
  height: 100%;
}
.assets-style-person--index-main-spin-1v_fF .ant-spin-container {
  width: 100%;
  height: 100%;
}
.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-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-noticeIcon--index-tabs-3l9mB .ant-tabs-nav-scroll {
  text-align: center;
}
.assets-style-noticeIcon--index-tabs-3l9mB .ant-tabs-bar {
  margin-bottom: 4px;
}
.assets-style-noticeIcon--index-list-beazh {
  max-height: 400px;
}
.assets-style-noticeIcon--index-list-beazh .assets-style-noticeIcon--index-item-34_l7 {
  transition: all .3s;
  overflow: hidden;
  cursor: pointer;
  padding-left: 24px;
  padding-right: 24px;
}
.assets-style-noticeIcon--index-list-beazh .assets-style-noticeIcon--index-item-34_l7:last-child {
  border-bottom: 0;
}
.assets-style-noticeIcon--index-list-beazh .assets-style-noticeIcon--index-item-34_l7 .assets-style-noticeIcon--index-meta-3ffoK {
  width: 100%;
}
.assets-style-noticeIcon--index-list-beazh .assets-style-noticeIcon--index-item-34_l7 .assets-style-noticeIcon--index-title-1DZZa {
  font-size: 14px;
  font-weight: normal;
  color: rgba(0, 0, 0, 0.65);
  line-height: 22px;
  margin-bottom: 8px;
}
.assets-style-noticeIcon--index-list-beazh .assets-style-noticeIcon--index-item-34_l7 .assets-style-noticeIcon--index-extra-3uwKI {
  float: right;
  color: rgba(0, 0, 0, 0.45);
  font-size: 14px;
  font-weight: normal;
  margin-right: 0;
  margin-top: -1.5px;
}
.assets-style-noticeIcon--index-list-beazh .assets-style-noticeIcon--index-item-34_l7 .assets-style-noticeIcon--index-description-2ZJja {
  font-size: 12px;
  line-height: 1.5;
}
.assets-style-noticeIcon--index-all-1Fpfj {
  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-noticeIcon--index-popover-1TMwC {
  width: 336px;
}
.assets-style-noticeIcon--index-popover-1TMwC .ant-popover-inner-content {
  padding: 0;
}
.assets-style-header--index-header-1nF96 {
  padding: 0;
}
.assets-style-header--index-trigger-3Vcg1 {
  color: #fff !important;
}
.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: -23px;
  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: 100%;
  padding: 0 16px;
  border-radius: 5px;
  margin: 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 12px;
  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;
}
.assets-style-header--index-action-3uYUQ .ant-avatar img {
  position: relative;
  top: -2px;
}
.assets-style-header--index-drawerContainer-2kClJ .ant-drawer-header {
  border-bottom: none;
}
.assets-style-header--index-drawerContainer-2kClJ .ant-drawer-content-wrapper {
  padding: 40px 30px;
  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: 60px 0 30px;
  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-logo--index-logo-EMId6 {
  height: 64px;
  line-height: 64px;
  overflow: hidden;
  text-align: center;
}
.assets-style-login--index-container-gN6HD {
  min-height: 100%;
  background-repeat: no-repeat;
  background-size: cover;
  display: flex;
  flex-direction: column;
}
.assets-style-login--index-container-gN6HD .ant-tabs-tab {
  font-size: 16px;
  line-height: 24px;
}
.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 {
  width: 368px;
  height: 55px;
}
.assets-style-login--index-container-gN6HD .assets-style-login--index-content-nlv36 {
  z-index: 999;
  width: 368px;
  padding-top: 300px;
  top: 0;
  position: absolute;
}
.assets-style-login--index-container-gN6HD .assets-style-login--index-main-2C7Z0 {
  width: 368px;
  margin: 0 auto;
  text-align: left;
}
.assets-style-login--index-container-gN6HD .assets-style-login--index-tabs-35s1r {
  padding: 0 2px;
  margin: 0 -2px;
}
.assets-style-login--index-container-gN6HD .assets-style-login--index-submit-11COT {
  width: 100%;
  margin-top: 24px;
}
.assets-style-login--index-icon_qq-33mV3 {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA39pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo1NDUxNmFhOS0zNTQ3LWM5NGItODg4YS0zOTMwODk0OWEwNzQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NDk4RTYzOTYyMEU4MTFFODhFQUI4MjNGREFBRjFCREIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NDk4RTYzOTUyMEU4MTFFODhFQUI4MjNGREFBRjFCREIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY4Zjg5Y2MyLWM1MTktZDU0Ny05ZDBkLTFiYTNiYTFhOGI4NSIgc3RSZWY6ZG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjRjYjcxMWYwLWUzNGYtYzQ0OS05N2RhLThmY2RlMmY2M2RhNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PthTVIQAAAKJSURBVHjarJbNSxVhFMZn3koqzRZpyxIy7AMh8gNqU4swwxtKEFbUf2ARLloKghsXSkibQHDVh0REzFBWt4hyaeIH9kFhhLSwMojiSpBenwMPMY7vee+d6z3wY+bOec/7zJ05c87xs9ms57IwDHfgUAXawWGwDeyl+yP4A96Au+ALWIjGp1KpVfv5miCESnFoBZ2gzsvPRLgHPAUZm6BRxGp5x7cSiHlc+4CxtbYFxiLWgsMzuTmvcDvNPVrijlWPFGIncHgMNnrFsX/gFB5reo0gxI5QbHuOTcbADM8Pgvoc63+BYxCd/C/IBLkPTjoCJ0AHeA9+85pk7D4wwAzW7BE4C9GMHwSBjx/nwG1HwCtwEcwp/i3gJrjk2EMyPpCk2QquORZ+AhccYmKL4CqYdqzpFi0RrAGHlEXLoA98zSNBfoJ+xthMNPaL4HnHJrNgKEFWDjNGfawmx8t+Av4mEFxkjFoYDDNNs88FfHuumEoTKcRxW8qRBJpNO97jHuMIfAtGCxAcddyob9hibDYoH2oBghJzXfvETKRqxO35Omroa+X6dxEcV5xzKHnlOJYmEJK15fEmHO2XInhHcd7jv7ycQPAKY4YV/0MR/AAmLc4mdoJsAsFlxjRZfKLxzvAldzkqR28CQVl7Q/GJRsYgE+UfpNlC4lYNGtkjN4ESUAZ2gwM8L6FPzhu43tae0qIVbcBSXF8qDfgFa6RsLFPcUbCZ1xdYJHaCZsu0IA34OMQmtBFjBGwo0oghN9IcHTFMbIYURxuYL4KY7NEWFbNObVgQMsvCdYipe1hrKUSnOHaccRQGm40zRmKnrMU0j1G/Aodd3KSO7aw60qC/cZIL2Jp+uEb9FQEGAINqvYkX35FcAAAAAElFTkSuQmCC) no-repeat;
  background-size: cover;
  vertical-align: middle;
  cursor: pointer;
}
.assets-style-login--index-icon_wechat-E-Lv5 {
  display: inline-block;
  width: 24px;
  height: 24px;
  margin-left: 16px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABwAAAAcCAYAAAByDd+UAAAAGXRFWHRTb2Z0d2FyZQBBZG9iZSBJbWFnZVJlYWR5ccllPAAAA39pVFh0WE1MOmNvbS5hZG9iZS54bXAAAAAAADw/eHBhY2tldCBiZWdpbj0i77u/IiBpZD0iVzVNME1wQ2VoaUh6cmVTek5UY3prYzlkIj8+IDx4OnhtcG1ldGEgeG1sbnM6eD0iYWRvYmU6bnM6bWV0YS8iIHg6eG1wdGs9IkFkb2JlIFhNUCBDb3JlIDUuNi1jMTQyIDc5LjE2MDkyNCwgMjAxNy8wNy8xMy0wMTowNjozOSAgICAgICAgIj4gPHJkZjpSREYgeG1sbnM6cmRmPSJodHRwOi8vd3d3LnczLm9yZy8xOTk5LzAyLzIyLXJkZi1zeW50YXgtbnMjIj4gPHJkZjpEZXNjcmlwdGlvbiByZGY6YWJvdXQ9IiIgeG1sbnM6eG1wTU09Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC9tbS8iIHhtbG5zOnN0UmVmPSJodHRwOi8vbnMuYWRvYmUuY29tL3hhcC8xLjAvc1R5cGUvUmVzb3VyY2VSZWYjIiB4bWxuczp4bXA9Imh0dHA6Ly9ucy5hZG9iZS5jb20veGFwLzEuMC8iIHhtcE1NOk9yaWdpbmFsRG9jdW1lbnRJRD0ieG1wLmRpZDo1NDUxNmFhOS0zNTQ3LWM5NGItODg4YS0zOTMwODk0OWEwNzQiIHhtcE1NOkRvY3VtZW50SUQ9InhtcC5kaWQ6NEQ3QjA3MTYyMEU4MTFFODlFNkNGODZCRTI5NUZCRjIiIHhtcE1NOkluc3RhbmNlSUQ9InhtcC5paWQ6NEQ3QjA3MTUyMEU4MTFFODlFNkNGODZCRTI5NUZCRjIiIHhtcDpDcmVhdG9yVG9vbD0iQWRvYmUgUGhvdG9zaG9wIENDIChXaW5kb3dzKSI+IDx4bXBNTTpEZXJpdmVkRnJvbSBzdFJlZjppbnN0YW5jZUlEPSJ4bXAuaWlkOjY4Zjg5Y2MyLWM1MTktZDU0Ny05ZDBkLTFiYTNiYTFhOGI4NSIgc3RSZWY6ZG9jdW1lbnRJRD0iYWRvYmU6ZG9jaWQ6cGhvdG9zaG9wOjRjYjcxMWYwLWUzNGYtYzQ0OS05N2RhLThmY2RlMmY2M2RhNCIvPiA8L3JkZjpEZXNjcmlwdGlvbj4gPC9yZGY6UkRGPiA8L3g6eG1wbWV0YT4gPD94cGFja2V0IGVuZD0iciI/PgOjBYgAAAIpSURBVHjarFbdUYNAECYM76GDYAXBCsT3zEgqMFYgVhDsIFaQpAJxkneTCiQVSDqACuKe8+Fs1oUD487sA9zdfvft7w1Op5Oz3W4di0Skd6Qh1Mf/kjSHZpPJZG8zNLAAzkjnpIHTTQrSlIDXfQENi9ceQBrwlIBzueAqm2PS9wvAHJx9JyKxDTAGM9+5XIyNVwnqCjcunf+XJYGG9YfHFrIWZgdkYsEyddSHKekVZzhrMPCGjSH2pHC7idEt6b5rTInljAOmyqYHGC8ajOxQn+uOoPPvsthsNhGykssLacLYj0mf2PoKumPgNx1Apy5YSFmIFL8WMQlF2Sw6sow8HOZSCTdKd5c4E2GtxCWe8f+uBTDUAE8dbrpAVn9fhjrKzwIlR4C1sXJubFw6VNK4rcskIn5nQuAF2B+0EnEbjKYWhjmr3RTMfNLCMCTQkiXdr9ZWKf/vkZ3amMoF2wWYGZAIDM33TrFducLAWUsCgG0qlMKdrZ7xAHjTYnCOxMoR30OX/EfyDDVAE4dH5Yy5+QfrrzG7RMaZNchK604ufH1saLp+06xrG2HELlO8VhFW5rGs7DOajIs/6/IggJIl1YtS23WCnT0xih4jp01K5qFajsQukAM4biiRv0x6X7TKWJv4eUPtXSoJf0zJTmOCPf0npsbGA4GtbK+2DME/XgB2RNf5VRpeS68M2LNi1INVogHZAOVkj8G6fkDxDrLHBXemzmw3+hJgAPJoto7qcZ33AAAAAElFTkSuQmCC) no-repeat;
  background-size: cover;
  vertical-align: middle;
  cursor: pointer;
}
.assets-style-login--index-getCaptcha-3h7jO {
  display: block;
  width: 100%;
}
.assets-style-login--index-bg2Img-qhET2 {
  width: 1024px;
  height: 624px;
  margin-top: 170px;
}
.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-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;
}
