.hide {
  display: none;
}
/* table */
.table-layout {
  display: flex;
  flex: 1;
  box-sizing: border-box;
  margin: 48px 0 0 4%;
  flex-direction: column;
}
.table-layout-header {
  display: flex;
  width: 100%;
  align-items: center;
}
.table-layout-header .title {
  font-size: 16px;
  display: inline-flex;
  margin-right: 20px;
}
.table-layout-header .btn-group .btn {
  height: 30px;
  min-width: 60px;
}
.table-layout-body {
  display: flex;
  width: 100%;
  overflow-x: auto;
}
table.table {
  width: 100%;
  border-collapse: collapse;
  border-spacing: 0;
  margin: 15px auto;
}
table.table th,
table.table td {
  padding: 4px 8px;
  border: 1px solid #d6dbe6;
  height: 42px;
  box-sizing: border-box;
}
table.table th {
  background: #f9fbff;
  font-weight: normal;
  text-align: center;
  color: #0b406e;
  font-weight: bold;
  white-space: nowrap;
}
table.table th:first-child {
  border-radius: 4px 0 0 0;
}
table.table th:last-child {
  border-radius: 0 4px 0 0;
}
table.table td {
  color: #444;
  text-align: center;
}
table.table tr:hover td {
  background: rgba(229, 232, 239, 0.15);
}
table.table tr.selected td {
  background: #e5e8ef;
  color: #007bda;
}
/* button */
.btn-group .btn {
  padding: 6px 12px;
  margin: 0 6px;
  border-radius: 6px;
  background: #fff;
  border: 1px solid #ccc;
  cursor: pointer;
  min-width: 80px;
  height: 36px;
}
.btn-group .btn:hover {
  background: #1062A6;
  color: #fff;
  border: 0;
}
.btn-group .btn.btn-primary {
  border: 0;
  background: #1062A6;
  color: #fff;
}
.btn-group .btn.btn-primary:hover {
  border: 0;
  background: #0a4576;
  color: #fff;
}
.modal {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: 1099;
}
.modal-content {
  position: absolute;
  z-index: 9;
  background: #fff;
  border-radius: 12px;
  /*width: 1080px;
            height: 640px;*/
  top: 50%;
  left: 50%;
  margin: -320px 0 0 -540px;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
  display: flex;
  flex-direction: column;
}
.modal-header {
  display: flex;
  width: 100%;
  align-items: stretch;
  border-bottom: 1px solid #eef2fb;
}
.modal-header .title {
  display: flex;
  justify-content: flex-start;
  align-items: center;
  font-size: 18px;
  color: #444;
  padding: 0 16px;
  height: 48px;
  flex: 1;
}
.modal-header .close {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
  position: relative;
  text-decoration: none;
}
.modal-header .close::after {
  position: absolute;
  width: 48px;
  height: 48px;
  content: '✕';
  font-size: 18px;
  display: flex;
  justify-content: center;
  align-items: center;
  opacity: 0.35;
}
.modal-header .close:hover {
  color: #fff;
  background: #ca0000;
  border-radius: 0 12px 0 0;
}
.modal-header .close:hover:after {
  opacity: 1;
}
.modal-body {
  flex: 1;
  overflow-y: auto;
  padding: 16px;
  text-align: center;
}
.modal-body .layui-form {
  padding-right: 4%;
  padding-bottom: 40px;
}
.modal-footer {
  display: flex;
  justify-content: center;
  padding: 20px;
}
.modal-bg {
  position: absolute;
  top: 0;
  right: 0;
  bottom: 0;
  left: 0;
  background: rgba(0, 0, 0, 0.25);
}
.pt-form-group {
  display: flex;
  width: 100%;
  padding: 30px 0 0;
  box-sizing: border-box;
}
.pt-form-group .pt-control-label {
  display: flex;
  padding-right: 16px;
  padding-top: 8px;
  font-weight: bold;
}
.pt-form-group .pt-control-label .label {
  font-weight: bold;
  display: inline-flex;
  align-items: center;
}
.pt-form-group .pt-text-btn {
  margin-left: 10px;
}
.pt-form-group .pt-text-btn button {
  height: 100%;
  padding: 0 16px;
  border: 1px solid #ddd;
  background: transparent;
  display: flex;
  justify-content: center;
  align-items: center;
  border-radius: 8px;
  cursor: pointer;
}
.pt-form-group .pt-text-btn button:hover {
  border-color: #0a4576;
  background: #0a4576;
  color: #fff;
}
.pt-form-group .pt-input-group {
  display: flex;
  flex: 1;
}
.pt-form-group .pt-input-group .ofwbk {
  margin: 0;
  width: 100% !important;
}
.pt-form-group .pt-checkbox,
.pt-form-group .pt-radio {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}
.pt-form-group .pt-checkbox-group,
.pt-form-group .pt-radio-group {
  display: flex;
  padding-top: 8px;
}
.pt-form-group .pt-checkbox-group div.pt-checkbox-inline {
  display: flex;
}
.pt-form-group .pt-checkbox-group div.pt-checkbox-inline .pt-checkbox-inline {
  padding: 0 20px 0 6px;
}
.pt-form-group .pt-radio-group div.pt-radio-inline {
  display: flex;
}
.pt-form-group .pt-radio-group div.pt-radio-inline .pt-radio-inline {
  padding: 0 20px 0 6px;
}
.pt-form-group .pt-radio-tip + .pt-radio-group {
  margin-left: 12px;
}
.pt-form-group .pt-checkbox-help,
.pt-form-group .pt-radio-help {
  display: inline-flex;
  padding: 2px 6px;
  border: 1px solid #72bde3;
  border-radius: 4px;
  background: #f3f9ff;
  font-size: 12px;
  color: #1f78bd;
  align-items: center;
}
.pt-form-group .pt-html.pt-html-assistant {
  display: flex;
  flex: 1;
}
.pt-form-group .pt-html.pt-html-assistant p {
  line-height: 1.5;
  text-align: justify;
  padding-top: 8px;
}
.layui-form {
  display: flex;
  padding-left: 4%;
}
.layui-form > ul,
.layui-form > ul > li {
  display: flex;
  flex: 1;
  flex-wrap: wrap;
}
.layui-form > ul > li {
  margin: 0 -1%;
}
.layui-form .pt-form-group {
  display: flex;
  align-items: center;
  margin: 0 1%;
  box-sizing: border-box;
  position: relative;
}
.layui-form .pt-form-group .pt-control-label {
  padding-top: 10px;
}
.layui-form .pt-form-required .pt-control-label {
  position: relative;
}
.layui-form .pt-form-required .pt-control-label::after {
  content: '*';
  display: flex;
  justify-content: center;
  align-items: center;
  color: #ca0000;
  font-size: 20px;
  padding-left: 4px;
}
/* 下拉树 */
.dropdown_container .ztree li span.button.chk {
  margin: 4px 2px;
}
