* {
  margin: 0;
  padding: 0;
  list-style: none;
}

html {
  width: 100%;
  height: 100%;
  overflow: hidden;
}

body {
  width: 100%;
  height: 100%;
  overflow: auto;
  font-size: 13px;
  color: rgb(1, 1, 1);
  line-height: 1;
  display: flex;
  flex-direction: column;
}

p {
  margin: 0;
  font-size: 13px;
}

a {
  color: rgb(34, 34, 34);
  text-decoration: none;
}

.wrapper {
  padding-left: 0;
  display: flex;
  flex-direction: column;
  height: 100%;
}

.content {
  display: flex;
  flex: 1;
  overflow: auto;
}

.wrapper-content {
  padding: 0 !important;
  display: grid;
  width: 100%;
  height: 100%;
  grid-template-rows: 100%;
  grid-template-columns: 230px 1fr;
  grid-column-gap: 5px;
}

/*面包屑菜单*/
.crumbs-container {
  background: #ffffff;
  padding: 5px 15px;
  font-size: 16px;
  line-height: 36px;
  margin-right: 0px;
  margin-bottom: 5px;
  box-shadow: 0 0 2px rgba(0, 0, 0, .04);
}

.crumbs-container .top-menu {
  color: #00b3b3;
}

.crumbs-container .child-menu {
  color: #999999;
  font-size: 13px;
}

.crumbs-container .menu-cut {
  color: #999999;
  font-size: 13px;
  padding: 0 5px;
}

.crumbs-container .goback {
  float: right;
  font-size: 13px;
  padding: 2px 12px;
  margin: 7px 10px;
}
.crumbs-container a {
  float: right;
  font-size: 13px;
  padding: 2px 12px;
  margin: 7px 10px;
}

.crumbs-container + div {
  padding-right: 0;
}

/* 公共样式 */

.normal {
  color: rgb(102, 102, 102);
}

.skyblue {
  color: rgb(90, 151, 242);
}

.skyblue_bg,
.thermogram {
  background-color: rgb(90, 151, 242);
}

.primary {
  color: rgb(0, 191, 175);
}

.primary_bg {
  background-color: rgb(0, 191, 175);
}

.origin {
  color: rgb(245, 107, 39);
}

.origin_bg {
  background-color: rgb(245, 107, 39);
}

.warning {
  color: rgb(255, 159, 25);
}

.warning_bg {
  background-color: rgb(255, 159, 25);
}

.error {
  color: rgb(242, 73, 73);
}

.error_bg {
  background-color: rgb(242, 73, 73);
}

.purple {
  color: rgb(153, 71, 255);
}

.purple_bg {
  background-color: rgb(153, 71, 255);
}

.success_bg {
  background-color: rgb(0, 209, 3);
}

.gray_bg {
  background-color: rgb(243, 243, 244);
}

.white_bg {
    background-color: white;
}

.error_bg_o {
  background-color: rgba(242, 73, 73, .15);
}

.warning_bg_o {
  background-color: rgba(255, 159, 25, .15);
}

.dot {
  display: inline-block;
  width: 7px;
  height: 7px;
  border-radius: 50%;
  margin: 0 5px;
}

.flexbox {
  display: flex;
  flex-direction: row;
  align-items: center;
}

.flex-1 {
  flex: 1;
}

/* 自定义的单选框和复选框样式 */
.radio_view,
.checkbox_view {
  display: flex;
  align-items: center;
  min-height: 26px;
}

.radio_input,
.checkbox_input {
  width: 16px;
  height: 16px;
  margin: 0 !important;
  display: inline-grid;
  outline: none;
  position: relative;
}

.radio_input::before,
.checkbox_input::before {
  content: " ";
  width: 16px;
  height: 16px;
  border-radius: 1px;
  border: 1px solid rgb(216, 216, 216);
  display: flex;
  position: absolute;
  justify-content: center;
  align-items: center;
  z-index: 1;
  background-color: rgb(255, 255, 255);
  border-collapse: separate;
}

.radio_input::before {
  border-radius: 50%;
}

.radio_input:checked::before,
.checkbox_input:checked::before {
  content: "\2714";
  color: rgb(0, 191, 175);
  font-size: 15px;
}

.radio_input:checked::before {
  color: rgb(255, 255, 255);
  background-color: rgb(0, 191, 175);
  border: none;
}

.radio_input + label,
.checkbox_input + label {
  font-size: 13px;
  padding-left: 6px;
  margin-bottom: 0;
  margin-right: 12px;
  user-select: none;
  color: rgb(34, 34, 34);
}

.radio_input + label:last-child,
.checkbox_input + label:last-child {
  margin-right: 0;
}

.flex-column {
  flex-direction: column;
  align-items: flex-start;
}

.row-reverse {
  flex-direction: row-reverse;
}

.align-start {
  align-items: flex-start;
}

.align-end {
  align-items: flex-end;
}

.justify-between {
  justify-content: space-between;
}

.justify-around {
  justify-content: space-around;
}

.justify-center {
  justify-content: center;
}

.justify-end {
  justify-content: flex-end;
}

.rung {
  display: inline-block;
  width: 7px;
  min-width: 7px;
  height: 1px;
  background-color: rgb(216, 216, 216);
  margin: 0 10px;
  box-sizing: content-box;
}

.underline {
  display: flex;
  flex: 1;
  font-size: 13px;
  border-bottom: 1px solid rgb(136, 136, 136);
}

/* 页面样式 */
.layout-sider {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
}

.layout-sider-children {
  flex: 1;
  display: flex;
  overflow: auto;
  max-width: 100%;
  position: relative;
  flex-direction: column;
  background-color: rgb(255, 255, 255);
}

.side-menu-wrapper {
  margin-top: 20px;
  padding-left: 20px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(3, auto);
  grid-row-gap: 26px;
  box-sizing: border-box;
}

.side-menu-ztree {
  width: 100%;
  height: 100%;
  overflow: auto;
  box-sizing: border-box;
}

.menu-item {
  user-select: none;
}

.menu-item-cont {
  font-size: 14px;
  cursor: pointer;
}

.menu-item-cont .iconfont {
  margin-right: 5px;
}

.side-menu-secondary {
  padding-left: 26px;
  display: none;
  box-sizing: border-box;
}

.menu-item-view {
  display: inline-block;
  border-bottom: 1px solid transparent;
  margin-left: 5px;
}

.menu-item-view:hover {
  border-bottom-color:rgb(102, 102, 102);
}

.menu-opened .side-menu-secondary {
  display: block;
}

.side-menu {
  display: grid;
  margin-top: 25px;
  grid-template-rows: repeat(auto-fit, minmax(15px, 17px));
  grid-template-columns: 1fr;
  grid-row-gap: 25px;
}

.menu-item-secondary.draging {
  background-color: rgba(0, 127, 191, .3);
}

.menu-item-secondary .iconfont {
  font-size: 13px;
}

.branch-info {
  width: 100%;
  min-height: 40px;
  box-sizing: border-box;
  padding: 0 10px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background-color: rgb(255, 255, 255);
  /*border-bottom: 1px solid rgb(231, 231, 231);*/
}

.branch-info p {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  font-size: 16px;
}

.main-content {
  display: flex;
  flex-direction: column;
  /*user-select: none;*/
  overflow: hidden;
}

.layout-main {
  height: 100%;
  overflow: auto;
  padding: 10px 26px;
  background-color: rgb(255, 255, 255);
  display: flex;
  flex-direction: column;
}

.layout-main .beds-describe {
  margin-top: 16px;
}

.beds-describe p {
  font-size: 18px;
  margin-right: 25px;
}

.beds-describe-text {
  font-size: 14px;
}

.nurse-grade-cont:first-child .checkbox_view {
  margin-right: 16px;
}

.nurse_grade {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 3fr 1fr;
  align-items: center;
  margin-top: 26px;
}

.nurse-grade-cont {
  justify-self: start;
  display: flex;
  align-items: center;
}

.nurse_grade .nurse-grade-cont:last-child {
  justify-self: end;
}

.bunk-info-view {
  position: relative;
}

.layout-bunk {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(220px, 221px));
  grid-gap: 26px 35px;
  position: relative;
  margin-top: 26px;
}

.bunk-item,
.temporary-item {
  border-radius: 10px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 1.5px 8px 0 rgba(0, 0, 0, 0.13);
  width: 220px;
  height: 310px;
  overflow: hidden;
  display: grid;
  grid-template-rows: 1fr;
}

.bunk-item-cont {
  padding: 10px 15px;
  position: relative;
}

.medical-fee {
  position: absolute;
  top: 0;
  right: 0;
  width: 24px;
  height: 24px;
  font-size: 13px;
  text-align: center;
  line-height: 24px;
  color: rgb(255, 255, 255);
}

.bunk-patient-info {
  border-bottom: 1px dashed rgb(231, 231, 231);
}

.basic-info {
  font-size: 18px;
  margin: 0;
  font-weight: bold;
  display: inline-block;
}

.patient-sex-age {
  font-size: 13px;
  font-weight: normal;
  margin-left: 6.5px;
}

.bed-no-view {
  display: flex;
  margin-top: 20px;
  margin-bottom: 12px;
}

.bunk_No {
  border-radius: 4px;
  padding: 2px 5px;
  font-size: 13px;
  display: inline-block;
  color: rgb(255, 255, 255);
  text-align: center;
  white-space: nowrap;
}

.bunk_No_lg {
  font-size: 18px;
  margin: 0;
  font-weight: bold;
  display: inline-block;
  color: rgb(1, 1, 1);
  padding: 0;
}

.disease-name {
  display: inline-block;
  margin-left: 6.5px;
  font-size: 13px;
  max-width: 110.5px;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.in-hospital {
  margin: 12px 0;
  display: grid;
  grid-template-rows: repeat(auto-fit, minmax(auto, 13px));
  grid-row-gap: 17px;
}

.in-hospital p {
  font-size: 13px;
}

.info-tips {
  display: grid;
  grid-template-columns: 5fr 1fr;
  grid-auto-rows: minmax(34px, auto);
  align-items: center;
  margin-top: 8px;
}

.tips-text {
  padding: 4px 10px;
  font-size: 13px;
  border: 1px solid rgb(221, 221, 221);
  border-radius: 3px;
}

.icon-more {
  font-size: 20px;
  display: inline-block;
  width: 34px;
  height: 34px;
  border-radius: 50%;
  text-align: center;
  line-height: 34px;
  cursor: pointer;
  user-select: none;
}

.icon-more:hover {
  background-color: rgb(239, 239, 239);
}

.temporary-bed {
  display: grid;
  grid-template-rows: 1fr;
  grid-template-columns: 1fr;
  place-items: center;
  height: 100%;
}

.temporary-bed .iconfont {
  font-size: 62px;
  color: rgb(221, 221, 221);
}

.unallocated-bed {
  display: flex;
  justify-content: center;
  flex-direction: column;
}

.unallocated-bed-No {
  text-align: center;
  margin-top: -20px;
}

.unallocated-bed-No h4 {
  font-weight: bold;
  font-size: 20px;
}

.unallocated-bed-icon {
  text-align: center;
  margin-top: 22px;
  margin-bottom: 36px;
}

.unallocated-bed-icon .iconfont {
  color: rgb(216, 216, 216);
  font-size: 43px;
}

.operating-hints {
  font-size: 16px;
  color: rgb(136, 136, 136);
  text-align: center;
}

.bedmenu {
  position: fixed;
  width: auto;
  height: auto;
  z-index: 100;
  display: none;
}

.bedmenu-cont {
  position: relative;
  padding: 20px;
  background-color: rgba(51, 51, 51, .851);
  border-radius: 6px;
}

.triangle {
  width: 0;
  height: 0;
  transform: rotateZ(45deg);
  position: absolute;
  left: -1px;
  border-style: solid;
  border-width: 10px 10px 10px 0;
  border-color: transparent transparent rgba(51, 51, 51, .8);
}

.bedmenu-list {
  display: grid;
  grid-template-columns: 1fr;
  grid-row-gap: 18px;
}

.bedmenu-item,
.bedmenu-item:visited,
.bedmenu-item:active,
.bedmenu-item:focus,
.bedmenu-item:hover {
  font-size: 14px;
  color: rgb(255, 255, 255);
  text-align: left;
}

.bedmenu-item:hover {
  text-decoration: underline;
}

.table {
  border: 1px solid rgb(231, 231, 231);
  margin-bottom: 0;
}

.table td {
  position: relative;
}

.bootstrap-table {
  font-size: 13px;
  width: 100%;
}

.table label {
  padding: 2px 4px;
  font-weight: 500;
  font-size: 12px;
}

/*.label-info {*/
  /*background-color: rgb(17, 134, 242);*/
/*}*/

.layui-layer-btn a {
  font-size: 13px;
}

.modal-open .modal {
  overflow: auto;
}

.modal-wide {
  width: 99%;
  min-width: 850px;
  /*max-width: 1300px;*/
}

.modal-middle {
  width: 70%;
}
.modal-middles {
  width: 30%;
}

.modal-body {
  /*max-height: 620px;*/
  overflow: auto;
}

.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

.columns-3 {
  grid-template-columns: repeat(3, 1fr);
}

.columns-4 {
  grid-template-columns: repeat(4, 1fr);
}

.columns-5 {
  grid-template-columns: repeat(5, 1fr);
}

.columns-6 {
  grid-template-columns: repeat(6, 1fr);
}

.columns-7 {
    grid-template-columns: repeat(7, 1fr);
}

.columns-8 {
    grid-template-columns: repeat(8, 1fr);
}

.inline-block {
  display: inline-block;
}

/* 出入院 */
.admitted .wrapper-content {
  grid-template-columns: 255px 1fr;
}

.tabs-container .nav-tabs {
  border-bottom: 0;
}

.nav-tabs > li > a,
.nav-tabs > li > a:hover,
.nav-tabs > li > a:focus {
  border-bottom: 0;
  margin-right: 0;
  font-size: 13px;
}

.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus,
.nav-tabs > li.active > a {
  background: rgb(255, 255, 255);
  border-bottom: 0;
}

.tab-content {
  border: 1px solid rgb(231, 231, 231);
}

.filtrate_view {
  display: flex;
  align-items: center;
  box-sizing: border-box;
}

.filtrate_view select.form-control {
  width: auto;
}

.filtrate_view > * {
  margin-right: 10px;
}

.admitted-tab-pane.active {
  display: flex;
  flex-direction: column;
  flex: 1;
  height: 100%;
  overflow: auto;
  position: relative;
  padding: 10px;
}

.admitted-tab-pane .pagination-body {
  display: flex;
  flex-direction: row;
  justify-content: flex-start;
  align-items: center;
  padding: 0 22px;
}

.table-body {
  overflow: auto;
  display: flex;
  flex: 1;
  flex-direction: column;
  padding: 0 10px;
  box-sizing: border-box;
}

.table thead {
  background-color: rgb(242, 243, 245);
}

.table thead > tr > th {
  border-bottom: 0;
  color: rgb(136, 136, 136);
}

.table td {
  position: relative;
}

.table-body tbody tr:hover {
  cursor: pointer;
}

.pagination-body .btn {
  margin-right: 12px;
}

.main-content .modal-footer {
  height: 74px;
  background-color: rgb(255, 255, 255);
}

.admitted .layout-main {
  flex: 1;
  padding: 15px;
  overflow: auto;
  align-items: initial;
  height: 100%;
}

.admitted .operation {
  padding-bottom: 15px;
  height: 32px;
  box-sizing: content-box;
}

.operation .btn {
  margin-left: 16px;
}

.btn-default[disabled]:hover {
  color: unset;
}

.admitted-patient-info {
  width: 100%;
  height: 50px;
  display: flex;
  padding: 10px 20px;
  border-radius: 4px;
  align-items: center;
  box-sizing: border-box;
  color: rgb(48, 48, 48);
  justify-content: space-between;
  box-shadow: 0 0 10px rgba(0, 0, 0, .15);
}

.admitted-patient-info.large {
  height: 70px;
}

.admitted-patient-info img {
  width: auto;
  max-height: 35px;
  border-radius: 50%;
  margin-right: 24px;
}

.admitted-patient-info.large img {
  max-height: 50px;
}

.admitted-patient-info h2 {
  margin: 0;
  font-size: 16px;
  font-weight: bold;
}

.admitted-patient-info span {
  margin-top: 4px;
  font-size: 13px;
}

.admitted-patient-info.radius-btn .btn {
  outline: none;
  border-radius: 30px;
  color: rgb(10, 191, 161);
  border-color: rgba(10, 191, 161, .3);
}

.unselect-patient {
  background: url('../../admin/img/unselectes-patient-bg.png') no-repeat right bottom;
  background-color: rgba(0, 191, 175, .4);
  justify-content: center;
}

.form-body {
  display: grid;
  width: 100%;
  grid-template-rows: auto;
  grid-gap: 20px 26px;
}

.form-item {
  position: relative;
}

.form-item label {
  font-size: 13px;
  font-weight: 600;
  white-space: nowrap;
  color: rgb(136, 136, 136);
}

.form-control {
  border-radius: 3px;
}

.merge-left-two {
  grid-column: 1 / 3;
}

.merge-right-two {
  grid-column: 3 / 5;
}

.merge-four {
  grid-column: 1 / 5;
}

.merge-two-five{
  grid-column: 2 / 5;
}

.columns-3 .merge-right-two {
  grid-column: 2 / 4;
}

.merge-all {
  grid-column: 1 / 5;
}

.columns-3 .merge-all {
  grid-column: 1 / 4;
}

.city-choose {
  display: flex;
  align-items: center;
}

.addmitted-form-title {
  margin: 26px 0;
  font-size: 16px;
}

.addmitted-form-title .tip-info {
  font-size: 13px;
  color: rgb(136, 136, 136);
  cursor: auto;
}

.admitted .form-body {
  padding: 6px 12px;
}

.new-bed-info {
  margin-top: 20px;
}

.form-hr {
  grid-column: 1 / 5;
  margin: 0;
  border-style: dashed;
}

.cost-briefing {
  font-size: 13px;
  color: rgb(34, 34, 34);
  margin-left: 26px;
}

.cost-info-form {
  width: 100%;
  align-items: flex-start;
  margin-top: 20px;
  background-color: rgb(255, 255, 255);
  padding: 11px 26px;
  position: relative;
}

.notch {
  width: 0;
  height: 0;
  border: 11px solid;
  border-color: transparent transparent rgb(245, 247, 247) rgb(245, 247, 247);
  border-radius: 50%;
  position: absolute;
}

.notch-top-right {
  transform: rotateZ(-45deg) translateY(75%);
  top: -23px;
  right: 415px;
}

.notch-bottom-right {
  transform: rotateZ(135deg) translateY(-75%);
  bottom: 0;
  right: 415px;
}

.expense-reports {
  display: flex;
  flex: 1;
  padding-right: 24px;
  margin-right: 24px;
  border-right: 1px dashed rgb(231, 231, 231);
}

.admitted .branch-info .btn-sm {
  padding: 2px 6px;
}

/* .expense-reports td .btn-sm {
  color: rgb(61, 137, 215);
  border: 1px solid rgb(61, 137, 215);
} */

.expense-form {
  display: grid;
  width: 364px;
  grid-template-columns: 1fr;
  grid-template-rows: auto;
  grid-row-gap: 16px;
}

.expense-form .form-item {
  display: grid;
  grid-template-columns: 80px 1fr;
  align-items: center;
}

.expense-form .form-item label {
  margin: 0 8px;
}

.expense-footer {
  padding: 26px 0;
  width: 100%;
  background-color: rgb(255, 255, 255);
}

.expense-footer .btn {
  margin-left: 16px;
}

#charge-printing-modal .layout-main {
  padding: 30px 35px;
}

.amount-info {
  margin-top: 30px;
  text-align: right;
  font-size: 15px;
  color: rgb(34, 34, 34);
}

.amount-info span:not(last-child) {
  margin-right: 30px;
}

#bed-change-modal .addmitted-form-title {
  margin-top: 0;
}

#bed-change-modal .primary_bg {
  background-color: rgba(0, 191, 175, .1);
  border-color: transparent;
}

#bed-change-modal .form-body:last-child {
  margin-top: 20px;
}

.inhos_apply .layout-main {
  display: flex;
  flex: 1;
  overflow: auto;
}

.parting-line {
  width: 0;
  height: 100%;
  border-left: 1px dashed rgb(216, 216, 216);
  position: absolute;
  top: 0;
  right: 413px;
}

.receipts-layout {
  flex: 1;
  flex-direction: column;
  align-items: center;
  overflow: auto;
}

.receipts-body {
  width: 915px;
  min-height: 1295px;
  border: 4px solid rgba(0, 191, 175, 0.25);
  margin-top: 15px;
  display: none;
  flex-direction: column;
  align-items: center;
  border-radius: 5px;
}

.receipts-body.active {
  display: initial;
}

.receipts-hosp-name {
  font-weight: 700;
  margin-top: 0;
  font-size: 32px;
}

.receipts-title {
  font-size: 20px;
  font-weight: normal;
  margin-top: 0;
  color: rgb(102, 102, 102);
}

.receipts-patient-info {
  display: grid;
  grid-gap: 30px 100px;
  width: 100%;
  margin-top: 38px;
  margin-bottom: 30px;
}

.receipts-patient-info .form-item {
  display: flex;
  align-items: center;
}

.receipts-body .bootstrap-table {
  width: 100%;
  margin-bottom: 26px;
}

.receipts-body .costTotal {
  width: 100%;
  font-size: 15px;
}

.retrieval-condition {
  width: 100%;
}

.retrieval-condition > .flexbox {
  margin: 28px 0;
}

.retrieval-left {
  display: flex;
  flex: 1;
}

.retrieval-condition input.form-control {
  max-width: 135px;
  font-size: 13px;
}

.retrieval-condition select.form-control {
  width: auto;
}

.review-advice .form-control {
  width: auto;
  max-width: 114px;
}

.review-advice .time-control {
  max-width: 140px;
  padding: 6px 8px;
}

.retrieval-left > *,
.retrieval-left > .select2-container,
.retrieval-right > .select2-container,
.retrieval-right > * {
  margin-right: 15px;
}

.retrieval-left > *:last-child,
.retrieval-right > *:last-child {
  margin-right: 0;
}

.chosen-container {
  min-width: 80px;
}

.additional-form .retrieval-condition > .flexbox {
  margin: 0;
  margin-bottom: 15px;
}

.return-medicine-form > div {
  flex: 7;
  display: flex;
  margin-left: 13px;
}

.return-medicine-form label {
  flex: 1;
  display: flex;
  font-size: 13px;
  margin-bottom: 0;
  font-weight: 400;
  justify-content: flex-end;
}

.return-medicine-form .form-control {
  width: 93%;
}

#charge-tabs .btn {
  padding: 4px 12px;
}

#chosen-show {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
}

.wrapper .small-content {
  grid-template-columns: 268px 1fr;
}

.Medicine_table {
  width: auto;
  height: 100%;
  overflow: auto;
  padding: 5px 10px;
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #cccccc;
}

.Medicine_table .fixed-table-container {
  border: none;
  height: 100%;
  max-height: 250px;
  overflow: auto;
}

.Medicine_table .bootstrap-table tr {
  cursor: pointer;
  background-color: rgb(255, 255, 255);
  border-bottom: 1px solid rgb(242, 243, 245);
}

.Medicine_table .bootstrap-table .fixed-table-body {
  position: relative;
}

.Medicine_table .bootstrap-table td,
.Medicine_table .bootstrap-table th {
  border: none;
}

.Medicine_table .bootstrap-table .fixed-table-body .fa-search {
  position: absolute;
  right: 3.5%;
  top: 20px;
  z-index: 3;
}

.Medicine_table .fixed-table-toolbar .pull-right {
  width: 100%;
  background-color: rgb(243, 243, 245);
}

.Medicine_table .bootstrap-table .pull-right input {
  background-color: transparent;
  border: none;
}


.gridbox {
  display: grid;
}

/* 数字输入框不显示箭头 */
input::-webkit-outer-spin-button,
input::-webkit-inner-spin-button {
  -webkit-appearance: none;
}

input[type="number"] {
  -moz-appearance: textfield;
}

/* 护理记录 */
.nuising-record-layout {
  display: flex;
  user-select: none;
  border: 1px solid rgb(216, 216, 216);
}

.grid-head-row {
  width: 100px;
  display: grid;
  grid-template-columns: 1fr;
  grid-template-rows: repeat(18, 40px);
  border-right: 1px solid rgb(216, 216, 216);
}

.uising-record-form {
  display: flex;
  flex: 1;
  overflow: hidden;
  position: relative;
}

.grid-row {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(239px, 240px));
  grid-template-rows: repeat(18, 40px);
  border-left: 1px solid rgb(216, 216, 216);
}

.grid-tbody {
  width: auto;
  display: flex;
  position: absolute;
  right: 0;
  transform: translateX(0);
}

.row-less-width {
  position: relative;
}

.row-less-width .grid-row:last-child {
  border-right: 1px solid rgb(216, 216, 216);
}

.grid-tbody .grid-row {
  min-width: 239px;
}

.grid-tbody .grid-row:first-child {
  border-left: none;
}

.grid-tbody .arrow {
  position: absolute;
  top: 20px;
  margin: 0;
  cursor: pointer;
  transform: translateY(-50%);
  color: rgb(194, 240, 236);
}

#previous-page {
  left: 13px;
}

#next-page {
  right: 13px;
}

.grid-head-row > div,
.grid-row > div:first-child {
  background-color: rgb(242, 251, 251);
}

.grid-row > div {
  display: flex;
  font-size: 12px;
  color: rgb(34, 34, 34);
  border-bottom: 1px solid rgb(216, 216, 216);
  justify-content: center;
  align-items: center;
}

.grid-row > div:last-child {
  border-bottom: none;
}

.grid-head-row > div {
  display: flex;
  justify-content: center;
  align-items: center;
  color: rgb(136, 136, 136);
}

.grid-row input,
.grid-row select {
  width: 100%;
  height: 100%;
  border: none;
  outline: none;
  text-align: center;
  padding: 0 1px;
}

.uising-record-form .input-group input,
.uising-record-form .input-group select {
  width: calc(100% / 6);
  border-right: 1px solid rgb(216, 216, 216);
}

.uising-record-form .input-group select {
  text-align-last:center;
}

.uising-record-form .input-group input:last-child,
.uising-record-form .input-group select:last-child {
  border: none;
}

.grid-row select {
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
}

.grid-row-thead-text {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
  background-color: rgb(242, 243, 245);
  color: rgb(34, 34, 34);
  border-radius: 3px;
}

.add-new-record {
  cursor: pointer;
}

.diagnosis_view {
  display: flex;
  align-items: center;
  height: auto;
  min-height: 35px;
  border: 1px solid rgb(216, 216, 216);
  border-radius: 3px;
  flex-wrap: wrap;
}

.diagnosis .focus_choose {
  top: 34px;
}

.diagnosis .choose_view {
  max-height: 200px;
  overflow-y: auto;
  margin: 0;
  padding: 0;
}

#diagnosis {
  width: auto;
  border: none;
}

.focus_choose {
  width: 100%;
}

.bingren_zhusu .focus_choose {
  width: calc(100% - 15px);
  position: absolute;
  top: 30px;
  left: 0;
  height: auto;
  border: solid 1px #ddd;
  box-shadow: 1px 0 1px #ccc;
  background-color: #fff;
  z-index: 77;
  display: none;
  padding: 0 10px;
}

.focus_choose .common_symptoms {
  display: flex;
  padding: 10px 25px 10px 0;
  border-top: 1px dashed rgb(136, 136, 136);
}

.focus_choose .choose_view {
  width: 100%;
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}

.focus_choose .choose_close {
  width: 100%;
  height: auto;
  text-align: right;
  padding: 5px 0;
}

.input_tags {
  padding: 0 20px;
  background: rgb(0, 191, 175);
  border-radius: 2px;
  height: 24px;
  color: white;
  text-align: left;
  line-height: 24px;
  text-indent: 0;
  position: relative;
  margin: 3px 0 0 5px;
  width: auto;
  font-size: 13px;
}

.input_tags .tag_close {
  /*position: absolute;*/
  font-weight: bold;
  color: white;
  text-decoration: none;
  font-size: 18px;
  cursor: pointer;
  line-height: 23px;
  width: 22px;
  text-align: center;
}

.input_tags.disabled {
  background-color: rgba(0, 191, 175, .3);
  color: rgb(0, 191, 175);
}

.input_tags.disabled .tag_close {
  display: none;
}

/* 开医嘱 */
#doctor-advice-modal-body {
  max-height: 680px;
  /* display: flex;
  flex-direction: column; */
}

#doctor-advice-modal-body .admitted-patient-info {
  border-bottom-left-radius: 0;
  border-bottom-right-radius: 0;
}

/*#doctor-advice-modal-body .table {
  min-width: 1200px;
} */

.patient-account {
  height: 70px;
  border-radius: 10px;
  border-top-left-radius: 0;
  border-top-right-radius: 0;
  border: 2px solid rgba(0, 191, 175, .25);
  border-top: 0;
  box-sizing: border-box;
  padding-left: 20px;
}

.patient-account p {
  font-size: 14px;
  margin-right: 84px;
}

.select-bedNo {
  width: 50px;
  background: none;
  border: 1px solid rgb(255, 255, 255);
  padding: 4px;
  outline: none;
  margin-left: 10px;
}

.select-bedNo option {
  background-color: rgb(0, 191, 175);
}

.advice-btn-group {
  margin: 22px 0;
}

.advice-btn-group .btn {
  margin-right: 10px;
  font-size: 13px;
}

.advice-btn-group.m-b-xxs {
  margin-bottom: 1px;
}

.advice-data {
  /*overflow: auto;*/
  max-height:500px;
  margin-bottom: 16px;
  /*user-select: none;*/
  align-items: flex-start;
}

.advice-data td {
  position: relative;
}

.advice-data .text-info .iconfont {
  font-size: 13px;
}

.connector {
  display: flex;
  width: 7px;
  height: 60%;
  align-items: center;
  border-width: 2px;
  border-style: solid none solid solid;
  border-color: rgb(136, 136, 136);
  border-radius: 8px 0 0 8px;
  box-sizing: border-box;
  position: absolute;
}

.connector-start {
  border-bottom-left-radius: 0;
  border-bottom: none;
  bottom: 0;
}

.connector-middle {
  top: 0;
  height: 100%;
  border-top: none;
  border-bottom: none;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

.connector-middle::before {
  content: "";
  display: inline-block;
  width: 100%;
  height: 2px;
  background-color: rgb(136, 136, 136);
}

.connector-end {
  border-top-left-radius: 0;
  border-top: none;
  top: 0;
}

.add-advice-view {
  border: 1px solid rgb(231, 231, 231);
  padding: 0 13px;
}

.layout-main .add-advice-view {
  padding: 15px;
}

.add-advice-type .iconfont {
  font-size: 10px;
  font-weight: 900;
}

.add-advice-form {
  flex: 1;
  align-items: flex-start;
  padding-bottom: 30px;
}

.layout-main .add-advice-form {
  padding: 0;
}

.add-advice-form .form-control {
  height: 32px;
}

.add-advice-form .select-xs {
  width: auto;
  padding: 1px 2px;
}

.advice-form-body {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  grid-template-rows: auto;
  grid-gap: 20px 16px;
}

.form-footer {
  display: grid;
  grid-template-rows: repeat(3, 32px);
  grid-row-gap: 22px;
  padding: 0 16px;
}

.layout-main .form-footer {
  padding-right: 0;
}

.input-label {
  white-space: nowrap;
}

.input-dropdown-group {
  display: flex;
}

.input-dropdown-group input {
  flex: 2;
  min-width: 20px;
  padding: 2px 4px;
  border-right: 0;
  border-top-right-radius: 0;
  border-bottom-right-radius: 0;
}

.input-dropdown-group select {
  width: auto;
  border-top-left-radius: 0;
  border-bottom-left-radius: 0;
}

/* 费用清单 */
.listing-patient-info {
  width: 100%;
}

.info-row {
  display: grid;
  width: 100%;
  grid-template-columns: repeat(5, 1fr);
  padding: 6px 0;
  margin-bottom: 20px;
  border-bottom: 1px solid rgb(34, 34, 34);
}

.info-row .merga-two {
  grid-column: 3 / 5;
}

.info-row .form-item:last-child p {
  text-align: end;
}

.listing-patient-info .form-item {
  min-width: 20%;
}

.no-branch-sider.no-branch-sider {
  grid-template-rows: 1fr;
}

.receipts-footer {
  display: grid;
  width: 100%;
  grid-column-gap: 100px;
}

.search-form-view {
  margin-bottom: 26px;
}

.search-form-view > * {
  width: auto;
  margin-right: 10px;
}

.pharmacy-main .modal-footer {
  border: none;
}

/* 医嘱弹框 */
#adviceForm .form-item .bootstrap-table {
  display: none;
  position: absolute;
  top: 30px;
  right: 0;
  z-index: 9;
  font-size: 11px;
  background-color: rgb(255, 255, 255);
  box-shadow: 0 2px 1px 1px rgb(216, 216, 216);
}

.bootstrap-table .radio_input + label,
.bootstrap-table .checkbox_input + label {
  font-size: 11px;
  white-space: nowrap;
}

#adviceForm .form-item .pagination-detail {
  display: none;
}

#adviceForm .form-item .pull-right.pagination {
  margin: 0;
  margin-top: 10px;
  margin-right: 8px;
}

#adviceForm .form-control {
  padding: 6px;
  font-size: 13px;
}

.pull-right.pagination .pagination {
  margin: 0;
}

.fixed-table-container thead th .th-inner {
  line-height: 1.42857;
}

.modal-footer.text-center {
  text-align: center;
}

.application-modal {
  z-index: 2051 !important;
}

.application-modal .modal-dialog {
  width: 777px;
}

.application-modal .modal-body {
  padding: 20px 15px;
  max-height: unset;
}

.application-modal .modal-footer {
  border: none;
  padding-top: 0;
}

.application-form {
  width: 100%;
  height: 100%;
  border: 2px solid rgb(34, 34, 34);
  border-radius: 3px;
  padding: 18px;
}

.application-form .form-body {
  grid-gap: 26px 0;
  margin-bottom: 14px;
}

.checkbox_view.row-reverse label,
.checkbox_view.row-reverse label {
  padding-left: 0;
  padding-right: 7px;
}

.form-subtitle {
  font-size: 18px;
  color: rgb(85, 85, 85);
}

.order-info {
  padding: 6px 0;
  border-bottom: 2px solid rgb(1, 1, 1);
  margin-bottom: 14px;
}

.application-name > div:first-child {
  flex: 3;
}

.application-name > div:last-child {
  flex: 2;
}

.application-info {
  height: 480px;
  padding: 28px 0;
  border-top: 1px solid rgb(34, 34, 34);
  border-bottom: 1px solid rgb(34, 34, 34);
}

.application-info .info-item {
  margin-bottom: 10px;
}

.application-form .item-title {
  white-space: nowrap;
}

.application-textarea {
  width: 100%;
  font-size: 13px;
  border: none;
  box-sizing: border-box;
  outline: none;
  resize: none;
}

.previous-day,
.next-day {
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  width: 16%;
  min-width: 20px;
  display: flex;
  justify-content: center;
  align-items: center;
  cursor: pointer;
  font-size: 18px;
}

.next-day {
  left: unset;
  right: 0;
}

.previous-day[disabled],
.next-day[disabled] {
    color: rgb(216, 216, 216)
}

.transfusion .filtrate_view > * {
  margin: 0;
  position: relative;
}

.layout-main + .modal-footer {
  padding: 15px 26px;
}

.transfusion {
  /*padding: 0 10px;*/
}

.transfusion > .exampleToolbar {
  height: 0;
  z-index: 9;
  transform: translateY(10px);
}

.wt100 {
  width: 100%;
}

.hg100 {
  height: 100%;
}

.p-none {
  padding: 0;
}

.add-supply-view {
  border-top: 1px solid rgb(187, 187, 187);
  background-color: rgb(255, 255, 255);
  padding: 0 26px;
}

.supply-form-total {
  grid-column: 4 / 6;
}

.layout-main.hospital-list-main {
  padding: 0 0;
}

.doctor-advice-bind-info {
  width: 100%;
  height: 270px;
  display: none;
  overflow: auto;
  border-top: 1px solid rgb(0, 191, 175);
  background-color: rgba(0, 191, 175, .12);
}

.doctor-advice-bind-info .table {
  background-color: rgb(255, 255, 255);
}

#in-hospital .filtrate_view {
  min-width: 105px;
  padding-left: 0;
}

#advice-bind-row .form-control {
  height: auto;
  padding: 1px 2px;
}

#advice-bind-row input[type='number'] {
  max-width: 50px;
}

#advice-bind-row .select2-container .select2-selection--single {
  height: 24px;
}

#advice-bind-row .select2-container {
  min-width: 320px;
}

.badge-count {
  width: 5px;
  height: 5px;
  margin-left: 2px;
  border-radius: 50%;
  display: inline-block;
  background-color: red;
}

#exModal .modal-dialog {
  width: 148mm;
}

#exModal {
  z-index: 2051 !important;
}

.bunk-info-container {
  display: none;
  position: relative;
  visibility: hidden;
}

.bunk-info-container.active {
  display: initial;
  visibility: initial;
}

.bunk-info-container:last-child .nurse_grade {
  margin-top: 0;
}

.bunk-info-container:last-child .bootstrap-table {
  margin-top: 16px;
}
.advice-bunk-info {
  padding-top: 5px;
}

.select2-500 {
  width: 500px !important;
}

.select2-800 {
  width: auto !important;
  min-width: 290px;
}

.select2-results-item li.name {
  flex: 1;
  display: flex;
  min-width: 200px;
}

.hospital-list-main table > tbody > tr > td {
  height: unset;
}

.print-content .border-bottom {
  border-color: rgb(1, 1, 1) !important;
}

/* 此元素会作为块级表格来显示（类似 <table>），表格前后带有换行符 */
.print-content .table {
  width: 100%;
  display: table;
  border: none;
  border-collapse: collapse;
}
/* 此元素会作为一个或多个行的分组来显示（类似 <tbody>） */
.table-row-group {
  display: table-row-group;
}
/* 此元素会作为一个表格行显示（类似 <tr>） */
.table-row {
  display: table-row;
}
/* 此元素会作为一个表格单元格显示（类似 <td> 和 <th>） */
.table-cell {
  display: table-cell;
  padding: 3px 1px;
  vertical-align: middle;
}

.select2-table-title {
  margin-bottom: 0;
  padding: 6px 6px 6px 6px;
  border-bottom: 1px solid rgb(170, 170, 170);
}

.layout-sider-children .bedmenu {
  left: 260px;
}

.table > tbody > tr.active,
.table > tbody > tr.active:hover,
.table > tbody > tr.active > td,
.table > tbody > tr.active:hover > td
{
  background-color: #f5f5f5;
}

#bunk-list-table tbody > tr.active_tr > td:not(:first-child) {
  /*background-color: #d8f0ee;*/
  background-color: #f5f5f5;
}

.positive {
  position: relative;
}

.posilute {
  position: absolute;
}

.fixed-table-toolbar .columns {
  /*margin-left: 20px;*/
}

.nuising-record-title .skyblue_bg,
.thermogram {
  padding: 4px 9px;
  display: inline-block;
  color: rgb(255, 255, 255);
  background-color: rgb(37, 143, 241);
}

.thermogram{
  margin-left: 15px;
}

.merge-two-four {
  grid-column: 2 / 4;
}

.merge-four-six {
  grid-column: 4 / 6;
}

.merge-all {
  grid-column: 1 / 4;
}

.columns-4 .merge-all {
  grid-column: 1 / 5;
}

.columns-5 .merge-all {
  grid-column: 1 / 6;
}

.columns-6 .merge-all {
  grid-column: 1 / 7;
}

#nuising-record-form {
  padding: 15px 0 20px 0;
}

#patientForm .form-item > label {
  min-width: 90px;
}

.mini-form .form-body {
  grid-gap: 16px 10px;
}

.mini-form .form-item > label {
  min-width: 80px;
  margin-bottom: 0;
  text-align: right;
  color: rgb(102, 102, 102);
}

#patientForm .diagnosis_table {
  position: absolute;
  display: none;
  left: 90px;
  top: 34px;
  height: auto;
  z-index: 9;
}

#herbForm .diagnosis_table {
    position: absolute;
    display: none;
    left: 39px;
    top: 34px;
    height: auto;
    z-index: 9;
    width: 502px;
}

.Medicine_table .fixed-table-container {
  border: none;
  height: 100%;
  max-height: 250px;
  overflow: auto;
}

.record-btn-group {
  padding: 15px 0;
  border-top: 1px dashed rgb(231, 231, 231);
}

.record-btn-group > .btn {
  font-size: 13px;
  padding: 5px 10px;
  margin-left: 15px;
}

.record-btn-group > .btn:first-child {
  margin: 0;
}

.nuising-record-table .checkbox_input::before,
.blood-record-table .checkbox_input::before {
  width: 14px;
  height: 14px;
  border-color: rgb(136, 136, 136);
}

.nuising-record-table,
.blood-record-table {
  overflow-x: auto;
}

.nuising-record-table .checkbox_view,
.blood-record-table .checkbox_view {
  justify-content: center;
}

.nuising-record-table th,
.blood-record-table th {
  padding: 7px !important;
  text-align: center;
  white-space: nowrap;
  border-right: 1px solid rgb(221, 221, 221);
}

/* .nuising-record-tbody {
  background-color: rgb(204, 242, 239);
} */

.nuising-record-tbody td,
.blood-record-tbody td {
  padding: 0 !important;
  height: 30px;
  text-align: center;
}

.nuising-record-tbody .form-control,
.blood-record-tbody .form-control {
  border-radius: 0;
  padding: 3px;
  background-color: transparent;
}

.nuising-record-tbody select.form-control,
.blood-record-tbody select.form-control{
  width: auto;
  min-width: 100%;
  appearance: none;
  -webkit-appearance: none;
  -moz-appearance: none;
  text-align-last: center;
}
.nuising-ctrl span[disabled] {
  color: rgb(172, 172, 172);
}

.beds-tip-info {
  top: 35px;
  width: auto;
  position: absolute;
}

.beds-tip-info .flexbox > div {
  padding: 4px 5px 3px 5px;
}

.beds-tip-info .flexbox > div:nth-child(odd) {
  color: rgb(255, 255, 255);
}

#tiWenTuModal .modal-dialog {
  width: 1010px;
}

#tiWenTu-print.print-container {
  width: 950px;
  border-radius: 3px;
  background-color: rgb(255, 255, 255);
  border: 3px solid rgba(0, 191, 175, .3);
}

#tiWenTu-print thead {
  background: none;
}

#tiWenTu-print .print-header + .table td,
#tiWenTu-print .print-header + .table th {
  padding: 0;
  line-height: 1.7;
  border-top: none;
}

#tiWenTu-print .table.fever-chart {
  line-height: 2;
  font-size: 12px;
  border-right: 1px solid rgb(109, 109, 109);
  border-bottom: 1px solid rgb(64, 64, 64);
}

#tiWenTu-print .table.fever-chart th,
#tiWenTu-print .table.fever-chart td {
  line-height: 1.7;
  font-weight: normal;
  width: 12.5%;
  padding: 0;
  text-align: center;
  border-left: 1px solid rgb(109, 109, 109);
  border-top: 1px solid rgb(64, 64, 64);
}

#tiWenTu-print .table.fever-chart th {
  color: unset;
}

#tiWenTu-print .table.scale-table td {
  border: none;
}

#tiWenTu-print .table.scale-table tr td:first-child {
  border-left: none;
}

.time-table li {
  line-height: 1;
}

.canvas-container #main {
  width: 770px;
}

#tiWenTu-print .table.fever-chart td.canvas-td {
  border-left: none;
}

#tiWenTu-print .hosp-date {
  top: 17%;
  left: 113px;
}

#tiWenTu-print .out-hospital-date {
  left: unset;
  right: 5px;
}

.change-animal-heat-date {
  width: 111px;
  right: 0;
  bottom: 0;
  text-align: center;
  position: absolute;
  border: 1px solid rgb(109, 109, 109);
  border-top-color: rgb(1, 1, 1);
  border-bottom: 0;
}

@media print {
  #tiWenTu-print {
    border: none !important;
  }

  .change-animal-heat-date {
    display: none;
  }

  html, html > body {
    display: initial;
    line-height: unset;
    height: unset !important;
  }
}
.invoice-container {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  background-color: rgb(242, 243, 245);
}

.invoice-content {
  flex: 1;
  overflow: auto;
  display: flex;
  flex-direction: column;
}

.invoice-content > .wt100 {
  min-height: 100%;
  padding: 12px 15px;
  background-color: rgb(255, 255, 255);
}

.invoice-content .tab-content {
  border: none;
}

.table-header {
  margin: 17px 0;
}

.table-header div {
  white-space: nowrap;
}

.table-header label {
  margin-bottom: 0;
}

.invoice-content .form-body {
  grid-gap: 16px
}

.invoice-info-table td {
  border-left: 1px solid rgb(231, 234, 236);
}

#invoiceTableDate {
  width: 140px;
}

.wt140 {
  width: 140px;
}

.inhosptial-info .table.border {
  border: 1px solid rgb(17, 17, 17);
}

.inhosptial-info .table.border td {
  border-left: 1px solid rgb(17, 17, 17);
  border-top: 1px solid rgb(17, 17, 17);
}

.inhosptial-info .table.border td:first-child {
  border-left: none;
}
.table-border td {
  border-top-color: rgb(1, 1, 1) !important;
}

.settlement-table td {
  border-top-color: rgb(1, 1, 1) !important;
}

.settlement-table {
  border-right: 1px solid rgb(1, 1, 1) !important;
  border-bottom: 1px solid rgb(1, 1, 1) !important;
}

.settlement-table td {
  border-top-color: rgb(1, 1, 1) !important;
}

.settlement-table {
  border-right: 1px solid rgb(1, 1, 1) !important;
  border-bottom: 1px solid rgb(1, 1, 1) !important;
}

.table-border td {
  border-top-color: rgb(1, 1, 1) !important;
}

.advice-examine-modal {
  height: auto;
  min-height: 620px;
  grid-template-columns: 147px 1fr;
}

.department-list {
  flex: 1;
  height: 100%;
  display: flex;
  overflow: auto;
  border-right: 1px solid rgb(231, 231, 231);
}

.department-list menu {
  width: 100%;
  height: auto;
  overflow: hidden;
}

.department-list .list-item {
  width: 100%;
  padding: 0 10px;
  margin-top: 4px;
  cursor: pointer;
}

.department-list .list-item:first-child {
  margin-top: 15px;
}

.department-icon {
  width: 19px;
  padding-left: 3px;
}

.department-icon .iconfont {
  font-size: 16px;
}

.department-title {
  flex: 1;
  padding: 6px;
  display: flex;
  overflow: hidden;
}

.department-title span {
  width: 100%;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.list-item.active > .flexbox {
  background-color: rgba(0, 191, 175, .12);
}

.list-item.active .department-title {
  color: rgb(0, 191, 175);
  border-right: 2px solid rgb(0, 191, 175);
}

.advice-examine-content {
  flex: 1;
  height: auto;
  display: flex;
  overflow: auto;
  min-height: 620px;
  flex-direction: column;
}

.advice-examine-table {
  flex: 1;
  overflow: hidden;
  padding: 0 16px 9px;
}

.advice-examine-table .checkbox_input,
.advice-examine-table .checkbox_input::before {
  width: 14px;
  height: 14px;
}

.advice-examine-table .checkbox_view label {
  color: rgb(64, 64, 64);
}

.advice-examine-table .posilute {
  top: 14px;
}

.advice-examine-table .bootstrap-table {
  height: 100%;
  display: flex;
  flex-direction: column;
}

.advice-examine-table .fixed-table-container {
  /*overflow: auto;*/
}

.settlement-table td {
  border-top-color: rgb(1, 1, 1) !important;
}

.settlement-table {
  border-right: 1px solid rgb(1, 1, 1) !important;
  border-bottom: 1px solid rgb(1, 1, 1) !important;
}

.scale-table > tbody > tr > td {
  vertical-align: initial;
}

#advice-examine-tbody tr td {
  padding: 2px 5px;
}

.bootstrap-table .fixed-table-container input[type=checkbox] {
    width: 15px;
    height: 15px;
    margin: 0;
    outline: none;
    position: relative;
}

.bootstrap-table .fixed-table-container input[type=checkbox]:before {
    content: '';
    width: 15px;
    height: 15px;
    line-height: 15px;
    border-radius: 1px;
    text-align: center;
    display: inline-block;
    position: absolute;
    background-color: #ffffff;
    border: 1px solid rgb(187, 187, 187);
}

.bootstrap-table .fixed-table-container input[type=checkbox]:checked:before {
    content: "\2714";
    font-size: 15px;
    color: rgb(0, 191, 175);
}

.bootstrap-table .fixed-table-container input[type=checkbox][disabled]:before {
    border-color: rgb(221, 221, 221);
    background-color: rgb(242, 243, 245);
}

#preview-container {
    height: 100%;
    overflow: auto;
    position: fixed;
    visibility: hidden;
}

.receipts-body.active .list-table {
    font-size: 13px;
}
.pink_bg {
    background-color: rgb(250, 141, 222);
}
.border-none {
    border: none;
}

.no-wrap {
    white-space: nowrap;
}

#nuising-record-detail-form .form-control{
    border: none;
}

#blood-record-detail-form .form-control{
    border: none;
    text-align: center;
}

.condition-obs {
  width: 15em;
}

.condition-obs-info {
    width: auto;
    max-width: 10em;
    height: auto;
    padding: 10px;
    word-break: break-all;
    position: absolute;
    border-radius: .5em;
    box-sizing: content-box;
    color: rgb(255, 255, 255);
    background-color: rgb(255, 166, 70);
}

#condition-obs-text {
  resize: vertical;
}

.in-patient-cost-total {
    border-right: 1px solid rgb(231, 231, 231);
    border-bottom: 1px solid rgb(231, 231, 231);
}

.in-patient-cost-total div {
    padding: 8px;
    border-left: 1px solid rgb(231, 231, 231);
    border-top: 1px solid rgb(231, 231, 231);
}

/*.bootstrap-table .table:not(.table-condensed)>tbody>tr>td {*/
    /*padding: 8px 1px;*/
/*}*/

.bookmarks {
    font-size: 12px;
    border-radius: 2px;
    padding: 1px 2px 4px;
    color: rgb(255, 255, 255);
    background-color: #00b3b3;
    background: linear-gradient(-30deg, transparent 7px, #00b3b3 0) right,
        linear-gradient(30deg, transparent 7px, #00b3b3 0) left;
}

.bookmarks:not(:last-child) {
    margin-right: 3px;
}

.bookmarks-blue {
    background-color: #3981e6;
    background: linear-gradient(-30deg, transparent 7px, #3981e6 0) right,
        linear-gradient(30deg, transparent 7px, #3981e6 0) left;
}

.tabs-container .nav-tabs > li.active > a,
.tabs-container .nav-tabs > li.active > a:hover, 
.tabs-container .nav-tabs > li.active > a:focus {
    border: none;
}

.nav-tabs {
    border-color: rgb(231, 231, 231);
    background-color: rgb(255, 255, 255);
}

.nav-tabs > li > a {
    margin: 0;
    height: 40px;
    border: none;
    line-height: 40px;
    font-weight: normal;
    padding: 0 20px 0 25px;
    box-sizing: border-box;
    color: rgb(17, 17, 17);
}

.tabs-container .nav-tabs > li,
.nav-tabs > li {
    margin-bottom: 0;
}

.nav-tabs > li:not(:last-child) a {
    padding-right: 0;
}

.nav-tabs > li > a:after {
    width: 0;
    bottom: 0;
    left: 50%;
    height: 2px;
    content: ' ';
    position: absolute;
    transition: all .36s ease-in-out;
    background-color: rgb(9, 179, 150);
    transform: translateX(calc(-50% + 12px));
}

.nav-tabs > li > a:hover:after,
.nav-tabs > li.active > a:after {
    width: calc(100% - 17px);
}

.nav-tabs > li:last-child a:hover:after,
.nav-tabs > li.active:last-child > a:after {
    width: calc(100% - 37px);
    transform: translateX(calc(-50% + 2.5px))
}

.nav-tabs > li > a:hover {
    border: none;
    background: none;
    color: rgb(17, 17, 17);
}

.nav-tabs > li.active > a,
.nav-tabs > li.active > a:hover,
.nav-tabs > li.active > a:focus {
    border: none;
    font-weight: 600;
    color: rgb(9, 179, 150);
}

.vertical-bar {
    position: relative;
    padding-left: 10px;
}

.vertical-bar:before {
    content: ' ';
    left: 0;
    top: 50%;
    width: 3px;
    height: 14px;
    position: absolute;
    transform: translateY(-50%);
    background-color: rgb(9, 179, 150);
}

.preexecution-operate {
    width: 100%;
    padding: 5px 15px;
    border-bottom: 1px solid rgb(231, 231, 231);
}

.preexecution-operate input.form-control {
    width: 139px;
}

.preexecution-patient-info {
    width: 100%;
    display: flex;
    margin-bottom: 13px;
    align-items: center;
}

.preexecution-patient-info p {
    min-width: 240px;
}

.drug-record-department > .chosen-container {
    min-width: 112px;
}

.template-rows {
    grid-template-rows: 1fr !important;
}
/* 自定义的单选框和复选框样式 */
.checkbox-wrapper,
.radio-wrapper {
    margin: 0;
    padding: 0;
    font-size: 14px;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
    color: rgba(0, 0, 0, 0.65);
    font-variant: tabular-nums;
    list-style: none;
    -webkit-font-feature-settings: 'tnum';
    font-feature-settings: 'tnum';
    display: inline-block;
    line-height: unset;
    cursor: pointer;
}

.checkbox-inner + span,
.radio-inner + span {
    padding-right: 8px;
    padding-left: 5px;
}

.checkbox,
.radio {
    display: none;
    outline: none;
    cursor: pointer;
    font-size: 14px;
    position: relative;
    -webkit-box-sizing: border-box;
    box-sizing: border-box;
}

.checkbox:focus,
.radio:focus {
    outline: none !important;
}

.checkbox:disabled + .checkbox-inner,
.radio:disabled + .radio-inner {
    cursor: not-allowed;
    background-color: rgb(216, 216, 216);
}

.checkbox:checked::after,
.radio:checked::after {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border-radius: 2px;
    visibility: hidden;
    border: 1px solid rgb(9, 179, 150);
    -webkit-animation: checkboxEffect .36s ease-in-out;
    animation: checkboxEffect .36s ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
    content: '';
}

.radio:checked::after {
    border-radius: 50%;
    -webkit-animation: radioEffect .36s ease-in-out;
    animation: radioEffect .36s ease-in-out;
    -webkit-animation-fill-mode: both;
    animation-fill-mode: both;
}

.checkbox-inner,
.radio-inner {
    position: relative;
    top: 3px;
    left: 0;
    width: 16px;
    height: 16px;
    border-radius: 2px;
    display: inline-block;
    background-color: #fff;
    border: 1px solid #d9d9d9;
    border-collapse: separate;
    -webkit-transition: all .3s;
    transition: all .3s;
}

.radio-inner {
    border-radius: 100px;
}

.checkbox-wrapper:hover .checkbox-inner,
.radio-wrapper:hover .radio-inner {
    border-color: rgb(9, 179, 150);
}

.checkbox-inner::after,
.radio-inner::after {
    position: absolute;
    display: table;
    width: 5px;
    height: 9px;
    content: ' ';
}

.checkbox-inner::after {
    top: 50%;
    left: 21%;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    -webkit-transform: rotate(45deg) scale(0) translate(-50%, -50%);
    -ms-transform: rotate(45deg) scale(0) translate(-50%, -50%);
    transform: rotate(45deg) scale(0) translate(-50%, -50%);
    opacity: 0;
    -webkit-transition: all .1s cubic-bezier(.71, -0.46, .88, .6), opacity .1s;
    transition: all .1s cubic-bezier(.71, -0.46, .88, .6), opacity .1s;
}

.radio-inner::after {
    width: 8px;
    height: 8px;
    top: 4px;
    left: 4px;
    background-color: rgb(9, 179, 150);
    border-radius: 8px;
    -webkit-transform: scale(0);
    -ms-transform: scale(0);
    transform: scale(0);
    -webkit-transition: all .3s cubic-bezier(.78, .14, .15, .86);
    transition: all .3s cubic-bezier(.78, .14, .15, .86);
}

.checkbox:checked+.checkbox-inner {
    background-color: rgb(9, 179, 150);
}

.radio:checked+.radio-inner {
    border-color: rgb(9, 179, 150);
}

.checkbox:checked+.checkbox-inner::after {
    -webkit-transform: rotate(45deg) scale(1) translate(-50%, -50%);
    -ms-transform: rotate(45deg) scale(1) translate(-50%, -50%);
    transform: rotate(45deg) scale(1) translate(-50%, -50%);
    opacity: 1;
    -webkit-transition: all .2s cubic-bezier(.12, .4, .29, 1.46) .1s;
    transition: all .2s cubic-bezier(.12, .4, .29, 1.46) .1s;
}

.radio:checked+.radio-inner::after {
    -webkit-transform: scale(1);
    -ms-transform: scale(1);
    transform: scale(1);
    opacity: 1;
    -webkit-transition: all .3s cubic-bezier(.78, .14, .15, .86);
    transition: all .3s cubic-bezier(.78, .14, .15, .86);
}

@-webkit-keyframes radioEffect {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .5
    }
    100% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0
    }
}

@keyframes radioEffect {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .5
    }
    100% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0
    }
}

@-webkit-keyframes checkboxEffect {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .5
    }
    100% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0
    }
}

@keyframes checkboxEffect {
    0% {
        -webkit-transform: scale(1);
        transform: scale(1);
        opacity: .5
    }
    100% {
        -webkit-transform: scale(1.6);
        transform: scale(1.6);
        opacity: 0
    }
}

.nav-pills>li {
    border-radius: 4px;
    border: 1px solid rgb(231, 231, 231);
}

.nav-pills li>a {
    padding: 7px 9px;
    font-weight: normal;
    color: rgb(48, 48, 48);
}

.nav-pills>li:not(:first-child):not(:last-child),
.nav-pills>li:not(:first-child):not(:last-child) a {
    border-radius: 0;
    border-left: 0;
}

.nav-pills>li+li {
    margin: 0;
}

.nav-pills>li.active {
    border-width: 1px;
    border-color: rgb(9, 179, 150);
    background: none;
}

.nav-pills>li:first-child,
.nav-pills>li:first-child a {
    border-top-right-radius: 0;
    border-bottom-right-radius: 0;
}

.nav-pills>li:last-child,
.nav-pills>li:last-child a {
    border-left: 0;
    border-top-left-radius: 0;
    border-bottom-left-radius: 0;
}

.nav-pills>li.active>a,
.nav-pills>li.active>a:focus,
.nav-pills>li.active>a:hover {
    font-weight: 600;
    background-color: rgb(9, 179, 150);
}

.color-marker {
    width: 24px;
    height: 12px;
    margin-right: 7px;
    border-radius: 3px;
}

.color-marker + span {
    white-space: nowrap;
}

.primary_bg_o {
    background-color: rgb(216, 240, 238);
}

.layout-sider-children .fixed-table-toolbar {
    display: flex;
    flex-flow: row-reverse wrap;
}

.layout-sider-children .fixed-table-toolbar .search {
  flex: 1;
}

.clear-flex {
  height: 0;
  flex: 1;
}

.over-auto {
  overflow: auto;
}

.over-unset {
  overflow: unset;
}

.table-hover>tbody>tr.primary_bg_o:hover {
  background-color: rgb(216, 240, 238);
}

.table-hover>tbody>tr.error_bg_o:hover {
  background-color: rgba(242, 73, 73, .15);
}

.div-input {
  width: 100%;
  height: auto;
  padding: 3px;
  outline: none;
}

#nuising-record-detail-form .div-input,
#blood-record-detail-form .div-input{
  width: 30em;
}

.tip-info {
  color: rgb(253, 154, 27);
}

.tip-info > b {
  font-size: large;
}

.no-flex-toolbar .fixed-table-toolbar {
  display: block;
}

.no-flex-toolbar .fixed-table-toolbar .search {
  width: 100px;
}

#applicableDrugList > .applicable_drug_item {
  width: 100%;
  padding: 15px 15px;
  margin-bottom: 15px;
  background-color: rgba(10, 191, 161, .15);
}

#applicableDrugList > .applicable_drug_item:nth-child(2n) {
  background-color: rgba(253, 154, 27, .15);
}

.grid-toolbar .fixed-table-toolbar {
  justify-content: flex-end;
}

.grid-toolbar .fixed-table-toolbar .search {
  width: 49%;
  flex: unset;
}

.select2-container--open .select2-dropdown {
  box-shadow: 0 -5px 20px 0 rgba(0, 0, 0, .15);
}

.no-select-patient {
  flex: 1;
  display: flex;
  align-items: center;
  flex-direction: column;
  justify-content: center;
}

.no-select-patient img {
  width: 70px;
}

.no-select-patient p {
  font-size: 18px;
  margin-top: 15px;
  color: rgb(128, 135, 134);
}

.white {
    color: rgb(255, 255, 255);
}


tr.c-tr td {
  position: relative;
}

tr.c-tr td::before{
  content: '';
  display: block;
  width: 100%;
  position: absolute;
  top: -1px;
  left: 0;
  border-top: 1px solid red;
}


.red_bgs {
    background-color: #DB4134;
}

.pink_bgs {
    background-color: #F48FB1;
}

.blue_bgs {
    background-color: #4B96F7;
}

.green_bgs {
    background-color: #09BDAE;
}

.beds-tip-info .flexbox > div{
    color: rgb(255, 255, 255);
}