﻿@charset "UTF-8";
@import url(https://fonts.googleapis.com/css?family=Barlow);
body {
  background: #FAFAFA;
}

.titlePageFont {
  font-family: 微軟正黑體;
  font-weight: 600;
  margin: 16px;
  color: #00D7FB;
  font-size: 28px;
}

.navlink_font {
  font-size: 18px;
  color: #FAFAFA;
  font-family: 微軟正黑體;
}

.title_font {
  font-size: 20px;
  color: #004D40;
  font-weight: bold;
  font-family: 微軟正黑體;
}

.description_font {
  font-weight: bold;
  font-size: 16px;
  color: #4DB6AC;
  font-family: 微軟正黑體;
}

.title_hint_font {
  font-size: 16px;
  color: #4DB6AC;
  font-family: 微軟正黑體;
}

.title_hint_font.col_1 {
  padding-left: 8px;
  color: #00D7FB;
}

.title_hint_font.col_2 {
  padding-left: 24px;
}

.btn-sm {
  font-size: 16px;
}

.navlink {
  cursor: pointer;
}

iframe {
  border: none;
  /* 移除 iframe 邊框 */
  width: 100%;
  height: 92%;
  border: none;
  padding: 8px;
}

input {
  height: 36px;
  padding: 0px 8px !important;
}

select {
  height: 36px;
  padding: 0px 8px !important;
  appearance: auto;
}

.wrapper {
  display: grid;
  grid-template-columns: 14% 86%;
  /* 左邊 20%，右邊 80% */
  height: 100vh;
  /* 設定整個畫面的高度 */
}

#main_body_col {
  display: flex;
  justify-content: center;
  height: 100%;
}

#main_title {
  height: 64px;
  width: 100%;
  display: flex;
  align-content: center;
  align-items: center;
  justify-content: center;
  background: #15202b;
}

#header_bar {
  background: #FAFAFA;
  height: 100%;
  width: 100%;
  display: flex;
  box-shadow: 0px 2px 4px 0px #B2DFDB;
  padding-left: 16px;
}

#header_bar_inside {
  display: flex;
  flex-direction: row;
  flex-wrap: nowrap;
  align-items: center;
}

.header_bar_col {
  padding-right: 8px;
}

.panel__main {
  background-color: #2C2F33;
  height: 100%;
  flex: 1;
  overflow: scroll;
  overflow-x: hidden;
  max-height: calc(100vh - 64px);
}

.panel__main .panel__main_side {
  background: #15202b;
}

.panel__main .panel__main_side .list__links {
  padding: 7.5px;
}

.panel__main .panel__main_side .list__links li {
  display: block;
  border-radius: 5px;
  margin: 5px 1px;
  padding: 10px 15px;
}

.panel__main .panel__main_side .list__links li:hover {
  background: #34373C;
}

.panel__main .panel__main_side .list__links .active {
  background: #393C43;
}

.panel__main .panel__main_side .list__links a {
  color: #99AAB5;
  text-decoration: none;
}

.panel__main .panel__main-content {
  background: #FAFAFA;
  color: #99AAB5;
  flex: 1;
  padding: 0;
  overflow-x: hidden;
  overflow-y: scroll;
}

.container_Main {
  display: grid;
  grid-template-rows: 7fr 4fr;
  /* 上面 2/3、下面 1/3 */
  height: 90vh;
  width: 100%;
}

.container_Main .top_Main_col {
  width: 100%;
  height: 100%;
  padding: 0px;
  border-bottom: 2px solid #B2DFDB;
  display: flex;
  padding: 16px;
}

.top_Main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.bottom_Main {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  margin-top: 32px;
}

.bottom_Main .container {
  margin: 0px 8px;
  width: 100%;
  max-width: 100%;
}

.bottom_Main thead tr {
  font-size: 18px;
  color: #212121;
}

.bottom_Main_col {
  width: 70%;
  height: 100%;
  padding: 16px;
}

.contents_block {
  width: 100%;
  height: 100%;
  background: #FAFAFA;
  flex-grow: 1;
  border-radius: 8px;
  margin-top: 8px;
}

.top_Main_block {
  padding: 16px;
  width: 100%;
  height: 100%;
  background: #B2DFDB;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.tab {
  overflow: hidden;
  background-color: #B2DFDB;
  padding: 4px 4px 0px 4px;
  border-radius: 8px 8px 0px 0px;
}

/* Style the buttons inside the tab */
.tab button {
  color: #212121;
  background-color: #B2DFDB;
  float: left;
  border: none;
  outline: none;
  cursor: pointer;
  margin: 0 2px;
  transition: 0.3s;
  font-size: 18px;
  height: 32px;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  flex-wrap: nowrap;
  font-family: 微軟正黑體;
  border-radius: 8px 8px 0px 0px;
}

.tab button.tb_line:before {
  display: block;
  content: '';
  position: absolute;
  border-right: 1px solid #4DB6AC;
  height: 16px;
  right: 0px;
  bottom: 8px;
  margin: 0 -4px;
}

/* Change background color of buttons on hover */
.tab button:hover {
  background-color: #4DB6AC;
  color: #323334;
}

.tab button:hover .material-icons {
  color: #FAFAFA;
  transition: 0.24s;
}

/* Create an active/current tablink class */
.tab button.active {
  background-color: #FAFAFA;
  color: #15202b;
  margin: 0px 8px;
}

.tab .material-icons {
  font-size: 28px;
  color: #E0E0E0;
}

.tab button.active .material-icons {
  color: #15202b;
  transition: 0.48s;
}

.Select_Col {
  width: 100%;
  height: 100%;
  display: flex;
  margin: 8px 0px;
}

.Select_Col .Col {
  min-width: 196px;
  display: flex;
  justify-content: flex-end;
}

.Select_Col .Input_Col {
  width: 100%;
  font-weight: 800;
  margin: 2px;
}

.Select_Col .time_Col {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.Select_Col .Input_Col.dropdown {
  width: 25%;
}

.Select_Col_View {
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.Action_col {
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.Action_col_sideSetting {
  width: 100%;
  display: flex;
  align-items: stretch;
  justify-content: center;
  flex-direction: column;
  flex-wrap: nowrap;
  align-items: center;
}

.btn-Act {
  width: 144px;
  border: 4px solid #FFFFFF;
  background: linear-gradient(145deg, #7289DA, #00D7FB);
  background: linear-gradient(144deg, #7289DA, #7289DA, #7289DA, #00D7FB 95%);
  color: #212121;
  margin: 8px;
  font-size: 18px;
  transform: skewX(calc(-16* 1deg)) scale(1);
  border-radius: 8px;
}

.btn-Act span {
  color: #FAFAFA;
  transform: skewX(calc(16* 1deg)) scale(1);
}

.btn-Act.btn-select {
  border: 4px solid #B2DFDB;
}

.btn-Act.btn-select span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.btn-Act:active {
  scale: .95;
}

.btn-Act.btn-donwload {
  border: 4px solid #B2DFDB;
}

.btn-Act.btn-donwload span {
  display: flex;
  justify-content: center;
  align-items: center;
}

.container_Main_CaseSearch {
  display: grid;
  grid-template-rows: 2fr 8fr;
  height: 90vh;
  width: 100%;
}

.container_Main_CaseSearch .top_Main_block_1 {
  padding: 16px;
  width: 45%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.container_Main_CaseSearch .top_Main_block_2 {
  padding: 16px;
  width: 45%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.container_Main_CaseSearch .top_Main_block_3 {
  padding: 16px;
  width: 15%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.container_Main_CaseSearch .top_Main {
  display: flex;
  justify-content: flex-start;
  align-items: flex-start;
}

.container_Main_CaseSearch .top_Main_col {
  width: 100%;
  height: 100%;
  padding: 0px;
  border-bottom: 2px solid #B2DFDB;
  display: flex;
}

.container_Main_CaseSearch .contents_block {
  width: 100%;
  height: 100%;
  background: #FAFAFA;
  flex-grow: 1;
  border-radius: 8px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}

.container_Main_CaseSearch .title_font {
  font-size: 20px;
  color: #004d40;
  font-weight: 400;
  font-family: 微軟正黑體;
  margin-right: 8px;
}

.part_top_Col {
  width: 100%;
  height: 100%;
  display: flex;
  margin: 8px 0px;
}

.part_top_Col .part_top_view {
  flex: 1;
  width: 100%;
  height: 100%;
  display: flex;
  flex-direction: row;
  align-items: center;
  justify-content: flex-start;
}

.part_top_Col .Col {
  min-width: 196px;
  display: flex;
  justify-content: flex-end;
}

.part_top_Col .Input_Col {
  width: 100%;
  font-weight: 800;
  margin: 2px;
}

.part_top_Col .time_Col {
  display: flex;
  flex-direction: row;
  justify-content: center;
  align-items: center;
}

.part_top_Col .Input_Col.dropdown {
  width: 25%;
}

.container_Main_CaseEdit {
  background: #FFFFFF;
  display: grid;
  grid-template-rows: 1fr 7.7fr;
  width: 100%;
}

.container_Main_CaseEdit .Input_Col.dropdown {
  width: 100%;
}

.container_Main_CaseEdit .Input_Col.dropdown_25p {
  width: 25%;
}

.container_Main_CaseEdit .Input_Col.dropdown_50p {
  width: 50%;
}

.container_Main_CaseEdit .Input_Col.time_Col_50p {
  width: 50%;
}

.container_Main_CaseEdit .Input_Col.time_Col_100p {
  width: 50%;
}

.container_Main_CaseEdit .Input_Col.text {
  font-size: 20px;
  color: #004d40;
  font-weight: 400;
  font-family: 微軟正黑體;
  margin-right: 8px;
}

.container_Main_CaseEdit .row#mainBlock {
  background: #FAFAFA;
  max-height: 74vh;
  overflow-y: scroll;
  border: #4DB6AC solid 2px;
}

.container_Main_CaseEdit .top_Main {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
}

.container_Main_CaseEdit .contents_block {
  width: 100%;
  height: 100%;
  background: #FAFAFA;
  flex-grow: 1;
  border-radius: 8px;
  margin-top: 8px;
  display: flex;
  flex-direction: column;
}

.container_Main_CaseEdit .title_font {
  font-size: 20px;
  color: #004d40;
  font-weight: 400;
  font-family: 微軟正黑體;
  margin-right: 8px;
}

.container_Main_CaseEdit .bottom_Main #mainBlock {
  margin: 0px;
  height: 80vh;
}

.container_Main_CaseEdit .bottom_Main #mainBlock .Main_col_1 {
  width: 100%;
  padding: 0px;
  border-bottom: 2px solid #B2DFDB;
  display: flex;
  justify-content: center;
}

.container_Main_CaseEdit .bottom_Main #mainBlock .Main_col_1 .Main_block_1 {
  padding: 16px;
  width: 45%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.container_Main_CaseEdit .bottom_Main #mainBlock .Main_col_1 .Main_block_1 .Select_Col {
  height: auto;
}

.container_Main_CaseEdit .bottom_Main #mainBlock .Main_col_1 .Main_block_2 {
  padding: 16px;
  width: 45%;
  height: 100%;
  background: rgba(255, 255, 255, 0);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
}

.container_Main_CaseEdit .bottom_Main #mainBlock .Main_col_1 .Main_block_2 .Select_Col {
  height: auto;
}

/*# sourceMappingURL=frame_design.css.map */