@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC&family=Noto+Serif+TC:wght@200;300;400;500;600;700;900&display=swap");
html,
body {
  margin: 0;
  background-color: rgba(237, 237, 237, 0);
  height: 100%;
  font-size: 16px;
  letter-spacing: 1px;
  font-family: "Noto Sans TC", sans-serif;
}

.root {
  display: flex;
}

.board {
  width: 99%;
  height: 99%;
  margin: 0 auto;
  flex-direction: column;
  align-items: center;
  position: relative;
}
.mobile-only {
  display: none; /* 網頁版隱藏手機選單 */
}
@media (max-width: 820px) {
  .mobile-only {
    display: flex; /* 手機版顯示下拉選單 */
    width: 100%;
    justify-content: flex-end;
    padding: 20px 20px;
    box-sizing: border-box;
  }
}

.mobile-select {
  width: 50%;
  padding: 10px;
  font-size: 16px; /* 避免 iPhone 自動放大螢幕 */
  border: 1px solid #ccc;
  border-radius: 5px;
  text-align: right;
}

.labelArea {
  width: 100%;
  height: 10%;
  padding: 0 5px;
  box-sizing: border-box;
  justify-content: space-evenly;
}
@media (max-width: 820px) {
  .labelArea {
    display: none;
    height: auto;
    flex-wrap: wrap;
  }
}

.label {
  width: 14%;
  height: 100%;
  border: 2px solid rgba(253, 193, 57, 0);
  border-radius: 10px 10px 0 0;
  border-bottom: 0px;
  align-items: center;
  justify-content: center;
  text-align: center;
}
@media (max-width: 820px) {
  .label {
    border-radius: 0px;
    width: 45%;
    height: 45px;
    border-bottom: 2px solid rgba(253, 193, 57, 0);
    justify-content: center;
    text-align: center;
  }
}

.label:hover {
  cursor: pointer;
  border: 2px solid rgb(253, 193, 57);
  border-bottom: 0px;
}
@media (max-width: 820px) {
  .label:hover {
    border-bottom: 2px solid rgb(253, 193, 57);
  }
}

.selected {
  border: 2px solid rgb(253, 193, 57);
  border-bottom: 0px;
}
@media (max-width: 820px) {
  .selected {
    border-bottom: 2px solid rgb(253, 193, 57);
  }
}

.table {
  width: 100%;
  flex: 1;
  border: 2px solid rgb(253, 193, 57);
  flex-direction: column;
  align-items: center;
  overflow-y: auto;
  overflow-x: hidden;
  scrollbar-width: thin;
  scrollbar-color: rgba(253, 194, 57, 0.408) rgb(255, 255, 255);
}
@media (max-width: 820px) {
  .table {
    flex-direction: row;
    overflow-x: scroll;
    overflow-y: hidden;
    margin: -2px 0 0 0;
    width: 100%;
  }
}

.th {
  width: 100%;
  min-height: 50px;
  border: 2px solid rgb(253, 193, 57);
  border-bottom: 0px;
  align-items: center;
  justify-content: space-evenly;
  background-color: #ededed;
}
@media (max-width: 820px) {
  .th {
    display: none;
    width: 40px;
    height: 100%;
    flex-direction: column;
    justify-content: space-evenly;
    border-right: 1px solid rgb(253, 193, 57);
    padding: 0 8px;
  }
}

.table2 {
  width: 100%;
  flex: 1;
  flex-direction: column;
}
@media (max-width: 820px) {
  .table2 {
    overflow-x: auto;
    width: auto;
    height: 100%;
    flex-direction: row;
    scroll-snap-type: x mandatory;
  }
}

.th2 {
  width: 100%;
  min-height: 50px;
  border-bottom: 1px solid rgb(253, 193, 57);
}
@media (max-width: 820px) {
  .th2 {
    border-right: 1px solid rgb(253, 193, 57);
    height: 100%;
    flex-direction: column;
    justify-content: space-evenly;
    padding: 0px 20px;
    scroll-snap-align: start;
  }
}

/* .th2:nth-child(odd){
	background-color: rgb(255, 255, 255);
}
.th2:nth-child(even){
	background-color: rgb(254, 249, 222);
}  */
.th2:not([style*="display: none"]):nth-of-type(odd) {
  background-color: rgba(224, 234, 229, 0.725);
}

.th2:not([style*="display: none"]):nth-of-type(even) {
  background-color: #ffffff;
}

.row-odd {
  background-color: #ffffff;
} /* 白色 */
.row-even {
  background-color: #f2f2f2;
} /* 淺灰色 */
.td {
  width: 20%;
  padding: 10px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 820px) {
  .td {
    width: 100%;
    height: 15%;
    justify-content: flex-start;
    border-bottom: 1px solid rgb(253, 193, 57);
  }
}

.td2 {
  width: 20%;
  padding: 10px;
  justify-content: center;
  align-items: center;
}
@media (max-width: 820px) {
  .td2 {
    width: calc(100vw - 60px);
    height: 15%;
    border-bottom: 0px solid rgb(253, 193, 57);
  }
}

.td:nth-child(3) {
  width: 20%;
}
@media (max-width: 820px) {
  .td:nth-child(3) {
    width: 100%;
  }
}

.td2:nth-child(3) {
  width: 20%;
}
@media (max-width: 820px) {
  .td2:nth-child(3) {
    width: 100%;
  }
}

@media (max-width: 820px) {
  .td2:nth-child(even) {
    border: 1px solid rgb(253, 193, 57);
    border-radius: 10px;
  }
}/*# sourceMappingURL=notices.css.map */