:root {
  --global-font-size: 16px;
}

.global-font-size {
  font-size: var(--global-font-size);
}

[v-cloak] {
  display: none;
}

input {
  font-size: var(--global-font-size);
}

/*
transition: fade
*/
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s ease;
}

.fade-enter-from,
.fade-leave-to {
  opacity: 0;
}

/*
row
*/
.row {
  /* margin-right: 0;
  margin-left: 0; */
}

/*
覆蓋 q-btn 的樣式
*/
.q-btn {
  font-size: var(--global-font-size);
}

/*
讓 q-table 組件的最外層容器可以吃到上層容器的寬度設定
*/
.q-table__container {
  width: 100%;
}

/*
覆蓋q-table底部結構的相關樣式
*/
/* bottom 整個區塊 */
.q-table__bottom {
  font-size: var(--global-font-size);
}
/* 一頁幾列(已選) */
.q-table__control .q-field {
  font-size: var(--global-font-size);
}
/* 一頁幾列的選項 */
.q-table__control .q-field__inner {
  font-size: var(--global-font-size);
}

/* 
覆蓋 .q-menu .q-item
1. 設定字體大小
*/
.q-menu .q-item {
  font-size: var(--global-font-size);
}

/*
*/
.q-field {
  font-size: var(--global-font-size);
}
.q-field span {
  font-size: var(--global-font-size);
}

/*
自定義 q-table 的樣式
*/
.custom-table {
}

/*
覆蓋資料列中的字體大小
*/
.custom-table tbody tr td {
  font-size: var(--global-font-size);
}

/*
自定義 q-table 的標頭樣式
*/
.custom-table-header {
  background-color: #337ab7;
  color: #fff;
}
.custom-table-header.table-header-2 {
  background-color: #fcf0d6;
  color: #000;
}
.custom-table-header.table-header-3 {
  background-color: #fbc78e;
  color: #000;
}
.custom-table-header.table-header-4 {
  background-color: #ffe9e9;
  color: #000;
}
.custom-table-header.table-header-5 {
  background-color: #fdc6c6;
  color: #000;
}
.custom-table-header.table-header-6 {
  background-color: #ede9ff;
  color: #000;
}
/*
覆蓋標頭中的字體大小
*/
.custom-table-header > th {
  font-size: var(--global-font-size);
  font-weight: bold;
}

/*
覆蓋q-dialog__inner--minimized
*/
.q-dialog__inner--minimized > div {
  max-width: 100%;
}

/*
自訂checkbox樣式
*/
.custom-table-checkbox {
}
.custom-table-checkbox .q-checkbox__inner.q-checkbox__inner--falsy {
  color: #fff;
}
.custom-table-checkbox
  .q-checkbox__inner.q-checkbox__inner--falsy
  .q-checkbox__bg {
  background-color: #fff;
}
.custom-table-checkbox .q-checkbox__inner.q-checkbox__inner--falsy {
  color: currentColor;
}
.custom-table-checkbox .q-checkbox__inner.q-checkbox__inner--truthy,
.custom-table-checkbox .q-checkbox__inner.q-checkbox__inner--indet {
  color: #337ab7;
}
.custom-table-checkbox
  .q-checkbox__inner.q-checkbox__inner--truthy
  .q-checkbox__bg {
  background-color: #337ab7;
}
.custom-table-checkbox
  .q-checkbox__inner.q-checkbox__inner--indet
  .q-checkbox__bg {
  background-color: #337ab7;
}

/*
用於頁面的樣式
*/
.app-wrapper {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  padding: 12px;
  position: relative;
}

/*
用於儀表板區塊頁面
*/
.dashboard-app {
  display: flex;
  flex-direction: column;
  padding: 20px;
  position: relative;
}
.dashboard-component-wrapper {
  height: 100%;
  display: flex;
  flex-direction: column;
  padding: 20px;
  position: relative;
}
.dashboard-component-btn {
  /* color: #000; */
  border-radius: 8px;
}
.dashboard-component-btn .q-btn__content span {
  color: #1c1c1c;
}

/*
用於修改日期選擇欄位的寬度
1. 在符合格式 Ex: 1111005 的情況下，節省空間。
*/
.q-input-date {
  width: 120px;
}
.q-input-full-date {
  width: 200px;
}
/*
用於修改時間選擇欄位的寬度
1. 在符合格式 Ex: 02:00 的情況下，節省空間。
*/
.q-input-time {
  width: 160px;
}

/*
對話框內容
*/
.dialog-wrapper {
  width: 500px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  overflow-y: hidden !important;
}
.dialog-wrapper-header {
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  padding: 8px;
}
.dialog-wrapper-header-title {
  font-size: 16px;
  font-weight: bold;
}
.dialog-wrapper-body {
  width: 100%;
  display: flex;
  align-items: center;
  /* padding: 8px; */
}
.dialog-wrapper-footer {
  display: flex;
  justify-content: center;
}

/*
放置table的容器
*/
.table-container {
  width: 100%;
  /* max-width: 1440px;   */
  display: flex;
  justify-content: center;
}

.func-group-container {
  width: 100%;
  display: flex;
  margin-bottom: 24px;
  font-size: var(--global-font-size);
}
.func-group-wrapper {
}
.func-group {
  display: flex;
  align-items: center;
  margin-right: 8px;
}
.func-group-title {
  margin-right: 8px;
}
.func-group-title.meeting-record {
  width: 120px;
}

/*  
gcare-費用與核銷報表
*/
.statistics {
  width: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  margin-top: 24px;
  font-size: var(--global-font-size);
}
.statistics-wrapper {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}
.statistics-wrapper.grey {
  background-color: #f1f1f1;
}
.statistics-container {
  width: 20%;
  padding-left: 24px;
}
.statistics-item {
  width: 100%;
  display: flex;
  /* justify-content: center; */
}

/*  
gcare-費用與核銷報表
*/
.bill-print-wrapper {
  width: 1200px;
  display: flex;
  flex-direction: column;
  background-color: #fff;
  overflow-y: hidden !important;
}
.bill-print-wrapper-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 0 0 0 12px;
  height: 48px;
}
.bill-print-wrapper-title {
  font-size: var(--global-font-size);
  font-weight: bold;
}
.bill-print-wrapper-body {
  flex: 1;
  height: calc(100% - 48px);
}
.bill-print-wrapper-body iframe {
  width: 100%;
  height: 100%;
}

/*
ecare5-仁德會議記錄
*/
.area-block-title {
  font-size: 24px;
  font-weight: bold;
}
.content-block {
  display: flex;
  flex-direction: column;
}
.content-block-title {
  font-size: 20px;
  font-weight: bold;
}
.content-block-body {
  padding-left: 24px;
  font-size: var(--global-font-size);
}

.input-group {
  display: flex;
  align-items: center;
}
.input-group-title,
.input-group-content {
  display: flex;
  align-items: center;
}
.input-group-title {
  width: 80px;
}

.report-item,
.report-item-content,
.report-item-delete {
  display: flex;
  /* align-items: center; */
}
.report-item {
}
.report-item-content {
  flex-direction: column;
  padding: 20px;
  border-radius: 8px;
}
.report-item-delete {
  padding: 0 12px;
  display: flex;
  align-items: center;
}

table.quality-table {
  width: 100%;
  border-spacing: 0;
  box-shadow: 0 1px 5px #0003, 0 2px 2px #00000024, 0 3px 1px -2px #0000001f;
  background-color: #fff;
  border-radius: 4px;
  overflow: hidden;
}
table.quality-table th,
table.quality-table td {
  border: 1px solid;
  border-color: #0000001f;
  border-collapse: collapse;
}
table.quality-table th,
table.quality-table td {
  padding: 7px 16px;
}
table.quality-table thead {
  background-color: #337ab7;
  color: #fff;
}

/*
dialog
*/
.custom-dialog {
  font-size: var(--global-font-size);
}
.custom-dialog-header {
  display: flex;
  align-items: center;
  padding: 10px 15px;
  background-color: #337ab7;
  color: #fff;
  font-size: var(--global-font-size);
}

.custom-side-dialog {
}
.custom-side-dialog .q-dialog__inner {
  width: 90%;
}
.custom-side-dialog .q-dialog__inner--minimized {
  padding: 0;
}

/*
修正被bootstrap中的row影響的內容
*/
.custom-tabs-group .q-tabs,
.custom-tabs-group .q-tabs__content,
.custom-tabs-group .q-tab,
.custom-tabs-group .q-tab__content {
  margin-right: 0;
  margin-left: 0;
}

/*
覆蓋q-tab-panel
*/
.q-tab-panel {
  padding: 0;
}

/*
custom-q-card
*/
.custom-q-card {
  width: 100%;
}

/*
index-dashboard
*/
.index-dashboard {
  position: relative;
  width: 100%;
  display: flex;
  background-color: #eff3f6;
  flex-direction: column;
  overflow-x: hidden !important;
}
.index-dashboard .row {
  margin-right: 0;
  margin-left: 0;
}
.index-dashboard__header {
  width: 100%;
  height: 50px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 16px 20px;
}
.index-dashboard__title {
  font-size: 24px;
  letter-spacing: 2.4px;
  font-weight: bold;
  color: #0d546e;
}
.index-dashboard__close {
}
.index-dashboard__close-icon {
  font-size: 24px;
  transition: all 0.2s;
}
.index-dashboard__close:hover .index-dashboard__close-icon {
  transform: rotate(180deg);
}
.index-dashboard__body {
  width: 100%;
  flex: 1;
  padding: 0 20px 20px 20px;
  display: flex;
  flex-wrap: wrap;
}

.index-dashboard__statistics-wrapper {
  width: 200px;
  padding: 0 20px 0 0;
  display: flex;
  flex-direction: column;
}
.statistics-block {
  display: flex;
  align-items: center;
  margin-bottom: 16px;
}
.statistics-block__title {
  margin-right: 8px;
  font-size: var(--global-font-size);
  font-weight: bold;
}
.statistics-block__value {
  font-size: var(--global-font-size);
}

.statistics-block__total-number {
  font-size: 48px;
  line-height: 64px;
  letter-spacing: 4.8px;
}
.statistics-block__total-number-unit {
  line-height: 40px;
}

.statistics-group {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: var(--global-font-size);
}
.statistics-group__header {
  display: flex;
  align-items: center;
}
.statistics-group__circle {
  width: 8px;
  height: 8px;
  margin-right: 8px;
  border-radius: 50%;
}
.statistics-group__value {
}

.statistics-split {
  width: 100%;
  height: 1px;
  background: #707070;
  margin: 20px 0;
}

.numbers-bar {
  width: 100%;
  height: 8px;
  display: flex;
  align-items: center;
  border-radius: 8px;
  overflow: hidden;
}
.numbers-bar__fragment {
  height: 100%;
}
.numbers-bar__fragment.male {
  background-color: #8accff;
}
.numbers-bar__fragment.female {
  background-color: #ff8d8d;
}

.index-dashboard__block-wrapper {
  /* width: 100%; */
  flex: 1;
  /* display: flex;
  flex-wrap: wrap; */
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(3, 1fr);
}
.index-dashboard__block-wrapper.columns-1 {
  grid-template-columns: repeat(1, 1fr);
}
.index-dashboard__block-wrapper.columns-2 {
  grid-template-columns: repeat(2, 1fr);
}

/*
dashboard-block-container
*/
.dashboard-block-container {
  /* width: calc(100% / 2 - 20px); */
  /* margin-right: 20px;
  margin-bottom: 20px; */
  width: 100%;
  min-width: 0;
}
/* .dashboard-block-container:nth-child(2n) {
  margin-right: 0;
} */

/*
dashboard-block
*/
.dashboard-block {
  display: flex;
  flex-direction: column;
  width: 100%;
}
.dashboard-block__title {
  width: 100%;
  font-size: 16px;
  line-height: 21px;
  font-weight: bold;
  letter-spacing: 0.8px;
  margin-bottom: 20px;
  color: #0d546e;
}
.dashboard-block__tabs {
  width: 100%;
  height: 500px;
  display: flex;
  justify-content: center;
}

/*
tabs-group
*/
.custom-tabs-group {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}
.custom-tabs-group__q-tabs {
  width: 100%;
  height: 40px;
}
.custom-tabs-group__q-tab {
  color: #000;
  background-color: #dcdcdc;
  border-top-left-radius: 8px;
  border-top-right-radius: 8px;
}
.custom-tabs-group__q-tab-panels {
  width: 100%;
  height: calc(100% - 40px);
  border-bottom-left-radius: 8px;
  border-bottom-right-radius: 8px;
}

/*
tab color
*/
.custom-tabs-group .q-tab__indicator {
  background: transparent;
}
.tab-active-1 {
  background-color: #a8dde1;
}
.tab-active-2 {
  background-color: #f9e2ae;
}
.tab-active-3 {
  background-color: #fbc78e;
}
.tab-active-4 {
  background-color: #ffd4d4;
}
.tab-active-5 {
  background-color: #fb8e8e;
}
.tab-active-6 {
  background-color: #dcd4ff;
}

/**/
.data-list {
  display: flex;
  flex-direction: column;
  font-size: var(--global-font-size);
}
.data-list-item {
  display: flex;
  flex-direction: column;
  padding: 8px 0 8px 0;
  border-bottom: 1px solid #eeeeee;
}
.data-list-item__content-wrapper:not(:last-child) {
  margin-bottom: 8px;
}
.data-list-item__track-date {
  font-weight: bold;
  color: blue;
}

/*
info
*/
.dashboard-info-list {
  display: flex;
  flex-direction: column;
  margin-top: 20px;
}
.dashboard-info-item {
  display: flex;
  margin-bottom: 24px;
}
.dashboard-info-item__date-box {
  width: 60px;
  height: 60px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  color: #0d546e;
  margin-right: 20px;
  border-radius: 8px;
}
.dashboard-info-item__date-d {
  font-size: 24px;
  font-weight: bold;
  /* margin-bottom: 4px; */
}
.dashboard-info-item__date-ym {
  font-size: 12px;
}
.dashboard-info-item__content-wrapper {
  display: flex;
  flex-direction: column;
  justify-content: center;
  font-size: var(--global-font-size);
}
.dashboard-info-item__content:not(:last-child) {
  margin-bottom: 8px;
}

/*
interprofessional-list
*/
.interprofessional-list {
  display: flex;
  flex-direction: column;
}
.interprofessional-item {
  display: flex;
  /* align-items: center; */
  padding: 20px;
  border-radius: 8px;
  background-color: #fff3f3;
}
.interprofessional-item:not(:last-child) {
  margin-bottom: 20px;
}
.interprofessional-item__left {
  width: 50%;
  height: 100%;
  display: flex;
  flex-direction: column;
  border-right: 1px solid #fb8e8e;
  padding-right: 20px;
}
.interprofessional-item__left-top {
  display: flex;
  justify-content: space-between;
}
.interprofessional-item__left-bottom {
  display: flex;
  padding-top: 20px;
}
.interprofessional-item__right {
  width: 50%;
  height: 100%;
  display: flex;
  padding-left: 20px;
}
.interprofessional-item-content {
  display: flex;
  flex-direction: column;
}
.interprofessional-item-content__title {
  font-size: var(--global-font-size);
  font-weight: bold;
  color: #fb8e8e;
  margin-bottom: 8px;
}
.interprofessional-item-content__description {
  color: #000000;
}
.interprofessional-item-button {
  display: flex;
  justify-content: center;
  align-items: center;
  padding: 4px 14px;
  border-radius: 8px;
  background-color: #fb8e8e;
  cursor: pointer;
  user-select: none;
}
.interprofessional-item-button__icon {
  display: flex;
  justify-content: center;
  align-items: center;
  margin-right: 12px;
}
.interprofessional-item-button__text {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  color: #ffffff;
}
.interprofessional-item-button__text div:not(:last-child) {
  margin-bottom: 2px;
}

/*
quality-track-list
*/
.quality-track-list {
  display: grid;
  grid-gap: 20px;
  grid-template-columns: repeat(2, 1fr);
}
.quality-track-item {
  position: relative;
  width: 100%;
  min-width: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  background-color: #fff3f3;
  border-radius: 8px;
}
.quality-track-item__count-wrapper {
  display: flex;
  align-items: flex-end;
  padding: 28px 0 0 28px;
}
.quality-track-item__count {
  color: #fb8e8e;
  font-size: 72px;
  line-height: 96px;
  font-weight: bold;
  margin-right: 20px;
  cursor: pointer;
  transition: all 0.3s;
}
.quality-track-item__count:hover {
  text-decoration: underline;
}
.quality-track-item__count-unit {
  color: #000;
  font-size: var(--global-font-size);
  line-height: 55px;
}
.quality-track-item__title-wrapper {
  position: absolute;
  top: 20px;
  left: 20px;
  display: flex;
  flex-direction: column;
}
.quality-track-item__title {
  font-size: var(--global-font-size);
  font-weight: bold;
  color: #fb8e8e;
  margin-bottom: 8px;
}
.quality-track-item__description {
  font-size: var(--global-font-size);
  color: #000;
}

/*
hbmi-apply
*/
.hbmi-apply {
  display: flex;
  flex-direction: column;
}
.hbmi-apply__type-list {
  display: flex;
  align-items: center;
  margin-bottom: 4px;
}
.hbmi-apply__type-list-item {
  margin-right: 8px;
  font-size: var(--global-font-size);
}
.hbmi-apply__table-wrapper {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hbmi-apply__table {
  width: 100%;
  background-color: #fff;
  /* border-color: #ffffff #afc7df #afc7df #ffffff; */
  border-style: solid;
  border-top-width: 1px;
  border-right-width: 1px;
  border-bottom-width: 0px;
  border-left-width: 1px;
  border-collapse: collapse;
}
.hbmi-apply__table > tbody > tr > td {
  vertical-align: middle;
  border: 1px solid #ddd;
  padding: 5px;
  font-size: var(--global-font-size);
}

.hbmi-apply__form-wrapper {
  width: 100%;
}

.hbmi-apply__required {
  color: red;
  font-weight: bold;
  /* font-size: var(--global-font-size); */
  font-size: 20px;
}

.hbmi-apply__td-title {
  background-color: #daf0f5;
}
.hbmi-apply__date-wrapper {
  width: 250px;
  display: flex;
  align-items: center;
}
.hbmi-apply__input-wrapper {
  width: 235px;
  display: flex;
  align-items: center;
}
.hbmi-apply__input-wrapper.number {
  width: 80px;
}
.hbmi-apply__input-wrapper.textarea {
  width: 600px;
}
.hbmi-apply__input-el {
  width: 100%;
}
.hbmi-apply__textarea-el {
  width: 100%;
}
.hbmi-apply__section-title {
  font-weight: bold;
}

.hbmi-apply__footer {
  width: 100%;
  display: flex;
  flex-direction: column;
  padding: 12px 0;
}
.hbmi-apply__btn-group {
  width: 100%;
  display: flex;
  justify-content: center;
  align-items: center;
}

.hbmi-apply__input-group {
  display: flex;
  align-items: center;
}
.hbmi-apply__input-group-title {
  font-size: var(--global-font-size);
}

/*
symptom-type
*/
.symptom-type-group-list {
  width: 70%;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  border: 1px solid #ddd;
  /* border-bottom: 0; */
}
.symptom-type-group {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.symptom-type-group__title {
  width: 80%;
  height: 100%;
  padding: 0 8px 0 0;
  border-right: 1px solid #ddd;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #daf0f5;
}
.symptom-type-group__click {
  width: 20%;
  height: 100%;
  border-right: 1px solid #ddd;
  display: flex;
  justify-content: center;
  padding: 8px 8px;
}

.symptom-type-checkbox-wrapper {
  width: 100%;
  display: flex;
}
.symptom-type-checkbox-list {
  width: 100%;
  display: flex;
  flex-direction: column;
}
.symptom-type-checkbox-item {
  display: flex;
  flex-direction: column;
}

/*
visit-rate-list
*/
.visit-rate-list {
  width: 600px;
  display: flex;
  flex-direction: column;
  border: 1px solid #ddd;
}
.visit-rate-item {
  width: 100%;
  display: flex;
  align-items: center;
  border-bottom: 1px solid #ddd;
}
.visit-rate-item__title {
  width: 250px;
  height: 100%;
  padding: 0 8px 0 0;
  border-right: 1px solid #ddd;
  display: flex;
  justify-content: flex-end;
  align-items: center;
  background-color: #daf0f5;
}
.visit-rate-item__content {
  /* width: 200px; */
  display: flex;
  align-items: center;
  padding: 8px;
}

/*
custom-help-dialog
*/
.custom-help-dialog {
}
.custom-help-dialog .q-dialog__backdrop {
  display: none;
}
.custom-help-dialog .q-dialog__inner {
  bottom: 20px;
  justify-content: flex-end;
}

/*
help-panel
*/
.help-panel {
  position: relative;
  width: 375px;
  height: 700px;
  border-radius: 8px !important;
  overflow: hidden;
  background-color: #fff;
  box-shadow: rgb(0 0 0 / 16%) 0px 5px 40px !important;
  /* overflow-x: hidden !important; */
  transition: all 0.3s;
}
.help-panel.large {
  width: 680px;
  height: 890px;
}
.help-panel__close {
  z-index: 1000;
  position: absolute;
  display: flex;
  justify-content: center;
  align-items: center;
  top: 10px;
  right: 20px;
}
.help-panel__content-wrapper {
  position: relative;
  z-index: 100;
  width: 100%;
  height: 100%;
  transition: visibility 0.15s linear, opacity 0.15s linear,
    transform 0.07s linear !important;
}
.help-panel__content-wrapper.fade {
  visibility: hidden;
  opacity: 0;
}
.help-panel__content-wrapper.show {
  visibility: visible;
  opacity: 1;
}
.help-panel__header {
  position: relative;
  z-index: 100;
  min-height: 235px;
  color: white;
  transition: height 160ms ease-out 0s;
  /* background: linear-gradient(135deg, rgb(32, 33, 35) 0%, rgb(0, 0, 0) 100%); */
  background-color: #1976d2;
  padding: 24px 51px 87px 40px;
}
.help-panel__header-message {
  display: flex;
  flex-direction: column;
}
.help-panel__greet-info {
  display: flex;
  align-items: center;
  font-size: 24px;
  font-weight: bold;
  color: #fff;
  margin-bottom: 12px;
}
.help-panel__statement {
  font-size: 18px;
  /* font-weight: bold; */
  color: #fff;
}
.help-panel__body {
  position: absolute;
  inset: 0px;
  overflow-y: auto;
  z-index: 200;
  display: flex;
  flex-direction: column;
  box-sizing: border-box;
  padding: 0px 16px;
  min-height: 100%;
  padding-top: 110px;
}
.help-panel__section-box {
  max-width: 100%;
  /* min-height: 200px; */
  margin-bottom: 17px;
  background-color: rgb(255, 255, 255);
  border-radius: 3px;
  font-size: 14px;
  line-height: 1.4;
  color: rgb(0, 0, 0);
  position: relative;
  box-shadow: rgb(0 0 0 / 10%) 0px 4px 15px 0px,
    rgb(0 0 0 / 10%) 0px 1px 2px 0px, rgb(32 33 35 / 50%) 0px 2px 0px 0px inset;
  transition: all 0.3s ease-out 0s;
  overflow: visible;
}
.help-panel__func-group {
  display: flex;
  flex-direction: column;
}
.help-panel__func-group-title {
  margin-bottom: 8px;
  color: rgb(129, 129, 129);
}
.help-panel__func-group-content {
  position: relative;
  width: 100%;
}
.help-panel__section-box-content {
  padding: 26px 24px 24px;
}
.help-panel__search-input-wrapper {
  border: 2px solid rgb(32, 33, 35);
  height: 40px;
  border-radius: 20px;
  display: flex;
  align-items: center;
  padding: 0 16px;
  cursor: text;
}
.help-panel__search-input-error {
  padding: 0 16px;
}
.help-panel__search-input-wrapper.borderless {
  border: 0;
}
.help-panel__input {
  outline: none;
  border: 0;
  font-size: var(--global-font-size);
}
.help-panel__input::placeholder {
  font-size: 14px;
}
.help-panel__data-list {
  /* width: 100%; */
  display: flex;
  flex-direction: column;
  margin: 0 -24px;
}
.help-panel__data-item {
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 8px 24px;
  transition: all 0.3s;
  cursor: pointer;
  font-size: var(--global-font-size);
}
.help-panel__data-item:hover {
  background: rgba(32, 33, 35, 0.12);
}
.help-panel__data-item-title {
}
.help-panel__data-item-tail-wrapper {
  display: flex;
  align-items: center;
}
.help-panel__data-item-list-count {
  color: rgb(128, 128, 128);
}
.help-panel__control-header {
  width: 100%;
  height: 80px;
  display: flex;
  align-items: center;
  padding: 0 24px;
  /* justify-content: space-between; */
  border-bottom: 1px solid rgb(229, 229, 229);
}
.help-panel__header-content-wrapper {
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
}
.help-panel__header-btn-wrapper {
  width: 48px;
  height: 48px;
  display: flex;
  justify-content: center;
  align-items: center;
}
.help-panel__header-input-wrapper {
  width: calc(100% - 48px);
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}
.help-panel__control-body {
  width: 100%;
  height: calc(100% - 80px);
  /* overflow-x: hidden; */
  overflow-y: auto;
  padding: 12px 24px;
}
.help-panel__browse-header {
  margin: 12px 0px;
  font-weight: bold;
  font-size: 16px;
}
.help-panel__browse-body {
}
.help-panel__browse-content-wrapper {
}
.help-panel__article-content-wrapper {
  padding: 0 15px;
}
.help-panel__article-title {
  font-size: 24px;
  font-weight: bold;
  margin-bottom: 16px;
}
.help-panel__article-content {
  /* font-size: var(--global-font-size); */
  font-size: 18px;
}
.help-panel__search-no-result {
  display: flex;
  justify-content: center;
  align-items: center;
  font-size: 20px;
  font-weight: bold;
  padding: 12px 0;
}
