body {
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  padding: 0;
  margin: 0;
  background-color: #f6f8fa;
  /* background-color: #8fd3f4; */
}


/* :root {
  --el-color-primary: green;
}
*/

.el-loading-mask .el-loading-text {
  font-size: 24px !important; /* 調整字體大小 */
}
.el-header {
  background-color: #f6f8fa;
  height: 50px;
}

.announcement-bar .el-carousel {
  width: 100%;
  background: rgb(255, 255, 255);
  border-radius: 999px;
  box-shadow: rgba(0, 0, 0, 0.08) 0px 2px 10px;
}

.announcement-bar {
  width: 100%;
}

.announcement-item {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  height: 36px;
  padding: 0 120px 0 24px;
  background-color: #ffffff;
  color: #111827;
  font-size: 16px;
  font-weight: 700;
  line-height: 1;
}

.announcement-title {
  min-width: 0;
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.announcement-count {
  position: absolute;
  right: 24px;
  color: #606266;
  font-size: 14px;
  font-weight: 700;
}

/* 患者資訊欄*/

.customer-Zone {
    width: 300px;
    height: 100vh;

    .el-button+.el-button {
        margin-left: 4px;
    }
}

#menu {
  margin-left: -20px;
  padding: 20px;
  padding-top: 0;
  /* background-color: white; */
  background-color: #f6f8fa;

  button {
    width: 100%;
    margin: 0;
  }
  .menu-button-group {
    display: flex;
    flex-direction: column;
    justify-content: start;
    align-items: stretch;
    gap: 10px;
  }
  .el-divider {
    margin: 12px 0;
  }
}
.mt-1{
  margin-top: 1rem;
}
.ml-1{
  margin-left: 1rem;
}
.mr-1{
  margin-right: 1rem;
}
.mb-1{
  margin-bottom: 1rem;
}

.medical-button-group {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 6px;
  * {
    flex-basis: 19%;
  }
}
.dialog-header {
    h2 {
        margin: 0;
    }

    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 16px;
}

.dialog-tabs {
    margin-top: 20px;
    height: 160px;
}

.errorBtn {
    button {
        margin: 5px 0 !important;
        display: block;
    }
}



.flex {
  display: flex;
}
.flex-row {
  flex-direction: row;
}
.flex-col {
  flex-direction: column;
}
.flex-wrap {
  flex-wrap: wrap;
}
.flex-nowrap {
  flex-wrap: nowrap;
}
.flex-reverse {
  -webkit-box-orient: horizontal;
  -webkit-box-direction: reverse;
      -ms-flex-direction: row-reverse;
          flex-direction: row-reverse;
}
.jcs {
  justify-content: start;
}
.jcc {
  justify-content: center;
}
.jcsb {
  justify-content: space-between;
}
.jce {
  justify-content: end;
}
.ais {
  align-items: start;
}
.aic {
  align-items: center;
}
.aie {
  align-items: end;
}
.aist {
  align-items: stretch;
}
