/*reset css*/
html,
body {
  height: 100%;
}
* {
  margin: 0;
  padding: 0;
}
html {
  background: white;
  color: black;
}
body,
div,
dl,
dt,
dd,
ul,
ol,
li,
h1,
h2,
h3,
h4,
h5,
h6,
pre,
code,
form,
fieldset,
legend,
input,
textarea,
p,
blockquote,
th,
td,
hr,
button,
article,
aside,
details,
figcaption,
figure,
footer,
header,
hgroup,
menu,
nav,
section {
  margin: 0;
  padding: 0;
}
table {
  border-collapse: collapse;
  border-spacing: 0;
}
th {
  text-align: inherit;
}
fieldset,
img {
  border: none;
}
iframe {
  display: block;
}
abbr,
acronym {
  border: none;
  font-variant: normal;
}
del {
  text-decoration: line-through;
}
address,
caption,
cite,
code,
dfn,
em,
th,
var {
  font-style: normal;
  font-weight: 500;
}
ol,
ul {
  list-style: none;
}
caption,
th {
  text-align: left;
}
h1,
h2,
h3,
h4,
h5,
h6 {
  font-size: 100%;
  font-weight: 500;
}
q:before,
q:after {
  content: '';
}
sub,
sup {
  font-size: 75%;
  line-height: 0;
  position: relative;
  vertical-align: baseline;
}
sup {
  top: -0.5em;
}
sub {
  bottom: -0.25em;
}
a:hover,
a:focus {
  text-decoration: none;
}
ins,
a {
  text-decoration: none;
}
a:focus,
*:focus {
  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;
}
.ml20 {
  margin-left: 20px;
}
.mb10 {
  margin-bottom: 10px;
}
#root {
  height: 100%;
}
/*页面切换*/
.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);
  }
}
#components-layout-demo-custom-trigger .trigger {
  font-size: 18px;
  line-height: 64px;
  padding: 0 24px;
  cursor: pointer;
  transition: color .3s;
}
#components-layout-demo-custom-trigger .trigger:hover {
  color: #1890ff;
}
#components-layout-demo-custom-trigger .logo {
  height: 32px;
  background: rgba(255, 255, 255, 0.2);
  margin: 16px;
}
#home {
  height: 100%;
}
.logo {
  height: 64px;
  line-height: 64px;
  overflow: hidden;
  text-align: center;
  background: #108ee9;
}
#Breadcrumb {
  height: 40px;
  background: #fff;
  line-height: 40px;
}
#Breadcrumb .ant-breadcrumb {
  line-height: 40px;
  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: 40px;
  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 {
  /*color: @primary-color;*/
  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;
}
.sider_menu {
  /* background: #fff; */
}
/*header*/
.header {
  background-color: #108ee9;
  padding: 0;
}
.top-nav {
  width: 100%;
  height: 40px;
  margin: 12px 0;
}
.trigger {
  color: #fff;
}
.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;
  top: -13px;
  color: #fff;
}
.top-nav .ant-badge-count {
  top: -23px;
  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 {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
  vertical-align: middle;
  /* padding-left: 4px; */
}
.theme_ul label {
  -webkit-box-flex: 0;
  -ms-flex: 0 1 auto;
  flex: 0 1 auto;
  border-radius: 50%;
  text-align: center;
  width: 30px;
  height: 30px;
  margin: 4px;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}
.areas {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  height: 15px;
  margin-top: 50%;
}
.areas span {
  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: hidden !important;
  padding-right: 19px !important;
  background-color: #f1f3f4 !important;
}
.ant-table-header.ant-table-hide-scrollbar {
  background-color: #f1f3f4 !important;
}
.ant-table-filter-dropdown .ant-dropdown-menu {
  max-height: 430px;
}
.ant-table-thead > tr > th .anticon-filter,
.ant-table-thead > tr > th .ant-table-filter-icon {
  height: 21px;
  top: unset;
  right: unset;
}
/*.ant-popover-inner-content {
	padding: 0;
}*/
.ant-menu-dark .ant-menu-inline.ant-menu-sub .ant-menu-item {
  padding-left: 36px!important;
}
/* table表格 */
.ant-table-small > .ant-table-content > .ant-table-fixed-left > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-fixed-right > .ant-table-header > table > .ant-table-thead > tr > th,
.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-header > table > .ant-table-thead > tr > th {
  padding: 8px 8px;
  background-color: #f1f3f4 ;
}
/* .ant-table,.ant-table-small > .ant-table-content > .ant-table-scroll > .ant-table-body > table > .ant-table-tbody > tr > td {
	padding: 8px 8px;
	background-color: #fff;
} */
.ant-table-tbody > tr > td {
  padding: 8px 8px !important;
}
/* 树形控件的背景色 */
.tableTree.ant-layout-sider {
  background-color: #fff;
  z-index: 99;
}
/* 自适应表格样式start---- */
/* 表格的页码样式 */
.tr {
  text-align: right !important;
  float: right;
}
.pagination_flr {
  float: right;
}
.page_pagination {
  margin-top: 10px;
}
.page_table_box {
  overflow: hidden;
  /* border: thin solid #ddd; */
}
.page_table_box .table_box .ant-table-thead > tr {
  background-color: #ccc;
}
/* 自适应表格样式end---- */
/* .title_hover_father{
	position: relative;
} */
.title_hover_father:hover .option_hoverShow {
  /* position: absolute; */
  visibility: visible;
  z-index: 100000;
}
.option_hoverShow {
  visibility: hidden;
}
.body {
  padding: 30px 20px;
}
.bodyContent {
  padding: 20px;
  background-color: #ffffff;
}
.operateContent {
  padding-top: 15px;
  background-color: #ffffff;
}
.toolBar {
  padding: 10px 10px 10px 0;
}
.nextSiblingButton {
  margin-left: 10px;
}
.content_t_r {
  padding-right: 16px;
}
.title {
  line-height: 32px;
  font-size: 18px;
  text-indent: 16px;
  font-weight: bold;
  color: #272747;
}
.description {
  height: 14px;
  margin-top: 14px;
  line-height: 14px;
  font-size: 14px;
  text-indent: 16px;
  color: #8f8f8f;
}
.operateForm .ant-row .ant-form-item {
  width: 100%;
}
.ant-form-inline .has-feedback {
  width: 100%;
}
.ant-table-fixed-header .ant-table-scroll .ant-table-header {
  overflow-y: hidden;
}
.resourceModel .ant-modal-body {
  padding: 0 24px;
}
.ant-upload.ant-upload-select-picture-card {
  height: 114px;
}
/* .ant-tooltip-inner{
	color: #000;
	background-color: rgba(243,243,243,0.75);
}

.ant-tooltip-placement-right .ant-tooltip-arrow, .ant-tooltip-placement-rightTop .ant-tooltip-arrow, .ant-tooltip-placement-rightBottom .ant-tooltip-arrow{
	border-right-color:rgba(210,210,210,0.75);
} */
.footer {
  font-size: 12px;
  color: #797c7c;
  text-align: center;
  line-height: 50px;
  height: 50px;
  background-color: #f0f3f3;
  line-height: 40px;
}
.searchBar {
  margin-bottom: 10px;
}
.rightSideButton {
  float: right;
}
.assignauth-grouptree {
  float: left;
  width: 25%;
}
/*表单查询按钮间距1 */
.common_form_btn_query {
  margin-right: -10px;
  margin-left: 20px;
}
.input_label {
  color: rgba(0, 0, 0, 0.85);
  font-size: 14px;
}
/* table tree---授权的树形表格 */
.table_tree .ant-table-thead th {
  background: #f0f2f5 !important;
}
.table_tree .ant-table-row td {
  white-space: nowrap;
  position: relative;
  background: #f7fcff !important;
}
.table_tree .ant-table-row-level-0 td {
  background: #f5f5f5 !important;
}
.table_tree .table_tree_last td {
  background: #ffffff !important;
}
.table_tree .ant-table-row:hover td {
  background: #fef9e0 !important;
}
.table_tree .table_tree_btn {
  display: none;
  position: absolute;
  right: 4px;
  color: #1890FF;
  cursor: pointer;
  z-index: 2;
}
.table_tree.ant-table-row td:hover .table_tree_btn {
  display: inherit;
}
.table_tree.table_tree_inline .table_tree_last {
  display: inline-block;
  width: 20%;
}
.table_tree.table_tree_inline .table_tree_last td {
  width: 20%;
  border-bottom: none;
  white-space: nowrap;
  max-width: inherit !important;
}
.table_tree.table_tree_inline .table_tree_last:hover td {
  background: inherit !important;
}
.table_tree.table_tree_inline .page_tree_content {
  padding: 0 10px;
}
.table_tree.table_tree_inline .page_tree_content .ant-tree-child-tree {
  white-space: initial;
}
.table_tree.table_tree_inline .page_tree_content .tree_inline {
  width: 20%;
  display: inline-block;
  vertical-align: top;
}
.ant-table-thead > tr > th,
.ant-table-tbody > tr > td {
  padding: 16px 16px;
  word-break: break-word;
  -ms-word-break: break-all;
}
.flex {
  display: flex;
}
.flex-wrap {
  display: flex;
  flex-wrap: wrap;
}
.flex-space-between {
  display: flex;
  justify-content: space-between;
}
.column__ {
  display: flex;
  flex-direction: column;
}
.column_c_ {
  display: flex;
  flex-direction: column;
  justify-content: center;
}
.column_c_c {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
}
.column_sb_c {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-between;
}
.column_sb__ {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
}
.row__ {
  display: flex;
  flex-direction: row;
}
.row__c {
  display: flex;
  flex-direction: row;
  align-items: center;
}
.row_c_c {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: center;
}
.row__fs {
  display: flex;
  flex-direction: row;
  align-items: flex-start;
}
.row_fs_c {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}
.row_fe_c {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-end;
}
.row_sb_c {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-between;
}
.row_sa_c {
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: space-around;
}
.flex-shrink-0 {
  flex-shrink: 0;
}
.flex-grow-1 {
  flex-grow: 1;
}
.text-clamp-1 {
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
  word-break: break-all;
}
.m-0 {
  margin: 0;
}
.mt-0 {
  margin-top: 0;
}
.m-md {
  margin-top: 16px;
}
.mt-xs {
  margin-top: 8px;
}
.mt-sm {
  margin-top: 12px;
}
.mt-md {
  margin-top: 16px;
}
.mt-lg {
  margin-top: 24px;
}
.mt-xxl {
  margin-top: 32px;
}
.mr-xs {
  margin-right: 8px;
}
.mr-sm {
  margin-right: 12px;
}
.mr-md {
  margin-right: 16px;
}
.mr-lg {
  margin-right: 24px;
}
.mb-0 {
  margin-bottom: 0;
}
.mb-xs {
  margin-bottom: 8px;
}
.mb-sm {
  margin-bottom: 12px;
}
.mb-md {
  margin-bottom: 16px;
}
.mb-lg {
  margin-bottom: 24px;
}
.mb-xxl {
  margin-bottom: 32px;
}
.ml-xs {
  margin-left: 8px;
}
.ml-sm {
  margin-left: 12px;
}
.ml-md {
  margin-left: 16px;
}
.ml-lg {
  margin-left: 24px;
}
.p-tb {
  padding: 16px 0;
}
.p-10 {
  padding: 10px;
}
.p-20 {
  padding: 20px;
}
.p-30 {
  padding: 30px;
}
.p-md {
  padding: 16px;
}
.pt-xs {
  padding-top: 8px;
}
.pt-sm {
  padding-top: 12px;
}
.pt-md {
  padding-top: 16px;
}
.pt-lg {
  padding-top: 24px;
}
.pr-xs {
  padding-right: 8px;
}
.pr-sm {
  padding-right: 12px;
}
.pr-md {
  padding-right: 16px;
}
.pr-lg {
  padding-right: 24px;
}
.pb-xs {
  padding-bottom: 8px;
}
.pb-sm {
  padding-bottom: 12px;
}
.pb-md {
  padding-bottom: 16px;
}
.pb-lg {
  padding-bottom: 24px;
}
.pl-xs {
  padding-left: 8px;
}
.pl-sm {
  padding-left: 12px;
}
.pl-md {
  padding-left: 16px;
}
.pl-lg {
  padding-left: 24px;
}
.text-left,
.tl {
  text-align: left !important;
}
.text-center,
.tc {
  text-align: center !important;
}
.text-right,
.tr {
  text-align: right !important;
}
.bold {
  font-weight: bold;
}
.bold-500 {
  font-weight: 500;
}
.font-xs {
  font-size: 12px;
}
.font-sm {
  font-size: 14px;
}
.font-md {
  font-size: 16px;
}
.font-lg {
  font-size: 18px;
}
.font-xl {
  font-size: 20px;
}
.font-xxl {
  font-size: 24px;
}
.theme-b .logo {
  background-color: #00a2ae;
}
.theme-b .header {
  background-color: #00a2ae;
}
.theme-e .header {
  background-color: #373d41;
}
.theme-b .name {
  color: #ffffff;
}
.theme-b .searchIcon {
  color: #fff;
}
.theme-b .trigger {
  color: #ffffff;
}
.theme-b .action:hover {
  background: #33b5be;
  border-radius: 5px;
}
.theme-b .settingIcon {
  color: #fff;
}
/* .theme-b .ant-menu-dark .ant-menu-item, .theme-b .ant-menu-dark .ant-menu-item-group-title, .theme-b .ant-menu-dark .ant-menu-item > a{
	color:#fff;
} */
.theme-b .ant-menu-dark .ant-menu-item:hover,
.theme-b .ant-menu-dark .ant-menu-item-active,
.theme-b .ant-menu-dark .ant-menu-submenu-active,
.theme-b .ant-menu-dark .ant-menu-submenu-open,
.theme-b .ant-menu-dark .ant-menu-submenu-selected,
.theme-b .ant-menu-dark .ant-menu-submenu-title:hover {
  /* background-color: transparent; */
  color: #33b5be;
}
.theme-b .ant-menu-item :hover {
  color: #33b5be;
}
.theme-b .ant-menu-item-active:hover a {
  color: #33b5be;
}
.theme-b .ant-menu.ant-menu-dark .ant-menu-item-selected,
.theme-b .ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected {
  background-color: transparent;
}
.theme-b .ant-menu.ant-menu-dark .ant-menu-item-selected > a,
.theme-b .ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected > a {
  color: #33b5be;
}
.theme-b .nav > li > a:hover {
  color: #00707f;
}
.theme-b .searchSpan .ant-select-selection {
  background-color: transparent;
}
.theme-b .noticeIcon {
  color: #fff;
}
.theme-b .noticeButtonClass:hover,
.theme-b .noticeButtonClass.ant-popover-open {
  background: #33b5be;
}
.theme-b .nav > li.nav-item-selected {
  border-left-color: #00707f;
}
.theme-b .nav > li.nav-item-selected > a {
  color: #00707f;
}
.theme-b a {
  color: #00a2ae;
}
.theme-b a:hover {
  color: #3db8c1;
}
.theme-b a:active {
  color: #008997;
}
.theme-b .ant-btn:focus,
.theme-b .ant-btn:hover {
  color: #3db8c1;
  border-color: #3db8c1;
}
.theme-b .ant-btn.active,
.theme-b .ant-btn:active {
  color: #008997;
  border-color: #008997;
}
.theme-b .ant-btn.ant-btn-clicked:after {
  border-color: #00a2ae;
}
.theme-b .ant-btn.disabled,
.theme-b .ant-btn.disabled.active,
.theme-b .ant-btn.disabled:active,
.theme-b .ant-btn.disabled:focus,
.theme-b .ant-btn.disabled:hover,
.theme-b .ant-btn[disabled],
.theme-b .ant-btn[disabled].active,
.theme-b .ant-btn[disabled]:active,
.theme-b .ant-btn[disabled]:focus,
.theme-b .ant-btn[disabled]:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-b .ant-btn-primary {
  background-color: #00a2ae;
  border-color: #00a2ae;
}
.theme-b .ant-btn-primary.active,
.theme-b .ant-btn-primary.hover,
.theme-b .ant-btn-primary:active,
.theme-b .ant-btn-primary:focus,
.theme-b .ant-btn-primary:hover {
  color: #fff;
  background-color: #3db8c1;
}
.theme-b .ant-btn-danger {
  color: #f04134;
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-b .ant-btn-danger:focus,
.theme-b .ant-btn-danger:hover {
  color: #fff;
  background-color: #f04134;
  border-color: #f04134;
}
.theme-b .ant-btn-danger.active,
.theme-b .ant-btn-danger:active {
  color: #fff;
  background-color: #d73435;
  border-color: #d73435;
}
.theme-b .ant-btn-danger.ant-btn-clicked:after {
  border-color: #d9d9d9;
}
.theme-b .ant-btn-background-ghost.ant-btn-primary {
  color: #00a2ae;
  background-color: transparent;
  border-color: #00a2ae;
}
.theme-b .ant-btn-background-ghost.ant-btn-primary:focus,
.theme-b .ant-btn-background-ghost.ant-btn-primary:hover {
  color: #3db8c1;
  background-color: transparent;
  border-color: #3db8c1;
}
.theme-b .ant-btn-background-ghost.ant-btn-primary.active,
.theme-b .ant-btn-background-ghost.ant-btn-primary:active {
  color: #008997;
  background-color: transparent;
  border-color: #008997;
}
.theme-b .ant-btn-background-ghost.ant-btn-danger {
  border-color: #f04134;
}
.theme-b .ant-btn-background-ghost.ant-btn-danger:focus,
.theme-b .ant-btn-background-ghost.ant-btn-danger:hover {
  color: #f46e65;
  background-color: transparent;
  border-color: #f46e65;
}
.theme-b .ant-btn-background-ghost.ant-btn-danger.active,
.theme-b .ant-btn-background-ghost.ant-btn-danger:active {
  color: #d73435;
  background-color: transparent;
  border-color: #d73435;
}
.theme-b .ant-btn-group .ant-btn-primary + .ant-btn-primary,
.theme-b .ant-btn-group .ant-btn-primary:last-child:not(:first-child) {
  border-left-color: #008997;
}
.theme-b .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  border-right-color: #008997;
}
.theme-b .ant-radio-checked .ant-radio-inner,
.theme-b .ant-radio-checked:after,
.theme-b .ant-radio-focused .ant-radio-inner,
.theme-b .ant-radio-wrapper:hover .ant-radio-inner,
.theme-b .ant-radio:hover .ant-radio-inner {
  border-color: #00a2ae;
}
.theme-b .ant-radio-inner:after {
  background-color: #00a2ae;
}
.theme-b .ant-radio-button-wrapper:hover {
  color: #00a2ae;
}
.theme-b .ant-radio-button-wrapper-checked {
  color: #00a2ae;
  outline: 0;
}
.theme-b .ant-radio-button-wrapper-checked,
.theme-b .ant-radio-button-wrapper-checked:active {
  border-color: #00a2ae;
  -webkit-box-shadow: -1px 0 0 0 #00a2ae;
  box-shadow: -1px 0 0 0 #00a2ae;
}
.theme-b .ant-checkbox-input:focus .ant-checkbox-inner,
.theme-b .ant-checkbox-wrapper:hover .ant-checkbox-inner,
.theme-b .ant-checkbox:hover .ant-checkbox-inner,
.theme-b .ant-radio-button-wrapper-checked:first-child {
  border-color: #00a2ae;
}
.theme-b .ant-checkbox-checked .ant-checkbox-inner,
.theme-b .ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: #00a2ae;
  border-color: #00a2ae;
}
.theme-b .ant-checkbox-checked:after,
.theme-b .ant-checkbox-indeterminate:after {
  border-color: #00a2ae;
}
.theme-b .ant-switch-checked {
  background-color: #00a2ae;
}
.theme-b .ant-dropdown-menu-item-selected,
.theme-b .ant-dropdown-menu-item-selected > a,
.theme-b .ant-dropdown-menu-submenu-title-selected,
.theme-b .ant-dropdown-menu-submenu-title-selected > a {
  color: #00a2ae;
}
.theme-b .ant-dropdown-menu-item-selected,
.theme-b .ant-dropdown-menu-item-selected > a,
.theme-b .ant-dropdown-menu-item:hover,
.theme-b .ant-dropdown-menu-submenu-title-selected,
.theme-b .ant-dropdown-menu-submenu-title-selected > a,
.theme-b .ant-dropdown-menu-submenu-title:hover {
  background-color: #ebf8f9;
}
.theme-b .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
  color: #00a2ae;
}
.theme-b .ant-tag-checkable-checked {
  background-color: #00a2ae;
}
.theme-b .ant-tag-checkable:active {
  background-color: #008997;
}
.theme-b .ant-spin {
  color: #00a2ae;
}
.theme-b .ant-spin-dot i {
  background-color: #00a2ae;
}
.theme-b .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-b .ant-input-number-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-b .ant-input-number:focus,
.theme-b .ant-input-number:hover,
.theme-b .ant-input:focus,
.theme-b .ant-input:hover {
  border-color: #3db8c1;
}
.theme-b .ant-input-number:focus,
.theme-b .ant-input:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(0, 162, 174, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 162, 174, 0.2);
}
.theme-b .ant-input-disabled:hover,
.theme-b .ant-input-number-disabled:hover {
  border-color: #d9d9d9;
}
.theme-b .ant-input-number-handler:hover .ant-input-number-handler-down-inner,
.theme-b .ant-input-number-handler:hover .ant-input-number-handler-up-inner {
  color: #3db8c1;
}
.theme-b .ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #00a2ae;
}
.theme-b .ant-calendar-date:hover {
  background: #ebf8f9;
}
.theme-b .ant-calendar-date:active {
  background: #3db8c1;
}
.theme-b .ant-calendar-today .ant-calendar-date {
  border-color: #00a2ae;
  color: #00a2ae;
}
.theme-b .ant-calendar-selected-day .ant-calendar-date {
  color: #fff;
}
.theme-b .ant-calendar-selected-day .ant-calendar-date,
.theme-b .ant-calendar-selected-day .ant-calendar-date:hover {
  background: #00a2ae;
}
.theme-b .ant-pagination-item:focus,
.theme-b .ant-pagination-item:hover,
.theme-b .ant-pagination-next:focus,
.theme-b .ant-pagination-next:hover,
.theme-b .ant-pagination-prev:focus,
.theme-b .ant-pagination-prev:hover,
.theme-b .ant-time-picker-input:hover {
  border-color: #00a2ae;
}
.theme-b .ant-pagination-item:focus a,
.theme-b .ant-pagination-item:hover a,
.theme-b .ant-pagination-next:focus a,
.theme-b .ant-pagination-next:hover a,
.theme-b .ant-pagination-prev:focus a,
.theme-b .ant-pagination-prev:hover a {
  color: #00a2ae;
}
.theme-b .ant-pagination-item-active {
  background-color: #00a2ae;
  border-color: #00a2ae;
}
.theme-b .ant-pagination-item-active:focus,
.theme-b .ant-pagination-item-active:hover {
  background-color: #3db8c1;
  border-color: #3db8c1;
}
.theme-b .ant-pagination-item-active:focus a,
.theme-b .ant-pagination-item-active:hover a {
  color: #fff;
}
.theme-b .ant-pagination-jump-next:hover:after,
.theme-b .ant-pagination-jump-prev:hover:after {
  color: #00a2ae;
}
.theme-b .ant-pagination-disabled:hover {
  border-color: #d9d9d9;
}
.theme-b .ant-pagination-disabled a,
.theme-b .ant-pagination-disabled:hover a {
  color: rgba(0, 0, 0, 0.25);
}
.theme-b .ant-select-selection:hover {
  border-color: #3db8c1;
}
.ant-select-focused .theme-b .ant-select-selection,
.theme-b .ant-select-open .ant-select-selection,
.theme-b .ant-select-selection:active,
.theme-b .ant-select-selection:focus {
  border-color: #008997;
}
.theme-b .has-error .ant-select-selection {
  border-color: #f04134 !important;
}
.theme-b .ant-slider-handle:hover,
.theme-b .ant-slider:hover .ant-slider-handle {
  border-color: #3db8c1;
}
.theme-b .ant-slider:hover .ant-slider-track {
  background-color: #66c7ce;
}
.theme-b .ant-slider-track {
  background-color: #99dadf;
}
.theme-b .ant-slider-handle {
  border-color: #80d1d7;
}
.theme-b .ant-slider-handle:active {
  -webkit-box-shadow: 0 0 0 2px rgba(0, 162, 174, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 162, 174, 0.2);
}
.theme-b .ant-slider-dot-active {
  border-color: #80d1d7;
}
.theme-b .ant-tabs-ink-bar {
  background-color: #00a2ae;
}
.theme-b .ant-tabs-nav .ant-tabs-tab:hover {
  color: #3db8c1;
}
.theme-b .ant-tabs-nav .ant-tabs-tab:active {
  color: #008997;
}
.theme-b .ant-tabs-nav .ant-tabs-tab-active {
  color: #00a2ae;
}
.theme-b .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner,
.theme-b .ant-tree .ant-tree-checkbox-checked:after,
.theme-b .ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner,
.theme-b .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.theme-b .ant-tree-checkbox:hover .ant-tree-checkbox-inner {
  border-color: #00a2ae;
}
.theme-b .ant-tree .ant-tree-node-content-wrapper:hover {
  background-color: #ebf8f9;
}
.theme-b .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background-color: #00a2ae;
}
.theme-b .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
  background-color: #cfedf0;
}
.theme-b .ant-tree span.ant-tree-icon_loading:after {
  color: #00a2ae;
}
.theme-b .ant-calendar-header a:hover {
  color: #3db8c1;
}
.theme-b .ant-calendar .ant-calendar-ok-btn {
  background-color: #00a2ae;
  border-color: #00a2ae;
}
.theme-b .ant-calendar .ant-calendar-ok-btn:focus,
.theme-b .ant-calendar .ant-calendar-ok-btn:hover {
  border-color: #3db8c1;
  background-color: #3db8c1;
}
.theme-b .ant-calendar .ant-calendar-ok-btn:active {
  border-color: #008997;
  background-color: #008997;
}
.theme-c .logo {
  background-color: #00a854;
}
.theme-c .header {
  background-color: #00a854;
}
.theme-c .nav > li > a:hover {
  color: #007b43;
}
.theme-c .nav > li.nav-item-selected {
  border-left-color: #007b43;
}
.theme-c .nav > li.nav-item-selected > a {
  color: #007b43;
}
.theme-c a {
  color: #00a854;
}
.theme-c a:hover {
  color: #3dbd7d;
}
.theme-c a:active {
  color: #00924c;
}
.theme-c .ant-btn:focus,
.theme-c .ant-btn:hover {
  color: #3dbd7d;
  border-color: #3dbd7d;
}
.theme-c .ant-btn.active,
.theme-c .ant-btn:active {
  color: #00924c;
  border-color: #00924c;
}
.theme-c .ant-btn.ant-btn-clicked:after {
  border-color: #00a854;
}
.theme-c .ant-btn.disabled,
.theme-c .ant-btn.disabled.active,
.theme-c .ant-btn.disabled:active,
.theme-c .ant-btn.disabled:focus,
.theme-c .ant-btn.disabled:hover,
.theme-c .ant-btn[disabled],
.theme-c .ant-btn[disabled].active,
.theme-c .ant-btn[disabled]:active,
.theme-c .ant-btn[disabled]:focus,
.theme-c .ant-btn[disabled]:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-c .ant-btn-primary {
  background-color: #00a854;
  border-color: #00a854;
}
.theme-c .ant-btn-primary.active,
.theme-c .ant-btn-primary.hover,
.theme-c .ant-btn-primary:active,
.theme-c .ant-btn-primary:focus,
.theme-c .ant-btn-primary:hover {
  color: #fff;
  background-color: #3dbd7d;
}
.theme-c .ant-btn-danger {
  color: #f04134;
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-c .ant-btn-danger:focus,
.theme-c .ant-btn-danger:hover {
  color: #fff;
  background-color: #f04134;
  border-color: #f04134;
}
.theme-c .ant-btn-danger.active,
.theme-c .ant-btn-danger:active {
  color: #fff;
  background-color: #d73435;
  border-color: #d73435;
}
.theme-c .ant-btn-danger.ant-btn-clicked:after {
  border-color: #d9d9d9;
}
.theme-c .ant-btn-background-ghost.ant-btn-primary {
  color: #00a854;
  background-color: transparent;
  border-color: #00a854;
}
.theme-c .ant-btn-background-ghost.ant-btn-primary:focus,
.theme-c .ant-btn-background-ghost.ant-btn-primary:hover {
  color: #3dbd7d;
  background-color: transparent;
  border-color: #3dbd7d;
}
.theme-c .ant-btn-background-ghost.ant-btn-primary.active,
.theme-c .ant-btn-background-ghost.ant-btn-primary:active {
  color: #00924c;
  background-color: transparent;
  border-color: #00924c;
}
.theme-c .ant-btn-background-ghost.ant-btn-danger {
  border-color: #f04134;
}
.theme-c .ant-btn-background-ghost.ant-btn-danger:focus,
.theme-c .ant-btn-background-ghost.ant-btn-danger:hover {
  color: #f46e65;
  background-color: transparent;
  border-color: #f46e65;
}
.theme-c .ant-btn-background-ghost.ant-btn-danger.active,
.theme-c .ant-btn-background-ghost.ant-btn-danger:active {
  color: #d73435;
  background-color: transparent;
  border-color: #d73435;
}
.theme-c .ant-btn-group .ant-btn-primary + .ant-btn-primary,
.theme-c .ant-btn-group .ant-btn-primary:last-child:not(:first-child) {
  border-left-color: #00924c;
}
.theme-c .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  border-right-color: #00924c;
}
.theme-c .ant-radio-checked .ant-radio-inner,
.theme-c .ant-radio-checked:after,
.theme-c .ant-radio-focused .ant-radio-inner,
.theme-c .ant-radio-wrapper:hover .ant-radio-inner,
.theme-c .ant-radio:hover .ant-radio-inner {
  border-color: #00a854;
}
.theme-c .ant-radio-inner:after {
  background-color: #00a854;
}
.theme-c .ant-radio-button-wrapper:hover {
  color: #00a854;
}
.theme-c .ant-radio-button-wrapper-checked {
  color: #00a854;
  outline: 0;
}
.theme-c .ant-radio-button-wrapper-checked,
.theme-c .ant-radio-button-wrapper-checked:active {
  border-color: #00a854;
  -webkit-box-shadow: -1px 0 0 0 #00a854;
  box-shadow: -1px 0 0 0 #00a854;
}
.theme-c .ant-checkbox-input:focus .ant-checkbox-inner,
.theme-c .ant-checkbox-wrapper:hover .ant-checkbox-inner,
.theme-c .ant-checkbox:hover .ant-checkbox-inner,
.theme-c .ant-radio-button-wrapper-checked:first-child {
  border-color: #00a854;
}
.theme-c .ant-checkbox-checked .ant-checkbox-inner,
.theme-c .ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: #00a854;
  border-color: #00a854;
}
.theme-c .ant-checkbox-checked:after,
.theme-c .ant-checkbox-indeterminate:after {
  border-color: #00a854;
}
.theme-c .ant-switch-checked {
  background-color: #00a854;
}
.theme-c .ant-dropdown-menu-item-selected,
.theme-c .ant-dropdown-menu-item-selected > a,
.theme-c .ant-dropdown-menu-submenu-title-selected,
.theme-c .ant-dropdown-menu-submenu-title-selected > a {
  color: #00a854;
}
.theme-c .ant-dropdown-menu-item-selected,
.theme-c .ant-dropdown-menu-item-selected > a,
.theme-c .ant-dropdown-menu-item:hover,
.theme-c .ant-dropdown-menu-submenu-title-selected,
.theme-c .ant-dropdown-menu-submenu-title-selected > a,
.theme-c .ant-dropdown-menu-submenu-title:hover {
  background-color: #ebf8f2;
}
.theme-c .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
  color: #00a854;
}
.theme-c .ant-tag-checkable-checked {
  background-color: #00a854;
}
.theme-c .ant-tag-checkable:active {
  background-color: #00924c;
}
.theme-c .ant-spin {
  color: #00a854;
}
.theme-c .ant-spin-dot i {
  background-color: #00a854;
}
.theme-c .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-c .ant-input-number-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-c .ant-input-number:focus,
.theme-c .ant-input-number:hover,
.theme-c .ant-input:focus,
.theme-c .ant-input:hover {
  border-color: #3dbd7d;
}
.theme-c .ant-input-number:focus,
.theme-c .ant-input:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(0, 168, 84, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 168, 84, 0.2);
}
.theme-c .ant-input-disabled:hover,
.theme-c .ant-input-number-disabled:hover {
  border-color: #d9d9d9;
}
.theme-c .ant-input-number-handler:hover .ant-input-number-handler-down-inner,
.theme-c .ant-input-number-handler:hover .ant-input-number-handler-up-inner {
  color: #3dbd7d;
}
.theme-c .ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #00a854;
}
.theme-c .ant-calendar-date:hover {
  background: #ebf8f2;
}
.theme-c .ant-calendar-date:active {
  background: #3dbd7d;
}
.theme-c .ant-calendar-today .ant-calendar-date {
  border-color: #00a854;
  color: #00a854;
}
.theme-c .ant-calendar-selected-day .ant-calendar-date {
  color: #fff;
}
.theme-c .ant-calendar-selected-day .ant-calendar-date,
.theme-c .ant-calendar-selected-day .ant-calendar-date:hover {
  background: #00a854;
}
.theme-c .ant-pagination-item:focus,
.theme-c .ant-pagination-item:hover,
.theme-c .ant-pagination-next:focus,
.theme-c .ant-pagination-next:hover,
.theme-c .ant-pagination-prev:focus,
.theme-c .ant-pagination-prev:hover,
.theme-c .ant-time-picker-input:hover {
  border-color: #00a854;
}
.theme-c .ant-pagination-item:focus a,
.theme-c .ant-pagination-item:hover a,
.theme-c .ant-pagination-next:focus a,
.theme-c .ant-pagination-next:hover a,
.theme-c .ant-pagination-prev:focus a,
.theme-c .ant-pagination-prev:hover a {
  color: #00a854;
}
.theme-c .ant-pagination-item-active {
  background-color: #00a854;
  border-color: #00a854;
}
.theme-c .ant-pagination-item-active:focus,
.theme-c .ant-pagination-item-active:hover {
  background-color: #3dbd7d;
  border-color: #3dbd7d;
}
.theme-c .ant-pagination-item-active:focus a,
.theme-c .ant-pagination-item-active:hover a {
  color: #fff;
}
.theme-c .ant-pagination-jump-next:hover:after,
.theme-c .ant-pagination-jump-prev:hover:after {
  color: #00a854;
}
.theme-c .ant-pagination-disabled:hover {
  border-color: #d9d9d9;
}
.theme-c .ant-pagination-disabled a,
.theme-c .ant-pagination-disabled:hover a {
  color: rgba(0, 0, 0, 0.25);
}
.theme-c .ant-select-selection:hover {
  border-color: #3dbd7d;
}
.ant-select-focused .theme-c .ant-select-selection,
.theme-c .ant-select-open .ant-select-selection,
.theme-c .ant-select-selection:active,
.theme-c .ant-select-selection:focus {
  border-color: #00924c;
}
.theme-c .has-error .ant-select-selection {
  border-color: #f04134 !important;
}
.theme-c .ant-slider-handle:hover,
.theme-c .ant-slider:hover .ant-slider-handle {
  border-color: #3dbd7d;
}
.theme-c .ant-slider:hover .ant-slider-track {
  background-color: #66cb98;
}
.theme-c .ant-slider-track {
  background-color: #99dcbb;
}
.theme-c .ant-slider-handle {
  border-color: #80d4aa;
}
.theme-c .ant-slider-handle:active {
  -webkit-box-shadow: 0 0 0 2px rgba(0, 168, 84, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 168, 84, 0.2);
}
.theme-c .ant-slider-dot-active {
  border-color: #80d4aa;
}
.theme-c .ant-tabs-ink-bar {
  background-color: #00a854;
}
.theme-c .ant-tabs-nav .ant-tabs-tab:hover {
  color: #3dbd7d;
}
.theme-c .ant-tabs-nav .ant-tabs-tab:active {
  color: #00924c;
}
.theme-c .ant-tabs-nav .ant-tabs-tab-active {
  color: #00a854;
}
.theme-c .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner,
.theme-c .ant-tree .ant-tree-checkbox-checked:after,
.theme-c .ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner,
.theme-c .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.theme-c .ant-tree-checkbox:hover .ant-tree-checkbox-inner {
  border-color: #00a854;
}
.theme-c .ant-tree .ant-tree-node-content-wrapper:hover {
  background-color: #ebf8f2;
}
.theme-c .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background-color: #00a854;
}
.theme-c .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
  background-color: #cfefdf;
}
.theme-c .ant-tree span.ant-tree-icon_loading:after {
  color: #00a854;
}
.theme-c .ant-calendar-header a:hover {
  color: #3dbd7d;
}
.theme-c .ant-calendar .ant-calendar-ok-btn {
  background-color: #00a854;
  border-color: #00a854;
}
.theme-c .ant-calendar .ant-calendar-ok-btn:focus,
.theme-c .ant-calendar .ant-calendar-ok-btn:hover {
  border-color: #3dbd7d;
  background-color: #3dbd7d;
}
.theme-c .ant-calendar .ant-calendar-ok-btn:active {
  border-color: #00924c;
  background-color: #00924c;
}
.theme-d .header {
  background-color: #f5317f;
}
.theme-d .logo {
  background-color: #f5317f;
}
.theme-d .nav > li > a:hover {
  color: #c11c7b;
}
.theme-d .nav > li.nav-item-selected {
  border-left-color: #c11c7b;
}
.theme-d .nav > li.nav-item-selected > a {
  color: #c11c7b;
}
.theme-d a {
  color: #f5317f;
}
.theme-d a:hover {
  color: #f7629e;
}
.theme-d a:active {
  color: #dc277d;
}
.theme-d .ant-btn:focus,
.theme-d .ant-btn:hover {
  color: #f7629e;
  border-color: #f7629e;
}
.theme-d .ant-btn.active,
.theme-d .ant-btn:active {
  color: #dc277d;
  border-color: #dc277d;
}
.theme-d .ant-btn.ant-btn-clicked:after {
  border-color: #f5317f;
}
.theme-d .ant-btn.disabled,
.theme-d .ant-btn.disabled.active,
.theme-d .ant-btn.disabled:active,
.theme-d .ant-btn.disabled:focus,
.theme-d .ant-btn.disabled:hover,
.theme-d .ant-btn[disabled],
.theme-d .ant-btn[disabled].active,
.theme-d .ant-btn[disabled]:active,
.theme-d .ant-btn[disabled]:focus,
.theme-d .ant-btn[disabled]:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-d .ant-btn-primary {
  background-color: #f5317f;
  border-color: #f5317f;
}
.theme-d .ant-btn-primary.active,
.theme-d .ant-btn-primary.hover,
.theme-d .ant-btn-primary:active,
.theme-d .ant-btn-primary:focus,
.theme-d .ant-btn-primary:hover {
  color: #fff;
  background-color: #f7629e;
}
.theme-d .ant-btn-danger {
  color: #f04134;
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-d .ant-btn-danger:focus,
.theme-d .ant-btn-danger:hover {
  color: #fff;
  background-color: #f04134;
  border-color: #f04134;
}
.theme-d .ant-btn-danger.active,
.theme-d .ant-btn-danger:active {
  color: #fff;
  background-color: #d73435;
  border-color: #d73435;
}
.theme-d .ant-btn-danger.ant-btn-clicked:after {
  border-color: #d9d9d9;
}
.theme-d .ant-btn-background-ghost.ant-btn-primary {
  color: #f5317f;
  background-color: transparent;
  border-color: #f5317f;
}
.theme-d .ant-btn-background-ghost.ant-btn-primary:focus,
.theme-d .ant-btn-background-ghost.ant-btn-primary:hover {
  color: #f7629e;
  background-color: transparent;
  border-color: #f7629e;
}
.theme-d .ant-btn-background-ghost.ant-btn-primary.active,
.theme-d .ant-btn-background-ghost.ant-btn-primary:active {
  color: #dc277d;
  background-color: transparent;
  border-color: #dc277d;
}
.theme-d .ant-btn-background-ghost.ant-btn-danger {
  border-color: #f04134;
}
.theme-d .ant-btn-background-ghost.ant-btn-danger:focus,
.theme-d .ant-btn-background-ghost.ant-btn-danger:hover {
  color: #f46e65;
  background-color: transparent;
  border-color: #f46e65;
}
.theme-d .ant-btn-background-ghost.ant-btn-danger.active,
.theme-d .ant-btn-background-ghost.ant-btn-danger:active {
  color: #d73435;
  background-color: transparent;
  border-color: #d73435;
}
.theme-d .ant-btn-group .ant-btn-primary + .ant-btn-primary,
.theme-d .ant-btn-group .ant-btn-primary:last-child:not(:first-child) {
  border-left-color: #dc277d;
}
.theme-d .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  border-right-color: #dc277d;
}
.theme-d .ant-radio-checked .ant-radio-inner,
.theme-d .ant-radio-checked:after,
.theme-d .ant-radio-focused .ant-radio-inner,
.theme-d .ant-radio-wrapper:hover .ant-radio-inner,
.theme-d .ant-radio:hover .ant-radio-inner {
  border-color: #f5317f;
}
.theme-d .ant-radio-inner:after {
  background-color: #f5317f;
}
.theme-d .ant-radio-button-wrapper:hover {
  color: #f5317f;
}
.theme-d .ant-radio-button-wrapper-checked {
  color: #f5317f;
  outline: 0;
}
.theme-d .ant-radio-button-wrapper-checked,
.theme-d .ant-radio-button-wrapper-checked:active {
  border-color: #f5317f;
  -webkit-box-shadow: -1px 0 0 0 #f5317f;
  box-shadow: -1px 0 0 0 #f5317f;
}
.theme-d .ant-checkbox-input:focus .ant-checkbox-inner,
.theme-d .ant-checkbox-wrapper:hover .ant-checkbox-inner,
.theme-d .ant-checkbox:hover .ant-checkbox-inner,
.theme-d .ant-radio-button-wrapper-checked:first-child {
  border-color: #f5317f;
}
.theme-d .ant-checkbox-checked .ant-checkbox-inner,
.theme-d .ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: #f5317f;
  border-color: #f5317f;
}
.theme-d .ant-checkbox-checked:after,
.theme-d .ant-checkbox-indeterminate:after {
  border-color: #f5317f;
}
.theme-d .ant-switch-checked {
  background-color: #f5317f;
}
.theme-d .ant-dropdown-menu-item-selected,
.theme-d .ant-dropdown-menu-item-selected > a,
.theme-d .ant-dropdown-menu-submenu-title-selected,
.theme-d .ant-dropdown-menu-submenu-title-selected > a {
  color: #f5317f;
}
.theme-d .ant-dropdown-menu-item-selected,
.theme-d .ant-dropdown-menu-item-selected > a,
.theme-d .ant-dropdown-menu-item:hover,
.theme-d .ant-dropdown-menu-submenu-title-selected,
.theme-d .ant-dropdown-menu-submenu-title-selected > a,
.theme-d .ant-dropdown-menu-submenu-title:hover {
  background-color: #feeff5;
}
.theme-d .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
  color: #f5317f;
}
.theme-d .ant-tag-checkable-checked {
  background-color: #f5317f;
}
.theme-d .ant-tag-checkable:active {
  background-color: #dc277d;
}
.theme-d .ant-spin {
  color: #f5317f;
}
.theme-d .ant-spin-dot i {
  background-color: #f5317f;
}
.theme-d .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-d .ant-input-number-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-d .ant-input-number:focus,
.theme-d .ant-input-number:hover,
.theme-d .ant-input:focus,
.theme-d .ant-input:hover {
  border-color: #f7629e;
}
.theme-d .ant-input-number:focus,
.theme-d .ant-input:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(245, 49, 127, 0.2);
  box-shadow: 0 0 0 2px rgba(245, 49, 127, 0.2);
}
.theme-d .ant-input-disabled:hover,
.theme-d .ant-input-number-disabled:hover {
  border-color: #d9d9d9;
}
.theme-d .ant-input-number-handler:hover .ant-input-number-handler-down-inner,
.theme-d .ant-input-number-handler:hover .ant-input-number-handler-up-inner {
  color: #f7629e;
}
.theme-d .ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #f5317f;
}
.theme-d .ant-calendar-date:hover {
  background: #feeff5;
}
.theme-d .ant-calendar-date:active {
  background: #f7629e;
}
.theme-d .ant-calendar-today .ant-calendar-date {
  border-color: #f5317f;
  color: #f5317f;
}
.theme-d .ant-calendar-selected-day .ant-calendar-date {
  color: #fff;
}
.theme-d .ant-calendar-selected-day .ant-calendar-date,
.theme-d .ant-calendar-selected-day .ant-calendar-date:hover {
  background: #f5317f;
}
.theme-d .ant-pagination-item:focus,
.theme-d .ant-pagination-item:hover,
.theme-d .ant-pagination-next:focus,
.theme-d .ant-pagination-next:hover,
.theme-d .ant-pagination-prev:focus,
.theme-d .ant-pagination-prev:hover,
.theme-d .ant-time-picker-input:hover {
  border-color: #f5317f;
}
.theme-d .ant-pagination-item:focus a,
.theme-d .ant-pagination-item:hover a,
.theme-d .ant-pagination-next:focus a,
.theme-d .ant-pagination-next:hover a,
.theme-d .ant-pagination-prev:focus a,
.theme-d .ant-pagination-prev:hover a {
  color: #f5317f;
}
.theme-d .ant-pagination-item-active {
  background-color: #f5317f;
  border-color: #f5317f;
}
.theme-d .ant-pagination-item-active:focus,
.theme-d .ant-pagination-item-active:hover {
  background-color: #f7629e;
  border-color: #f7629e;
}
.theme-d .ant-pagination-item-active:focus a,
.theme-d .ant-pagination-item-active:hover a {
  color: #fff;
}
.theme-d .ant-pagination-jump-next:hover:after,
.theme-d .ant-pagination-jump-prev:hover:after {
  color: #f5317f;
}
.theme-d .ant-pagination-disabled:hover {
  border-color: #d9d9d9;
}
.theme-d .ant-pagination-disabled a,
.theme-d .ant-pagination-disabled:hover a {
  color: rgba(0, 0, 0, 0.25);
}
.theme-d .ant-select-selection:hover {
  border-color: #f7629e;
}
.ant-select-focused .theme-d .ant-select-selection,
.theme-d .ant-select-open .ant-select-selection,
.theme-d .ant-select-selection:active,
.theme-d .ant-select-selection:focus {
  border-color: #dc277d;
}
.theme-d .has-error .ant-select-selection {
  border-color: #f04134 !important;
}
.theme-d .ant-slider-handle:hover,
.theme-d .ant-slider:hover .ant-slider-handle {
  border-color: #f7629e;
}
.theme-d .ant-slider:hover .ant-slider-track {
  background-color: #f983b2;
}
.theme-d .ant-slider-track {
  background-color: #fbadcc;
}
.theme-d .ant-slider-handle {
  border-color: #fa98bf;
}
.theme-d .ant-slider-handle:active {
  -webkit-box-shadow: 0 0 0 2px rgba(245, 49, 127, 0.2);
  box-shadow: 0 0 0 2px rgba(245, 49, 127, 0.2);
}
.theme-d .ant-slider-dot-active {
  border-color: #fa98bf;
}
.theme-d .ant-tabs-ink-bar {
  background-color: #f5317f;
}
.theme-d .ant-tabs-nav .ant-tabs-tab:hover {
  color: #f7629e;
}
.theme-d .ant-tabs-nav .ant-tabs-tab:active {
  color: #dc277d;
}
.theme-d .ant-tabs-nav .ant-tabs-tab-active {
  color: #f5317f;
}
.theme-d .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner,
.theme-d .ant-tree .ant-tree-checkbox-checked:after,
.theme-d .ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner,
.theme-d .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.theme-d .ant-tree-checkbox:hover .ant-tree-checkbox-inner {
  border-color: #f5317f;
}
.theme-d .ant-tree .ant-tree-node-content-wrapper:hover {
  background-color: #feeff5;
}
.theme-d .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background-color: #f5317f;
}
.theme-d .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
  background-color: #fdd8e7;
}
.theme-d .ant-tree span.ant-tree-icon_loading:after {
  color: #f5317f;
}
.theme-d .ant-calendar-header a:hover {
  color: #f7629e;
}
.theme-d .ant-calendar .ant-calendar-ok-btn {
  background-color: #f5317f;
  border-color: #f5317f;
}
.theme-d .ant-calendar .ant-calendar-ok-btn:focus,
.theme-d .ant-calendar .ant-calendar-ok-btn:hover {
  border-color: #f7629e;
  background-color: #f7629e;
}
.theme-d .ant-calendar .ant-calendar-ok-btn:active {
  border-color: #dc277d;
  background-color: #dc277d;
}
.theme-e .logo {
  background: #373d41;
}
.theme-e .nav > li > a:hover {
  color: #000;
}
.theme-e .nav > li.nav-item-selected {
  border-left-color: #373d41;
}
.theme-e .nav > li.nav-item-selected > a {
  color: #000;
}
.theme-e a {
  color: #373d41;
}
.theme-e a:hover {
  color: #676b6e;
}
.theme-e a:active {
  color: #303538;
}
.theme-e .ant-btn:focus,
.theme-e .ant-btn:hover {
  color: #676b6e;
  border-color: #676b6e;
}
.theme-e .ant-btn.active,
.theme-e .ant-btn:active {
  color: #303538;
  border-color: #303538;
}
.theme-e .ant-btn.ant-btn-clicked:after {
  border-color: #373d41;
}
.theme-e .ant-btn.disabled,
.theme-e .ant-btn.disabled.active,
.theme-e .ant-btn.disabled:active,
.theme-e .ant-btn.disabled:focus,
.theme-e .ant-btn.disabled:hover,
.theme-e .ant-btn[disabled],
.theme-e .ant-btn[disabled].active,
.theme-e .ant-btn[disabled]:active,
.theme-e .ant-btn[disabled]:focus,
.theme-e .ant-btn[disabled]:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-e .ant-btn-primary {
  background-color: #373d41;
  border-color: #373d41;
}
.theme-e .ant-btn-primary.active,
.theme-e .ant-btn-primary.hover,
.theme-e .ant-btn-primary:active,
.theme-e .ant-btn-primary:focus,
.theme-e .ant-btn-primary:hover {
  color: #fff;
  background-color: #676b6e;
}
.theme-e .ant-btn-danger {
  color: #f04134;
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-e .ant-btn-danger:focus,
.theme-e .ant-btn-danger:hover {
  color: #fff;
  background-color: #f04134;
  border-color: #f04134;
}
.theme-e .ant-btn-danger.active,
.theme-e .ant-btn-danger:active {
  color: #fff;
  background-color: #d73435;
  border-color: #d73435;
}
.theme-e .ant-btn-danger.ant-btn-clicked:after {
  border-color: #d9d9d9;
}
.theme-e .ant-btn-background-ghost.ant-btn-primary {
  color: #373d41;
  background-color: transparent;
  border-color: #373d41;
}
.theme-e .ant-btn-background-ghost.ant-btn-primary:focus,
.theme-e .ant-btn-background-ghost.ant-btn-primary:hover {
  color: #676b6e;
  background-color: transparent;
  border-color: #676b6e;
}
.theme-e .ant-btn-background-ghost.ant-btn-primary.active,
.theme-e .ant-btn-background-ghost.ant-btn-primary:active {
  color: #303538;
  background-color: transparent;
  border-color: #303538;
}
.theme-e .ant-btn-background-ghost.ant-btn-danger {
  border-color: #f04134;
}
.theme-e .ant-btn-background-ghost.ant-btn-danger:focus,
.theme-e .ant-btn-background-ghost.ant-btn-danger:hover {
  color: #f46e65;
  background-color: transparent;
  border-color: #f46e65;
}
.theme-e .ant-btn-background-ghost.ant-btn-danger.active,
.theme-e .ant-btn-background-ghost.ant-btn-danger:active {
  color: #d73435;
  background-color: transparent;
  border-color: #d73435;
}
.theme-e .ant-btn-group .ant-btn-primary + .ant-btn-primary,
.theme-e .ant-btn-group .ant-btn-primary:last-child:not(:first-child) {
  border-left-color: #303538;
}
.theme-e .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  border-right-color: #303538;
}
.theme-e .ant-radio-checked .ant-radio-inner,
.theme-e .ant-radio-checked:after,
.theme-e .ant-radio-focused .ant-radio-inner,
.theme-e .ant-radio-wrapper:hover .ant-radio-inner,
.theme-e .ant-radio:hover .ant-radio-inner {
  border-color: #373d41;
}
.theme-e .ant-radio-inner:after {
  background-color: #373d41;
}
.theme-e .ant-radio-button-wrapper:hover {
  color: #373d41;
}
.theme-e .ant-radio-button-wrapper-checked {
  color: #373d41;
  outline: 0;
}
.theme-e .ant-radio-button-wrapper-checked,
.theme-e .ant-radio-button-wrapper-checked:active {
  border-color: #373d41;
  -webkit-box-shadow: -1px 0 0 0 #373d41;
  box-shadow: -1px 0 0 0 #373d41;
}
.theme-e .ant-checkbox-input:focus .ant-checkbox-inner,
.theme-e .ant-checkbox-wrapper:hover .ant-checkbox-inner,
.theme-e .ant-checkbox:hover .ant-checkbox-inner,
.theme-e .ant-radio-button-wrapper-checked:first-child {
  border-color: #373d41;
}
.theme-e .ant-checkbox-checked .ant-checkbox-inner,
.theme-e .ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: #373d41;
  border-color: #373d41;
}
.theme-e .ant-checkbox-checked:after,
.theme-e .ant-checkbox-indeterminate:after {
  border-color: #373d41;
}
.theme-e .ant-switch-checked {
  background-color: #373d41;
}
.theme-e .ant-dropdown-menu-item-selected,
.theme-e .ant-dropdown-menu-item-selected > a,
.theme-e .ant-dropdown-menu-submenu-title-selected,
.theme-e .ant-dropdown-menu-submenu-title-selected > a {
  color: #373d41;
}
.theme-e .ant-dropdown-menu-item-selected,
.theme-e .ant-dropdown-menu-item-selected > a,
.theme-e .ant-dropdown-menu-item:hover,
.theme-e .ant-dropdown-menu-submenu-title-selected,
.theme-e .ant-dropdown-menu-submenu-title-selected > a,
.theme-e .ant-dropdown-menu-submenu-title:hover {
  background-color: #eff0f0;
}
.theme-e .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
  color: #373d41;
}
.theme-e .ant-tag-checkable-checked {
  background-color: #373d41;
}
.theme-e .ant-tag-checkable:active {
  background-color: #303538;
}
.theme-e .ant-spin {
  color: #373d41;
}
.theme-e .ant-spin-dot i {
  background-color: #373d41;
}
.theme-e .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-e .ant-input-number-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-e .ant-input-number:focus,
.theme-e .ant-input-number:hover,
.theme-e .ant-input:focus,
.theme-e .ant-input:hover {
  border-color: #676b6e;
}
.theme-e .ant-input-number:focus,
.theme-e .ant-input:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(55, 61, 65, 0.2);
  box-shadow: 0 0 0 2px rgba(55, 61, 65, 0.2);
}
.theme-e .ant-input-disabled:hover,
.theme-e .ant-input-number-disabled:hover {
  border-color: #d9d9d9;
}
.theme-e .ant-input-number-handler:hover .ant-input-number-handler-down-inner,
.theme-e .ant-input-number-handler:hover .ant-input-number-handler-up-inner {
  color: #676b6e;
}
.theme-e .ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #373d41;
}
.theme-e .ant-calendar-date:hover {
  background: #eff0f0;
}
.theme-e .ant-calendar-date:active {
  background: #676b6e;
}
.theme-e .ant-calendar-today .ant-calendar-date {
  border-color: #373d41;
  color: #373d41;
}
.theme-e .ant-calendar-selected-day .ant-calendar-date {
  color: #fff;
}
.theme-e .ant-calendar-selected-day .ant-calendar-date,
.theme-e .ant-calendar-selected-day .ant-calendar-date:hover {
  background: #373d41;
}
.theme-e .ant-pagination-item:focus,
.theme-e .ant-pagination-item:hover,
.theme-e .ant-pagination-next:focus,
.theme-e .ant-pagination-next:hover,
.theme-e .ant-pagination-prev:focus,
.theme-e .ant-pagination-prev:hover,
.theme-e .ant-time-picker-input:hover {
  border-color: #373d41;
}
.theme-e .ant-pagination-item:focus a,
.theme-e .ant-pagination-item:hover a,
.theme-e .ant-pagination-next:focus a,
.theme-e .ant-pagination-next:hover a,
.theme-e .ant-pagination-prev:focus a,
.theme-e .ant-pagination-prev:hover a {
  color: #373d41;
}
.theme-e .ant-pagination-item-active {
  background-color: #373d41;
  border-color: #373d41;
}
.theme-e .ant-pagination-item-active:focus,
.theme-e .ant-pagination-item-active:hover {
  background-color: #676b6e;
  border-color: #676b6e;
}
.theme-e .ant-pagination-item-active:focus a,
.theme-e .ant-pagination-item-active:hover a {
  color: #fff;
}
.theme-e .ant-pagination-jump-next:hover:after,
.theme-e .ant-pagination-jump-prev:hover:after {
  color: #373d41;
}
.theme-e .ant-pagination-disabled:hover {
  border-color: #d9d9d9;
}
.theme-e .ant-pagination-disabled a,
.theme-e .ant-pagination-disabled:hover a {
  color: rgba(0, 0, 0, 0.25);
}
.theme-e .ant-select-selection:hover {
  border-color: #676b6e;
}
.ant-select-focused .theme-e .ant-select-selection,
.theme-e .ant-select-open .ant-select-selection,
.theme-e .ant-select-selection:active,
.theme-e .ant-select-selection:focus {
  border-color: #303538;
}
.theme-e .has-error .ant-select-selection {
  border-color: #f04134 !important;
}
.theme-e .ant-slider-handle:hover,
.theme-e .ant-slider:hover .ant-slider-handle {
  border-color: #676b6e;
}
.theme-e .ant-slider:hover .ant-slider-track {
  background-color: #878b8d;
}
.theme-e .ant-slider-track {
  background-color: #afb1b3;
}
.theme-e .ant-slider-handle {
  border-color: #9b9ea0;
}
.theme-e .ant-slider-handle:active {
  -webkit-box-shadow: 0 0 0 2px rgba(55, 61, 65, 0.2);
  box-shadow: 0 0 0 2px rgba(55, 61, 65, 0.2);
}
.theme-e .ant-slider-dot-active {
  border-color: #9b9ea0;
}
.theme-e .ant-tabs-ink-bar {
  background-color: #373d41;
}
.theme-e .ant-tabs-nav .ant-tabs-tab:hover {
  color: #676b6e;
}
.theme-e .ant-tabs-nav .ant-tabs-tab:active {
  color: #303538;
}
.theme-e .ant-tabs-nav .ant-tabs-tab-active {
  color: #373d41;
}
.theme-e .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner,
.theme-e .ant-tree .ant-tree-checkbox-checked:after,
.theme-e .ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner,
.theme-e .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.theme-e .ant-tree-checkbox:hover .ant-tree-checkbox-inner {
  border-color: #373d41;
}
.theme-e .ant-tree .ant-tree-node-content-wrapper:hover {
  background-color: #eff0f0;
}
.theme-e .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background-color: #373d41;
}
.theme-e .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
  background-color: #d9dadb;
}
.theme-e .ant-tree span.ant-tree-icon_loading:after {
  color: #373d41;
}
.theme-e .ant-calendar-header a:hover {
  color: #676b6e;
}
.theme-e .ant-calendar .ant-calendar-ok-btn {
  background-color: #373d41;
  border-color: #373d41;
}
.theme-e .ant-calendar .ant-calendar-ok-btn:focus,
.theme-e .ant-calendar .ant-calendar-ok-btn:hover {
  border-color: #676b6e;
  background-color: #676b6e;
}
.theme-e .ant-calendar .ant-calendar-ok-btn:active {
  border-color: #303538;
  background-color: #303538;
}
.theme-f .sider_menu,
.theme-g .sider_menu,
.theme-h .sider_menu,
.theme-i .sider_menu,
.theme-j .sider_menu {
  background-color: #001529;
}
.theme-f .aside {
  background-color: #404040;
}
.theme-f .nav > li.nav-group-title,
.theme-f .nav > li > a {
  color: rgba(255, 255, 255, 0.67);
}
.theme-f .nav-floating {
  background-color: #404040;
  border: none;
}
.theme-f .user-block .info {
  color: rgba(255, 255, 255, 0.67);
}
.theme-f .logo {
  background-color: #108ee9;
}
.theme-f .header {
  background-color: #108ee9;
}
.theme-f .nav > li > a:hover {
  color: #0c60aa;
}
.theme-f .nav > li.nav-item-selected {
  background-color: #333;
  border-left-color: #0c60aa;
}
.theme-f .nav > li.nav-item-selected > a {
  color: #0c60aa;
}
.theme-f a {
  color: #108ee9;
}
.theme-f a:hover {
  color: #49a9ee;
}
.theme-f a:active {
  color: #0e77ca;
}
.theme-f .ant-btn:focus,
.theme-f .ant-btn:hover {
  color: #49a9ee;
  border-color: #49a9ee;
}
.theme-f .ant-btn.active,
.theme-f .ant-btn:active {
  color: #0e77ca;
  border-color: #0e77ca;
}
.theme-f .ant-btn.ant-btn-clicked:after {
  border-color: #108ee9;
}
.theme-f .ant-btn.disabled,
.theme-f .ant-btn.disabled.active,
.theme-f .ant-btn.disabled:active,
.theme-f .ant-btn.disabled:focus,
.theme-f .ant-btn.disabled:hover,
.theme-f .ant-btn[disabled],
.theme-f .ant-btn[disabled].active,
.theme-f .ant-btn[disabled]:active,
.theme-f .ant-btn[disabled]:focus,
.theme-f .ant-btn[disabled]:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-f .ant-btn-primary {
  background-color: #108ee9;
  border-color: #108ee9;
}
.theme-f .ant-btn-primary.active,
.theme-f .ant-btn-primary.hover,
.theme-f .ant-btn-primary:active,
.theme-f .ant-btn-primary:focus,
.theme-f .ant-btn-primary:hover {
  color: #fff;
  background-color: #49a9ee;
}
.theme-f .ant-btn-danger {
  color: #f04134;
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-f .ant-btn-danger:focus,
.theme-f .ant-btn-danger:hover {
  color: #fff;
  background-color: #f04134;
  border-color: #f04134;
}
.theme-f .ant-btn-danger.active,
.theme-f .ant-btn-danger:active {
  color: #fff;
  background-color: #d73435;
  border-color: #d73435;
}
.theme-f .ant-btn-danger.ant-btn-clicked:after {
  border-color: #d9d9d9;
}
.theme-f .ant-btn-background-ghost.ant-btn-primary {
  color: #108ee9;
  background-color: transparent;
  border-color: #108ee9;
}
.theme-f .ant-btn-background-ghost.ant-btn-primary:focus,
.theme-f .ant-btn-background-ghost.ant-btn-primary:hover {
  color: #49a9ee;
  background-color: transparent;
  border-color: #49a9ee;
}
.theme-f .ant-btn-background-ghost.ant-btn-primary.active,
.theme-f .ant-btn-background-ghost.ant-btn-primary:active {
  color: #0e77ca;
  background-color: transparent;
  border-color: #0e77ca;
}
.theme-f .ant-btn-background-ghost.ant-btn-danger {
  border-color: #f04134;
}
.theme-f .ant-btn-background-ghost.ant-btn-danger:focus,
.theme-f .ant-btn-background-ghost.ant-btn-danger:hover {
  color: #f46e65;
  background-color: transparent;
  border-color: #f46e65;
}
.theme-f .ant-btn-background-ghost.ant-btn-danger.active,
.theme-f .ant-btn-background-ghost.ant-btn-danger:active {
  color: #d73435;
  background-color: transparent;
  border-color: #d73435;
}
.theme-f .ant-btn-group .ant-btn-primary + .ant-btn-primary,
.theme-f .ant-btn-group .ant-btn-primary:last-child:not(:first-child) {
  border-left-color: #0e77ca;
}
.theme-f .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  border-right-color: #0e77ca;
}
.theme-f .ant-radio-checked .ant-radio-inner,
.theme-f .ant-radio-checked:after,
.theme-f .ant-radio-focused .ant-radio-inner,
.theme-f .ant-radio-wrapper:hover .ant-radio-inner,
.theme-f .ant-radio:hover .ant-radio-inner {
  border-color: #108ee9;
}
.theme-f .ant-radio-inner:after {
  background-color: #108ee9;
}
.theme-f .ant-radio-button-wrapper:hover {
  color: #108ee9;
}
.theme-f .ant-radio-button-wrapper-checked {
  color: #108ee9;
  outline: 0;
}
.theme-f .ant-radio-button-wrapper-checked,
.theme-f .ant-radio-button-wrapper-checked:active {
  border-color: #108ee9;
  -webkit-box-shadow: -1px 0 0 0 #108ee9;
  box-shadow: -1px 0 0 0 #108ee9;
}
.theme-f .ant-checkbox-input:focus .ant-checkbox-inner,
.theme-f .ant-checkbox-wrapper:hover .ant-checkbox-inner,
.theme-f .ant-checkbox:hover .ant-checkbox-inner,
.theme-f .ant-radio-button-wrapper-checked:first-child {
  border-color: #108ee9;
}
.theme-f .ant-checkbox-checked .ant-checkbox-inner,
.theme-f .ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: #108ee9;
  border-color: #108ee9;
}
.theme-f .ant-checkbox-checked:after,
.theme-f .ant-checkbox-indeterminate:after {
  border-color: #108ee9;
}
.theme-f .ant-switch-checked {
  background-color: #108ee9;
}
.theme-f .ant-dropdown-menu-item-selected,
.theme-f .ant-dropdown-menu-item-selected > a,
.theme-f .ant-dropdown-menu-submenu-title-selected,
.theme-f .ant-dropdown-menu-submenu-title-selected > a {
  color: #108ee9;
}
.theme-f .ant-dropdown-menu-item-selected,
.theme-f .ant-dropdown-menu-item-selected > a,
.theme-f .ant-dropdown-menu-item:hover,
.theme-f .ant-dropdown-menu-submenu-title-selected,
.theme-f .ant-dropdown-menu-submenu-title-selected > a,
.theme-f .ant-dropdown-menu-submenu-title:hover {
  background-color: #ecf6fd;
}
.theme-f .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
  color: #108ee9;
}
.theme-f .ant-tag-checkable-checked {
  background-color: #108ee9;
}
.theme-f .ant-tag-checkable:active {
  background-color: #0e77ca;
}
.theme-f .ant-spin {
  color: #108ee9;
}
.theme-f .ant-spin-dot i {
  background-color: #108ee9;
}
.theme-f .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-f .ant-input-number-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-f .ant-input-number:focus,
.theme-f .ant-input-number:hover,
.theme-f .ant-input:focus,
.theme-f .ant-input:hover {
  border-color: #49a9ee;
}
.theme-f .ant-input-number:focus,
.theme-f .ant-input:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(16, 142, 233, 0.2);
  box-shadow: 0 0 0 2px rgba(16, 142, 233, 0.2);
}
.theme-f .ant-input-disabled:hover,
.theme-f .ant-input-number-disabled:hover {
  border-color: #d9d9d9;
}
.theme-f .ant-input-number-handler:hover .ant-input-number-handler-down-inner,
.theme-f .ant-input-number-handler:hover .ant-input-number-handler-up-inner {
  color: #49a9ee;
}
.theme-f .ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #108ee9;
}
.theme-f .ant-calendar-date:hover {
  background: #ecf6fd;
}
.theme-f .ant-calendar-date:active {
  background: #49a9ee;
}
.theme-f .ant-calendar-today .ant-calendar-date {
  border-color: #108ee9;
  color: #108ee9;
}
.theme-f .ant-calendar-selected-day .ant-calendar-date {
  color: #fff;
}
.theme-f .ant-calendar-selected-day .ant-calendar-date,
.theme-f .ant-calendar-selected-day .ant-calendar-date:hover {
  background: #108ee9;
}
.theme-f .ant-pagination-item:focus,
.theme-f .ant-pagination-item:hover,
.theme-f .ant-pagination-next:focus,
.theme-f .ant-pagination-next:hover,
.theme-f .ant-pagination-prev:focus,
.theme-f .ant-pagination-prev:hover,
.theme-f .ant-time-picker-input:hover {
  border-color: #108ee9;
}
.theme-f .ant-pagination-item:focus a,
.theme-f .ant-pagination-item:hover a,
.theme-f .ant-pagination-next:focus a,
.theme-f .ant-pagination-next:hover a,
.theme-f .ant-pagination-prev:focus a,
.theme-f .ant-pagination-prev:hover a {
  color: #108ee9;
}
.theme-f .ant-pagination-item-active {
  background-color: #108ee9;
  border-color: #108ee9;
}
.theme-f .ant-pagination-item-active:focus,
.theme-f .ant-pagination-item-active:hover {
  background-color: #49a9ee;
  border-color: #49a9ee;
}
.theme-f .ant-pagination-item-active:focus a,
.theme-f .ant-pagination-item-active:hover a {
  color: #fff;
}
.theme-f .ant-pagination-jump-next:hover:after,
.theme-f .ant-pagination-jump-prev:hover:after {
  color: #108ee9;
}
.theme-f .ant-pagination-disabled:hover {
  border-color: #d9d9d9;
}
.theme-f .ant-pagination-disabled a,
.theme-f .ant-pagination-disabled:hover a {
  color: rgba(0, 0, 0, 0.25);
}
.theme-f .ant-select-selection:hover {
  border-color: #49a9ee;
}
.ant-select-focused .theme-f .ant-select-selection,
.theme-f .ant-select-open .ant-select-selection,
.theme-f .ant-select-selection:active,
.theme-f .ant-select-selection:focus {
  border-color: #0e77ca;
}
.theme-f .has-error .ant-select-selection {
  border-color: #f04134 !important;
}
.theme-f .ant-slider-handle:hover,
.theme-f .ant-slider:hover .ant-slider-handle {
  border-color: #49a9ee;
}
.theme-f .ant-slider:hover .ant-slider-track {
  background-color: #70bbf2;
}
.theme-f .ant-slider-track {
  background-color: #9fd2f6;
}
.theme-f .ant-slider-handle {
  border-color: #88c7f4;
}
.theme-f .ant-slider-handle:active {
  -webkit-box-shadow: 0 0 0 2px rgba(16, 142, 233, 0.2);
  box-shadow: 0 0 0 2px rgba(16, 142, 233, 0.2);
}
.theme-f .ant-slider-dot-active {
  border-color: #88c7f4;
}
.theme-f .ant-tabs-ink-bar {
  background-color: #108ee9;
}
.theme-f .ant-tabs-nav .ant-tabs-tab:hover {
  color: #49a9ee;
}
.theme-f .ant-tabs-nav .ant-tabs-tab:active {
  color: #0e77ca;
}
.theme-f .ant-tabs-nav .ant-tabs-tab-active {
  color: #108ee9;
}
.theme-f .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner,
.theme-f .ant-tree .ant-tree-checkbox-checked:after,
.theme-f .ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner,
.theme-f .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.theme-f .ant-tree-checkbox:hover .ant-tree-checkbox-inner {
  border-color: #108ee9;
}
.theme-f .ant-tree .ant-tree-node-content-wrapper:hover {
  background-color: #ecf6fd;
}
.theme-f .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background-color: #108ee9;
}
.theme-f .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
  background-color: #d2eafb;
}
.theme-f .ant-tree span.ant-tree-icon_loading:after {
  color: #108ee9;
}
.theme-f .ant-calendar-header a:hover {
  color: #49a9ee;
}
.theme-f .ant-calendar .ant-calendar-ok-btn {
  background-color: #108ee9;
  border-color: #108ee9;
}
.theme-f .ant-calendar .ant-calendar-ok-btn:focus,
.theme-f .ant-calendar .ant-calendar-ok-btn:hover {
  border-color: #49a9ee;
  background-color: #49a9ee;
}
.theme-f .ant-calendar .ant-calendar-ok-btn:active {
  border-color: #0e77ca;
  background-color: #0e77ca;
}
.theme-g .aside {
  background-color: #404040;
}
.theme-g .nav > li.nav-group-title,
.theme-g .nav > li > a {
  color: rgba(255, 255, 255, 0.67);
}
.theme-g .nav-floating {
  background-color: #404040;
  border: none;
}
.theme-g .user-block .info {
  color: rgba(255, 255, 255, 0.67);
}
.theme-g .logo {
  background-color: #00a2ae;
}
.theme-g .header {
  background-color: #00a2ae;
}
.theme-g .nav > li > a:hover {
  color: #00707f;
}
.theme-g .nav > li.nav-item-selected {
  background-color: #333;
  border-left-color: #00707f;
}
.theme-g .nav > li.nav-item-selected > a {
  color: #00707f;
}
.theme-g a {
  color: #00a2ae;
}
.theme-g a:hover {
  color: #3db8c1;
}
.theme-g a:active {
  color: #008997;
}
.theme-g .ant-btn:focus,
.theme-g .ant-btn:hover {
  color: #3db8c1;
  border-color: #3db8c1;
}
.theme-g .ant-btn.active,
.theme-g .ant-btn:active {
  color: #008997;
  border-color: #008997;
}
.theme-g .ant-btn.ant-btn-clicked:after {
  border-color: #00a2ae;
}
.theme-g .ant-btn.disabled,
.theme-g .ant-btn.disabled.active,
.theme-g .ant-btn.disabled:active,
.theme-g .ant-btn.disabled:focus,
.theme-g .ant-btn.disabled:hover,
.theme-g .ant-btn[disabled],
.theme-g .ant-btn[disabled].active,
.theme-g .ant-btn[disabled]:active,
.theme-g .ant-btn[disabled]:focus,
.theme-g .ant-btn[disabled]:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-g .ant-btn-primary {
  background-color: #00a2ae;
  border-color: #00a2ae;
}
.theme-g .ant-btn-primary.active,
.theme-g .ant-btn-primary.hover,
.theme-g .ant-btn-primary:active,
.theme-g .ant-btn-primary:focus,
.theme-g .ant-btn-primary:hover {
  color: #fff;
  background-color: #3db8c1;
}
.theme-g .ant-btn-danger {
  color: #f04134;
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-g .ant-btn-danger:focus,
.theme-g .ant-btn-danger:hover {
  color: #fff;
  background-color: #f04134;
  border-color: #f04134;
}
.theme-g .ant-btn-danger.active,
.theme-g .ant-btn-danger:active {
  color: #fff;
  background-color: #d73435;
  border-color: #d73435;
}
.theme-g .ant-btn-danger.ant-btn-clicked:after {
  border-color: #d9d9d9;
}
.theme-g .ant-btn-background-ghost.ant-btn-primary {
  color: #00a2ae;
  background-color: transparent;
  border-color: #00a2ae;
}
.theme-g .ant-btn-background-ghost.ant-btn-primary:focus,
.theme-g .ant-btn-background-ghost.ant-btn-primary:hover {
  color: #3db8c1;
  background-color: transparent;
  border-color: #3db8c1;
}
.theme-g .ant-btn-background-ghost.ant-btn-primary.active,
.theme-g .ant-btn-background-ghost.ant-btn-primary:active {
  color: #008997;
  background-color: transparent;
  border-color: #008997;
}
.theme-g .ant-btn-background-ghost.ant-btn-danger {
  border-color: #f04134;
}
.theme-g .ant-btn-background-ghost.ant-btn-danger:focus,
.theme-g .ant-btn-background-ghost.ant-btn-danger:hover {
  color: #f46e65;
  background-color: transparent;
  border-color: #f46e65;
}
.theme-g .ant-btn-background-ghost.ant-btn-danger.active,
.theme-g .ant-btn-background-ghost.ant-btn-danger:active {
  color: #d73435;
  background-color: transparent;
  border-color: #d73435;
}
.theme-g .ant-btn-group .ant-btn-primary + .ant-btn-primary,
.theme-g .ant-btn-group .ant-btn-primary:last-child:not(:first-child) {
  border-left-color: #008997;
}
.theme-g .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  border-right-color: #008997;
}
.theme-g .ant-radio-checked .ant-radio-inner,
.theme-g .ant-radio-checked:after,
.theme-g .ant-radio-focused .ant-radio-inner,
.theme-g .ant-radio-wrapper:hover .ant-radio-inner,
.theme-g .ant-radio:hover .ant-radio-inner {
  border-color: #00a2ae;
}
.theme-g .ant-radio-inner:after {
  background-color: #00a2ae;
}
.theme-g .ant-radio-button-wrapper:hover {
  color: #00a2ae;
}
.theme-g .ant-radio-button-wrapper-checked {
  color: #00a2ae;
  outline: 0;
}
.theme-g .ant-radio-button-wrapper-checked,
.theme-g .ant-radio-button-wrapper-checked:active {
  border-color: #00a2ae;
  -webkit-box-shadow: -1px 0 0 0 #00a2ae;
  box-shadow: -1px 0 0 0 #00a2ae;
}
.theme-g .ant-checkbox-input:focus .ant-checkbox-inner,
.theme-g .ant-checkbox-wrapper:hover .ant-checkbox-inner,
.theme-g .ant-checkbox:hover .ant-checkbox-inner,
.theme-g .ant-radio-button-wrapper-checked:first-child {
  border-color: #00a2ae;
}
.theme-g .ant-checkbox-checked .ant-checkbox-inner,
.theme-g .ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: #00a2ae;
  border-color: #00a2ae;
}
.theme-g .ant-checkbox-checked:after,
.theme-g .ant-checkbox-indeterminate:after {
  border-color: #00a2ae;
}
.theme-g .ant-switch-checked {
  background-color: #00a2ae;
}
.theme-g .ant-dropdown-menu-item-selected,
.theme-g .ant-dropdown-menu-item-selected > a,
.theme-g .ant-dropdown-menu-submenu-title-selected,
.theme-g .ant-dropdown-menu-submenu-title-selected > a {
  color: #00a2ae;
}
.theme-g .ant-dropdown-menu-item-selected,
.theme-g .ant-dropdown-menu-item-selected > a,
.theme-g .ant-dropdown-menu-item:hover,
.theme-g .ant-dropdown-menu-submenu-title-selected,
.theme-g .ant-dropdown-menu-submenu-title-selected > a,
.theme-g .ant-dropdown-menu-submenu-title:hover {
  background-color: #ebf8f9;
}
.theme-g .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
  color: #00a2ae;
}
.theme-g .ant-tag-checkable-checked {
  background-color: #00a2ae;
}
.theme-g .ant-tag-checkable:active {
  background-color: #008997;
}
.theme-g .ant-spin {
  color: #00a2ae;
}
.theme-g .ant-spin-dot i {
  background-color: #00a2ae;
}
.theme-g .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-g .ant-input-number-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-g .ant-input-number:focus,
.theme-g .ant-input-number:hover,
.theme-g .ant-input:focus,
.theme-g .ant-input:hover {
  border-color: #3db8c1;
}
.theme-g .ant-input-number:focus,
.theme-g .ant-input:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(0, 162, 174, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 162, 174, 0.2);
}
.theme-g .ant-input-disabled:hover,
.theme-g .ant-input-number-disabled:hover {
  border-color: #d9d9d9;
}
.theme-g .ant-input-number-handler:hover .ant-input-number-handler-down-inner,
.theme-g .ant-input-number-handler:hover .ant-input-number-handler-up-inner {
  color: #3db8c1;
}
.theme-g .ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #00a2ae;
}
.theme-g .ant-calendar-date:hover {
  background: #ebf8f9;
}
.theme-g .ant-calendar-date:active {
  background: #3db8c1;
}
.theme-g .ant-calendar-today .ant-calendar-date {
  border-color: #00a2ae;
  color: #00a2ae;
}
.theme-g .ant-calendar-selected-day .ant-calendar-date {
  color: #fff;
}
.theme-g .ant-calendar-selected-day .ant-calendar-date,
.theme-g .ant-calendar-selected-day .ant-calendar-date:hover {
  background: #00a2ae;
}
.theme-g .ant-pagination-item:focus,
.theme-g .ant-pagination-item:hover,
.theme-g .ant-pagination-next:focus,
.theme-g .ant-pagination-next:hover,
.theme-g .ant-pagination-prev:focus,
.theme-g .ant-pagination-prev:hover,
.theme-g .ant-time-picker-input:hover {
  border-color: #00a2ae;
}
.theme-g .ant-pagination-item:focus a,
.theme-g .ant-pagination-item:hover a,
.theme-g .ant-pagination-next:focus a,
.theme-g .ant-pagination-next:hover a,
.theme-g .ant-pagination-prev:focus a,
.theme-g .ant-pagination-prev:hover a {
  color: #00a2ae;
}
.theme-g .ant-pagination-item-active {
  background-color: #00a2ae;
  border-color: #00a2ae;
}
.theme-g .ant-pagination-item-active:focus,
.theme-g .ant-pagination-item-active:hover {
  background-color: #3db8c1;
  border-color: #3db8c1;
}
.theme-g .ant-pagination-item-active:focus a,
.theme-g .ant-pagination-item-active:hover a {
  color: #fff;
}
.theme-g .ant-pagination-jump-next:hover:after,
.theme-g .ant-pagination-jump-prev:hover:after {
  color: #00a2ae;
}
.theme-g .ant-pagination-disabled:hover {
  border-color: #d9d9d9;
}
.theme-g .ant-pagination-disabled a,
.theme-g .ant-pagination-disabled:hover a {
  color: rgba(0, 0, 0, 0.25);
}
.theme-g .ant-select-selection:hover {
  border-color: #3db8c1;
}
.ant-select-focused .theme-g .ant-select-selection,
.theme-g .ant-select-open .ant-select-selection,
.theme-g .ant-select-selection:active,
.theme-g .ant-select-selection:focus {
  border-color: #008997;
}
.theme-g .has-error .ant-select-selection {
  border-color: #f04134 !important;
}
.theme-g .ant-slider-handle:hover,
.theme-g .ant-slider:hover .ant-slider-handle {
  border-color: #3db8c1;
}
.theme-g .ant-slider:hover .ant-slider-track {
  background-color: #66c7ce;
}
.theme-g .ant-slider-track {
  background-color: #99dadf;
}
.theme-g .ant-slider-handle {
  border-color: #80d1d7;
}
.theme-g .ant-slider-handle:active {
  -webkit-box-shadow: 0 0 0 2px rgba(0, 162, 174, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 162, 174, 0.2);
}
.theme-g .ant-slider-dot-active {
  border-color: #80d1d7;
}
.theme-g .ant-tabs-ink-bar {
  background-color: #00a2ae;
}
.theme-g .ant-tabs-nav .ant-tabs-tab:hover {
  color: #3db8c1;
}
.theme-g .ant-tabs-nav .ant-tabs-tab:active {
  color: #008997;
}
.theme-g .ant-tabs-nav .ant-tabs-tab-active {
  color: #00a2ae;
}
.theme-g .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner,
.theme-g .ant-tree .ant-tree-checkbox-checked:after,
.theme-g .ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner,
.theme-g .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.theme-g .ant-tree-checkbox:hover .ant-tree-checkbox-inner {
  border-color: #00a2ae;
}
.theme-g .ant-tree .ant-tree-node-content-wrapper:hover {
  background-color: #ebf8f9;
}
.theme-g .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background-color: #00a2ae;
}
.theme-g .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
  background-color: #cfedf0;
}
.theme-g .ant-tree span.ant-tree-icon_loading:after {
  color: #00a2ae;
}
.theme-g .ant-calendar-header a:hover {
  color: #3db8c1;
}
.theme-g .ant-calendar .ant-calendar-ok-btn {
  background-color: #00a2ae;
  border-color: #00a2ae;
}
.theme-g .ant-calendar .ant-calendar-ok-btn:focus,
.theme-g .ant-calendar .ant-calendar-ok-btn:hover {
  border-color: #3db8c1;
  background-color: #3db8c1;
}
.theme-g .ant-calendar .ant-calendar-ok-btn:active {
  border-color: #008997;
  background-color: #008997;
}
.theme-h .aside {
  background-color: #404040;
}
.theme-h .nav > li.nav-group-title,
.theme-h .nav > li > a {
  color: rgba(255, 255, 255, 0.67);
}
.theme-h .nav-floating {
  background-color: #404040;
  border: none;
}
.theme-h .user-block .info {
  color: rgba(255, 255, 255, 0.67);
}
.theme-h .header {
  background-color: #00a854;
}
.theme-h .logo {
  background-color: #00a854;
}
.theme-h .nav > li > a:hover {
  color: #007b43;
}
.theme-h .nav > li.nav-item-selected {
  background-color: #333;
  border-left-color: #007b43;
}
.theme-h .nav > li.nav-item-selected > a {
  color: #007b43;
}
.theme-h a {
  color: #00a854;
}
.theme-h a:hover {
  color: #3dbd7d;
}
.theme-h a:active {
  color: #00924c;
}
.theme-h .ant-btn:focus,
.theme-h .ant-btn:hover {
  color: #3dbd7d;
  border-color: #3dbd7d;
}
.theme-h .ant-btn.active,
.theme-h .ant-btn:active {
  color: #00924c;
  border-color: #00924c;
}
.theme-h .ant-btn.ant-btn-clicked:after {
  border-color: #00a854;
}
.theme-h .ant-btn.disabled,
.theme-h .ant-btn.disabled.active,
.theme-h .ant-btn.disabled:active,
.theme-h .ant-btn.disabled:focus,
.theme-h .ant-btn.disabled:hover,
.theme-h .ant-btn[disabled],
.theme-h .ant-btn[disabled].active,
.theme-h .ant-btn[disabled]:active,
.theme-h .ant-btn[disabled]:focus,
.theme-h .ant-btn[disabled]:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-h .ant-btn-primary {
  background-color: #00a854;
  border-color: #00a854;
}
.theme-h .ant-btn-primary.active,
.theme-h .ant-btn-primary.hover,
.theme-h .ant-btn-primary:active,
.theme-h .ant-btn-primary:focus,
.theme-h .ant-btn-primary:hover {
  color: #fff;
  background-color: #3dbd7d;
}
.theme-h .ant-btn-danger {
  color: #f04134;
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-h .ant-btn-danger:focus,
.theme-h .ant-btn-danger:hover {
  color: #fff;
  background-color: #f04134;
  border-color: #f04134;
}
.theme-h .ant-btn-danger.active,
.theme-h .ant-btn-danger:active {
  color: #fff;
  background-color: #d73435;
  border-color: #d73435;
}
.theme-h .ant-btn-danger.ant-btn-clicked:after {
  border-color: #d9d9d9;
}
.theme-h .ant-btn-background-ghost.ant-btn-primary {
  color: #00a854;
  background-color: transparent;
  border-color: #00a854;
}
.theme-h .ant-btn-background-ghost.ant-btn-primary:focus,
.theme-h .ant-btn-background-ghost.ant-btn-primary:hover {
  color: #3dbd7d;
  background-color: transparent;
  border-color: #3dbd7d;
}
.theme-h .ant-btn-background-ghost.ant-btn-primary.active,
.theme-h .ant-btn-background-ghost.ant-btn-primary:active {
  color: #00924c;
  background-color: transparent;
  border-color: #00924c;
}
.theme-h .ant-btn-background-ghost.ant-btn-danger {
  border-color: #f04134;
}
.theme-h .ant-btn-background-ghost.ant-btn-danger:focus,
.theme-h .ant-btn-background-ghost.ant-btn-danger:hover {
  color: #f46e65;
  background-color: transparent;
  border-color: #f46e65;
}
.theme-h .ant-btn-background-ghost.ant-btn-danger.active,
.theme-h .ant-btn-background-ghost.ant-btn-danger:active {
  color: #d73435;
  background-color: transparent;
  border-color: #d73435;
}
.theme-h .ant-btn-group .ant-btn-primary + .ant-btn-primary,
.theme-h .ant-btn-group .ant-btn-primary:last-child:not(:first-child) {
  border-left-color: #00924c;
}
.theme-h .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  border-right-color: #00924c;
}
.theme-h .ant-radio-checked .ant-radio-inner,
.theme-h .ant-radio-checked:after,
.theme-h .ant-radio-focused .ant-radio-inner,
.theme-h .ant-radio-wrapper:hover .ant-radio-inner,
.theme-h .ant-radio:hover .ant-radio-inner {
  border-color: #00a854;
}
.theme-h .ant-radio-inner:after {
  background-color: #00a854;
}
.theme-h .ant-radio-button-wrapper:hover {
  color: #00a854;
}
.theme-h .ant-radio-button-wrapper-checked {
  color: #00a854;
  outline: 0;
}
.theme-h .ant-radio-button-wrapper-checked,
.theme-h .ant-radio-button-wrapper-checked:active {
  border-color: #00a854;
  -webkit-box-shadow: -1px 0 0 0 #00a854;
  box-shadow: -1px 0 0 0 #00a854;
}
.theme-h .ant-checkbox-input:focus .ant-checkbox-inner,
.theme-h .ant-checkbox-wrapper:hover .ant-checkbox-inner,
.theme-h .ant-checkbox:hover .ant-checkbox-inner,
.theme-h .ant-radio-button-wrapper-checked:first-child {
  border-color: #00a854;
}
.theme-h .ant-checkbox-checked .ant-checkbox-inner,
.theme-h .ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: #00a854;
  border-color: #00a854;
}
.theme-h .ant-checkbox-checked:after,
.theme-h .ant-checkbox-indeterminate:after {
  border-color: #00a854;
}
.theme-h .ant-switch-checked {
  background-color: #00a854;
}
.theme-h .ant-dropdown-menu-item-selected,
.theme-h .ant-dropdown-menu-item-selected > a,
.theme-h .ant-dropdown-menu-submenu-title-selected,
.theme-h .ant-dropdown-menu-submenu-title-selected > a {
  color: #00a854;
}
.theme-h .ant-dropdown-menu-item-selected,
.theme-h .ant-dropdown-menu-item-selected > a,
.theme-h .ant-dropdown-menu-item:hover,
.theme-h .ant-dropdown-menu-submenu-title-selected,
.theme-h .ant-dropdown-menu-submenu-title-selected > a,
.theme-h .ant-dropdown-menu-submenu-title:hover {
  background-color: #ebf8f2;
}
.theme-h .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
  color: #00a854;
}
.theme-h .ant-tag-checkable-checked {
  background-color: #00a854;
}
.theme-h .ant-tag-checkable:active {
  background-color: #00924c;
}
.theme-h .ant-spin {
  color: #00a854;
}
.theme-h .ant-spin-dot i {
  background-color: #00a854;
}
.theme-h .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-h .ant-input-number-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-h .ant-input-number:focus,
.theme-h .ant-input-number:hover,
.theme-h .ant-input:focus,
.theme-h .ant-input:hover {
  border-color: #3dbd7d;
}
.theme-h .ant-input-number:focus,
.theme-h .ant-input:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(0, 168, 84, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 168, 84, 0.2);
}
.theme-h .ant-input-disabled:hover,
.theme-h .ant-input-number-disabled:hover {
  border-color: #d9d9d9;
}
.theme-h .ant-input-number-handler:hover .ant-input-number-handler-down-inner,
.theme-h .ant-input-number-handler:hover .ant-input-number-handler-up-inner {
  color: #3dbd7d;
}
.theme-h .ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #00a854;
}
.theme-h .ant-calendar-date:hover {
  background: #ebf8f2;
}
.theme-h .ant-calendar-date:active {
  background: #3dbd7d;
}
.theme-h .ant-calendar-today .ant-calendar-date {
  border-color: #00a854;
  color: #00a854;
}
.theme-h .ant-calendar-selected-day .ant-calendar-date {
  color: #fff;
}
.theme-h .ant-calendar-selected-day .ant-calendar-date,
.theme-h .ant-calendar-selected-day .ant-calendar-date:hover {
  background: #00a854;
}
.theme-h .ant-pagination-item:focus,
.theme-h .ant-pagination-item:hover,
.theme-h .ant-pagination-next:focus,
.theme-h .ant-pagination-next:hover,
.theme-h .ant-pagination-prev:focus,
.theme-h .ant-pagination-prev:hover,
.theme-h .ant-time-picker-input:hover {
  border-color: #00a854;
}
.theme-h .ant-pagination-item:focus a,
.theme-h .ant-pagination-item:hover a,
.theme-h .ant-pagination-next:focus a,
.theme-h .ant-pagination-next:hover a,
.theme-h .ant-pagination-prev:focus a,
.theme-h .ant-pagination-prev:hover a {
  color: #00a854;
}
.theme-h .ant-pagination-item-active {
  background-color: #00a854;
  border-color: #00a854;
}
.theme-h .ant-pagination-item-active:focus,
.theme-h .ant-pagination-item-active:hover {
  background-color: #3dbd7d;
  border-color: #3dbd7d;
}
.theme-h .ant-pagination-item-active:focus a,
.theme-h .ant-pagination-item-active:hover a {
  color: #fff;
}
.theme-h .ant-pagination-jump-next:hover:after,
.theme-h .ant-pagination-jump-prev:hover:after {
  color: #00a854;
}
.theme-h .ant-pagination-disabled:hover {
  border-color: #d9d9d9;
}
.theme-h .ant-pagination-disabled a,
.theme-h .ant-pagination-disabled:hover a {
  color: rgba(0, 0, 0, 0.25);
}
.theme-h .ant-select-selection:hover {
  border-color: #3dbd7d;
}
.ant-select-focused .theme-h .ant-select-selection,
.theme-h .ant-select-open .ant-select-selection,
.theme-h .ant-select-selection:active,
.theme-h .ant-select-selection:focus {
  border-color: #00924c;
}
.theme-h .has-error .ant-select-selection {
  border-color: #f04134 !important;
}
.theme-h .ant-slider-handle:hover,
.theme-h .ant-slider:hover .ant-slider-handle {
  border-color: #3dbd7d;
}
.theme-h .ant-slider:hover .ant-slider-track {
  background-color: #66cb98;
}
.theme-h .ant-slider-track {
  background-color: #99dcbb;
}
.theme-h .ant-slider-handle {
  border-color: #80d4aa;
}
.theme-h .ant-slider-handle:active {
  -webkit-box-shadow: 0 0 0 2px rgba(0, 168, 84, 0.2);
  box-shadow: 0 0 0 2px rgba(0, 168, 84, 0.2);
}
.theme-h .ant-slider-dot-active {
  border-color: #80d4aa;
}
.theme-h .ant-tabs-ink-bar {
  background-color: #00a854;
}
.theme-h .ant-tabs-nav .ant-tabs-tab:hover {
  color: #3dbd7d;
}
.theme-h .ant-tabs-nav .ant-tabs-tab:active {
  color: #00924c;
}
.theme-h .ant-tabs-nav .ant-tabs-tab-active {
  color: #00a854;
}
.theme-h .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner,
.theme-h .ant-tree .ant-tree-checkbox-checked:after,
.theme-h .ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner,
.theme-h .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.theme-h .ant-tree-checkbox:hover .ant-tree-checkbox-inner {
  border-color: #00a854;
}
.theme-h .ant-tree .ant-tree-node-content-wrapper:hover {
  background-color: #ebf8f2;
}
.theme-h .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background-color: #00a854;
}
.theme-h .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
  background-color: #cfefdf;
}
.theme-h .ant-tree span.ant-tree-icon_loading:after {
  color: #00a854;
}
.theme-h .ant-calendar-header a:hover {
  color: #3dbd7d;
}
.theme-h .ant-calendar .ant-calendar-ok-btn {
  background-color: #00a854;
  border-color: #00a854;
}
.theme-h .ant-calendar .ant-calendar-ok-btn:focus,
.theme-h .ant-calendar .ant-calendar-ok-btn:hover {
  border-color: #3dbd7d;
  background-color: #3dbd7d;
}
.theme-h .ant-calendar .ant-calendar-ok-btn:active {
  border-color: #00924c;
  background-color: #00924c;
}
.theme-i .aside {
  background-color: #404040;
}
.theme-i .nav > li.nav-group-title,
.theme-i .nav > li > a {
  color: rgba(255, 255, 255, 0.67);
}
.theme-i .nav-floating {
  background-color: #404040;
  border: none;
}
.theme-i .user-block .info {
  color: rgba(255, 255, 255, 0.67);
}
.theme-i .header {
  background-color: #f04134;
}
.theme-i .logo {
  background-color: #f04134;
}
.theme-i .nav > li > a:hover {
  color: #bd2636;
}
.theme-i .nav > li.nav-item-selected {
  background-color: #333;
  border-left-color: #bd2636;
}
.theme-i .nav > li.nav-item-selected > a {
  color: #bd2636;
}
.theme-i a {
  color: #f04134;
}
.theme-i a:hover {
  color: #f46e65;
}
.theme-i a:active {
  color: #d73435;
}
.theme-i .ant-btn:focus,
.theme-i .ant-btn:hover {
  color: #f46e65;
  border-color: #f46e65;
}
.theme-i .ant-btn.active,
.theme-i .ant-btn:active {
  color: #d73435;
  border-color: #d73435;
}
.theme-i .ant-btn.ant-btn-clicked:after {
  border-color: #f04134;
}
.theme-i .ant-btn.disabled,
.theme-i .ant-btn.disabled.active,
.theme-i .ant-btn.disabled:active,
.theme-i .ant-btn.disabled:focus,
.theme-i .ant-btn.disabled:hover,
.theme-i .ant-btn[disabled],
.theme-i .ant-btn[disabled].active,
.theme-i .ant-btn[disabled]:active,
.theme-i .ant-btn[disabled]:focus,
.theme-i .ant-btn[disabled]:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-i .ant-btn-primary {
  background-color: #f04134;
  border-color: #f04134;
}
.theme-i .ant-btn-primary.active,
.theme-i .ant-btn-primary.hover,
.theme-i .ant-btn-primary:active,
.theme-i .ant-btn-primary:focus,
.theme-i .ant-btn-primary:hover {
  color: #fff;
  background-color: #f46e65;
}
.theme-i .ant-btn-danger {
  color: #f04134;
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-i .ant-btn-danger:focus,
.theme-i .ant-btn-danger:hover {
  color: #fff;
  background-color: #f04134;
  border-color: #f04134;
}
.theme-i .ant-btn-danger.active,
.theme-i .ant-btn-danger:active {
  color: #fff;
  background-color: #d73435;
  border-color: #d73435;
}
.theme-i .ant-btn-danger.ant-btn-clicked:after {
  border-color: #d9d9d9;
}
.theme-i .ant-btn-background-ghost.ant-btn-primary {
  color: #f04134;
  background-color: transparent;
  border-color: #f04134;
}
.theme-i .ant-btn-background-ghost.ant-btn-primary:focus,
.theme-i .ant-btn-background-ghost.ant-btn-primary:hover {
  color: #f46e65;
  background-color: transparent;
  border-color: #f46e65;
}
.theme-i .ant-btn-background-ghost.ant-btn-primary.active,
.theme-i .ant-btn-background-ghost.ant-btn-primary:active {
  color: #d73435;
  background-color: transparent;
  border-color: #d73435;
}
.theme-i .ant-btn-background-ghost.ant-btn-danger {
  border-color: #f04134;
}
.theme-i .ant-btn-background-ghost.ant-btn-danger:focus,
.theme-i .ant-btn-background-ghost.ant-btn-danger:hover {
  color: #f46e65;
  background-color: transparent;
  border-color: #f46e65;
}
.theme-i .ant-btn-background-ghost.ant-btn-danger.active,
.theme-i .ant-btn-background-ghost.ant-btn-danger:active {
  color: #d73435;
  background-color: transparent;
  border-color: #d73435;
}
.theme-i .ant-btn-group .ant-btn-primary + .ant-btn-primary,
.theme-i .ant-btn-group .ant-btn-primary:last-child:not(:first-child) {
  border-left-color: #d73435;
}
.theme-i .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  border-right-color: #d73435;
}
.theme-i .ant-radio-checked .ant-radio-inner,
.theme-i .ant-radio-checked:after,
.theme-i .ant-radio-focused .ant-radio-inner,
.theme-i .ant-radio-wrapper:hover .ant-radio-inner,
.theme-i .ant-radio:hover .ant-radio-inner {
  border-color: #f04134;
}
.theme-i .ant-radio-inner:after {
  background-color: #f04134;
}
.theme-i .ant-radio-button-wrapper:hover {
  color: #f04134;
}
.theme-i .ant-radio-button-wrapper-checked {
  color: #f04134;
  outline: 0;
}
.theme-i .ant-radio-button-wrapper-checked,
.theme-i .ant-radio-button-wrapper-checked:active {
  border-color: #f04134;
  -webkit-box-shadow: -1px 0 0 0 #f04134;
  box-shadow: -1px 0 0 0 #f04134;
}
.theme-i .ant-checkbox-input:focus .ant-checkbox-inner,
.theme-i .ant-checkbox-wrapper:hover .ant-checkbox-inner,
.theme-i .ant-checkbox:hover .ant-checkbox-inner,
.theme-i .ant-radio-button-wrapper-checked:first-child {
  border-color: #f04134;
}
.theme-i .ant-checkbox-checked .ant-checkbox-inner,
.theme-i .ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: #f04134;
  border-color: #f04134;
}
.theme-i .ant-checkbox-checked:after,
.theme-i .ant-checkbox-indeterminate:after {
  border-color: #f04134;
}
.theme-i .ant-switch-checked {
  background-color: #f04134;
}
.theme-i .ant-dropdown-menu-item-selected,
.theme-i .ant-dropdown-menu-item-selected > a,
.theme-i .ant-dropdown-menu-submenu-title-selected,
.theme-i .ant-dropdown-menu-submenu-title-selected > a {
  color: #f04134;
}
.theme-i .ant-dropdown-menu-item-selected,
.theme-i .ant-dropdown-menu-item-selected > a,
.theme-i .ant-dropdown-menu-item:hover,
.theme-i .ant-dropdown-menu-submenu-title-selected,
.theme-i .ant-dropdown-menu-submenu-title-selected > a,
.theme-i .ant-dropdown-menu-submenu-title:hover {
  background-color: #fef0ef;
}
.theme-i .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
  color: #f04134;
}
.theme-i .ant-tag-checkable-checked {
  background-color: #f04134;
}
.theme-i .ant-tag-checkable:active {
  background-color: #d73435;
}
.theme-i .ant-spin {
  color: #f04134;
}
.theme-i .ant-spin-dot i {
  background-color: #f04134;
}
.theme-i .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-i .ant-input-number-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-i .ant-input-number:focus,
.theme-i .ant-input-number:hover,
.theme-i .ant-input:focus,
.theme-i .ant-input:hover {
  border-color: #f46e65;
}
.theme-i .ant-input-number:focus,
.theme-i .ant-input:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
}
.theme-i .ant-input-disabled:hover,
.theme-i .ant-input-number-disabled:hover {
  border-color: #d9d9d9;
}
.theme-i .ant-input-number-handler:hover .ant-input-number-handler-down-inner,
.theme-i .ant-input-number-handler:hover .ant-input-number-handler-up-inner {
  color: #f46e65;
}
.theme-i .ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #f04134;
}
.theme-i .ant-calendar-date:hover {
  background: #fef0ef;
}
.theme-i .ant-calendar-date:active {
  background: #f46e65;
}
.theme-i .ant-calendar-today .ant-calendar-date {
  border-color: #f04134;
  color: #f04134;
}
.theme-i .ant-calendar-selected-day .ant-calendar-date {
  color: #fff;
}
.theme-i .ant-calendar-selected-day .ant-calendar-date,
.theme-i .ant-calendar-selected-day .ant-calendar-date:hover {
  background: #f04134;
}
.theme-i .ant-pagination-item:focus,
.theme-i .ant-pagination-item:hover,
.theme-i .ant-pagination-next:focus,
.theme-i .ant-pagination-next:hover,
.theme-i .ant-pagination-prev:focus,
.theme-i .ant-pagination-prev:hover,
.theme-i .ant-time-picker-input:hover {
  border-color: #f04134;
}
.theme-i .ant-pagination-item:focus a,
.theme-i .ant-pagination-item:hover a,
.theme-i .ant-pagination-next:focus a,
.theme-i .ant-pagination-next:hover a,
.theme-i .ant-pagination-prev:focus a,
.theme-i .ant-pagination-prev:hover a {
  color: #f04134;
}
.theme-i .ant-pagination-item-active {
  background-color: #f04134;
  border-color: #f04134;
}
.theme-i .ant-pagination-item-active:focus,
.theme-i .ant-pagination-item-active:hover {
  background-color: #f46e65;
  border-color: #f46e65;
}
.theme-i .ant-pagination-item-active:focus a,
.theme-i .ant-pagination-item-active:hover a {
  color: #fff;
}
.theme-i .ant-pagination-jump-next:hover:after,
.theme-i .ant-pagination-jump-prev:hover:after {
  color: #f04134;
}
.theme-i .ant-pagination-disabled:hover {
  border-color: #d9d9d9;
}
.theme-i .ant-pagination-disabled a,
.theme-i .ant-pagination-disabled:hover a {
  color: rgba(0, 0, 0, 0.25);
}
.theme-i .ant-select-selection:hover {
  border-color: #f46e65;
}
.ant-select-focused .theme-i .ant-select-selection,
.theme-i .ant-select-open .ant-select-selection,
.theme-i .ant-select-selection:active,
.theme-i .ant-select-selection:focus {
  border-color: #d73435;
}
.theme-i .has-error .ant-select-selection {
  border-color: #f04134 !important;
}
.theme-i .ant-slider-handle:hover,
.theme-i .ant-slider:hover .ant-slider-handle {
  border-color: #f46e65;
}
.theme-i .ant-slider:hover .ant-slider-track {
  background-color: #f68d85;
}
.theme-i .ant-slider-track {
  background-color: #f9b3ae;
}
.theme-i .ant-slider-handle {
  border-color: #f8a09a;
}
.theme-i .ant-slider-handle:active {
  -webkit-box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
  box-shadow: 0 0 0 2px rgba(240, 65, 52, 0.2);
}
.theme-i .ant-slider-dot-active {
  border-color: #f8a09a;
}
.theme-i .ant-tabs-ink-bar {
  background-color: #f04134;
}
.theme-i .ant-tabs-nav .ant-tabs-tab:hover {
  color: #f46e65;
}
.theme-i .ant-tabs-nav .ant-tabs-tab:active {
  color: #d73435;
}
.theme-i .ant-tabs-nav .ant-tabs-tab-active {
  color: #f04134;
}
.theme-i .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner,
.theme-i .ant-tree .ant-tree-checkbox-checked:after,
.theme-i .ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner,
.theme-i .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.theme-i .ant-tree-checkbox:hover .ant-tree-checkbox-inner {
  border-color: #f04134;
}
.theme-i .ant-tree .ant-tree-node-content-wrapper:hover {
  background-color: #fef0ef;
}
.theme-i .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background-color: #f04134;
}
.theme-i .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
  background-color: #fcdbd9;
}
.theme-i .ant-tree span.ant-tree-icon_loading:after {
  color: #f04134;
}
.theme-i .ant-calendar-header a:hover {
  color: #f46e65;
}
.theme-i .ant-calendar .ant-calendar-ok-btn {
  background-color: #f04134;
  border-color: #f04134;
}
.theme-i .ant-calendar .ant-calendar-ok-btn:focus,
.theme-i .ant-calendar .ant-calendar-ok-btn:hover {
  border-color: #f46e65;
  background-color: #f46e65;
}
.theme-i .ant-calendar .ant-calendar-ok-btn:active {
  border-color: #d73435;
  background-color: #d73435;
}
.theme-j .aside {
  background-color: #404040;
}
.theme-j .nav > li.nav-group-title,
.theme-j .nav > li > a {
  color: rgba(255, 255, 255, 0.67);
}
.theme-j .nav-floating {
  background-color: #404040;
  border: none;
}
.theme-j .user-block .info {
  color: rgba(255, 255, 255, 0.67);
}
.theme-j .header {
  background-color: #373d41;
}
.theme-j .logo {
  background-color: #373d41;
}
.theme-j .nav > li > a:hover {
  color: #667178;
}
.theme-j .nav > li.nav-item-selected {
  background-color: #333;
  border-left-color: #373d41;
}
.theme-j .nav > li.nav-item-selected > a {
  color: #667178;
}
.theme-j a {
  color: #373d41;
}
.theme-j a:hover {
  color: #676b6e;
}
.theme-j a:active {
  color: #303538;
}
.theme-j .ant-btn:focus,
.theme-j .ant-btn:hover {
  color: #676b6e;
  border-color: #676b6e;
}
.theme-j .ant-btn.active,
.theme-j .ant-btn:active {
  color: #303538;
  border-color: #303538;
}
.theme-j .ant-btn.ant-btn-clicked:after {
  border-color: #373d41;
}
.theme-j .ant-btn.disabled,
.theme-j .ant-btn.disabled.active,
.theme-j .ant-btn.disabled:active,
.theme-j .ant-btn.disabled:focus,
.theme-j .ant-btn.disabled:hover,
.theme-j .ant-btn[disabled],
.theme-j .ant-btn[disabled].active,
.theme-j .ant-btn[disabled]:active,
.theme-j .ant-btn[disabled]:focus,
.theme-j .ant-btn[disabled]:hover {
  color: rgba(0, 0, 0, 0.25);
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-j .ant-btn-primary {
  background-color: #373d41;
  border-color: #373d41;
}
.theme-j .ant-btn-primary.active,
.theme-j .ant-btn-primary.hover,
.theme-j .ant-btn-primary:active,
.theme-j .ant-btn-primary:focus,
.theme-j .ant-btn-primary:hover {
  color: #fff;
  background-color: #676b6e;
}
.theme-j .ant-btn-danger {
  color: #f04134;
  background-color: #f7f7f7;
  border-color: #d9d9d9;
}
.theme-j .ant-btn-danger:focus,
.theme-j .ant-btn-danger:hover {
  color: #fff;
  background-color: #f04134;
  border-color: #f04134;
}
.theme-j .ant-btn-danger.active,
.theme-j .ant-btn-danger:active {
  color: #fff;
  background-color: #d73435;
  border-color: #d73435;
}
.theme-j .ant-btn-danger.ant-btn-clicked:after {
  border-color: #d9d9d9;
}
.theme-j .ant-btn-background-ghost.ant-btn-primary {
  color: #373d41;
  background-color: transparent;
  border-color: #373d41;
}
.theme-j .ant-btn-background-ghost.ant-btn-primary:focus,
.theme-j .ant-btn-background-ghost.ant-btn-primary:hover {
  color: #676b6e;
  background-color: transparent;
  border-color: #676b6e;
}
.theme-j .ant-btn-background-ghost.ant-btn-primary.active,
.theme-j .ant-btn-background-ghost.ant-btn-primary:active {
  color: #303538;
  background-color: transparent;
  border-color: #303538;
}
.theme-j .ant-btn-background-ghost.ant-btn-danger {
  border-color: #f04134;
}
.theme-j .ant-btn-background-ghost.ant-btn-danger:focus,
.theme-j .ant-btn-background-ghost.ant-btn-danger:hover {
  color: #f46e65;
  background-color: transparent;
  border-color: #f46e65;
}
.theme-j .ant-btn-background-ghost.ant-btn-danger.active,
.theme-j .ant-btn-background-ghost.ant-btn-danger:active {
  color: #d73435;
  background-color: transparent;
  border-color: #d73435;
}
.theme-j .ant-btn-group .ant-btn-primary + .ant-btn-primary,
.theme-j .ant-btn-group .ant-btn-primary:last-child:not(:first-child) {
  border-left-color: #303538;
}
.theme-j .ant-btn-group .ant-btn-primary:first-child:not(:last-child) {
  border-right-color: #303538;
}
.theme-j .ant-radio-checked .ant-radio-inner,
.theme-j .ant-radio-checked:after,
.theme-j .ant-radio-focused .ant-radio-inner,
.theme-j .ant-radio-wrapper:hover .ant-radio-inner,
.theme-j .ant-radio:hover .ant-radio-inner {
  border-color: #373d41;
}
.theme-j .ant-radio-inner:after {
  background-color: #373d41;
}
.theme-j .ant-radio-button-wrapper:hover {
  color: #373d41;
}
.theme-j .ant-radio-button-wrapper-checked {
  color: #373d41;
  outline: 0;
}
.theme-j .ant-radio-button-wrapper-checked,
.theme-j .ant-radio-button-wrapper-checked:active {
  border-color: #373d41;
  -webkit-box-shadow: -1px 0 0 0 #373d41;
  box-shadow: -1px 0 0 0 #373d41;
}
.theme-j .ant-checkbox-input:focus .ant-checkbox-inner,
.theme-j .ant-checkbox-wrapper:hover .ant-checkbox-inner,
.theme-j .ant-checkbox:hover .ant-checkbox-inner,
.theme-j .ant-radio-button-wrapper-checked:first-child {
  border-color: #373d41;
}
.theme-j .ant-checkbox-checked .ant-checkbox-inner,
.theme-j .ant-checkbox-indeterminate .ant-checkbox-inner {
  background-color: #373d41;
  border-color: #373d41;
}
.theme-j .ant-checkbox-checked:after,
.theme-j .ant-checkbox-indeterminate:after {
  border-color: #373d41;
}
.theme-j .ant-switch-checked {
  background-color: #373d41;
}
.theme-j .ant-dropdown-menu-item-selected,
.theme-j .ant-dropdown-menu-item-selected > a,
.theme-j .ant-dropdown-menu-submenu-title-selected,
.theme-j .ant-dropdown-menu-submenu-title-selected > a {
  color: #373d41;
}
.theme-j .ant-dropdown-menu-item-selected,
.theme-j .ant-dropdown-menu-item-selected > a,
.theme-j .ant-dropdown-menu-item:hover,
.theme-j .ant-dropdown-menu-submenu-title-selected,
.theme-j .ant-dropdown-menu-submenu-title-selected > a,
.theme-j .ant-dropdown-menu-submenu-title:hover {
  background-color: #eff0f0;
}
.theme-j .ant-tag-checkable:not(.ant-tag-checkable-checked):hover {
  color: #373d41;
}
.theme-j .ant-tag-checkable-checked {
  background-color: #373d41;
}
.theme-j .ant-tag-checkable:active {
  background-color: #303538;
}
.theme-j .ant-spin {
  color: #373d41;
}
.theme-j .ant-spin-dot i {
  background-color: #373d41;
}
.theme-j .ant-input-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-j .ant-input-number-affix-wrapper:hover .ant-input:not(.ant-input-disabled),
.theme-j .ant-input-number:focus,
.theme-j .ant-input-number:hover,
.theme-j .ant-input:focus,
.theme-j .ant-input:hover {
  border-color: #676b6e;
}
.theme-j .ant-input-number:focus,
.theme-j .ant-input:focus {
  -webkit-box-shadow: 0 0 0 2px rgba(55, 61, 65, 0.2);
  box-shadow: 0 0 0 2px rgba(55, 61, 65, 0.2);
}
.theme-j .ant-input-disabled:hover,
.theme-j .ant-input-number-disabled:hover {
  border-color: #d9d9d9;
}
.theme-j .ant-input-number-handler:hover .ant-input-number-handler-down-inner,
.theme-j .ant-input-number-handler:hover .ant-input-number-handler-up-inner {
  color: #676b6e;
}
.theme-j .ant-calendar-picker:hover .ant-calendar-picker-input:not(.ant-input-disabled) {
  border-color: #373d41;
}
.theme-j .ant-calendar-date:hover {
  background: #eff0f0;
}
.theme-j .ant-calendar-date:active {
  background: #676b6e;
}
.theme-j .ant-calendar-today .ant-calendar-date {
  border-color: #373d41;
  color: #373d41;
}
.theme-j .ant-calendar-selected-day .ant-calendar-date {
  color: #fff;
}
.theme-j .ant-calendar-selected-day .ant-calendar-date,
.theme-j .ant-calendar-selected-day .ant-calendar-date:hover {
  background: #373d41;
}
.theme-j .ant-pagination-item:focus,
.theme-j .ant-pagination-item:hover,
.theme-j .ant-pagination-next:focus,
.theme-j .ant-pagination-next:hover,
.theme-j .ant-pagination-prev:focus,
.theme-j .ant-pagination-prev:hover,
.theme-j .ant-time-picker-input:hover {
  border-color: #373d41;
}
.theme-j .ant-pagination-item:focus a,
.theme-j .ant-pagination-item:hover a,
.theme-j .ant-pagination-next:focus a,
.theme-j .ant-pagination-next:hover a,
.theme-j .ant-pagination-prev:focus a,
.theme-j .ant-pagination-prev:hover a {
  color: #373d41;
}
.theme-j .ant-pagination-item-active {
  background-color: #373d41;
  border-color: #373d41;
}
.theme-j .ant-pagination-item-active:focus,
.theme-j .ant-pagination-item-active:hover {
  background-color: #676b6e;
  border-color: #676b6e;
}
.theme-j .ant-pagination-item-active:focus a,
.theme-j .ant-pagination-item-active:hover a {
  color: #fff;
}
.theme-j .ant-pagination-jump-next:hover:after,
.theme-j .ant-pagination-jump-prev:hover:after {
  color: #373d41;
}
.theme-j .ant-pagination-disabled:hover {
  border-color: #d9d9d9;
}
.theme-j .ant-pagination-disabled a,
.theme-j .ant-pagination-disabled:hover a {
  color: rgba(0, 0, 0, 0.25);
}
.theme-j .ant-select-selection:hover {
  border-color: #676b6e;
}
.ant-select-focused .theme-j .ant-select-selection,
.theme-j .ant-select-open .ant-select-selection,
.theme-j .ant-select-selection:active,
.theme-j .ant-select-selection:focus {
  border-color: #303538;
}
.theme-j .has-error .ant-select-selection {
  border-color: #f04134 !important;
}
.theme-j .ant-slider-handle:hover,
.theme-j .ant-slider:hover .ant-slider-handle {
  border-color: #676b6e;
}
.theme-j .ant-slider:hover .ant-slider-track {
  background-color: #878b8d;
}
.theme-j .ant-slider-track {
  background-color: #afb1b3;
}
.theme-j .ant-slider-handle {
  border-color: #9b9ea0;
}
.theme-j .ant-slider-handle:active {
  -webkit-box-shadow: 0 0 0 2px rgba(55, 61, 65, 0.2);
  box-shadow: 0 0 0 2px rgba(55, 61, 65, 0.2);
}
.theme-j .ant-slider-dot-active {
  border-color: #9b9ea0;
}
.theme-j .ant-tabs-ink-bar {
  background-color: #373d41;
}
.theme-j .ant-tabs-nav .ant-tabs-tab:hover {
  color: #676b6e;
}
.theme-j .ant-tabs-nav .ant-tabs-tab:active {
  color: #303538;
}
.theme-j .ant-tabs-nav .ant-tabs-tab-active {
  color: #373d41;
}
.theme-j .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner,
.theme-j .ant-tree .ant-tree-checkbox-checked:after,
.theme-j .ant-tree-checkbox-input:focus + .ant-tree-checkbox-inner,
.theme-j .ant-tree-checkbox-wrapper:hover .ant-tree-checkbox-inner,
.theme-j .ant-tree-checkbox:hover .ant-tree-checkbox-inner {
  border-color: #373d41;
}
.theme-j .ant-tree .ant-tree-node-content-wrapper:hover {
  background-color: #eff0f0;
}
.theme-j .ant-tree .ant-tree-checkbox-checked .ant-tree-checkbox-inner {
  background-color: #373d41;
}
.theme-j .ant-tree .ant-tree-node-content-wrapper.ant-tree-node-selected {
  background-color: #d9dadb;
}
.theme-j .ant-tree span.ant-tree-icon_loading:after {
  color: #373d41;
}
.theme-j .ant-calendar-header a:hover {
  color: #676b6e;
}
.theme-j .ant-calendar .ant-calendar-ok-btn {
  background-color: #373d41;
  border-color: #373d41;
}
.theme-j .ant-calendar .ant-calendar-ok-btn:focus,
.theme-j .ant-calendar .ant-calendar-ok-btn:hover {
  border-color: #676b6e;
  background-color: #676b6e;
}
.theme-j .ant-calendar .ant-calendar-ok-btn:active {
  border-color: #303538;
  background-color: #303538;
}
/* 微调 */
.theme-g .ant-menu.ant-menu-dark .ant-menu-item-selected,
.theme-g .ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected {
  background-color: #00a2ae;
}
.theme-h .ant-menu.ant-menu-dark .ant-menu-item-selected,
.theme-h .ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected {
  background-color: #00a854;
}
.theme-i .ant-menu.ant-menu-dark .ant-menu-item-selected,
.theme-i .ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected {
  background-color: #f04134;
}
.theme-j .ant-menu.ant-menu-dark .ant-menu-item-selected,
.theme-j .ant-menu-submenu-popup.ant-menu-dark .ant-menu-item-selected {
  background-color: #373d41;
}
/* Slider */
.slick-slider
{
    position: relative;

    display: block;
    box-sizing: border-box;

    -webkit-user-select: none;
       -moz-user-select: none;
        -ms-user-select: none;
            user-select: none;

    -webkit-touch-callout: none;
    -khtml-user-select: none;
    -ms-touch-action: pan-y;
        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
{
    -webkit-transform: translate3d(0, 0, 0);
       -moz-transform: translate3d(0, 0, 0);
        -ms-transform: translate3d(0, 0, 0);
         -o-transform: translate3d(0, 0, 0);
            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';
/* Slider */
.slick-loading .slick-list
{
    background: #fff url(../../assets/images/ajax-loader.gif) center center no-repeat;
}

/* Icons */
@font-face
{
    font-family: 'slick';
    font-weight: normal;
    font-style: normal;

    src: url(../../assets/images/slick.eot);
    src: url(../../assets/images/slick.eot?#iefix) format('embedded-opentype'), url(../../assets/images/slick.woff) format('woff'), url(../../assets/images/slick.ttf) format('truetype'), url(../../assets/images/slick.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;
    -webkit-transform: translate(0, -50%);
    -ms-transform: translate(0, -50%);
    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: .25;
}

.slick-prev:before,
.slick-next:before
{
    font-family: 'slick';
    font-size: 20px;
    line-height: 1;

    opacity: .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: '\2190';
}
[dir='rtl'] .slick-prev:before
{
    content: '\2192';
}

.slick-next
{
    right: -25px;
}
[dir='rtl'] .slick-next
{
    right: auto;
    left: -25px;
}
.slick-next:before
{
    content: '\2192';
}
[dir='rtl'] .slick-next:before
{
    content: '\2190';
}

/* 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: '\2022';
    text-align: center;

    opacity: .25;
    color: black;

    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}
.slick-dots li.slick-active button:before
{
    opacity: .75;
    color: black;
}
.width100 {
  width: 100%;
}
/* 大盒子内边距的灰色背景 */
.main {
  height: 100%;
  width: 100%;
  padding: 10px;
  overflow: hidden;
  position: relative;
}
/* 内容部分-列表页的白色背景-白色内边距 */
.main .contentlistBox {
  height: 100%;
  width: 100%;
  background-color: #fff;
  overflow: hidden;
  padding: 10px;
  border-radius: 5px;
}
/* 内容部分-操作页 */
.contentoperateBox {
  height: 100%;
  width: 100%;
  /* background-color: pink; */
  position: relative;
  padding-top: 55px;
  overflow: hidden;
  border-radius: 5px;
}
/* 内容部分列表页的内边距 */
.containner {
  height: 100%;
  width: 100%;
  overflow: hidden;
  /* background-color: hotpink; */
}
.btnsBox {
  height: 50px;
  width: 100%;
  padding-top: 10px;
  overflow: hidden;
}
.mr10 {
  margin-right: 10px;
}
/* 操作頁的標題 */
.title_btns_box {
  height: 54px;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding: 0px 20px;
  position: absolute;
  top: 0px;
  left: 0px;
}
.title_btns_box > span {
  display: inline-block;
  height: 54px;
  line-height: 54px;
  font-size: 16px;
  color: #333;
  font-weight: 600;
}
.title_btns_box .titleBox_btn {
  float: right;
  margin-top: 12px;
}
/* 分配页的标题按钮 */
.title-back {
  height: 40px;
  width: 100%;
}
.title-back > span {
  display: inline-block;
  height: 40px;
  line-height: 40px;
  font-size: 14px;
  color: #333;
  font-weight: 600;
}
.title-back-btn {
  float: right;
  margin-top: 4px;
}
/* 表单背景的盒子 */
.form_box {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
  padding-top: 60px;
}
/* 分配操作页的表单和表格的外层盒子样式 */
.asign_box {
  height: 100%;
  width: 100%;
  background-color: #fff;
  border-radius: 5px;
}
/* 树形控件收起与展开的过渡 */
/* 左边树形的样式 */
.colBoxAnimation {
  height: 100%;
  background-color: #fff;
  transition: 0.5s;
  overflow: hidden;
}
/* 树形控件--按钮样式 */
.pickBtn {
  position: absolute;
  top: 50%;
  left: 0;
  margin-top: -15px;
  cursor: pointer;
}
/* 分配页面操作页布局：表格+选中标签 */
.asignOperateBox {
  height: 100%;
  width: 100%;
  background-color: #fff;
  padding-right: 230px;
  position: relative;
  margin-top: 10px;
  border-radius: 5px;
}
.asign_left_content {
  height: 100%;
  width: 100%;
  padding: 20px;
}
.asign_right_tags {
  position: absolute;
  padding-top: 40px;
  top: 0;
  right: 0;
  height: 100%;
  width: 230px;
  border-left: 2px solid #f0f3f3;
  overflow: hidden;
}
.tag_Total_box {
  height: 40px;
  line-height: 40px;
  font-size: 20px;
  width: 100%;
  font-size: 16px;
  text-align: center;
  border-bottom: 2px solid #f0f3f3;
  position: absolute;
  top: 0;
}
.tagsDetailList {
  height: 100%;
  width: 100%;
  overflow: auto;
  padding: 8px 16px;
}
.alot-authrity-tiptext {
  /* height: 30px; */
  /* line-height: 30px; */
  font-size: 14px;
  color: #333;
}
/* ---------------------------------------- */
.main .header {
  background: #ffffff;
  padding-left: 20px;
  font-size: 20px;
  border-bottom: 1px solid #eee;
}
/*.main .content{
    margin: 24px 16px 0px;
}*/
.main .content .contentDiv {
  padding: 24px;
  background: white;
  min-height: 600px;
}
.main .content .contentDiv .ant-card {
  margin-top: -25px;
}
.main .content .contentDiv .ant-card .ant-card-head-title {
  height: 40px;
  margin-top: 7px;
}
.main .content .contentDiv .ant-card .ant-card-head-title strong {
  font-weight: bold;
  font-size: 18px;
}
.body .operateContent {
  margin-top: -30px;
}
.main .searchPart ul {
  float: left;
  width: 100%;
}
.main .searchPart ul li {
  float: left;
  margin: 5px;
}
.main .searchPart ul li input {
  width: 200px;
}
.main .operateContent .ant-row {
  margin-bottom: 10px;
}
.editable-row-operations a {
  margin-right: 8px;
}
.ant-carousel .slick-slide {
  text-align: center;
  height: 160px;
  line-height: 160px;
  background: #364d79;
  overflow: hidden;
}
.ant-carousel .slick-slide h3 {
  color: #fff;
}
ul .searchItem .list_item_l {
  line-height: 32px;
  float: left;
  text-align: right;
  margin-right: 5px;
}
ul .searchItem .list_item_r {
  line-height: 32px;
  float: left;
  width: 200px;
  margin-right: 40px;
}
ul .searchCommit {
  margin-left: -30px;
}
.errorMsg {
  color: red;
  vertical-align: top;
  display: block;
  font-size: 12px;
  line-height: 12px;
  height: 12px;
  width: 100%;
  padding-bottom: 20px;
}
.contentDiv > .aloneMain {
  margin-top: 50px;
}
.avatarUpload .ant-upload-list {
  display: none;
}
.modelLayout {
  height: 500px;
}
.modelLayout .layBody {
  height: 500px;
  background: white;
  overflow: auto;
}
.modelLayout .layBody .tag {
  margin: 5px;
  /*height: 32px;
    font-size: 12px;
    line-height: 32px;*/
}
.reset {
  margin-left: 10px;
}
.optBtn {
  border: 1px solid dodgerblue;
  color: dodgerblue;
  margin: 5px;
}
.contentDiv .ant-spin-nested-loading {
  clear: both;
}
.contentDiv .ant-spin-container {
  height: 630px;
  clear: both;
}
.contentDiv .ant-spin-container > ul {
  position: absolute;
  right: 0px;
}
.contentUser .ant-spin-container {
  height: 570px;
}
.contentUser .ant-spin-container > ul {
  position: absolute;
  right: 0px;
}
/*表单数据框公用长度*/
.commonFormInput,
.commonFormLength {
  width: 200px;
}
.commonFormLength .ant-select-selection {
  width: 200px;
}
.commonQueSelect,
.commonQueSelect .ant-select-selection {
  width: 240px;
  margin-left: 20px;
}
.hiddenBody {
  overflow: hidden;
}
.hiddenBody .tagList {
  overflow: auto;
  height: 460px;
}
.hiddenBody .tagTotal {
  height: 30px;
  width: 90px;
  position: absolute;
  right: 0px;
  bottom: 0px;
}
.commonTableDate {
  margin-top: 100px;
  margin-right: 15px;
  height: 500px;
}
.commonTableDateNoHight {
  margin-top: 100px;
  margin-right: 15px;
}
.commonBtnMarginLeft {
  margin-left: 10px;
}
.commonBtnMarginRight {
  margin-right: 10px;
}
.commonFormInput {
  margin-left: 10px;
  padding-left: 10px;
}
.commonFormAdd {
  width: 340px;
  margin-left: 10px;
  padding: 0px;
}
.commonFormAddPadding {
  width: 340px;
  margin-left: 10px;
}
.commonFormAdd input {
  width: 100%;
}
.commonContentNoPadding {
  width: 100%;
  margin-left: -10px;
  padding: 0px;
}
.commonSearch {
  padding-top: 5px;
}
.commonWhiteBack {
  background: #ffffff;
}
.commonFullHight {
  height: 100%;
}
.commonFullWidth {
  width: 100%;
}
.commonAllotFormOuter {
  padding: 0px 20px 20px;
  background-color: #ffffff;
}
.commonIconCircle {
  color: #faad14;
  font-size: 16px;
  margin-right: 8px;
}
.commonIconSpan {
  font-size: 16px;
}
.commonFormSwitch {
  margin-left: -10px;
  margin-top: -20px;
  padding-left: 0px;
}
.commonFormInputLast {
  width: 200px;
  margin: 10px 15px;
}
.commonTableMarginR {
  margin-right: 15px;
}
.commonSiderBorderL {
  background-color: #ffffff;
  border-left: 1px solid #eee;
}
.commonSiderBorderR {
  background-color: #ffffff;
  border-right: 1px solid #eee;
}
.commonSiderBorderL center {
  margin: 10px;
  text-align: center;
}
.commonSiderBorderL left {
  margin: 10px;
  text-align: left;
}
.commonSiderBorderL right {
  font-size: 14px;
  text-align: right;
}
.commonTextCenter {
  text-align: center;
}
.commonOptForm {
  padding: 20px;
}
.commonPerson {
  width: 320px;
  margin-left: 10px;
}
.commonPersonNoPadding {
  width: 320px;
  margin-left: 10px;
  padding: 0px;
}
.commonScrollHight {
  height: 400px;
}
.commonEditableCellInput {
  margin: -5px 0px;
}
.commonErrorMsg,
commonPersonInput {
  margin-left: 20px;
  width: 290px;
}
.commonIdealInput {
  margin-left: 10px;
  width: 290px;
}
.commonBtnMarginR {
  margin-right: 10px;
}
.commonSelectorHight {
  height: 95%;
}
.roleSearch {
  width: 320px;
  margin: 10px 15px;
}
/*图片上传框样式*/
.uploadImg {
  position: relative;
  height: 100%;
  width: 100%;
}
.loadedImgOpt {
  visibility: hidden;
}
.uploadedImg:hover .loadedImgOpt {
  position: absolute;
  top: 0;
  left: 0px;
  visibility: visible;
  width: 100%;
  height: 100%;
  padding-top: 35%;
  background-color: rgba(0, 0, 0, 0.6);
  color: #ffffff;
}
.uploadedImg {
  position: relative;
  height: 100%;
  width: 100%;
}
.loadedImgOpt icon:hover {
  cursor: pointer;
}
.photoBorder {
  height: 112px;
  width: 102px;
  float: left;
  border: 1px solid #cccccc;
  overflow: hidden;
  text-align: center;
  vertical-align: middle;
  padding: 8px;
  border-radius: 5px;
  margin-right: 10px;
}
/*.photoList .uploadBtn{
    float: left;
    width: 100%;
    height: 100%;
    text-align: center;
    vertical-align: middle;
}*/
.rangePickerStyle {
  width: 250px;
}
.imageStyle {
  padding: 4px 0 0 20px;
}
.afterLine {
  font-size: 18px;
  margin: 10px 0;
}
.afterLine:after {
  width: 83%;
  content: '';
  /*CSS伪类用法*/
  position: absolute;
  /*定位背景横线的位置*/
  margin-top: 13px;
  margin-left: 10px;
  background: #e8e8e8;
  /*宽和高做出来的背景横线*/
  height: 1px;
}
.contentBody {
  display: flex;
}
.leftTree {
  flex: 0 0 200px;
  border-right: 1px solid #F2F2F2;
}
.rightContent {
  flex: 1;
  margin: 10px;
}
/* 设置tab栏的值靠左显示 */
.ant-tabs .ant-tabs-bar {
  text-align: left;
  margin: 0 0 16px 0;
}
.operateTable .ant-spin-nested-loading {
  clear: both;
}
.operateTable .ant-spin-container {
  height: auto!important;
  clear: both;
}
.contentDiv .ant-spin-container > ul {
  position: static!important;
}
.leftTabs .ant-tabs-nav-scroll {
  text-align: left!important;
}
.menuTreeDiv {
  display: flex;
  justify-content: left;
  align-items: flex-start;
}
.menuTreeBox {
  width: 25%;
}
/* ly 锚点 */
.ly-anchor {
  padding: 0 16px;
}
/* 用户详情页--表单 */
#detail_form_item .ant-form-item {
  margin-bottom: 15px;
}
.formItem .ant-input {
  width: 55% !important;
}
