@charset "UTF-8";
/**
 * Created by zJiong on 2022-06-20
 */
/**
 * @todo: 使用flex实现水平垂直居中
 * @param: {[string]} @justify [center] 水平对齐方向,[false] 水平方向不设置
 * @param: {[string]} @align   [center] 垂直对齐方向,[false] 垂直方向不设置
 * @example: 
 *  .center {
 *      .box-center(justify, align);
 *  }
 */
/**
 * @todo: 使用translate实现水平垂直居中
 * @param {String} @direction [both] - 水平垂直,其它值`horizontal`和`vertical`
 * @example: 
 *  .center {
 *      .box-center();
 *  }
 */
/**
 * Created by zJiong on 2022-06-20
 */
/**
 * @todo: 控制文字行数溢出...
 * @param  {number} $lines [1] - 默认一行对于点点点结束
 * @param  {number} $substract  [0] - 默认宽度为100% - 0
 * @example: 
 *  .container {
 *      .ellipsis(3);
 *  }
 */
/**
 * @todo: 等比例设置大小
 * @param: real_width 表示实际宽度值，此时前两个参数只是用来计算宽高比
 */
/**
 * @todo: 等比例设置大小
 * @param: container_width 可选。表示容器的宽高比
 * @param: container_height 可选。表示容器的宽高比，该方法使用宽度在容器中所占的百分比来计算元素高度在容器中的百分比
 */
/**
 * @todo: 设置相对大小
 * @param: @width, @height 表示绝对宽高度（一般为设计图上该元素的像素宽高）
 * @param: @base_width 表示基础宽度（一般为设计图的像素宽）
 * @descript: 宽高会按基础宽度换算为等比例的百分比（这里的高度使用的是padding-top）
 */
.clearfix::before {
  display: table;
  content: '';
}
.clearfix::after {
  display: table;
  clear: both;
  content: '';
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.scrollbars-none {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.scrollbars-none::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.scrollbars-has {
  -ms-overflow-style: unset;
  overflow: auto;
}
.scrollbars-has::-webkit-scrollbar {
  display: unset;
  /* Chrome Safari */
}
.border-and-box-shadow-highlight {
  border: 1px solid #1890ff;
  box-shadow: 1px 1px 4px 1px rgba(24, 144, 255, 0.2), -1px -1px 4px 1px rgba(24, 144, 255, 0.2);
}
.zoom-in-top-enter {
  opacity: 0;
  transform: scaleY(0);
}
.zoom-in-top-enter-active {
  opacity: 1;
  transform: scaleY(1);
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms, opacity 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms;
  transform-origin: center top;
}
.zoom-in-top-exit {
  opacity: 1;
}
.zoom-in-top-exit-active {
  opacity: 0;
  transform: scaleY(0);
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms, opacity 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms;
  transform-origin: center top;
}
.zoom-in-left-enter {
  opacity: 0;
  transform: scale(0.45, 0.45);
}
.zoom-in-left-enter-active {
  opacity: 1;
  transform: scale(1, 1);
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms, opacity 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms;
  transform-origin: top left;
}
.zoom-in-left-exit {
  opacity: 1;
}
.zoom-in-left-exit-active {
  opacity: 0;
  transform: scale(0.45, 0.45);
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms, opacity 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms;
  transform-origin: top left;
}
.zoom-in-right-enter {
  opacity: 0;
  transform: scale(0.45, 0.45);
}
.zoom-in-right-enter-active {
  opacity: 1;
  transform: scale(1, 1);
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms, opacity 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms;
  transform-origin: top right;
}
.zoom-in-right-exit {
  opacity: 1;
}
.zoom-in-right-exit-active {
  opacity: 0;
  transform: scale(0.45, 0.45);
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms, opacity 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms;
  transform-origin: top right;
}
.zoom-in-bottom-enter {
  opacity: 0;
  transform: scaleY(0);
}
.zoom-in-bottom-enter-active {
  opacity: 1;
  transform: scaleY(1);
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms, opacity 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms;
  transform-origin: center bottom;
}
.zoom-in-bottom-exit {
  opacity: 1;
}
.zoom-in-bottom-exit-active {
  opacity: 0;
  transform: scaleY(0);
  transition: transform 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms, opacity 300ms cubic-bezier(0.23, 1, 0.32, 1) 100ms;
  transform-origin: center bottom;
}
.value-wrap .ant-input-group-wrapper {
  margin: 6px 0 9px 0;
}
.cwc-filter {
  display: flex;
  flex-direction: column;
  min-width: 320px;
  padding: 0.375rem 0.75rem;
}
.cwc-filter .cwc-filter-label {
  font-weight: 700;
}
.cwc-filter .cwc-filter-label .isRequire {
  color: #dc3545;
  margin-left: 6px;
  vertical-align: middle;
}
.cwc-filter .cwc-filter-title {
  display: flex;
  font-size: 0.875rem;
  font-weight: 400;
}
.cwc-filter .cwc-filter-content {
  display: flex;
  flex-direction: column;
  padding-left: 20px;
  overflow: auto;
}
.cwc-filter .cwc-filter-content .cwc-filter-config,
.cwc-filter .cwc-filter-content .cwc-filter-info {
  border-bottom: 1px solid #dee2e6;
}
.cwc-filter .cwc-filter-content .cwc-filter-config {
  padding: 8px 0;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope {
  margin: 0;
  display: flex;
  align-items: center;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-idx {
  color: #999;
  font-size: 14px;
  margin-right: 14px;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-field {
  margin-right: 8px;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-field-second {
  flex-basis: 10rem;
  margin-right: 8px;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-field {
  margin-right: 8px;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-op {
  flex-basis: 8rem;
  margin-right: 8px;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-valueType {
  flex-basis: 5rem;
  margin-right: 8px;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-value {
  flex: 1 1;
  margin-right: 8px;
  width: calc(100% - 330px);
  min-width: 130px;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-value .cwc-filter-config-content,
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-value .ant-input-number {
  width: 100%;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-value .ant-select-multiple .ant-select-selection-item {
  height: unset !important;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-value .ant-select-multiple .ant-select-selection-item-content {
  white-space: pre-wrap !important;
  display: -webkit-inline-box !important;
  /* 改回 -webkit-box 以支持省略号 */
  -webkit-line-clamp: 3 !important;
  /* 限制3行 */
  -webkit-box-orient: vertical !important;
  text-overflow: ellipsis !important;
  /* 确保显示省略号 */
  text-align: justify;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-value .ant-select-multiple .ant-select-selection-item-remove {
  align-content: center;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-content {
  line-height: initial;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-content.cwc-filter-config-field-content .ant-select {
  width: 220px;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-rm {
  width: 14px;
  height: 20px;
  cursor: pointer;
  display: inline-block;
  fill: #999;
  flex-shrink: 0;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-ope .cwc-filter-config-rm:hover svg {
  fill: red;
}
.cwc-filter .cwc-filter-content .cwc-filter-config .cwc-filter-config-errorMsg {
  color: #dc3545;
  font-size: 12px;
  margin-top: 6px;
}
.cwc-filter .cwc-filter-content .cwc-filter-info {
  font-weight: 400;
  position: relative;
  line-height: 1.5;
  padding: 0.375rem 0.75rem;
}
.cwc-filter .cwc-filter-content .cwc-filter-info .cwc-filter-card-mask {
  display: none;
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  cursor: pointer;
  text-align: center;
}
.cwc-filter .cwc-filter-content .cwc-filter-info .cwc-filter-card-mask .icon-edit {
  color: #0d6efd;
  position: relative;
  top: 7px;
  width: 18px;
  height: 18px;
}
.cwc-filter .cwc-filter-content .cwc-filter-info .cwc-filter-card-close {
  display: none;
  position: absolute;
  right: 0px;
  top: 0;
  bottom: 0;
  width: 30px;
  text-align: center;
  cursor: pointer;
}
.cwc-filter .cwc-filter-content .cwc-filter-info .cwc-filter-card-close .icon-close {
  position: relative;
  top: 7px;
  width: 18px;
  height: 18px;
}
.cwc-filter .cwc-filter-content .cwc-filter-info .cwc-filter-card-close:hover {
  color: #024dbc;
}
.cwc-filter .cwc-filter-content .cwc-filter-info .cwc-filter-card-info {
  display: flex;
  flex-wrap: wrap;
  font-size: 0.9rem;
  color: #6c757d;
}
.cwc-filter .cwc-filter-content .cwc-filter-info .cwc-filter-card-info .cwc-filter-card-info-field-empty {
  color: #adb5bd;
}
.cwc-filter .cwc-filter-content .cwc-filter-info .cwc-filter-card-info .cwc-filter-card-info-opvalue {
  flex: 1 1;
  margin-left: 10px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.cwc-filter .cwc-filter-content .cwc-filter-info.is-empty {
  font-size: 0.875rem;
  color: #adb5bd;
}
.cwc-filter .cwc-filter-content .cwc-filter-info.is-hover {
  background-color: #dee2e6;
}
.cwc-filter .cwc-filter-content .cwc-filter-info.is-hover .cwc-filter-card-mask {
  display: block;
  color: #024dbc;
}
.cwc-filter .cwc-filter-content .cwc-filter-info.is-hover .cwc-filter-card-close {
  display: block;
  color: #024dbc;
}
.cwc-filter .cwc-filter-content .cwc-filter-info.is-disabled .cwc-filter-card-info {
  cursor: not-allowed;
  color: #adb5bd;
}
.cwc-filter .cwc-filter-filterCtrl {
  font-size: 0.875rem;
  display: flex;
}
.cwc-filter .cwc-filter-filterCtrl .ant-btn:not(:first-child) {
  margin-left: 0.75rem;
}
.cwc-filter .cwc-filter-filterCtrl .ope {
  color: #1890ff;
  cursor: pointer;
}
.cwc-filter .cwc-filter-filterCtrl .ope:hover {
  color: #40a9ff;
}
.cwc-filter .cwc-filter-filterCtrl .ope.disabled {
  color: #cdcdcd;
}
.cwc-filter .cwc-filter-exprWrap {
  font-size: 0.875rem;
  margin-top: 0.3rem;
}
.cwc-filter .cwc-filter-exprWrap .disabled-link {
  cursor: not-allowed;
  color: #cdcdcd !important;
  pointer-events: none;
}
.cwc-filter .cwc-filter-value-multCascade {
  position: relative;
}
.cwc-filter .cwc-filter-value-multCascade.disabled {
  pointer-events: none;
}
.cwc-filter .cwc-filter-value-multCascade.disabled .cwc-filter-value-selected,
.cwc-filter .cwc-filter-value-multCascade.disabled .cwc-filter-value-selected .cwc-filter-value-selected-item {
  cursor: not-allowed;
  background: #F5F5F5;
  color: rgba(0, 0, 0, 0.25);
}
.cwc-filter .cwc-filter-value-multCascade.disabled .cwc-filter-value-selected .cwc-filter-value-selected-item {
  border: 1px solid #d9d9d9;
}
.cwc-filter .cwc-filter-value-multCascade.disabled .cwc-filter-value-selected-item-rmicon {
  cursor: not-allowed !important;
  color: rgba(0, 0, 0, 0.25) !important;
}
.cwc-filter .cwc-filter-value-multCascade .cwc-filter-value-selected {
  background-color: #fff;
  border: 1px solid #d9d9d9;
  border-radius: 2px;
  cursor: text;
  transition: all 0.3s cubic-bezier(0.645, 0.045, 0.355, 1);
  padding: 0 4px;
  min-height: 32px;
}
.cwc-filter .cwc-filter-value-multCascade .cwc-filter-value-selected .cwc-filter-search {
  display: inline-flex;
  max-width: 100%;
  height: 24px;
}
.cwc-filter .cwc-filter-value-multCascade .cwc-filter-value-selected .cwc-filter-search input {
  outline: none;
  border: none;
  min-width: 4px;
  width: 100%;
  padding: 0;
}
.cwc-filter .cwc-filter-value-multCascade .cwc-filter-value-selected .cwc-filter-search .input-label {
  position: absolute;
  top: 0;
  left: 0;
  opacity: 0;
}
.cwc-filter .cwc-filter-value-multCascade .cwc-filter-value-selected .cwc-filter-value-selected-item {
  position: relative;
  display: inline-flex;
  box-sizing: border-box;
  max-width: 100%;
  height: 24px;
  margin-top: 3px;
  margin-right: 4px;
  margin-bottom: 2px;
  padding: 0 23px 0 8px;
  line-height: 22px;
  background: #f5f5f5;
  border: 1px solid #f0f0f0;
  border-radius: 2px;
  cursor: default;
  transition: font-size 0.3s, line-height 0.3s, height 0.3s;
  -webkit-user-select: none;
          user-select: none;
}
.cwc-filter .cwc-filter-value-multCascade .cwc-filter-value-selected .cwc-filter-value-selected-item .cwc-filter-value-selected-item-content {
  display: inline-block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}
.cwc-filter .cwc-filter-value-multCascade .cwc-filter-value-selected .cwc-filter-value-selected-item .cwc-filter-value-selected-item-rmicon {
  -webkit-user-select: none;
          user-select: none;
  width: 24px;
  height: 24px;
  padding: 5px;
  cursor: pointer;
  display: inline-block;
  position: absolute;
  right: -2px;
  top: -3px;
  fill: #999;
}
.cwc-filter .cwc-filter-value-multCascade .cwc-filter-value-selected .cwc-filter-value-selected-item .cwc-filter-value-selected-item-rmicon:hover {
  fill: #333;
}
.cwc-filter .cwc-filter-value-multCascade .ant-cascader-picker,
.cwc-filter .cwc-filter-value-multCascade .ant-cascader {
  position: absolute;
  bottom: 4px;
  z-index: -1;
  left: 2px;
  visibility: hidden;
}
.cwc-filter .variable-cascader {
  border: 1px solid #d9d9d9;
  height: 32px;
}
.has-error .cwc-filter .variable-cascader {
  border-color: #ff4d4f;
}
.lookup-button-ellipsis {
  max-width: 100%;
}
.lookup-button-ellipsis span {
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
  width: 100%;
}
.biz-datalist-cur-label {
  width: -webkit-fit-content;
  width: fit-content;
  height: 28px;
  background: #F1F1F1;
  border-radius: 4px;
  text-align: center;
  margin: 4px 0;
  padding: 0 8px;
  overflow: hidden;
  display: flex;
  align-items: center;
}
.biz-datalist-cur-label .cur-label-close {
  font-size: 13px;
  line-height: 28px;
}
.biz-datalist-cur-label .cur-label {
  font-size: 14px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #222222;
  line-height: 28px;
  margin-right: 4px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.filterBusObjModal.cwc.disabled .ant-btn-primary {
  display: none;
}
.filterBusObjModal.cwc.custom-modal .ant-modal-body {
  max-height: unset;
  padding-bottom: 0;
}
.filterBusObjModal.cwc.multiple .ant-modal-body {
  padding-top: 0;
}
.filterBusObjModal.cwc .ant-table-pagination.ant-pagination {
  padding: 0;
}
.time-range-display {
  margin-top: 6px;
  margin-right: 20px;
  text-align: right;
  font-size: 12px;
}
.time-range-display .no-emphasis {
  color: #666;
}
.time-range-display .emphasis {
  font-weight: bold;
  color: #222;
}
.bizDataListModal-tabs-root.ant-tabs-top > .ant-tabs-nav {
  margin-bottom: 0;
}
.cwc-filter-value-cascader .ant-cascader-menus .ant-cascader-menu {
  max-width: 210px;
}
.cwc-filter-value-selected-item[data-islineclamp3="true"] {
  height: unset !important;
  align-items: center !important;
}
.cwc-filter-value-selected-item[data-islineclamp3="true"] span.cwc-filter-value-selected-item-content {
  white-space: pre-wrap !important;
  display: -webkit-inline-box !important;
  -webkit-line-clamp: 3 !important;
  -webkit-box-orient: vertical !important;
  text-overflow: ellipsis !important;
}
.cwc-filter-value-selected-item[data-islineclamp3="true"] .cwc-filter-value-selected-item-rmicon {
  display: flex !important;
  align-items: center !important;
  top: unset !important;
}
.cwc-item-picker {
  min-width: 85px;
}
.cwc-item-picker.cwc-item-picker-disabled {
  background-color: #f5f5f5;
}
.cwc-item-picker .ant-input-group-wrapper {
  margin: 0;
}
.theader-user-select {
  min-width: 500px;
  max-height: 330px;
  display: flex;
}
.theader-user-select[data-multiple="false"] {
  min-width: 300px;
}
.theader-user-select[data-multiple="false"] .theader-user-left {
  padding: 0;
}
.theader-user-select .theader-user-left,
.theader-user-select .theader-user-right {
  display: table-cell;
}
.theader-user-select .theader-user-left {
  display: flex;
  flex-direction: column;
  min-width: 300px;
  max-width: 400px;
  padding: 0 12px 0 0;
  overflow: hidden;
}
.theader-user-select .theader-user-left .left-header {
  display: flex;
  align-items: center;
  width: 100%;
}
.theader-user-select .theader-user-left .left-header .left-header-search {
  flex: 1 1;
  overflow: hidden;
}
.theader-user-select .theader-user-left .left-header .left-header-search .input-search .ant-input {
  max-height: 26px;
}
.theader-user-select .theader-user-left .left-header .left-header-search .input-search .ant-input-affix-wrapper {
  height: 28px;
  overflow: hidden;
}
.theader-user-select .theader-user-left .left-header .left-header-search .input-search .ant-input-group-addon {
  left: -1px;
}
.theader-user-select .theader-user-left .left-header .left-header-search .input-search .ant-input-group-addon .ant-input-search-button {
  height: 28px;
}
.theader-user-select .theader-user-left .left-header .left-header-search .input-search .ant-input-group-addon .ant-input-search-button .anticon-search {
  font-size: 14px;
}
.theader-user-select .theader-user-left .left-header .left-header-dimission {
  flex-shrink: 0;
  font-size: 12px;
  padding-left: 20px;
}
.theader-user-select .theader-user-left .left-header .left-header-dimission .ant-checkbox-inner::after {
  top: 46%;
  left: 20%;
}
.theader-user-select .theader-user-left .item-picker-content-body-dept .ant-tree-checkbox {
  margin-right: 2px;
}
.theader-user-select .theader-user-left .item-picker-content-body-dept .ant-tree .ant-tree-treenode {
  padding-bottom: 0;
  height: 23px;
}
.theader-user-select .theader-user-left .item-picker-content-body-dept .ant-tree-checkbox-inner {
  width: 14px;
  height: 14px;
}
.theader-user-select .theader-user-left .item-picker-content-body-dept .ant-tree-checkbox-checked .ant-tree-checkbox-inner::after {
  left: 20.5%;
}
.theader-user-select .theader-user-left .item-picker-content-body-dept .item-picker-tree-node-dept-title,
.theader-user-select .theader-user-left .item-picker-content-body-dept .item-picker-tree-node-user-title {
  font-size: 12px;
  color: #222;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  display: flex;
}
.theader-user-select .theader-user-left .item-picker-content-body-dept .item-picker-tree-node-dept-title[data-isparttime="true"],
.theader-user-select .theader-user-left .item-picker-content-body-dept .item-picker-tree-node-user-title[data-isparttime="true"] {
  align-items: center;
}
.theader-user-select .theader-user-left .item-picker-content-body-dept .item-picker-content-dept-radio {
  width: 100%;
  height: 100%;
  overflow: hidden;
}
.theader-user-select .theader-user-left .item-picker-content-body-dept .item-picker-content-dept-radio .ant-radio-inner {
  width: 14px;
  height: 14px;
}
.theader-user-select .theader-user-left .item-picker-content-body-dept .item-picker-content-dept-radio .item-picker-tree-node-dept-title {
  margin-left: 0;
}
.theader-user-select .theader-user-left .item-picker-content-body-dept .item-picker-content-dept-radio .item-picker-tree-node-user-title {
  margin-left: 0;
}
.theader-user-select .theader-user-left .item-picker-content-body-dept .ant-tree-list-holder-inner {
  position: unset !important;
}
.theader-user-select .search-keyowrd {
  color: #1890FF;
}
.theader-user-select .theader-user-right {
  width: 200px;
  padding: 6px 12px 0;
  border-left: 1px solid #DFDFDF;
  box-sizing: border-box;
  overflow: auto;
}
.theader-user-select .theader-user-right .choosed-list {
  margin-top: 12px;
}
.theader-user-select .theader-user-right .choosed-list .choose-list-item {
  width: -webkit-fit-content;
  width: fit-content;
  max-width: 100%;
  display: flex;
  align-items: center;
  height: 20px;
  line-height: 20px;
  padding: 0 8px;
  margin-bottom: 7px;
  background-color: rgba(0, 0, 0, 0.06);
  border-radius: 2px;
}
.theader-user-select .theader-user-right .choosed-list .choose-list-item .item-picker-item-content {
  flex: 1 1;
  height: 20px;
  line-height: 20px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.theader-user-select .theader-user-right .choosed-list .choose-list-item .item-picker-item-content span {
  max-width: 100%;
  font-size: 12px;
}
.theader-user-select .theader-user-right .choosed-list .choose-list-item .item-picker-item-content-count,
.theader-user-select .theader-user-right .choosed-list .choose-list-item .anticon-close {
  flex-shrink: 0;
}
.theader-user-select .theader-user-right .choosed-list .choose-list-item .anticon-close {
  margin-left: 12px;
  color: #909090;
}
.theader-user-select .normal-text {
  font-size: 12px;
  color: #222;
}
.theader-user-footer {
  width: 100%;
  display: flex;
  justify-content: flex-end;
  padding-right: 12px;
  padding-bottom: 12px;
}
.theader-user-footer .ant-btn {
  margin-left: 8px;
  border-radius: 4px;
}
.theader-user-select-popover {
  padding: 12px 15px;
  box-sizing: content-box;
}
.cwc-item-picker-pop-wrap {
  z-index: 2000;
}
.cwc-item-picker-pop-wrap .ant-popover-arrow {
  display: none;
}
.cwc-item-picker-pop-wrap .ant-popover-content {
  position: relative;
  top: -16px;
}
.cwc-item-picker-pop-wrap .ant-popover-content .ant-popover-inner-content {
  padding: 0;
}
.item-picker-user-item {
  line-height: 31px;
  cursor: pointer;
}
.item-picker-user-label {
  display: inline-block;
  height: 100%;
}
.item-picker-user-label .ant-checkbox-wrapper,
.item-picker-user-label .ant-radio-wrapper {
  width: 148px;
  max-width: 148px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.item-picker-user-label .ant-checkbox-wrapper .user-label-name,
.item-picker-user-label .ant-radio-wrapper .user-label-name {
  color: #222222;
  font-size: 12px;
}
.item-picker-user-info {
  color: #999999;
  font-size: 12px;
  height: 100%;
  line-height: 23px;
  cursor: default;
  display: inline-block;
  position: absolute;
  right: 0;
}
.item-picker-user-info .item-picker-user-info-dept,
.item-picker-user-info .item-picker-user-info-role {
  max-width: 140px;
  vertical-align: middle;
  height: 20px;
  line-height: 20px;
  display: inline-block;
  padding: 0 8px;
  border-radius: 2px;
  background-color: #0000000F;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  position: relative;
  top: -2px;
}
.item-picker-user-info .item-picker-user-info-role {
  margin-right: 10px;
  max-width: 100px;
}
.item-picker-selected-search {
  height: 26px;
  position: relative;
  top: -4px;
  display: inline-block;
  width: auto;
  max-width: 100%;
  padding: 0;
  vertical-align: text-bottom;
  margin-left: 10px;
}
.item-picker-selected-search .item-picker-selected-search-wrap {
  width: 100%;
  height: 100%;
  position: relative;
  display: inline-block;
}
.item-picker-selected-search .item-picker-selected-search-wrap .item-picker-selected-search-input {
  width: 0.75em;
  max-width: 100%;
  padding: 1px;
  height: 100%;
  font-size: 100%;
  line-height: 1;
  background: 0 0;
  border-width: 0;
  border-radius: 4px;
  outline: 0;
}
.item-picker-selected-search .item-picker-selected-search-wrap .item-picker-selected-search-input-mirror {
  position: absolute;
  top: 0;
  left: 0;
  white-space: pre;
  opacity: 0;
  pointer-events: none;
}
.item-user-picker-header {
  position: relative;
  border: 1px solid #cccccc;
  border-radius: 2px;
  overflow: hidden;
  height: 100%;
  display: flex;
  align-items: center;
}
.item-user-picker-header:hover {
  border: 1px solid #40a9ff;
}
.item-user-picker-header .item-user-picker-selected {
  min-height: 30px;
  height: 30px;
  max-height: 30px;
  flex: 1 1;
  overflow: hidden;
  transition: all 0.5s ease-in-out;
  padding: 0 4px;
  cursor: pointer;
  position: relative;
  display: flex;
  align-items: center;
}
.item-user-picker-header .item-user-picker-selected .placeholder-txt {
  color: #cdcdcd;
  font-size: 14px;
  margin-left: 3px;
}
.item-user-picker-header .item-user-picker-selected .item-user-picker-selected-item {
  display: inline-block;
  flex-shrink: 0;
  height: 20px;
  max-height: 20px;
  line-height: 20px;
  color: #222;
  background-color: #EDEDED;
  position: relative;
  border-radius: 4px;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  -webkit-user-select: none;
          user-select: none;
}
.item-user-picker-header .item-user-picker-selected .item-user-picker-selected-item .icon-close {
  width: 10px;
  height: 10px;
  margin-left: 5.5px;
  fill: #999;
  cursor: pointer;
  transition: all 0.1s ease-in;
}
.item-user-picker-header .item-user-picker-selected .item-user-picker-selected-item .icon-close:hover {
  fill: black;
}
.item-user-picker-header .item-user-picker-selected.single-modal .item-user-picker-selected-item {
  background-color: unset;
}
.item-user-picker-header .user-picker-header-right {
  display: flex;
  align-items: baseline;
}
.item-user-picker-header .user-picker-header-right .item-picker-clear,
.item-user-picker-header .user-picker-header-right .item-picker-down {
  font-size: 14px;
  flex-shrink: 0;
  color: #999;
  cursor: pointer;
}
.item-user-picker-header .user-picker-header-right .item-picker-clear .anticon,
.item-user-picker-header .user-picker-header-right .item-picker-down .anticon {
  position: relative;
  top: -3px;
}
.item-user-picker-header .user-picker-header-right .item-picker-clear:hover,
.item-user-picker-header .user-picker-header-right .item-picker-down:hover {
  color: #222;
}
.item-user-picker-header .user-picker-header-right .item-picker-clear {
  width: 12px;
  height: 12px;
}
.item-user-picker-header .user-picker-header-right .item-picker-clear .icon-clear {
  width: 100%;
  margin-left: 6px;
  position: relative;
  top: -2px;
}
.item-user-picker-header .user-picker-header-right .item-picker-down {
  margin-left: 11px;
  margin-right: 8px;
  width: 14px;
  height: 14px;
}
.item-user-picker-header-focus {
  border: 1px solid #5480d7;
}
.item-user-picker-header-focus:hover {
  border: 1px solid #5480d7;
}
.item-picker-tabs {
  border: 1px solid #cccccc;
  border-top: none;
  border-bottom: none;
}
.item-picker-tabs .item-picker-tabItem {
  color: #515151;
  margin-left: 20px;
  cursor: pointer;
  -webkit-user-select: none;
          user-select: none;
}
.item-picker-tabs .item-picker-tabItem.active {
  color: #0d6efd;
}
.item-picker-tabs .item-picker-tabItem:hover {
  color: #0d6efd;
}
.item-picker-content {
  transition: height 0.2s cubic-bezier(0.075, 0.82, 0.165, 1);
  overflow: hidden;
  flex: 1 1;
  margin-top: 10px;
}
.cwc-userPicker .item-picker-content-tab {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.cwc-userPicker .item-picker-content-tab .item-picker-content-tab-item {
  width: 60px;
  height: 22px;
  line-height: 22px;
  color: #222;
  text-align: center;
  font-size: 12px;
  cursor: pointer;
  position: relative;
  transition: all 0.1s ease-in-out;
  -webkit-user-select: none;
          user-select: none;
}
.cwc-userPicker .item-picker-content-tab .item-picker-content-tab-item.active::after {
  content: '';
  display: inline-block;
  height: 2px;
  width: 60px;
  background-color: #1890FF;
  position: absolute;
  left: 0;
  bottom: -2px;
  transition: all 0.3s ease-in-out;
}
.cwc-userPicker .item-picker-content-tab .item-picker-content-tab-item:hover,
.cwc-userPicker .item-picker-content-tab .item-picker-content-tab-item.active {
  color: #1890FF;
}
.item-picker-content-body {
  position: relative;
  overflow: hidden;
}
.item-picker-content-body .item-picker-content-body-title {
  margin: 10px 10px 0 10px;
  border-radius: 4px;
  height: 30px;
  line-height: 30px;
  text-align: center;
  font-size: 0.875rem;
  color: #515151;
  background-color: #eeeeee;
}
.item-picker-content-body .item-picker-content-body-user .item-picker-content-body-user-checkall {
  padding: 14px 10px 0;
}
.item-picker-content-body .item-picker-content-body-user .item-picker-content-body-user-checkall .ant-checkbox-wrapper span {
  color: #222;
  font-size: 12px;
}
.item-picker-content-body .item-picker-content-body-user .item-picker-divider {
  margin: 6px 10px;
  height: 1px;
  background-color: #e9e9e9;
  flex: 0 0 1px;
}
.item-picker-content-body .item-picker-content-body-user .item-picker-list-wrap {
  display: flex;
  flex-direction: column;
}
.item-picker-content-body .item-picker-content-body-user .item-picker-list-wrap .item-picker-user-label {
  color: #222;
}
.item-picker-content-body .item-picker-content-body-user .item-picker-list-wrap .item-picker-user-label .keyword {
  color: #1890FF;
}
.item-picker-content-body .item-picker-content-body-user .item-picker-list-wrap .item-picker-user-label .ant-checkbox-inner::after {
  top: 42%;
  left: 20%;
}
.item-picker-content-body .item-picker-content-body-user .item-picker-list-wrap .item-picker-user-label .ant-checkbox-indeterminate .ant-checkbox-inner::after {
  top: 48%;
  left: 50%;
}
.item-picker-content-body .item-picker-content-body-user .item-picker-list-wrap .item-picker-user-label .ant-checkbox-inner,
.item-picker-content-body .item-picker-content-body-user .item-picker-list-wrap .item-picker-user-label .ant-radio-inner {
  width: 14px;
  height: 14px;
}
.item-picker-content-body .item-picker-content-body-user .item-picker-list-wrap > div,
.item-picker-content-body .item-picker-content-body-user .item-picker-list-wrap > .ant-radio-group > div {
  overflow-x: hidden !important;
  height: 100% !important;
  max-height: 292px;
}
.item-picker-content-body .item-picker-user-item {
  line-height: 23px;
}
.item-picker-content-body .item-picker-user-item .select-btn {
  right: 0;
}
.item-picker-content-body .ant-radio-group {
  width: 100%;
}
.itemPick-backTo-list {
  position: absolute;
  width: 50px;
  height: 1.25rem;
  line-height: 1.25rem;
  text-align: left;
  z-index: 1;
  background-color: #20c997;
  font-size: 12px;
  color: #fff;
  opacity: 0.7;
  top: 15px;
  cursor: pointer;
  display: none;
}
.itemPick-backTo-list .icon-arrow-left {
  width: 14px;
  height: 14px;
  fill: #fff;
  position: relative;
  top: 2px;
}
.itemPick-backTo-list .circle {
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  position: absolute;
  right: -0.625rem;
  background-color: #20c997;
  z-index: -1;
}
.itemPick-backTo-list:hover {
  background-color: #199d76;
}
.itemPick-backTo-list:hover .circle {
  background-color: #199d76;
}
.item-picker-loading-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  min-height: 75px;
}
.cwc-loading {
  margin: 0 auto;
  margin-top: 60px;
  text-align: center;
}
.cwc-loading > span {
  display: inline-block;
  width: 13px;
  height: 40px;
  border-radius: 4px;
  background: #cccccc;
  animation: load 1s ease infinite;
}
@keyframes load {
  0%,
  100% {
    height: 40px;
    background: #cccccc;
  }
  50% {
    height: 70px;
    margin: -15px 0;
    background: #eeeeee;
  }
}
.cwc-loading span:nth-child(2) {
  animation-delay: 0.2s;
}
.cwc-loading span:nth-child(3) {
  animation-delay: 0.4s;
}
.cwc-loading span:nth-child(4) {
  animation-delay: 0.6s;
}
.cwc-loading span:nth-child(5) {
  animation-delay: 0.8s;
}
.noData-wrap {
  text-align: center;
}
.noData-wrap .noData-txt {
  height: 30px;
  line-height: 30px;
  -webkit-user-select: none;
          user-select: none;
  color: #cccccc;
  font-size: 12px;
  margin-top: -20px;
}
.noData-wrap .icon-noData {
  width: 128px;
  height: 128px;
  fill: #cccccc;
}
.noData-wrap .op {
  color: #0d6efd;
  cursor: pointer;
}
.cwd-favorite {
  overflow-y: auto;
  font-size: 12px;
}
.cwd-favorite .item-picker-favorite-add {
  -webkit-user-select: none;
          user-select: none;
}
.cwd-favorite .item-picker-favorite-add .icon-add {
  width: 10px;
  height: 10px;
  fill: #1890FF;
  margin-right: 4px;
}
.cwd-favorite .item-picker-favorite-add .op {
  color: #1890FF;
  cursor: pointer;
}
.cwd-favorite .item-picker-favorite-add .add {
  margin: 10px 0 0 12px;
  cursor: pointer;
  display: inline-block;
}
.cwd-favorite .ant-tree-drop-indicator {
  display: none !important;
}
.cwd-favorite .dragging {
  cursor: grabbing !important;
}
.cwd-favorite .ant-tree-treenode-selected {
  background-color: #EFF7FF !important;
}
.cwd-favorite .drag-over-gap-top {
  box-shadow: 0 -3px #1890FF;
}
.cwd-favorite .drag-over,
.cwd-favorite .drag-over-gap-bottom {
  box-shadow: 0 3px #1890FF;
}
.cwd-favorite .ant-spin-nested-loading {
  height: auto;
}
.cwd-favorite .ant-radio-wrapper {
  font-size: 12px;
}
.cwd-favorite .ant-radio-inner {
  width: 14px;
  height: 14px;
}
.cwd-favorite .ant-tree-checkbox {
  margin-right: 2px;
}
.cwd-favorite .ant-tree-checkbox .ant-tree-checkbox-inner {
  width: 14px;
  height: 14px;
}
.ant-radio-wrapper:hover .ant-radio-inner {
  border-color: #1890ff;
}
.ant-checkbox-wrapper:hover .ant-checkbox-inner {
  border-color: #1890ff;
}
.ant-tree-treenode:hover .ant-tree-checkbox-inner {
  border-color: #1890ff;
}
.item-picker-favorite-item {
  margin: 4px 2px 0;
  font-size: 12px;
}
.item-picker-favorite-item .item-picker-favorite-op {
  height: 22px;
  display: none;
  font-size: 12px;
  vertical-align: middle;
}
.item-picker-favorite-item .ant-checkbox-inner::after {
  top: 36%;
  left: 20%;
}
.item-picker-favorite-item .ant-checkbox-indeterminate .ant-checkbox-inner::after {
  top: 45%;
  left: 50%;
}
.item-picker-favorite-item .ant-tree-node-content-wrapper:hover .item-picker-favorite-op {
  display: inline-block;
}
.item-picker-favorite-item .item-picker-favorite-op-edit,
.item-picker-favorite-item .item-picker-favorite-op-del {
  margin-left: 10px;
  vertical-align: middle;
  cursor: pointer;
  fill: #666;
}
.item-picker-favorite-item .item-picker-favorite-op-edit:hover svg,
.item-picker-favorite-item .item-picker-favorite-op-del:hover svg {
  fill: #0d6efd;
}
.item-picker-favorite-item .item-picker-favorite-op-edit > svg,
.item-picker-favorite-item .item-picker-favorite-op-del > svg {
  fill: #666;
  width: 14px;
  height: 14px;
}
.item-picker-dept-select {
  z-index: 2001;
}
.item-picker-dept-select .ant-select-tree-title {
  font-size: 12px;
}
.item-picker-dept-select .ant-select-tree li {
  margin: 0;
}
.cwd-favorite .item-picker-content-dept-radio {
  width: 100%;
}
.item-picker-user-item,
.cwc-userPicker .ant-tree-treenode {
  transition: all 0.3s, border 0s, line-height 0s, box-shadow 0s;
  padding-bottom: 0;
}
.item-picker-user-item .ant-tree-draggable-icon,
.cwc-userPicker .ant-tree-treenode .ant-tree-draggable-icon {
  opacity: 0;
  color: #666;
}
.item-picker-user-item:hover,
.cwc-userPicker .ant-tree-treenode:hover {
  background: #EFF7FF !important;
}
.item-picker-user-item:hover .ant-tree-draggable-icon,
.cwc-userPicker .ant-tree-treenode:hover .ant-tree-draggable-icon {
  opacity: 1;
}
.item-picker-user-item:hover .item-picker-favorite-op,
.cwc-userPicker .ant-tree-treenode:hover .item-picker-favorite-op {
  display: inline-block;
}
.item-picker-user-item .ant-tree-node-content-wrapper:hover,
.cwc-userPicker .ant-tree-treenode .ant-tree-node-content-wrapper:hover {
  background-color: #EFF7FF !important;
}
.item-picker-user-item .ant-tree-node-selected,
.cwc-userPicker .ant-tree-treenode .ant-tree-node-selected {
  background-color: #EFF7FF !important;
}
.item-picker-user-item .anticon-holder,
.cwc-userPicker .ant-tree-treenode .anticon-holder {
  cursor: grab !important;
}
.item-picker-user-item .select-btn,
.cwc-userPicker .ant-tree-treenode .select-btn {
  position: fixed;
  right: 5px;
  display: none;
  z-index: 2;
  font-size: 12px;
  margin-bottom: 1.5px;
  transition: all 0.3s, border 0s, line-height 0s, box-shadow 0s;
}
.item-picker-user-item .select-btn .only-select,
.cwc-userPicker .ant-tree-treenode .select-btn .only-select {
  display: inline-block;
  width: 72px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #1890FF;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  color: #1890FF;
  text-align: center;
  line-height: 18px;
}
.item-picker-user-item .select-btn .add-favorite,
.cwc-userPicker .ant-tree-treenode .select-btn .add-favorite {
  display: inline-block;
  width: 20px;
  background: #FFFFFF;
  border-radius: 4px;
  border: 1px solid #1890FF;
  color: #1890FF;
  text-align: center;
  line-height: 18px;
  margin-left: 4px;
}
.item-picker-user-item .part-time,
.cwc-userPicker .ant-tree-treenode .part-time {
  width: 40px;
  height: 18px;
  background: #E8F5FC;
  border-radius: 4px;
  border: 1px solid #30A4E5;
  font-family: PingFangSC, PingFang SC;
  font-weight: 400;
  font-size: 12px;
  color: #30A4E5;
  line-height: 16px;
  font-style: normal;
  text-align: center;
  margin-left: 4px;
}
.item-picker-user-item:hover .select-content,
.cwc-userPicker .ant-tree-treenode:hover .select-content {
  display: flex;
  align-items: center;
}
.item-picker-user-item:hover .select-btn,
.cwc-userPicker .ant-tree-treenode:hover .select-btn {
  display: block;
}
.cwc-userPicker .ant-tree-treenode {
  width: 100%;
}
.cwc-userPicker .ant-tree-list-holder-inner {
  transform: translateX(0px);
}
.cwc-userPicker .ant-tree-list-holder-inner .only-select-cur-user {
  position: fixed;
  right: 0;
}
.user-tabs .cwc-userPicker > div.item-picker-content-body > div > div > div > div.ant-tree-list > div.ant-tree-list-holder > div {
  overflow: initial !important;
}
.input-number-wrap {
  transition: all 0.3s;
  position: relative;
}
.input-number-wrap:hover .input-number-handler-wrap {
  opacity: 1;
}
.input-number-wrap .input-number-handler-wrap {
  background: #fff;
  border-left: 1px solid #d9d9d9;
  border-radius: 0 2px 2px 0;
  height: 86%;
  opacity: 1;
  position: absolute;
  transition: opacity 0.24s linear 0.1s;
  width: 22px;
  right: 2px;
  top: 2px;
  z-index: 2;
  display: flex;
  flex-direction: column;
}
.input-number-wrap .input-number-handler-wrap.has-addon-after {
  height: 100%;
  border: 1px solid #d9d9d9;
  top: unset;
  border-right: 0;
}
.input-number-wrap .input-number-handler-wrap.has-addon-after .ant-input-group-addon:last-child {
  padding-right: unset;
}
.input-number-wrap .input-number-handler-wrap .input-icon-item {
  height: 50%;
  color: rgba(0, 0, 0, 0.45);
  display: block;
  font-weight: 700;
  line-height: 0;
  overflow: hidden;
  text-align: center;
  transition: all 0.1s linear;
}
.input-number-wrap .input-number-handler-wrap .input-icon-item:hover {
  height: 65%;
  color: #40a9ff;
}
.input-number-wrap .input-number-handler-wrap .input-icon-item:first-child {
  border-bottom: 1px solid #d9d9d9;
}
.input-number-wrap .input-number-handler-wrap .input-icon-item .anticon {
  height: 100%;
  width: 100%;
  font-size: 10px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.input-number-wrap .input-number-handler-wrap .input-icon-item-disabled .anticon {
  cursor: not-allowed;
}
.input-number-wrap .input-number-handler-wrap .input-icon-item-disabled .anticon:hover {
  color: rgba(0, 0, 0, 0.25);
}
.input-number-wrap .ant-input-group-addon:last-child {
  padding-right: 30px;
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input {
  border-radius: 4px;
  padding-right: 30px;
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input.addonAfter {
  padding-right: 24px;
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input.addonAfter .ant-input-group-addon {
  padding-right: 8px;
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input.empty,
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input.ant-input-affix-wrapper-disabled {
  color: #999;
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input:hover,
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input:focus,
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input:visited,
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input .ant-input-number:focus {
  border: 1px solid #1890ff;
  box-shadow: 1px 1px 4px 1px rgba(24, 144, 255, 0.2), -1px -1px 4px 1px rgba(24, 144, 255, 0.2);
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input:hover.addonAfter,
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input:focus.addonAfter,
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input:visited.addonAfter,
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input .ant-input-number:focus.addonAfter {
  border: 0;
  box-shadow: unset;
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input:hover.addonAfter .ant-input-affix-wrapper,
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input:focus.addonAfter .ant-input-affix-wrapper,
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input:visited.addonAfter .ant-input-affix-wrapper,
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input .ant-input-number:focus.addonAfter .ant-input-affix-wrapper {
  border: 1px solid #1890ff;
  box-shadow: 1px 1px 4px 1px rgba(24, 144, 255, 0.2), -1px -1px 4px 1px rgba(24, 144, 255, 0.2);
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input.ant-input-affix-wrapper-disabled {
  border: 1px solid #dfdfdf;
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .cwc-hecom-input.ant-input-affix-wrapper-disabled:hover {
  box-shadow: unset;
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .error {
  border-color: #ff4d4f !important;
  box-shadow: unset !important;
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .ant-input-affix-wrapper-focused {
  box-shadow: 1px 1px 4px 1px rgba(24, 144, 255, 0.2), -1px -1px 4px 1px rgba(24, 144, 255, 0.2);
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .he-input .ant-tooltip-open .ant-input-affix-wrapper:hover {
  border: 1px solid #1890ff;
  box-shadow: 1px 1px 4px 1px rgba(24, 144, 255, 0.2), -1px -1px 4px 1px rgba(24, 144, 255, 0.2);
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .hecom-input-description {
  height: 20px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #999999;
  line-height: 20px;
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .hecom-input-message {
  height: 20px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  line-height: 20px;
  color: #ff4d4f;
}
.custom-modal .ant-modal .ant-modal-body .form-item-p .hecom-input-icon {
  margin-left: 2px;
  margin-right: -18px;
  vertical-align: text-bottom;
}
.custom-resize-table table {
  table-layout: fixed;
}
.custom-resize-table .react-resizable-handle {
  position: absolute;
  width: 10px;
  height: 100%;
  bottom: 0;
  right: -5px;
  cursor: col-resize;
}
.custom-resize-table .react-resizable-handle::before {
  content: '';
  width: 1px;
  height: 100%;
  background: #eee;
  display: block;
  margin-left: 5px;
}
.custom-resize-table .ant-table-thead tr {
  height: 40px !important;
}
.custom-resize-table .ant-table-thead tr th {
  padding: 0px 8px !important;
  height: 40px;
  white-space: nowrap;
  font-size: 14px;
  color: #222;
  font-weight: 500;
  border-bottom-color: #eee;
  overflow: hidden;
  text-overflow: ellipsis;
  background: #fafafa;
}
.custom-resize-table .ant-table-thead tr th .ant-table-column-sorters {
  display: flex;
  height: 16px;
  cursor: pointer;
  overflow: hidden;
}
.custom-resize-table .ant-table-thead tr th .ant-table-column-sorters .ant-table-column-title {
  flex: 1 1;
  width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
}
.custom-resize-table .ant-table-thead tr th .ant-table-column-sorters .ant-table-column-sorter {
  width: 20px;
  margin: -2px 0 0 3px;
}
.custom-resize-table .ant-table-thead tr th .ant-table-column-sorters .ant-table-column-sorter .ant-table-column-sorter-inner {
  display: flex;
  height: 16px;
  position: relative;
  flex-direction: column;
  top: -0.15em;
  margin-left: 0;
  width: 12px;
  margin-right: 3px;
}
.custom-resize-table .ant-table-thead tr th .ant-table-column-sorters .ant-table-column-sorter .ant-table-column-sorter-inner .on {
  color: #1890ff;
}
.custom-resize-table .ant-table-thead tr th .ant-table-column-sorters .hidden {
  visibility: hidden;
}
.custom-resize-table .ant-table-body {
  overflow: overlay !important;
}
.custom-resize-table .ant-table-tbody .ant-table-row-indent + .ant-table-row-expand-icon {
  margin-top: 0;
}
.custom-resize-table .ant-table-tbody tr:hover td {
  background-color: #EFF7FF !important;
}
.custom-resize-table .ant-table-tbody td {
  padding: 0px 8px !important;
  height: 40px;
  border-bottom: 1px solid #E2E4EA;
}
.custom-resize-table .fix-freeze {
  background: #f7f8fa;
}
.custom-resize-table td.dept-col {
  vertical-align: top;
}
.custom-resize-table .hidden-col-custom {
  visibility: hidden;
}
.custom-resize-table .ant-table-header {
  background: #fff;
  border-top: none;
}
.custom-resize-table .ant-table-header .ant-table-column-sorters {
  cursor: pointer;
}
.custom-resize-table .ant-table-header table.ant-table-fixed {
  border-top: none;
}
.custom-resize-table .ant-table-header table.ant-table-fixed .ant-table-thead tr:first-child > th {
  border-top: 1px solid #e8e8e8;
}
.custom-resize-table td div.right {
  text-align: right;
}
.custom-resize-table td div.elipsis {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.custom-resize-table td.right {
  text-align: right;
}
.custom-resize-table .expanded-tr-dom:hover {
  background-color: #F1F9FF;
}
.custom-resize-table .expanded-tr-dom > td {
  padding: 0 !important;
}
.custom-resize-table .expanded-tr-dom > td .ant-table-expanded-row-fixed {
  padding: 0;
  margin: 0;
}
.custom-resize-table .expanded-tr-dom .expand-table .ant-table {
  margin: 0 !important;
  background-color: #f1f9ff;
}
.ant-table.ant-table-bordered > .ant-table-container > .ant-table-header > table > thead > tr:not(:last-child) > th {
  border-bottom: 1px solid #f0f0f0;
}
.ant-upload-list-item-actions {
  width: 100%;
  display: flex;
  justify-content: space-evenly;
}
.ant-upload-list-item-actions .ant-btn {
  width: 16px;
  height: 16px;
}
.ant-upload-list-item-actions .ant-btn .close-ico {
  font-size: 12px !important;
  color: rgba(255, 255, 255, 0.85) !important;
}
.ant-upload-list-item-actions a {
  width: 16px !important;
  height: 16px !important;
}
.view-360-layout {
  background: #EDEDED;
}
.view-360-layout .layout-row {
  display: flex;
  margin-bottom: 4px;
}
.view-360-layout .layout-row:last-child {
  margin-bottom: 0;
  padding-bottom: 8px;
}
.view-360-layout .layout-col {
  margin-left: 4px;
  background-color: #ffffff;
}
.view-360-layout .layout-col:nth-child(1) {
  margin-left: 0;
}
.view360-layout-component {
  padding: 8px 16px;
  background-color: #ffffff;
}
.view360-layout-component:empty {
  display: none;
}
.view360-layout-component:not(:first-of-type) {
  border-top: 4px solid #EDEDED;
}
.view360-layout-component .title-area {
  display: flex;
  align-items: center;
  margin-bottom: 12px;
}
.view360-layout-component .vertical-line {
  width: 1px;
  height: 16px;
  border: 2px solid #FD6364;
}
.view360-layout-component .layout-component-title {
  position: relative;
  left: 8px;
  height: 22px;
  color: #222222;
  font: 500 16px/22px PingFangSC-Medium, PingFang SC;
}
.ant-modal-wrap.view360-modal,
.multiTab-modal.view360-modal {
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden auto;
}
.ant-modal-wrap.view360-modal .ant-modal,
.multiTab-modal.view360-modal .ant-modal {
  inset: unset !important;
  width: calc(100vw - 40px) !important;
}
.ant-modal-wrap.view360-modal .ant-modal-content,
.multiTab-modal.view360-modal .ant-modal-content {
  height: 100%;
}
.ant-modal-wrap.view360-modal .ant-modal-body,
.multiTab-modal.view360-modal .ant-modal-body {
  max-height: calc(100vh - 91px);
  overflow-y: overlay !important;
  overflow-x: hidden !important;
  padding: unset !important;
}
.ant-modal-wrap.view360-modal .ant-modal-header,
.multiTab-modal.view360-modal .ant-modal-header {
  padding: 0px 16px;
  background-color: #ededed;
}
.ant-modal-wrap.view360-modal .ant-modal-header .ant-modal-title,
.multiTab-modal.view360-modal .ant-modal-header .ant-modal-title {
  display: flex;
  height: 52px;
  line-height: 52px;
  color: #222222;
  font-family: PingFangSC-Medium, PingFang SC;
  font-weight: 500;
  align-items: center;
}
.ant-modal-wrap.view360-modal .ant-modal-header .ant-modal-title:before,
.multiTab-modal.view360-modal .ant-modal-header .ant-modal-title:before {
  content: '';
  margin: auto 0;
}
.ant-modal-wrap.view360-modal .view-title,
.multiTab-modal.view360-modal .view-title {
  margin-left: 12px;
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
}
.ant-modal-wrap.view360-modal .view-meta-name,
.multiTab-modal.view360-modal .view-meta-name {
  margin-left: 20px;
  color: #999999;
  font: 400 12px/52px PingFangSC-Medium, PingFang SC;
}
.ant-modal-wrap.view360-modal .ant-modal-close .ant-modal-close-x,
.multiTab-modal.view360-modal .ant-modal-close .ant-modal-close-x {
  width: 36px;
  height: 52px;
  line-height: 52px;
}
.ant-modal-wrap.view360-modal .icon-a-360shitu,
.multiTab-modal.view360-modal .icon-a-360shitu {
  display: none;
}
.ant-modal-wrap.view360-modal .icon-zhiding,
.multiTab-modal.view360-modal .icon-zhiding {
  font-size: 24px;
  position: fixed;
  bottom: 28px;
  right: 36px;
  cursor: pointer;
}
.multiTab-modal.view360-modal {
  display: block;
  overflow: auto;
}
.multiTab-modal.view360-modal .ant-modal-body {
  max-height: 100vh !important;
  padding: unset !important;
  overflow: visible !important;
}
.set-import-match-fields .ant-modal .ant-modal-body {
  padding: 16px 16px 0 16px;
  overflow: hidden;
}
.set-import-match-fields .set-import-match-fields-tip {
  color: #222222;
  line-height: 20px;
  font-size: 14px;
  margin-bottom: 16px;
}
.set-import-match-fields .lookup-field-match-wrap {
  height: 358px;
}
.set-import-match-fields .lookup-field-match-wrap .lookup-field-match-err {
  margin: 4px 0;
  color: #FD6364;
  line-height: 16px;
  font-size: 12px;
  padding-left: 10px;
}
.set-import-match-fields .lookup-field-match-wrap .lookup-field-match-add {
  cursor: pointer;
  width: 130px;
  font-size: 14px;
  color: #1890FF;
  line-height: 20px;
  padding-left: 10px;
  -webkit-user-select: none;
  user-select: none;
}
.set-import-match-fields .lookup-field-match-wrap .unadd-match-field {
  cursor: not-allowed;
  width: 120px;
  font-size: 14px;
  color: #999;
  line-height: 20px;
  margin-bottom: 16px;
  -webkit-user-select: none;
  user-select: none;
}
.set-import-match-fields .lookup-field-match-wrap .lookup-field-match-list {
  overflow-y: scroll;
  height: 306px;
  margin-top: 16px;
  padding-right: 2px;
  padding-left: 10px;
}
.set-import-match-fields .lookup-field-match-wrap .lookup-field-match-list .set-field-item-wrap {
  color: #999999;
  margin-bottom: 16px;
}
.set-import-match-fields .lookup-field-match-wrap .lookup-field-match-list .set-field-item-wrap .set-field-item-content {
  overflow: hidden;
}
.set-import-match-fields .lookup-field-match-wrap .lookup-field-match-list .set-field-item-wrap .set-field-item-content .set-field-item-left {
  float: left;
  width: 20px;
  font-size: 14px;
  line-height: 32px;
  margin-right: 8px;
}
.set-import-match-fields .lookup-field-match-wrap .lookup-field-match-list .set-field-item-wrap .set-field-item-content .set-field-item-middle {
  margin-right: 8px;
  float: left;
}
.set-import-match-fields .lookup-field-match-wrap .lookup-field-match-list .set-field-item-wrap .set-field-item-content .err-msg .ant-select-selector {
  border-color: #FD6364;
}
.set-import-match-fields .lookup-field-match-wrap .lookup-field-match-list .set-field-item-wrap .set-field-item-content .set-field-item-right {
  float: left;
  width: calc(100% - 236px);
}
.set-import-match-fields .lookup-field-match-wrap .lookup-field-match-list .set-field-item-wrap .set-field-item-content .set-field-item-right .ant-select-selection-item {
  max-width: 296px;
}
.set-import-match-fields .lookup-field-match-wrap .lookup-field-match-list .set-field-item-wrap .set-field-item-msg {
  overflow: hidden;
  margin-top: 4px;
  color: #FD6364;
  line-height: 16px;
  font-size: 12px;
}
.set-import-match-fields .lookup-field-match-wrap .lookup-field-match-list .set-field-item-wrap .set-field-item-msg .set-field-item-left {
  float: left;
  margin-left: 28px;
  width: 200px;
  margin-right: 8px;
  height: 16px;
}
.set-import-match-fields .lookup-field-match-wrap .lookup-field-match-list .set-field-item-wrap .set-field-item-msg .set-field-item-right {
  float: left;
  margin-left: 4px;
}
.site-checkbox-all-wrapper.theaderFilter-check .ant-checkbox-wrapper .only-select-cur-item {
  position: absolute;
  display: none;
  right: 22px;
  width: 72px;
  height: 18px;
  background: #ffffff;
  border-radius: 4px;
  border: 1px solid #1890ff;
  font-size: 10px;
  font-family: PingFangSC-Regular, PingFang SC;
  color: #1890ff;
  text-align: center;
}
.site-checkbox-all-wrapper.theaderFilter-check .ant-checkbox-wrapper:hover .select-content {
  display: flex;
  align-items: center;
  position: relative;
}
.site-checkbox-all-wrapper.theaderFilter-check .ant-checkbox-wrapper:hover .only-select-cur-item {
  display: block;
}
.division-line.item-content-wrap {
  border-bottom: 1px solid #f0f0f0;
}
.filter-footer-checkbox-includes-sub-data {
  margin-right: auto;
  margin-left: 16px;
}
.select-content-div-container label.ant-checkbox-wrapper:has(.ant-checkbox-input[data-hidden='true']) {
  display: none;
}
.select-content-div-container .ant-checkbox-wrapper.hidden {
  display: none;
}
.loading {
  position: relative;
}
.loading::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background-color: #8c8c8c54;
  z-index: 1;
}
.loading::after {
  content: '';
  position: absolute;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  border: 2px solid #ccc;
  border-top-color: #000;
  border-radius: 50%;
  animation: spin 1s infinite linear;
}
@keyframes spin {
  0% {
    transform: translate(-50%, -50%) rotate(0deg);
  }
  100% {
    transform: translate(-50%, -50%) rotate(360deg);
  }
}
.cwc-filter-config-value .custom-range-picker-container {
  display: flex;
  align-items: center;
  padding: 2px;
  border: 1px solid #d9d9d9;
  border-radius: 4px;
}
.cwc-filter-config-value .custom-range-picker-container[data-disabled="true"] {
  color: rgba(0, 0, 0, 0.25);
  background: #f5f5f5;
  cursor: not-allowed;
}
.cwc-filter-config-value .custom-range-picker-container[data-disabled="true"] .range-input {
  border-bottom: 2px solid #f5f5f5;
}
.cwc-filter-config-value .custom-range-picker {
  display: flex;
  align-items: center;
  grid-area: input;
}
.cwc-filter-config-value .range-input {
  border: none;
  border-bottom: 2px solid #fff;
  outline: none;
  padding: 2px;
  text-align: center;
}
.cwc-filter-config-value .range-input:focus-visible,
.cwc-filter-config-value .range-input.active {
  border-bottom: 2px solid #1890ff;
}
.cwc-filter-config-value .range-input:focus {
  box-shadow: unset;
}
.cwc-filter-config-value .icon {
  margin: 0 4px;
  font-size: 14px;
  color: #999999;
}
.custom-select-table {
  grid-area: right;
}
.custom-select-table::after {
  content: '';
  display: block;
  clear: both;
}
.custom-select-table /deep/ tr th {
  padding: 0 6px;
  line-height: 16px;
}
.custom-select-table /deep/ tr th:nth-child(2) {
  width: 68px;
}
.custom-select-table /deep/ tr th:nth-child(2) .ant-select-selection-placeholder {
  min-width: 60px;
}
.custom-select-table /deep/ tr th:nth-last-child(1),
.custom-select-table /deep/ tr th:nth-last-child(2) {
  min-width: 90px;
}
.custom-select-table /deep/ tr td {
  padding: 4px;
}
.custom-select-table /deep/ tr .year {
  position: relative;
  left: -12px;
}
.confirm {
  width: 64px;
  height: 30px;
  border-radius: 6px;
  border-color: #40a9ff;
  color: #1890ff;
  background: #fff;
  float: right;
  margin: 8px 8px 0px 0px;
}
.first-char {
  background: #FFF4D9;
  border-radius: 4px;
  font-size: 12px;
  font-family: PingFangSC-Regular, PingFang SC;
  font-weight: 400;
  color: #DD9A18;
  line-height: 16px;
  padding: 2px 4px;
  margin-left: 4px;
}
.period-time-cascade .ant-cascader-menu-item-expand {
  position: relative;
}
.period-time-cascade .ant-cascader-menu-item-expand::after {
  content: '';
  display: block;
  height: 1px;
  background: #DFDFDF;
  position: absolute;
  width: calc(100% + 8px);
  bottom: 0;
  left: -8px;
}
.period-time-cascade .ant-cascader-menu {
  height: 300px;
}
.period-popover {
  padding-top: 0;
}
.period-popover .ant-table-thead > tr > th,
.period-popover .ant-table-tbody > tr > td,
.period-popover .ant-table tfoot > tr > th,
.period-popover .ant-table tfoot > tr > td {
  padding: 4px;
}

/**
 * Created by zJiong on 2022-06-20
 */
/**
 * @todo: 使用flex实现水平垂直居中
 * @param: {[string]} @justify [center] 水平对齐方向,[false] 水平方向不设置
 * @param: {[string]} @align   [center] 垂直对齐方向,[false] 垂直方向不设置
 * @example: 
 *  .center {
 *      .box-center(justify, align);
 *  }
 */
/**
 * @todo: 使用translate实现水平垂直居中
 * @param {String} @direction [both] - 水平垂直,其它值`horizontal`和`vertical`
 * @example: 
 *  .center {
 *      .box-center();
 *  }
 */
/**
 * Created by zJiong on 2022-06-20
 */
/**
 * @todo: 控制文字行数溢出...
 * @param  {number} $lines [1] - 默认一行对于点点点结束
 * @param  {number} $substract  [0] - 默认宽度为100% - 0
 * @example: 
 *  .container {
 *      .ellipsis(3);
 *  }
 */
/**
 * @todo: 等比例设置大小
 * @param: real_width 表示实际宽度值，此时前两个参数只是用来计算宽高比
 */
/**
 * @todo: 等比例设置大小
 * @param: container_width 可选。表示容器的宽高比
 * @param: container_height 可选。表示容器的宽高比，该方法使用宽度在容器中所占的百分比来计算元素高度在容器中的百分比
 */
/**
 * @todo: 设置相对大小
 * @param: @width, @height 表示绝对宽高度（一般为设计图上该元素的像素宽高）
 * @param: @base_width 表示基础宽度（一般为设计图的像素宽）
 * @descript: 宽高会按基础宽度换算为等比例的百分比（这里的高度使用的是padding-top）
 */
.clearfix::before {
  display: table;
  content: '';
}
.clearfix::after {
  display: table;
  clear: both;
  content: '';
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.scrollbars-none {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.scrollbars-none::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.scrollbars-has {
  -ms-overflow-style: unset;
  overflow: auto;
}
.scrollbars-has::-webkit-scrollbar {
  display: unset;
  /* Chrome Safari */
}
.border-and-box-shadow-highlight {
  border: 1px solid #1890ff;
  box-shadow: 1px 1px 4px 1px rgba(24, 144, 255, 0.2), -1px -1px 4px 1px rgba(24, 144, 255, 0.2);
}
/* Slider */
.slick-slider {
  position: relative;
  display: block;
  box-sizing: border-box;
  -webkit-user-select: none;
  user-select: none;
  -webkit-touch-callout: none;
  -khtml-user-select: none;
  touch-action: pan-y;
  -webkit-tap-highlight-color: transparent;
}
.slick-list {
  position: relative;
  display: block;
  overflow: hidden;
  margin: 0;
  padding: 0;
}
.slick-list:focus {
  outline: none;
}
.slick-list.dragging {
  cursor: pointer;
  cursor: hand;
}
.slick-slider .slick-track,
.slick-slider .slick-list {
  transform: translate3d(0, 0, 0);
}
.slick-track {
  position: relative;
  top: 0;
  left: 0;
  display: block;
  margin-left: auto;
  margin-right: auto;
}
.slick-track:before,
.slick-track:after {
  display: table;
  content: '';
}
.slick-track:after {
  clear: both;
}
.slick-loading .slick-track {
  visibility: hidden;
}
.slick-slide {
  display: none;
  float: left;
  height: 100%;
  min-height: 1px;
}
[dir='rtl'] .slick-slide {
  float: right;
}
.slick-slide img {
  display: block;
}
.slick-slide.slick-loading img {
  display: none;
}
.slick-slide.dragging img {
  pointer-events: none;
}
.slick-initialized .slick-slide {
  display: block;
}
.slick-loading .slick-slide {
  visibility: hidden;
}
.slick-vertical .slick-slide {
  display: block;
  height: auto;
  border: 1px solid transparent;
}
.slick-arrow.slick-hidden {
  display: none;
}

@charset 'UTF-8';
/**
 * Created by zJiong on 2022-06-20
 */
/**
 * @todo: 使用flex实现水平垂直居中
 * @param: {[string]} @justify [center] 水平对齐方向,[false] 水平方向不设置
 * @param: {[string]} @align   [center] 垂直对齐方向,[false] 垂直方向不设置
 * @example: 
 *  .center {
 *      .box-center(justify, align);
 *  }
 */
/**
 * @todo: 使用translate实现水平垂直居中
 * @param {String} @direction [both] - 水平垂直,其它值`horizontal`和`vertical`
 * @example: 
 *  .center {
 *      .box-center();
 *  }
 */
/**
 * Created by zJiong on 2022-06-20
 */
/**
 * @todo: 控制文字行数溢出...
 * @param  {number} $lines [1] - 默认一行对于点点点结束
 * @param  {number} $substract  [0] - 默认宽度为100% - 0
 * @example: 
 *  .container {
 *      .ellipsis(3);
 *  }
 */
/**
 * @todo: 等比例设置大小
 * @param: real_width 表示实际宽度值，此时前两个参数只是用来计算宽高比
 */
/**
 * @todo: 等比例设置大小
 * @param: container_width 可选。表示容器的宽高比
 * @param: container_height 可选。表示容器的宽高比，该方法使用宽度在容器中所占的百分比来计算元素高度在容器中的百分比
 */
/**
 * @todo: 设置相对大小
 * @param: @width, @height 表示绝对宽高度（一般为设计图上该元素的像素宽高）
 * @param: @base_width 表示基础宽度（一般为设计图的像素宽）
 * @descript: 宽高会按基础宽度换算为等比例的百分比（这里的高度使用的是padding-top）
 */
.clearfix::before {
  display: table;
  content: '';
}
.clearfix::after {
  display: table;
  clear: both;
  content: '';
}
.flex-column {
  display: flex;
  flex-direction: column;
}
.flex-center {
  display: flex;
  align-items: center;
  justify-content: center;
}
.scrollbars-none {
  -ms-overflow-style: none;
  overflow: -moz-scrollbars-none;
}
.scrollbars-none::-webkit-scrollbar {
  display: none;
  /* Chrome Safari */
}
.scrollbars-has {
  -ms-overflow-style: unset;
  overflow: auto;
}
.scrollbars-has::-webkit-scrollbar {
  display: unset;
  /* Chrome Safari */
}
.border-and-box-shadow-highlight {
  border: 1px solid #1890ff;
  box-shadow: 1px 1px 4px 1px rgba(24, 144, 255, 0.2), -1px -1px 4px 1px rgba(24, 144, 255, 0.2);
}
/* Slider */
.slick-loading .slick-list {
  background: #fff url(/v1/static/media/ajax-loader.fb6f3c230cb846e25247.gif) center center no-repeat;
}
/* Icons */
@font-face {
  font-family: 'slick';
  font-weight: normal;
  font-style: normal;
  src: url(/v1/static/media/slick.a4e97f5a2a64f0ab1323.eot);
  src: url(/v1/static/media/slick.a4e97f5a2a64f0ab1323.eot?#iefix) format('embedded-opentype'), url(/v1/static/media/slick.295183786cd8a1389865.woff) format('woff'), url(/v1/static/media/slick.c94f7671dcc99dce43e2.ttf) format('truetype'), url(/v1/static/media/slick.2630a3e3eab21c607e21.svg#slick) format('svg');
}
/* Arrows */
.slick-prev,
.slick-next {
  font-size: 0;
  line-height: 0;
  position: absolute;
  top: 50%;
  display: block;
  width: 20px;
  height: 20px;
  padding: 0;
  transform: translate(0, -50%);
  cursor: pointer;
  color: transparent;
  border: none;
  outline: none;
  background: transparent;
}
.slick-prev:hover,
.slick-prev:focus,
.slick-next:hover,
.slick-next:focus {
  color: transparent;
  outline: none;
  background: transparent;
}
.slick-prev:hover:before,
.slick-prev:focus:before,
.slick-next:hover:before,
.slick-next:focus:before {
  opacity: 1;
}
.slick-prev.slick-disabled:before,
.slick-next.slick-disabled:before {
  opacity: 0.25;
}
.slick-prev:before,
.slick-next:before {
  font-family: 'slick';
  font-size: 20px;
  line-height: 1;
  opacity: 0.75;
  color: white;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-prev {
  left: -25px;
}
[dir='rtl'] .slick-prev {
  right: -25px;
  left: auto;
}
.slick-prev:before {
  content: '←';
}
[dir='rtl'] .slick-prev:before {
  content: '→';
}
.slick-next {
  right: -25px;
}
[dir='rtl'] .slick-next {
  right: auto;
  left: -25px;
}
.slick-next:before {
  content: '→';
}
[dir='rtl'] .slick-next:before {
  content: '←';
}
/* Dots */
.slick-dotted.slick-slider {
  margin-bottom: 30px;
}
.slick-dots {
  position: absolute;
  bottom: -25px;
  display: block;
  width: 100%;
  padding: 0;
  margin: 0;
  list-style: none;
  text-align: center;
}
.slick-dots li {
  position: relative;
  display: inline-block;
  width: 20px;
  height: 20px;
  margin: 0 5px;
  padding: 0;
  cursor: pointer;
}
.slick-dots li button {
  font-size: 0;
  line-height: 0;
  display: block;
  width: 20px;
  height: 20px;
  padding: 5px;
  cursor: pointer;
  color: transparent;
  border: 0;
  outline: none;
  background: transparent;
}
.slick-dots li button:hover,
.slick-dots li button:focus {
  outline: none;
}
.slick-dots li button:hover:before,
.slick-dots li button:focus:before {
  opacity: 1;
}
.slick-dots li button:before {
  font-family: 'slick';
  font-size: 6px;
  line-height: 20px;
  position: absolute;
  top: 0;
  left: 0;
  width: 20px;
  height: 20px;
  content: '•';
  text-align: center;
  opacity: 0.25;
  color: black;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before {
  opacity: 0.75;
  color: black;
}

