/**
 * Variables
 */
/**
 * Wrapper
 */
.combo-select {
  position: relative;
  max-width: 400px;
  width: 200px;
  font: 100% Helvetica, Arial, Sans-serif;
  border-left: 1px #965b03 solid;
}
.combo-select .combo-input {
  margin-bottom: 0;
}
/**
 * Input field
 */
.combo-input {
  -webkit-appearance: none;
  -moz-appearance: none;
  appearance: none;
  margin: 0;
  text-overflow: ellipsis;
  white-space: nowrap;
  border: none;
  width: 100%;
  box-sizing: border-box;
  padding: 8.75px 0.75rem;
  padding-right: 60px;
  border-radius: 3px;
}
.combo-input:focus {
  outline: none;
}
/**
 * Arrow
 */
.combo-arrow {
  position: absolute;
  right: 0;
  top: 0;
  height: 100%;
  cursor: pointer;
  text-align: center;
  font-size: 14px;
  width: 40px;
  font-size: 12px;
  color: #999999;
}
.combo-arrow:before {
  content: " ";
  border-left: 5px solid transparent;
  border-right: 5px solid transparent;
  border-top: 5px solid #cccccc;
  display: block;
  width: 0;
  height: 0;
  top: 0;
  right: 15px;
  bottom: 0;
  position: absolute;
  margin: auto 0;
}
/**
 * When opened
 */
.combo-open .combo-arrow {
  border-color: #965b03;
}
.combo-open .combo-arrow:before {
  border-top: none;
  border-bottom: 5px solid #cccccc;
}
/**
 * When focused
 */
.combo-focus {
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  border-color: #965b03;
}
.combo-focus input {
  border-color: #965b03;
}
/**
 * Hide native select
 */
.combo-select select {
  position: absolute;
  z-index: 1;
  left: 0;
  top: 0;
  height: 100%;
  -webkit-appearance: none;
  opacity: 0;
}
@media only screen and (min-width: 960px) {
  .combo-select select {
    left: -1px;
    top: -1px;
    width: 0;
    height: 0;
    margin: 0;
  }
}
/**
 * Selected option
 */
.option-selected {
  background-color: #eee;
}
.option-selected.option-hover {
  color: #965b03;
}
/**
 * Hovered option
 */
.option-hover {
  background-color: #fffaf8;
  color: #965b03;
}
/**
 * Option item
 */
.option-item {
  cursor: pointer;
  border-bottom: 1px #e3e3e3 solid;
}
.option-item:hover {
  background-color: #fffaf8;
  color: #965b03;
}
.option-selected:hover {
  color: #965b03;
  opacity: 0.9;
}
.option-item:last-child {
  border-bottom: none;
}
/**
 * Disabled and optgroups
 */
.option-group {
  cursor: text;
  font-weight: 600;
  background: #e1e1e1;
  border: 1px #ccc solid;
  border-width: 1px 0;
}
/**
 * Disabled
 */
.option-disabled {
  opacity: 0.5;
}
/**
 * Dropdown
 */
.combo-dropdown {
  position: absolute;
  z-index: 1;
  top: calc(100% + 5px);
  left: -1px;
  min-width: calc(100% + 2px);
  max-width: 300px;
  max-height: 300px;
  margin: 0;
  padding: 0;
  display: none;
  overflow-y: auto;
  background: #fff;
  border: 1px solid #999999;
  border-radius: 0;
  box-shadow: 0 2px 5px 0 rgba(0, 0, 0, 0.26);
  box-sizing: border-box;
}
.combo-dropdown li {
  list-style: none;
  padding: 8px 1em;
  margin: 0;
}
/**
 * On Active
 */
.combo-open .combo-dropdown {
  display: block;
}
/**
 * Search marker
 */
.combo-marker {
  background: #f9cebd;
  color: #965b03;
  font-weight: bold;
}
html {
  font-size: 14px;
}
html,
body {
  /* 在右侧内容高度很小时，保持 footer 在底部不能使用 min-height */
  height: 100%;
  /* Verdana 与 Tahoma 相似，但字符间距大，适合显示金额 */
  /* font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif; */
  font-family: "Helvetica Neue", Helvetica, Tahoma, Arial, "PingFang SC", "Hiragino Sans GB", "Microsoft YaHei", "WenQuanYi Micro Hei", sans-serif;
  font-size: 14px;
}
.open-box {
  padding: 20px 30px 0 30px;
}
.row {
  margin-bottom: 15px;
}
.col-2 {
  padding-left: 10px;
  padding-right: 0;
}
.col-10 {
  padding-left: 0;
}
.layui-layer-btn {
  padding: 0 25px 20px;
}
.container {
  /* 常见的设备网页宽度为：1920px 1600px 1440px 1280px 1140px 960px 768px 640px 320px */
  /* min-width: 1140px; */
}
/* 覆盖 bootstrap a 标签样式，当 a 标签没有 href 时样式会有所变化 */
/* bootstrap 文件选择按钮由 'Browser' 改为 '浏览' */
.custom-file-label::after {
  content: "浏览";
}
a,
a:hover {
  /* 如果 a 标签没有 href，hover 事件不会出现手掌图标，需要强行指定 */
  cursor: pointer;
  text-decoration: none;
}
/* a:not([href]), a:not([href]):hover {
	color: #fff;
} */
/* 添加 bootstrap 3 中的 btn-default 样式 */
.btn-default {
  color: #965b03;
  background-color: #fff;
  border-color: #965b03;
}
.btn-default.focus,
.btn-default:focus {
  color: #965b03;
  background-color: #fff;
  border-color: #965b03;
}
.btn-default:hover {
  color: #965b03;
  background-color: #fff;
  border-color: #965b03;
}
.btn-default.active,
.btn-default:active,
.open > .dropdown-toggle.btn-default {
  color: #965b03;
  background-color: #fff;
  border-color: #965b03;
}
.btn-default.active.focus,
.btn-default.active:focus,
.btn-default.active:hover,
.btn-default:active.focus,
.btn-default:active:focus,
.btn-default:active:hover,
.open > .dropdown-toggle.btn-default.focus,
.open > .dropdown-toggle.btn-default:focus,
.open > .dropdown-toggle.btn-default:hover {
  color: #965b03;
  background-color: #fff;
  border-color: #965b03;
}
.btn-default.active,
.btn-default:active,
.open > .dropdown-toggle.btn-default {
  background-image: none;
}
.btn-default.disabled,
.btn-default.disabled.active,
.btn-default.disabled.focus,
.btn-default.disabled:active,
.btn-default.disabled:focus,
.btn-default.disabled:hover,
.btn-default[disabled],
.btn-default[disabled].active,
.btn-default[disabled].focus,
.btn-default[disabled]:active,
.btn-default[disabled]:focus,
.btn-default[disabled]:hover,
fieldset[disabled] .btn-default,
fieldset[disabled] .btn-default.active,
fieldset[disabled] .btn-default.focus,
fieldset[disabled] .btn-default:active,
fieldset[disabled] .btn-default:focus,
fieldset[disabled] .btn-default:hover {
  color: #965b03;
  background-color: #fff;
  border-color: #965b03;
}
.btn-default .badge {
  color: #965b03;
  background-color: #fff;
  border-color: #965b03;
}
/* Responsive images */
img {
  max-width: 100%;
  border: 0;
}
/* 重定义页面基础元素间距 */
div,
ul,
li,
p,
a,
h1,
h2,
h3,
h4,
h5,
h6,
section,
fieldset,
legend,
label {
  padding: 0px;
  margin: 0px;
}
ul,
ol {
  padding-left: 0;
  list-style-type: none;
}
pre {
  font-family: Consolas, Monaco, "Courier New", "Microsoft YaHei", monospace;
}
.bgf2 {
  background-color: #F2F2F2;
}
.bgw {
  background-color: white;
}
.px10 {
  padding-left: 10px;
  padding-right: 10px;
}
.c4 {
  color: #444;
}
@media (min-width: 768px) {
  ::-webkit-scrollbar {
    /*滚动条整体样式*/
    width: 10px;
    /*高宽分别对应横竖滚动条的尺寸*/
    height: 5px;
  }
  ::-webkit-scrollbar-thumb {
    /*滚动条里面小方块*/
    border-radius: 10px;
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    background: #999;
  }
  ::-webkit-scrollbar-track {
    /*滚动条里面轨道*/
    box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
    border-radius: 10px;
    background: #ededed;
  }
}
/* 公共样式 */
/* 主色 */
.mc,
.main-color {
  color: #20a53a;
}
/* .mbc {border-color: #20a53a;} */
/* .mbgc {background-color: #20a53a;} */
.bc-f2 {
  background-color: #F2F2F2 !important;
}
/* root-box 为根容器，left-box、right-box、footer 为其内部并列容器 */
.root-box {
  /* 在右侧内容高度超出屏幕时，保持 footer 保持在底部，不能使用 height */
  min-height: 99.9%;
  /* 99.9% 避免 root-box 超出 html 高度在 ckeditor 页面出现滚动条 */
  position: relative;
  padding: 0;
  /* bootstrap container-fluid 部分样式 */
  width: 100%;
  margin-right: auto;
  margin-left: auto;
  /* 灰色 #F0F0F0 #F2F2F2 #EEEEEE #E2E2E2 #DDDDDD #D2D2D2 #C2C2C2 */
  background-color: #F2F2F2;
}
.root-box.closed .left-box {
  width: 30px;
  overflow: hidden;
}
.root-box.closed .left-box .left-menu {
  display: none;
}
.root-box.closed .left-box .left-scroll-box-bottom {
  padding: 9px;
}
.root-box.closed .left-box .left-scroll-box-bottom :first-child {
  display: none;
}
.root-box.closed .right-box {
  padding-left: 30px;
}
.left-box {
  width: 200px;
  z-index: 10;
  height: 100%;
  position: fixed;
  overflow: hidden;
}
.right-box {
  /* 避免与 left-box 重叠 */
  /* margin-left: 180px; */
  padding-left: 200px;
  /* 避免与 footer 重叠，只能使用 padding-bottom，否则 footer 高度会增加 */
  /* margin-bottom: 66px; */
  /* 避免 header 的 margin-top 值破坏顶部样式 */
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.right-box .content-box {
  padding: 15px;
}
.right-box .content-box #content-box {
  background-color: #fff;
  height: calc(100vh - 80px);
}
.footer-box {
  position: absolute;
  bottom: 0;
  text-align: center;
  width: 100%;
  line-height: 50px;
  background-color: white;
  font-size: 14px;
}
.footer-box a {
  font-family: Tahoma, Arial, "Helvetica Neue", Helvetica, sans-serif;
  color: #20a53a;
}
/* 左部滚动容器 */
.left-scroll-box {
  /* 结合父容器的 overflow: hidden 隐藏滚动条 */
  margin-right: -10px;
  height: 100%;
  overflow-y: scroll;
  background-color: #1d1e23;
  padding-bottom: 50px;
  padding-top: 50px;
}
.left-scroll-box .left-logo-box {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 50px;
  background-color: #1d1e23;
  z-index: 5;
}
.left-scroll-box .left-scroll-box-bottom {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background-color: #1d1e23;
  height: 50px;
  padding: 10px 15px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 14px;
  color: #f6ca9d;
  cursor: pointer;
}
.left-logo-box {
  height: 50px;
  /* logo 背景渐变 */
  transition-duration: 500ms;
  transition-property: background;
  transition-timing-function: ease;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.left-logo-box:hover {
  opacity: 1;
}
.left-logo-box a {
  display: block;
  line-height: 50px;
  font-size: 18px;
  font-family: Tahoma, Arial, "Helvetica Neue", Helvetica, sans-serif;
  letter-spacing: 1px;
  color: white;
  padding: 12px 30px;
}
.left-logo-box a img {
  width: 100%;
  display: block;
}
.left-menu-box {
  background-color: #1d1e23;
  margin-top: 1px;
}
.left-menu {
  list-style-type: none;
  padding: 0px;
  margin: 0px;
}
.left-menu li {
  margin-bottom: 1px;
  position: relative;
}
.left-menu li .firstMenu {
  border-top: 1px solid #22232b;
  display: flex;
  justify-content: space-between;
  align-items: center;
  color: #ffffff;
  padding: 10px 15px;
  cursor: pointer;
  height: 52px;
}
.left-menu li .firstMenu .bIcon-arrowRight {
  font-size: 12px;
  transition: 0.2s;
  -webkit-transform: rotate(90deg);
  -moz-transform: rotate(90deg);
  -ms-transform: rotate(90deg);
  -o-transform: rotate(90deg);
  transform: rotate(90deg);
}
.left-menu li .firstMenu .bIcon-arrowRight.open {
  -webkit-transform: rotate(0deg);
  -moz-transform: rotate(0deg);
  -ms-transform: rotate(0deg);
  -o-transform: rotate(0deg);
  transform: rotate(0deg);
}
.left-menu li a {
  font-size: 15px;
  color: #d6d7d9;
  width: 100%;
  padding-left: 30px;
  border-left: transparent 4px solid;
  letter-spacing: 1px;
  height: 52px;
  display: flex;
  align-items: center;
}
.left-menu li a .remark {
  font-size: 12px;
  opacity: 0.5;
}
@keyframes transLight {
  0% {
    left: 0;
  }
  30%,
  100% {
    left: 200%;
  }
}
.left-menu li a.active,
.left-menu li a:hover {
  color: #f6ca9d;
}
.left-menu li a.active {
  background-color: #2c3138;
  position: relative;
  overflow: hidden;
}
.left-menu li a.active:after {
  content: "";
  transform: rotate(-30deg);
  width: 20px;
  height: 80px;
  background-color: #fff;
  display: block;
  position: absolute;
  top: -10px;
  left: 0;
  opacity: 0.2;
  animation: transLight 3s infinite ;
}
.left-menu li i {
  display: inline-block;
  margin-right: 12px;
  font-size: 15px;
}
/* 左侧菜单 "功能" 菜单的图标添加一个 active 与 hover 动画 */
ul.left-menu li a.active i.fa-cog,
ul.left-menu li a:hover i.fa-cog {
  -webkit-animation: fa-spin 2s infinite linear;
  animation: fa-spin 2s infinite linear;
}
.subMenu {
  background-color: #101117;
}
/* 重定义 layer 样式，加上 body 是为了保证优先级 */
body .layui-layer-dialog {
  min-width: 350px;
}
body .layui-layer-dialog.layui-layer-msg {
  /* 覆盖 layui-layer-dialog 中 min-width，否则 msg 弹窗过宽 */
  min-width: 180px;
}
body .layui-layer-btn a {
  border-radius: 3px;
  font-size: 14px;
}
body .layui-layer-btn a.layui-layer-btn0 {
  background-color: #000;
  border-color: #000;
  color: #f6ca9d;
}
body .layui-layer-btn a.layui-layer-btn0:hover {
  color: #f6ca9d;
  opacity: 0.9;
}
/* 右侧头部容器 */
.header-box,
.headerTool {
  display: -ms-flexbox;
  /* flex 布局：http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html */
  display: flex;
  /* 主轴方向，即 item 的排列方向：row、row-reverse、column、column-reverse; */
  flex-direction: row;
  /* item 换行规则：nowrap、wrap、wrap-reverse */
  flex-wrap: nowrap;
  /* 多根轴线的对齐方式。如果 item 只有一根轴线，该属性不起作用：flex-start、flex-end、center、space-between、space-around、stretch */
  /* align-content: stretch; */
  /* item 在主轴上的对齐方式：flex-start、flex-end、center、space-between、space-around */
  /* 如果是左右结构，左右侧 item 分别配置为 flex: 1 1 auto, flex: 0 1 auto 可代替该配置 */
  justify-content: space-between;
  /* item 在交叉轴上的对齐方式：flex-start、flex-end、center、baseline、stretch */
  align-items: center;
  height: 50px;
  /* 使用 align-items: center; 样式取代 */
  /* line-height: 50px; */
  padding: 0 10px;
  background-color: white;
  border-bottom: 1px solid #e0e0e0;
}
.headerTool {
  height: auto;
  min-height: 50px;
}
/* flex 用于配置 item 的三个属性：flex-grow、flex-shrink、flex-basis */
.header-box .crumb {
  flex: 1 1 auto;
}
.header-box .search {
  flex: 0 1 auto;
}
.crumb i {
  font-size: 16px;
  margin-right: 5px;
}
.crumb a,
.crumb span {
  color: #444;
}
.crumb a {
  margin-right: 6px;
}
.crumb span {
  margin-left: 6px;
}
.search input[type=text] {
  float: left;
  border: #20a53a 1px solid;
  height: 30px;
  width: 250px;
  padding: 0 8px;
  font-size: 12px;
  line-height: 12px;
  color: #333;
}
.search input[type=submit] {
  float: left;
  width: 38px;
  height: 30px;
  border: 0;
  background: url("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABAAAAAQCAYAAAAf8/9hAAAABHNCSVQICAgIfAhkiAAAAAlwSFlzAAAAxAAAAMQBz4pYTAAAABx0RVh0U29mdHdhcmUAQWRvYmUgRmlyZXdvcmtzIENTNui8sowAAAE2SURBVDiNndJBS1VRFMXx9UzNQUQD0caFk6YhEUFCOPETiJQfIygQbNQgCCeOGjYLGjRJkPoKoSGIRKADs1nQoEIEfw3cry6v+3oPN2z2ufuu8z/7nruC9ORNvMRXHOIFbrTogjQfOniKX87iR2P9HSv/A1zA+xK/wRwmMYV5vKt3r/sBnpTgcb9R8aw0D3sB1/GzTum3uZsfSnupCVgr8vwQgKXSLnR7I0nuJJFkN4PjY9WZbmMkyXGtx4YAjFY9aQI2knSS3B4CMFd1508HV3CE3QHfP17G2sdo7298UJfzChMtmy9jszTLbT4InpfgCx6Vme5hFd/8jW1cbQME93Hg39jDYmOKT5hGOmi7rNkk15KcJvmcZKv6E0k2k9xNsp1keZBx2vIi3tYkG+cBxJmV13HrN6Szg7ZCfX3NAAAAAElFTkSuQmCC") no-repeat center #20a53a;
  cursor: pointer;
}
/** 主体内容部分 **/
/* 覆盖 bootstrap 样式 */
.btn-sm {
  padding: 5px 10px;
}
.main {
  position: relative;
  background-color: white;
  padding: 15px;
}
.toolbar {
  text-align: right;
  margin: 0 5px 10px;
}
.table-box {
  position: relative;
  margin-bottom: 25px;
}
.table-box .table {
  border: 1px solid #ddd;
  color: #666;
  /* font-size: 12px; */
  margin-bottom: 0;
}
.table-box th.operation {
  text-align: right;
}
.table-box td.operation {
  text-align: right;
  color: #777;
}
.table-box .table thead th {
  vertical-align: inherit;
  background-color: #f6f6f6;
  border-bottom: 1px solid #e6e6e6;
  color: #666;
  font-weight: normal;
  padding: 8px;
}
.table-hover tbody tr:hover {
  background-color: #f5f5f5;
}
.table-box th {
  color: #666;
}
.table-box td {
  vertical-align: middle;
  color: #666;
}
.table-box td.operation a {
  color: #000;
}
.table-box td.operation a.button {
  color: #f6ca9d;
  text-align: center;
  font-weight: normal;
}
.table-box td a {
  color: #666;
}
/* 分页 */
.pagination a {
  font-family: "Arial";
  color: #666;
}
.page-item.active .page-link {
  color: #fff;
  background-color: #000;
  border-color: #000;
}
.fz16 {
  font-size: 16px;
}
.ptb50 {
  padding-bottom: 50px;
  padding-top: 50px;
}
/* blog 添加、修改界面 */
.form-box {
  padding: 1rem 2rem 0rem 2rem;
}
/* ckeditor 工具栏的最大化按钮放置在最右侧 */
.form-group {
  position: relative;
}
/* ckeditor 的最大化按钮放在最右侧 */
.cke .cke_toolbox .cke_button.cke_button__maximize {
  position: absolute;
  right: 10px;
}
/* bootstrap 的 switch 开关选中状态改变背景色 */
.custom-control-input:checked ~ .custom-control-label::before {
  color: #fff;
  border-color: #20a53a;
  background-color: #20a53a;
}
.custom-control-label:hover {
  cursor: pointer;
}
/* image 管理 */
.image-box {
  display: -ms-flexbox;
  /* flex 布局：http://www.ruanyifeng.com/blog/2015/07/flex-grammar.html */
  display: flex;
  /* 主轴方向，即 item 的排列方向：row、row-reverse、column、column-reverse; */
  flex-direction: row;
  /* item 换行规则：nowrap、wrap、wrap-reverse */
  flex-wrap: wrap;
  /* 多根轴线的对齐方式。如果 item 只有一根轴线，该属性不起作用：flex-start、flex-end、center、space-between、space-around、stretch */
  /* align-content: stretch; */
  /* item 在主轴上的对齐方式：flex-start、flex-end、center、space-between、space-around */
  /* 如果是左右结构，左右侧 item 分别配置为 flex: 1 1 auto, flex: 0 1 auto 可代替该配置 */
  /* justify-content: space-center; */
  /* item 在交叉轴上的对齐方式：flex-start、flex-end、center、baseline、stretch */
  align-items: center;
}
.image-item {
  flex: 0 0 auto;
  margin: 5px 10px 12px 10px;
  /* border: 1px solid #fff; */
  border-radius: 3px;
}
.image-item:hover {
  /* border: 1px solid #EEE; */
}
.image-item img {
  width: 200px;
  max-height: 350px;
  cursor: pointer;
}
.image-footer {
  margin-top: 5px;
  font-size: 16px;
  text-align: center;
  visibility: hidden;
}
.image-footer i {
  margin-right: 10px;
  cursor: pointer;
}
.image-item:hover .image-footer {
  visibility: visible;
}
/* 与头部并列的提示信息 */
#content-box div.tips-row {
  font-size: 13px;
  color: red;
  background-color: #fef3e2;
  line-height: 46px;
  margin-bottom: 15px;
  padding-left: 10px;
  box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.2);
}
/* main 内部提示信息 */
.main div.tips {
  font-size: 13px;
  color: #333;
  background-color: #fbfbfb;
  border: 1px solid #eee;
  line-height: 46px;
  margin-bottom: 20px;
  padding-left: 10px;
}
/* 首页 */
.home-main {
  margin: 15px 0;
}
.panel {
  background-color: white;
  margin: 15px 0;
}
.panel-title {
  height: 50px;
  line-height: 50px;
  border-bottom: 1px solid #eee;
  padding: 0 15px;
  color: #666;
  font-size: 16px;
}
.panel-body {
  padding: 20px 0 0 0;
  display: -ms-flexbox;
  display: flex;
  flex-direction: row;
  flex-wrap: wrap;
  /* justify-content: space-between; */
  align-items: center;
}
.panel-body div {
  flex: 0 0 200px;
  margin: 0 0 20px 20px;
  height: 100px;
  background-color: #f9f9f9;
  border: #f0f0f0 1px solid;
  text-align: center;
}
.panel-body div span {
  display: block;
  line-height: 40px;
  margin-top: 8px;
  color: #999;
  font-size: 16px;
}
.panel-body div a {
  display: block;
  font-size: 26px;
  font-family: arial;
  color: #20a53a;
}
.loginBg {
  width: 100%;
  height: 100%;
  background-image: url(../img/bg.jpg);
  background-repeat: no-repeat;
  background-position: center center;
  -webkit-background-size: cover;
  background-size: cover;
}
.showInMb {
  display: none;
}
.wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
  background-color: rgba(0, 0, 0, 0.7);
  display: none;
  z-index: 9;
}
.table-box th {
  width: 1%;
}
.table-box th.autoWidth {
  width: auto;
}
.table-box td,
.table-box th {
  white-space: nowrap;
  word-break: keep-all;
}
.father {
  position: relative;
}
.ml10 {
  margin-left: 10px;
}
.center-blocker {
  position: absolute;
  width: 30px;
  left: 50%;
  margin-left: -15px;
  top: 0;
  bottom: 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.center-blocker .icons {
  cursor: pointer;
}
.center-blocker .icons > div {
  padding: 10px 0;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.center-blocker .icons > div:hover {
  color: #965b03;
}
.scroller {
  height: 300px;
  overflow: auto;
  background-color: #f1f1f1;
  border: 1px solid #dddddd;
  -webkit-border-radius: 2px;
  -moz-border-radius: 2px;
  border-radius: 2px;
  margin-top: 5px;
}
.scroller::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 3px;
  /*高宽分别对应横竖滚动条的尺寸*/
  height: 5px;
}
.scroller::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #999;
}
.scroller::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #ededed;
}
.mainText {
  color: #965b03 !important;
  font-weight: bold;
}
.badge-primary {
  background-color: #000000;
  color: #f6ca9d;
}
label {
  cursor: pointer;
}
input[type="checkbox"] {
  vertical-align: middle;
}
.layui-layer-iframe .layui-layer-btn,
.layui-layer-page .layui-layer-btn {
  padding-bottom: 25px;
}
.group {
  padding-bottom: 15px;
  margin-bottom: 10px;
  border: 1px solid #f1f1f1;
}
.group .mark {
  padding: 10px 15px;
  background-color: #f7f7f7;
  font-weight: bold;
  margin-bottom: 15px;
}
.group .sub {
  padding-left: 15px;
}
.moreTip {
  width: 200px;
  cursor: pointer;
  overflow: hidden;
  height: 20px;
  text-overflow: ellipsis;
}
.moreTip.tipOpen {
  word-break: break-all;
  white-space: normal;
  overflow: auto;
  height: auto;
}
.open-box.open-box-account {
  width: 100%;
  padding: 0;
}
.open-box.open-box-account .content {
  padding: 5px 0!important;
}
.page-item.active .page-link {
  background-color: #000;
  color: #f6ca9d;
  border-color: #000;
}
.button {
  word-break: keep-all;
  white-space: nowrap;
  background-color: #000000;
  color: #f6ca9d;
  border-color: #333;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
  min-width: 80px;
  padding: 6px 12px;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
}
.button:hover {
  background-color: #000000;
  border-color: #333;
  color: #f6ca9d;
  opacity: 0.8;
}
a:not([href]).button {
  color: #f6ca9d;
}
.empty {
  text-align: center;
  padding: 50px;
  font-size: 14px;
  color: #c8d7de;
}
.empty .bIcon-noData {
  font-size: 40px;
  margin-bottom: 10px;
}
.btn-default:hover {
  color: #965b03;
  background-color: #fff;
  border-color: #965b03;
}
.form-inline .form-group {
  margin: 1px;
  /* margin: 5px; */
}
.form-inline .btn {
  margin-left: 5px;
}
.more {
  color: #82939c;
  cursor: pointer;
  font-size: 12px;
  margin-left: 10px;
  display: none;
}
.more .text {
  display: inline-block;
}
.more .textHide {
  display: none;
}
.more.collapseMore .text {
  display: none;
}
.more.collapseMore .textHide {
  display: inline-block;
}
.abs {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  bottom: 0;
}
.form-inline .form-group {
  border: 1px solid #965b03;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
  overflow: hidden;
}
.form-inline .form-group label.sr-only {
  position: static;
  font-weight: bold;
  width: auto;
  height: auto;
  padding: 0 10px;
  color: #965b03;
}
.form-inline .form-group .form-control {
  border: none;
  border-left: 1px solid #965b03;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
  background-color: transparent;
}
.form-inline .form-group .form-control:focus,
.form-inline .form-group .form-control:active {
  outline: none;
  box-shadow: none;
}
.conditionBox {
  position: fixed;
  background-color: rgba(0, 0, 0, 0.7);
  left: 0;
  right: 0;
  bottom: 0;
  top: 0;
  z-index: 20;
  display: none;
}
.conditionBox .box {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  background-color: #fff;
  padding: 10px;
  padding-bottom: 60px;
  overflow: auto;
  width: 300px;
}
.conditionBox .box .content .form-group {
  display: block;
  width: 100%;
}
.conditionBox .box .content .form-group .sr-only {
  position: static;
  display: block;
  font-weight: bold;
  width: 100%;
  height: auto;
  padding-bottom: 5px;
}
.conditionBox .bottom {
  position: fixed;
  bottom: 0;
  right: 0;
  width: 300px;
  background-color: #fff;
  height: 60px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 10px;
  border-top: 1px solid #f1f1f1;
}
.conditionBox .bottom .confirm,
.conditionBox .bottom .cancel {
  width: 135px;
  text-align: center;
  line-height: 40px;
  cursor: pointer;
  -webkit-border-radius: 3px;
  -moz-border-radius: 3px;
  border-radius: 3px;
  -webkit-transition: all 0.4s;
  -moz-transition: all 0.4s;
  -ms-transition: all 0.4s;
  -o-transition: all 0.4s;
  transition: all 0.4s;
}
.conditionBox .bottom .confirm:hover,
.conditionBox .bottom .cancel:hover {
  opacity: 0.8;
}
.conditionBox .bottom .cancel {
  border: 1px solid #dddddd;
  color: #333;
  text-align: center;
}
.conditionBox .bottom .confirm {
  background-color: #000000;
  color: #f6ca9d;
}
.blue {
  color: #0075ff;
}
.fz12 {
  font-size: 12px;
}
.brown {
  color: #965b03;
}
.table-responsive {
  margin-bottom: 10px;
}
.table-box td.operation > * {
  margin: 2px;
  font-weight: bold;
  color: #795548 !important;
}
.table-box td.operation > * + *:before {
  content: '';
  display: inline-block;
  height: 8px;
  border-left: 1px solid #ddd;
  padding-right: 8px;
}
.searchGroup {
  position: relative;
}
.searchGroup .keywords {
  display: none;
  position: absolute;
  top: calc(100% + 3px);
  left: 0;
  right: 0;
  z-index: 99;
}
.searchGroup .keywords .list-group {
  cursor: pointer;
  -webkit-border-radius: 0;
  -moz-border-radius: 0;
  border-radius: 0;
}
button {
  outline: none!important;
}
.ptb10 {
  padding-top: 10px;
  padding-bottom: 10px;
}
.page-link:hover {
  color: #965b03;
}
.form-inline .form-group {
  overflow: visible;
}
.hidden {
  display: none;
}
.modal-body .form-group.row {
  margin-left: 0;
  margin-right: 0;
  margin-bottom: 10px;
}
.modal-body .form-group.row .form-control-plaintext {
  outline: none !important;
}
td.status_1 {
  color: #FF9800;
}
td.status_2 {
  color: #FF5722;
}
td.status_3 {
  color: #FF9800;
}
td.status_4 {
  color: #FF5722;
}
td.status_5 {
  color: #FF9800;
}
td.status_6 {
  color: #FF5722;
}
td.status_7 {
  color: #000;
}
td.status_8 {
  color: #FF5722;
}
td.status_9 {
  color: #4CAF50;
}
.inlineInPc {
  display: inline-block;
}
.modal-dialog .col-form-label {
  padding-right: 0;
}
.noBreak {
  word-break: keep-all;
  white-space: nowrap;
}
.open-box.open-box-account {
  max-height: 600px;
  overflow-y: auto;
}
.open-box.open-box-account > .row {
  margin: 0!important;
}
.open-box.open-box-account > .row .input-base {
  width: 100%;
}
.open-box.open-box-account::-webkit-scrollbar {
  /*滚动条整体样式*/
  width: 5px;
  /*高宽分别对应横竖滚动条的尺寸*/
}
.open-box.open-box-account::-webkit-scrollbar-thumb {
  /*滚动条里面小方块*/
  border-radius: 10px;
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  background: #c1c1c1;
}
.open-box.open-box-account::-webkit-scrollbar-track {
  /*滚动条里面轨道*/
  box-shadow: inset 0 0 5px rgba(0, 0, 0, 0.2);
  border-radius: 10px;
  background: #ededed;
}
.conditionBox .combo-select,
.modal .combo-select {
  max-width: none;
  width: 100%;
  border: 1px solid #ced4da;
  -webkit-border-radius: 4px;
  -moz-border-radius: 4px;
  border-radius: 4px;
}
#loading {
  display: none;
  position: fixed;
  left: 0;
  right: 0;
  z-index: 99999;
  top: 0;
  bottom: 0;
}
.layui-layer-btn.layui-layer-btn-sm {
  padding: 0!important;
}
.layui-layer-btn.layui-layer-btn-sm .layui-layer-btn1 {
  margin: 0;
}
.mr5 {
  margin-right: 5px;
}
.table-box td.operation > * + .modal:before {
  display: none;
}
.w100p {
  width: 100%;
}
.w80p {
  width: 75%;
}
.w20p {
  width: 25%;
}
.min-comboselect {
  width: 100px;
}
.min-comboselect .combo-select {
  width: 100%;
  border: 1px solid #dee2e6;
  border-left: none;
}
.min-comboselect .combo-select.combo-focus {
  box-shadow: none;
}
.min-comboselect .combo-select .combo-input {
  padding: 7.5px 0.75rem;
}
.flex {
  width: 100%;
  display: flex;
}
.flex.rt {
  justify-content: flex-end;
}
.my-modal-title {
  color: #795548;
}
.my-modal-label {
  color: #795548;
  text-align: right;
}
@media (max-width: 468px) {
  @charset "UTF-8";
  * {
    box-sizing: border-box;
  }
  .login .login-box {
    width: 90%;
    margin-left: 0;
    left: 5%;
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.1);
  }
  .loginWrapper {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-color: rgba(0, 0, 0, 0.4);
  }
  .left-box {
    display: none;
  }
  .right-box {
    padding-left: 0;
  }
  .right-box > .container-fluid {
    padding: 0;
  }
  .header-box {
    margin-top: 0;
  }
  .showInPc {
    display: none;
  }
  .showInMb {
    display: block;
  }
  .layui-layer {
    width: 90%!important;
    left: 5%!important;
    top: 10%!important;
  }
  .conditions .form-group,
  .conditions .btn {
    /* display: none!important; */
  }
  .user .header-box {
    display: none;
  }
  .header-box {
    background-color: #000000;
    color: #f6ca9d;
  }
  .right-box .content-box #content-box {
    height: calc(100vh - 50px);
  }
  .open-box {
    max-height: 400px;
    overflow: auto;
  }
  #searchForm .form-group {
    /* display: none; */
  }
  .page-item.last {
    display: block;
    width: 100%;
  }
  .page-item {
    display: none;
  }
  .page-item.next {
    display: block;
  }
  .inlineInPc {
    display: none;
  }
  form label.col-2 {
    flex: 0 0 100%;
    max-width: 100%;
    padding-left: 0;
    font-weight: bold;
  }
  form label.col-2 + .col-10 {
    flex: 0 0 100%;
    max-width: 100%;
  }
  .chooseList {
    margin: 0 -30px;
  }
  .modal-dialog .col-form-label {
    text-align: left;
  }
  .modal.show .modal-dialog {
    position: fixed;
    top: 30px;
    left: 0;
    right: 0;
    z-index: 999;
  }
}
