/*******************
   总控设置
*******************/
#app {
  width: 100%;
  height: 100%;
}
::-webkit-scrollbar {
  width: 12px;
  background-color: #fbfafa;
}
::-webkit-scrollbar-thumb {
  background-color: #eee;
}
::-webkit-scrollbar-thumb:horizontal:hover {
  background-color: #c5c5c5 !important;
  transition: 0.5s all;
}
::-webkit-scrollbar-thumb:vertical:hover {
  background-color: #c5c5c5 !important;
  transition: 0.5s all;
}

/*input 控件*/
input,
button,
textarea {
  font-family: 微软雅黑;
  outline: none;
}
::-webkit-input-placeholder {
  color: #b0b0b0;
}
:-moz-placeholder {
  color: #b0b0b0;
}
::-moz-placeholder {
  color: #b0b0b0;
}
:-ms-input-placeholder {
  color: #b0b0b0;
}
textarea,
input[type="text"],
input[type="date"],
input[type="datetime"],
input[type="datetime-local"],
input[type="month"],
input[type="week"],
input[type="time"],
input[type="email"],
input[type="number"],
input[type="password"],
input[type="tel"],
input[type="url"] {box-sizing: border-box;padding: 5px 5px 5px 10px;border: solid 1px #e0e0e0;color: #333;border-radius: 4px;outline: none;font-size: 12px;}
textarea:focus,
input[type="text"]:focus,
input[type="date"]:focus,
input[type="datetime"]:focus,
input[type="datetime-local"]:focus,
input[type="month"]:focus,
input[type="week"]:focus,
input[type="time"]:focus,
input[type="email"]:focus,
input[type="number"]:focus,
input[type="password"]:focus,
input[type="tel"]:focus,
input[type="url"]:focus {border: solid 1px #43A0C8;}
textarea:hover,
input[type="text"]:hover,
input[type="date"]:hover,
input[type="datetime"]:hover,
input[type="datetime-local"]:hover,
input[type="month"]:hover,
input[type="week"]:hover,
input[type="time"]:hover,
input[type="email"]:hover,
input[type="number"]:hover,
input[type="password"]:hover,
input[type="tel"]:hover,
input[type="url"]:hover {border: solid 1px #43A0C8;}
input[type="text"][disabled="disabled"],
textarea[disabled="disabled"],
input[disabled="disabled"][type="number"],
input[type="text"][disabled="disabled"]:hover,
input[type="number"][disabled="disabled"]:hover,
textarea[disabled="disabled"]:hover {background-color: #f5f5f5;border: solid 1px #dadada;cursor: default;}
input[type="text"][disabled="disabled"] + .yg-input-over,
textarea[disabled="disabled"] + .yg-input-over,
input[disabled="disabled"][type="number"] + .yg-input-over,
input[type="text"][disabled="disabled"] + .yg-input-over:hover,
input[type="number"][disabled="disabled"] + .yg-input-over:hover,
textarea[disabled="disabled"] + .yg-input-over:hover {background-color: #f5f5f5;border: solid 1px #f5f5f5;cursor: default;}
textarea {outline: none;resize: vertical;}
textarea:focus{border-color:#43A0C8 !important}

input[type="radio"] {
  -webkit-appearance: none;
  background: #fff url(/static/public/ico/radio.png) no-repeat;
  height: 20px;
  vertical-align: middle;
  width: 15px;
  background-position: 0px 2px;
  margin-top: -1px;
}
input[type="radio"]:focus,
input[type="radio"]:hover {
  background-position: -23px 2px;
  outline: none;
  cursor: pointer;
}
input[type="radio"]:checked {
  background-position: -68px 2px;
}
input[type="radio"]:checked:hover {
  background-position: -68px 2px;
}
input[type="radio"][disabled] {
  background-position: 0px 2px;
}
input[type="radio"][disabled]:checked {
  background-position: -92px 2px;
}

/*表格*/
.table_fix {
  table-layout: fixed;
  border-collapse: unset !important;
}
.table_fix th {
  border-right: solid 1px #f0f0f0;
  border-bottom: solid 1px #f0f0f0;
  font-size: 13px !important;
}
.table_fix td {
  white-space: nowrap;
  text-overflow: ellipsis;
  overflow: hidden;
  border-right: solid 1px #f0f0f0;
  border-bottom: solid 1px #f0f0f0;
  font-size: 13px !important;
}
table.unite_table {
  background-color: #fff;
  border-collapse: collapse;
}
table.unite_table > thead {
  height: 35px;
  background-color: #fafafa;
  box-sizing: border-box;
  font-size: 13px;
  text-align: left;
}
table.unite_table > thead > tr > th {
  height: 33px;
  color: #696969;
  font-size: 14px;
  padding: 0 10px;
  font-weight: normal;
  text-align: left;
  box-sizing: border-box;
}
table.unite_table > tbody > tr > td {
  height: 30px;
  color: #333;
  font-size: 14px;
  padding: 0 10px;
  box-sizing: border-box;
}
table.unite_table > tbody > tr:nth-child(even) {
  background: #fafafa;
}
table.unite_table > tbody > tr:hover {
  background-color: #e4f9f7;
}
table.unite_table > tbody > tr.table_nodata:hover {
  background-color: #fff;
}
table.unite_table > tbody > tr.table_nodata:active {
  background-color: #fff !important;
}
table.unite_table > tbody > tr.table_nodata.active {
  background-color: #fff !important;
}
table.unite_table > tbody > tr:active {
  background-color: #ccf3f0;
}
table.unite_table > tbody > tr.active {
  background-color: #ccf3f0;
}
table.unite_table > tfoot > tr > th {
  height: 30px;
  color: #696969;
  font-size: 14px;
  padding: 0 10px;
  font-weight: normal;
  text-align: left;
  box-sizing: border-box;
}

/*样式重置*/
i,
em {
  font-style: normal;
}
p {
  margin: 0;
  padding: 0;
}
html,
body {
  margin: 0px;
  padding: 0px;
  width: 100%;
  height: 100%;
}
[v-cloak] {
  display: none;
}
a {
  color: #666666;
}
/*******************
个性化
********************/
/*验证必填样式*/
.ipt-req {
  position: relative;
  font-size: 14px;
  color: #ff8000;
}
.ipt-req::before {
  content: "*";
  position: absolute;
  left: -7px;
  top: 2px;
}

/*底部按钮*/
.fot-btn {
  text-align: right;
  border-top: solid 1px #f0f0f0;
  box-sizing: border-box;
  padding-right: 10px;
  height: 50px;
  line-height: 50px;
  position: fixed;
  left: 0;
  bottom: 0;
  width: 100%;
}

/*右上角*/
.p-ru {
  position: absolute;
  right: 15px;
  top: 15px;
}

/*******************
 新ui框架通用样式区
 日期: 2019-08-29
********************/
/*鼠标*/
.curp {cursor: pointer;}

/*显示方式*/
.p-rel {position: relative;}
.p-abs {position: absolute;}
.dsp-ibk {display: inline-block;}
.fl {float: left;}
.fr {float: right;}

/*定位*/
.prela {position: relative;}
.pabs {position: absolute;}

/*超出*/
.ov-auto {overflow: auto;}
.ov-hide {overflow: hidden;}

/*字号*/
.fz-16 {font-size: 16px;}
.fz-14 {font-size: 14px;}
.fz-15 {font-size: 15px;}
.fz-13 {font-size: 13px;}
.fz-12 {font-size: 12px;}
.fz-12y {font-size: 12px !important;}
.fz-18 {font-size: 18px;}
.fz-20 {font-size: 20px;}
.fz-22 {font-size: 22px;}
.fz-24 {font-size: 24px;}
.fz-30 {font-size: 30px;}
.fz-48 {font-size: 48px;}

/* 加粗 */
.fz-b {font-weight: bold;}

/*背景色*/
.bg-333 {background-color: #333;}
.bg-f0 {background-color: #f0f0f0;}
.bg-ccc {background-color: #ccc;}
.bg-f5 {background-color: #f5f5f5;}
.bg-f9 {background-color: #f9f9f9;}
.bg-f9y {background-color: #f9f9f9 !important;}
.bg-f {background-color: #ffffff;}
.bg-f2 {background-color: #f2f2f2;}
.bg-292c38 {background-color: #292c38;}
.bg-fff {background-color: #fff;}
.bg-fa {background-color: #fafafa;}

/*字色*/
.c-0 {color: #000000;}
.c-3 {color: #333333;}
.c-6 {color: #666666;}
.c-8 {color: #888888;}
.c-9 {color: #999999;}
.c-69 {color: #696969;}
.c-red {color: red;}
.c-f2 {color: #f2f2f2;}
.c-red {color: red;}
.c-8c93ab {color: #8c93ab;}
.c-fff {color: #fff;}

/*背景色*/
.g-fa {background-color: #fafafa;}
.g-F2 {background-color: #f2f2f2;}

/*文字对齐*/
.text-left {text-align: left;}
.text-center {text-align: center;}
.text-right {text-align: right;}
.va-md {vertical-align: middle;}

/*边线框*/
.b-fot {border-bottom: solid 1px #f0f0f0;}

/*宽高*/
.hwall {position: absolute;left: 0;top: 0;bottom: 0;right: 0;}
.w-p100 {width: 100%;}
.w-p95 {width: 95%;}
.w-180 {width: 180px;}
.w-150 {width: 150px;}
.wc-150 {width: calc(100% - 150px);}
.w-1180 {width: 1180px;}
.w-90 {width: 90px;}
.w-200 {width: 200px;}
.wc-200 {width: calc(100% - 200px);}
.h-p100 {height: 100%;}
.h-p100 {height: 100%;}
.h-p95 {height: 95%;}
.h-90 {height: 90px;}
.h-87 {height: 87px;}
.h-130 {height: 130px;}
.h-290 {height: 290px;}
.h-240 {height: 240px;}
.h-40 {height: 40px;}
.lh-40 {line-height: 40px;}
.h-50 {height: 50px;}
.lh-50 {line-height: 50px;}
.h-30 {height: 30px;}
.lh-30 {line-height: 30px;}
.h-35 {height: 35px;}
.lh-35 {line-height: 35px;}
.h-75 {height: 75px;}
.h-85 {height: 85px;}
.h-190 {height: 190px;}
.h-200 {height: 200px;}

/*外边距*/
.mauto {margin: auto;}
.ml-5 {margin-left: 5px;}
.ml-6 {margin-left: 6px;}
.ml-7 {margin-left: 7px;}
.ml-8 {margin-left: 8px;}
.ml-10 {margin-left: 10px;}
.ml-15 {margin-left: 15px;}
.ml-20 {margin-left: 20px;}
.mt-5 {margin-top: 5px;}
.mt-10 {margin-top: 10px;}
.mt-30 {margin-top: 30px;}
.mt-15 {margin-top: 15px;}
.mt-20 {margin-top: 20px;}
.mb-5 {margin-bottom: 5px;}
.mb-10 {margin-bottom: 10px;}
.mb-15 {margin-bottom: 15px;}
.mb-20 {margin-bottom: 20px;}
.mr-10 {margin-right: 10px;}
.mr-15 {margin-right: 15px;}
.mr-20 {margin-right: 20px;}

/*内边距*/
.bxsz {box-sizing: border-box;}
.p-all10 {padding: 10px;}
.p-all20 {padding: 20px;}
.pt-5 {padding-top: 5px;}
.pt-10 {padding-top: 10px;}
.pt-20 {padding-top: 20px;}
.pl-10 {padding-left: 10px;}
.pl-15 {padding-left: 15px;}
.pl-20 {padding-left: 20px;}
.plr-10 {padding-left: 10px;padding-right: 10px;}
.pr-10 {padding-right: 10px;}
.pr-15 {padding-right: 15px;}
.pr-20 {padding-right: 20px;}
.pb-0 {padding-bottom: 0px;padding-top: 10px;}
.pb-20 {padding-bottom: 20px;}

/*禁止选择文本*/
.noselect {-webkit-touch-callout: none;  -webkit-user-select: none;-khtml-user-select: none;-moz-user-select: none;-ms-user-select: none;user-select: none;}
/* .top-bar {
  height: 36px;
  background-color: #0c1115;
  line-height: 36px;
  padding: 0 20px;
}
.top-bar .logo {
  float: left;
} */
/*
自定义部分
*/
.yg-form-item {
  height: unset !important;
  /* display: flex; */
}
.main-area > div {
  width: 100%;
  height: 100%;
  position: relative;
}
.bxsz {
  box-sizing: border-box;
}
/*清除浮动*/
.ms-clear {
  overflow: hidden;
  clear: both;
}
/* .top-nav a{color:#999;margin-right:20px; font-size:14px;}
.top-nav a:hover{color:#43A0C8}
.top-nav .router-link-active{color:#43A0C8;position: relative;}
.top-nav .router-link-active::before{content:" ";position: absolute;left:0;bottom: -16px; height: 3px; background-color: #43A0C8;width:100%} */

/* 新添加样式 */
.left-nav a {
  display: inline-block;
  width: 100%;
  height: 30px;
  text-align: center;
  color: #ccc;
  font-size: 14px;
  margin-bottom: 10px;
}
.router-link-active {
  color: #43A0C8 !important;
}

.centers {
  text-align: center;
  width: 100%;
  font-size: 18px;
  margin: 20px 0;
}
.yg-row div {
  font-size: 14px;
  color: #606266;
  line-height: 30px;
}
.newrow {
  overflow: hidden;
}

.states-box span {
  margin: 10px;
  font-size: 14px;
}

.states-box .cik {
  cursor: pointer;
  color: red;
}

.dsp-ib {
  display: inline-block;
}

.addclinic-width {
  display: inline-block;
  width: 49%;
}
/* 方案审核--方案预览 */
.scheme-box {
  width: 100%;
  display: flex;
}

.scheme-box .scheme-div {
  width: 50%;
  text-align: center;
  position: relative;
}

.scheme-box .flex {
  display: flex;
}
.scheme-div .scheme-son {
  text-align: center;
  width: 50%;
  height: 100%;
  padding: 0 10px;
  box-sizing: border-box;
}

.scheme-img {
  width: 100%;
  height: 300px;
  border: 1px solid #f0f0f0;
  margin: 20px 0;
  display: flex;
  align-items: center;
  justify-content: center;
}
.scheme-btn {
  width: 100%;
  height: 300px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin: 20px 0;
}

.scheme-img2 {
  width: 100%;
  height: 300px;
  border: 1px solid #f0f0f0;
  margin-top: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden;
}

.scheme-img img,
.scheme-img2 img {
  width: 100%;
}

.padd {
  padding: 0 10px;
  box-sizing: border-box;
}

.scheme-div .text {
  padding: 10px 0;
  font-size: 13px;
  color: gray;
}

.scheme-div button {
  background: #fff;
  border: 1px solid gray;
  padding: 5px 15px;
  font-size: 13px;
  margin: 0 5px;
  color: gray;
  border-radius: 3px;
  cursor: pointer;
}

.scheme-div .text2 {
  font-size: 20px;
  margin-top: 50px;
}

.scheme-div .bottom {
  position: absolute;
  bottom: 20px;
  right: 0;
}
.scheme-div .bottom span {
  margin: 0 10px;
}
.scheme-qdd {
  font-size: 20px;
}
/*检查样式块 zlb 21/8/6*/
.doctor-check{width:100%;height:100%; box-sizing: border-box; background-color: #fff;position: relative;}
.doctor-check .yg-tabs__item{padding: 0 15px !important; font-size: 15px; height:50px;line-height: 50px; user-select: none;;} 
.doctor-check .yg-tabs__nav-wrap::after{background-color: #F0F0F0 !important;}
.doctor-check .yg-tabls{height:100%;}
.doctor-check .yg-tabs__header{height: 50px; box-sizing: border-box;}
.doctor-check .yg-tabs__nav-wrap{height:50px}
.doctor-check .yg-tabs__header{margin:0 !important}
.doctor-check .top-condition{padding-top:3px !important; padding-left:10px; box-sizing: border-box;}
.doctor-check .static-info{width:100%; height:35px;transform: translateY(23px);margin-left: 31px;}
.doctor-check .regform{padding:20px; width:311px; }
.doctor-check .static-info label,
.doctor-check .regform label{color:#666}
.doctor-check .regform .mr-28{margin-right:28px}
.doctor-check .regform .yg-radio-group label{margin-right:20px}
.doctor-check .regform input::-webkit-outer-spin-button,
.doctor-check .regform input::-webkit-inner-spin-button {-webkit-appearance: none;}
.doctor-check .regform input[type="number"]{-moz-appearance: textfield;}
.doctor-check .regform .form-btns{padding-left:80px}
.doctor-check .regform .form-btns .yg-button{margin-right:10px; width:100px}
.doctor-check .oper-col-jg{position: relative;}
.doctor-check .righttop-set{position: absolute; right:10px; top:15px; z-index: 10;}
.doctor-check .device-info label,
.doctor-check .righttop-set label{color:#888}
.doctor-check .device-info .val,
.doctor-check .righttop-set .val{color:#4E4E4E}
.doctor-check .righttop-set .yg-link{vertical-align: 0px; margin-left:10px; cursor: pointer;}
.doctor-check .righttop-set .red{color:#FF4444}
.doctor-check .righttop-set .orange{color:#FF7800}
.doctor-check .righttop-set .link-state{margin-left:2px;}
.doctor-check .righttop-set .link-state::before{content:'['}
.doctor-check .righttop-set .link-state::after{content:']'}
.doctor-check .device-adduser{position: absolute; right:10px; top:111px}
.doctor-check .userInfo-table{width:100%;height:60px;margin:0 auto;border-collapse:collapse; color:#666}
.doctor-check .userInfo-table thead tr th{font-weight: normal; text-align: left; background-color: #F9F9F9; padding:0 5px; height:28px;border:solid 1px #f0f0f0}
.doctor-check .userInfo-table tbody tr td{padding:0 5px; border:solid 1px #f0f0f0} 
.doctor-check input::-webkit-outer-spin-button,
.doctor-check input::-webkit-inner-spin-button {-webkit-appearance: none;}
.doctor-check .pat-search-panel{width: 310px; height:200px; background-color: #fff; box-shadow: 0 0 10px #555; position: absolute; top:90px; left:40px; overflow: auto;}
.doctor-check .pat-search-panel td{text-overflow: ellipsis; overflow: hidden; white-space: nowrap; }
.doctor-check .pat-search-panel .pat-search-head{height:28px;}
.doctor-check .pat-search-panel .pat-search-body{height:160px; overflow-y: auto;}
.doctor-check .pat-search-panel .pat-search-body .act-row td{background-color: #CDECFA !important;}

/* 新建订单的删除照片鼠标滑过 */
.img_btn>div.delimg:last-child:hover{
  color: #43A0C8;
}

/* 详情页面中的治疗计划 */
.activefold{
  display: none;
}
/* 治疗计划的折叠按钮 */
.zxc-flex > div i.yg-icon-arrow-down:hover{
  color: #43A0C8;
}
i.yg-icon-arrow-down:hover{
  color: #43A0C8;
}
/* 删除按钮 */
i.yg-icon-delete:hover{
  color: #43A0C8 !important;
}

.info_label {
  display: flex;
}
.info_label1 span{
  display: block;
}
.info_label1 :last-child{
  margin-top: 6px;
}
.info_label_left {
  flex-basis: 56px;
  white-space: nowrap;
  margin-right: 6px;
  /* text-align-last: justify; */
}

/* .delCase,.delCase2,.addCase, .modifyCase{
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  width: 160px;
  height: 32px;
  line-height: 32px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  color: #888888;
  background-color: #f5f5f5;
  cursor: pointer;
  margin: 10px auto 0 auto;
}

.delCase:hover,
.delCase2:hover,
.addCase:hover,
.modifyCase:hover {
  color: #43a0c8;
}

.delCase:active,
.delCase2:active,
.addCase:active
.modifyCase:active {
  background-color: #e9f4f9;
  color: #43a0c8;
} */
/* .addCase>div, .delCase>div, .delCase2>div, .modifyCase>div{
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-size: contain;
} */
.detailSideBtn{
  display: flex !important;
  align-items: center;
  justify-content: center;
  border-radius: 3px;
  width: 160px;
  height: 32px;
  line-height: 32px;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  text-align: center;
  color: #888888;
  background-color: #f5f5f5;
  cursor: pointer;
  margin: 10px auto 0 auto;
}
.detailSideBtn:hover {
  color: #43a0c8;
}

.detailSideBtn:active {
  background-color: #e9f4f9;
  color: #43a0c8;
}
/* .addCase .detailSideBtnIcon {
  background-image: url("/static/img/新建检查默认.png");
}
.addCase .detailSideBtnHoverIcon{
  background-image: url("/static/img/新建检查鼠标滑过.png");
} */
/* .delCase .detailSideBtnIcon {
  background-image: url("/static/img/删除患者默认.png");
}
.delCase .detailSideBtnHoverIcon {
  content: '';
  background-image: url("/static/img/删除患者鼠标滑过.png");
} */
/* .delCase2 .detailSideBtnIcon {
  background-image: url("/static/img/恢复病历默认.png");
}
.delCase2 .detailSideBtnHoverIcon {
  content: '';
  background-image: url("/static/img/恢复病历鼠标滑过.png");
} */
/* .recallCase .detailSideBtnIcon {
  background-image: url("/static/img/recall_case.png");
}
.recallCase .detailSideBtnHoverIcon {
  background-image: url("/static/img/recall_case_hover.png");
} */

.detailSideBtnIcon{
  display: block;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-size: contain;
}
.detailSideBtnHoverIcon{
  display: none;
  width: 18px;
  height: 18px;
  margin-right: 8px;
  background-repeat: no-repeat;
  background-size: contain;
}
.detailSideBtn:hover .detailSideBtnIcon,.detailSideBtn:active .detailSideBtnIcon{
  display: none;
}
.detailSideBtn:hover .detailSideBtnHoverIcon,.detailSideBtn:active .detailSideBtnHoverIcon{
  display: block;
}

.text_button {
  color: #43a0c8;
}
.text_button:hover {
  color: #38beec;
}
.text_button:active {
  color: #2086b1;
}
.yg-button.pop-btn {
  height: 32px;
  line-height: 30px;
  font-size: 14px !important;
  margin: 0 5px;
  min-width: 80px;
}
