@charset "UTF-8";
/* ---------------------------------------------------------------
 * 색 토큰: 다크/라이트 테마 전환을 위해 모든 색 변수를 CSS custom
 * property 로 매핑한다. 실제 색상값은 frontend/src/styles/tokens.css
 * 의 :root (다크 기본) / [data-theme="light"] (라이트 셋) 에서 정의.
 * ※ status 색(emergency, normal 등)은 양쪽 동일 — 토큰화 안 함.
 * --------------------------------------------------------------- */
/* Primary */
/* Secondary */
/*******************************************************************
	Reset
********************************************************************/
html, body, div, span, applet, object, iframe, h1, h2, h3, h4, h5, h6, p, blockquote, pre, a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp, small, strike, strong, sub, sup, tt, var, b, u, i, center, dl, dt, dd, ol, ul, li, fieldset, form,
label, legend, table, caption, tbody, tfoot, thead, tr, th, td, article, aside, canvas, details, embed, figure, figcaption, footer,
header, hgroup, menu, nav, output, ruby, section, summary, time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
  border: 0;
  *margin: 0;
  *padding: 0;
  *font-size: 0;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after, q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

img {
  max-width: 100%;
  width: 100%;
  height: auto;
  vertical-align: top;
}

ul, ol {
  list-style: none;
}

html, body {
  width: 100%;
  height: 100%;
  font-family: "SpoqaHanSansNeo", "Noto Sans KR", "Malgun Gothic", Arial, "Doutm", Tahoma, sans-serif;
  font-size: 16px;
  font-weight: 400;
}

body {
  background: #F4F6FA;
}

body * {
  box-sizing: border-box;
}

strong {
  font-weight: 700;
}

/* Form */
input, textarea, select, button {
  font-family: "SpoqaHanSansNeo", "Noto Sans KR", "Malgun Gothic", Arial, "Doutm", Tahoma, sans-serif;
  color: var(--color-black-3);
  box-sizing: border-box;
  outline: none;
}

select {
  color: var(--color-secondary);
}

button {
  overflow: visible;
  width: auto;
  margin: 0;
  padding: 0;
  border: 0;
  background: none;
  cursor: pointer;
}

button:disabled {
  cursor: default;
}

input[type=button], input[type=text], input[type=image], input[type=submit], textarea {
  -webkit-appearance: none;
  border-radius: 0;
  outline: none;
}

input::-ms-clear {
  display: none;
}

input[type=text]:focus {
  outline: none;
}

input[type=text]:focus.read {
  outline: none;
}

input[type=text]:focus {
  outline: none;
}

input[type=text], input[type=password], input[type=number], input[type=file] {
  vertical-align: top;
  outline: none;
  border-radius: 0;
}

input[type=number]::-webkit-inner-spin-button,
input[type=number]::-webkit-outer-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

select {
  width: 100%;
  height: 40px;
  padding: 0 30px 0 10px;
  border: 0;
  border-radius: 0;
  font-size: 16px;
  z-index: 1 !important;
  -webkit-appearance: none;
  -moz-appearance: none;
  background-size: 20px auto;
  box-sizing: border-box;
}

select:focus {
  outline: none;
}

select option {
  margin: 0;
  color: var(--color-secondary);
}

select::-ms-expand {
  display: none;
}

textarea {
  resize: none;
  border: 1px solid var(--color-bg-e8);
  vertical-align: top;
}
textarea:focus {
  outline: none;
}

a {
  text-decoration: none;
  cursor: pointer;
}

a[href^=tel] {
  font-style: normal;
}

/* placeholder */
input:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

input:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: transparent;
}

input:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: transparent;
}

input:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: transparent;
}

input::-ms-input-placeholder {
  color: var(--color-black-9);
}

input::-webkit-input-placeholder {
  color: var(--color-black-9);
}

input::-moz-placeholder {
  color: var(--color-black-9);
}

input:-ms-input-placeholder {
  color: var(--color-black-9);
}

input:-moz-input-placeholder {
  color: var(--color-black-9);
}

textarea:focus::-webkit-input-placeholder, textarea:focus::-webkit-input-placeholder {
  color: transparent;
}

textarea:focus:-moz-placeholder, textarea:focus:-moz-placeholder {
  color: transparent;
}

textarea:focus::-moz-placeholder, textarea:focus::-moz-placeholder {
  color: transparent;
}

textarea:focus:-ms-input-placeholder, textarea:focus:-ms-input-placeholder {
  color: transparent;
}

textarea::-ms-input-placeholder {
  color: #B9B9BC;
}

textarea::-webkit-input-placeholder {
  color: #B9B9BC;
}

textarea::-moz-placeholder {
  color: #B9B9BC;
}

textarea:-ms-input-placeholder {
  color: #B9B9BC;
}

input:-moz-input-placeholder {
  color: #B9B9BC;
}

/* 대체 텍스트 */
.blind {
  visibility: hidden;
  overflow: hidden;
  position: absolute;
  top: 0;
  left: 0;
  width: 0;
  height: 0;
  font-size: 0;
  line-height: 0;
}

/* 마진 / 패딩 설정 */
.mt5 {
  margin-top: 5px !important;
}

.pt5 {
  padding-top: 5px !important;
}

.mt10 {
  margin-top: 10px !important;
}

.pt10 {
  padding-top: 10px !important;
}

.mt15 {
  margin-top: 15px !important;
}

.pt15 {
  padding-top: 15px !important;
}

.mt20 {
  margin-top: 20px !important;
}

.pt20 {
  padding-top: 20px !important;
}

.mt25 {
  margin-top: 25px !important;
}

.pt25 {
  padding-top: 25px !important;
}

.mt30 {
  margin-top: 30px !important;
}

.pt30 {
  padding-top: 30px !important;
}

.mt35 {
  margin-top: 35px !important;
}

.pt35 {
  padding-top: 35px !important;
}

.mt40 {
  margin-top: 40px !important;
}

.pt40 {
  padding-top: 40px !important;
}

.mt45 {
  margin-top: 45px !important;
}

.pt45 {
  padding-top: 45px !important;
}

.mt50 {
  margin-top: 50px !important;
}

.pt50 {
  padding-top: 50px !important;
}

.mt55 {
  margin-top: 55px !important;
}

.pt55 {
  padding-top: 55px !important;
}

.mt60 {
  margin-top: 60px !important;
}

.pt60 {
  padding-top: 60px !important;
}

.mt65 {
  margin-top: 65px !important;
}

.pt65 {
  padding-top: 65px !important;
}

.mt70 {
  margin-top: 70px !important;
}

.pt70 {
  padding-top: 70px !important;
}

.mt75 {
  margin-top: 75px !important;
}

.pt75 {
  padding-top: 75px !important;
}

.mt80 {
  margin-top: 80px !important;
}

.pt80 {
  padding-top: 80px !important;
}

.mt85 {
  margin-top: 85px !important;
}

.pt85 {
  padding-top: 85px !important;
}

.mt90 {
  margin-top: 90px !important;
}

.pt90 {
  padding-top: 90px !important;
}

.mt95 {
  margin-top: 95px !important;
}

.pt95 {
  padding-top: 95px !important;
}

.mt100 {
  margin-top: 100px !important;
}

.pt100 {
  padding-top: 100px !important;
}

.mt105 {
  margin-top: 105px !important;
}

.pt105 {
  padding-top: 105px !important;
}

.mt110 {
  margin-top: 110px !important;
}

.pt110 {
  padding-top: 110px !important;
}

.mt115 {
  margin-top: 115px !important;
}

.pt115 {
  padding-top: 115px !important;
}

.mt120 {
  margin-top: 120px !important;
}

.pt120 {
  padding-top: 120px !important;
}

.mt125 {
  margin-top: 125px !important;
}

.pt125 {
  padding-top: 125px !important;
}

.mt130 {
  margin-top: 130px !important;
}

.pt130 {
  padding-top: 130px !important;
}

.mt135 {
  margin-top: 135px !important;
}

.pt135 {
  padding-top: 135px !important;
}

.mt140 {
  margin-top: 140px !important;
}

.pt140 {
  padding-top: 140px !important;
}

.mt145 {
  margin-top: 145px !important;
}

.pt145 {
  padding-top: 145px !important;
}

.mt150 {
  margin-top: 150px !important;
}

.pt150 {
  padding-top: 150px !important;
}

.mt155 {
  margin-top: 155px !important;
}

.pt155 {
  padding-top: 155px !important;
}

.mt160 {
  margin-top: 160px !important;
}

.pt160 {
  padding-top: 160px !important;
}

.mt165 {
  margin-top: 165px !important;
}

.pt165 {
  padding-top: 165px !important;
}

.mt170 {
  margin-top: 170px !important;
}

.pt170 {
  padding-top: 170px !important;
}

.mt175 {
  margin-top: 175px !important;
}

.pt175 {
  padding-top: 175px !important;
}

.mt180 {
  margin-top: 180px !important;
}

.pt180 {
  padding-top: 180px !important;
}

.mt185 {
  margin-top: 185px !important;
}

.pt185 {
  padding-top: 185px !important;
}

.mt190 {
  margin-top: 190px !important;
}

.pt190 {
  padding-top: 190px !important;
}

.mt195 {
  margin-top: 195px !important;
}

.pt195 {
  padding-top: 195px !important;
}

.mt200 {
  margin-top: 200px !important;
}

.pt200 {
  padding-top: 200px !important;
}

.mt205 {
  margin-top: 205px !important;
}

.pt205 {
  padding-top: 205px !important;
}

.mt210 {
  margin-top: 210px !important;
}

.pt210 {
  padding-top: 210px !important;
}

.mt215 {
  margin-top: 215px !important;
}

.pt215 {
  padding-top: 215px !important;
}

.mt220 {
  margin-top: 220px !important;
}

.pt220 {
  padding-top: 220px !important;
}

.mt225 {
  margin-top: 225px !important;
}

.pt225 {
  padding-top: 225px !important;
}

.mt230 {
  margin-top: 230px !important;
}

.pt230 {
  padding-top: 230px !important;
}

.mt235 {
  margin-top: 235px !important;
}

.pt235 {
  padding-top: 235px !important;
}

.mt240 {
  margin-top: 240px !important;
}

.pt240 {
  padding-top: 240px !important;
}

.mt245 {
  margin-top: 245px !important;
}

.pt245 {
  padding-top: 245px !important;
}

.mt250 {
  margin-top: 250px !important;
}

.pt250 {
  padding-top: 250px !important;
}

.mt255 {
  margin-top: 255px !important;
}

.pt255 {
  padding-top: 255px !important;
}

.mt260 {
  margin-top: 260px !important;
}

.pt260 {
  padding-top: 260px !important;
}

.mt265 {
  margin-top: 265px !important;
}

.pt265 {
  padding-top: 265px !important;
}

.mt270 {
  margin-top: 270px !important;
}

.pt270 {
  padding-top: 270px !important;
}

.mt275 {
  margin-top: 275px !important;
}

.pt275 {
  padding-top: 275px !important;
}

.mt280 {
  margin-top: 280px !important;
}

.pt280 {
  padding-top: 280px !important;
}

.mt285 {
  margin-top: 285px !important;
}

.pt285 {
  padding-top: 285px !important;
}

.mt290 {
  margin-top: 290px !important;
}

.pt290 {
  padding-top: 290px !important;
}

.mt295 {
  margin-top: 295px !important;
}

.pt295 {
  padding-top: 295px !important;
}

.mt300 {
  margin-top: 300px !important;
}

.pt300 {
  padding-top: 300px !important;
}

.mt305 {
  margin-top: 305px !important;
}

.pt305 {
  padding-top: 305px !important;
}

.mt310 {
  margin-top: 310px !important;
}

.pt310 {
  padding-top: 310px !important;
}

.mt315 {
  margin-top: 315px !important;
}

.pt315 {
  padding-top: 315px !important;
}

.mt320 {
  margin-top: 320px !important;
}

.pt320 {
  padding-top: 320px !important;
}

.mt325 {
  margin-top: 325px !important;
}

.pt325 {
  padding-top: 325px !important;
}

.mt330 {
  margin-top: 330px !important;
}

.pt330 {
  padding-top: 330px !important;
}

.mt335 {
  margin-top: 335px !important;
}

.pt335 {
  padding-top: 335px !important;
}

.mt340 {
  margin-top: 340px !important;
}

.pt340 {
  padding-top: 340px !important;
}

.mt345 {
  margin-top: 345px !important;
}

.pt345 {
  padding-top: 345px !important;
}

.mt350 {
  margin-top: 350px !important;
}

.pt350 {
  padding-top: 350px !important;
}

.mt355 {
  margin-top: 355px !important;
}

.pt355 {
  padding-top: 355px !important;
}

.mt360 {
  margin-top: 360px !important;
}

.pt360 {
  padding-top: 360px !important;
}

.mt365 {
  margin-top: 365px !important;
}

.pt365 {
  padding-top: 365px !important;
}

.mt370 {
  margin-top: 370px !important;
}

.pt370 {
  padding-top: 370px !important;
}

.mt375 {
  margin-top: 375px !important;
}

.pt375 {
  padding-top: 375px !important;
}

.mt380 {
  margin-top: 380px !important;
}

.pt380 {
  padding-top: 380px !important;
}

.mt385 {
  margin-top: 385px !important;
}

.pt385 {
  padding-top: 385px !important;
}

.mt390 {
  margin-top: 390px !important;
}

.pt390 {
  padding-top: 390px !important;
}

.mt395 {
  margin-top: 395px !important;
}

.pt395 {
  padding-top: 395px !important;
}

.mt400 {
  margin-top: 400px !important;
}

.pt400 {
  padding-top: 400px !important;
}

.mt405 {
  margin-top: 405px !important;
}

.pt405 {
  padding-top: 405px !important;
}

.mt410 {
  margin-top: 410px !important;
}

.pt410 {
  padding-top: 410px !important;
}

.mt415 {
  margin-top: 415px !important;
}

.pt415 {
  padding-top: 415px !important;
}

.mt420 {
  margin-top: 420px !important;
}

.pt420 {
  padding-top: 420px !important;
}

.mt425 {
  margin-top: 425px !important;
}

.pt425 {
  padding-top: 425px !important;
}

.mt430 {
  margin-top: 430px !important;
}

.pt430 {
  padding-top: 430px !important;
}

.mt435 {
  margin-top: 435px !important;
}

.pt435 {
  padding-top: 435px !important;
}

.mt440 {
  margin-top: 440px !important;
}

.pt440 {
  padding-top: 440px !important;
}

.mt445 {
  margin-top: 445px !important;
}

.pt445 {
  padding-top: 445px !important;
}

.mt450 {
  margin-top: 450px !important;
}

.pt450 {
  padding-top: 450px !important;
}

.mt455 {
  margin-top: 455px !important;
}

.pt455 {
  padding-top: 455px !important;
}

.mt460 {
  margin-top: 460px !important;
}

.pt460 {
  padding-top: 460px !important;
}

.mt465 {
  margin-top: 465px !important;
}

.pt465 {
  padding-top: 465px !important;
}

.mt470 {
  margin-top: 470px !important;
}

.pt470 {
  padding-top: 470px !important;
}

.mt475 {
  margin-top: 475px !important;
}

.pt475 {
  padding-top: 475px !important;
}

.mt480 {
  margin-top: 480px !important;
}

.pt480 {
  padding-top: 480px !important;
}

.mt485 {
  margin-top: 485px !important;
}

.pt485 {
  padding-top: 485px !important;
}

.mt490 {
  margin-top: 490px !important;
}

.pt490 {
  padding-top: 490px !important;
}

.mt495 {
  margin-top: 495px !important;
}

.pt495 {
  padding-top: 495px !important;
}

.mt500 {
  margin-top: 500px !important;
}

.pt500 {
  padding-top: 500px !important;
}

/* text 정렬 */
.al {
  text-align: left !important;
}

.ac {
  text-align: center !important;
}

.ar {
  text-align: right !important;
}

/* border none */
.brtn {
  border-top: 0 !important;
}

.brrn {
  border-right: 0 !important;
}

.brbn {
  border-bottom: 0 !important;
}

.brln {
  border-left: 0 !important;
}

/* margin none */
.mtn {
  margin-top: 0 !important;
}

.mrn {
  margin-right: 0 !important;
}

.mbn {
  margin-bottom: 0 !important;
}

.mln {
  margin-left: 0 !important;
}

/* padding none */
.ptn {
  padding-top: 0 !important;
}

.prn {
  padding-right: 0 !important;
}

.pbn {
  padding-bottom: 0 !important;
}

.pln {
  padding-left: 0 !important;
}

.pdn {
  padding: 0 !important;
}

h2, h3, h4 {
  font-weight: 500;
}

@font-face {
  font-family: "SpoqaHanSansNeo";
  font-style: normal;
  font-weight: 300;
  src: local("SpoqaHanSansNeo-Light"), local("SpoqaHanSansNeo-Light");
  src: url(/app/assets/font/SpoqaHanSansNeo-Light-7fd2f1b3906391a81c261fd2fe9ef15c.eot?#iefix) format("embedded-opentype");
  src: url(/app/assets/font/SpoqaHanSansNeo-Light-7fd2f1b3906391a81c261fd2fe9ef15c.eot);
  src: url(/app/assets/font/SpoqaHanSansNeo-Light-de87dfe939de7a3a1f7564bdc95b9f9e.woff2) format("woff2"), url(/app/assets/font/SpoqaHanSansNeo-Light-f0124504b2ad9bae6e4d562cfffaa02b.woff) format("woff");
}
@font-face {
  font-family: "SpoqaHanSansNeo";
  font-style: normal;
  font-weight: 400;
  src: local("SpoqaHanSansNeo-Regular"), local("SpoqaHanSansNeo-Regular");
  src: url(/app/assets/font/SpoqaHanSansNeo-Regular-41a55a27ea5631028e7a14647bc394fb.eot?#iefix) format("embedded-opentype");
  src: url(/app/assets/font/SpoqaHanSansNeo-Regular-41a55a27ea5631028e7a14647bc394fb.eot);
  src: url(/app/assets/font/SpoqaHanSansNeo-Regular-6f876d098a687c3ac9c6871fe473b3f1.woff2) format("woff2"), url(/app/assets/font/SpoqaHanSansNeo-Regular-17458b7840c51e9c8a8646c495049cbb.woff) format("woff");
}
@font-face {
  font-family: "SpoqaHanSansNeo";
  font-style: normal;
  font-weight: 500;
  src: local("SpoqaHanSansNeo-Medium"), local("SpoqaHanSansNeo-Medium");
  src: url(/app/assets/font/SpoqaHanSansNeo-Medium-b0af8631a777319af6d02d44b29b7bd1.eot?#iefix) format("embedded-opentype");
  src: url(/app/assets/font/SpoqaHanSansNeo-Medium-b0af8631a777319af6d02d44b29b7bd1.eot);
  src: url(/app/assets/font/SpoqaHanSansNeo-Medium-9d46d938dff0062eddc760e606b2a020.woff2) format("woff2"), url(/app/assets/font/SpoqaHanSansNeo-Medium-f4d5d7240069d0dd291579991883da22.woff) format("woff");
}
@font-face {
  font-family: "SpoqaHanSansNeo";
  font-style: normal;
  font-weight: 700;
  src: local("SpoqaHanSansNeo-Bold"), local("SpoqaHanSansNeo-Bold");
  src: url(/app/assets/font/SpoqaHanSansNeo-Bold-1bb87c3aa7be91ddd5b1fa8852633109.eot?#iefix) format("embedded-opentype");
  src: url(/app/assets/font/SpoqaHanSansNeo-Bold-1bb87c3aa7be91ddd5b1fa8852633109.eot);
  src: url(/app/assets/font/SpoqaHanSansNeo-Bold-d57ff6f22085316b0326e4396df975d3.woff2) format("woff2"), url(/app/assets/font/SpoqaHanSansNeo-Bold-498c948874e4278ce199f05dd7b79b37.woff) format("woff");
}
/*******************************************************************
	Layout
********************************************************************/
#wrap {
  position: relative;
  width: 100%;
  min-width: 1024px;
  min-height: 100%;
  background: var(--color-black-10);
}

#header {
  z-index: 500;
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 80px;
  padding: 0 25px;
  background: var(--color-black-10);
  transition: all 0.2s;
}
#header .tit-set {
  display: flex;
  align-items: center;
  margin-bottom: 0;
}
#header .tit-set .logo {
  flex-shrink: 0;
  width: 140px;
  height: 32px;
}
#header .tit-set .logo > a {
  display: block;
  width: 100%;
  height: 100%;
  background: url("/app/assets/images/logo_white-3fe453fb4a5bc230c9c000388e67ae92.svg") no-repeat 0 0;
  background-size: 100%;
}
#header .tit-set .point-area {
  display: flex;
  margin-left: 25px;
}
#header .tit-set .point-area .name {
  font-size: 18px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1;
}
#header .tit-set .point-area .cmt {
  display: flex;
  align-items: center;
  margin-right: 15px;
  font-size: 14px;
  color: var(--color-bg-a1);
  line-height: 1;
}
#header .tit-set .point-area .cmt::after {
  content: "";
  width: 1px;
  height: 16px;
  margin-left: 15px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
#header .info-menu {
  display: flex;
  align-items: center;
}
#header .info-menu .inp-set {
  width: 280px;
}
#header .info-menu .info-list {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-left: 45px;
}
#header .info-menu .info-list > li {
  display: flex;
  align-items: center;
}
#header .info-menu .info-list > li .user-info {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--color-white);
  font-weight: 500;
}
#header .info-menu .info-list > li .user-info .name {
  margin: 0 5px;
  font-size: 13px;
  color: var(--color-primary);
  text-decoration: underline;
}
#header .info-menu .info-list > li .user-info.nurse::before {
  background: url("/app/assets/images/icon/icon_alarm2-f3d540d762550d72195fa57f5dfb3a1b.png") no-repeat 0 0;
  background-size: 100%;
}
#header .info-menu .info-list > li .user-info.none::before {
  background: url("/app/assets/images/icon/icon_alarm_none-7272d1788d7b473ff67d1ea8f8515cfa.png") no-repeat 0 0;
  background-size: 100%;
}
#header .info-menu .info-list > li .user-info::before {
  content: "";
  width: 24px;
  height: 24px;
  background: url("/app/assets/images/icon/icon_user-0f8c22c8c4e058320117d48fe4d67c0a.png") no-repeat 0 0;
  background-size: 100%;
}
#header .info-menu .info-list > li .user-info::after {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  margin: 0 15px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
#header .info-menu .info-list > li .btn-logout {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--color-white);
  font-weight: 500;
}
#header .info-menu .info-list > li .btn-logout::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 5px;
  background: url("/app/assets/images/icon/icon_logout-a19527f48fa39782f028e356aabc2e9e.png") no-repeat 0 0;
  background-size: 100%;
}
#header .info-menu .info-list > li .btn-theme {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 28px;
  height: 28px;
  margin-right: 12px;
  padding: 0;
  border: 0;
  border-radius: 50%;
  background: transparent;
  color: var(--color-white);
  cursor: pointer;
  transition: background 0.15s ease, color 0.15s ease;
}
#header .info-menu .info-list > li .btn-theme svg {
  width: 18px;
  height: 18px;
  display: block;
}
#header .info-menu .info-list > li .btn-theme:hover {
  background: rgba(var(--rgb-on-surface), 0.12);
}
#header .info-menu .info-list > li .btn-theme:focus-visible {
  outline: 2px solid var(--color-primary);
  outline-offset: 2px;
}
#header .info-menu .btn-guide {
  margin-left: 24px;
}
@media screen and (max-width: 1600px) {
  #header .info-menu .info-list {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1400px) {
  #header {
    height: 60px;
    padding: 0 15px;
  }
  #header .tit-set .logo > a {
    background-size: 80%;
  }
  #header .tit-set .point-area {
    margin-left: 0;
  }
  #header .tit-set .point-area .name {
    font-size: 16px;
  }
  #header .tit-set .point-area .cmt {
    margin-right: 10px;
    font-size: 12px;
    color: var(--color-bg-a1);
  }
  #header .info-menu .info-list {
    margin-left: 20px;
  }
  #header .info-menu .info-list > li .user-info {
    font-size: 12px;
  }
  #header .info-menu .info-list > li .user-info .name {
    font-size: 12px;
  }
  #header .info-menu .info-list > li .user-info::before {
    content: "";
    width: 20px;
    height: 20px;
    background: url("/app/assets/images/icon/icon_user-0f8c22c8c4e058320117d48fe4d67c0a.png") no-repeat 0 0;
    background-size: 100%;
  }
  #header .info-menu .info-list > li .user-info::after {
    height: 14px;
    margin: 0 10px;
  }
  #header .info-menu .info-list > li .btn-logout {
    display: flex;
    align-items: center;
    font-size: 12px;
    font-weight: 500;
  }
  #header .info-menu .info-list > li .btn-logout::before {
    content: "";
    width: 20px;
    height: 20px;
    margin-right: 5px;
    background: url("/app/assets/images/icon/icon_logout-a19527f48fa39782f028e356aabc2e9e.png") no-repeat 0 0;
    background-size: 100%;
  }
  #header .info-menu .inp-set {
    width: 250px;
  }
  #header .info-menu .inp-set .inp {
    height: 40px;
  }
  #header .info-menu .btn-guide {
    margin-left: 20px;
  }
}

#container {
  width: 100%;
  padding: 0 20px 40px;
}
@media all and (max-width: 1400px) {
  #container {
    padding: 0 15px 40px;
  }
}

#footer {
  position: absolute;
  bottom: 0;
  left: 0;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 50px;
  padding: 0 20px;
  background: var(--color-black-10);
}
#footer .fnb {
  display: flex;
  align-items: center;
}
#footer .fnb .cmt {
  display: flex;
  align-items: center;
  margin-right: 15px;
  font-size: 12px;
  color: var(--color-white);
}
#footer .fnb .cmt::after {
  content: "";
  width: 1px;
  height: 12px;
  margin-left: 15px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
#footer .fnb-list {
  display: flex;
  align-items: center;
}
#footer .fnb-list > li {
  display: flex;
  align-items: center;
}
#footer .fnb-list > li + li {
  margin-left: 10px;
}
#footer .fnb-list > li + li::before {
  content: "";
  width: 1px;
  height: 12px;
  margin-left: 15px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
#footer .fnb-list > li + li .txt {
  padding-left: 15px;
}
#footer .fnb-list > li + li .txt.none {
  padding-left: 0;
}
#footer .fnb-list > li .txt {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--color-white);
}
#footer .fnb-list > li .txt::before {
  content: "";
  width: 16px;
  height: 16px;
  margin-right: 8px;
}
#footer .fnb-list > li.call .txt::before {
  background: url("/app/assets/images/icon/icon_phone-e86175ed4c52ff1f9169e80300c11758.png") no-repeat 0 0;
  background-size: 100%;
}
#footer .fnb-list > li.chat .txt::before {
  background: url("/app/assets/images/icon/icon_chat-2b12395b8f7de54666c9a78d5bc74d17.png") no-repeat 0 0;
  background-size: 100%;
}
#footer .copyright {
  font-size: 11px;
  color: var(--color-white);
}
#footer.login .fnb-list > li.terms, #footer.login .fnb-list > li.email {
  display: none;
}
@media screen and (max-width: 1400px) {
  #footer {
    height: 40px;
    bottom: 3px;
  }
}

.snb {
  flex-shrink: 0;
  z-index: 30;
  position: fixed;
  top: 80px;
  left: 20px;
  width: 80px;
  height: calc(100vh - 130px);
  border-radius: 20px;
  background: var(--color-bg-2f);
  box-shadow: 3px 6px 12px rgba(0, 0, 0, 0.4);
  transition: all 0.3s;
}
.snb .snb-content {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.snb .snb-list {
  z-index: 2;
  position: absolute;
  top: 0;
  left: 0;
  width: 80px;
  height: 100%;
  padding: 4px;
  background: var(--color-bg-2f);
  border-radius: 20px;
}
.snb .snb-list > li {
  position: relative;
  width: 100%;
  height: 70px;
}
.snb .snb-list > li .btn {
  position: relative;
  width: 100%;
  height: 100%;
  border-radius: 16px;
  background: transparent;
}
.snb .snb-list > li .btn::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 24px;
  height: 24px;
}
.snb .snb-list > li:nth-child(1) .btn::before {
  background: url("/app/assets/images/btn/btn_snb1-60ae23f40de5c7355195760f7c365671.png") no-repeat 0 0;
  background-size: 100% auto;
}
.snb .snb-list > li:nth-child(2) .btn::before {
  background: url("/app/assets/images/btn/btn_snb2-64559f3019e80a0a7b656fa13e9d14c2.png") no-repeat 0 0;
  background-size: 100% auto;
}
.snb .snb-list > li:nth-child(3) .btn::before {
  background: url("/app/assets/images/btn/btn_snb3-9a1f100b8758373632b3ce979aee185d.png") no-repeat 0 0;
  background-size: 100% auto;
}
.snb .snb-list > li:nth-child(3) .badge {
  position: absolute;
  top: 14px;
  right: 5px;
  height: 16px;
  padding: 0 4px;
}
.snb .snb-list > li:nth-child(3) .badge > * {
  font-size: 12px;
  line-height: 1;
}
.snb .snb-list > li:nth-child(3) .badge {
  background: #FFDE67;
}
.snb .snb-list > li:nth-child(4) .btn::before {
  background: url("/app/assets/images/btn/btn_snb4-4d5444fc166554d19c52d0ddf5dd9426.png") no-repeat 0 0;
  background-size: 100% auto;
}
.snb .snb-list > li:nth-child(5) .btn::before {
  background: url("/app/assets/images/btn/btn_snb5-e6c0215f19e77fe7a188fae679fc0efd.png") no-repeat 0 0;
  background-size: 100% auto;
}
.snb .snb-list > li:hover .btn, .snb .snb-list > li.active .btn {
  background: linear-gradient(135deg, var(--color-primary), #03ded2);
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.2), inset 2px 2px rgba(var(--rgb-on-surface), 0.2), inset -2px -2px rgba(0, 0, 0, 0.2);
}
.snb .snb-list > li:hover .btn::before, .snb .snb-list > li.active .btn::before {
  background-position: 0 -24px;
}
.snb .sub-depth {
  width: 100%;
  height: 100%;
  background: var(--color-bg-2b);
  border-radius: 20px;
}
.snb .depth-content {
  position: absolute;
  top: 0;
  left: -160px;
  width: 160px;
  height: 100%;
  padding: 4px 0;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: all 0.6s;
}
.snb .depth-content > li {
  width: 100%;
  height: 70px;
}
.snb .depth-content > li .btn-txt {
  width: 100%;
  height: 100%;
  padding: 0 10px 0 20px;
  font-size: 16px;
  color: var(--color-secondary);
  font-weight: 500;
  text-align: left;
}
.snb .depth-content > li .btn-txt::before {
  content: none;
}
.snb .depth-content > li:hover .btn-txt, .snb .depth-content > li.active .btn-txt {
  color: var(--color-white);
}
.snb .depth-content.active {
  left: 80px;
  opacity: 1;
  visibility: visible;
  pointer-events: all;
}
.snb .btn-fold {
  z-index: 5;
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: -10px;
  width: 20px;
  height: 120px;
  border-radius: 20px;
  background: var(--color-primary);
  box-shadow: 2px 4px 4px rgba(0, 0, 0, 0.2), inset 2px 2px rgba(var(--rgb-on-surface), 0.2), inset -1px -1px rgba(0, 0, 0, 0.2);
}
.snb .btn-fold::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 16px;
  height: 16px;
  background: url("/app/assets/images/btn/btn_snb_fold-8ee2e58e819bba3bd492a3cd4e841173.png") no-repeat 0 0;
  background-size: 100%;
}
.snb .btn-fold.open::before {
  transform: translate(-50%, -50%) rotate(-180deg);
}
.snb.active {
  width: 240px;
}
@media screen and (max-width: 1600px) {
  .snb {
    width: 60px;
    border-radius: 15px;
  }
  .snb .snb-list {
    width: 60px;
    border-radius: 15px;
  }
  .snb .snb-list > li {
    height: 50px;
  }
  .snb .snb-list > li .btn {
    border-radius: 12px;
  }
  .snb .snb-list > li .btn::before {
    width: 22px;
    height: 22px;
  }
  .snb .snb-list > li:nth-child(3) .badge {
    position: absolute;
    top: 8px;
    right: 0;
    height: 14px;
    padding: 0 2px;
  }
  .snb .snb-list > li:nth-child(3) .badge > * {
    font-size: 10px;
  }
  .snb .snb-list > li:hover .btn::before, .snb .snb-list > li.active .btn::before {
    background-position: 0 -22px;
  }
  .snb .sub-depth {
    border-radius: 15px;
  }
  .snb .depth-content > li {
    height: 50px;
  }
  .snb .depth-content > li .btn-txt {
    font-size: 14px;
  }
  .snb .depth-content.active {
    left: 60px;
  }
  .snb .btn-fold {
    width: 15px;
  }
  .snb.active {
    width: 210px;
  }
}
@media screen and (max-width: 1400px) {
  .snb {
    top: 60px;
    left: 10px;
    width: 55px;
    height: calc(100vh - 103px);
    border-radius: 12px;
  }
  .snb .snb-list {
    width: 55px;
    border-radius: 12px;
  }
  .snb .snb-list > li {
    height: 45px;
  }
  .snb .snb-list > li .btn {
    border-radius: 8px;
  }
  .snb .snb-list > li .btn::before {
    width: 20px;
    height: 20px;
  }
  .snb .snb-list > li:hover .btn::before, .snb .snb-list > li.active .btn::before {
    background-position: 0 -20px;
  }
  .snb .sub-depth {
    border-radius: 12px;
  }
  .snb .depth-content > li {
    height: 45px;
  }
  .snb.active {
    width: 200px;
  }
}

.content {
  padding-left: 120px;
}
.content .card-box {
  margin-top: 20px;
}
.content .card-box:first-child {
  margin-top: 0;
}
.content .card-box .btn-area.ac {
  justify-content: center;
}
.content .status-ward {
  margin-top: 20px;
}
.content .map {
  margin-top: 20px;
}
.content.map-content .map {
  height: calc(100vh - 235px);
  min-height: 600px;
}
.content.map-content .card-box {
  height: 100%;
}
.content.map-content .card-box .monitoring-map {
  height: 100%;
}
@media screen and (max-width: 1800px) {
  .content {
    padding-left: 110px;
  }
  .content .card-box > .tit-set {
    margin-bottom: 15px;
  }
  .content.map-content .map {
    height: calc(100vh - 225px);
  }
}
@media screen and (max-width: 1600px) {
  .content {
    padding-left: 80px;
  }
}
@media screen and (max-width: 1400px) {
  .content {
    padding-left: 70px;
  }
  .content .card-box {
    margin-top: 15px;
  }
  .content.map-content .map {
    height: calc(100vh - 187px);
  }
  .content .status-ward {
    margin-top: 15px;
  }
}
.tit-set {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 24px;
}
.tit-set h2 {
  font-size: 26px;
  color: var(--color-white);
}
.tit-set h3 {
  font-size: 20px;
  color: var(--color-white);
  line-height: 1.4;
}
.tit-set h3 strong {
  margin-right: 5px;
}
.tit-set .lft-set {
  display: flex;
  align-items: center;
  flex-shrink: 0;
}
.tit-set .lft-set .btn-rect {
  margin-left: 24px;
}
.tit-set .lft-set .btn-refresh {
  margin-left: 15px;
}
.tit-set .lft-set > .total {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  font-size: 16px;
  color: var(--color-white);
}
.tit-set .lft-set > .total .num {
  margin: 0 5px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.tit-set .lft-set > .recent {
  display: flex;
  flex-shrink: 0;
  align-items: center;
  font-size: 12px;
  color: rgba(var(--rgb-on-surface), 0.6);
  font-weight: 400;
}
.tit-set .lft-set .charge-set {
  margin-left: 24px;
}
.tit-set .lft-set .charge-set .total::before {
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
.tit-set .lft-set .charge-set .total .num-set {
  font-size: 16px;
}
.tit-set .lft-set .charge-set .total .num-set strong {
  font-size: 24px;
}
.tit-set .lft-set .charge-set .gender::before {
  margin: 0 15px;
}
.tit-set .lft-set .charge-set .gender-list > li .num-set {
  margin-left: 8px;
}
.tit-set .lft-set .date-set {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: rgba(var(--rgb-on-surface), 0.8);
}
.tit-set .lft-set .date-set .dash {
  margin: 0 5px;
}
.tit-set .lft-set .badge-set {
  display: flex;
  align-items: center;
}
.tit-set .lft-set .badge-set .badge {
  margin-left: 10px;
}
.tit-set .lft-set .badge-set .badge:first-child {
  margin-left: 0;
}
.tit-set .lft-set .btn-list {
  overflow: hidden;
  display: flex;
  align-items: center;
  padding: 0 5px;
  margin-left: 15px;
  border-radius: 8px;
  background: var(--color-bg-43);
}
.tit-set .lft-set .btn-list > li {
  display: flex;
  align-items: center;
}
.tit-set .lft-set .btn-list > li .btn-refresh {
  margin-left: 0;
  border-radius: 0;
}
.tit-set .lft-set .btn-list > li + li::before {
  content: "";
  width: 1px;
  height: 16px;
  margin: 0 5px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.tit-set .lft-set .location {
  display: flex;
  align-items: center;
  margin-left: 20px;
  padding: 8px 16px;
  background: var(--color-bg-18);
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-white);
  font-weight: 400;
}
.tit-set .lft-set .location:before {
  display: none !important;
}
.tit-set .lft-set .location .txt {
  display: flex;
  align-items: center;
  font-weight: 700;
}
.tit-set .lft-set .location .txt::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 8px;
  background: url("/app/assets/images/icon/icon_location-3f1de9977f11eb146db5f05feca09acd.png") no-repeat 0 0;
  background-size: 100%;
}
.tit-set .lft-set .location .txt::after {
  content: "";
  width: 1px;
  height: 16px;
  margin: 0 8px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.tit-set .lft-set > * + *:not(button):not(.btn-list):not(.charge-set)::before {
  content: "";
  display: inline-flex;
  width: 1px;
  height: 16px;
  margin: 0 16px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.tit-set .rgt-set {
  display: flex;
  align-items: center;
  justify-content: flex-end;
  width: 100%;
}
.tit-set .rgt-set .inp-set {
  width: 35%;
  margin-right: 20px;
}
.tit-set .rgt-set .inp-set.search.type2 {
  width: 320px;
  margin: 0 0 0 40px;
}
.tit-set .rgt-set .btn-set {
  display: flex;
  align-items: center;
}
.tit-set .rgt-set .btn-set .btn-rect {
  flex-shrink: 0;
  margin-left: 8px;
}
.tit-set .rgt-set .btn-set .btn-rect:first-child {
  margin-left: 0;
}
.tit-set .rgt-set .status-info {
  display: flex;
  align-items: center;
}
.tit-set .rgt-set .status-info > li {
  display: flex;
  align-items: center;
  font-size: 15px;
  color: var(--color-white);
}
.tit-set .rgt-set .status-info > li + li {
  margin-left: 20px;
}
.tit-set .rgt-set .status-info > li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  margin-right: 8px;
  border-radius: 50%;
}
.tit-set .rgt-set .status-info > li.low::before {
  background: #00D697;
}
.tit-set .rgt-set .status-info > li.mid::before {
  background: #FF822F;
}
.tit-set .rgt-set .status-info > li.high::before {
  background: #F04953;
}
.tit-set .rgt-set .status-info > li.none::before {
  background: #6C7078;
}
.tit-set .rgt-set .battery {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--color-white);
  font-weight: 400;
}
.tit-set .rgt-set .battery:before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.tit-set .rgt-set .battery.full::before {
  background: url("/app/assets/images/icon/icon_battery_full-cf2a7f299d0f5a0a9d5c34aff2c20938.png") no-repeat 0 0;
  background-size: 100%;
}
.tit-set .rgt-set .battery.half::before {
  background: url("/app/assets/images/icon/icon_battery_half-0c3344aeedc75cc211f2cf5bff57054e.png") no-repeat 0 0;
  background-size: 100%;
}
.tit-set .rgt-set .battery.low::before {
  background: url("/app/assets/images/icon/icon_battery_low-87e263c1bae59ade56a6325a9997dac5.png") no-repeat 0 0;
  background-size: 100%;
}
@media screen and (max-width: 1800px) {
  .tit-set h2 {
    font-size: 22px;
  }
  .tit-set .lft-set > .total {
    font-size: 14px;
  }
  .tit-set .lft-set > .total .num {
    font-size: 22px;
  }
  .tit-set .lft-set .charge-set {
    margin-left: 20px;
  }
  .tit-set .lft-set .charge-set .total::before {
    width: 30px;
    height: 30px;
  }
  .tit-set .lft-set .charge-set .total .num-set {
    font-size: 14px;
  }
  .tit-set .lft-set .charge-set .total .num-set strong {
    font-size: 22px;
  }
  .tit-set .lft-set .charge-set .gender::before {
    height: 22px;
  }
  .tit-set .lft-set .charge-set .gender-list > li .badge.circle {
    width: 22px;
    height: 22px;
  }
  .tit-set .lft-set .charge-set .gender-list > li .num-set {
    font-size: 14px;
  }
  .tit-set .lft-set .charge-set .gender-list > li .num-set strong {
    font-size: 22px;
  }
  .tit-set .lft-set .location {
    padding: 6px 12px;
    font-size: 12px;
  }
  .tit-set .lft-set .location .txt::before {
    width: 22px;
    height: 22px;
  }
  .tit-set .lft-set .location .txt::after {
    height: 14px;
  }
  .tit-set .lft-set > * + *:not(button):not(.btn-list):not(.charge-set)::before {
    height: 14px;
    margin: 0 10px;
  }
  .tit-set .rgt-set .inp-set.search.type2 {
    width: 280px;
  }
  .tit-set .rgt-set .battery {
    font-size: 18px;
  }
  .tit-set .rgt-set .battery:before {
    content: "";
    width: 20px;
    height: 20px;
    margin-right: 6px;
  }
  .tit-set h3 {
    font-size: 18px;
  }
}
@media screen and (max-width: 1600px) {
  .tit-set h2 {
    font-size: 20px;
  }
  .tit-set h3 {
    font-size: 16px;
  }
  .tit-set .lft-set > .total .num {
    font-size: 20px;
  }
  .tit-set .lft-set .btn-list {
    padding: 0 4px;
    margin-left: 10px;
    border-radius: 5px;
  }
  .tit-set .lft-set .btn-list > li > button {
    width: 26px;
    height: 26px;
  }
  .tit-set .lft-set .btn-list > li > button::before {
    width: 26px;
    height: 26px;
  }
  .tit-set .lft-set .btn-list > li + li::before {
    width: 1px;
    height: 16px;
    margin: 0 5px;
  }
  .tit-set .lft-set .location {
    margin-left: 15px;
    font-size: 10px;
  }
  .tit-set .lft-set .location .txt::before {
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }
  .tit-set .lft-set .location .txt::after {
    height: 12px;
  }
  .tit-set .rgt-set .battery {
    font-size: 16px;
  }
  .tit-set .rgt-set .battery:before {
    content: "";
    width: 18px;
    height: 18px;
    margin-right: 4px;
  }
}
@media screen and (max-width: 1400px) {
  .tit-set {
    margin-bottom: 20px;
  }
  .tit-set h2 {
    font-size: 18px;
  }
  .tit-set h3 {
    font-size: 14px;
  }
  .tit-set .lft-set > .total {
    font-size: 12px;
  }
  .tit-set .lft-set > .total .num {
    margin: 0 3px;
    font-size: 18px;
  }
  .tit-set .lft-set > .recent {
    font-size: 10px;
  }
  .tit-set .lft-set .charge-set {
    margin-left: 15px;
  }
  .tit-set .lft-set .charge-set .total::before {
    width: 28px;
    height: 28px;
    margin-right: 6px;
  }
  .tit-set .lft-set .charge-set .total .num-set {
    font-size: 13px;
  }
  .tit-set .lft-set .charge-set .total .num-set strong {
    font-size: 20px;
  }
  .tit-set .lft-set .charge-set .gender::before {
    height: 20px;
    margin: 0 10px;
  }
  .tit-set .lft-set .charge-set .gender-list > li .badge.circle {
    width: 20px;
    height: 20px;
  }
  .tit-set .lft-set .charge-set .gender-list > li .num-set {
    margin-left: 6px;
    font-size: 13px;
  }
  .tit-set .lft-set .charge-set .gender-list > li .num-set strong {
    font-size: 20px;
  }
  .tit-set .lft-set .date-set {
    font-size: 11px;
  }
  .tit-set .lft-set .btn-list > li > button {
    width: 24px;
    height: 24px;
  }
  .tit-set .lft-set .btn-list > li > button::before {
    width: 24px;
    height: 24px;
  }
  .tit-set .lft-set .btn-list > li + li::before {
    height: 12px;
    margin: 0 4px;
  }
  .tit-set .lft-set > * + *:not(button):not(.btn-list):not(.charge-set)::before {
    height: 12px;
    margin: 0 12px;
  }
  .tit-set .rgt-set .battery {
    font-size: 14px;
  }
  .tit-set .rgt-set .battery:before {
    content: "";
    width: 16px;
    height: 16px;
    margin-right: 2px;
  }
}
@media screen and (max-width: 1200px) {
  .tit-set h2 {
    font-size: 16px;
  }
  .tit-set h3 {
    font-size: 13px;
  }
  .tit-set .rgt-set .battery {
    font-size: 13px;
  }
  .tit-set .rgt-set .battery:before {
    content: "";
    width: 14px;
    height: 14px;
  }
}

.tit-box {
  padding: 20px 24px;
  border-radius: 20px;
  background: var(--color-bg-18);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.tit-box .tit-set {
  margin-bottom: 0;
}
.tit-box .tit-set .rgt-set .chk-box {
  margin-left: 20px;
}
.tit-box .tit-set .rgt-set .btn-rect {
  margin-left: 70px;
}
.tit-box .total-info-set {
  display: flex;
  flex-wrap: wraps;
  align-items: center;
  margin-top: 20px;
}
.tit-box .total-info-set h3 {
  min-width: 200px;
  font-size: 20px;
  color: var(--color-white);
  line-height: 1.4;
}
.tit-box .total-info-set .charge-set {
  width: auto;
}
.tit-box .total-info-set .info-set {
  display: flex;
  align-items: center;
}
.tit-box .total-info-set .info-set > *:first-child::after {
  content: "";
  width: 1px;
  height: 24px;
  margin: 0 30px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.tit-box .total-info-set .info-set .slct {
  flex-shrink: 0;
  width: 165px;
}
.tit-box .total-info-set .info-set .slct-top {
  height: 42px;
}
.tit-box .total-info-set .info-set .slct-con {
  top: 40px;
}
.tit-box .total-info-set .info-set .slct-tit {
  font-size: 13px;
}
.tit-box .total-info-set .info-set .slct-txt {
  font-size: 13px;
}
.tit-box .total-info-set .info-set .chip-list {
  margin-left: 30px;
}
@media screen and (max-width: 1800px) {
  .tit-box {
    padding: 15px 20px;
  }
}
@media screen and (max-width: 1600px) {
  .tit-box .tit-set .rgt-set .chk-box {
    margin-left: 15px;
  }
  .tit-box .tit-set .rgt-set .chk-box input[type=checkbox] + label {
    font-size: 13px;
  }
  .tit-box .tit-set .rgt-set .btn-rect {
    margin-left: 40px;
  }
  .tit-box .total-info-set {
    margin-top: 15px;
  }
  .tit-box .total-info-set h3 {
    min-width: 155px;
    font-size: 18px;
  }
  .tit-box .total-info-set .info-set > *:first-child::after {
    margin: 0 20px;
  }
  .tit-box .total-info-set .info-set .slct {
    width: 150px;
  }
  .tit-box .total-info-set .info-set .slct-top {
    height: 38px;
  }
  .tit-box .total-info-set .info-set .slct-con {
    top: 36px;
  }
  .tit-box .total-info-set .info-set .chip-list {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1400px) {
  .tit-box {
    padding: 12px 16px;
    border-radius: 15px;
  }
  .tit-box .total-info-set {
    margin-top: 10px;
  }
  .tit-box .total-info-set h3 {
    min-width: 120px;
    font-size: 14px;
  }
  .tit-box .total-info-set .info-set > *:first-child::after {
    height: 14px;
    margin: 0 10px;
  }
  .tit-box .total-info-set .info-set .slct {
    width: 140px;
  }
  .tit-box .total-info-set .info-set .slct-top {
    height: 32px;
  }
  .tit-box .total-info-set .info-set .slct-con {
    top: 30px;
  }
  .tit-box .total-info-set .info-set .slct-tit {
    font-size: 11px;
  }
  .tit-box .total-info-set .info-set .slct-txt {
    font-size: 11px;
  }
  .tit-box .total-info-set .info-set .chip-list {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1200px) {
  .tit-box {
    padding: 10px;
    border-radius: 12px;
  }
}

.card-box {
  position: relative;
  padding: 24px;
  border-radius: 20px;
  background: var(--color-bg-18);
  box-shadow: 0 5px 10px rgba(0, 0, 0, 0.5);
}
.card-box.flex {
  flex-wrap: wrap;
  justify-content: space-between;
}
.card-box.flex .tit-set {
  margin-bottom: 0;
}
.card-box .table-box tbody td a {
  display: block;
  width: 100%;
  color: var(--color-white);
}
.card-box .tab-content {
  padding: 24px;
}
.card-box .tab-content .tit-set {
  margin-top: 40px;
}
.card-box .tab-content .tit-set:first-child {
  margin-top: 0;
}
.card-box .tab-content .table-top {
  margin: 16px 0 40px 0;
}
.card-box .tab-content .btn-area {
  display: flex;
  justify-content: flex-end;
  width: 100%;
  margin-top: 20px;
}
.card-box .tab-content .btn-area.ac {
  justify-content: center;
}
.card-box .tab-content .btn-area .btn-rect {
  height: 60px;
  padding: 0 30px;
  border-radius: 5px;
  font-size: 18px;
}
.card-box .tab-content.detail {
  background: var(--color-bg-27);
  border-radius: 0 0 20px 20px;
}
.card-box .tab-content.detail .detail-box .tit-set {
  justify-content: flex-start;
  margin: 16px 0 40px 0;
}
.card-box .tab-content.detail .detail-box .tit-set .tit {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 700;
}
.card-box .tab-content.detail .detail-box .tit-set .date {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: rgba(var(--rgb-on-surface), 0.8);
  font-weight: 400;
}
.card-box .tab-content.detail .detail-box .tit-set .date::before {
  display: inline-flex;
  content: "";
  width: 1px;
  height: 16px;
  margin: 0 16px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.card-box .tab-content.detail .detail-box .top-info {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 40px;
}
.card-box .tab-content.detail .detail-box .top-info .tit-set {
  margin-bottom: 0;
}
.card-box .tab-content.detail .detail-con {
  width: 100%;
  min-height: 100px;
  padding: 15px;
  background: #ECEFF3;
  border-radius: 12px;
}
.card-box .tab-content .term-box {
  padding: 24px;
  background: var(--color-bg-27);
  border-radius: 12px;
}
.card-box .tab-content .term-con {
  overflow: hidden;
  overflow-y: scroll;
  height: 750px;
  padding-right: 30px;
}
.card-box .tab-content .term-con .term-tit {
  width: 100%;
  margin-bottom: 30px;
  font-size: 20px;
  color: var(--color-white);
  font-weight: 700;
}
.card-box .tab-content .term-con .term-tit p {
  width: 100%;
  font-size: 18px;
  color: var(--color-white);
  font-weight: 300;
}
.card-box .tab-content .term-con .term-list {
  width: 100%;
  font-size: 18px;
  color: var(--color-white);
  font-weight: 300;
}
.card-box .tab-content .term-con .term-list dt {
  width: 100%;
  margin-top: 30px;
  font-size: 18px;
  color: var(--color-white);
  font-weight: 300;
}
.card-box .tab-content .term-con .term-list dd {
  width: 100%;
  margin-left: 20px;
  text-indent: -20px;
}
.card-box .tab-content .term-con .term-list dd .depth2 {
  width: 100%;
  text-indent: 0;
}
.card-box .tab-content .term-con .term-list dd .depth3 {
  width: 100%;
  margin-left: 20px;
}
.card-box .tab-content .term-con .term-list dd .bullet::before {
  content: "";
  display: inline-flex;
  width: 5px;
  height: 5px;
  margin: 12px 10px 0 5px;
  background: #ECEFF3;
  border-radius: 50%;
  vertical-align: top;
}
.card-box .tab-content .term-con .term-list dd .bullet-list {
  width: 100%;
  margin-bottom: 10px;
}
.card-top {
  display: flex;
  width: 100%;
}
.card-top .tit-set {
  margin-bottom: 12px;
}
.card-top .tit-set .tit-list {
  display: flex;
  align-items: center;
}
.card-top .tit-set .tit-list > li {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--color-white);
  font-weight: 700;
}
.card-top .tit-set .tit-list > li + * {
  font-weight: 400;
}
.card-top .tit-set .tit-list > li + *::before {
  content: "";
  width: 1px;
  height: 14px;
  margin: 0 10px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.card-top .tit-set .tit-list > li.recent {
  font-size: 12px;
  color: rgba(var(--rgb-on-surface), 0.6);
}
.card-top .date-info {
  flex-shrink: 0;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: 290px;
  margin-right: 12px;
}
.card-top .date-info .date {
  display: flex;
  align-items: center;
  font-size: 20px;
  color: var(--color-white);
  font-weight: 300;
  line-height: 1;
}
.card-top .date-info .date span {
  display: flex;
  align-items: center;
}
.card-top .date-info .date span::before {
  content: "";
  width: 1px;
  height: 20px;
  margin: 0 10px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.card-top .date-info .date span:first-child::before {
  display: none;
}
.card-top .date-info .time {
  margin-top: 30px;
  font-size: 76px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1;
}
.card-top .notice-list {
  width: 100%;
  min-height: 130px;
}
.card-top .notice-list > li {
  display: flex;
  align-items: center;
  width: 100%;
  height: 40px;
  padding: 0 15px;
  margin-top: 5px;
  border-radius: 8px;
  background: var(--color-bg-43);
}
.card-top .notice-list > li .user {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  margin-left: 20px;
  font-size: 14px;
  color: var(--color-white);
}
.card-top .notice-list > li .user .code {
  margin-left: 12px;
}
.card-top .notice-list > li .notice-con {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 14px;
  color: var(--color-white);
}
.card-top .notice-list > li .notice-con::before {
  content: "";
  width: 1px;
  height: 16px;
  margin: 0 15px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.card-top .notice-list > li .notice-con .time {
  flex-shrink: 0;
}
.card-top .notice-list > li .notice-con .txt {
  display: block;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  margin-left: 12px;
}
.card-top .notice-list > li .notice-con .txt span {
  margin-left: 10px;
  font-weight: 300;
}
.card-top .notice-list > li .notice-con .chip-set {
  display: flex;
  align-items: center;
}
.card-top .notice-list > li .notice-con .chip-set::before {
  content: "";
  width: 1px;
  height: 16px;
  margin: 0 15px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.card-top .notice-list > li .date {
  flex-shrink: 0;
  margin-left: 15px;
  font-size: 14px;
  color: var(--color-white);
}
.card-top .notice-list > li.danger {
  background: #521f32;
}
.card-top .notice-list > li.danger .txt {
  color: rgba(255, 27, 113, 0.8);
  font-weight: 300;
}
.card-top .notice-list > li.danger .date {
  color: rgba(255, 27, 113, 0.8);
  font-weight: 300;
}
.card-top .notice-list > li:first-child {
  margin-top: 0;
}
.card-top .notice-list > li.no-data {
  height: 130px;
  justify-content: center;
  font-size: 18px;
  color: var(--color-white);
}
.card-top .notice-list.msgbox > li > a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 14px;
  color: var(--color-white);
  font-weight: 400;
}
.card-top .notice-list.msgbox > li .lft-con {
  display: flex;
  align-items: center;
  width: 80%;
}
.card-top .notice-list.msgbox > li .lft-con .msg {
  display: flex;
  align-items: center;
}
.card-top .notice-list.msgbox > li .lft-con .msg::after {
  content: "";
  width: 1px;
  height: 16px;
  margin: 0 10px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.card-top .notice-list.msgbox > li .lft-con .msg .from {
  width: 200px;
}
.card-top .notice-list.msgbox > li .lft-con .msg .icon {
  width: 16px;
  height: 17px;
  margin-right: 8px;
  background: url("/app/assets/images/icon/icon_to-da3fb2aecb576af3b77656b76e0237a0.png") no-repeat 0 0;
  background-size: 100%;
}
.card-top .notice-list.msgbox > li .lft-con .msg .to {
  min-width: 45px;
  width: max-content;
}
.card-top .notice-list.msgbox > li .lft-con .txt {
  display: flex;
  align-items: center;
  max-width: 200px !important;
  padding-right: 10px;
  color: var(--color-white);
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.card-top .notice-list.msgbox > li .lft-con .chip.comp {
  color: var(--color-bg-43);
}
.card-inner {
  width: 100%;
  padding: 24px;
  border-radius: 12px;
  background: var(--color-bg-27);
}
.card-inner + * {
  margin-left: 12px;
}
.card-inner + .table-set {
  margin: 20px 0 0;
}
.card-inner.patient {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  width: 480px;
}
.card-inner.patient .tit-set {
  margin: 0;
}
.card-inner.patient .charge-set .gender {
  margin-left: 30px;
}
.card-inner.patient .total-inpatient {
  position: relative;
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  padding: 10px 20px;
  border-radius: 8px;
  background: var(--color-bg-43);
}
.card-inner.patient .total-inpatient .tit {
  display: flex;
  align-items: center;
  flex-shrink: 0;
  font-size: 14px;
  color: var(--color-white);
  font-weight: 500;
}
.card-inner.patient .total-inpatient .total-list {
  display: flex;
  align-items: center;
}
.card-inner.patient .total-inpatient .total-list::before {
  content: "";
  display: block;
  width: 1px;
  height: 16px;
  margin: 0 15px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.card-inner.patient .total-inpatient .total-list .num-set {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--color-white);
}
.card-inner.patient .total-inpatient .total-list .num-set strong {
  padding-right: 5px;
  font-size: 18px;
  font-weight: 700;
}
.card-inner.patient .total-inpatient .total-list .badge-set {
  display: flex;
  margin-left: 10px;
}
.card-inner.patient .total-inpatient .total-list .badge-set .badge {
  margin-left: 10px;
}
.card-inner.patient .total-inpatient .total-list .badge-set .badge:first-child {
  margin-left: 0;
}
.card-inner.patient .total-inpatient .btn-more {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 15px;
  width: 24px;
  height: 24px;
  background: url("/app/assets/images/btn/btn_more-3804c48c51e7800a0e58fc7b2c3750e2.png") no-repeat 0 0;
  background-size: 100%;
}
.card-inner.patient.type2 {
  width: 420px;
}
.card-inner.patient.type2 .charge-set .gender {
  margin-left: 0;
}
.card-inner.patient-info {
  flex-shrink: 0;
  width: 750px;
}
.card-inner.patient-info .tit-set .rgt-set .chip.high {
  background: rgba(255, 47, 47, 0.2);
}
.card-inner.patient-info .info-list {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: 100%;
  margin-top: -5px;
}
.card-inner.patient-info .info-list > li {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  width: calc(60% - 5px);
  min-height: 40px;
  margin: 5px 0 0 5px;
  padding: 0 16px;
  background: var(--color-bg-18);
  border-radius: 8px;
  font-size: 14px;
  color: var(--color-white);
  font-weight: 400;
}
.card-inner.patient-info .info-list > li:nth-child(odd) {
  width: 40%;
  margin-left: 0;
}
.card-inner.patient-info .info-list > li .tit {
  width: 80px;
  font-weight: 700;
}
.card-inner.patient-info .info-list > li .con {
  display: flex;
  align-items: center;
  max-width: 75% !important;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
  font-weight: 400;
}
.card-inner.patient-info .info-list > li .con .badge.circle {
  width: 20px;
  height: 20px;
  margin-right: 8px;
}
.card-inner.thumb {
  flex-shrink: 0;
  width: 216px;
  height: 216px;
}
.card-inner.thumb .thumb-box {
  position: relative;
  overflow: hidden;
  width: 100%;
  height: 100%;
  border-radius: 8px;
  background-color: var(--color-bg-18);
  background-repeat: no-repeat;
  background-position: 50%;
}
.card-inner.thumb .thumb-box.doc {
  background-image: url("/app/assets/images/icon/icon_doctor_def-87fb1704eaa64a8773a3b045e2062d87.png");
  background-size: 90px auto;
}
.card-inner.thumb .thumb-box.nurse {
  background-image: url("/app/assets/images/icon/icon_nurse_def-ad554f3b69a894b70f6bc6a556408040.png");
  background-size: 90px auto;
}
.card-inner.thumb .thumb-box.medical {
  background-image: url("/app/assets/images/icon/icon_medical_def-b15ee7d567ae14388acd88dd6f825f9c.png");
  background-size: 90px auto;
}
.card-inner.thumb .thumb-box .thumb-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}
.card-inner.tab-type .tab-list {
  margin-bottom: 16px;
  background: none;
  border-radius: 0;
}
.card-inner.tab-type .tab-list .tab {
  display: flex;
  align-items: center;
  width: auto;
  height: auto;
  padding: 0;
  background: none;
  border: none;
  border-radius: 0;
  cursor: pointer;
}
.card-inner.tab-type .tab-list .tab + *::before {
  content: "";
  width: 1px;
  height: 14px;
  margin: 0 25px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.card-inner.tab-type .tab-list .tab.active .tit-set h3 {
  color: var(--color-white);
}
.card-inner.tab-type .tab-list .tab.active .tit-set h3.msgbox::before {
  background-position: 0 -20px;
}
.card-inner.tab-type .tab-list .tab.active .tit-set .rgt-set {
  z-index: 0;
  display: block;
  position: absolute;
  right: 0;
  width: auto;
}
.card-inner.tab-type .tab-list .tab .tit-set {
  margin-bottom: 0;
}
.card-inner.tab-type .tab-list .tab .tit-set h3 {
  color: var(--color-bg-a1);
}
.card-inner.tab-type .tab-list .tab .tit-set h3.msgbox {
  display: flex;
  align-items: center;
}
.card-inner.tab-type .tab-list .tab .tit-set h3.msgbox::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 8px;
  background: url("/app/assets/images/icon/icon_msg-e7e0baed754bc61f6c1b972930f9959c.png") no-repeat;
  background-size: 100%;
}
.card-inner.tab-type .tab-list .tab .tit-set .rgt-set {
  display: none;
}
.card-inner.tab-type .tab-content {
  padding: 0;
}
.card-inner .profile-list {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px 8px;
  width: 100%;
}
.card-inner .profile-list li {
  display: flex;
  align-items: center;
  width: calc(50% - 5px);
  height: 48px;
  padding: 0 15px;
  background: var(--color-bg-18);
  border-radius: 8px;
}
.card-inner .profile-list li .tit {
  width: 100px;
  font-size: 18px;
  color: var(--color-white);
}
.card-inner .profile-list li .con {
  font-size: 18px;
  color: var(--color-white);
  font-weight: 300;
}
.card-inner .profile-list li.full {
  width: 100%;
}
.card-inner .change-list li {
  display: flex;
  align-items: center;
  margin-top: 15px;
}
.card-inner .change-list li:first-child {
  margin-top: 0;
}
.card-inner .change-list li .tit {
  flex-shrink: 0;
  width: 170px;
  font-size: 18px;
  color: var(--color-secondary);
  font-weight: 500;
  line-height: 1;
}
.card-inner .change-list li .con {
  display: flex;
  align-items: center;
}
.card-inner .change-list li .con .inp-set {
  width: 320px;
}
.card-inner .change-list li .con .btn-rect {
  margin-left: 15px;
}
.card-inner .station-list li {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.card-inner .station-list li:first-child {
  margin-top: 0;
}
.card-inner .station-list li .tit {
  width: 135px;
  font-size: 18px;
  color: var(--color-white);
  font-weight: 500;
}
.card-inner .station-list li .con {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 500;
}
.card-inner .station-list li .con .num {
  padding: 0 5px;
  font-size: 24px;
  font-weight: 500;
}
.card-inner .station-list li .con span {
  display: flex;
  align-items: center;
  font-size: 18px;
  font-weight: 300;
}
.card-inner .station-list li .con span::before {
  content: "";
  width: 1px;
  height: 18px;
  margin: 0 15px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.card-inner .risk-score {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.card-inner .risk-score > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 130px;
  padding: 20px;
  background: var(--color-bg-18);
  border-radius: 8px;
}
.card-inner .risk-score > li:first-child {
  margin-left: 0;
}
.card-inner .risk-score > li .tit {
  padding-right: 5px;
  font-size: 20px;
  color: var(--color-white);
  font-weight: 400;
}
.card-inner .risk-score > li .score {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 90px;
  height: 90px;
  border: 2px solid;
  border-radius: 50%;
  font-size: 16px;
  color: var(--color-white);
}
.card-inner .risk-score > li .score strong {
  margin-right: 4px;
  font-size: 32px;
  font-weight: 700;
  line-height: 1;
}
.card-inner .risk-score > li .score.low {
  border-color: #B8AC81;
}
.card-inner .risk-score > li .score.mid {
  border-color: #FF822F;
}
.card-inner .risk-score > li .score.high {
  border-color: #F04953;
}
.card-inner .risk-score > li .score.normal {
  border-color: #00D697;
}
.card-inner .risk-score > li .score.unusual {
  border-color: #FF1B71;
}
@media screen and (max-width: 1800px) {
  .card-box {
    padding: 15px;
  }
  .card-box .tab-content {
    padding: 15px;
  }
  .card-box .tab-content .tit-set {
    margin-top: 25px;
  }
  .card-box .tab-content .table-top {
    margin: 15px 0 30px 0;
  }
  .card-box .tab-content .btn-area {
    margin-top: 15px;
  }
  .card-box .tab-content .btn-area .btn-rect {
    height: 50px;
    padding: 0 25px;
    font-size: 16px;
  }
  .card-box .tab-content .term-con {
    height: 650px;
  }
  .card-box .tab-content .term-con .term-tit {
    margin-bottom: 20px;
    font-size: 18px;
  }
  .card-box .tab-content .term-con .term-tit p {
    font-size: 16px;
  }
  .card-box .tab-content .term-con .term-list {
    font-size: 16px;
  }
  .card-box .tab-content .term-con .term-list dt {
    margin-top: 20px;
    font-size: 16px;
  }
  .card-box .tab-content .term-con .term-list dd {
    margin-left: 18px;
    text-indent: -18px;
  }
  .card-box .tab-content .term-con .term-list dd .depth3 {
    margin-left: 18px;
  }
  .card-box .tab-content .term-con .term-list dd .bullet::before {
    margin: 10px 5px 0 5px;
  }
  .card-box .tab-content .term-con .term-list dd .bullet-list {
    margin-bottom: 10px;
  }
  .card-top .tit-set .tit-list > li {
    font-size: 18px;
  }
  .card-top .tit-set .tit-list > li.recent {
    font-size: 11px;
  }
  .card-top .date-info {
    width: 220px;
  }
  .card-top .date-info .date {
    font-size: 18px;
  }
  .card-top .date-info .date span::before {
    height: 18px;
  }
  .card-top .date-info .time {
    font-size: 65px;
  }
  .card-top .notice-list > li .user {
    margin-left: 15px;
  }
  .card-top .notice-list > li .user .code {
    margin-left: 10px;
  }
  .card-top .notice-list > li .notice-con {
    font-size: 14px;
  }
  .card-top .notice-list > li .notice-con::before {
    margin: 0 12px;
  }
  .card-top .notice-list > li .notice-con .txt {
    margin-left: 10px;
  }
  .card-top .notice-list > li .notice-con .txt span {
    margin-left: 5px;
  }
  .card-top .notice-list > li .notice-con .chip-set::before {
    margin: 0 12px;
  }
  .card-top .notice-list > li .date {
    margin-left: 10px;
  }
  .card-top .notice-list > li.no-data {
    font-size: 15px;
  }
  .card-inner {
    padding: 20px;
  }
  .card-inner.patient {
    width: 400px;
  }
  .card-inner.patient .charge-set .gender {
    margin-left: 20px;
  }
  .card-inner.patient .total-inpatient .total-list::before {
    margin: 0 12px;
  }
  .card-inner.patient .total-inpatient .total-list .num-set {
    font-size: 12px;
  }
  .card-inner.patient .total-inpatient .btn-more {
    right: 10px;
  }
  .card-inner.patient-info {
    width: 620px;
  }
  .card-inner.patient-info .info-list > li {
    padding: 0 12px;
    font-size: 13px;
  }
  .card-inner.patient-info .info-list > li .tit {
    width: 70px;
  }
  .card-inner.tab-type .tab-list {
    margin-bottom: 18px;
  }
  .card-inner.tab-type .tab-list .tab + *::before {
    height: 16px;
    margin: 0 20px;
  }
  .card-inner.tab-type .tab-list .tab.active .tit-set h3.msgbox::before {
    background-position: 0 -18px;
  }
  .card-inner.tab-type .tab-list .tab .tit-set h3.msgbox::before {
    width: 18px;
    height: 18px;
  }
  .card-inner .change-list li .tit {
    width: 150px;
    font-size: 16px;
  }
  .card-inner .station-list li {
    margin-top: 20px;
  }
  .card-inner .station-list li .tit {
    width: 120px;
    font-size: 16px;
  }
  .card-inner .station-list li .con {
    font-size: 14px;
  }
  .card-inner .station-list li .con .num {
    font-size: 20px;
  }
  .card-inner .station-list li .con span {
    font-size: 18px;
  }
  .card-inner .station-list li .con span::before {
    height: 16px;
  }
  .card-inner .risk-score > li .tit {
    font-size: 18px;
  }
  .card-inner .risk-score > li .score {
    width: 80px;
    height: 80px;
    font-size: 14px;
  }
  .card-inner .risk-score > li .score strong {
    font-size: 30px;
  }
}
@media screen and (max-width: 1600px) {
  .card-box .tab-content.detail .detail-box .tit-set {
    margin: 16px 0 30px 0;
  }
  .card-box .tab-content.detail .detail-box .tit-set .tit {
    font-size: 18px;
  }
  .card-box .tab-content.detail .detail-box .tit-set .date {
    font-size: 12px;
  }
  .card-box .tab-content.detail .detail-box .tit-set .date::before {
    width: 1px;
    height: 14px;
    margin: 0 15px;
  }
  .card-box .tab-content.detail .detail-box .top-info {
    margin-bottom: 30px;
  }
  .card-top .tit-set .tit-list > li {
    font-size: 16px;
  }
  .card-top .tit-set .tit-list > li + *::before {
    height: 12px;
    margin: 0 8px;
  }
  .card-top .tit-set .tit-list > li.recent {
    font-size: 10px;
  }
  .card-top .notice-list > li.no-data {
    font-size: 14px;
  }
  .card-top .date-info {
    display: none;
  }
  .card-inner + .table-set {
    margin: 15px 0 0;
  }
  .card-inner.patient .charge-set .gender {
    margin-left: 15px;
  }
  .card-inner.patient .total-inpatient {
    height: 40px;
  }
  .card-inner.patient .total-inpatient .badge-set .badge {
    height: 25px;
  }
  .card-inner.patient-info {
    width: 495px;
  }
  .card-inner.patient-info .info-list > li {
    font-size: 12px;
  }
  .card-inner.patient-info .info-list > li .tit {
    width: 62px;
  }
  .card-inner.patient-info .info-list > li .con {
    max-width: 72% !important;
  }
  .card-inner.tab-type .tab-list {
    margin-bottom: 15px;
  }
  .card-inner.tab-type .tab-list .tab + *::before {
    height: 12px;
    margin: 0 15px;
  }
  .card-inner.tab-type .tab-list .tab.active .tit-set h3.msgbox::before {
    background-position: 0 -16px;
  }
  .card-inner.tab-type .tab-list .tab .tit-set h3.msgbox::before {
    width: 16px;
    height: 16px;
    margin-right: 5px;
  }
  .card-inner.thumb {
    width: 176px;
    height: 176px;
  }
  .card-inner.thumb .thumb-box.doc, .card-inner.thumb .thumb-box.nurse {
    background-size: 70px auto;
  }
  .card-inner .profile-list {
    gap: 8px 6px;
  }
  .card-inner .profile-list li {
    width: calc(50% - 3px);
    height: 40px;
  }
  .card-inner .profile-list li .tit {
    width: 80px;
    font-size: 14px;
  }
  .card-inner .profile-list li .con {
    font-size: 14px;
  }
  .card-inner .change-list li {
    margin-top: 10px;
  }
  .card-inner .change-list li .tit {
    width: 130px;
    font-size: 14px;
  }
  .card-inner .station-list li {
    margin-top: 15px;
  }
  .card-inner .station-list li .tit {
    width: 100px;
    font-size: 15px;
  }
  .card-inner .station-list li .con {
    font-size: 13px;
  }
  .card-inner .station-list li .con .num {
    font-size: 18px;
  }
  .card-inner .station-list li .con span {
    font-size: 16px;
  }
  .card-inner .risk-score {
    gap: 10px;
  }
  .card-inner .risk-score > li {
    height: 115px;
    padding: 10px;
  }
  .card-inner .risk-score > li .tit {
    padding-right: 5px;
    font-size: 16px;
  }
  .card-inner .risk-score > li .score {
    width: 70px;
    height: 70px;
    font-size: 12px;
  }
  .card-inner .risk-score > li .score strong {
    font-size: 28px;
  }
}
@media screen and (max-width: 1400px) {
  .card-box {
    padding: 12px;
    border-radius: 15px;
  }
  .card-box .tab-content {
    padding: 12px;
  }
  .card-box .tab-content .btn-area .btn-rect {
    height: 45px;
    padding: 0 20px;
    font-size: 14px;
  }
  .card-box .tab-content.detail .detail-box .tit-set {
    margin: 12px 0 25px 0;
  }
  .card-box .tab-content.detail .detail-box .tit-set .tit {
    font-size: 14px;
  }
  .card-box .tab-content.detail .detail-box .tit-set .date {
    font-size: 11px;
  }
  .card-box .tab-content.detail .detail-box .tit-set .date::before {
    width: 1px;
    height: 12px;
    margin: 0 12px;
  }
  .card-box .tab-content.detail .detail-box .top-info {
    margin-bottom: 25px;
  }
  .card-box .tab-content.detail .detail-con {
    padding: 10px;
  }
  .card-box .tab-content .term-box {
    padding: 20px;
    border-radius: 10px;
  }
  .card-box .tab-content .term-con {
    height: 550px;
    padding-right: 20px;
  }
  .card-box .tab-content .term-con .term-tit {
    margin-bottom: 15px;
    font-size: 16px;
  }
  .card-box .tab-content .term-con .term-tit p {
    font-size: 14px;
  }
  .card-box .tab-content .term-con .term-list {
    font-size: 14px;
  }
  .card-box .tab-content .term-con .term-list dt {
    margin-top: 15px;
    font-size: 14px;
  }
  .card-box .tab-content .term-con .term-list dd {
    margin-left: 15px;
    text-indent: -15px;
  }
  .card-box .tab-content .term-con .term-list dd .depth3 {
    margin-left: 15px;
  }
  .card-box .tab-content .term-con .term-list dd .bullet::before {
    width: 3px;
    height: 3px;
  }
  .card-box .tab-content .term-con .term-list dd .bullet-list {
    margin-bottom: 5px;
  }
  .card-top .tit-set .tit-list > li {
    font-size: 14px;
  }
  .card-top .notice-list {
    min-height: 115px;
  }
  .card-top .notice-list > li {
    height: 35px;
    padding: 0 10px;
    border-radius: 5px;
  }
  .card-top .notice-list > li .user {
    margin-left: 10px;
    font-size: 13px;
  }
  .card-top .notice-list > li .user .code {
    margin-left: 8px;
  }
  .card-top .notice-list > li .chip-rect {
    min-width: 70px;
    height: 20px;
    font-size: 11px;
  }
  .card-top .notice-list > li .notice-con {
    font-size: 13px;
  }
  .card-top .notice-list > li .notice-con::before {
    height: 14px;
    margin: 0 10px;
  }
  .card-top .notice-list > li .notice-con .txt {
    margin-left: 8px;
  }
  .card-top .notice-list > li .notice-con .chip-set .chip {
    height: 20px;
    font-size: 11px;
  }
  .card-top .notice-list > li .notice-con .chip-set::before {
    height: 14px;
    margin: 0 10px;
  }
  .card-top .notice-list > li .date {
    margin-left: 8px;
    font-size: 13px;
  }
  .card-top .notice-list > li.no-data {
    height: 115px;
    font-size: 12px;
  }
  .card-top .notice-list.msgbox > li > a {
    font-size: 13px;
  }
  .card-top .notice-list.msgbox > li .lft-con .msg::after {
    height: 14px;
  }
  .card-top .notice-list.msgbox > li .lft-con .msg .from {
    width: 170px;
  }
  .card-top .notice-list.msgbox > li .lft-con .msg .icon {
    width: 14px;
    height: 15px;
  }
  .card-top .notice-list.msgbox > li .lft-con .msg .to {
    min-width: 35px;
  }
  .card-top .notice-list.msgbox > li .lft-con .txt {
    max-width: 150px !important;
  }
  .card-top .notice-list.msgbox > li .lft-con .chip {
    height: 20px;
    font-size: 11px;
  }
  .card-inner {
    padding: 15px;
    border-radius: 10px;
  }
  .card-inner + * {
    margin-left: 10px;
  }
  .card-inner + .table-set {
    margin: 10px 0 0;
  }
  .card-inner.patient {
    width: 330px;
  }
  .card-inner.patient .charge-set .gender {
    margin-left: 10px;
  }
  .card-inner.patient .total-inpatient {
    height: 40px;
    padding: 8px 15px;
  }
  .card-inner.patient .total-inpatient .tit {
    font-size: 12px;
  }
  .card-inner.patient .total-inpatient .total-list::before {
    height: 14px;
    margin: 0 10px;
  }
  .card-inner.patient .total-inpatient .total-list .num-set strong {
    font-size: 16px;
  }
  .card-inner.patient .total-inpatient .total-list .badge-set .badge {
    margin-left: 5px;
  }
  .card-inner.patient .total-inpatient .total-list .badge-set .badge strong {
    font-size: 14px;
  }
  .card-inner.patient .total-inpatient .btn-more {
    right: 5px;
    width: 20px;
    height: 20px;
  }
  .card-inner.patient.type2 {
    width: 320px;
  }
  .card-inner.patient-info {
    width: 410px;
  }
  .card-inner.patient-info .info-list > li {
    min-height: 35px;
    padding: 0 10px;
    font-size: 12px;
  }
  .card-inner.patient-info .info-list > li .con {
    max-width: 65% !important;
  }
  .card-inner.patient-info .info-list > li .con .badge.circle {
    width: 15px;
    height: 15px;
    margin-right: 4px;
  }
  .card-inner.thumb {
    width: 168px;
    height: 168px;
  }
  .card-inner.tab-type .tab-list .tab + *::before {
    height: 12px;
    margin: 0 10px;
  }
  .card-inner.tab-type .tab-list .tab.active .tit-set h3.msgbox::before {
    background-position: 0 -14px;
  }
  .card-inner.tab-type .tab-list .tab .tit-set h3.msgbox::before {
    width: 14px;
    height: 14px;
  }
  .card-inner .profile-list li {
    padding: 0 12px;
    border-radius: 5px;
  }
  .card-inner .profile-list li .tit {
    width: 80px;
    font-size: 14px;
  }
  .card-inner .profile-list li .con {
    font-size: 14px;
  }
  .card-inner .risk-score {
    gap: 5px;
  }
  .card-inner .risk-score > li {
    height: 100px;
  }
  .card-inner .risk-score > li .tit {
    padding-right: 5px;
    font-size: 14px;
  }
  .card-inner .risk-score > li .score {
    width: 60px;
    height: 60px;
    font-size: 10px;
  }
  .card-inner .risk-score > li .score strong {
    font-size: 26px;
  }
}
@media screen and (max-width: 1200px) {
  .card-box {
    padding: 10px;
    border-radius: 12px;
  }
  .card-box .tab-content {
    padding: 10px;
  }
  .card-box .tab-content .table-top {
    margin: 10px 0 20px 0;
  }
  .card-box .tab-content .btn-area .btn-rect {
    height: 40px;
    padding: 0 15px;
    font-size: 12px;
  }
  .card-top .tit-set .tit-list > li {
    font-size: 13px;
  }
  .card-top .tit-set .tit-list > li + *::before {
    height: 10px;
  }
  .card-top .notice-list {
    min-height: 100px;
  }
  .card-top .notice-list > li {
    height: 30px;
    padding: 0 5px;
    border-radius: 5px;
  }
  .card-top .notice-list > li .user {
    margin-left: 8px;
    font-size: 11px;
  }
  .card-top .notice-list > li .user .code {
    margin-left: 5px;
  }
  .card-top .notice-list > li .chip-rect {
    min-width: 60px;
    height: 18px;
    font-size: 10px;
  }
  .card-top .notice-list > li .notice-con {
    font-size: 11px;
  }
  .card-top .notice-list > li .notice-con::before {
    height: 12px;
    margin: 0 8px;
  }
  .card-top .notice-list > li .notice-con .txt {
    margin-left: 5px;
  }
  .card-top .notice-list > li .notice-con .chip-set .chip {
    height: 18px;
    font-size: 10px;
  }
  .card-top .notice-list > li .notice-con .chip-set::before {
    height: 12px;
    margin: 0 8px;
  }
  .card-top .notice-list > li .date {
    font-size: 12px;
  }
  .card-top .notice-list > li.no-data {
    height: 100px;
    font-size: 11px;
  }
  .card-top .notice-list.msgbox > li > a {
    font-size: 11px;
  }
  .card-top .notice-list.msgbox > li .lft-con .msg::after {
    height: 12px;
    margin: 0 8px;
  }
  .card-top .notice-list.msgbox > li .lft-con .msg .from {
    width: 140px;
  }
  .card-top .notice-list.msgbox > li .lft-con .msg .icon {
    width: 12px;
    height: 13px;
  }
  .card-top .notice-list.msgbox > li .lft-con .msg .to {
    min-width: 30px;
  }
  .card-top .notice-list.msgbox > li .lft-con .chip {
    height: 18px;
    font-size: 10px;
  }
  .card-inner {
    padding: 12px;
    border-radius: 8px;
  }
  .card-inner + * {
    margin-left: 8px;
  }
  .card-inner.patient {
    width: 280px;
  }
  .card-inner.patient .total-inpatient {
    padding: 5px 10px;
  }
  .card-inner.patient .total-inpatient .tit {
    font-size: 10px;
  }
  .card-inner.patient .total-inpatient .total-list::before {
    height: 12px;
    margin: 0 8px;
  }
  .card-inner.patient .total-inpatient .total-list .num-set strong {
    font-size: 12px;
  }
  .card-inner.patient .total-inpatient .total-list .badge-set {
    margin-left: 8px;
  }
  .card-inner.patient .total-inpatient .total-list .badge-set .badge {
    height: 22px;
  }
  .card-inner.patient .total-inpatient .total-list .badge-set .badge strong {
    font-size: 11px;
  }
  .card-inner.patient .total-inpatient .btn-more {
    width: 16px;
    height: 16px;
  }
  .card-inner.patient.type2 {
    width: 250px;
  }
  .card-inner.patient-info {
    width: 385px;
  }
  .card-inner.patient-info .info-list > li {
    min-height: 30px;
    padding: 0 5px;
    border-radius: 5px;
    font-size: 10px;
  }
  .card-inner.patient-info .info-list > li .tit {
    width: 55px;
  }
  .card-inner.patient-info .info-list > li .con .badge.circle {
    width: 12px;
    height: 12px;
    font-size: 10px;
  }
  .card-inner.thumb {
    width: 142px;
    height: 142px;
  }
  .card-inner.thumb .thumb-box {
    border-radius: 5px;
  }
  .card-inner.thumb .thumb-box.doc, .card-inner.thumb .thumb-box.nurse {
    background-size: 60px auto;
  }
  .card-inner.tab-type .tab-list .tab + *::before {
    height: 10px;
  }
  .card-inner .profile-list li {
    height: 34px;
    padding: 0 10px;
  }
  .card-inner .profile-list li .tit {
    width: 70px;
    font-size: 12px;
  }
  .card-inner .profile-list li .con {
    font-size: 12px;
  }
  .card-inner .station-list li {
    margin-top: 10px;
  }
  .card-inner .station-list li .tit {
    width: 80px;
    font-size: 12px;
  }
  .card-inner .station-list li .con {
    font-size: 12px;
  }
  .card-inner .station-list li .con .num {
    font-size: 16px;
  }
  .card-inner .station-list li .con span {
    font-size: 12px;
  }
  .card-inner .station-list li .con span::before {
    height: 12px;
    margin: 0 10px;
  }
}

.patient-bar {
  width: 500px;
  padding: 8px 20px;
  background: var(--color-bg-27);
  border-radius: 12px;
}
.patient-bar a {
  display: flex;
  align-items: center;
}
.patient-bar a .tit {
  flex-shrink: 0;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 700;
}
.patient-bar a .charge-set {
  margin-left: 24px;
}
.patient-bar a .charge-set .total::before {
  content: "";
  width: 32px;
  height: 32px;
  margin-right: 8px;
}
.patient-bar a .charge-set .total .num-set {
  font-weight: 500;
}
.patient-bar a .charge-set .total .num-set strong {
  font-size: 24px;
}
.patient-bar a .charge-set .gender::before {
  margin: 0 15px;
}
.patient-bar a .charge-set .gender-list > li {
  margin-left: 16px;
}
.patient-bar a .charge-set .gender-list > li:first-child {
  margin-left: 0;
}
.patient-bar a .btn-more {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  background: url("/app/assets/images/btn/btn_more-3804c48c51e7800a0e58fc7b2c3750e2.png") no-repeat 0 0;
  background-size: 100%;
}
@media screen and (max-width: 1400px) {
  .patient-bar {
    width: 420px;
    padding: 6px 15px;
  }
  .patient-bar a .tit {
    font-size: 14px;
  }
  .patient-bar a .charge-set {
    margin-left: 18px;
  }
  .patient-bar a .charge-set .total::before {
    width: 28px;
    height: 28px;
    margin-right: 6px;
  }
  .patient-bar a .charge-set .total .num-set strong {
    font-size: 20px;
  }
  .patient-bar a .charge-set .gender::before {
    height: 20px;
    margin: 0 10px;
  }
  .patient-bar a .charge-set .gender-list li {
    margin-left: 10px;
  }
  .patient-bar a .charge-set .gender-list li .num-set strong {
    font-size: 20px;
  }
  .patient-bar a .btn-more {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .patient-bar {
    width: 340px;
    padding: 4px 10px;
    border-radius: 8px;
  }
  .patient-bar a .tit {
    font-size: 12px;
  }
  .patient-bar a .charge-set {
    margin-left: 14px;
  }
  .patient-bar a .charge-set .total::before {
    width: 24px;
    height: 24px;
    margin-right: 6px;
  }
  .patient-bar a .charge-set .total .num-set strong {
    font-size: 16px;
  }
  .patient-bar a .charge-set .gender::before {
    height: 16px;
  }
  .patient-bar a .charge-set .gender-list li {
    margin-left: 6px;
  }
  .patient-bar a .charge-set .gender-list li .num-set strong {
    font-size: 16px;
  }
  .patient-bar a .btn-more {
    width: 18px;
    height: 18px;
  }
}

.charge-set {
  display: flex;
  align-items: center;
  width: 100%;
}
.charge-set .total {
  display: flex;
  align-items: center;
}
.charge-set .total::before {
  content: "";
  width: 48px;
  height: 48px;
  margin-right: 12px;
  background: url("/app/assets/images/icon/icon_patient-145504cd6a7d2f3e611e1b75dcd440f6.png") no-repeat 0 0;
  background-size: 100%;
}
.charge-set .total .num-set {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--color-white);
}
.charge-set .total .num-set strong {
  padding-right: 2px;
  font-size: 32px;
  font-weight: 700;
}
.charge-set .gender {
  display: flex;
  align-items: center;
  margin-left: 0;
}
.charge-set .gender::before {
  content: "";
  width: 1px;
  height: 24px;
  margin: 0 30px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.charge-set .gender-list {
  display: flex;
  align-items: center;
}
.charge-set .gender-list > li {
  display: flex;
  align-items: center;
  width: 100%;
  margin-left: 15px;
}
.charge-set .gender-list > li:first-child {
  margin-left: 0;
}
.charge-set .gender-list > li .num-set {
  display: flex;
  align-items: center;
  margin-left: 10px;
  font-size: 16px;
  color: var(--color-white);
}
.charge-set .gender-list > li .num-set strong {
  padding-right: 5px;
  font-size: 24px;
  font-weight: 700;
}
@media screen and (max-width: 1800px) {
  .charge-set .total::before {
    width: 44px;
    height: 44px;
  }
  .charge-set .gender::before {
    margin: 0 20px;
  }
}
@media screen and (max-width: 1400px) {
  .charge-set .total::before {
    width: 32px;
    height: 32px;
    margin-right: 8px;
  }
  .charge-set .total .num-set {
    font-size: 14px;
  }
  .charge-set .total .num-set strong {
    font-size: 24px;
  }
  .charge-set .gender::before {
    height: 18px;
    margin: 0 12px;
  }
  .charge-set .gender-list > li {
    margin-left: 10px;
  }
  .charge-set .gender-list > li .num-set {
    margin-left: 5px;
    font-size: 14px;
  }
  .charge-set .gender-list > li .num-set strong {
    font-size: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .charge-set .total::before {
    width: 28px;
    height: 28px;
    margin-right: 5px;
  }
  .charge-set .total .num-set {
    font-size: 12px;
  }
  .charge-set .total .num-set strong {
    font-size: 18px;
  }
  .charge-set .gender::before {
    height: 14px;
    margin: 0 10px;
  }
  .charge-set .gender-list > li .num-set {
    font-size: 12px;
  }
  .charge-set .gender-list > li .num-set strong {
    font-size: 16px;
  }
}

.key-indicator {
  display: flex;
  margin-left: auto;
}
.key-indicator-list {
  display: flex;
}
.key-indicator-list > li {
  display: flex;
  flex-wrap: wrap;
  align-content: space-between;
  max-width: 180px;
  height: 80px;
  padding: 15px;
  background: var(--color-bg-27);
  border-radius: 8px;
}
.key-indicator-list > li + * {
  margin-left: 15px;
}
.key-indicator-list > li .tit {
  width: 100%;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1;
}
.key-indicator-list > li .chip-set {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  width: 100%;
}
@media screen and (max-width: 1800px) {
  .key-indicator-list > li {
    max-width: 150px;
  }
  .key-indicator-list > li .tit {
    font-size: 14px;
  }
}
@media screen and (max-width: 1600px) {
  .key-indicator {
    width: 100%;
    margin: 12px 0 0;
  }
  .key-indicator-list > li {
    max-width: 100%;
  }
}
@media screen and (max-width: 1400px) {
  .key-indicator-list > li {
    height: 70px;
    padding: 12px;
  }
  .key-indicator-list > li + * {
    margin-left: 8px;
  }
  .key-indicator-list.weekly::before {
    height: 70px;
    margin: 0 8px;
  }
}
@media screen and (max-width: 1200px) {
  .key-indicator-list > li {
    height: 60px;
  }
  .key-indicator-list > li .tit {
    font-size: 12px;
  }
  .key-indicator-list.weekly::before {
    height: 60px;
  }
}

.graph-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 20px;
}
.graph-top .lft-set .legend-list {
  display: flex;
  align-items: center;
}
.graph-top .lft-set .legend-list > li {
  display: flex;
  align-items: center;
}
.graph-top .lft-set .legend-list > li + li {
  margin-left: 15px;
}
.graph-top .lft-set .legend-list > li .btn-legend {
  height: 24px;
  padding: 0 15px;
  background: var(--color-bg-43);
  border-radius: 12px;
  font-size: 14px;
  color: var(--color-black-10);
  font-weight: 700;
  line-height: 1;
  transition: all 0.2s;
}
.graph-top .lft-set .legend-list > li .btn-legend.Systolic {
  background: #D768B8;
}
.graph-top .lft-set .legend-list > li .btn-legend.Diastolic {
  background: #49BDF2;
}
.graph-top .lft-set .legend-list > li .btn-legend.HR {
  background: #69D39A;
}
.graph-top .lft-set .legend-list > li .btn-legend.BT {
  background: #9776F4;
}
.graph-top .lft-set .legend-list > li .btn-legend.RR {
  background: #F1516E;
}
.graph-top .lft-set .legend-list > li .btn-legend.SpO2 {
  background: #FFA34E;
}
.graph-top .lft-set .legend-list > li .info-value {
  display: flex;
  align-items: center;
  margin-left: 10px;
  transition: all 0.2s;
}
.graph-top .lft-set .legend-list > li .info-value .val {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 500;
  line-height: 1;
}
.graph-top .lft-set .legend-list > li .info-value .val + .val {
  margin-left: 10px;
}
.graph-top .lft-set .legend-list > li .info-value .val::before {
  content: "";
  flex-shrink: 0;
  margin: 2px 5px 0 0;
  font-size: 12px;
  color: rgba(var(--rgb-on-surface), 0.8);
  font-weight: 300;
}
.graph-top .lft-set .legend-list > li .info-value .val.min::before {
  content: "최소";
}
.graph-top .lft-set .legend-list > li .info-value .val.max::before {
  content: "최대";
}
.graph-top .lft-set .legend-list > li.off .info-value, .graph-top .lft-set .legend-list > li.no-data .info-value {
  visibility: hidden;
  width: 0;
  margin-left: -5px;
  opacity: 0;
  pointer-events: none;
}
.graph-top .lft-set .legend-list > li.off .btn-legend, .graph-top .lft-set .legend-list > li.no-data .btn-legend {
  background: var(--color-bg-43);
}
.graph-box {
  position: relative;
  height: 500px;
  padding: 10px;
  border-radius: 10px;
  background: #ECEFF3;
}
.graph-box canvas {
  width: 100%;
  height: 100%;
}
.graph-box .no-data {
  display: none;
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  padding: 20px 40px;
  border-radius: 10px;
  background: rgba(0, 0, 0, 0.6);
  font-size: 18px;
  color: var(--color-white);
}
.graph-box .no-data.show {
  display: block;
}
@media screen and (max-width: 1600px) {
  .graph-top {
    margin-bottom: 15px;
  }
  .graph-top .lft-set .legend-list > li .btn-legend {
    height: 22px;
    padding: 0 10px;
    font-size: 13px;
  }
  .graph-top .lft-set .legend-list > li .info-value .val {
    font-size: 15px;
  }
  .graph-top .lft-set .legend-list > li .info-value .val::before {
    margin: 0 5px 0 0;
    font-size: 11px;
  }
  .graph-box {
    height: 400px;
  }
}
@media screen and (max-width: 1400px) {
  .graph-top {
    margin-bottom: 10px;
  }
  .graph-top .lft-set .legend-list > li + li {
    margin-left: 10px;
  }
  .graph-top .lft-set .legend-list > li .btn-legend {
    height: 20px;
    font-size: 12px;
  }
  .graph-top .lft-set .legend-list > li .info-value {
    margin-left: 8px;
  }
  .graph-top .lft-set .legend-list > li .info-value .val {
    font-size: 13px;
  }
  .graph-top .lft-set .legend-list > li .info-value .val + .val {
    margin-left: 8px;
  }
  .graph-top .lft-set .legend-list > li .info-value .val::before {
    margin: -1px 3px 0 0;
    font-size: 10px;
  }
  .graph-box {
    height: 300px;
  }
}
@media screen and (max-width: 1200px) {
  .graph-top .lft-set .legend-list > li .btn-legend {
    height: 18px;
    padding: 0 8px;
    font-size: 10px;
  }
  .graph-top .lft-set .legend-list > li .info-value {
    margin-left: 4px;
  }
  .graph-top .lft-set .legend-list > li .info-value .val {
    font-size: 12px;
  }
  .graph-top .lft-set .legend-list > li .info-value .val + .val {
    margin-left: 4px;
  }
  .graph-top .lft-set .legend-list > li .info-value .val::before {
    margin: 0 2px 0 0;
  }
  .graph-top .lft-set .legend-list > li.off .info-value {
    margin-left: -2px;
  }
  .graph-box {
    height: 220px;
  }
}

.tooltip-box {
  min-width: 100px;
  padding: 15px;
  border-radius: 5px;
  position: absolute;
  transform: translate(-50%, 0);
  background: rgba(0, 0, 0, 0.8);
  opacity: 1;
  pointer-events: none;
  transition: all 0.1s ease;
}
.tooltip-list > li {
  font-size: 14px;
  color: var(--color-white);
}
.tooltip-list > li .date {
  white-space: nowrap;
  font-size: 13px;
  color: var(--color-white);
}
.tooltip-list > li .info-list {
  margin-top: 10px;
}
.tooltip-list > li .info-list > li {
  display: flex;
  align-items: center;
  white-space: nowrap;
  line-height: 1;
}
.tooltip-list > li .info-list > li + li {
  margin-top: 10px;
}
.tooltip-list > li .info-list > li .bullet {
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  margin-right: 5px;
}
.tooltip-list > li .info-list > li .txt {
  font-size: 14px;
  color: var(--color-white);
}
@media screen and (max-width: 1600px) {
  .tooltip-box {
    padding: 12px;
  }
  .tooltip-list > li {
    font-size: 13px;
  }
  .tooltip-list > li .date {
    font-size: 12px;
  }
  .tooltip-list > li .info-list > li .bullet {
    width: 10px;
    height: 10px;
  }
  .tooltip-list > li .info-list > li .txt {
    font-size: 13px;
  }
}
@media screen and (max-width: 1400px) {
  .tooltip-box {
    min-width: 80px;
    padding: 10px;
  }
  .tooltip-list > li {
    font-size: 12px;
  }
  .tooltip-list > li .date {
    font-size: 11px;
  }
  .tooltip-list > li .info-list {
    margin-top: 8px;
  }
  .tooltip-list > li .info-list > li + li {
    margin-top: 6px;
  }
  .tooltip-list > li .info-list > li .txt {
    font-size: 11px;
  }
}
@media screen and (max-width: 1200px) {
  .tooltip-box {
    padding: 6px;
  }
  .tooltip-list > li {
    font-size: 11px;
  }
  .tooltip-list > li .date {
    font-size: 10px;
  }
  .tooltip-list > li .info-list {
    margin-top: 5px;
  }
  .tooltip-list > li .info-list > li + li {
    margin-top: 4px;
  }
  .tooltip-list > li .info-list > li .bullet {
    width: 8px;
    height: 8px;
  }
  .tooltip-list > li .info-list > li .txt {
    font-size: 10px;
  }
}

.nodata {
  padding: 290px 0;
  background: var(--color-bg-18);
  border-radius: 8px;
  font-size: 18px;
  color: var(--color-white);
  text-align: center;
}
@media screen and (max-width: 1600px) {
  .nodata {
    font-size: 16px;
  }
}
@media screen and (max-width: 1400px) {
  .nodata {
    font-size: 14px;
  }
}

.error-set {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 740px;
  height: 540px;
}
.error-set .tit {
  display: flex;
  align-items: center;
  width: 100%;
  padding-bottom: 40px;
  border-bottom: 1px solid var(--color-white);
  font-size: 42px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.3;
}
.error-set .tit::before {
  content: "";
  width: 180px;
  height: 180px;
  margin-right: 40px;
  background: url("/app/assets/images/bg/bg_error404-3259fd9ec65e27ae2899ce35bd3ac397.png") no-repeat 0 0;
  background-size: 100%;
}
.error-set .con {
  width: 100%;
  padding: 40px 0;
  border-bottom: 1px solid rgba(var(--rgb-on-surface), 0.2);
  color: var(--color-white);
}
.error-set .con .txt {
  width: 100%;
  margin-bottom: 40px;
  font-size: 20px;
  font-weight: 400;
  line-height: 1.4;
}
.error-set .con .code {
  font-size: 36px;
  line-height: 1;
}
.error-set .btn-area {
  width: 100%;
  margin-top: 40px;
}
.error-set .btn-area > * + * {
  margin-left: 10px;
}
.error-set .btn-area button {
  width: 220px;
  height: 60px;
  font-size: 20px;
}
.error-set.error2 .tit::before {
  background: url("/app/assets/images/bg/bg_error500-18d894c18977af64d88dabdd0fbc3e97.png") no-repeat 0 0;
  background-size: 100%;
}
@media screen and (max-width: 1600px) {
  .error-set {
    width: 570px;
    height: 400px;
  }
  .error-set .tit {
    padding-bottom: 30px;
    font-size: 34px;
  }
  .error-set .tit::before {
    width: 120px;
    height: 120px;
    margin-right: 30px;
  }
  .error-set .con {
    padding: 30px 0;
  }
  .error-set .con .txt {
    margin-bottom: 30px;
    font-size: 16px;
  }
  .error-set .con .code {
    font-size: 28px;
  }
  .error-set .btn-area {
    margin-top: 30px;
  }
  .error-set .btn-area button {
    width: 180px;
    height: 45px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .error-set {
    width: 430px;
    height: 300px;
  }
  .error-set .tit {
    padding-bottom: 20px;
    font-size: 24px;
  }
  .error-set .tit::before {
    width: 100px;
    height: 100px;
    margin-right: 20px;
  }
  .error-set .con {
    padding: 20px 0;
  }
  .error-set .con .txt {
    margin-bottom: 20px;
    font-size: 14px;
  }
  .error-set .con .code {
    font-size: 18px;
  }
  .error-set .btn-area {
    margin-top: 20px;
  }
  .error-set .btn-area > * + * {
    margin-left: 5px;
  }
  .error-set .btn-area button {
    width: 140px;
    height: 35px;
    font-size: 14px;
  }
}

.flex {
  display: flex !important;
}

/*******************************************************************
	login
********************************************************************/
#login-wrap {
  position: relative;
  width: 100%;
  min-width: 1024px;
  min-height: 100%;
  padding-bottom: 50px;
  background: var(--color-black-10);
}
#login-wrap .login-box {
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
}
#login-wrap .login-box .tit-set {
  display: block;
  padding-bottom: 15px;
  margin-bottom: 0;
}
#login-wrap .login-box .tit-set .tit {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 700;
}
#login-wrap .login-box .tit-set .stit {
  margin-top: 15px;
  font-size: 14px;
  color: var(--color-secondary);
}
#login-wrap .login-box .tit-set h3.tit {
  font-size: 32px;
  color: var(--color-white);
  font-weight: 500;
}
#login-wrap .login-box .btn-rect {
  width: 100%;
  height: 60px;
  margin-top: 20px;
  border-radius: 8px;
  font-size: 20px;
  color: var(--color-white);
  line-height: 1;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2), inset 1px 1px 0px rgba(var(--rgb-on-surface), 0.2), inset -1px -1px 0px rgba(0, 0, 0, 0.2);
}
#login-wrap .login-box .form-box {
  width: 580px;
  margin: 0 auto;
  padding: 20px;
  background: var(--color-bg-18);
  border-radius: 20px;
}
#login-wrap .login-box .form-set {
  padding: 25px;
  background: var(--color-bg-27);
  border-radius: 20px;
}
#login-wrap .login-box .form-set .form-list li {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
#login-wrap .login-box .form-set .form-list li .tit {
  width: 160px;
  font-size: 16px;
  color: var(--color-white);
}
#login-wrap .login-box .form-set .form-list li:first-child {
  margin-top: 0;
}
#login-wrap .login-box .form-set .form-list li .inp-set {
  width: 100%;
}
#login-wrap .login-box .form-set .form-list li .inp-set .inp {
  width: 100%;
}
#login-wrap .login-box .form-set .form-list li .inp-set.lock {
  display: flex;
  align-items: center;
  background: var(--color-black-10);
  border-radius: 24px !important;
}
#login-wrap .login-box .form-set .form-list li .inp-set.lock .inp {
  width: calc(100% - 180px);
  border: 0;
  padding: 0 10px 0 30px;
  background: transparent;
}
#login-wrap .login-box .form-set .form-list li .inp-set.lock .btn-set {
  display: flex;
  align-items: center;
}
#login-wrap .login-box .form-set .form-list li .inp-set.lock .btn-set .time {
  margin-right: 10px;
  font-size: 16px;
  color: var(--color-white);
}
#login-wrap .login-box .form-set .form-list li .inp-set.lock .btn-set .btn-round {
  flex-shrink: 0;
  height: 32px;
  padding: 0 10px;
  background: var(--color-bg-3f);
  font-size: 16px;
  color: var(--color-white);
}
#login-wrap .login-box .form-set .form-list li .inp-set.lock.error {
  box-shadow: inset 0 0 0 2px #ffde67;
}
#login-wrap .login-box .form-set .form-list li .inp-set.lock.error .inp {
  box-shadow: none;
}
#login-wrap .login-box .form-set .id-info {
  font-size: 16px;
  color: var(--color-white);
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
}
#login-wrap .login-box .form-set .guide-list {
  margin-top: 20px;
}
#login-wrap .login-box .form-set .guide-list li {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--color-bg-a1);
  font-weight: 300;
}
#login-wrap .login-box .form-set .guide-list li::before {
  display: inline-flex;
  content: "";
  width: 3px;
  height: 3px;
  margin-right: 10px;
  background: var(--color-bg-a1);
}
#login-wrap .login-box .btm-set {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-top: 20px;
}
#login-wrap .login-box .btm-set .btn-txt.find::before {
  width: 24px;
  height: 24px;
  background: url("/app/assets/images/btn/btn_key-1f0ab4203e21c51d67c74f7083181a0b.png") no-repeat 0 0;
  background-size: 100%;
}
#login-wrap .login-box .btm-area {
  display: flex;
  justify-content: center;
  margin-top: 20px;
}
#login-wrap .login-box .btm-area .btn-txt.back::before {
  background: url("/app/assets/images/btn/btn_back-b9803773d32fbf569b1d3b55752cc918.png") no-repeat 0 0;
  background-size: 100%;
}
#login-wrap .login-box .tab-content {
  width: 100%;
  padding: 20px;
}
#login-wrap .login-box .tab-content .before {
  display: block;
}
#login-wrap .login-box .tab-content .after {
  display: none;
}
#login-wrap .login-box .tab-content .after .form-list .tit {
  width: 220px;
}
#login-wrap .login-box .error-box {
  display: none;
  align-items: center;
  width: 100%;
  margin-top: 20px;
  padding: 10px 15px;
  background: var(--color-bg-18);
  border-radius: 8px;
}
#login-wrap .login-box .error-box::before {
  display: inline-flex;
  content: "";
  width: 14px;
  height: 14px;
  margin-right: 15px;
  background: url("/app/assets/images/icon/icon_error-7fe34ab783e2c9ae1cdc03743cb057e5.png") no-repeat 0 0;
  background-size: 100%;
}
#login-wrap .login-box .error-box .txt-error {
  font-size: 12px;
  color: #ffde67;
}
#login-wrap .login-box .error-box.error {
  display: inline-flex;
}
#login-wrap .login-box.agree {
  position: inherit;
  top: inherit;
  left: inherit;
  transform: inherit;
}
#login-wrap .login-box.agree .login-top {
  justify-content: center;
  margin-bottom: 0;
  padding: 50px 0;
}
#login-wrap .login-box.agree .term-wrap {
  margin-top: 12px;
}
#login-wrap .login-box.agree .term-wrap .error-box {
  padding: 8px 17px;
}
#login-wrap .login-box.agree .term-wrap .btn-set {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
#login-wrap .login-box.agree .term-wrap .btn-set .btn-rect {
  margin: 0 0 0 20px;
}
#login-wrap .login-box.agree .term-wrap .btn-set .btn-rect:first-child {
  margin-left: 0;
  background: var(--color-bg-3f);
}
#login-wrap .login-box.agree .term-set {
  margin-top: 28px;
}
#login-wrap .login-box.agree .term-set:first-child {
  margin-top: 0;
}
#login-wrap .login-box.agree .term-set .chk-box label {
  font-size: 16px;
}
#login-wrap .login-box.agree .term-box {
  margin-top: 8px;
  padding: 16px 14px 12px 20px;
  background: var(--color-bg-27);
  border-radius: 8px;
}
#login-wrap .login-box.agree .term-box .term-inner {
  overflow: hidden;
  overflow-y: scroll;
  height: 130px;
  padding: 4px 10px 8px 8px;
}
#login-wrap .login-box.agree .term-box .term-inner .tit {
  font-size: 14px;
  color: var(--color-secondary);
}
#login-wrap .login-box.agree .term-box .term-inner .term-list {
  margin-top: 12px;
}
#login-wrap .login-box.agree .term-box .term-inner .term-list li {
  display: flex;
  align-items: flex-start;
  font-size: 14px;
  color: var(--color-secondary);
}
#login-wrap .login-box.agree .term-box .term-inner .term-list li .term-con {
  margin-left: 5px;
  line-height: 1.4;
}
#login-wrap .login-box.nurse {
  position: static;
  transform: none;
  display: flex;
  flex-direction: column;
  justify-content: center;
  height: calc(100vh - 50px);
  min-height: 930px;
}
#login-wrap .login-box.nurse .form-box {
  width: 730px;
}
#login-wrap .login-box.nurse .form-box .form-set + .form-set {
  margin-top: 20px;
}
#login-wrap .login-box.nurse .form-set .station-list > li {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
#login-wrap .login-box.nurse .form-set .station-list > li .tit {
  width: 130px;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 700;
}
#login-wrap .login-box.nurse .form-set .station-list > li .con {
  display: flex;
  width: calc(100% - 130px);
}
#login-wrap .login-box.nurse .form-set .station-list > li .con .slct {
  margin-left: 8px;
}
#login-wrap .login-box.nurse .form-set .station-list > li .con .slct:first-child {
  margin-left: 0;
}
#login-wrap .login-box.nurse .form-set .station-list > li .con.none {
  display: block;
}
#login-wrap .login-box.nurse .form-set .station-list > li .con.none .rdo-set {
  margin-top: 20px;
  justify-content: flex-end;
}
#login-wrap .login-box.nurse .form-set .station-list > li:first-child {
  margin-top: 0;
}
#login-wrap .login-box.nurse .form-set .station-list > li:first-child .con {
  align-items: center;
}
#login-wrap .login-box.nurse .form-set .station-list > li:first-child .con .slct {
  width: 200px;
}
#login-wrap .login-box.nurse .form-set .station-list > li:first-child .con .station-txt {
  margin-left: 20px;
  font-size: 16px;
  color: var(--color-white);
}
#login-wrap .login-box.nurse .form-set .station-list > li:first-child .con .info-txt > li {
  display: flex;
  align-items: flex-start;
}
#login-wrap .login-box.nurse .form-set .station-list > li:first-child .con .info-txt > li::before {
  content: "·";
  margin-right: 5px;
  font-size: 18px;
  line-height: 1;
}
#login-wrap .login-box.nurse .form-set .station-list > li:first-child .con .info-txt > li + li {
  margin-top: 5px;
}
#login-wrap .login-box.nurse .form-set .station-list > li:first-child .con .info-txt > li {
  font-size: 13px;
  color: var(--color-bg-a1);
}
#login-wrap .login-box.nurse .form-set .station-list > li .chk-wrap {
  width: 100%;
  padding: 15px 20px 15px 15px;
  background: var(--color-black-13);
  border-radius: 4px;
}
#login-wrap .login-box.nurse .form-set .station-list > li .chk-inner {
  overflow: hidden;
  overflow-y: scroll;
  width: 100%;
  height: 208px;
}
#login-wrap .login-box.nurse .form-set .station-list > li .chk-set {
  display: flex;
  flex-wrap: wrap;
}
#login-wrap .login-box.nurse .form-set .station-list > li .chk-box {
  width: 33.3333%;
  margin-left: 0;
  padding: 10px 15px 10px 8px;
}
#login-wrap .login-box.nurse .form-set .station-list > li .chk-box input[type=checkbox] + label {
  color: var(--color-white);
}
#login-wrap .login-box.nurse .form-set .station-list.fx-start > li {
  align-items: flex-start;
}
#login-wrap .login-box.nurse .login-btm {
  width: 730px;
}
#login-wrap .login-box.lock {
  width: 580px;
}
#login-wrap .login-box.lock .form-box {
  width: 100%;
}
#login-wrap .login-box.lock .form-box .tit-set .tit {
  display: flex;
  align-items: center;
}
#login-wrap .login-box.lock .form-box .tit-set .tit::before {
  content: "";
  flex-shrink: 0;
  width: 32px;
  height: 32px;
  margin-right: 10px;
  background: url("/app/assets/images/icon/icon_lock-fd6760626ec3cd5f991c4cfbbc465d5b.png") no-repeat 0 0;
  background-size: 100%;
}
#login-wrap .login-box.lock .form-box .info-set {
  text-align: center;
}
#login-wrap .login-box.lock .form-box .info-set .txt p {
  font-size: 16px;
  color: var(--color-white);
}
#login-wrap .login-box.lock .form-box .info-set .txt p + p {
  margin-top: 15px;
}
#login-wrap .login-top {
  display: flex;
  align-items: baseline;
  justify-content: center;
  margin-bottom: 48px;
  line-height: 1.5;
}
#login-wrap .login-top .logo {
  width: 220px;
  height: auto;
}
#login-wrap .login-top .logo img {
  width: 100%;
  height: auto;
}
#login-wrap .tab-list .tab {
  width: 50%;
  padding: 15px 25px;
  font-size: 16px;
}
#login-wrap .tab-list .tab:last-child {
  border-radius: 0 20px 0 0;
}
@media screen and (max-width: 1600px) {
  #login-wrap .login-box .tit-set {
    padding-bottom: 12px;
  }
  #login-wrap .login-box .tit-set .tit {
    font-size: 16px;
  }
  #login-wrap .login-box .tit-set h3.tit {
    font-size: 22px;
  }
  #login-wrap .login-box .btn-rect {
    height: 50px;
    font-size: 18px;
  }
  #login-wrap .login-box .form-box {
    width: 500px;
  }
  #login-wrap .login-box .form-set {
    padding: 20px;
  }
  #login-wrap .login-box .form-set .form-list li .tit {
    width: 140px;
    font-size: 14px;
  }
  #login-wrap .login-box .form-set .form-list li .inp-set.lock .inp {
    width: calc(100% - 160px);
    padding: 0 10px 0 20px;
  }
  #login-wrap .login-box .form-set .form-list li .inp-set.lock .btn-set .time {
    margin-right: 10px;
    font-size: 14px;
  }
  #login-wrap .login-box .form-set .form-list li .inp-set.lock .btn-set .btn-round {
    height: 28px;
    font-size: 14px;
  }
  #login-wrap .login-box .tab-content .after .form-list .tit {
    width: 200px;
  }
  #login-wrap .login-box.agree .term-set .chk-box label {
    font-size: 15px;
  }
  #login-wrap .login-box.agree .term-set .chk-box label::before {
    width: 16px;
    height: 16px;
  }
  #login-wrap .login-box.agree .term-box {
    padding: 12px;
  }
  #login-wrap .login-box.agree .term-box .term-inner {
    height: 110px;
  }
  #login-wrap .login-box.agree .term-box .term-inner .tit {
    font-size: 13px;
  }
  #login-wrap .login-box.agree .term-box .term-inner .term-list {
    margin-top: 10px;
  }
  #login-wrap .login-box.agree .term-box .term-inner .term-list li {
    font-size: 13px;
  }
  #login-wrap .login-box.nurse {
    min-height: 830px;
  }
  #login-wrap .login-top {
    margin-bottom: 40px;
  }
  #login-wrap .login-top .logo {
    width: 200px;
  }
  #login-wrap .tab-list .tab {
    padding: 10px 25px;
  }
}
@media screen and (max-width: 1400px) {
  #login-wrap {
    padding-bottom: 40px;
  }
  #login-wrap .login-box .tit-set h3.tit {
    font-size: 20px;
  }
  #login-wrap .login-box .btn-rect {
    height: 45px;
    margin-top: 15px;
    font-size: 16px;
  }
  #login-wrap .login-box .form-set .form-list li {
    margin-top: 15px;
  }
  #login-wrap .login-box .form-set .form-list li .tit {
    width: 120px;
    font-size: 12px;
  }
  #login-wrap .login-box .tab-content .after .form-list .tit {
    width: 170px;
  }
  #login-wrap .login-box.agree .term-set .chk-box label {
    font-size: 15px;
  }
  #login-wrap .login-box.agree .term-set .chk-box label::before {
    width: 16px;
    height: 16px;
  }
  #login-wrap .login-box.agree .term-box {
    padding: 12px;
  }
  #login-wrap .login-box.agree .term-box .term-inner {
    height: 110px;
  }
  #login-wrap .login-box.agree .term-box .term-inner .tit {
    font-size: 13px;
  }
  #login-wrap .login-box.agree .term-box .term-inner .term-list {
    margin-top: 10px;
  }
  #login-wrap .login-box.agree .term-box .term-inner .term-list li {
    font-size: 13px;
  }
  #login-wrap .login-box.nurse.nurse {
    min-height: 730px;
  }
  #login-wrap .login-box.nurse .form-set .station-list li .tit {
    width: 100px;
    font-size: 14px;
  }
  #login-wrap .login-box.nurse .form-set .station-list li .con {
    width: calc(100% - 100px);
  }
  #login-wrap .login-box.nurse .form-set .station-list li .chk-wrap {
    padding: 15px;
  }
  #login-wrap .login-box.nurse .form-set .station-list li .chk-inner {
    height: 165px;
  }
  #login-wrap .login-box.nurse .form-set .station-list li .chk-box {
    padding: 10px;
  }
  #login-wrap .login-top {
    margin-bottom: 30px;
  }
  #login-wrap .login-top .logo {
    width: 180px;
  }
}

/*******************************************************************
	Monitoring
********************************************************************/
/*******************************************************************
	forms
********************************************************************/
.inp {
  width: 100%;
  height: 100%;
  padding: 0 30px;
  background: var(--color-black-10);
  border: none;
  border-radius: 24px !important;
  font-size: 16px;
  color: var(--color-white);
  line-height: 1;
}
.inp:focus {
  border: 2px solid var(--color-primary);
}
.inp-set {
  width: 100%;
  height: 48px;
}
.inp-set.search {
  position: relative;
  width: 100%;
  height: 40px;
}
.inp-set.search input:focus::-webkit-input-placeholder,
.inp-set.search textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.inp-set.search input:focus:-moz-placeholder,
.inp-set.search textarea:focus:-moz-placeholder {
  color: transparent;
}
.inp-set.search input:focus::-moz-placeholder,
.inp-set.search textarea:focus::-moz-placeholder {
  color: transparent;
}
.inp-set.search input:focus:-ms-input-placeholder,
.inp-set.search textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.inp-set.search input::-ms-input-placeholder {
  color: var(--color-secondary);
}
.inp-set.search input::-webkit-input-placeholder {
  color: var(--color-secondary);
}
.inp-set.search input::-moz-placeholder {
  color: var(--color-secondary);
}
.inp-set.search input:-ms-input-placeholder {
  color: var(--color-secondary);
}
.inp-set.search input:-moz-input-placeholder {
  color: var(--color-secondary);
}
.inp-set.search .inp {
  padding: 0 40px 0 20px;
  border-radius: 40px !important;
  font-size: 14px;
  color: var(--color-secondary);
}
.inp-set.search .btn-search {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 4px;
  width: 32px;
  height: 32px;
  background: url("/app/assets/images/btn/btn_search-f9f76b838b105db8d34d22cdce9c56df.png") no-repeat 0 0;
  background-size: 100%;
}
.inp-set.search.type2 {
  height: 45px;
}
.inp-set.search.type2 input:focus::-webkit-input-placeholder,
.inp-set.search.type2 textarea:focus::-webkit-input-placeholder {
  color: transparent;
}
.inp-set.search.type2 input:focus:-moz-placeholder,
.inp-set.search.type2 textarea:focus:-moz-placeholder {
  color: transparent;
}
.inp-set.search.type2 input:focus::-moz-placeholder,
.inp-set.search.type2 textarea:focus::-moz-placeholder {
  color: transparent;
}
.inp-set.search.type2 input:focus:-ms-input-placeholder,
.inp-set.search.type2 textarea:focus:-ms-input-placeholder {
  color: transparent;
}
.inp-set.search.type2 input::-ms-input-placeholder {
  color: var(--color-secondary);
}
.inp-set.search.type2 input::-webkit-input-placeholder {
  color: var(--color-secondary);
}
.inp-set.search.type2 input::-moz-placeholder {
  color: var(--color-secondary);
}
.inp-set.search.type2 input:-ms-input-placeholder {
  color: var(--color-secondary);
}
.inp-set.search.type2 input:-moz-input-placeholder {
  color: var(--color-secondary);
}
.inp-set.search.type2 .inp {
  background: var(--color-bg-2f);
  color: var(--color-secondary);
}
.inp-set.search.type2 .btn-search {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 4px;
  width: 36px;
  height: 36px;
  background: url("/app/assets/images/btn/btn_search_type2-6cbf032e562f247c81ade3f6d4d508ab.png") no-repeat 0 0;
  background-size: 100%;
}
.inp-set.error .inp {
  box-shadow: inset 0 0 0 2px #ffde67;
}
.inp-set.error .inp:focus {
  border: none;
}
@media screen and (max-width: 1400px) {
  .inp-set {
    height: 40px;
  }
  .inp-set .inp {
    padding: 0 20px;
    font-size: 14px;
  }
  .inp-set.search {
    height: 30px;
  }
  .inp-set.search .inp {
    padding: 0 35px 0 15px;
    font-size: 12px;
  }
  .inp-set.search .btn-search {
    width: 28px;
    height: 28px;
  }
  .inp-set.search.type2 {
    height: 40px;
  }
  .inp-set.search.type2 .btn-search {
    width: 30px;
    height: 30px;
  }
}
.chk-box {
  position: relative;
}
.chk-box input[type=checkbox] {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.chk-box input[type=checkbox] + label {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.chk-box input[type=checkbox] + label::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background: #ECEFF3;
  border: 1px solid var(--color-gray-e3);
  border-radius: 4px;
}
.chk-box input[type=checkbox] + label strong {
  margin: 0 4px;
  font-size: 24px;
  font-weight: 700;
  line-height: 1;
}
.chk-box input[type=checkbox] + label .chip {
  margin-right: 8px;
}
.chk-box input[type=checkbox]:checked + label::before {
  background: #0091FF url("/app/assets/images/icon/icon_chk-c9889464105a11dc47a0631be1eec0a7.png") no-repeat 50%;
  background-size: 10px;
  border-color: var(--color-primary);
}
.chk-box.primary input[type=checkbox] + label {
  font-size: 15px;
  color: var(--color-black-13);
}
.chk-box.primary input[type=checkbox]:checked + label {
  color: var(--color-primary);
}
.chk-box.primary input[type=checkbox]:checked + label::before {
  background-color: var(--color-primary);
}
.chk-box.tooltip input[type=checkbox] + label {
  position: relative;
  font-size: 13px;
  color: var(--color-white);
}
.chk-box.tooltip input[type=checkbox] + label::before {
  border: 1px solid var(--color-primary);
  background-color: rgba(56, 112, 255, 0.2);
}
.chk-box.tooltip input[type=checkbox]:checked + label {
  color: var(--color-primary);
}
.chk-box.tooltip input[type=checkbox]:checked + label .tooltip {
  visibility: visible;
}
.chk-box.tooltip .tooltip {
  visibility: hidden;
  z-index: 100;
  position: absolute;
  bottom: 27px;
  left: -133px;
  width: 280px;
  padding: 2px 8px;
  background: #03DED2;
  border-radius: 12px;
  font-size: 13px;
  color: var(--color-black-10);
  text-align: center;
}
.chk-box.tooltip .tooltip::after {
  content: "";
  position: absolute;
  top: calc(100% - 2px);
  right: calc(50% - 8px);
  border-width: 6px;
  border-style: solid;
  border-color: #03DED2 transparent transparent transparent;
}
.chk-box.tooltip .tooltip strong {
  margin: 0;
  font-size: inherit;
  line-height: inherit;
}
.chk-set {
  display: flex;
  align-items: center;
}
.chk-set .chk-box + .chk-box {
  margin-left: 30px;
}
@media screen and (max-width: 1800px) {
  .chk-box input[type=checkbox] + label {
    font-size: 14px;
  }
  .chk-box input[type=checkbox] + label::before {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
  .chk-box input[type=checkbox] + label strong {
    font-size: 22px;
  }
  .chk-box input[type=checkbox] + label .chip {
    margin-right: 5px;
  }
  .chk-box.primary input[type=checkbox] + label {
    font-size: 14px;
  }
  .chk-set .chk-box + .chk-box {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1400px) {
  .chk-box input[type=checkbox] + label {
    font-size: 12px;
  }
  .chk-box input[type=checkbox] + label::before {
    width: 14px;
    height: 14px;
    margin-right: 6px;
  }
  .chk-box input[type=checkbox] + label strong {
    margin: 0 2px;
    font-size: 18px;
  }
  .chk-box input[type=checkbox]:checked + label::before {
    background-size: 8px;
  }
  .chk-box.primary input[type=checkbox] + label {
    font-size: 12px;
  }
  .chk-box.tooltip input[type=checkbox] + label {
    font-size: 11px;
  }
  .chk-box.tooltip .tooltip {
    bottom: 25px;
    left: -110px;
    width: 232px;
    padding: 2px 5px;
    font-size: 11px;
  }
  .chk-box.tooltip .tooltip::after {
    top: calc(100% - 2px);
    right: calc(50% - 8px);
    border-width: 6px;
  }
  .chk-set .chk-box + .chk-box {
    margin-left: 15px;
  }
}

.rdo-box {
  position: relative;
}
.rdo-box input[type=radio] {
  overflow: hidden;
  position: absolute;
  width: 1px;
  height: 1px;
  padding: 0;
  margin: -1px;
  clip: rect(0, 0, 0, 0);
  border: 0;
}
.rdo-box input[type=radio] + label {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 500;
  line-height: 1;
  cursor: pointer;
  -webkit-user-select: none;
  -moz-user-select: none;
  -ms-user-select: none;
}
.rdo-box input[type=radio] + label::before {
  content: "";
  flex-shrink: 0;
  width: 18px;
  height: 18px;
  margin-right: 10px;
  background: #ECEFF3;
  border: 1px solid var(--color-gray-e3);
  border-radius: 50%;
}
.rdo-box input[type=radio]:checked + label::before {
  background: #0091FF;
  border-color: #0091FF;
  box-shadow: inset 0 0 0 3px var(--color-white);
}
.rdo-set {
  display: flex;
  align-items: center;
}
.rdo-set .rdo-box + .rdo-box {
  margin-left: 30px;
}
@media screen and (max-width: 1800px) {
  .rdo-box input[type=radio] + label {
    font-size: 14px;
  }
  .rdo-box input[type=radio] + label::before {
    width: 16px;
    height: 16px;
    margin-right: 8px;
  }
  .rdo-set .rdo-box + .rdo-box {
    margin-left: 20px;
  }
}
@media screen and (max-width: 1400px) {
  .rdo-box input[type=radio] + label {
    font-size: 12px;
  }
  .rdo-box input[type=radio] + label::before {
    width: 14px;
    height: 14px;
    margin-right: 6px;
  }
  .rdo-box input[type=radio]:checked + label::before {
    background-size: 8px;
  }
  .rdo-set .rdo-box + .rdo-box {
    margin-left: 15px;
  }
}

.slct {
  position: relative;
  width: 100%;
}
.slct-top {
  display: flex;
  align-items: center;
  width: 100%;
  height: 48px;
  padding: 0 10px 0 20px;
  border-radius: 4px;
  background: var(--color-black-13);
  cursor: pointer;
}
.slct-top.active {
  background: var(--color-bg-17);
}
.slct-top.active .slct-tit::after {
  transform: rotate(180deg);
}
.slct-tit {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  font-size: 16px;
  color: var(--color-secondary);
}
.slct-tit::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/app/assets/images/icon/icon_slct_arrow-8faaf50f76ce0aeabefa891ea0d5a5e4.png") no-repeat 0 0;
  background-size: 100%;
}
.slct-con {
  z-index: 2;
  display: none;
  overflow: hidden;
  position: absolute;
  top: 46px;
  left: 0;
  width: 100%;
  border-radius: 0 0 4px 4px;
  background: var(--color-bg-17);
}
.slct-list {
  overflow: hidden;
  overflow-y: auto;
  max-height: 215px;
}
.slct-list > li {
  cursor: pointer;
}
.slct-list > li .slct-txt {
  width: 100%;
  padding: 10px 20px;
  font-size: 16px;
  color: var(--color-secondary);
}
.slct-list > li:hover, .slct-list > li.active {
  background: var(--color-bg-2a);
}
.slct-list > li:hover .slct-txt, .slct-list > li.active .slct-txt {
  color: var(--color-white);
}
.slct.gray .slct-top {
  background: var(--color-bg-27);
}
.slct.gray .slct-con {
  background: var(--color-bg-27);
}
.slct.gray .slct-tit {
  color: var(--color-white);
}
.slct.gray .slct-tit::after {
  background: url("/app/assets/images/icon/icon_slct_arrow_wht-1b1524d6a7ce9754d15b103575d465e0.png") no-repeat 0 0;
  background-size: 100%;
}
.slct.gray .slct-txt {
  color: var(--color-white);
}
.slct.light .slct-top {
  border: 1px solid var(--color-gray-e3);
  background: #ECEFF3;
}
.slct.light .slct-tit {
  color: var(--color-black-3);
}
.slct.light .slct-tit::after {
  background: url("/app/assets/images/icon/icon_slct_arrow_blk-06cf5fd568a5828862e359cc6450cc1a.png") no-repeat 0 0;
  background-size: 100%;
}
.slct.light .slct-con {
  border: 1px solid var(--color-gray-e3);
  border-top: 0;
  background: #ECEFF3;
}
.slct.light .slct-list > li .slct-txt {
  color: var(--color-black-3);
}
.slct.light .slct-list > li:hover, .slct.light .slct-list > li.active {
  background: rgba(217, 217, 217, 0.29);
}
.slct.light .slct-list > li:hover .slct-txt, .slct.light .slct-list > li.active .slct-txt {
  color: var(--color-black-6);
}
@media screen and (max-width: 1800px) {
  .slct-top {
    height: 42px;
    padding: 0 8px 0 15px;
  }
  .slct-tit {
    font-size: 14px;
  }
  .slct-con {
    top: 40px;
  }
  .slct-list {
    max-height: 175px;
  }
  .slct-list > li .slct-txt {
    padding: 8px 15px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1400px) {
  .slct-top {
    height: 38px;
    padding: 0 5px 0 10px;
  }
  .slct-tit {
    font-size: 12px;
  }
  .slct-con {
    top: 36px;
  }
  .slct-list {
    max-height: 135px;
  }
  .slct-list > li .slct-txt {
    padding: 5px 10px;
    font-size: 12px;
  }
}

.textarea-set .guide-txt {
  display: flex;
  justify-content: flex-end;
  margin-top: 10px;
  font-size: 14px;
  color: var(--color-gray-97);
}
@media screen and (max-width: 1800px) {
  .textarea-set .guide-txt {
    font-size: 12px;
  }
}
@media screen and (max-width: 1600px) {
  .textarea-set .guide-txt {
    margin-top: 5px;
    font-size: 11px;
  }
}
@media screen and (max-width: 1400px) {
  .textarea-set .guide-txt {
    font-size: 10px;
  }
}

textarea {
  width: 100%;
  padding: 20px;
  font-size: 18px;
  color: var(--color-black-10);
  font-weight: 400;
}
@media screen and (max-width: 1800px) {
  textarea {
    padding: 15px;
    font-size: 16px;
  }
}
@media screen and (max-width: 1600px) {
  textarea {
    padding: 10px;
    font-size: 14px;
  }
}
@media screen and (max-width: 1400px) {
  textarea {
    padding: 10px;
    font-size: 0.75rem;
  }
}

.badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 28px;
  padding: 0 12px;
  border-radius: 24px;
  font-size: 12px;
  font-weight: 700;
  line-height: 1;
}
.badge strong {
  margin-left: 2px;
  font-size: 16px;
  line-height: 1;
}
.badge.male {
  background: #BAE0FF;
  color: var(--color-bg-49);
}
.badge.female {
  background: #E4D2FF;
  color: #9a5aff;
}
.badge.circle {
  width: 24px;
  height: 24px;
  padding: 0;
  border-radius: 50%;
  border: 0;
}
@media screen and (max-width: 1400px) {
  .badge {
    height: 24px;
    padding: 0 10px;
    font-size: 11px;
  }
  .badge strong {
    font-size: 14px;
  }
  .badge.circle {
    width: 20px;
    height: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .badge {
    height: 20px;
    padding: 0 8px;
    font-size: 10px;
  }
  .badge strong {
    font-size: 12px;
  }
  .badge.circle {
    width: 18px;
    height: 18px;
  }
}

.chip {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 60px;
  height: 28px;
  padding: 0 10px;
  border-radius: 24px;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}
.chip.status {
  height: 24px;
  padding: 0 8px;
  background: var(--color-bg-27);
  border-radius: 28px;
  font-size: 12px;
  color: var(--color-white);
  font-weight: 500;
}
.chip.normal {
  border: 2px solid #00D697;
  color: #00D697;
}
.chip.low {
  border: 2px solid #B8AC81;
  color: #B8AC81;
}
.chip.mid {
  border: 2px solid #FF822F;
  color: #FF822F;
}
.chip.high {
  border: 2px solid #F04953;
  color: #F04953;
}
.chip.unusual {
  border: 2px solid #FF1B71;
  color: #FF1B71;
}
.chip.unpredictable {
  border: 2px solid #686F80;
  color: #686F80;
}
.chip.emergency {
  border: 2px solid #FF1B71;
  color: #FF1B71;
  background: #F9CFCF;
}
.chip-rect {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-width: 80px;
  height: 20px;
  border-radius: 4px;
  font-size: 12px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1;
}
.chip-rect.emergency {
  background: #FF1B71;
}
.chip-rect.ai-emergency {
  background: #F04953;
}
.chip-rect.ai-live {
  background: #9a5aff;
}
.chip-rect.ai-weekly {
  background: #03c189;
}
.chip-rect.vital {
  background: #1CA9E7;
}
.chip-rect.super {
  background: #fe5d02;
}
.chip-rect.live {
  min-width: auto;
  height: 16px;
  padding: 0 4px;
  background: #43FFF5;
  font-size: 10px;
  color: rgba(16, 20, 27, 0.6);
}
.chip-rect.weekly {
  min-width: auto;
  height: 16px;
  padding: 0 4px;
  background: #7796E5;
  font-size: 10px;
  color: rgba(16, 20, 27, 0.6);
}
.chip-list {
  display: flex;
  align-items: center;
}
.chip-list > li {
  display: flex;
  align-items: center;
  margin-left: 25px;
}
.chip-list > li:first-child {
  margin-left: 0;
}
.chip-list > li .num-set {
  display: flex;
  align-items: center;
  margin-left: 10px;
  font-size: 16px;
  color: var(--color-white);
  line-height: 1;
}
.chip-list > li .num-set .num {
  margin-right: 5px;
  font-size: 24px;
}
@media screen and (max-width: 1800px) {
  .chip {
    height: 26px;
  }
  .chip-list > li {
    margin-left: 20px;
  }
  .chip-list > li .num-set {
    font-size: 14px;
  }
  .chip-list > li .num-set .num {
    font-size: 22px;
  }
}
@media screen and (max-width: 1600px) {
  .chip {
    min-width: 55px;
    height: 24px;
    padding: 0 8px;
    font-size: 12px;
  }
  .chip-rect {
    min-width: 70px;
  }
  .chip-list > li .num-set .num {
    font-size: 18px;
  }
}
@media screen and (max-width: 1400px) {
  .chip {
    min-width: 48px;
    height: 22px;
    font-size: 11px;
  }
  .chip-rect {
    min-width: 60px;
    height: 18px;
    font-size: 11px;
  }
  .chip-list > li {
    margin-left: 15px;
  }
  .chip-list > li .num-set {
    margin-left: 8px;
    font-size: 13px;
  }
  .chip-list > li .num-set .num {
    font-size: 16px;
  }
}
@media screen and (max-width: 1200px) {
  .chip {
    height: 20px;
    padding: 0 6px;
    font-size: 10px;
  }
}

.tab-list {
  position: relative;
  display: flex;
  align-items: center;
  gap: 2px;
  width: 100%;
  background: var(--color-bg-2f);
  border-radius: 20px 20px 0 0;
}
.tab-list .tab {
  width: 280px;
  height: 60px;
  padding: 12px 16px 12px 24px;
  background: var(--color-bg-2f);
  font-size: 18px;
  color: var(--color-secondary);
  text-align: left;
  transition: all 0.2s;
}
.tab-list .tab:hover {
  background: var(--color-primary);
  color: var(--color-white);
}
.tab-list .tab.active {
  background: var(--color-primary);
  color: var(--color-white);
}
.tab-list .tab:first-child {
  border-radius: 20px 0 0 0;
}
.tab-list.sub {
  width: auto;
  background: none;
  border-radius: 12px;
}
.tab-list.sub .tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: auto;
  min-width: 180px;
  height: 40px;
  padding: 0 20px;
  background: var(--color-bg-3f);
  font-size: 16px;
}
.tab-list.sub .tab:hover {
  background: rgba(56, 112, 255, 0.7);
}
.tab-list.sub .tab.active {
  background: rgba(56, 112, 255, 0.7);
}
.tab-list.sub .tab:first-child {
  border-radius: 0;
  border-radius: 12px 0 0 12px;
}
.tab-list.sub .tab:last-child {
  border-radius: 0 12px 12px 0;
}
.tab-list .graph-type {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  right: 10px;
  display: flex;
  align-items: center;
}
.tab-list .graph-type .chk-box {
  margin-right: 20px;
}
.tab-list .graph-type .chk-box input[type=checkbox] + label {
  font-weight: 400;
}
.tab-list .graph-type .rdo-set {
  margin-right: 30px;
}
@media screen and (max-width: 1800px) {
  .tab-list.sub .tab {
    width: 180px;
  }
}
@media screen and (max-width: 1600px) {
  .tab-list .tab {
    width: 250px;
    font-size: 16px;
  }
  .tab-list.sub .tab {
    width: 160px;
    font-size: 13px;
  }
}
@media screen and (max-width: 1400px) {
  .tab-list .tab {
    width: 180px;
    height: 40px;
    font-size: 14px;
  }
  .tab-list.sub .tab {
    width: 130px;
    height: 30px;
    padding: 0 12px;
    font-size: 12px;
  }
  .tab-list.sub .tab:first-child {
    border-radius: 10px 0 0 10px;
  }
  .tab-list.sub .tab:last-child {
    border-radius: 0 10px 10px 0;
  }
}

.paging {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 55px 0 75px 0;
}
.paging .btn {
  width: auto;
  min-width: 28px;
  height: 28px;
  margin-left: 5px;
  padding: 0 5px;
  font-size: 13px;
  color: rgba(var(--rgb-on-surface), 0.5);
  font-weight: 400;
}
.paging .btn:first-child {
  margin-left: 0;
}
.paging .btn-prev {
  width: 28px;
  height: 28px;
  background: url("/app/assets/images/btn/btn_paging_prev-05a24755b873ca733c410b87c267614c.png") no-repeat 0 0;
  background-size: 100%;
}
.paging .btn-prev:hover {
  background-color: transparent !important;
}
.paging .btn-next {
  width: 28px;
  height: 28px;
  background: url("/app/assets/images/btn/btn_paging_next-af79858c1b974189573c395a8098fc08.png") no-repeat 0 0;
  background-size: 100%;
}
.paging .btn-next:hover {
  background-color: transparent !important;
}
.paging .btn-first {
  width: 28px;
  height: 28px;
  background: url("/app/assets/images/btn/btn_paging_first-96f7eb06570edc195294165632e43faa.png") no-repeat 0 0;
  background-size: 100%;
}
.paging .btn-first:hover {
  background-color: transparent !important;
}
.paging .btn-last {
  width: 28px;
  height: 28px;
  background: url("/app/assets/images/btn/btn_paging_last-75c4ae32e98e9beb9977142233dde3aa.png") no-repeat 0 0;
  background-size: 100%;
}
.paging .btn-last:hover {
  background-color: transparent !important;
}
.paging .btn.active {
  background-color: #0091ff;
  border-radius: 4px;
  color: var(--color-white);
}
.paging .btn:hover {
  background-color: #0091ff;
  border-radius: 4px;
  color: var(--color-white);
}
.paging.dark .btn {
  color: var(--color-black-1);
}
.paging.dark .btn-prev {
  background: url("/app/assets/images/btn/btn_paging_dark_prev-519d37bfaf98f550412bfb905377af15.png") no-repeat 0 0;
  background-size: 100%;
}
.paging.dark .btn-next {
  background: url("/app/assets/images/btn/btn_paging_dark_next-92ee8d7c25d96b4756b97bd9ea525175.png") no-repeat 0 0;
  background-size: 100%;
}
.paging.dark .btn-first {
  background: url("/app/assets/images/btn/btn_paging_dark_first-f2034ce05c15c82ba0a02c6d8e254d2b.png") no-repeat 0 0;
  background-size: 100%;
}
.paging.dark .btn-last {
  background: url("/app/assets/images/btn/btn_paging_dark_last-4035fae38632924869dabd37f906ec76.png") no-repeat 0 0;
  background-size: 100%;
}
.paging.dark .btn.active {
  color: var(--color-white);
}
.paging.dark .btn:hover {
  color: var(--color-white);
}
@media screen and (max-width: 1600px) {
  .paging {
    padding: 35px 0 55px 0;
  }
  .paging .btn {
    width: 24px;
    height: 24px;
    font-size: 12px;
  }
}
@media screen and (max-width: 1400px) {
  .paging {
    padding: 20px 0 35px 0;
  }
  .paging .btn {
    width: 20px;
    height: 20px;
    margin-left: 3px;
    font-size: 10px;
  }
}

.calendar {
  display: flex;
  align-items: center;
}
.calendar .inp-cal {
  position: relative;
  width: 135px;
  height: 40px;
}
.calendar .inp-cal input {
  width: 100%;
  height: 100%;
  padding: 0 15px 0 40px;
  background: var(--color-bg-27);
  border-radius: 8px;
  border: none;
  font-size: 14px;
  color: var(--color-white);
  font-weight: 400;
}
.calendar .inp-cal input:disabled {
  color: #999;
}
.calendar .inp-cal input:disabled + .ui-datepicker-trigger {
  opacity: 0.4;
}
.calendar .inp-cal .ui-datepicker-trigger {
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 15px;
  width: 16px;
  height: 16px;
  background: url("/app/assets/images/icon/icon_calendar-671020af844f965cf1b6dd91a815d242.png") no-repeat 0 0;
  background-size: 100%;
}
.calendar .cal {
  display: flex;
  align-items: center;
  width: 185px;
  background-color: var(--color-black-10);
}
.calendar .cal .datepicker {
  width: 100%;
  height: 40px;
  padding: 0 12px;
  border: 1px solid;
  font-size: 16px;
}
.calendar .cal .datepicker:disabled {
  border: none;
  background: var(--color-black-10);
}
.calendar .cal .ui-datepicker-trigger {
  flex-shrink: 0;
  width: 27px;
  height: 27px;
  margin-left: 15px;
}
.calendar .dash {
  margin: 0 10px;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 400;
}
.calendar .period-set {
  display: flex;
  align-items: center;
}
.calendar .period-set .slct {
  flex-shrink: 0;
  width: 150px !important;
  margin-right: 10px;
}
.calendar .period-set .period-rdo {
  margin-left: 20px;
}
.calendar .period-set .chk-box {
  flex-shrink: 0;
  margin-left: 20px;
}
.calendar .period-set .chk-box input[type=checkbox] + label {
  font-size: 14px;
  font-weight: 400;
}
@media screen and (max-width: 1400px) {
  .calendar .inp-cal {
    width: 110px;
    height: 30px;
  }
  .calendar .inp-cal input {
    padding: 0 10px 0 30px;
    font-size: 12px;
  }
  .calendar .inp-cal .ui-datepicker-trigger {
    left: 10px;
    width: 13px;
    height: 13px;
  }
  .calendar .dash {
    margin: 0 5px;
  }
}

.ui-datepicker {
  z-index: 5 !important;
}

.scrollbar {
  overflow: hidden;
  overflow-y: scroll;
}
.scrollbar::-webkit-scrollbar {
  display: flex;
  width: 8px;
  height: 8px;
}
.scrollbar::-webkit-scrollbar-track {
  background-color: var(--color-bg-2f);
  border-radius: 2px;
}
.scrollbar::-webkit-scrollbar-thumb {
  background-color: var(--color-primary);
  border-radius: 2px;
}
.scrollbar.type2::-webkit-scrollbar-track {
  background-color: rgba(56, 112, 255, 0.1);
}
.scrollbar.type2::-webkit-scrollbar-thumb {
  background-color: var(--color-bg-2f);
}
.scrollbar.type3::-webkit-scrollbar-track {
  background-color: var(--color-bg-ec);
}
.scrollbar.type3::-webkit-scrollbar-thumb {
  background-color: var(--color-bg-2f);
}
.scrollbar.type4::-webkit-scrollbar-track {
  background-color: transparent;
}
.scrollbar.type4::-webkit-scrollbar-thumb {
  background-color: rgba(var(--rgb-on-surface), 0.3);
}

/*******************************************************************
	tables
********************************************************************/
.table {
  width: 100%;
  text-align: left;
  table-layout: fixed;
}
.table tr.no-data td {
  padding: 80px 0;
  text-align: center;
}
.table th {
  padding: 0 15px 10px;
}
.table th .label {
  font-size: 15px;
  color: var(--color-white);
  font-weight: 500;
  word-break: keep-all;
}
.table th .label .cmt {
  color: rgba(var(--rgb-on-surface), 0.6);
  font-weight: 400;
}
.table th .sort {
  display: flex;
  align-items: center;
  cursor: pointer;
}
.table th .sort .icon-sort {
  display: flex;
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  background: url("/app/assets/images/btn/btn_sort_def-09a35394a66edf99f5c1a10a795b6702.png") no-repeat 0 0;
  background-size: 100%;
}
.table th .sort.up .label, .table th .sort.down .label {
  color: var(--color-primary);
}
.table th .sort.up .icon-sort {
  background: url("/app/assets/images/btn/btn_sort_down-b882302da714f855ec50d6e3c5aef3d0.png") no-repeat 0 0;
  background-size: 100%;
  transform: rotate(180deg);
}
.table th .sort.down .icon-sort {
  background: url("/app/assets/images/btn/btn_sort_down-b882302da714f855ec50d6e3c5aef3d0.png") no-repeat 0 0;
  background-size: 100%;
}
.table th .sort:active .label {
  color: var(--color-primary);
}
.table th .sort:active .icon-sort {
  background: url("/app/assets/images/btn/btn_sort_down-b882302da714f855ec50d6e3c5aef3d0.png") no-repeat 0 0;
  background-size: 100%;
}
.table th.week .cmt {
  color: var(--color-bg-49);
}
.table th.line {
  position: relative;
}
.table th.line::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  margin-top: -5px;
  left: 0;
  width: 1px;
  height: 24px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.table td {
  position: relative;
  padding: 15px;
  border-bottom: 1px solid var(--color-bg-27);
  background: var(--color-bg-18);
  font-size: 18px;
  color: var(--color-white);
}
.table td a {
  color: var(--color-white);
  text-decoration: underline;
  text-underline-position: under;
}
.table td.nodata {
  padding: 230px 0;
  font-size: 18px;
  color: var(--color-white);
}
.table td.line {
  position: relative;
}
.table td.line::before {
  content: "";
  position: absolute;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
  left: 0;
  width: 1px;
  height: 20px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.table td .bullet-list > li {
  display: flex;
  line-height: 1.2;
}
.table td .bullet-list > li::before {
  content: "";
  flex-shrink: 0;
  width: 5px;
  height: 5px;
  margin: 8px 10px 0 0;
  background: #ECEFF3;
  border-radius: 50%;
}
.table td .bullet-list > li + * {
  margin-top: 5px;
}
.table td .icon-msg {
  position: relative;
  display: inline-block !important;
  vertical-align: top;
  width: auto !important;
  margin: 3px 0 0 5px;
}
.table td .icon-msg::before {
  content: "";
  display: inline-flex;
  width: 20px;
  height: 20px;
  background: url("/app/assets/images/icon/icon_msg-000135484c3b3fa4bfdc4b88f8dd52f6.svg") no-repeat 0 0;
  background-size: 100%;
}
.table td .icon-msg .badge {
  z-index: 2;
  position: absolute;
  top: -10px;
  left: 10px;
  height: 20px;
  padding: 0 5px;
  background: var(--color-bg-a1);
  font-size: 14px;
  color: var(--color-black-1);
}
.table tfoot td {
  padding-bottom: 0;
  background: none;
  font-size: 16px;
}
.table tfoot td.total {
  color: var(--color-primary);
}
.table .date-set {
  display: flex;
  align-items: center;
  line-height: 1;
}
.table .date-set .time {
  display: flex;
  align-items: center;
  margin-left: 10px;
}
.table .date-set .time::before {
  content: "";
  width: 1px;
  height: 14px;
  margin-right: 10px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.table .date-set.virtual::after {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-left: 10px;
  border-radius: 50%;
  background: var(--color-secondary);
}
.table-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-bottom: 15px;
}
.table-top .tit-set {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  width: 50%;
  margin-bottom: 0;
}
.table-top .tit-set .date-set {
  display: flex;
  align-items: center;
  margin-left: 20px;
  font-size: 13px;
  color: rgba(var(--rgb-on-surface), 0.8);
  font-weight: 400;
}
.table-top .tit-set .date-set::before {
  content: "";
  width: 1px;
  height: 16px;
  margin-right: 16px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.table-top .tit-set .stit {
  display: flex;
  align-items: center;
  margin-left: 15px;
  font-size: 12px;
  color: rgba(var(--rgb-on-surface), 0.6);
}
.table-top .tit-set .stit::before {
  content: "";
  width: 1px;
  height: 16px;
  margin-right: 15px;
  background: rgba(var(--rgb-on-surface), 0.2);
}
.table-top .inp-set {
  width: 520px;
  margin-left: 20px;
}
.table-box {
  border-radius: 8px;
  background: var(--color-bg-27);
  padding: 15px;
}
.table-accodion tr.toggle-btn {
  cursor: pointer;
}
.table-accodion tr.toggle-btn > td .btn-accodion {
  position: relative;
  width: 50px;
  height: 28px;
  border-radius: 4px;
}
.table-accodion tr.toggle-btn > td .btn-accodion::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 20px;
  height: 20px;
  background: url("/app/assets/images/btn/btn_accordion-887f8ebac675a5d1b8b44c9732f1518e.png") no-repeat 0 0;
  background-size: 100% auto;
}
.table-accodion tr.toggle-btn:hover > td, .table-accodion tr.toggle-btn.active > td {
  background: #2A3D6D;
  border-color: #2A3D6D;
}
.table-accodion tr.toggle-btn.active > td .btn-accodion {
  background: var(--color-primary);
}
.table-accodion tr.toggle-btn.active > td .btn-accodion::before {
  background-position: 0 -20px;
}
.table-accodion tr.toggle-con {
  display: none;
}
.table-accodion tr.toggle-con > td {
  padding: 0 15px 15px;
  border-bottom: 0;
  background: #2A3D6D;
}
.table-accodion tr.toggle-con > td .inner-wrap {
  display: flex;
}
.table-accodion tr.toggle-con > td .inner-wrap > .inner-box {
  width: 50%;
}
.table-accodion tr.toggle-con > td .inner-wrap > .inner-box:only-child {
  width: 100%;
}
.table-accodion tr.toggle-con > td .inner-box {
  padding: 15px;
  background: var(--color-bg-18);
}
.table-accodion tr.toggle-con > td .inner-box .table-top {
  margin: 0 0 20px;
}
.table-accodion tr.toggle-con > td .inner-box .table-box {
  padding: 0 15px 15px;
  max-height: 362px;
}
.table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list {
  display: flex;
  width: 100%;
  min-height: 347px;
}
.table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li {
  position: relative;
  width: 33.3333333%;
  background: var(--color-bg-18);
}
.table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li + * {
  margin-left: 20px;
}
.table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li .tit {
  position: sticky;
  top: 0;
  display: flex;
  align-items: center;
  width: 100%;
  padding: 20px;
  background: var(--color-bg-27);
  font-size: 13px;
  color: var(--color-white);
  font-weight: 700;
}
.table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li .bullet-list {
  overflow-y: auto;
  width: 100%;
  max-height: 288px;
  padding: 15px 20px;
  background: var(--color-bg-18);
}
.table-inner thead {
  z-index: 2;
  position: sticky;
  top: 0;
}
.table-inner thead th {
  padding: 10px 15px;
  background: var(--color-bg-27);
}
.table-inner th .label {
  font-size: 13px;
  font-weight: 400;
}
.table.list td:first-child {
  padding-left: 40px;
}
.table.form td {
  background: none;
}
.table.form td.v-top {
  vertical-align: top;
}
.table.form td .label {
  display: flex;
  margin-top: 6px;
  font-size: 18px;
  color: var(--color-white);
}
.table.form td .label.essential::after {
  content: "*";
  margin-left: 5px;
  font-size: 22px;
  color: var(--color-primary);
  line-height: 1.3;
}
.table.form td .form-set .inp {
  width: 185px;
  height: 40px;
  padding: 0 15px;
  border-radius: 4px !important;
  background: var(--color-black-10);
  font-size: 16px;
  color: var(--color-white);
}
.table.form td .form-set .inp-set {
  height: 40px;
}
.table.form td .form-set .slct-set {
  display: flex;
  gap: 0 10px;
}
.table.form td .form-set .slct-set .slct select {
  width: 185px;
  height: 40px;
  padding: 0 15px;
  border-radius: 4px !important;
  font-size: 16px;
  color: var(--color-white);
  background: var(--color-black-10) url("/app/assets/images/icon/icon_slct-920e5a56c981ea0360b2206dd0198685.svg") no-repeat 95% 50%;
}
.table.form td .form-set .err-txt {
  display: none;
  margin-top: 5px;
  font-size: 14px;
  color: #ff0000;
  font-weight: 300;
}
.table.form td .form-set.error .err-txt {
  display: block;
}
@media screen and (max-width: 1800px) {
  .table tr.no-data td {
    padding: 60px 0;
  }
  .table th .label {
    font-size: 14px;
  }
  .table th .sort .icon-sort {
    width: 18px;
    height: 18px;
  }
  .table td {
    font-size: 15px;
  }
  .table td.nodata {
    padding: 200px 0;
    font-size: 15px;
  }
  .table td .icon-msg {
    margin: 2px 0 0 5px;
  }
  .table td .icon-msg .badge {
    position: absolute;
    top: -6px;
    left: 10px;
    height: 16px;
    font-size: 13px;
  }
  .table tfoot td {
    font-size: 13px;
  }
  .table .date-set {
    font-size: 15px;
  }
  .table .date-set.virtual::after {
    width: 8px;
    height: 8px;
    margin-left: 8px;
  }
  .table-top .inp-set {
    width: 380px;
  }
  .table-accodion tr.toggle-btn > td .btn-accodion {
    width: 45px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-top {
    margin: 0 0 15px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box {
    max-height: 360px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list {
    min-height: 345px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li .tit {
    font-size: 14px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li .bullet-list {
    min-height: 286px;
  }
}
@media screen and (max-width: 1600px) {
  .table th {
    padding: 0 10px 10px;
  }
  .table th .label {
    font-size: 13px;
  }
  .table th .sort .icon-sort {
    width: 15px;
    height: 15px;
  }
  .table td {
    padding: 10px;
    font-size: 14px;
  }
  .table td.nodata {
    padding: 160px 0;
    font-size: 14px;
  }
  .table td .bullet-list > li::before {
    margin: 6px 6px 0 0;
  }
  .table td .icon-msg {
    width: 18px;
    height: 18px;
    margin: 0 0 0 5px;
  }
  .table td .icon-msg .badge {
    font-size: 12px;
  }
  .table tfoot td {
    font-size: 12px;
  }
  .table .date-set {
    font-size: 13px;
  }
  .table .date-set .time::before {
    height: 12px;
  }
  .table-top {
    margin-bottom: 10px;
  }
  .table-top .tit-set .stit {
    margin-left: 10px;
  }
  .table-top .tit-set .stit::before {
    height: 14px;
    margin-right: 10px;
  }
  .table-box {
    padding: 10px;
  }
  .table-accodion tr.toggle-btn > td .btn-accodion::before {
    width: 18px;
    height: 18px;
  }
  .table-accodion tr.toggle-btn.active > td .btn-accodion::before {
    background-position: 0 -18px;
  }
  .table-accodion tr.toggle-con > td {
    padding: 10px;
  }
  .table-accodion tr.toggle-con > td .inner-box {
    padding: 10px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box {
    max-height: 285px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list {
    min-height: 270px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li {
    width: calc(33.3333% - 10px);
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li + * {
    margin-left: 15px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li .tit {
    padding: 20px 15px;
    font-size: 11px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li .bullet-list {
    min-height: 215px;
    padding: 10px 15px;
  }
  .table.list td:first-child {
    padding-left: 30px;
  }
}
@media screen and (max-width: 1400px) {
  .table th .label {
    font-size: 11px;
  }
  .table th .sort .icon-sort {
    width: 12px;
    height: 12px;
  }
  .table td {
    font-size: 12px;
  }
  .table td.nodata {
    padding: 120px 0;
    font-size: 12px;
  }
  .table td .bullet-list > li::before {
    width: 3px;
    height: 3px;
  }
  .table td .icon-msg {
    width: 16px;
    height: 16px;
  }
  .table td .icon-msg .badge {
    position: absolute;
    top: -6px;
    left: 8px;
    height: 13px;
    padding: 0 3px;
    font-size: 11px;
  }
  .table tfoot td {
    font-size: 10px;
  }
  .table .date-set {
    font-size: 11px;
  }
  .table .date-set .time::before {
    height: 10px;
  }
  .table .date-set.virtual::after {
    width: 6px;
    height: 6px;
    margin-left: 5px;
  }
  .table-top .tit-set .stit {
    font-size: 11px;
  }
  .table-top .tit-set .stit::before {
    height: 12px;
  }
  .table-top .inp-set {
    width: 330px;
  }
  .table-accodion tr.toggle-btn > td .btn-accodion {
    width: 40px;
    height: 24px;
  }
  .table-accodion tr.toggle-btn > td .btn-accodion::before {
    width: 14px;
    height: 14px;
  }
  .table-accodion tr.toggle-btn.active > td .btn-accodion::before {
    background-position: 0 -14px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box {
    max-height: 270px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list {
    min-height: 255px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li {
    width: calc(33.3333% - 10px);
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li + * {
    margin-left: 15px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li .tit {
    padding: 20px 10px;
    font-size: 11px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li .bullet-list {
    min-height: 200px;
    padding: 8px 10px;
  }
  .table.list td:first-child {
    padding-left: 20px;
  }
}
@media screen and (max-width: 1200px) {
  .table th {
    padding: 0 8px 8px;
  }
  .table th .label {
    font-size: 10px;
  }
  .table td {
    padding: 8px;
    font-size: 11px;
  }
  .table td.nodata {
    padding: 80px 0;
    font-size: 11px;
  }
  .table .date-set {
    font-size: 10px;
  }
  .table-top .tit-set .stit {
    font-size: 10px;
  }
  .table-box {
    padding: 8px;
  }
  .table-accodion tr.toggle-btn > td .btn-accodion {
    width: 30px;
    height: 20px;
  }
  .table-accodion tr.toggle-btn > td .btn-accodion::before {
    width: 12px;
    height: 12px;
  }
  .table-accodion tr.toggle-btn.active > td .btn-accodion::before {
    background-position: 0 -12px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box {
    max-height: 245px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list {
    min-height: 230px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li .tit {
    font-size: 10px;
  }
  .table-accodion tr.toggle-con > td .inner-box .table-box .analysis-list > li .bullet-list {
    min-height: 176px;
  }
}

/*******************************************************************
	Button
********************************************************************/
.btn-rect {
  height: 40px;
  padding: 0 30px;
  background: var(--color-bg-3f);
  border-radius: 5px;
  font-size: 16px;
  color: var(--color-white);
  line-height: 1;
}
.btn-rect:disabled {
  background: var(--color-bg-3e);
}
.btn-rect.icon {
  display: flex;
  align-items: center;
  padding: 0 15px;
  border-radius: 4px;
  font-size: 14px;
  color: var(--color-white);
}
.btn-rect.icon::before {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.btn-rect.icon.list {
  font-size: 16px;
}
.btn-rect.icon.list::before {
  background: url("/app/assets/images/btn/btn_list-ccc947bfaad7db7bd357b608dc057dd4.png") no-repeat 0 0;
  background-size: 100%;
}
.btn-rect.icon.emr::before {
  background: url("/app/assets/images/btn/btn_emr-bc40024d6e21b9821af0e370e6eed7f6.png") no-repeat 0 0;
  background-size: 100%;
}
.btn-rect.icon.ai::before {
  background: url("/app/assets/images/btn/btn_ai-8558904791c548c1ccea91426ed4b1ff.png") no-repeat 0 0;
  background-size: 100%;
}
.btn-rect.icon.vital::before {
  background: url("/app/assets/images/btn/btn_vital-414e4834976fb7d9446e98842d2c6c2f.png") no-repeat 0 0;
  background-size: 100%;
}
.btn-rect.icon.danger::before {
  background: url("/app/assets/images/btn/btn_danger-7e1c15df338aa6feedb53275934911ee.png") no-repeat 0 0;
  background-size: 100%;
}
.btn-rect.icon.detail::before {
  background: url("/app/assets/images/btn/btn_detail-9aecee857962b5fd73633e915d33d1e5.png") no-repeat 0 0;
  background-size: 100%;
}
.btn-rect.icon.view-map::before {
  background: url("/app/assets/images/btn/btn_map-e40eb25c7904d999692802f4f06a921f.png") no-repeat 0 0;
  background-size: 100%;
}
.btn-rect.outline {
  background: var(--color-bg-27);
  border: 1px solid rgba(var(--rgb-on-surface), 0.2);
  border-radius: 4px;
  font-size: 11px;
  color: rgba(var(--rgb-on-surface), 0.6);
}
.btn-rect.outline.more {
  display: inline-flex;
  align-items: center;
  height: 24px;
  padding: 0 2px 0 12px;
  font-size: 11px;
  color: rgba(var(--rgb-on-surface), 0.6);
}
.btn-rect.outline.more::after {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-left: 8px;
  background: url("/app/assets/images/btn/btn_more_white-a30d0310845fc25af72383e3bc5d9651.png") no-repeat 0 0;
  background-size: 100%;
}
.btn-rect.primary {
  background: var(--color-primary) !important;
}
.btn-rect.primary:disabled {
  background: var(--color-primary-disabled) !important;
}
.btn-rect.gray {
  background: var(--color-bg-6f) !important;
}
.btn-rect.light-gray {
  background: var(--color-bg-d9) !important;
}
@media screen and (max-width: 1400px) {
  .btn-rect {
    height: 30px;
    padding: 0 20px;
    font-size: 12px;
  }
  .btn-rect.icon {
    padding: 0 10px;
    font-size: 12px;
  }
  .btn-rect.icon::before {
    width: 18px;
    height: 18px;
    margin-right: 4px;
  }
  .btn-rect.icon.list {
    font-size: 12px;
  }
  .btn-rect.outline {
    font-size: 10px;
  }
  .btn-rect.outline.more {
    height: 22px;
    padding: 0 0 0 8px;
  }
  .btn-rect.outline.more::after {
    width: 18px;
    height: 18px;
    margin-left: 4px;
  }
}
.btn-round {
  height: 40px;
  padding: 0 20px;
  background: var(--color-primary);
  border-radius: 20px;
  font-size: 16px;
  color: var(--color-white);
  line-height: 1;
}
.btn-round.link {
  display: flex;
  align-items: center;
  padding-right: 10px;
}
.btn-round.link::after {
  content: "";
  width: 24px;
  height: 24px;
  margin-left: 24px;
  background: url("/app/assets/images/btn/btn_link-afba0f5ef403ea95322fe207bae562ef.png") no-repeat 0 0;
  background-size: 100%;
}
.btn-round.link-map {
  display: flex;
  align-items: center;
  padding: 0 10px 0 20px;
}
.btn-round.link-map::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background: url("/app/assets/images/btn/btn_target-dd3bd22cf9fef465f55327adee551008.png") no-repeat 0 0;
  background-size: 100%;
}
.btn-round.link-map::after {
  content: "";
  width: 24px;
  height: 24px;
  margin-left: 5px;
  background: url("/app/assets/images/btn/btn_link-afba0f5ef403ea95322fe207bae562ef.png") no-repeat 0 0;
  background-size: 100%;
}
.btn-round.download {
  display: flex;
  align-items: center;
  height: 35px;
  padding: 0 20px 0 15px;
  background: var(--color-black-10);
  font-size: 14px;
  color: var(--color-secondary);
}
.btn-round.download::before {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 5px;
  background: url("/app/assets/images/icon/ico_download-4deed21a8a5fcd980bd883eb53ba35ae.png") no-repeat 0 0;
  background-size: 100%;
}
@media screen and (max-width: 1400px) {
  .btn-round {
    height: 30px;
    padding: 0 5px 0 15px;
    font-size: 12px;
  }
  .btn-round.link::after {
    width: 18px;
    height: 18px;
    margin-left: 18px;
  }
  .btn-round.link-map {
    padding: 0 5px 0 10px;
  }
  .btn-round.link-map::before {
    width: 14px;
    height: 14px;
  }
  .btn-round.link-map::after {
    width: 18px;
    height: 18px;
  }
  .btn-round.download {
    height: 30px;
    padding: 0 20px 0 15px;
    font-size: 12px;
  }
  .btn-round.download::before {
    width: 20px;
    height: 20px;
  }
}
.btn-txt {
  display: flex;
  align-items: center;
  font-size: 13px;
  color: var(--color-white);
}
.btn-txt::before {
  content: "";
  display: inline-flex;
  align-items: center;
  width: 25px;
  height: 25px;
  margin-right: 10px;
  background-size: 100%;
}
.btn-info {
  display: flex;
  align-items: center;
  width: 20px;
  height: 20px;
  margin-left: 4px;
  background: url("/app/assets/images/icon/icon_info-e8da5cefde424d25bcee297ea273d01d.png") no-repeat 0 0;
  background-size: 100%;
}
@media screen and (max-width: 1400px) {
  .btn-info {
    width: 15px;
    height: 15px;
  }
}
.btn-more {
  width: 28px;
  height: 28px;
  background: url("/app/assets/images/btn/btn_more_plus-acb275f75e3884117839171373b30e3e.png") no-repeat 0 0;
  background-size: 100%;
}
.btn-guide {
  width: 32px;
  height: 32px;
  background: url("/app/assets/images/btn/btn_guide-930040ec40573bab66f663865b246f1d.png") no-repeat 0 0;
  background-size: 100%;
}
@media screen and (max-width: 1400px) {
  .btn-guide {
    width: 26px;
    height: 26px;
  }
}
.btn-play {
  width: 30px;
  height: 30px;
  background: url("/app/assets/images/btn/btn_play-827e230a28cee97402336b22093bce18.svg") no-repeat 0 0;
  background-size: 100%;
}
@media screen and (max-width: 1400px) {
  .btn-play {
    width: 24px;
    height: 24px;
  }
}
.btn-play.active {
  background: url("/app/assets/images/btn/btn_pause-6e13b1bd8c29bb7e7e3b4a1db2c4177c.svg") no-repeat 0 0;
  background-size: 100%;
}
.btn-refresh {
  position: relative;
  width: 32px;
  height: 32px;
  border-radius: 4px;
  background: var(--color-bg-43);
}
.btn-refresh::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: url("/app/assets/images/btn/btn_refresh-dc12d2297a35f87eaf93b1b6a723495c.png") no-repeat 0 0;
  background-size: 100%;
}
@media screen and (max-width: 1400px) {
  .btn-refresh {
    width: 24px;
    height: 24px;
  }
  .btn-refresh::before {
    width: 24px;
    height: 24px;
  }
}
.btn-msg {
  position: relative;
  width: 32px;
  height: 32px;
  background: var(--color-bg-43);
}
.btn-msg::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: url("/app/assets/images/btn/btn_msg-1e24ebcca34f87bb7d7c3cf091511bad.png") no-repeat 0 0;
  background-size: 100%;
}
@media screen and (max-width: 1400px) {
  .btn-msg {
    width: 24px;
    height: 24px;
  }
  .btn-msg::before {
    width: 24px;
    height: 24px;
  }
}
.btn-guardian {
  position: relative;
  width: 32px;
  height: 32px;
  background: var(--color-bg-43);
}
.btn-guardian::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  width: 32px;
  height: 32px;
  background: url("/app/assets/images/btn/btn_guardian-a5b60c8121fb531b8d50606f2afbd75f.png") no-repeat 0 0;
  background-size: 100%;
}
@media screen and (max-width: 1400px) {
  .btn-guardian {
    width: 24px;
    height: 24px;
  }
  .btn-guardian::before {
    width: 24px;
    height: 24px;
  }
}
.btn-group button + * {
  margin-left: 20px;
}
@media screen and (max-width: 1600px) {
  .btn-group button + * {
    margin-left: 15px;
  }
}
@media screen and (max-width: 1400px) {
  .btn-group button + * {
    margin-left: 10px;
  }
}
.btn-screen {
  display: flex;
  align-items: center;
  height: 35px;
  padding: 0 10px;
  border-radius: 4px;
  background: var(--color-bg-43);
  font-size: 13px;
  color: var(--color-white);
  line-height: 1;
}
.btn-screen::before {
  content: "";
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  margin-right: 8px;
}
.btn-screen.compact::before {
  background: url("/app/assets/images/btn/btn_map_compact_off-e207ca3e1b57ace8ee5cedcc74deb426.svg") no-repeat 0 0;
  background-size: 100%;
}
.btn-screen.compact.active {
  background: var(--color-primary);
}
.btn-screen.compact.active::before {
  background: url("/app/assets/images/btn/btn_map_compact_on-73a2ae3e67b60ba7288e8f5c56407221.svg") no-repeat 0 0;
  background-size: 100%;
}
.btn-screen.full::before {
  background: url("/app/assets/images/btn/btn_map_full_off-31bfa37f17666dd366ec2c8d390f801b.svg") no-repeat 0 0;
  background-size: 100%;
}
.btn-screen.full.active {
  background: var(--color-primary);
}
.btn-screen.full.active::before {
  background: url("/app/assets/images/btn/btn_map_full_on-b66b434e9743227ab32744f1675bb08c.svg") no-repeat 0 0;
  background-size: 100%;
}

/**
 * Swiper 8.4.2
 * Most modern mobile touch slider and framework with hardware accelerated transitions
 * https://swiperjs.com
 *
 * Copyright 2014-2022 Vladimir Kharlampidi
 *
 * Released under the MIT License
 *
 * Released on: September 15, 2022
 */
@font-face {
  font-family: swiper-icons;
  src: url("data:application/font-woff;charset=utf-8;base64, d09GRgABAAAAAAZgABAAAAAADAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAAABGRlRNAAAGRAAAABoAAAAci6qHkUdERUYAAAWgAAAAIwAAACQAYABXR1BPUwAABhQAAAAuAAAANuAY7+xHU1VCAAAFxAAAAFAAAABm2fPczU9TLzIAAAHcAAAASgAAAGBP9V5RY21hcAAAAkQAAACIAAABYt6F0cBjdnQgAAACzAAAAAQAAAAEABEBRGdhc3AAAAWYAAAACAAAAAj//wADZ2x5ZgAAAywAAADMAAAD2MHtryVoZWFkAAABbAAAADAAAAA2E2+eoWhoZWEAAAGcAAAAHwAAACQC9gDzaG10eAAAAigAAAAZAAAArgJkABFsb2NhAAAC0AAAAFoAAABaFQAUGG1heHAAAAG8AAAAHwAAACAAcABAbmFtZQAAA/gAAAE5AAACXvFdBwlwb3N0AAAFNAAAAGIAAACE5s74hXjaY2BkYGAAYpf5Hu/j+W2+MnAzMYDAzaX6QjD6/4//Bxj5GA8AuRwMYGkAPywL13jaY2BkYGA88P8Agx4j+/8fQDYfA1AEBWgDAIB2BOoAeNpjYGRgYNBh4GdgYgABEMnIABJzYNADCQAACWgAsQB42mNgYfzCOIGBlYGB0YcxjYGBwR1Kf2WQZGhhYGBiYGVmgAFGBiQQkOaawtDAoMBQxXjg/wEGPcYDDA4wNUA2CCgwsAAAO4EL6gAAeNpj2M0gyAACqxgGNWBkZ2D4/wMA+xkDdgAAAHjaY2BgYGaAYBkGRgYQiAHyGMF8FgYHIM3DwMHABGQrMOgyWDLEM1T9/w8UBfEMgLzE////P/5//f/V/xv+r4eaAAeMbAxwIUYmIMHEgKYAYjUcsDAwsLKxc3BycfPw8jEQA/gZBASFhEVExcQlJKWkZWTl5BUUlZRVVNXUNTQZBgMAAMR+E+gAEQFEAAAAKgAqACoANAA+AEgAUgBcAGYAcAB6AIQAjgCYAKIArAC2AMAAygDUAN4A6ADyAPwBBgEQARoBJAEuATgBQgFMAVYBYAFqAXQBfgGIAZIBnAGmAbIBzgHsAAB42u2NMQ6CUAyGW568x9AneYYgm4MJbhKFaExIOAVX8ApewSt4Bic4AfeAid3VOBixDxfPYEza5O+Xfi04YADggiUIULCuEJK8VhO4bSvpdnktHI5QCYtdi2sl8ZnXaHlqUrNKzdKcT8cjlq+rwZSvIVczNiezsfnP/uznmfPFBNODM2K7MTQ45YEAZqGP81AmGGcF3iPqOop0r1SPTaTbVkfUe4HXj97wYE+yNwWYxwWu4v1ugWHgo3S1XdZEVqWM7ET0cfnLGxWfkgR42o2PvWrDMBSFj/IHLaF0zKjRgdiVMwScNRAoWUoH78Y2icB/yIY09An6AH2Bdu/UB+yxopYshQiEvnvu0dURgDt8QeC8PDw7Fpji3fEA4z/PEJ6YOB5hKh4dj3EvXhxPqH/SKUY3rJ7srZ4FZnh1PMAtPhwP6fl2PMJMPDgeQ4rY8YT6Gzao0eAEA409DuggmTnFnOcSCiEiLMgxCiTI6Cq5DZUd3Qmp10vO0LaLTd2cjN4fOumlc7lUYbSQcZFkutRG7g6JKZKy0RmdLY680CDnEJ+UMkpFFe1RN7nxdVpXrC4aTtnaurOnYercZg2YVmLN/d/gczfEimrE/fs/bOuq29Zmn8tloORaXgZgGa78yO9/cnXm2BpaGvq25Dv9S4E9+5SIc9PqupJKhYFSSl47+Qcr1mYNAAAAeNptw0cKwkAAAMDZJA8Q7OUJvkLsPfZ6zFVERPy8qHh2YER+3i/BP83vIBLLySsoKimrqKqpa2hp6+jq6RsYGhmbmJqZSy0sraxtbO3sHRydnEMU4uR6yx7JJXveP7WrDycAAAAAAAH//wACeNpjYGRgYOABYhkgZgJCZgZNBkYGLQZtIJsFLMYAAAw3ALgAeNolizEKgDAQBCchRbC2sFER0YD6qVQiBCv/H9ezGI6Z5XBAw8CBK/m5iQQVauVbXLnOrMZv2oLdKFa8Pjuru2hJzGabmOSLzNMzvutpB3N42mNgZGBg4GKQYzBhYMxJLMlj4GBgAYow/P/PAJJhLM6sSoWKfWCAAwDAjgbRAAB42mNgYGBkAIIbCZo5IPrmUn0hGA0AO8EFTQAA");
  font-weight: 400;
  font-style: normal;
}
:root {
  --swiper-theme-color:#007aff;
}

.swiper {
  margin-left: auto;
  margin-right: auto;
  position: relative;
  overflow: hidden;
  list-style: none;
  padding: 0;
  z-index: 1;
}

.swiper-vertical > .swiper-wrapper {
  flex-direction: column;
}

.swiper-wrapper {
  position: relative;
  width: 100%;
  height: 100%;
  z-index: 1;
  display: flex;
  transition-property: transform;
  box-sizing: content-box;
}

.swiper-android .swiper-slide, .swiper-wrapper {
  transform: translate3d(0px, 0, 0);
}

.swiper-pointer-events {
  touch-action: pan-y;
}

.swiper-pointer-events.swiper-vertical {
  touch-action: pan-x;
}

.swiper-slide {
  flex-shrink: 0;
  width: 100%;
  height: 100%;
  position: relative;
  transition-property: transform;
}

.swiper-slide-invisible-blank {
  visibility: hidden;
}

.swiper-autoheight, .swiper-autoheight .swiper-slide {
  height: auto;
}

.swiper-autoheight .swiper-wrapper {
  align-items: flex-start;
  transition-property: transform, height;
}

.swiper-backface-hidden .swiper-slide {
  transform: translateZ(0);
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-3d, .swiper-3d.swiper-css-mode .swiper-wrapper {
  perspective: 1200px;
}

.swiper-3d .swiper-cube-shadow, .swiper-3d .swiper-slide, .swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top, .swiper-3d .swiper-wrapper {
  transform-style: preserve-3d;
}

.swiper-3d .swiper-slide-shadow, .swiper-3d .swiper-slide-shadow-bottom, .swiper-3d .swiper-slide-shadow-left, .swiper-3d .swiper-slide-shadow-right, .swiper-3d .swiper-slide-shadow-top {
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 10;
}

.swiper-3d .swiper-slide-shadow {
  background: rgba(0, 0, 0, 0.15);
}

.swiper-3d .swiper-slide-shadow-left {
  background-image: linear-gradient(to left, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-right {
  background-image: linear-gradient(to right, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-top {
  background-image: linear-gradient(to top, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-3d .swiper-slide-shadow-bottom {
  background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.5), rgba(0, 0, 0, 0));
}

.swiper-css-mode > .swiper-wrapper {
  overflow: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}

.swiper-css-mode > .swiper-wrapper::-webkit-scrollbar {
  display: none;
}

.swiper-css-mode > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: start start;
}

.swiper-horizontal.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: x mandatory;
}

.swiper-vertical.swiper-css-mode > .swiper-wrapper {
  scroll-snap-type: y mandatory;
}

.swiper-centered > .swiper-wrapper::before {
  content: "";
  flex-shrink: 0;
  order: 9999;
}

.swiper-centered.swiper-horizontal > .swiper-wrapper > .swiper-slide:first-child {
  margin-inline-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-horizontal > .swiper-wrapper::before {
  height: 100%;
  min-height: 1px;
  width: var(--swiper-centered-offset-after);
}

.swiper-centered.swiper-vertical > .swiper-wrapper > .swiper-slide:first-child {
  margin-block-start: var(--swiper-centered-offset-before);
}

.swiper-centered.swiper-vertical > .swiper-wrapper::before {
  width: 100%;
  min-width: 1px;
  height: var(--swiper-centered-offset-after);
}

.swiper-centered > .swiper-wrapper > .swiper-slide {
  scroll-snap-align: center center;
}

.swiper-virtual .swiper-slide {
  -webkit-backface-visibility: hidden;
  transform: translateZ(0);
}

.swiper-virtual.swiper-css-mode .swiper-wrapper::after {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
}

.swiper-virtual.swiper-css-mode.swiper-horizontal .swiper-wrapper::after {
  height: 1px;
  width: var(--swiper-virtual-size);
}

.swiper-virtual.swiper-css-mode.swiper-vertical .swiper-wrapper::after {
  width: 1px;
  height: var(--swiper-virtual-size);
}

:root {
  --swiper-navigation-size:44px;
}

.swiper-button-next, .swiper-button-prev {
  position: absolute;
  top: 50%;
  width: calc(var(--swiper-navigation-size) / 44 * 27);
  height: var(--swiper-navigation-size);
  margin-top: calc(0px - var(--swiper-navigation-size) / 2);
  z-index: 10;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--swiper-navigation-color, var(--swiper-theme-color));
}

.swiper-button-next.swiper-button-disabled, .swiper-button-prev.swiper-button-disabled {
  opacity: 0.35;
  cursor: auto;
  pointer-events: none;
}

.swiper-button-next.swiper-button-hidden, .swiper-button-prev.swiper-button-hidden {
  opacity: 0;
  cursor: auto;
  pointer-events: none;
}

.swiper-navigation-disabled .swiper-button-next, .swiper-navigation-disabled .swiper-button-prev {
  display: none !important;
}

.swiper-button-next:after, .swiper-button-prev:after {
  font-family: swiper-icons;
  font-size: var(--swiper-navigation-size);
  text-transform: none !important;
  letter-spacing: 0;
  font-variant: initial;
  line-height: 1;
}

.swiper-button-prev, .swiper-rtl .swiper-button-next {
  left: 10px;
  right: auto;
}

.swiper-button-prev:after, .swiper-rtl .swiper-button-next:after {
  content: "prev";
}

.swiper-button-next, .swiper-rtl .swiper-button-prev {
  right: 10px;
  left: auto;
}

.swiper-button-next:after, .swiper-rtl .swiper-button-prev:after {
  content: "next";
}

.swiper-button-lock {
  display: none;
}

.swiper-pagination {
  position: absolute;
  text-align: center;
  transition: 0.3s opacity;
  transform: translate3d(0, 0, 0);
  z-index: 10;
}

.swiper-pagination.swiper-pagination-hidden {
  opacity: 0;
}

.swiper-pagination-disabled > .swiper-pagination, .swiper-pagination.swiper-pagination-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-pagination-bullets, .swiper-pagination-bullets.swiper-pagination-horizontal, .swiper-pagination-custom, .swiper-pagination-fraction {
  bottom: 10px;
  left: 0;
  width: 100%;
}

.swiper-pagination-bullets-dynamic {
  overflow: hidden;
  font-size: 0;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transform: scale(0.33);
  position: relative;
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-main {
  transform: scale(1);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-prev-prev {
  transform: scale(0.33);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next {
  transform: scale(0.66);
}

.swiper-pagination-bullets-dynamic .swiper-pagination-bullet-active-next-next {
  transform: scale(0.33);
}

.swiper-pagination-bullet {
  width: var(--swiper-pagination-bullet-width, var(--swiper-pagination-bullet-size, 8px));
  height: var(--swiper-pagination-bullet-height, var(--swiper-pagination-bullet-size, 8px));
  display: inline-block;
  border-radius: 50%;
  background: var(--swiper-pagination-bullet-inactive-color, #000);
  opacity: var(--swiper-pagination-bullet-inactive-opacity, 0.2);
}

button.swiper-pagination-bullet {
  border: none;
  margin: 0;
  padding: 0;
  box-shadow: none;
  -webkit-appearance: none;
  appearance: none;
}

.swiper-pagination-clickable .swiper-pagination-bullet {
  cursor: pointer;
}

.swiper-pagination-bullet:only-child {
  display: none !important;
}

.swiper-pagination-bullet-active {
  opacity: var(--swiper-pagination-bullet-opacity, 1);
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
}

.swiper-pagination-vertical.swiper-pagination-bullets, .swiper-vertical > .swiper-pagination-bullets {
  right: 10px;
  top: 50%;
  transform: translate3d(0px, -50%, 0);
}

.swiper-pagination-vertical.swiper-pagination-bullets .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets .swiper-pagination-bullet {
  margin: var(--swiper-pagination-bullet-vertical-gap, 6px) 0;
  display: block;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  top: 50%;
  transform: translateY(-50%);
  width: 8px;
}

.swiper-pagination-vertical.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-vertical > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  display: inline-block;
  transition: 0.2s transform, 0.2s top;
}

.swiper-horizontal > .swiper-pagination-bullets .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets .swiper-pagination-bullet {
  margin: 0 var(--swiper-pagination-bullet-horizontal-gap, 4px);
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic {
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
}

.swiper-horizontal > .swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet, .swiper-pagination-horizontal.swiper-pagination-bullets.swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s left;
}

.swiper-horizontal.swiper-rtl > .swiper-pagination-bullets-dynamic .swiper-pagination-bullet {
  transition: 0.2s transform, 0.2s right;
}

.swiper-pagination-progressbar {
  background: rgba(0, 0, 0, 0.25);
  position: absolute;
}

.swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  background: var(--swiper-pagination-color, var(--swiper-theme-color));
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 100%;
  transform: scale(0);
  transform-origin: left top;
}

.swiper-rtl .swiper-pagination-progressbar .swiper-pagination-progressbar-fill {
  transform-origin: right top;
}

.swiper-horizontal > .swiper-pagination-progressbar, .swiper-pagination-progressbar.swiper-pagination-horizontal, .swiper-pagination-progressbar.swiper-pagination-vertical.swiper-pagination-progressbar-opposite, .swiper-vertical > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite {
  width: 100%;
  height: 4px;
  left: 0;
  top: 0;
}

.swiper-horizontal > .swiper-pagination-progressbar.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-horizontal.swiper-pagination-progressbar-opposite, .swiper-pagination-progressbar.swiper-pagination-vertical, .swiper-vertical > .swiper-pagination-progressbar {
  width: 4px;
  height: 100%;
  left: 0;
  top: 0;
}

.swiper-pagination-lock {
  display: none;
}

.swiper-scrollbar {
  border-radius: 10px;
  position: relative;
  -ms-touch-action: none;
  background: rgba(0, 0, 0, 0.1);
}

.swiper-scrollbar-disabled > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-disabled {
  display: none !important;
}

.swiper-horizontal > .swiper-scrollbar, .swiper-scrollbar.swiper-scrollbar-horizontal {
  position: absolute;
  left: 1%;
  bottom: 3px;
  z-index: 50;
  height: 5px;
  width: 98%;
}

.swiper-scrollbar.swiper-scrollbar-vertical, .swiper-vertical > .swiper-scrollbar {
  position: absolute;
  right: 3px;
  top: 1%;
  z-index: 50;
  width: 5px;
  height: 98%;
}

.swiper-scrollbar-drag {
  height: 100%;
  width: 100%;
  position: relative;
  background: rgba(0, 0, 0, 0.5);
  border-radius: 10px;
  left: 0;
  top: 0;
}

.swiper-scrollbar-cursor-drag {
  cursor: move;
}

.swiper-scrollbar-lock {
  display: none;
}

.swiper-zoom-container {
  width: 100%;
  height: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
  text-align: center;
}

.swiper-zoom-container > canvas, .swiper-zoom-container > img, .swiper-zoom-container > svg {
  max-width: 100%;
  max-height: 100%;
  object-fit: contain;
}

.swiper-slide-zoomed {
  cursor: move;
}

.swiper-lazy-preloader {
  width: 42px;
  height: 42px;
  position: absolute;
  left: 50%;
  top: 50%;
  margin-left: -21px;
  margin-top: -21px;
  z-index: 10;
  transform-origin: 50%;
  box-sizing: border-box;
  border: 4px solid var(--swiper-preloader-color, var(--swiper-theme-color));
  border-radius: 50%;
  border-top-color: transparent;
}

.swiper-watch-progress .swiper-slide-visible .swiper-lazy-preloader, .swiper:not(.swiper-watch-progress) .swiper-lazy-preloader {
  animation: swiper-preloader-spin 1s infinite linear;
}

.swiper-lazy-preloader-white {
  --swiper-preloader-color:#fff;
}

.swiper-lazy-preloader-black {
  --swiper-preloader-color:#000;
}

@keyframes swiper-preloader-spin {
  0% {
    transform: rotate(0deg);
  }
  100% {
    transform: rotate(360deg);
  }
}
.swiper .swiper-notification {
  position: absolute;
  left: 0;
  top: 0;
  pointer-events: none;
  opacity: 0;
  z-index: -1000;
}

.swiper-free-mode > .swiper-wrapper {
  transition-timing-function: ease-out;
  margin: 0 auto;
}

.swiper-grid > .swiper-wrapper {
  flex-wrap: wrap;
}

.swiper-grid-column > .swiper-wrapper {
  flex-wrap: wrap;
  flex-direction: column;
}

.swiper-fade.swiper-free-mode .swiper-slide {
  transition-timing-function: ease-out;
}

.swiper-fade .swiper-slide {
  pointer-events: none;
  transition-property: opacity;
}

.swiper-fade .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-fade .swiper-slide-active, .swiper-fade .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube {
  overflow: visible;
}

.swiper-cube .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
  visibility: hidden;
  transform-origin: 0 0;
  width: 100%;
  height: 100%;
}

.swiper-cube .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-cube.swiper-rtl .swiper-slide {
  transform-origin: 100% 0;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-cube .swiper-slide-active, .swiper-cube .swiper-slide-next, .swiper-cube .swiper-slide-next + .swiper-slide, .swiper-cube .swiper-slide-prev {
  pointer-events: auto;
  visibility: visible;
}

.swiper-cube .swiper-slide-shadow-bottom, .swiper-cube .swiper-slide-shadow-left, .swiper-cube .swiper-slide-shadow-right, .swiper-cube .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-cube .swiper-cube-shadow {
  position: absolute;
  left: 0;
  bottom: 0px;
  width: 100%;
  height: 100%;
  opacity: 0.6;
  z-index: 0;
}

.swiper-cube .swiper-cube-shadow:before {
  content: "";
  background: #000;
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  right: 0;
  filter: blur(50px);
}

.swiper-flip {
  overflow: visible;
}

.swiper-flip .swiper-slide {
  pointer-events: none;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  z-index: 1;
}

.swiper-flip .swiper-slide .swiper-slide {
  pointer-events: none;
}

.swiper-flip .swiper-slide-active, .swiper-flip .swiper-slide-active .swiper-slide-active {
  pointer-events: auto;
}

.swiper-flip .swiper-slide-shadow-bottom, .swiper-flip .swiper-slide-shadow-left, .swiper-flip .swiper-slide-shadow-right, .swiper-flip .swiper-slide-shadow-top {
  z-index: 0;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
}

.swiper-creative .swiper-slide {
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
  transition-property: transform, opacity, height;
}

.swiper-cards {
  overflow: visible;
}

.swiper-cards .swiper-slide {
  transform-origin: center bottom;
  -webkit-backface-visibility: hidden;
  backface-visibility: hidden;
  overflow: hidden;
}

/*******************************************************************
	popup
********************************************************************/
.modal {
  z-index: 900;
  display: none;
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: #000;
  opacity: 0.7;
  -ms-filter: "progid:DXImageTransform.Microsoft.Alpha(Opacity=70)";
}

.popup {
  overflow: hidden;
  z-index: 902;
  display: none;
  position: fixed;
  top: 50%;
  left: 50%;
  width: 520px;
  padding: 40px;
  background: #ECEFF3;
  border-radius: 20px;
  transform: translate(-50%, -50%);
}
.popup-header {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
}
.popup-header .tit {
  width: 100%;
  padding-bottom: 20px;
  border-bottom: 1px solid var(--color-bg-e8);
  font-size: 20px;
  color: var(--color-black-10);
  font-weight: 700;
  line-height: 1.4;
}
.popup-header .popup-close {
  position: absolute;
  top: -24px;
  right: -20px;
  width: 24px;
  height: 24px;
  background: url("/app/assets/images/btn/btn_pop_close-93fe89c41ec8121dc2dd19259bd1e1bd.png") no-repeat 0 0;
  background-size: 100%;
}
.popup-content .total-set {
  display: flex;
  align-items: center;
  margin: 15px 0;
}
.popup-content .total-set p {
  display: flex;
  align-items: center;
  font-size: 16px;
  color: var(--color-black-13);
  font-weight: 500;
}
.popup-content .total-set p strong {
  margin: 0 5px;
  font-size: 24px;
  font-weight: 700;
}
.popup-content .total-set p::after {
  content: "";
  width: 1px;
  height: 16px;
  margin: 0 8px;
  background: var(--color-bg-e8);
}
.popup-content .date-set {
  display: flex;
  align-items: center;
  margin: 15px 0;
  font-size: 16px;
  color: var(--color-black-13);
}
.popup-content .date-set .date {
  display: flex;
  align-items: center;
}
.popup-content .date-set .date p {
  display: flex;
  align-items: center;
}
.popup-content .date-set .date p strong {
  font-weight: 700;
}
.popup-content .date-set .date p strong + * {
  margin-left: 4px;
}
.popup-content .date-set .date p::before {
  content: "";
  width: 1px;
  height: 20px;
  margin: 0 10px;
  background: var(--color-bg-e8);
}
.popup-content .date-set .date p:first-child::before {
  display: none;
}
.popup-content .date-set .dash {
  margin: 0 10px;
}
.popup-content .patient-info {
  width: 100%;
  margin-bottom: 20px;
  font-size: 18px;
  color: var(--color-black-13);
  font-weight: 700;
  line-height: 1;
}
.popup-content .msg-info {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  border-top: 1px solid var(--color-black-10);
}
.popup-content .msg-info:first-child {
  border-top-width: 2px;
}
.popup-content .msg-info .tit {
  width: 18%;
  font-size: 14px;
  font-weight: 700;
}
.popup-content .msg-info .con {
  display: flex;
  align-items: center;
  width: 82%;
  font-size: 18px;
}
.popup-content .msg-info .con .date {
  display: inline-flex;
  align-items: center;
}
.popup-content .msg-info .con .date::before {
  content: "";
  width: 1px;
  height: 18px;
  margin: 0 10px;
  background: var(--color-black-10);
}
.popup-content .msg-info .rdo-set {
  margin-left: auto;
}
.popup-content .msg-info .rdo-box input[type=radio] + label {
  color: var(--color-black-10);
}
.popup-content .msg-info > li {
  display: flex;
  align-items: center;
  width: 100%;
  padding: 22px 20px;
}
.popup-content .msg-info > li + * {
  border-top: 1px solid var(--color-gray-c);
}
.popup-content .msg-box .txt-con {
  width: 100%;
  max-height: 250px;
  margin-bottom: 20px;
  padding: 20px 20px 0;
  border-top: 1px solid var(--color-black-10);
  font-size: 18px;
}
.popup-content .msg-box textarea {
  height: 250px;
}
.popup-content .table {
  border-collapse: separate;
}
.popup-content .table thead {
  z-index: 2;
  position: sticky;
  top: 0;
}
.popup-content .table th {
  padding: 20px;
  background: #ECEFF3;
  border-top: 2px solid var(--color-black-13);
  border-bottom: 1px solid var(--color-bg-e8);
  font-size: 13px;
  color: var(--color-black-13);
  font-weight: 700;
  word-break: keep-all;
}
.popup-content .table th:first-child {
  color: var(--color-primary);
}
.popup-content .table th span {
  display: block;
  color: #B9B9BC;
}
.popup-content .table td {
  padding: 20px;
  background: #ECEFF3;
  border-bottom: 1px solid var(--color-bg-e8);
  font-size: 18px;
  color: var(--color-black-13);
}
.popup-content .table td strong {
  color: #F04953;
  font-weight: inherit;
}
.popup-content .table td a {
  color: var(--color-primary);
  text-decoration: underline;
  text-underline-position: under;
}
.popup-content .table-set {
  width: 100%;
  padding: 30px 20px;
  border: 1px solid var(--color-bg-e8);
  border-radius: 20px;
}
.popup-content .table-set .tab-content {
  display: none;
}
.popup-content .table-box {
  height: 458px;
  padding: 0;
  background: #ECEFF3;
  border-radius: 0;
}
.popup-content .paging {
  padding: 40px 0 20px;
}
.popup-footer {
  width: 100%;
  margin-top: 20px;
  text-align: center;
}
.popup-footer .btn-rect {
  height: 60px;
  background: var(--color-bg-3f);
  font-size: 20px;
  color: var(--color-white);
}
.popup .pop-tab-list {
  position: relative;
  display: flex;
  align-items: center;
  background: none;
  border-radius: 12px;
  margin-bottom: 20px;
}
.popup .pop-tab-list .tab {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 200px;
  height: 40px;
  padding: 0 20px;
  background: var(--color-bg-3f);
  border-right: 2px solid var(--color-white);
  font-size: 16px;
  color: var(--color-secondary);
  text-align: left;
  transition: all 0.2s;
}
.popup .pop-tab-list .tab:hover {
  background: rgba(56, 112, 255, 0.7);
  color: var(--color-white);
}
.popup .pop-tab-list .tab.active {
  background: rgba(56, 112, 255, 0.7);
  color: var(--color-white);
}
.popup .pop-tab-list .tab:first-child {
  border-radius: 0;
  border-radius: 12px 0 0 12px;
}
.popup .pop-tab-list .tab:last-child {
  border-right: none;
  border-radius: 0 12px 12px 0;
}
.popup.pop-alert {
  padding-bottom: 55px;
}
.popup.pop-alert .popup-header {
  padding-bottom: 0;
}
.popup.pop-alert .popup-content {
  padding-top: 15px;
}
.popup.pop-alert .popup-content .txt {
  font-size: 24px;
  color: var(--color-black-13);
  font-weight: 500;
  text-align: center;
}
.popup.pop-alert .popup-content .txt strong {
  color: var(--color-primary);
}
.popup.pop-alert .popup-footer {
  margin-top: 20px;
}
.popup.pop-alert .popup-footer .btn-rect {
  min-width: 100px;
}
.popup.pop-alarm-list {
  width: 1430px;
}
.popup.pop-alarm-list .popup-header .tit {
  display: flex;
  align-items: center;
  border-bottom: none;
}
.popup.pop-alarm-list .popup-header .tit::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 10px;
  background: url("/app/assets/images/icon/icon_alarm-9c9e08a5b55985bc9221c62c94e53c54.png") no-repeat 0 0;
  background-size: 100%;
}
.popup.pop-alarm-list .popup-content .table th:first-child {
  color: var(--color-black-13);
}
.popup.pop-msg-list {
  width: 1720px;
}
.popup.pop-msg-list .popup-header .tit {
  display: flex;
  align-items: center;
  border-bottom: none;
}
.popup.pop-msg-list .popup-header .tit::before {
  content: "";
  width: 24px;
  height: 20px;
  margin-right: 10px;
  background: url("/app/assets/images/icon/icon_mail2-f7c4c384b6b6f70f2ef1e878aeef5a72.png") no-repeat 0 0;
  background-size: 100%;
}
.popup.pop-msg-list .popup-content .table th {
  text-align: center;
}
.popup.pop-msg-list .popup-content .table th:first-child {
  color: inherit;
}
.popup.pop-msg-list .popup-content .table td {
  padding: 20px 10px;
  text-align: center;
}
.popup.pop-msg-list .popup-content .table td a {
  color: inherit;
  text-decoration: none;
  display: inline-block;
  max-width: 100%;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
  word-wrap: normal;
}
.popup.pop-msg-list .popup-content .table td a strong {
  color: #FF2F2F;
}
.popup.pop-msg-list .popup-content .table td.comp {
  color: #FF2F2F;
}
.popup.pop-msg-send, .popup.pop-msg-conf, .popup.pop-msg-conf-comp {
  width: 620px;
}
.popup.pop-msg-send .popup-header .tit, .popup.pop-msg-conf .popup-header .tit, .popup.pop-msg-conf-comp .popup-header .tit {
  display: flex;
  align-items: center;
  border-bottom: none;
}
.popup.pop-msg-send .popup-header .tit::before, .popup.pop-msg-conf .popup-header .tit::before, .popup.pop-msg-conf-comp .popup-header .tit::before {
  content: "";
  width: 24px;
  height: 20px;
  margin-right: 10px;
  background: url("/app/assets/images/icon/icon_mail2-f7c4c384b6b6f70f2ef1e878aeef5a72.png") no-repeat 0 0;
  background-size: 100%;
}
.popup.pop-msg-send .popup-content .msg-box textarea {
  height: 400px;
}
.popup.pop-guardian {
  width: 620px;
}
.popup.pop-guardian .popup-header .tit {
  display: flex;
  align-items: center;
  border-bottom: none;
}
.popup.pop-guardian .popup-header .tit::before {
  content: "";
  width: 28px;
  height: 28px;
  margin-right: 10px;
  background: url("/app/assets/images/icon/icon_guardian-6fc9b4032cfe56bad88ea0db9ab0c6f6.png") no-repeat 0 0;
  background-size: 100%;
}
.popup.pop-guardian .popup-content .table-box {
  height: 366px;
}
.popup.pop-guardian .popup-content .table th:first-child {
  color: inherit;
}
.popup.pop-guardian .popup-content .table td {
  font-size: 14px;
}
.popup.pop-guardian .popup-content .table td .guardian {
  display: inline-flex;
  width: 20px;
  height: 20px;
  margin-left: 5px;
  background: url("/app/assets/images/icon/icon_rep-3122b31dae33affc52d23407136d2dd1.png") no-repeat 0 0;
  background-size: 100%;
  vertical-align: bottom;
}
.popup.pop-station {
  width: 730px;
  padding: 20px;
  background: var(--color-bg-18);
}
.popup.pop-station .tit-set {
  display: block;
  padding-bottom: 15px;
  margin-bottom: 0;
}
.popup.pop-station .tit-set .tit {
  font-size: 20px;
  color: var(--color-white);
  font-weight: 700;
}
.popup.pop-station .tit-set .stit {
  margin-top: 15px;
  font-size: 14px;
  color: var(--color-secondary);
}
.popup.pop-station .tit-set h3.tit {
  font-size: 32px;
  color: var(--color-white);
  font-weight: 500;
}
.popup.pop-station .btn-rect {
  width: 100%;
  height: 60px;
  margin-top: 20px;
  border-radius: 8px;
  font-size: 20px;
  color: var(--color-white);
  line-height: 1;
  box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.2), inset 1px 1px 0px rgba(var(--rgb-on-surface), 0.2), inset -1px -1px 0px rgba(0, 0, 0, 0.2);
}
.popup.pop-station .form-box {
  width: 100%;
  background: var(--color-bg-18);
  border-radius: 20px;
}
.popup.pop-station .form-box .form-set + .form-set {
  margin-top: 20px;
}
.popup.pop-station .form-set {
  padding: 25px;
  background: var(--color-bg-27);
  border-radius: 20px;
}
.popup.pop-station .form-set .form-list li {
  display: flex;
  align-items: center;
  margin-top: 20px;
}
.popup.pop-station .form-set .form-list li .tit {
  width: 160px;
  font-size: 16px;
  color: var(--color-white);
}
.popup.pop-station .form-set .form-list li:first-child {
  margin-top: 0;
}
.popup.pop-station .form-set .form-list li .inp-set {
  width: 100%;
}
.popup.pop-station .form-set .form-list li .inp-set .inp {
  width: 100%;
}
.popup.pop-station .form-set .form-list li .inp-set.lock {
  display: flex;
  align-items: center;
  background: var(--color-black-10);
  border-radius: 24px !important;
}
.popup.pop-station .form-set .form-list li .inp-set.lock .inp {
  width: calc(100% - 180px);
  border: 0;
  padding: 0 10px 0 30px;
  background: transparent;
}
.popup.pop-station .form-set .form-list li .inp-set.lock .btn-set {
  display: flex;
  align-items: center;
}
.popup.pop-station .form-set .form-list li .inp-set.lock .btn-set .time {
  margin-right: 10px;
  font-size: 16px;
  color: var(--color-white);
}
.popup.pop-station .form-set .form-list li .inp-set.lock .btn-set .btn-round {
  flex-shrink: 0;
  height: 32px;
  padding: 0 10px;
  background: var(--color-bg-3f);
  font-size: 16px;
  color: var(--color-white);
}
.popup.pop-station .form-set .form-list li .inp-set.lock.error {
  box-shadow: inset 0 0 0 2px #ffde67;
}
.popup.pop-station .form-set .form-list li .inp-set.lock.error .inp {
  box-shadow: none;
}
.popup.pop-station .form-set .id-info {
  font-size: 16px;
  color: var(--color-white);
  font-weight: 300;
  text-align: center;
  line-height: 1.5;
}
.popup.pop-station .form-set .guide-list {
  margin-top: 20px;
}
.popup.pop-station .form-set .guide-list li {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--color-bg-a1);
  font-weight: 300;
}
.popup.pop-station .form-set .guide-list li::before {
  display: inline-flex;
  content: "";
  width: 3px;
  height: 3px;
  margin-right: 10px;
  background: var(--color-bg-a1);
}
.popup.pop-station .form-set .station-list > li {
  display: flex;
  align-items: center;
  margin-top: 16px;
}
.popup.pop-station .form-set .station-list > li .tit {
  width: 130px;
  font-size: 16px;
  color: var(--color-white);
  font-weight: 700;
}
.popup.pop-station .form-set .station-list > li .con {
  display: flex;
  width: calc(100% - 130px);
}
.popup.pop-station .form-set .station-list > li .con .slct {
  margin-left: 8px;
}
.popup.pop-station .form-set .station-list > li .con .slct:first-child {
  margin-left: 0;
}
.popup.pop-station .form-set .station-list > li .con.none {
  display: block;
}
.popup.pop-station .form-set .station-list > li .con.none .rdo-set {
  margin-top: 20px;
  justify-content: flex-end;
}
.popup.pop-station .form-set .station-list > li:first-child {
  margin-top: 0;
}
.popup.pop-station .form-set .station-list > li:first-child .con {
  align-items: center;
}
.popup.pop-station .form-set .station-list > li:first-child .con .slct {
  width: 200px;
}
.popup.pop-station .form-set .station-list > li:first-child .con .station-txt {
  margin-left: 20px;
  font-size: 16px;
  color: var(--color-white);
}
.popup.pop-station .form-set .station-list > li:first-child .con .info-txt > li {
  display: flex;
  align-items: flex-start;
}
.popup.pop-station .form-set .station-list > li:first-child .con .info-txt > li::before {
  content: "·";
  margin-right: 5px;
  font-size: 18px;
  line-height: 1;
}
.popup.pop-station .form-set .station-list > li:first-child .con .info-txt > li + li {
  margin-top: 5px;
}
.popup.pop-station .form-set .station-list > li:first-child .con .info-txt > li {
  font-size: 13px;
  color: var(--color-bg-a1);
}
.popup.pop-station .form-set .station-list > li .chk-wrap {
  width: 100%;
  padding: 15px 20px 15px 15px;
  background: var(--color-black-13);
  border-radius: 4px;
}
.popup.pop-station .form-set .station-list > li .chk-inner {
  overflow: hidden;
  overflow-y: scroll;
  height: 208px;
}
.popup.pop-station .form-set .station-list > li .chk-set {
  display: flex;
  flex-wrap: wrap;
}
.popup.pop-station .form-set .station-list > li .chk-box {
  width: 33.3333%;
  margin-left: 0;
  padding: 10px 15px 10px 8px;
}
.popup.pop-station .form-set .station-list > li .chk-box input[type=checkbox] + label {
  color: var(--color-white);
}
.popup.pop-station .form-set .station-list.fx-start > li {
  align-items: flex-start;
}
.popup.pop-ai-weekly {
  width: 1050px;
}
.popup.pop-ai-weekly .popup-header .tit .high {
  color: #F04953;
}
.popup.pop-monitoring {
  width: 1416px;
}
.popup.pop-monitoring .popup-content .table td a {
  color: var(--color-black-3);
}
.popup.pop-monitoring .popup-footer {
  margin-top: 20px;
}
.popup.pop-alarm {
  width: 400px;
}
.popup.pop-alarm .popup-header .tit {
  border-bottom: 0;
  font-size: 34px;
  color: #F04953;
  font-weight: 700;
  line-height: 1;
  text-align: center;
}
.popup.pop-alarm .popup-content .alarm-type {
  width: 100%;
  padding-bottom: 15px;
  border-bottom: 1px solid var(--color-bg-e8);
  text-align: center;
}
.popup.pop-alarm .popup-content .alarm-type .type {
  display: inline-flex;
  align-items: center;
}
.popup.pop-alarm .popup-content .alarm-type .type .txt {
  font-size: 16px;
  font-weight: 500;
  line-height: 1;
}
.popup.pop-alarm .popup-content .alarm-type .type .txt strong {
  margin-left: 5px;
  font-size: 20px;
  line-height: 1;
}
.popup.pop-alarm .popup-content .alarm-type .type .chip {
  height: 28px;
  margin-right: 8px;
  border: 2px solid var(--color-white);
  font-size: 13px;
}
.popup.pop-alarm .popup-content .alarm-type .type.normal {
  color: #00D697;
}
.popup.pop-alarm .popup-content .alarm-type .type.normal .chip {
  border-color: #00D697;
  color: #00D697;
}
.popup.pop-alarm .popup-content .alarm-type .type.low {
  color: #B8AC81;
}
.popup.pop-alarm .popup-content .alarm-type .type.low .chip {
  border-color: #B8AC81;
  color: #B8AC81;
}
.popup.pop-alarm .popup-content .alarm-type .type.mid {
  color: #FF822F;
}
.popup.pop-alarm .popup-content .alarm-type .type.mid .chip {
  border-color: #FF822F;
  color: #FF822F;
}
.popup.pop-alarm .popup-content .alarm-type .type.high {
  color: #F04953;
}
.popup.pop-alarm .popup-content .alarm-type .type.high .chip {
  border-color: #F04953;
  color: #F04953;
}
.popup.pop-alarm .popup-content .alarm-type .type.unusual {
  color: #FF1B71;
}
.popup.pop-alarm .popup-content .alarm-type .type.unusual .chip {
  border-color: #FF1B71;
  color: #FF1B71;
}
.popup.pop-alarm .popup-content .alarm-type .type.emergency {
  color: #F04953;
}
.popup.pop-alarm .popup-content .alarm-type .type.emergency .chip {
  background: rgba(255, 47, 47, 0.2);
  border-color: #F04953;
  color: #F04953;
}
.popup.pop-alarm .popup-content .alarm-type .patient-info {
  display: flex;
  justify-content: center;
  margin-top: 15px;
  font-size: 20px;
  color: var(--color-black-13);
  font-weight: 700;
  line-height: 1;
}
.popup.pop-alarm .popup-content .alarm-type .patient-info .name {
  margin-left: 4px;
}
.popup.pop-alarm .popup-content .alarm-type .patient-info .name .code {
  font-size: 18px;
  font-weight: 400;
}
.popup.pop-alarm .popup-content .alarm-info {
  width: 100%;
  padding: 20px 0;
}
.popup.pop-alarm .popup-content .alarm-info > li {
  display: flex;
  align-items: center;
  width: 100%;
  margin-top: 10px;
}
.popup.pop-alarm .popup-content .alarm-info > li:first-child {
  margin-top: 0;
}
.popup.pop-alarm .popup-content .alarm-info > li .tit {
  display: flex;
  width: 50%;
  padding-right: 10px;
  font-size: 16px;
  font-weight: 700;
}
.popup.pop-alarm .popup-content .alarm-info > li .con {
  display: flex;
  width: 50%;
  font-size: 18px;
}
.popup.pop-alarm .popup-content .alarm-info > li .con strong {
  font-size: 16px;
}
.popup.pop-alarm .popup-footer .btn-rect {
  width: calc(50% - 10px);
  height: 46px;
  font-size: 13px;
}
.popup.pop-alarm .popup-footer .btn-rect + * {
  margin-left: 10px;
}
.popup.pop-alarm.vital .popup-content .alarm-type .type .txt {
  margin-top: -2px;
}
.popup.pop-alarm.super .popup-content .alarm-type .type .txt {
  font-size: 20px;
  color: #F04953;
  font-weight: 700;
}
.popup.pop-indicator-info {
  width: 820px;
}
.popup.pop-indicator-info .popup-content {
  overflow-y: auto;
  height: 525px;
  padding-top: 30px;
}
.popup.pop-indicator-info .info-list > li {
  width: 100%;
  font-weight: 400;
}
.popup.pop-indicator-info .info-list > li + * {
  margin-top: 15px;
}
.popup.pop-indicator-info .info-list > li .tit {
  display: flex;
  align-items: center;
  width: 100%;
  font-size: 14px;
  color: var(--color-primary);
}
.popup.pop-indicator-info .info-list > li .tit::before {
  content: "";
  width: 4px;
  height: 4px;
  margin-right: 5px;
  background: var(--color-primary);
  border-radius: 50%;
}
.popup.pop-indicator-info .info-list > li .con {
  width: 100%;
  margin-top: 10px;
  padding: 15px;
  border: 1px solid rgba(19, 20, 29, 0.1);
  border-radius: 12px;
  font-size: 18px;
  color: var(--color-black-13);
  line-height: 1.2;
}
.popup.pop-guide {
  width: 90%;
  min-width: 960px;
  height: 90vh;
  background: var(--color-black-10);
  border: 1px solid rgba(var(--rgb-on-surface), 0.2);
}
.popup.pop-guide .popup-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  padding: 20px 24px;
  border-radius: 20px;
  background: var(--color-bg-18);
}
.popup.pop-guide .popup-header .tit {
  width: 100%;
  padding-bottom: 0;
  border-bottom: 0;
  font-size: 26px;
  color: var(--color-white);
  font-weight: 700;
  line-height: 1.4;
}
.popup.pop-guide .popup-header .popup-close {
  position: static;
  width: 24px;
  height: 24px;
  background: url("/app/assets/images/btn/btn_pop_close_wht-d5cc754d5282d1495b2a576a7d240a9f.png") no-repeat 0 0;
  background-size: 100%;
}
.popup.pop-guide .popup-content .tab-list {
  overflow: hidden;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 2px;
  width: 100%;
  margin-top: 20px;
  border-radius: 15px 15px 0 0;
  background: transparent;
}
.popup.pop-guide .popup-content .tab-list .tab {
  width: 100%;
  height: 48px;
  border: 0;
  padding: 0 25px;
  font-size: 18px;
  color: var(--color-white);
}
.popup.pop-guide .popup-content .tab-list .tab:first-child {
  border-radius: 0;
}
.popup.pop-guide .popup-content .tab-con {
  display: none;
  overflow-y: auto;
  height: calc(100vh - 396px);
  padding: 30px;
  border-radius: 0 20px 20px 20px;
  background: var(--color-bg-18);
}
.popup.pop-guide .popup-content .tab-con .top-tit {
  display: flex;
  align-items: center;
  margin-bottom: 40px;
}
.popup.pop-guide .popup-content .tab-con .top-tit .tit {
  flex-shrink: 0;
  width: 400px;
  font-size: 30px;
  color: var(--color-white);
}
.popup.pop-guide .popup-content .tab-con .top-tit .txt {
  font-size: 16px;
  color: var(--color-white);
  line-height: 1.6;
}
.popup.pop-guide .popup-content .tab-con .img-set {
  width: 70%;
}
.popup.pop-guide .popup-content .tab-con .info-list {
  padding: 30px;
  margin-top: 30px;
  border-radius: 20px;
  background: var(--color-bg-27);
}
.popup.pop-guide .popup-content .tab-con .info-list > li {
  display: flex;
}
.popup.pop-guide .popup-content .tab-con .info-list > li + li {
  margin-top: 20px;
}
.popup.pop-guide .popup-content .tab-con .info-list > li .tit {
  display: flex;
  flex-shrink: 0;
  width: 300px;
  font-size: 16px;
  color: var(--color-white);
}
.popup.pop-guide .popup-content .tab-con .info-list > li .tit .num {
  margin-right: 10px;
}
.popup.pop-guide .popup-content .tab-con .info-list > li .txt {
  padding-left: 30px;
  font-size: 16px;
  color: var(--color-bg-a1);
  line-height: 1.6;
}
.popup.pop-guide .popup-content .tab-con .inner-con + .inner-con {
  margin-top: 50px;
}
.popup.pop-noti {
  width: 760px;
  padding: 20px;
}
.popup.pop-noti .img-con {
  overflow: hidden;
  width: 100%;
  height: 450px;
  border-radius: 12px;
  background: var(--color-bg-eb);
}
.popup.pop-noti .img-con img {
  width: 100%;
  height: 100%;
  object-fit: scale-down;
}
.popup.pop-noti .txt-con {
  overflow-y: auto;
  width: 100%;
  height: 450px;
  padding: 20px;
  border-radius: 12px;
  background: var(--color-bg-eb);
  font-size: 16px;
  color: var(--color-black-3);
  word-break: break-all;
}
.popup.pop-noti .popup-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.popup.pop-noti .popup-footer .btn-rect {
  height: 48px;
  font-size: 14px;
}
.popup.pop-patient-position {
  width: 1152px;
}
.popup.pop-patient-position .popup-footer {
  margin-top: 20px;
}
@media screen and (max-width: 1800px) {
  .popup.pop-alarm-list {
    width: 1220px;
  }
  .popup.pop-msg-list {
    width: 1500px;
  }
  .popup.pop-msg-list .popup-content .table td {
    padding: 20px 10px;
  }
  .popup.pop-monitoring {
    width: 975px;
  }
}
@media screen and (max-width: 1600px) {
  .popup {
    width: 480px;
    padding: 30px;
  }
  .popup-header .tit {
    padding-bottom: 15px;
    font-size: 18px;
  }
  .popup-header .popup-close {
    position: absolute;
    top: -15px;
    right: -10px;
  }
  .popup-content .total-set p {
    font-size: 14px;
  }
  .popup-content .total-set p strong {
    font-size: 22px;
  }
  .popup-content .total-set p::after {
    height: 14px;
  }
  .popup-content .date-set {
    font-size: 14px;
  }
  .popup-content .date-set .date p::before {
    height: 18px;
  }
  .popup-content .patient-info {
    margin-bottom: 16px;
    font-size: 16px;
  }
  .popup-content .msg-info .tit {
    font-size: 12px;
  }
  .popup-content .msg-info .con {
    font-size: 16px;
  }
  .popup-content .msg-info .con .date::before {
    height: 16px;
  }
  .popup-content .msg-info > li {
    padding: 18px 16px;
  }
  .popup-content .msg-box .txt-con {
    max-height: 180px;
    margin-bottom: 15px;
    padding: 15px 15px 0;
    font-size: 16px;
  }
  .popup-content .msg-box textarea {
    height: 180px;
  }
  .popup-content .table th {
    padding: 15px;
    font-size: 11px;
  }
  .popup-content .table td {
    padding: 15px;
    font-size: 16px;
  }
  .popup-content .table-set {
    padding: 20px 15px;
  }
  .popup-content .table-box {
    height: 400px;
  }
  .popup-content .paging {
    padding: 30px 0 15px;
  }
  .popup-footer {
    margin-top: 15px;
  }
  .popup-footer .btn-rect {
    height: 50px;
    font-size: 18px;
  }
  .popup.pop-alert {
    padding-bottom: 45px;
  }
  .popup.pop-alert .popup-content .txt {
    font-size: 22px;
  }
  .popup.pop-alarm-list {
    width: 1100px;
  }
  .popup.pop-alarm-list .popup-header .tit::before {
    width: 20px;
    height: 20px;
  }
  .popup.pop-msg-list {
    width: 1300px;
  }
  .popup.pop-msg-list .popup-header .tit::before {
    width: 22px;
    height: 18px;
  }
  .popup.pop-msg-list .popup-content .table td {
    padding: 15px 8px;
  }
  .popup.pop-msg-send, .popup.pop-msg-conf, .popup.pop-msg-conf-comp {
    width: 520px;
  }
  .popup.pop-msg-send .popup-header .tit::before, .popup.pop-msg-conf .popup-header .tit::before, .popup.pop-msg-conf-comp .popup-header .tit::before {
    width: 22px;
    height: 18px;
  }
  .popup.pop-msg-send .popup-content .msg-box textarea {
    height: 300px;
  }
  .popup.pop-guardian {
    width: 520px;
  }
  .popup.pop-guardian .popup-header .tit::before {
    width: 24px;
    height: 24px;
  }
  .popup.pop-guardian .popup-content .table-box {
    height: 292px;
  }
  .popup.pop-guardian .popup-content .table td {
    font-size: 12px;
  }
  .popup.pop-guardian .popup-content .table td .guardian {
    width: 18px;
    height: 18px;
  }
  .popup.pop-station {
    width: 595px;
    padding: 45px;
  }
  .popup.pop-station .popup-header .tit {
    width: 100%;
    font-size: 24px;
  }
  .popup.pop-station .popup-content {
    padding: 20px 0;
  }
  .popup.pop-ai-weekly {
    width: 950px;
  }
  .popup.pop-monitoring {
    width: 1000px;
  }
  .popup.pop-indicator-info {
    width: 720px;
  }
  .popup.pop-indicator-info .popup-content {
    height: 460px;
    padding-top: 20px;
  }
  .popup.pop-indicator-info .info-list > li .tit {
    font-size: 12px;
  }
  .popup.pop-indicator-info .info-list > li .tit::before {
    width: 3px;
    height: 3px;
  }
  .popup.pop-indicator-info .info-list > li .con {
    padding: 12px;
    font-size: 16px;
  }
  .popup.pop-guide .popup-content .tab-list .tab {
    height: 40px;
    font-size: 16px;
  }
  .popup.pop-guide .popup-content .tab-con {
    height: calc(100vh - 360px);
    padding: 25px;
  }
  .popup.pop-guide .popup-content .tab-con .top-tit {
    margin-bottom: 30px;
  }
  .popup.pop-guide .popup-content .tab-con .top-tit .tit {
    width: 300px;
    font-size: 26px;
  }
  .popup.pop-guide .popup-content .tab-con .top-tit .txt {
    font-size: 14px;
  }
  .popup.pop-guide .popup-content .tab-con .info-list {
    padding: 20px;
  }
  .popup.pop-guide .popup-content .tab-con .info-list > li .tit {
    width: 220px;
    font-size: 14px;
  }
  .popup.pop-guide .popup-content .tab-con .info-list > li .txt {
    padding-left: 20px;
    font-size: 14px;
  }
  .popup.pop-patient-position {
    width: 975px;
  }
}
@media screen and (max-width: 1400px) {
  .popup {
    width: 400px;
    padding: 20px;
    border-radius: 15px;
  }
  .popup-header .tit {
    padding-bottom: 10px;
    font-size: 16px;
  }
  .popup-header .popup-close {
    position: absolute;
    top: -10px;
    right: -5px;
    width: 22px;
    height: 22px;
  }
  .popup-content .total-set {
    margin: 10px 0;
  }
  .popup-content .total-set p {
    font-size: 12px;
  }
  .popup-content .total-set p strong {
    margin: 0 2px;
    font-size: 20px;
  }
  .popup-content .total-set p::after {
    height: 12px;
    margin: 0 4px;
  }
  .popup-content .date-set {
    margin: 10px 0;
    font-size: 12px;
  }
  .popup-content .date-set .date p::before {
    height: 14px;
    margin: 0 5px;
  }
  .popup-content .date-set .dash {
    margin: 0 5px;
  }
  .popup-content .patient-info {
    margin-bottom: 12px;
    font-size: 14px;
  }
  .popup-content .msg-info .tit {
    font-size: 10px;
  }
  .popup-content .msg-info .con {
    font-size: 13px;
  }
  .popup-content .msg-info .con .date::before {
    height: 14px;
    margin: 0 5px;
  }
  .popup-content .msg-info > li {
    padding: 16px 12px;
  }
  .popup-content .msg-box .txt-con {
    max-height: 120px;
    margin-bottom: 10px;
    padding: 10px 10px 0;
    font-size: 14px;
  }
  .popup-content .msg-box textarea {
    height: 120px;
  }
  .popup-content .table th {
    padding: 12px;
    font-size: 10px;
  }
  .popup-content .table td {
    padding: 12px;
    font-size: 14px;
  }
  .popup-content .table-set {
    padding: 15px 10px;
    border-radius: 15px;
  }
  .popup-content .table-box {
    height: 300px;
  }
  .popup-content .paging {
    padding: 20px 0 10px;
  }
  .popup-footer {
    margin-top: 10px;
  }
  .popup-footer .btn-rect {
    height: 40px;
    font-size: 14px;
  }
  .popup.pop-alert {
    padding-bottom: 35px;
  }
  .popup.pop-alert .popup-content .txt {
    font-size: 20px;
  }
  .popup.pop-alarm-list {
    width: 920px;
  }
  .popup.pop-alarm-list .popup-header .tit::before {
    width: 18px;
    height: 18px;
    margin-right: 5px;
  }
  .popup.pop-msg-list {
    width: 995px;
  }
  .popup.pop-msg-list .popup-header .tit::before {
    width: 20px;
    height: 16px;
    margin-right: 5px;
  }
  .popup.pop-msg-list .popup-content .table td {
    padding: 12px 5px;
    font-size: 0.8125rem;
  }
  .popup.pop-msg-send, .popup.pop-msg-conf, .popup.pop-msg-conf-comp {
    width: 420px;
  }
  .popup.pop-msg-send .popup-header .tit::before, .popup.pop-msg-conf .popup-header .tit::before, .popup.pop-msg-conf-comp .popup-header .tit::before {
    width: 20px;
    height: 16px;
    margin-right: 5px;
  }
  .popup.pop-msg-send .popup-content .msg-box textarea {
    height: 200px;
  }
  .popup.pop-guardian {
    width: 450px;
  }
  .popup.pop-guardian .popup-header .tit::before {
    width: 20px;
    height: 20px;
  }
  .popup.pop-guardian .popup-content .table-box {
    height: 242px;
  }
  .popup.pop-guardian .popup-content .table td {
    font-size: 11px;
  }
  .popup.pop-guardian .popup-content .table td .guardian {
    width: 15px;
    height: 15px;
  }
  .popup.pop-station {
    padding: 35px;
  }
  .popup.pop-station .popup-content {
    padding: 20px 0;
  }
  .popup.pop-ai-weekly {
    width: 850px;
  }
  .popup.pop-monitoring {
    width: 916px;
  }
  .popup.pop-alarm {
    width: 330px;
  }
  .popup.pop-alarm .popup-header .tit {
    font-size: 32px;
  }
  .popup.pop-alarm .popup-content .alarm-type {
    padding-bottom: 10px;
  }
  .popup.pop-alarm .popup-content .alarm-type .type .chip {
    height: 24px;
    margin-right: 5px;
    font-size: 11px;
  }
  .popup.pop-alarm .popup-content .alarm-type .type .txt {
    font-size: 14px;
  }
  .popup.pop-alarm .popup-content .alarm-type .type .txt strong {
    margin-left: 2px;
    font-size: 18px;
  }
  .popup.pop-alarm .popup-content .alarm-type .patient-info {
    margin-top: 10px;
    font-size: 18px;
  }
  .popup.pop-alarm .popup-content .alarm-type .patient-info .name .code {
    font-size: 16px;
  }
  .popup.pop-alarm .popup-content .alarm-info {
    padding: 10px 0;
  }
  .popup.pop-alarm .popup-content .alarm-info > li {
    margin-top: 5px;
  }
  .popup.pop-alarm .popup-content .alarm-info > li .tit {
    padding-right: 5px;
    font-size: 14px;
  }
  .popup.pop-alarm .popup-content .alarm-info > li .con {
    font-size: 16px;
  }
  .popup.pop-alarm .popup-content .alarm-info > li .con strong {
    font-size: 14px;
  }
  .popup.pop-alarm .popup-footer .btn-rect {
    width: calc(50% - 5px);
    height: 42px;
    font-size: 11px;
  }
  .popup.pop-alarm .popup-footer .btn-rect + * {
    margin-left: 5px;
  }
  .popup.pop-alarm.super .popup-content .alarm-type .type .txt {
    font-size: 18px;
  }
  .popup.pop-indicator-info {
    width: 620px;
  }
  .popup.pop-indicator-info .popup-content {
    height: 375px;
    padding-top: 15px;
  }
  .popup.pop-indicator-info .info-list > li + * {
    margin-top: 10px;
  }
  .popup.pop-indicator-info .info-list > li .tit {
    font-size: 11px;
  }
  .popup.pop-indicator-info .info-list > li .tit::before {
    margin-right: 3px;
  }
  .popup.pop-indicator-info .info-list > li .con {
    margin-top: 6px;
    padding: 10px;
    font-size: 14px;
  }
  .popup.pop-guide .popup-header {
    padding: 15px 20px;
    border-radius: 15px;
  }
  .popup.pop-guide .popup-header .tit {
    font-size: 20px;
  }
  .popup.pop-guide .popup-content .tab-list {
    border-radius: 10px 10px 0 0;
  }
  .popup.pop-guide .popup-content .tab-list .tab {
    height: 35px;
    padding: 0 15px;
    font-size: 14px;
  }
  .popup.pop-guide .popup-content .tab-con {
    height: calc(100vh - 312px);
    padding: 20px;
    border-radius: 0 15px 15px 15px;
  }
  .popup.pop-guide .popup-content .tab-con .top-tit {
    margin-bottom: 25px;
  }
  .popup.pop-guide .popup-content .tab-con .top-tit .tit {
    width: 200px;
    font-size: 18px;
  }
  .popup.pop-guide .popup-content .tab-con .top-tit .txt {
    font-size: 12px;
  }
  .popup.pop-guide .popup-content .tab-con .info-list {
    border-radius: 15px;
  }
  .popup.pop-guide .popup-content .tab-con .info-list > li .tit {
    width: 180px;
    font-size: 12px;
  }
  .popup.pop-guide .popup-content .tab-con .info-list > li .txt {
    padding-left: 15px;
    font-size: 12px;
  }
  .popup.pop-guide .popup-content .tab-con .inner-con + .inner-con {
    margin-top: 40px;
  }
  .popup.pop-patient-position {
    width: 830px;
  }
}

.monitoring .ward-info {
  flex-shrink: 0;
  width: 190px;
  padding: 15px 20px 15px 15px;
  margin-right: 20px;
  border-radius: 12px;
  background: var(--color-bg-27);
}
.monitoring .ward-info > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px 0;
}
.monitoring .ward-info > li .tit {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--color-white);
}
.monitoring .ward-info > li .tit::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 5px;
}
.monitoring .ward-info > li .unit {
  font-size: 15px;
  color: var(--color-white);
}
.monitoring .ward-info > li.icon1 .tit::before {
  background: url("/app/assets/images/icon/icon_room_info1-0f82d847415c379bf456cf60325f94c6.png") no-repeat 0 0;
  background-size: 100%;
}
.monitoring .ward-info > li.icon1 .unit {
  color: #FF1B71;
}
.monitoring .ward-info > li.icon2 .tit::before {
  background: url("/app/assets/images/icon/icon_room_info2-dc525188ff29953839715c38cb5b2f16.png") no-repeat 0 0;
  background-size: 100%;
}
.monitoring .ward-info > li.icon2 .unit {
  color: #2FCDFF;
}
.monitoring .ward-info > li.icon3 .tit::before {
  background: url("/app/assets/images/icon/icon_room_info3-2cfe362aea43739b138775df353113f0.png") no-repeat 0 0;
  background-size: 100%;
}
.monitoring .ward-info > li.icon3 .unit {
  color: #00D697;
}
.monitoring .ward-info > li.icon4 .tit::before {
  background: url("/app/assets/images/icon/icon_room_info4-a6512da741ce6fc592c7572cb5f40165.png") no-repeat 0 0;
  background-size: 100%;
}
.monitoring .ward-info > li.icon5 .tit::before {
  background: url("/app/assets/images/icon/icon_room_info5-587ba07e42c80650aab148bba50ab2c0.png") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-status {
  display: flex;
  align-items: flex-start;
}
.monitoring-status .ward-box {
  width: 100%;
  padding: 15px;
  border-radius: 12px;
  background: var(--color-bg-27);
}
.monitoring-status .ward-box .inner-box {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 4px;
  padding: 4px;
  border-radius: 8px;
  background: rgba(var(--rgb-on-surface), 0.95);
}
.monitoring-status .ward-box .inner-box .room {
  padding: 10px;
  border-radius: 4px;
  border: 1px solid rgba(19, 20, 29, 0.1);
  box-shadow: 0 5px 7px rgba(0, 0, 0, 0.2);
  background: #ECEFF3;
}
.monitoring-status .ward-box .inner-box .room-num {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 24px;
  color: rgb(24, 32, 46);
  font-weight: 700;
}
.monitoring-status .ward-box .inner-box .room-num::before {
  content: "";
  width: 24px;
  height: 24px;
  margin-right: 5px;
  background: url("/app/assets/images/icon/icon_room-841412bfdc6e56c29477bf70177306ff.png") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-status .ward-box .inner-box .room-info {
  display: flex;
  margin-top: 10px;
}
.monitoring-status .ward-box .inner-box .room-info .total {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 40%;
  background: var(--color-bg-f5);
  font-size: 14px;
  color: var(--color-black-13);
}
.monitoring-status .ward-box .inner-box .room-info .total .num {
  margin: -2px 2px 0 0;
  font-size: 20px;
  color: var(--color-black-13);
  font-weight: 700;
}
.monitoring-status .ward-box .inner-box .room-info .status {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  width: 60%;
  margin-left: 4px;
}
.monitoring-status .ward-box .inner-box .room-info .status > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 8px;
  margin-top: 4px;
  background: var(--color-bg-f5);
}
.monitoring-status .ward-box .inner-box .room-info .status > li:first-child {
  margin-top: 0;
}
.monitoring-status .ward-box .inner-box .room-info .status > li .tit {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: var(--color-black-13);
}
.monitoring-status .ward-box .inner-box .room-info .status > li .tit::before {
  content: "";
  flex-shrink: 0;
  width: 12px;
  height: 12px;
  margin-right: 8px;
  border-radius: 50%;
}
.monitoring-status .ward-box .inner-box .room-info .status > li .tit.low:before {
  background: #00D697;
}
.monitoring-status .ward-box .inner-box .room-info .status > li .tit.mid:before {
  background: #FF822F;
}
.monitoring-status .ward-box .inner-box .room-info .status > li .tit.high:before {
  background: #F04953;
}
.monitoring-status .ward-box .inner-box .room-info .status > li .num-set {
  display: flex;
  align-items: center;
  font-size: 10px;
  color: var(--color-black-13);
}
.monitoring-status .ward-box .inner-box .room-info .status > li .num-set .num {
  margin: -2px 2px 0 0;
  font-size: 16px;
  color: var(--color-black-13);
  font-weight: 700;
}
.monitoring-map {
  display: flex;
}
.monitoring-map .map-info {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  flex-shrink: 0;
  width: 190px;
  min-height: 500px;
  padding: 20px;
  margin-right: 20px;
  border-radius: 12px;
  background: var(--color-bg-27);
}
.monitoring-map .map-info .ward-info {
  width: 100%;
  padding: 0;
  margin-right: 0;
  border-radius: 0;
  background: transparent;
}
.monitoring-map .map-info .ward-floor {
  overflow-y: auto;
  width: 100%;
  height: calc(100vh - 640px);
}
.monitoring-map .map-info .ward-floor .tit-set {
  margin-bottom: 10px;
}
.monitoring-map .map-info .ward-floor .tit-set h3 {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
}
.monitoring-map .map-info .ward-floor .tit-set h3 strong {
  font-size: 24px;
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  padding: 0 10px 0 20px;
  border-radius: 4px;
  background: var(--color-bg-43);
  transition: all 0.2s;
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor .txt {
  font-size: 16px;
  color: var(--color-white);
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor .txt span {
  margin-right: 5px;
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/app/assets/images/btn/btn_more_white-a30d0310845fc25af72383e3bc5d9651.png") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor.active {
  background: var(--color-primary);
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor + .btn-floor {
  margin-top: 8px;
}
.monitoring-map .map-info .bottom-info {
  position: relative;
  margin-top: 15px;
}
.monitoring-map .map-info .ward-area {
  text-align: center;
}
.monitoring-map .map-info .ward-area .ward-toggle-btn {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 100%;
  height: 35px;
  padding: 0 15px;
  margin-top: 10px;
  border-radius: 18px;
  background: var(--color-primary);
  font-size: 14px;
  color: var(--color-white);
  line-height: 1;
}
.monitoring-map .map-info .ward-area .ward-toggle-btn::before {
  content: "";
  width: 20px;
  height: 20px;
  margin-right: 5px;
  background: url("/app/assets/images/btn/btn_ward_environment-a29df0aaf10cbafca2fce1081efe52fb.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-info .ward-area .ward-toggle-btn.active::before {
  background: url("/app/assets/images/btn/btn_ward_monitor-64a1f0f33d162edf28e8f9f310fadb54.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-info .ward-info {
  flex-shrink: 0;
  width: 100%;
  padding: 0;
  margin-right: 0;
  border-radius: 0;
  background: transparent;
}
.monitoring-map .map-info .ward-info > li {
  padding: 5px 0;
}
.monitoring-map .map-info .ward-floor {
  overflow-y: auto;
  width: 100%;
  height: 100%;
}
.monitoring-map .map-info .ward-floor .tit-set {
  margin-bottom: 10px;
}
.monitoring-map .map-info .ward-floor .tit-set h3 {
  display: flex;
  align-items: center;
  line-height: 1;
  font-size: 16px;
  font-weight: 400;
}
.monitoring-map .map-info .ward-floor .tit-set h3 strong {
  font-size: 24px;
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  height: 40px;
  padding: 0 10px 0 20px;
  border-radius: 4px;
  background: var(--color-bg-43);
  transition: all 0.2s;
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor .txt {
  font-size: 16px;
  color: var(--color-white);
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor .txt span {
  margin-right: 5px;
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor::after {
  content: "";
  width: 20px;
  height: 20px;
  background: url("/app/assets/images/btn/btn_more_white-a30d0310845fc25af72383e3bc5d9651.png") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor.active {
  background: var(--color-primary);
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor + .btn-floor {
  margin-top: 8px;
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor.danger {
  background: rgba(19, 20, 29, 0.8);
}
.monitoring-map .map-info .ward-floor .floor-list .btn-floor.danger.active {
  background: #FF5D67;
}
.monitoring-map .map-info .ward-swiper {
  overflow: hidden;
}
.monitoring-map .map-info .ward-swiper .tit-set {
  display: block;
  text-align: left;
  margin: 10px 0 5px;
}
.monitoring-map .map-info .ward-swiper .tit-set .tit {
  font-size: 17px;
  color: var(--color-white);
}
.monitoring-map .map-info .ward-swiper .swiper-wrapper .swiper-slide {
  background: var(--color-bg-27);
}
.monitoring-map .map-info .screen-btn-set {
  margin-bottom: 10px;
  padding-bottom: 20px;
  border-bottom: 1px solid rgba(var(--rgb-on-surface), 0.2);
}
.monitoring-map .map-info .screen-btn-set .btn-screen {
  width: 100%;
}
.monitoring-map .map-info .screen-btn-set .btn-screen + * {
  margin-top: 8px;
}
.monitoring-map .map-view {
  overflow: hidden;
  width: 100%;
  border-radius: 12px;
  background: var(--color-bg-d0);
}
.monitoring-map .map-view .in-box {
  display: none;
  overflow: hidden;
  width: 100%;
  height: 100%;
}
.monitoring-map .map-view .in-box .square-board {
  position: relative;
  height: 100%;
  margin: 0 auto;
}
.monitoring-map .map-view .in-box .square-board .bg-img {
  position: relative;
  width: 1670px;
  padding: 20px;
  margin: 0 auto;
  cursor: grab;
  top: 40%;
  left: 61%;
  transform: scale(1.1, 1.1) translate(-50%, -50%);
}
.monitoring-map .map-view .in-box .square-board .bg-img.compact {
  transform-origin: top left;
  transform: scale(0.8, 0.8) translate(-50%, -50%);
  position: absolute;
  top: 50%;
  left: 50%;
  padding: 10px 40px;
}
.monitoring-map .map-view .in-box .square-board .bg-img.min {
  width: 1550px;
}
.monitoring-map .map-view .in-box .square-board .box-set {
  width: 100%;
  height: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box {
  position: absolute;
  top: 0;
  left: 0;
  width: 240px;
  height: 107px;
}
.monitoring-map .map-view .in-box .square-board .box-set .box:hover {
  z-index: 5;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.not-data {
  width: 120px;
  height: auto;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.not-data .box-type {
  width: auto;
  height: auto;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.targetB1-1 {
  position: absolute;
  top: 47.5%;
  left: 71.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target1-1 {
  position: absolute;
  top: 20%;
  left: 64%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.rest {
  width: 200px;
  height: 107px;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target1-1 {
  position: absolute;
  top: 65%;
  left: 9%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target1-2 {
  position: absolute;
  top: 82%;
  left: 31%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target1-3 {
  position: absolute;
  top: 65%;
  left: 27%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target1-4 {
  position: absolute;
  top: 82%;
  left: 48%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target1-4-rest {
  position: absolute;
  top: 63%;
  left: 63%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target1-5 {
  position: absolute;
  top: 82%;
  left: 65%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target1-6 {
  position: absolute;
  top: 28%;
  left: 62%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target1-7 {
  position: absolute;
  top: 16%;
  left: 67%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target1-8 {
  position: absolute;
  top: 3%;
  left: 67%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target1-9 {
  position: absolute;
  top: 54%;
  left: 35%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target1-10 {
  position: absolute;
  top: 38%;
  left: 27%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target1-11 {
  position: absolute;
  top: 46%;
  left: 63%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target2-1 {
  position: absolute;
  top: 68%;
  left: 12%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target2-2 {
  position: absolute;
  top: 85%;
  left: 36%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target2-3 {
  position: absolute;
  top: 68%;
  left: 30%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target2-4 {
  position: absolute;
  top: 85%;
  left: 54%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target2-5 {
  position: absolute;
  top: 85%;
  left: 72%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target2-6 {
  position: absolute;
  top: 30%;
  left: 67%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target2-7 {
  position: absolute;
  top: 16%;
  left: 67%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target2-8 {
  position: absolute;
  top: 3%;
  left: 67%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target2-9 {
  position: absolute;
  top: 46%;
  left: 63%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target2-10 {
  position: absolute;
  top: 54%;
  left: 36%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target2-11 {
  position: absolute;
  top: 33%;
  left: 20%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target2-12 {
  position: absolute;
  top: 22%;
  left: 38%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target3-1 {
  position: absolute;
  top: 68%;
  left: 12%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target3-2 {
  position: absolute;
  top: 85%;
  left: 36%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target3-3 {
  position: absolute;
  top: 68%;
  left: 30%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target3-4 {
  position: absolute;
  top: 85%;
  left: 54%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target3-5 {
  position: absolute;
  top: 85%;
  left: 72%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target3-6 {
  position: absolute;
  top: 30%;
  left: 67%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target3-7 {
  position: absolute;
  top: 16%;
  left: 67%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target3-8 {
  position: absolute;
  top: 3%;
  left: 67%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target3-9 {
  position: absolute;
  top: 46%;
  left: 63%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target3-10 {
  position: absolute;
  top: 54%;
  left: 36%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target3-11 {
  position: absolute;
  top: 46%;
  left: 63%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ssnh-target3-12 {
  position: absolute;
  top: 22%;
  left: 38%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target2-1 {
  position: absolute;
  top: 73.5%;
  left: 18.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target2-2 {
  position: absolute;
  top: 73.5%;
  left: 34.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target2-3 {
  position: absolute;
  top: 73.5%;
  left: 50.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target2-4 {
  position: absolute;
  top: 73.5%;
  left: 66.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target2-5 {
  position: absolute;
  top: 73.5%;
  left: 82.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target2-6 {
  position: absolute;
  top: 85%;
  left: 7%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target2-7 {
  position: absolute;
  top: 11%;
  left: 34.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target2-8 {
  position: absolute;
  top: 54%;
  left: 45.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target2-9 {
  position: absolute;
  top: 34%;
  left: 24.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target2-10 {
  position: absolute;
  top: 27%;
  left: 48.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target2-11 {
  position: absolute;
  top: 10%;
  left: 68.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target2-12 {
  position: absolute;
  top: 41%;
  left: 79%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target2-13 {
  position: absolute;
  top: 53%;
  left: 79%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-1 {
  position: absolute;
  top: 3.5%;
  left: 12.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-2 {
  position: absolute;
  top: 16.5%;
  left: 21.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-3 {
  position: absolute;
  top: 3.5%;
  left: 32.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-4 {
  position: absolute;
  top: 16.5%;
  left: 54.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-5 {
  position: absolute;
  top: 3.5%;
  left: 50.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-6 {
  position: absolute;
  top: 3.5%;
  left: 72.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-7 {
  position: absolute;
  top: 68%;
  left: 80.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-8 {
  position: absolute;
  top: 83%;
  left: 75.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-9 {
  position: absolute;
  top: 68%;
  left: 57.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-10 {
  position: absolute;
  top: 83%;
  left: 55%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-11 {
  position: absolute;
  top: 68%;
  left: 37.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-12 {
  position: absolute;
  top: 83%;
  left: 35.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-13 {
  position: absolute;
  top: 68%;
  left: 18%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-14 {
  position: absolute;
  top: 76%;
  left: 2.8%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-15 {
  position: absolute;
  top: 34%;
  left: 28.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-16 {
  position: absolute;
  top: 34%;
  left: 44.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-17 {
  position: absolute;
  top: 34%;
  left: 60.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-18 {
  position: absolute;
  top: 51.5%;
  left: 45.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-19 {
  position: absolute;
  top: 45%;
  left: 18.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-20 {
  position: absolute;
  top: 21%;
  left: 38.2%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-21 {
  position: absolute;
  top: 18.5%;
  left: 72.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-22 {
  position: absolute;
  top: 58%;
  left: 3.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target3-23 {
  position: absolute;
  top: 49%;
  left: 66.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-1 {
  position: absolute;
  top: 5.5%;
  left: 49.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-2 {
  position: absolute;
  top: 83%;
  left: 55%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-3 {
  position: absolute;
  top: 83%;
  left: 38.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-4 {
  position: absolute;
  top: 83%;
  left: 21.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-5 {
  position: absolute;
  top: 83%;
  left: 5.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-6 {
  position: absolute;
  top: 49.5%;
  left: 3.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-7 {
  position: absolute;
  top: 48%;
  left: 25.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-8 {
  position: absolute;
  top: 48%;
  left: 42.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-9 {
  position: absolute;
  top: 5.5%;
  left: 31.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-10 {
  position: absolute;
  top: 5.5%;
  left: 12%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-11 {
  position: absolute;
  top: 21%;
  left: 31.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-12 {
  position: absolute;
  top: 33%;
  left: 56.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-13 {
  position: absolute;
  top: 62.5%;
  left: 31%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-14 {
  position: absolute;
  top: 16%;
  left: 84.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-15 {
  position: absolute;
  top: 5.5%;
  left: 67.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-16 {
  position: absolute;
  top: 19.5%;
  left: 60.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-17 {
  position: absolute;
  top: 37%;
  left: 5.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-18 {
  position: absolute;
  top: 60.5%;
  left: 77.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-19 {
  position: absolute;
  top: 72.5%;
  left: 4.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target4-20 {
  position: absolute;
  top: 62%;
  left: 61.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-1 {
  position: absolute;
  top: 4.5%;
  left: 7.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-2 {
  position: absolute;
  top: 4.5%;
  left: 24%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-3 {
  position: absolute;
  top: 4.5%;
  left: 43.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-4 {
  position: absolute;
  top: 18%;
  left: 52.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-5 {
  position: absolute;
  top: 4.5%;
  left: 62.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-6 {
  position: absolute;
  top: 18%;
  left: 71.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-7 {
  position: absolute;
  top: 4.5%;
  left: 81.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-8 {
  position: absolute;
  top: 68.5%;
  left: 82.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-9 {
  position: absolute;
  top: 84.5%;
  left: 72.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-10 {
  position: absolute;
  top: 68.5%;
  left: 63%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-11 {
  position: absolute;
  top: 84.5%;
  left: 53.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-12 {
  position: absolute;
  top: 68.5%;
  left: 43.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-13 {
  position: absolute;
  top: 84.5%;
  left: 34%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-14 {
  position: absolute;
  top: 68.5%;
  left: 24.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-15 {
  position: absolute;
  top: 84.5%;
  left: 14.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-16 {
  position: absolute;
  top: 37.5%;
  left: 36.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-17 {
  position: absolute;
  top: 37.5%;
  left: 52.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-18 {
  position: absolute;
  top: 20.5%;
  left: 33.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-19 {
  position: absolute;
  top: 33.5%;
  left: 11.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-20 {
  position: absolute;
  top: 52%;
  left: 46.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-21 {
  position: absolute;
  top: 61%;
  left: 3.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-22 {
  position: absolute;
  top: 73%;
  left: 1%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-23 {
  position: absolute;
  top: 49%;
  left: 78.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-24 {
  position: absolute;
  top: 48%;
  left: 3.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-25 {
  position: absolute;
  top: 40%;
  left: 73.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-26 {
  position: absolute;
  top: 51%;
  left: 70%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target5-27 {
  position: absolute;
  top: 53%;
  left: 30%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-1 {
  position: absolute;
  top: 4.5%;
  left: 7.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-2 {
  position: absolute;
  top: 4.5%;
  left: 24%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-3 {
  position: absolute;
  top: 4.5%;
  left: 43.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-4 {
  position: absolute;
  top: 18%;
  left: 52.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-5 {
  position: absolute;
  top: 4.5%;
  left: 62.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-6 {
  position: absolute;
  top: 18%;
  left: 71.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-7 {
  position: absolute;
  top: 4.5%;
  left: 81.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-8 {
  position: absolute;
  top: 68.5%;
  left: 82.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-9 {
  position: absolute;
  top: 84.5%;
  left: 72.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-10 {
  position: absolute;
  top: 68.5%;
  left: 63%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-11 {
  position: absolute;
  top: 84.5%;
  left: 53.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-12 {
  position: absolute;
  top: 68.5%;
  left: 43.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-13 {
  position: absolute;
  top: 84.5%;
  left: 34%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-14 {
  position: absolute;
  top: 68.5%;
  left: 24.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-15 {
  position: absolute;
  top: 84.5%;
  left: 14.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-16 {
  position: absolute;
  top: 35.5%;
  left: 41.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-17 {
  position: absolute;
  top: 35.5%;
  left: 57.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-18 {
  position: absolute;
  top: 20.5%;
  left: 33.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-19 {
  position: absolute;
  top: 33.5%;
  left: 11.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-20 {
  position: absolute;
  top: 52%;
  left: 46.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-21 {
  position: absolute;
  top: 61%;
  left: 3.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-22 {
  position: absolute;
  top: 73%;
  left: 1%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-23 {
  position: absolute;
  top: 48%;
  left: 3.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-24 {
  position: absolute;
  top: 51.5%;
  left: 64.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-25 {
  position: absolute;
  top: 51.5%;
  left: 74%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target6-26 {
  position: absolute;
  top: 47%;
  left: 30%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-1 {
  position: absolute;
  top: 4.5%;
  left: 7.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-2 {
  position: absolute;
  top: 4.5%;
  left: 24%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-3 {
  position: absolute;
  top: 4.5%;
  left: 43.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-4 {
  position: absolute;
  top: 18%;
  left: 52.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-5 {
  position: absolute;
  top: 4.5%;
  left: 62.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-6 {
  position: absolute;
  top: 18%;
  left: 71.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-7 {
  position: absolute;
  top: 4.5%;
  left: 81.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-8 {
  position: absolute;
  top: 68.5%;
  left: 82.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-9 {
  position: absolute;
  top: 84.5%;
  left: 72.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-10 {
  position: absolute;
  top: 68.5%;
  left: 63%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-11 {
  position: absolute;
  top: 84.5%;
  left: 53.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-12 {
  position: absolute;
  top: 68.5%;
  left: 43.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-13 {
  position: absolute;
  top: 84.5%;
  left: 34%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-14 {
  position: absolute;
  top: 68.5%;
  left: 24.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-15 {
  position: absolute;
  top: 84.5%;
  left: 14.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-16 {
  position: absolute;
  top: 35.5%;
  left: 41.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-17 {
  position: absolute;
  top: 35.5%;
  left: 57.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-18 {
  position: absolute;
  top: 20.5%;
  left: 33.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-19 {
  position: absolute;
  top: 33.5%;
  left: 11.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-20 {
  position: absolute;
  top: 52%;
  left: 46.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-21 {
  position: absolute;
  top: 61%;
  left: 3.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-22 {
  position: absolute;
  top: 73%;
  left: 1%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-23 {
  position: absolute;
  top: 49.5%;
  left: 73.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target7-24 {
  position: absolute;
  top: 47%;
  left: 30%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-1 {
  position: absolute;
  top: 86.5%;
  left: 78%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-2 {
  position: absolute;
  top: 74.5%;
  left: 71%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-3 {
  position: absolute;
  top: 86.5%;
  left: 61%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-4 {
  position: absolute;
  top: 74.5%;
  left: 51.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-5 {
  position: absolute;
  top: 86.5%;
  left: 41.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-6 {
  position: absolute;
  top: 74.5%;
  left: 32%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-7 {
  position: absolute;
  top: 86.5%;
  left: 22.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-8 {
  position: absolute;
  top: 74.5%;
  left: 12.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-9 {
  position: absolute;
  top: 15.5%;
  left: 3%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-10 {
  position: absolute;
  top: 3.2%;
  left: 12%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-11 {
  position: absolute;
  top: 15.5%;
  left: 22%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-12 {
  position: absolute;
  top: 3.2%;
  left: 31.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-13 {
  position: absolute;
  top: 15.5%;
  left: 41.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-14 {
  position: absolute;
  top: 3.2%;
  left: 51%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-15 {
  position: absolute;
  top: 15.5%;
  left: 60.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-16 {
  position: absolute;
  top: 3.2%;
  left: 70.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-17 {
  position: absolute;
  top: 15.5%;
  left: 77.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-18 {
  position: absolute;
  top: 3.2%;
  left: 85.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-19 {
  position: absolute;
  top: 38.5%;
  left: 44%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-20 {
  position: absolute;
  top: 38.5%;
  left: 26%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-21 {
  position: absolute;
  top: 53%;
  left: 26%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-22 {
  position: absolute;
  top: 53%;
  left: 44%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-23 {
  position: absolute;
  top: 62.5%;
  left: 61.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-24 {
  position: absolute;
  top: 62.5%;
  left: 7%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-25 {
  position: absolute;
  top: 27%;
  left: 26%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-26 {
  position: absolute;
  top: 27%;
  left: 66%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-27 {
  position: absolute;
  top: 31%;
  left: 3%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-28 {
  position: absolute;
  top: 47%;
  left: 3%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target8-29 {
  position: absolute;
  top: 46%;
  left: 73%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-1 {
  position: absolute;
  top: 60.5%;
  left: 82.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-2 {
  position: absolute;
  top: 74.5%;
  left: 82.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-3 {
  position: absolute;
  top: 86.5%;
  left: 73%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-4 {
  position: absolute;
  top: 74.5%;
  left: 63.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-5 {
  position: absolute;
  top: 86.5%;
  left: 53.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-6 {
  position: absolute;
  top: 74.5%;
  left: 44%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-7 {
  position: absolute;
  top: 86.5%;
  left: 34%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-8 {
  position: absolute;
  top: 74.5%;
  left: 24.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-9 {
  position: absolute;
  top: 47.5%;
  left: 43.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-10 {
  position: absolute;
  top: 18.5%;
  left: 42%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-11 {
  position: absolute;
  top: 31.5%;
  left: 72%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-12 {
  position: absolute;
  top: 61.5%;
  left: 62%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-13 {
  position: absolute;
  top: 47.5%;
  left: 62%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-14 {
  position: absolute;
  top: 31.5%;
  left: 53%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-15 {
  position: absolute;
  top: 86.5%;
  left: 14.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-16 {
  position: absolute;
  top: 7.5%;
  left: 59.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-17 {
  position: absolute;
  top: 52.5%;
  left: 33.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.target9-18 {
  position: absolute;
  top: 56.5%;
  left: 79.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hsnh-target1-1 {
  position: absolute;
  top: 5%;
  left: 10%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hsnh-target1-2 {
  position: absolute;
  top: 5%;
  left: 28%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hsnh-target1-3 {
  position: absolute;
  top: 5%;
  left: 45%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hsnh-target1-4 {
  position: absolute;
  top: 5%;
  left: 80%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hsnh-target1-5 {
  position: absolute;
  top: 5%;
  left: 62%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ndbh-target9-1 {
  position: absolute;
  top: 13%;
  left: 8%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sgnm1-target4-1 {
  position: absolute;
  top: 66%;
  left: 58%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sgnm1-target4-2 {
  position: absolute;
  top: 54%;
  left: 58%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sgnm1-target4-3 {
  position: absolute;
  top: 42%;
  left: 58%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sgnm1-target4-4 {
  position: absolute;
  top: 30%;
  left: 58%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sgnm1-target4-5 {
  position: absolute;
  top: 17%;
  left: 58%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sgnm1-target4-6 {
  position: absolute;
  top: 5%;
  left: 58%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sgnm1-target4-7 {
  position: absolute;
  top: 5%;
  left: 22%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sgnm1-target4-8 {
  position: absolute;
  top: 17%;
  left: 22%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sgnm1-target4-9 {
  position: absolute;
  top: 30%;
  left: 22%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sgnm1-target4-10 {
  position: absolute;
  top: 42%;
  left: 22%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sgnm1-target4-11 {
  position: absolute;
  top: 54%;
  left: 22%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sgnm1-target4-12 {
  position: absolute;
  top: 66%;
  left: 22%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sgnm1-target4-13 {
  position: absolute;
  top: 81%;
  left: 54%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sjs-target1-1 {
  position: absolute;
  top: 73%;
  left: 70%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sjs-target1-2 {
  position: absolute;
  top: 23%;
  left: 33%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sjs-target1-3 {
  position: absolute;
  top: 17%;
  left: 69%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.sjs-target1-4 {
  position: absolute;
  top: 67%;
  left: 45%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-targetB1-1 {
  position: absolute;
  top: 34%;
  left: 11%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-targetB1-2 {
  position: absolute;
  top: 82%;
  left: 68%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-targetB1-3 {
  position: absolute;
  top: 88%;
  left: 35%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-targetB1-4 {
  position: absolute;
  top: 9%;
  left: 37%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-targetB1-5 {
  position: absolute;
  top: 58%;
  left: 41%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-targetB1-6 {
  position: absolute;
  top: 20%;
  left: 60%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-targetB2-1 {
  position: absolute;
  top: 83%;
  left: 62%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-targetB2-2 {
  position: absolute;
  top: 33%;
  left: 44%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-targetB2-3 {
  position: absolute;
  top: 13%;
  left: 33%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-targetB2-4 {
  position: absolute;
  top: 20%;
  left: 78%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-target1-1 {
  position: absolute;
  top: 39%;
  left: 50%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-target2-1 {
  position: absolute;
  top: 49%;
  left: 13%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-target3-1 {
  position: absolute;
  top: 30%;
  left: 82%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-target3-2 {
  position: absolute;
  top: 60%;
  left: 80%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-target3-4 {
  position: absolute;
  top: 60%;
  left: 58%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-target5-1 {
  position: absolute;
  top: 30%;
  left: 82%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-target5-2 {
  position: absolute;
  top: 60%;
  left: 80%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-target5-5 {
  position: absolute;
  top: 83%;
  left: 53%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh1-target5-9 {
  position: absolute;
  top: 60%;
  left: 2%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-8 {
  position: absolute;
  top: 67%;
  left: 26%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-10 {
  position: absolute;
  top: 67%;
  left: 4%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-12 {
  position: absolute;
  top: 38%;
  left: 14%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-13 {
  position: absolute;
  top: -15%;
  left: 3%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-14 {
  position: absolute;
  top: 25%;
  left: -3%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-15 {
  position: absolute;
  top: 9%;
  left: 16.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-17 {
  position: absolute;
  top: -18%;
  left: 26%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-18 {
  position: absolute;
  top: 9%;
  left: 33.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-21 {
  position: absolute;
  top: -18%;
  left: 45.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-23 {
  position: absolute;
  top: 26%;
  left: 42.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-25 {
  position: absolute;
  top: 7%;
  left: 52%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-27 {
  position: absolute;
  top: 25%;
  left: 75%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-28 {
  position: absolute;
  top: -18%;
  left: 65.5%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-29 {
  position: absolute;
  top: -18%;
  left: 85%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-30 {
  position: absolute;
  top: 15%;
  left: 90%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-31 {
  position: absolute;
  top: 55%;
  left: 73%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-32 {
  position: absolute;
  top: 42%;
  left: 90%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.stnh2-targetB-4-33 {
  position: absolute;
  top: 76%;
  left: 77%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ydpsc-target1-1 {
  position: absolute;
  top: 58%;
  left: 6%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ydpsc-target1-2 {
  position: absolute;
  top: -3%;
  left: 10%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ydpsc-target1-3 {
  position: absolute;
  top: 12%;
  left: 4%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ydpsc-target1-4 {
  position: absolute;
  top: 39%;
  left: 38%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ydpsc-target1-5 {
  position: absolute;
  top: 51%;
  left: 38%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ydpsc-target1-6 {
  position: absolute;
  top: 70%;
  left: 38%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.ydpsc-target1-7 {
  position: absolute;
  top: 24%;
  left: 58%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target4-1 {
  position: absolute;
  top: 56%;
  left: 38%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target4-2 {
  position: absolute;
  top: 56%;
  left: 58%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target4-3 {
  position: absolute;
  top: 82%;
  left: 58%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target4-4 {
  position: absolute;
  top: 82%;
  left: 78%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target4-5 {
  position: absolute;
  top: 40%;
  left: 72%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target4-6 {
  position: absolute;
  top: 15%;
  left: 70%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target4-7 {
  position: absolute;
  top: 15%;
  left: 45%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target4-8 {
  position: absolute;
  top: 15%;
  left: 15%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target4-9 {
  position: absolute;
  top: 56%;
  left: 8%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target4-10 {
  position: absolute;
  top: 43%;
  left: 40%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target5-1 {
  position: absolute;
  top: 56%;
  left: 23%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target5-2 {
  position: absolute;
  top: 56%;
  left: 43%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target5-3 {
  position: absolute;
  top: 82%;
  left: 50%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target5-4 {
  position: absolute;
  top: 82%;
  left: 70%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target5-5 {
  position: absolute;
  top: 50%;
  left: 75%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target5-6 {
  position: absolute;
  top: 35%;
  left: 65%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target5-7 {
  position: absolute;
  top: 15%;
  left: 54%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target5-8 {
  position: absolute;
  top: 15%;
  left: 36%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target5-9 {
  position: absolute;
  top: 56%;
  left: 6%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target5-10 {
  position: absolute;
  top: 42%;
  left: 42%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target8-1 {
  position: absolute;
  top: 75%;
  left: 48%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target8-2 {
  position: absolute;
  top: 75%;
  left: 72%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target8-3 {
  position: absolute;
  top: 50%;
  left: 75%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target8-4 {
  position: absolute;
  top: 15%;
  left: 70%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target8-5 {
  position: absolute;
  top: 15%;
  left: 44%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target8-6 {
  position: absolute;
  top: 15%;
  left: 25%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target8-7 {
  position: absolute;
  top: 75%;
  left: 25%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target8-8 {
  position: absolute;
  top: 56%;
  left: 6%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target8-9 {
  position: absolute;
  top: 42%;
  left: 42%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target9-1 {
  position: absolute;
  top: 56%;
  left: 25%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target9-2 {
  position: absolute;
  top: 56%;
  left: 44%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target9-3 {
  position: absolute;
  top: 82%;
  left: 50%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target9-4 {
  position: absolute;
  top: 82%;
  left: 70%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target9-5 {
  position: absolute;
  top: 50%;
  left: 75%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target9-6 {
  position: absolute;
  top: 15%;
  left: 58%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target9-7 {
  position: absolute;
  top: 15%;
  left: 38%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target9-8 {
  position: absolute;
  top: 56%;
  left: 6%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.hbnh-target9-9 {
  position: absolute;
  top: 42%;
  left: 42%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.wsnh-target6-1 {
  position: absolute;
  top: 10%;
  left: 15%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.wsnh-target6-2 {
  position: absolute;
  top: 52%;
  left: 27%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.wsnh-target6-3 {
  position: absolute;
  top: 52%;
  left: 45%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.wsnh-target6-4 {
  position: absolute;
  top: 80%;
  left: 40%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.wsnh-target6-5 {
  position: absolute;
  top: 80%;
  left: 60%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.wsnh-target6-6 {
  position: absolute;
  top: 52%;
  left: 82%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type {
  position: absolute;
  left: 0;
  bottom: 0;
  padding: 10px;
  box-shadow: 0 5px 8px rgba(0, 0, 0, 0.1);
  width: 100%;
  max-height: 107px;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 0;
  border-radius: 0;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set {
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set {
  margin: 0;
  line-height: 1;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit {
  display: flex;
  align-items: center;
  font-size: 14px;
  color: #18202E;
  font-weight: 500;
  white-space: nowrap;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit::before {
  content: "";
  flex-shrink: 0;
  width: 20px;
  height: 20px;
  margin-right: 5px;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-ROOM::before {
  background: url("/app/assets/images/map/icon/icon_room-2b67cb4cdaa6c398200a66afe0394c8b.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-HLWY::before {
  background: url("/app/assets/images/map/icon/icon_hlwy-5590b5a589b4435fdc827738dad9e241.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-LOBY::before {
  background: url("/app/assets/images/map/icon/icon_lobby-8d5be13f3c32a2d8ab543e0de340c67b.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-REST::before {
  background: url("/app/assets/images/map/icon/icon_rest-348fe29f84e524aab8f987ccca54a3fe.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-MRST::before {
  background: url("/app/assets/images/map/icon/icon_mrst-7034057847103961836462e2d0a63d29.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-LRST::before {
  background: url("/app/assets/images/map/icon/icon_lrst-cabfed5e5ff9e03b38cffd5fb70bd429.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-SHWR::before {
  background: url("/app/assets/images/map/icon/icon_shwr-61871a6893c539892d083ddec91fa818.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-LOCK::before {
  background: url("/app/assets/images/map/icon/icon_lock-f88db1ef4053f7135525042d40f6ac5d.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-LNDR::before {
  background: url("/app/assets/images/map/icon/icon_lndr-4313160ea2503e5b78fc4995382dd892.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-LNGE::before {
  background: url("/app/assets/images/map/icon/icon_lnge-1e7fbbe8b7fdc849f37352c7115f374e.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-IJTN::before {
  background: url("/app/assets/images/map/icon/icon_ijtn-6311a4d8a84ea84a36e2c88891f599f5.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-DRUG::before {
  background: url("/app/assets/images/map/icon/icon_drug-06596cded5a8d9f7192fc1b7317acfd0.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-DSFN::before {
  background: url("/app/assets/images/map/icon/icon_dsfn-6865818705c5726321a618d4cf473b49.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-RDGY::before {
  background: url("/app/assets/images/map/icon/icon_rdgy-d8169de349422fecf579576bd247b0fd.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-XRAY::before {
  background: url("/app/assets/images/map/icon/icon_xray-a4755fe67358bd6c4803ff1e60ade2ee.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-APGY::before {
  background: url("/app/assets/images/map/icon/icon_apgy-5cb525864ed70fc5c9d8e611bedbb453.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-TRTM::before {
  background: url("/app/assets/images/map/icon/icon_trtm-13512e86c898a594c1798f1347a6e9f4.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-KNEY::before {
  background: url("/app/assets/images/map/icon/icon_kney-7813c57c191f139e7aa3e056301fe908.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-CLNC::before {
  background: url("/app/assets/images/map/icon/icon_clnc-cd7030b279db1994655a8d41cbc5aa2a.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-WAIT::before {
  background: url("/app/assets/images/map/icon/icon_wait-e26d80cb1215354796b51cb9253dbb83.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-GRDN::before {
  background: url("/app/assets/images/map/icon/icon_grdn-9c3ec2c17379461ff3da5a87d1650d07.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-MEET::before {
  background: url("/app/assets/images/map/icon/icon_meet-84a51d892a0d15ddeb9c2db38ee7c982.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-STLK::before {
  background: url("/app/assets/images/map/icon/icon_stlk-6b4dd351dfe30805561b1eb94f59b41c.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-FOOD::before {
  background: url("/app/assets/images/map/icon/icon_food-a56440c4cf101d8dcedffad699721ad6.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-KTCH::before {
  background: url("/app/assets/images/map/icon/icon_ktch-c931ec4a3d4f47e737795b649124e5c2.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-LINE::before {
  background: url("/app/assets/images/map/icon/icon_line-8a7afe386f6f7385ded15f1fef985e8e.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-ENTC::before {
  background: url("/app/assets/images/map/icon/icon_entc-7a93d417a474b87ef76e490bcafbf95f.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-NUSE::before {
  background: url("/app/assets/images/map/icon/icon_nuse-15d5fe56437c1b8066aee4414ae17a61.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-DNGR {
  color: #FF5D67;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-DNGR::before {
  background: url("/app/assets/images/map/icon/icon_dngr-a2c3c291cecb547c22799fe92e9a137b.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .tit.icon-PARK::before {
  background: url("/app/assets/images/map/icon/icon_park-2bb9085e8a321d14b1d7ee444ee3f354.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .bed {
  display: flex;
  align-items: center;
  font-size: 11px;
  color: rgba(19, 20, 29, 0.6);
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .bed strong {
  margin-right: 2px;
  font-size: 12px;
  line-height: initial;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .tit-set .bed::before {
  content: "";
  width: 1px;
  height: 12px;
  margin: 0 6px;
  background: rgba(19, 20, 29, 0.2);
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .info-set {
  display: flex;
  align-items: center;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .info-set .person {
  display: flex;
  align-items: center;
  height: 23px;
  padding: 0 8px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.1);
  background: #ECEFF3;
  font-size: 11px;
  color: rgba(47, 58, 121, 0.8);
  line-height: initial;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .info-set .person strong {
  margin-right: 1px;
  font-size: 14px;
  color: var(--color-bg-2f);
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .top-set .info-set .btn-more {
  flex-shrink: 0;
  margin-left: 3px;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .person-list {
  display: none;
  grid-template-columns: repeat(3, calc(33.3333333% - 2.6666666px));
  gap: 4px;
  margin-top: 7px;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .person-list > li {
  display: flex;
  align-items: center;
  height: 26px;
  padding: 4px 6px;
  background: rgba(16, 20, 27, 0.04);
  font-size: 13px;
  color: var(--color-black-13);
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .person-list > li::before {
  content: "";
  flex-shrink: 0;
  width: 10px;
  height: 10px;
  margin-right: 3px;
  border-radius: 50%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .person-list > li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .person-list > li.low::before {
  background: #00D697;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .person-list > li.mid::before {
  background: #FF822F;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .person-list > li.high::before {
  background: #F04953;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .person-list > li.none::before {
  background: #6C7078;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .person-list.active {
  display: grid;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list {
  display: none;
  grid-template-columns: repeat(2, 1fr);
  gap: 4px;
  margin-top: 7px;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list > li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 26px;
  padding: 0 6px;
  background: rgba(16, 20, 27, 0.04);
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list > li .tit {
  display: flex;
  align-items: center;
  font-size: 12px;
  color: var(--color-black-10);
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list > li .tit::before {
  content: none;
  width: 24px;
  height: 24px;
  margin-right: 2px;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list > li .unit {
  font-size: 12px;
  color: var(--color-white);
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list > li.icon1 .tit::before {
  background: url("/app/assets/images/icon/icon_room_info1-0f82d847415c379bf456cf60325f94c6.png") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list > li.icon1 .unit {
  color: #FF1B71;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list > li.icon2 .tit::before {
  background: url("/app/assets/images/icon/icon_room_info2-dc525188ff29953839715c38cb5b2f16.png") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list > li.icon2 .unit {
  color: #2FCDFF;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list > li.icon3 .tit::before {
  background: url("/app/assets/images/icon/icon_room_info3-2cfe362aea43739b138775df353113f0.png") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list > li.icon3 .unit {
  color: #00D697;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list > li.icon4 .tit::before {
  background: url("/app/assets/images/icon/icon_room_info4-a6512da741ce6fc592c7572cb5f40165.png") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list > li.icon4 .unit {
  color: var(--color-gray-b0);
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list > li.icon5 .tit::before {
  background: url("/app/assets/images/icon/icon_room_info5-587ba07e42c80650aab148bba50ab2c0.png") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type .inner .environment-list.active {
  display: grid;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type::after {
  content: "";
  border-style: solid;
  border-width: 10px 12px;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.ROOM {
  background: #ECEFF3;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.ROOM .inner .top-set .tit-set .tit {
  font-size: 20px;
  font-weight: 700;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.ROOM::after {
  border-color: transparent transparent transparent #fff;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.HLWY {
  background: #fff9ef;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.HLWY::after {
  border-color: transparent transparent transparent #fff9ef;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.REST {
  background: #f1faf3;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.REST::after {
  border-color: transparent transparent transparent #f1faf3;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.SHWR {
  background: #fafff2;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.SHWR::after {
  border-color: transparent transparent transparent #fafff2;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.LOCK {
  background: #dce5f0;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.LOCK::after {
  border-color: transparent transparent transparent #dce5f0;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.LNDR {
  background: #f2feff;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.LNDR::after {
  border-color: transparent transparent transparent #f2feff;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.LNGE {
  background: #f7f4ff;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.LNGE::after {
  border-color: transparent transparent transparent #f7f4ff;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.TEST {
  background: #edfcfc;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.TEST::after {
  border-color: transparent transparent transparent #edfcfc;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.TRTM {
  background: #f2f8ff;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.TRTM::after {
  border-color: transparent transparent transparent #f2f8ff;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.CLNC {
  background: #ecf6fe;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.CLNC::after {
  border-color: transparent transparent transparent #ecf6fe;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.ETCS {
  background: #f6f6f6;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.ETCS::after {
  border-color: transparent transparent transparent #f6f6f6;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.ENTC {
  background: #d9d9d9;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.ENTC::after {
  border-color: transparent transparent transparent #d9d9d9;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.NUSE {
  background: #fff4f2;
}
.monitoring-map .map-view .in-box .square-board .box-set .box .box-type.NUSE::after {
  border-color: transparent transparent transparent #fff4f2;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.top-left .box-type {
  position: absolute;
  top: 0;
  left: 0;
  bottom: inherit;
  border-radius: 0 8px 8px 8px;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.top-left .box-type::after {
  position: absolute;
  top: -10px;
  left: 0;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.top-right .box-type {
  position: absolute;
  top: 0;
  left: 0;
  bottom: inherit;
  border-radius: 8px 0 8px 8px;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.top-right .box-type::after {
  position: absolute;
  top: -10px;
  right: 0;
  transform: rotate(-180deg);
}
.monitoring-map .map-view .in-box .square-board .box-set .box.bottom-left .box-type {
  border-radius: 8px 8px 8px 0;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.bottom-left .box-type::after {
  position: absolute;
  left: 0;
  bottom: -10px;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.bottom-right .box-type {
  border-radius: 8px 8px 0 8px;
}
.monitoring-map .map-view .in-box .square-board .box-set .box.bottom-right .box-type::after {
  position: absolute;
  right: 0;
  bottom: -10px;
  transform: rotate(-180deg);
}
.monitoring-map .map-view .in-box .square-board .danger-area {
  width: 100%;
  height: 100%;
  padding: 30px;
  background: #ECEFF3;
}
.monitoring-map .map-view .in-box .square-board .danger-area .box-set {
  overflow-y: auto;
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 30px;
  padding: 20px 10px;
  height: auto;
  max-height: calc(100% - 60px);
}
.monitoring-map .map-view .in-box .square-board .danger-area .box-set .box {
  position: static;
  width: 100%;
}
.monitoring-map .map-view .in-box .square-board .danger-area .box-set .box .box-type {
  position: relative;
  height: 107px;
}
.monitoring-map .map-view .in-box .square-board .danger-tit {
  display: flex;
  align-items: center;
  width: 100%;
  height: 50px;
  margin-bottom: 10px;
  border-bottom: 1px solid rgba(19, 20, 29, 0.1);
  font-size: 20px;
  color: var(--color-black-13);
  font-weight: 700;
}
.monitoring-map .map-view .in-box .square-board .danger-tit::before {
  content: "";
  width: 26px;
  height: 26px;
  margin-right: 5px;
  background: url("/app/assets/images/map/icon/icon_dngr_tit-142ab4fba7e8331c390afe2e7483c2be.svg") no-repeat 0 0;
  background-size: 100%;
}
.monitoring-map .map-view .in-box .card-grid-view {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  padding: 20px;
  align-content: flex-start;
  height: 100%;
  overflow-y: auto;
  box-sizing: border-box;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card {
  width: calc(25% - 11px);
  min-width: 220px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid rgba(255, 255, 255, 0.1);
  overflow: hidden;
  box-shadow: 0 2px 12px rgba(0, 0, 0, 0.12);
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-header {
  padding: 10px 14px;
  background: #273149;
  border-bottom: none;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-header .house-nm {
  font-size: 13px;
  font-weight: 700;
  color: #fff;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones {
  display: flex;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone {
  flex: 1;
  padding: 10px 12px;
  cursor: pointer;
  border-right: 1px solid rgba(67, 84, 120, 0.2);
  transition: background 0.15s;
  min-height: 72px;
  border-top: 3px solid transparent;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone:last-child {
  border-right: none;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone:hover {
  background: rgba(56, 112, 255, 0.04);
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone.high {
  border-top-color: #F04953;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone.mid {
  border-top-color: #FF822F;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone.low {
  border-top-color: #B8AC81;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone.none {
  border-top-color: #6C7078;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone .person-list,
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone .environment-list {
  display: none;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone .person-list.active {
  display: flex;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone .environment-list.active {
  display: flex;
  flex-direction: column;
  gap: 3px;
  margin-top: 4px;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone .environment-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 2px 4px;
  border-radius: 4px;
  background: rgba(39, 49, 73, 0.04);
  white-space: nowrap;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone .environment-list li .tit {
  font-size: 11px;
  color: #435478;
  flex-shrink: 0;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone .environment-list li .unit span {
  font-size: 11px;
  font-weight: 600;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone .environment-list li.icon1 .unit span {
  color: #FF1B71;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone .environment-list li.icon2 .unit span {
  color: #2FCDFF;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone .environment-list li.icon3 .unit span {
  color: #00D697;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .house-zone .environment-list li.icon4 .unit span {
  color: #B0B3B4;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .zone-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 6px;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .zone-label {
  font-size: 13px;
  font-weight: 700;
  color: #273149;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .zone-ptnt-cnt {
  font-size: 11px;
  color: #6C7078;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .zone-ptnt-cnt strong {
  font-weight: 700;
  color: #273149;
  margin-right: 1px;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .person-list {
  list-style: none;
  margin: 0;
  padding: 0;
  flex-direction: column;
  gap: 4px;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .person-list li {
  display: flex;
  align-items: center;
  justify-content: space-between;
  font-size: 12px;
  color: #273149;
  gap: 6px;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .person-list li.no-ptnt {
  color: #6C7078;
  font-size: 12px;
  justify-content: center;
}
.monitoring-map .map-view .in-box .card-grid-view .house-card .house-zones .person-list li .name {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}
.monitoring-map .map-view.full {
  height: calc(100vh - 50px);
}
@media screen and (max-width: 1800px) {
  .monitoring .ward-info {
    width: 180px;
  }
  .monitoring .ward-info > li .tit {
    font-size: 13px;
  }
  .monitoring .ward-info > li .tit::before {
    width: 20px;
    height: 20px;
  }
  .monitoring .ward-info > li .unit {
    font-size: 14px;
  }
  .monitoring-status .ward-box {
    padding: 10px;
  }
  .monitoring-status .ward-box .inner-box .room-num {
    font-size: 20px;
  }
  .monitoring-status .ward-box .inner-box .room-num::before {
    width: 20px;
    height: 20px;
  }
  .monitoring-status .ward-box .inner-box .room-info .total {
    width: 35%;
    font-size: 13px;
  }
  .monitoring-status .ward-box .inner-box .room-info .total .num {
    font-size: 18px;
  }
  .monitoring-status .ward-box .inner-box .room-info .status {
    width: 65%;
  }
  .monitoring-status .ward-box .inner-box .room-info .status > li .tit {
    font-size: 13px;
  }
  .monitoring-status .ward-box .inner-box .room-info .status > li .tit::before {
    width: 10px;
    height: 10px;
    margin-right: 6px;
  }
  .monitoring-status .ward-box .inner-box .room-info .status > li .num-set .num {
    font-size: 15px;
  }
  .monitoring-map .map-info {
    width: 180px;
    padding: 15px;
    margin-right: 15px;
  }
  .monitoring-map .map-info .ward-floor .tit-set h3 {
    font-size: 14px;
  }
  .monitoring-map .map-info .ward-floor .tit-set h3 strong {
    font-size: 22px;
  }
  .monitoring-map .map-info .ward-floor .floor-list .btn-floor {
    height: 40px;
    padding: 0 5px 0 15px;
  }
  .monitoring-map .map-info .ward-floor .floor-list .btn-floor .txt {
    font-size: 14px;
  }
  .monitoring-map .map-info .ward-floor .floor-list .btn-floor + .btn-floor {
    margin-top: 6px;
  }
  .monitoring-map .map-info .ward-swiper .tit-set {
    margin: 8px 0 5px;
  }
  .monitoring-map .map-info .ward-swiper .tit-set .tit {
    font-size: 16px;
  }
  .monitoring-map .map-view .in-box .square-board .danger-area .box-set {
    grid-template-columns: repeat(4, 1fr);
  }
}
@media screen and (max-width: 1600px) {
  .monitoring .ward-info {
    width: 160px;
    padding: 10px 15px 10px 10px;
    margin-right: 10px;
  }
  .monitoring .ward-info > li .tit {
    font-size: 12px;
  }
  .monitoring .ward-info > li .tit::before {
    width: 18px;
    height: 18px;
  }
  .monitoring .ward-info > li .unit {
    font-size: 13px;
  }
  .monitoring-status .ward-box .inner-box .room-num {
    font-size: 16px;
    font-weight: 500;
  }
  .monitoring-status .ward-box .inner-box .room-num::before {
    width: 18px;
    height: 18px;
  }
  .monitoring-status .ward-box .inner-box .room-info .total {
    font-size: 12px;
  }
  .monitoring-status .ward-box .inner-box .room-info .total .num {
    font-size: 16px;
  }
  .monitoring-status .ward-box .inner-box .room-info .status > li .tit {
    font-size: 12px;
  }
  .monitoring-status .ward-box .inner-box .room-info .status > li .tit::before {
    width: 8px;
    height: 8px;
    margin-right: 4px;
  }
  .monitoring-status .ward-box .inner-box .room-info .status > li .num-set .num {
    margin: 0 2px 0 0;
    font-size: 14px;
  }
  .monitoring-map .map-info {
    width: 160px;
    padding: 12px;
    margin-right: 10px;
  }
  .monitoring-map .map-info .ward-floor .tit-set h3 {
    font-size: 13px;
  }
  .monitoring-map .map-info .ward-floor .tit-set h3 strong {
    font-size: 20px;
  }
  .monitoring-map .map-info .ward-floor .floor-list .btn-floor {
    height: 35px;
    padding: 0 2px 0 10px;
  }
  .monitoring-map .map-info .ward-floor .floor-list .btn-floor .txt {
    font-size: 13px;
  }
  .monitoring-map .map-info .ward-floor .floor-list .btn-floor::after {
    width: 18px;
    height: 18px;
  }
  .monitoring-map .map-info .ward-floor .floor-list .btn-floor + .btn-floor {
    margin-top: 4px;
  }
}
@media screen and (max-width: 1400px) {
  .monitoring-status .ward-box .inner-box {
    grid-template-columns: repeat(5, 1fr);
  }
  .monitoring-map .map-info {
    min-height: 300px;
  }
  .monitoring-map .map-view .in-box .square-board .bg-img {
    width: 1000px;
    padding: 10px;
  }
  .monitoring-map .map-view .in-box .square-board .bg-img.compact {
    transform: scale(0.8, 0.8) translate(-50%, -50%);
  }
  .monitoring-map .map-view .in-box .square-board .bg-img.min {
    width: 1000px;
    margin-top: 3%;
  }
  .monitoring-map .map-view .in-box .square-board .box-set .box {
    transform: scale(0.6, 0.6);
  }
  .monitoring-map .map-view .in-box .square-board .danger-tit {
    height: 40px;
    font-size: 16px;
  }
  .monitoring-map .map-view .in-box .square-board .danger-tit::before {
    width: 22px;
    height: 22px;
  }
  .monitoring-map .map-view .in-box .square-board .danger-area {
    padding: 15px;
  }
  .monitoring-map .map-view .in-box .square-board .danger-area .box-set {
    grid-template-columns: repeat(4, 1fr);
    padding: 15px 10px;
    gap: 20px;
  }
  .monitoring-map .map-view .in-box .square-board .danger-area .box-set .box {
    transform: none;
  }
  .monitoring-map .map-view .in-box .square-board .danger-area .box-set .box-type .inner .person-list > li {
    font-size: 12px;
  }
}
@media screen and (max-width: 1200px) {
  .monitoring-status .ward-box .inner-box {
    grid-template-columns: repeat(4, 1fr);
  }
  .monitoring-map .map-view .in-box .square-board .danger-area {
    padding: 20px;
  }
  .monitoring-map .map-view .in-box .square-board .danger-area .box-set {
    grid-template-columns: repeat(2, 1fr);
  }
}

/* =========================================================
 * 손수 추가된 legacy 스타일 — SCSS 빌드 산출물 외 직접 style.css 에
 * 박혀 있던 클래스들. SCSS 재컴파일 시 유실되지 않도록 source 화.
 *   - band-message / oval / period-set
 *   - bp-low-confidence / bp-warning-message
 *   - example-text
 *   - header-mode-toggle / mode-btn (주간/야간 토글)
 *   - table-bottom
 * 색상은 모두 토큰화하여 light/dark 양 모드 동작.
 * ========================================================= */
/* 안내 메시지 — 헬프/주석 톤 */
.band-message {
  color: var(--color-text-faint);
  text-align: center;
  display: block;
  width: 100%;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
  padding: 8px 0;
}

.oval {
  color: var(--color-text-faint);
  text-align: left;
  display: block;
  width: 100%;
  font-size: 13px;
  line-height: 1.2;
  font-weight: 700;
}

/* Blood Pressure Warning — status critical 톤 */
.bp-low-confidence {
  color: #ff6b6b !important;
}

.bp-warning-message {
  color: #ff6b6b !important;
  display: flex;
  align-items: center;
  gap: 8px;
}
.bp-warning-message .icon-warning {
  width: 18px;
  height: 18px;
  margin-right: 6px;
  vertical-align: middle;
}
.bp-warning-message .btn-rect {
  font-size: 12px;
  padding: 4px 12px;
  height: auto;
  min-height: auto;
  white-space: nowrap;
}

/* 예시 텍스트 — 노란 강조 (기존 디자인 유지) */
.example-text {
  margin-top: 10px;
  color: #FFFF00;
}

/* 주간/야간 대시보드 모드 토글 (Header) */
.header-mode-toggle {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 0;
  background: rgba(var(--rgb-on-surface), 0.06);
  border: 1px solid rgba(var(--rgb-on-surface), 0.12);
  border-radius: 28px;
  padding: 4px;
}
.header-mode-toggle .mode-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  height: 40px;
  padding: 0 22px;
  border-radius: 24px;
  border: none;
  background: transparent;
  color: rgba(var(--rgb-on-surface), 0.45);
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.2s, color 0.2s;
  letter-spacing: -0.2px;
  white-space: nowrap;
}
.header-mode-toggle .mode-btn svg {
  width: 18px;
  height: 18px;
  flex-shrink: 0;
}
.header-mode-toggle .mode-btn:hover {
  color: rgba(var(--rgb-on-surface), 0.75);
}
.header-mode-toggle .mode-btn.active {
  background: var(--color-bg-27);
  color: var(--color-white);
  box-shadow: 0 1px 4px rgba(0, 0, 0, 0.3);
}
.header-mode-toggle .mode-btn#btnNightMode.active {
  background: var(--color-bg-2a);
  color: var(--color-bg-a1);
}
.header-mode-toggle .mode-btn#btnNightMode.active svg {
  color: var(--color-bg-a1);
}

/* 테이블 하단 메타 영역 */
.table-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  margin-top: 10px;
}
.table-bottom .tit {
  display: flex;
  align-items: center;
  margin-left: 15px;
  font-size: 12px;
  color: rgba(var(--rgb-on-surface), 0.6);
}

/* =========================================================
 * Light theme overrides
 *   대부분의 색은 CSS variable 매핑으로 자동 전환되며,
 *   여기서는 변수화로 처리되지 않는 영역만 보정한다.
 *     - PNG/SVG 자산 (다크 가정으로 만들어진 로고/아이콘)
 *     - 그라데이션, 다크 전용 box-shadow
 *     - 의미가 다크 한정인 hover/focus 톤
 * ========================================================= */
[data-theme=light] {
  /* --------------------------------------------------------
   * Header
   * -------------------------------------------------------- */
  /* logo_white.svg 는 흰 글자라 라이트 헤더에서 안 보임 → 다크 logo.svg 로 교체 */
}
[data-theme=light] #header .tit-set .logo > a {
  background-image: url("/app/assets/images/logo-6f5302a1a6f0d49b56d7e05fc3be95ce.svg") !important;
}
[data-theme=light] {
  /* 흰색 PNG 아이콘 invert (header) */
}
[data-theme=light] #header .info-menu .info-list .user-info::before,
[data-theme=light] #header .info-menu .info-list .btn-logout::before,
[data-theme=light] #header .info-menu .btn-guide {
  filter: invert(1);
}
[data-theme=light] {
  /* divider 라인 — 흰 반투명 → 어두운 반투명 (rgb-on-surface 토큰으로 자동 전환되지만 명시) */
}
[data-theme=light] #header .info-menu .info-list .user-info::after {
  background: rgba(19, 20, 29, 0.15);
}
[data-theme=light] {
  /* btn-theme hover 톤 */
}
[data-theme=light] #header .info-menu .info-list .btn-theme:hover {
  background: rgba(19, 20, 29, 0.08);
}
[data-theme=light] #header .info-menu .info-list .btn-theme {
  color: #13141D;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * SNB
   * -------------------------------------------------------- */
  /* 흰 PNG 아이콘 invert + 푸르게 (라이트에서도 식별 가능) */
}
[data-theme=light] .snb .snb-list > li .btn::before {
  filter: invert(0.7) sepia(0.5) saturate(2) hue-rotate(190deg);
}
[data-theme=light] .snb .snb-list > li:hover .btn::before,
[data-theme=light] .snb .snb-list > li.active .btn::before {
  filter: none; /* 활성 상태는 그라데이션 위에 원본 */
}
[data-theme=light] {
  /* 펼친 sub-depth 패널 배경 — bg-2b 토큰화로 자동 전환되나 명시적으로 라이트 톤 */
}
[data-theme=light] .snb .sub-depth {
  background: #ECF1FF !important;
  box-shadow: 3px 6px 12px rgba(19, 20, 29, 0.08);
}
[data-theme=light] .snb {
  box-shadow: 3px 6px 12px rgba(19, 20, 29, 0.08);
}
[data-theme=light] {
  /* depth-content 텍스트(흐린 회색 → 어두운 글자) */
}
[data-theme=light] .snb .depth-content > li .btn-txt {
  color: #2A3D6D !important;
}
[data-theme=light] .snb .depth-content > li:hover .btn-txt,
[data-theme=light] .snb .depth-content > li.active .btn-txt {
  color: #13141D !important;
}
[data-theme=light] {
  /* btn-fold 핸들 — 메인 톤 유지하되 그림자 보정 */
}
[data-theme=light] .snb .btn-fold {
  box-shadow: 2px 4px 4px rgba(19, 20, 29, 0.15), inset 2px 2px rgba(255, 255, 255, 0.3), inset -1px -1px rgba(0, 0, 0, 0.15);
}
[data-theme=light] {
  /* --------------------------------------------------------
   * Body / 페이지 전반
   * -------------------------------------------------------- */
}
[data-theme=light] body {
  color: #13141D;
  background: #F4F6FA;
}
[data-theme=light] hr {
  border-color: rgba(19, 20, 29, 0.1);
}
[data-theme=light] {
  /* --------------------------------------------------------
   * Login / Find ID/PW
   * -------------------------------------------------------- */
  /* #login-wrap 자체 — 페이지 톤 유지 (form-box 가 들린 카드로 위계) */
}
[data-theme=light] #login-wrap {
  background: #F4F6FA !important;
}
[data-theme=light] {
  /* form-box 가 페이지 배경과 분리되도록 들린 카드 톤 + 보더/그림자로 위계 */
}
[data-theme=light] #login-wrap .login-box .form-box {
  background: #ECEFF3 !important;
  box-shadow: 0 4px 16px rgba(19, 20, 29, 0.08);
  border: 1px solid #D8DEE6;
}
[data-theme=light] {
  /* 로그인 / 근무지 선택의 메인 CTA — .btn-rect 는 기본 회색이라 primary 톤으로 강조 */
}
[data-theme=light] #login-wrap .login-box .btn-rect,
[data-theme=light] #login-wrap .login-box button.btn-rect {
  background: #3870FF !important;
  color: #ECEFF3 !important;
}
[data-theme=light] #login-wrap .login-box .btn-rect:hover {
  background: #2A57CC !important;
}
[data-theme=light] #login-wrap .login-box .btn-rect:disabled {
  background: rgba(56, 112, 255, 0.4) !important;
}
[data-theme=light] {
  /* 푸터 메뉴 구분자 가독성 */
}
[data-theme=light] .login-footer .menu li + li::before,
[data-theme=light] #footer .menu li + li::before,
[data-theme=light] .footer .menu li + li::before {
  background: rgba(19, 20, 29, 0.25) !important;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * 근무지 선택 / 모니터링 시작 화면
   * -------------------------------------------------------- */
  /* radio/checkbox 다크 라운드 → 라이트 */
}
[data-theme=light] input[type=radio]:not(:checked) + label::before,
[data-theme=light] input[type=checkbox]:not(:checked) + label::before {
  background: #ECEFF3 !important;
  border-color: #B0B3B4 !important;
}
[data-theme=light] {
  /* select placeholder */
}
[data-theme=light] select {
  color: #13141D;
}
[data-theme=light] select option {
  color: #13141D;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * Forms / inputs
   * -------------------------------------------------------- */
}
[data-theme=light] input[type=text], [data-theme=light] input[type=password], [data-theme=light] input[type=number],
[data-theme=light] input[type=email], [data-theme=light] input[type=search], [data-theme=light] textarea {
  background: #ECEFF3 !important;
  color: #13141D !important;
  border-color: #D0D7DD !important;
}
[data-theme=light] input[type=text]:focus, [data-theme=light] input[type=password]:focus,
[data-theme=light] input[type=number]:focus, [data-theme=light] textarea:focus {
  border-color: #3870FF !important;
  box-shadow: 0 0 0 2px rgba(56, 112, 255, 0.15) !important;
}
[data-theme=light] {
  /* 다크 모드의 노란 강조 외곽선 무력화 */
}
[data-theme=light] input[type=text]:hover, [data-theme=light] input[type=password]:hover {
  box-shadow: none !important;
}
[data-theme=light] ::placeholder {
  color: #6F87AA !important;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * 카드 / 패널 / 테이블 일반
   * -------------------------------------------------------- */
}
[data-theme=light] .card-box, [data-theme=light] .panel, [data-theme=light] .info-card, [data-theme=light] .summary-card {
  background: #ECEFF3;
  color: #13141D;
  box-shadow: 0 2px 8px rgba(19, 20, 29, 0.05);
}
[data-theme=light] table {
  background: transparent;
}
[data-theme=light] table th {
  background: #ECF1FF !important;
  color: #13141D !important;
}
[data-theme=light] table td {
  color: #13141D;
}
[data-theme=light] table, [data-theme=light] table th, [data-theme=light] table td {
  border-color: #E3E4E7 !important;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * 모니터링 본문 (페이지 CSS 가 토큰화되지 않은 잔재)
   * -------------------------------------------------------- */
  /* night-monitor 류: 일부 background:transparent 가 다크 컨텍스트 가정. */
}
[data-theme=light] .night-monitor-wrap,
[data-theme=light] .day-monitor-wrap,
[data-theme=light] .high-risk-page,
[data-theme=light] .night-monitor-title,
[data-theme=light] .map-page-wrap {
  color: #13141D;
}
[data-theme=light] {
  /* alarm 카드 행 (다크 배경 + 주황 텍스트) — 라이트 카드 */
}
[data-theme=light] .alarm-list .alarm-item, [data-theme=light] .alrm-list .alrm-item, [data-theme=light] .alarm-row {
  background: #ECEFF3 !important;
  border-color: #E3E4E7 !important;
}
[data-theme=light] {
  /* 알림내역 활성 필터 버튼 — 다크 네이비 하드코딩 → primary 톤으로 */
}
[data-theme=light] .alrm-filter-btn.type-active {
  background: #3870FF !important;
  border-color: #3870FF !important;
  color: #FFFFFF !important;
}
[data-theme=light] {
  /* 알림내역 카드 행 — 페이지 배경(#ECEFF3)과 구분되도록 살짝 옅은(밝은) 회색 */
}
[data-theme=light] .alrm-card {
  background: #ECEFF3 !important;
  border-color: #DCE0E6 !important;
}
[data-theme=light] .alrm-card.danger {
  background: linear-gradient(100deg, rgba(239, 68, 68, 0.08) 0%, #ECEFF3 28%) !important;
  border-color: rgba(239, 68, 68, 0.35) !important;
}
[data-theme=light] .alrm-card.warning {
  background: linear-gradient(100deg, rgba(245, 158, 11, 0.08) 0%, #ECEFF3 28%) !important;
  border-color: rgba(245, 158, 11, 0.35) !important;
}
[data-theme=light] .alrm-card.checked {
  background: linear-gradient(100deg, rgba(56, 112, 255, 0.06) 0%, #ECEFF3 28%) !important;
  border-color: rgba(56, 112, 255, 0.3) !important;
}
[data-theme=light] .alrm-empty {
  background: #ECEFF3 !important;
  border-color: #DCE0E6 !important;
}
[data-theme=light] {
  /* 알림내역 카드 — light 카드 위에서 옅은 노랑/빨강 텍스트가 가독성 약함 → 어두운 톤 */
}
[data-theme=light] .alrm-card.danger .alrm-event-type,
[data-theme=light] .alrm-card.danger .alrm-status-txt {
  color: #B91C1C; /* darker red */
}
[data-theme=light] .alrm-card.warning .alrm-event-type,
[data-theme=light] .alrm-card.warning .alrm-status-txt {
  color: #B45309; /* darker amber */
}
[data-theme=light] {
  /* 카드 그림자도 라이트 톤 */
}
[data-theme=light] .alrm-card,
[data-theme=light] .alrm-empty {
  box-shadow: 0 2px 8px rgba(19, 20, 29, 0.06) !important;
}
[data-theme=light] .alrm-card:hover {
  box-shadow: 0 4px 16px rgba(19, 20, 29, 0.1) !important;
}
[data-theme=light] {
  /* 환자 이름 흰색 → 어두운 본문 (var(--color-white) 토큰으로 자동 전환되지만 명시) */
}
[data-theme=light] .alrm-card .alrm-ptnt-name {
  color: #13141D;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * Forms — error state outline
   * 다크 노란색 inset shadow → 라이트는 빨간 톤이 자연스러움. */
}
[data-theme=light] .inp-set.error .inp {
  box-shadow: inset 0 0 0 2px #F04953 !important;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * 메인 대시보드: high-risk 카드 / status / ops 박스 광범위 보정
   * 자식 inline style 다수 + 일부 css 토큰화 누락된 영역까지 모두 강제 라이트.
   * -------------------------------------------------------- */
}
[data-theme=light] .high-risk-card,
[data-theme=light] .high-risk-card.high-risk,
[data-theme=light] .high-risk-card.mid-risk {
  background: #ECEFF3 !important;
  border-color: #E3E4E7 !important;
  color: #13141D !important;
  box-shadow: 0 2px 8px rgba(19, 20, 29, 0.06);
}
[data-theme=light] .high-risk-card .name,
[data-theme=light] .high-risk-card .ptnt-name,
[data-theme=light] .high-risk-card * {
  color: inherit;
}
[data-theme=light] .status-summary-item,
[data-theme=light] .ops-check-item {
  background: #ECEFF3 !important;
  border-color: #E3E4E7 !important;
  color: #13141D !important;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * 평면도 라벨 박스 — 다크 가정 라벨이 light page 위에 떠 있을 때
   * 강제 라이트 톤 (배경/텍스트). */
}
[data-theme=light] .map-view .square-board .box-set .box .box-type,
[data-theme=light] .map-view .square-board .box-set .box .name,
[data-theme=light] .map-view .square-board .box-set .box-tit,
[data-theme=light] .map-view .danger-tit {
  background: var(--color-bg-elev);
  color: #13141D;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * 조감도 (FacilityMap)
   * -------------------------------------------------------- */
  /* 위험구역 비활성 탭 — 다크 hex 박혀 있던 잔재 → 회색 톤 */
}
[data-theme=light] .ward-floor .floor-list .btn-floor {
  background: #DCE0E6 !important;
  color: #13141D !important;
}
[data-theme=light] .ward-floor .floor-list .btn-floor.active {
  background: #3870FF !important;
  color: #FFFFFF !important;
}
[data-theme=light] .ward-floor .floor-list .btn-floor::after {
  filter: invert(1) brightness(0.3);
}
[data-theme=light] .ward-floor .floor-list .btn-floor.active::after {
  filter: none;
}
[data-theme=light] {
  /* 간호사 스테이션 라벨 등 다크 박스 라벨 → 라이트 톤 */
}
[data-theme=light] .map-view .square-board .danger-area,
[data-theme=light] .map-view .square-board .danger-tit {
  background: #ECEFF3 !important;
  color: #13141D !important;
}
[data-theme=light] {
  /* 조감도 위 시설 말풍선(.box-type) 은 흰색 배경 유지 (사용자 요구) */
}
[data-theme=light] .map-view .square-board .box-set .box .box-type {
  background: #FFFFFF !important;
  color: #13141D !important;
  border: 1px solid #E3E4E7;
}
[data-theme=light] {
  /* 줌 컨트롤 +/- 버튼 — 다크 톤 → 라이트 카드 */
}
[data-theme=light] .zoom-controls {
  background: rgba(236, 239, 243, 0.95) !important;
  border: 1px solid #DCE0E6;
}
[data-theme=light] .zoom-controls .zoom-btn {
  background: rgba(19, 20, 29, 0.06) !important;
  color: #13141D !important;
}
[data-theme=light] .zoom-controls .zoom-btn:hover {
  background: rgba(19, 20, 29, 0.12) !important;
}
[data-theme=light] .zoom-controls .zoom-level {
  color: #13141D !important;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * 설정 페이지 — 패널 영역 구분 강화
   * setting-sidebar / setting-panel 모두 카드 톤(#ECEFF3) 이라
   * 페이지(#F4F6FA) 와 차이가 미세 → 보더로 구분 강화. */
}
[data-theme=light] .setting-sidebar,
[data-theme=light] .setting-panel,
[data-theme=light] .setting-mid,
[data-theme=light] .setting-detail,
[data-theme=light] #panelPtntMgmt > * {
  border: 1px solid #C8CFD8 !important;
  border-radius: 12px;
}
[data-theme=light] {
  /* 패널 사이 gap 이 페이지 톤이 비치도록 */
}
[data-theme=light] .setting-wrap {
  background: #F4F6FA !important;
  gap: 12px !important;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * Shadow 제거 — 다크 모드에 없던 그림자 효과가 라이트에서 남아 있는
   * 모든 영역을 정리. 카드 위계는 보더 + 톤 차이로만 표현.
   * input focus 등 필수 ring 만 별도 보존. */
}
[data-theme=light] *,
[data-theme=light] *::before,
[data-theme=light] *::after {
  box-shadow: none !important;
}
[data-theme=light] {
  /* input focus / btn-theme 등 의도적 outline 보존 */
}
[data-theme=light] input[type=text]:focus,
[data-theme=light] input[type=password]:focus,
[data-theme=light] input[type=number]:focus,
[data-theme=light] input[type=email]:focus,
[data-theme=light] input[type=search]:focus,
[data-theme=light] textarea:focus {
  box-shadow: 0 0 0 2px rgba(56, 112, 255, 0.15) !important;
}
[data-theme=light] {
  /* 필터 active 표기 — 선택 상태는 기능적 신호이므로 ring/inset 보존 */
}
[data-theme=light] .status-summary-item.danger.active {
  box-shadow: 0 0 0 3px rgba(240, 73, 83, 0.3), inset 0 0 12px rgba(240, 73, 83, 0.15) !important;
}
[data-theme=light] .status-summary-item.warning.active {
  box-shadow: 0 0 0 3px rgba(255, 130, 47, 0.3), inset 0 0 12px rgba(255, 130, 47, 0.15) !important;
}
[data-theme=light] .status-summary-item.normal.active {
  box-shadow: 0 0 0 3px rgba(0, 214, 151, 0.3), inset 0 0 12px rgba(0, 214, 151, 0.15) !important;
}
[data-theme=light] .ops-check-item.active {
  border-color: #13141D !important;
  box-shadow: 0 0 0 3px rgba(19, 20, 29, 0.18), inset 0 0 12px rgba(19, 20, 29, 0.06) !important;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * Caution/Error 텍스트 — 다크 가정 옅은 노랑(#FFDE67) 이 라이트
   * 베이지/회색 배경 위에서 가독성 0 → 어두운 빨강으로 보정. */
}
[data-theme=light] .error-box .txt-error,
[data-theme=light] .txt-error {
  color: #B91C1C !important;
}
[data-theme=light] {
  /* 노란 inset shadow 도 빨간 톤으로 (이미 일부 적용된 셀렉터 외 추가) */
}
[data-theme=light] .inp-set.lock.error,
[data-theme=light] .form-list .error .inp {
  box-shadow: inset 0 0 0 2px #F04953 !important;
}
[data-theme=light] {
  /* error-box ⚠ 아이콘 — 노란 PNG → mask 로 빨간 색 입힘 */
}
[data-theme=light] .error-box::before {
  background: #B91C1C !important;
  -webkit-mask: url("/app/assets/images/icon/icon_error-7fe34ab783e2c9ae1cdc03743cb057e5.png") no-repeat center/100%;
  mask: url("/app/assets/images/icon/icon_error-7fe34ab783e2c9ae1cdc03743cb057e5.png") no-repeat center/100%;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * 입소자 상세 펼침 영역 (PtntListVitalDetail)
   * .ptnt-detail-wrap 의 다크 오버레이 + .kpi-card 들린 톤 보정. */
}
[data-theme=light] .ptnt-detail-wrap {
  background: rgba(19, 20, 29, 0.04) !important;
}
[data-theme=light] .kpi-card {
  background: #FFFFFF !important;
  border-color: #DCE0E6 !important;
}
[data-theme=light] .kpi-card.kpi-danger {
  background: #FFF4F2 !important;
  border-color: rgba(240, 73, 83, 0.35) !important;
}
[data-theme=light] .kpi-card.kpi-warn {
  background: #FFF9EF !important;
  border-color: rgba(255, 130, 47, 0.35) !important;
}
[data-theme=light] .bp-calib-card {
  background: #FFFFFF !important;
  border-color: #DCE0E6 !important;
}
[data-theme=light] {
  /* --------------------------------------------------------
   * 환경/시스템 설정 — cfg-alert 다크 박스 + 노란 텍스트 → 라이트 톤 */
}
[data-theme=light] .cfg-alert {
  background: #FFF4F2 !important;
  border: 1px solid rgba(240, 73, 83, 0.25) !important;
  color: #B91C1C !important;
}
[data-theme=light] .cfg-alert span,
[data-theme=light] .cfg-alert b,
[data-theme=light] .cfg-alert strong {
  color: inherit !important;
}
