﻿@charset "UTF-8";
/*標題文字採用細圓體的部分*/
@import url(https://fonts.googleapis.com/earlyaccess/cwtexyen.css);

:root {
  --white-color: #fff;
  --black-color: #000;
  --main-color: #39b495;
  --main-dark-color: #2a997d;
  --main2-color: #abcbd9;
  --main2-dark-color: #94b8c4;
  --main2-dark2-color: #7fa5c0;
  --gray-light-color: #e7e7e7;
  --gray-light2-color: #bfbfbf;
  --gray-mid-color: #ced0d4;
  --gray-dark-color: #808080;
  --gray-dark2-color: #595656;
  --green-light-color: #f4f9f7;
  --green-dark-color: #dfeae5;
}

* {
  margin: 0;
  padding: 0;
  -webkit-box-sizing: border-box;
  box-sizing: border-box;
  font-family: "微軟正黑體", "cwTeXYen", sans-serif;
}

/*設定10pt,用繼承的方式讓其他東西以10pt為計算*/
html {
  font-size: 10pt;
}

/*設定main下所有字都是12pt=16px*/
main {
  font-size: 1.2rem;
  position: relative;
  z-index: 50;
}

body {
  background-color: #ecf6f3;
}

table {
  border-spacing: 0;
}

/*讓表格裡面的東西都強制換行(否則遇到數字會超出版面不換行問題)*/
td,
th {
  word-break: break-all;
}

section h3 {
  border-bottom: 1px solid #000;
  font-size: 25px;
  font-weight: bold;
  padding-bottom: 5px;
  text-align: left;
  padding-left: 15px;
}

/*header ===========================================*/
.header {
  position: relative;
  width: 100%;
  z-index: 20;
}

.header__bg {
  background: url(../images/index_bg.png) no-repeat bottom right/cover;
  width: 100%;
  height: 650px;
  position: absolute;
  top: 0;
  z-index: -10;
}

.header__wrap {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  row-gap: 1rem;
  column-gap: 2rem;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 2rem 1rem 0;
  box-sizing: border-box;
  position: relative;
}

@media screen and (max-width: 1200px) {
  .header__wrap {
    width: 90%;
  }
}

.header__wrap--l {
  justify-content: flex-start;
  align-items: flex-start;
  flex-direction: column;
  row-gap: 0;
}

.header__title--l {
  width: 100%;
  display: flex;
  align-items: center;
}

.header__title--s a,
.header__title--l a {
  text-decoration: none !important;
}

.header__title--l h1 {
  font-family: "cwTeXYen", "微軟正黑體";
  font-size: 3.8rem;
  color: var(--main-color);
  line-height: 1.2;
  font-weight: bolder;
  margin-right: auto;
  white-space: nowrap;
}

.header__title--l img {
  width: 300px;
}

.header__title--s br {
  display: none;
}

.header__title--s h1 {
  font-family: "cwTeXYen", "微軟正黑體";
  font-size: 3rem;
  color: var(--main-color);
  line-height: 1.2;
  margin: 0;
}

.header__logo img {
  display: block;
  width: 200px;
}

/* =========================
   桌機版主選單
========================= */
.header__menu {
  margin-left: auto;
  width: 100%;
}

.header__items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 15px;
  margin: 0;
  padding: 0;
}

.header__items li {
  list-style: none;
  position: relative;
  overflow: hidden;
  transition: all 0.3s;
}

.header__items li::after {
  content: "";
  position: absolute;
  top: 0;
  right: 110%;
  width: 100%;
  height: 100%;
  background-color: var(--main-dark-color);
  transition: all 0.3s;
  z-index: -1;
}

.header__items li:hover::after {
  right: 0;
}

.header__items li:hover a {
  color: var(--white-color);
}

.header__items a {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--black-color);
  text-decoration: none;
  font-weight: bold;
  font-size: 1.5rem;
  line-height: 1.2;
  white-space: nowrap;
  padding: 1rem 1.5rem;
  min-height: 52px;
  transition: all 0.3s;
  box-sizing: border-box;
}

.header__items--active {
  background-color: var(--main-color);
  transition: all 0.2s;
}

.header__items--active a {
  color: var(--white-color);
}

.header__items--active:hover::after {
  display: none;
}

/* =========================
   手機 MENU 按鈕
========================= */
.header__menuToggle {
  display: none;
  align-items: center;
  gap: 10px;
  margin-left: auto;
  padding: 10px 15px;
  border: 1px solid #d7e1e8;
  /* border-radius: 12px; */
  background: rgba(255, 255, 255, 0.96);
  color: var(--black-color);
  font-weight: bold;
  cursor: pointer;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
}

.header__menuToggle-text {
  font-size: 15px;
  line-height: 1;
}

.header__menuToggle-icon {
  width: 20px;
  display: inline-flex;
  flex-direction: column;
  gap: 4px;
}

.header__menuToggle-icon span {
  display: block;
  width: 100%;
  height: 2px;
  background: var(--black-color);
  border-radius: 99px;
  transition: all 0.25s ease;
}

.header.is-menu-open .header__menuToggle-icon span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.header.is-menu-open .header__menuToggle-icon span:nth-child(2) {
  opacity: 0;
}

.header.is-menu-open .header__menuToggle-icon span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

/* =========================
   平板以下微調
========================= */
@media screen and (max-width: 1100px) {
  .header__title--l {
    margin: 2rem 0;
  }

  .header__title--l img {
    display: none;
  }

  .header__wrap {
    column-gap: 1.25rem;
  }

  .header__title--s h1 {
    font-size: 2.5rem;
  }

  .header__logo img {
    width: 180px;
  }

  .header__items {
    gap: 0.55rem;
    flex-wrap: wrap;
  }

  .header__items a {
    padding: 0.8rem 1rem;
    font-size: 1.1rem;
    min-height: 48px;
  }
}

/* =========================
   手機版：改用 MENU 展開
========================= */
@media screen and (max-width: 796px) {
  .header__wrap {
    padding-left: 0;
    padding-right: 0;
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    column-gap: 0.75rem;
    row-gap: 0.75rem;
  }

  .header__logo {
    grid-column: 1 / 2;
  }

  .header__title--s {
    grid-column: 2 / 3;
  }

  .header__menuToggle {
    display: inline-flex;
    grid-column: 3 / 4;
    justify-self: end;
  }

  .header__logo img {
    width: 120px;
    margin: 0;
  }

  .header__title--l {
    margin: 0.5rem 0;
  }

  .header__title--l h1,
  .header__title--s h1 {
    font-size: 1.7rem;
    display: block;
    line-height: 1.2;
  }

  .header__title--s h1 {
    text-align: left;
  }

  .header__title--s br {
    display: block;
  }

  .header__menu {
    grid-column: 1 / -1;
    width: 100%;
    margin-left: 0;
    margin-top: 0.2rem;
    display: none;
    background-color: #fff;
  }

  .header.is-menu-open .header__menu {
    display: block;
  }

  .header__items {
    flex-direction: column;
    align-items: stretch;
    width: 100%;
  }

  .header__items li {
    width: 100%;
    overflow: visible;
    border-radius: 10px;
  }

  .header__items li::after {
    display: none;
  }

  .header__items a {
    display: flex;
    width: 100%;
    justify-content: flex-start;
    padding: 0.9rem 1rem;
    min-height: 48px;
    font-size: 1rem;
    background: #fff;
  }

  .header__items li:hover a {
    color: var(--black-color);
    background: var(--green-light-color);
  }

  .header__items--active {
    background-color: transparent;
  }

  .header__items--active a {
    color: var(--white-color);
    background: var(--main-color);
    border-color: var(--main-color);
  }
}

@media screen and (max-width: 610px) {
  .header__title--s h1 {
    font-size: 1.5rem;
  }
}

@media screen and (max-width: 480px) {
  .header__wrap {
    width: calc(100% - 24px);
    padding: 0.8rem 0 0;
    grid-template-columns: auto 1fr auto;
  }

  .header__logo img {
    width: 105px;
  }

  .header__title--l h1,
  .header__title--s h1 {
    font-size: 1.32rem;
  }

  .header__menuToggle {
    padding: 0.68rem 0.85rem;
  }

  .header__menuToggle-text {
    font-size: 0.92rem;
  }

  .header__items a {
    font-size: 0.95rem;
    padding: 0.82rem 0.9rem;
  }
}

/*main ===========================================*/
/*設定"所有"最大寬度以及margin置中
因此主要內容包覆時請務必使用main > main__wrap 
main設定整體的基礎文字大小設定, main_wrap設定最大寬度*/
.main__wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0rem auto;
}

@media screen and (max-width: 1200px) {
  .main__wrap {
    width: 90%;
  }
}

/*index icon選擇部分(坡地資訊與水保計畫這一塊)*/
.index {
  background-color: var(--white-color);
  display: flex;
  align-items: center;
  justify-content: space-around;
  flex-wrap: nowrap;
  row-gap: 1rem;
  column-gap: 0rem;
  padding: 1rem 0;
  box-shadow: #eaeaea 0px 0px 20px;
}

@media screen and (max-width: 900px) {
  .index {
    padding: 1rem;
    flex-wrap: wrap;
  }
}

.index__item {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 0rem;
  position: relative;
  flex: 1;
  border-right: 1px solid var(--gray-dark2-color);
}

.index__item h2 {
  font-size: 17px !important;
}

.index__item a {
  display: flex;
  flex-direction: column;
  /* justify-content: center; */
  justify-content: space-evenly;
  align-items: center;
  row-gap: 0rem;
  color: var(--black-color);
  text-decoration: none;
  /* padding: 0.8rem 2.5rem; */
  padding: 1.5rem 0;
  width: 190px;
  height: 200px;
  border-radius: 20px;
  font-size: 17px;
  transition: all 0.3s;
  background-color: var(--green-light-color);
}

.index__item a:hover {
  background-color: var(--green-dark-color);
}

.index__item a {
  font-size: 1rem;
}

/*.index__item + .index__item2::before {
  content: "";
  background-color: var(--gray-dark2-color);
  position: absolute;
  width: 1px;
  height: 100%;
  left: 0;
}*/
.index__item img {
  height: 80px !important;
}

.index img {
  width: 130px;
  height: 130px;
}

.index__item2 {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  row-gap: 0rem;
  position: relative;
  /* width: 30%; */
  padding: 0 1rem;
}

.index__item2>a,
.index__item2>.list-wrap {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: row;
  flex-direction: row;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: row;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  /* justify-content: center; */
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  row-gap: 0rem;
  color: var(--black-color);
  text-decoration: none;
  /* padding: 1rem 2.5rem;
  border-radius: 20px; */
  /* padding: 10px 15px; */
  padding: 3px 10px;
  border-radius: 10px;
  width: 100%;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  background-color: var(--green-light-color);
  vertical-align: middle;
  font-weight: bold;
  /* font-size: 18px; */
  cursor: pointer;
}

.index__item2 h2 {
  font-size: 17px;
}

.index__item2>a+.list-wrap {
  /* margin-top: 15px; */
}

.img2 img {
  width: 60px;
  height: 60px;
  vertical-align: middle;
  margin-right: 15px;
}

.index__item2>a:hover,
.index__item2 .list-wrap:hover {
  background-color: var(--green-dark-color);
}

.index__item2 .list-wrap {
  position: relative;
}

.index__item2 .list-content {
  position: absolute;
  top: 90px;
  left: 50%;
  transform: translateX(-50%);
  width: 100%;
  background-color: var(--green-dark-color);
  padding: 1rem 2.5rem;

  border-radius: 10px;
  box-shadow: 0px 3px 6px #8cafbe;
}

.index__item2 .list-content a {
  display: block;
  color: #000;
  text-decoration: none;
  font-size: 16px;
  padding: 10px 15px;
  padding-left: 1.1rem;
  border-bottom: var(--main2-color) 1px solid;
  transition: all 0.3s;
}

.index__item2 .list-content a:hover {
  background-color: var(--green-light-color);
}

.index__item2 .list-content a:last-child {
  border-bottom: none;
}

.index__item2 .list-content a img {
  width: 30px;
  height: 30px;
  vertical-align: middle;
  margin-right: 25px;
}

.d-flex {
  display: flex !important;
}

.index__item2 img {
  max-width: 45px !important;

}

@media screen and (max-width: 1400px) {
  .index {
    display: flex;
    flex-wrap: wrap;
  }

  .index__item a {
    padding: 0.8rem 1.5rem;
  }

  .index__item2>a,
  .index__item2>.list-wrap {
    padding: 0.8rem 1.5rem;
  }
}

/*@media screen and (max-width: 796px) {*/
@media screen and (max-width: 1400px) {
  .index__item a {
    padding: 0.5rem;
    margin: 0 0.5rem;
    width: calc(100% - 1rem);
  }

  .index .img-wrap {
    /* width: 60%; */
    height: auto;
  }

  .index img {
    width: 100%;
    height: 100%;
    aspect-ratio: 1/1;
  }

  .index__item {
    width: 50%;
    flex: none;
    border-right: 0px;
  }

  .index__item.sm-100 {
    width: 100%;
    flex: auto;
  }

  .index__item.sm-100 a {
    flex-direction: row;
  }

  .index__item.sm-100 .img-wrap {
    /* width:25%; */
  }

  .index__item2 {
    display: flex;
    /* flex-direction: row; */
    flex-direction: column;
    width: 100%;
    padding: 0;
    margin: 0 7px;
  }

  .index__item2>a {
    display: flex;
    /* flex-direction: column; */
    justify-content: flex-start;
    width: 100%;
    align-items: center;
    /* margin: 0 0.5rem;
    padding: 0.5rem; */
    padding: 0.8rem 1.5rem;
  }

  .index__item2>.list-wrap {
    display: flex;
    /* flex-direction: column; */
    align-items: center;

  }

  .index__item2>a+.list-wrap {
    margin-top: 0px;
  }

  .index__item2 .list-content {
    padding: 0.5rem 0rem;
    top: 145px;
  }

  .index__item2 .list-content a img {
    width: 20px;
    height: 20px;
    margin-right: 0px;
  }

  .sm-column {
    flex-direction: column;
  }

  .sm-ml-10 {
    margin-left: 10px;
  }

  .sm-align-center {
    align-items: center;
  }
}

/*searchbox 搜尋框部分*/
.searchbox {
  -webkit-box-shadow: #eaeaea 0px 0px 20px;
  box-shadow: #eaeaea 0px 0px 20px;
}

.searchbox table {
  border-spacing: 0;
  width: 100%;
  background-color: var(--white-color);
  text-align: left;
  font-size: 1.2rem;
}

.searchbox th,
.searchbox td {
  padding: 1rem;
  font-size: 1.2rem;
  border-bottom: var(--gray-light2-color) 1px solid;
}

.searchbox table td {
  width: 100%;
}

.searchbox th {
  width: 18%;
  padding-left: 8rem;
  padding-right: 2rem;
}

.searchbox__title {
  background-color: var(--main2-color);
}

.searchbox__title th {
  font-size: 1.8rem;
  padding: 0.5rem 1rem;
  padding-left: 8rem;
}

.searchbox--th-right th {
  text-align: right;
}

@media screen and (max-width: 1120px) {
  .searchbox th {
    padding-left: 1rem;
    padding-right: 1rem;
  }

  .searchbox td {
    padding: 0.8rem 0.8rem 0.8rem 0;
  }

  .main {
    margin-top: 20px;
    border: 0px solid #fff;
  }
}

/*table 表格部分設定*/
.table span {
  display: inline-block;
  margin: 1rem 0;
  font-weight: bold;
  font-size: 1.4rem;
}

.table table {
  -webkit-box-shadow: #eaeaea 0px 0px 20px;
  box-shadow: #eaeaea 0px 0px 20px;
  width: 100%;
  background-color: var(--white-color);
  text-align: center;
}

.table th,
.table td {
  padding: 1rem;
  border-bottom: var(--gray-light2-color) 1px solid;
}

.openlist {
  border: none;
}

.openlist th {
  background-color: var(--main2-color);
  padding: 0.5rem 1rem;
  font-size: 1.4rem;
  border: none;
}

.openlist th a {
  color: #000;
  text-decoration: none;
}

.openlist td {
  border: none;
  border-bottom: 1px solid #ccc;
}

.openlist td:nth-child(1) {
  width: 12%;
}

.openlist td:nth-child(2) {
  width: 43%;
}

.openlist td:nth-child(4) {
  width: 20%;
}

@media screen and (max-width: 796px) {

  .table td,
  .table th {
    padding: 0.5rem;
  }
}

/*tab頁籤部分*/
.case {
  width: 100%;
}

.tab__title {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-pack: justify;
  -ms-flex-pack: justify;
  justify-content: space-between;
  background-color: var(--white-color);
  -webkit-box-shadow: #eaeaea 0px 0px 20px;
  box-shadow: #eaeaea 0px 0px 20px;
}

.tab__title--active {
  border-bottom: var(--main-color) 5px solid;
}

.tab__title--active::after {
  -webkit-box-shadow: #dfdfdf 0px 15px 15px -15px;
  box-shadow: #dfdfdf 0px 15px 15px -15px;
  content: "";
  position: absolute;
  border-style: solid;
  border-width: 0px 15px 20px 15px;
  border-color: transparent transparent var(--white-color) transparent;
  background-color: transparent;
  bottom: -2.4rem;
  left: 50%;
  -webkit-transform: translateX(-50%);
  transform: translateX(-50%);
}

.tab li {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-align: center;
  -ms-flex-align: center;
  align-items: center;
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
  list-style: none;
  text-align: center;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  position: relative;
}

.tab li:first-child::after {
  border-color: transparent transparent var(--main2-color) transparent;
}

.tab li:nth-child(4)::after {
  border-color: transparent transparent var(--main2-dark2-color) transparent;
}

.tab__title a {
  -webkit-box-flex: 1;
  -ms-flex: 1;
  flex: 1;
  font-weight: bold;
  color: var(--black-color);
  text-decoration: none;
  padding: 1rem 2rem;
  display: inline-block;
}

@media screen and (max-width: 796px) {
  .tab__title a {
    padding: 0.5rem 0.5rem;
  }
}

.tab__content {
  height: 0;
  visibility: hidden;
  background-color: transparent;
}

.tab__content .table__case th,
.regular_table th {
  background-color: var(--main2-color);
}

/*.tab__content .table__case tr:not(:last-child) th {
  border-bottom: var(--main2-dark-color) 1px solid;
}*/

.tab .table__case,
.regular_table {
  -webkit-box-shadow: #eaeaea 0px 0px 20px;
  box-shadow: #eaeaea 0px 0px 20px;
  width: 100%;
  background-color: var(--white-color);
}

.tab .table__case th,
.tab .table__case td,
.regular_table th,
.regular_table td {
  padding: 0.8rem 0.5rem;
}



@media screen and (max-width: 680px) {

  .tab .table__case th,
  .tab .table__case td,
  .regular_table th,
  .regular_table td {
    padding: 0.5rem 1rem;
  }
}

.tab .table__case th,
.regular_table th {
  width: calc(100% / 6);
}

.tab .table__case tr:not(:last-child) td,
.regular_table tr:not(:last-child) td {
  border-bottom: var(--gray-light2-color) 1px solid;
}

.tab .table__case--th,
.regular_table--th {
  background-color: var(--main2-dark2-color) !important;
  color: var(--white-color);
}

.table__case p,
.regular_table p {
  display: block;
  margin: 25px 0;
}

.tab .table__small,
.regular_table .table__small {
  width: 100%;
  border-collapse: collapse;
  border: var(--gray-light2-color) 1px solid !important;
}

.tab .table__small th,
.tab .table__small td,
.regular_table .table__small th,
.regular_table .table__small td {
  padding: 0.8rem 1rem;
  text-align: center;
}

.tab .table__small th,
.regular_table .table__small th {
  background-color: var(--gray-light-color);
}

.tab .table__small tr:not(:last-child) th,
.regular_table .table__small tr:not(:last-child) th {
  border-bottom: var(--gray-light2-color) 1px solid !important;
}

.tab .table__small-1 th,
.tab .table__small-1 td,
.regular_table .table__small-1 th,
.regular_table .table__small-1 td {
  padding: 0.5rem 0.3rem;
}

.tab .table__small-1 th,
.regular_table .table__small-1 th {
  width: 25%;
  text-align: center;
  font-weight: normal;
}

/*.tab .table__small-1 td {
  text-align: left;
}*/
.R_TB1 {
  border: 1px solid #ccc !important;
}

.R_TB1 th {
  background-color: var(--gray-light-color) !important;
}

@media screen and (max-width: 796px) {

  .table__small th,
  .table__small td {
    padding: 0.2rem !important;
  }
}

/*頁籤切換頁面設定*/
/*頁籤div內容*/
#tab>div {
  clear: both;
  height: 0;
  overflow: hidden;
  visibility: hidden;
}

span:target~#tab>div:first-of-type {
  visibility: hidden;
  height: 0;
}

/*頁籤內容顯示&第一筆*/
span~#tab>div:first-of-type,
#tab-1:target~#tab>div.tab-content-1,
#tab-2:target~#tab>div.tab-content-2,
#tab-3:target~#tab>div.tab-content-3,
#tab-4:target~#tab>div.tab-content-4,
#tab-5:target~#tab>div.tab-content-5,
#tab-6:target~#tab>div.tab-content-6 {
  visibility: visible;
  height: auto;
}

.case #tab-1,
.case #tab-2,
.case #tab-3,
.case #tab-4,
.case #tab-5,
.case #tab-6 {
  display: none !important;
}

/*footer ===========================================*/
.footer {
  background-color: var(--white-color);
  color: var(--gray-dark-color);
  font-size: 1.1rem;
  line-height: 1.5;
  letter-spacing: 0.1rem;
}

.footer__wrap {
  max-width: 1200px;
  width: 100%;
  margin: 0rem auto;
  padding: 3rem 0rem;
}

@media screen and (max-width: 1200px) {
  .footer__wrap {
    width: 90%;
  }
}

.footer img {
  width: 200px;
}

.footer__items {
  display: -ms-grid;
  display: grid;
  grid-gap: 2rem 0rem;
  -ms-grid-columns: 1.5fr 1fr;
  grid-template-columns: 1.5fr 1fr;
}

.footer__item.row {
  -webkit-column-gap: 1.5rem;
  column-gap: 1.5rem;
}

.footer__title {
  font-size: 1.3rem;
  color: var(--black-color);
  font-weight: bold;
}

.footer__item--border {
  border-top: var(--gray-light2-color) 1px solid;
}

.footer a {
  color: var(--gray-dark-color);
}

@media screen and (max-width: 1200px) {
  .footer__items {
    -ms-grid-columns: 1.2fr 1fr;
    grid-template-columns: 1.2fr 1fr;
  }
}

@media screen and (max-width: 796px) {
  .footer__wrap {
    padding: 1.5rem 0rem;
  }

  .footer__items {
    -ms-grid-columns: 1fr;
    grid-template-columns: 1fr;
    grid-gap: 1rem;
  }

  .footer .ml_auto {
    margin-left: 0;
  }
}

@media screen and (max-width: 680px) {
  .row:nth-child(2) {
    -webkit-box-orient: vertical;
    -webkit-box-direction: normal;
    -ms-flex-direction: column;
    flex-direction: column;
    row-gap: 1rem;
  }
}

/* common共通設定(input / select / radio )等等 ====================*/
/*btn 改變樣式設定*/
.btn__main {
  background-color: var(--main-color);
  border: none;
  color: var(--white-color);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  padding: 0.5rem 3.5rem;
  border-radius: 1.5rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin: 0.8rem 0.5rem;
  display: inline-block;
}

.btn__main:hover {
  cursor: pointer;
  background-color: var(--main-dark-color);
}

.btn__clear {
  background-color: var(--gray-mid-color);
  border: none;
  color: var(--black-color);
  font-size: 1.5rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  padding: 0.5rem 3.5rem;
  border-radius: 1.5rem;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  margin: 0.2rem 0.5rem;
  display: inline-block;
}

.btn__clear:hover {
  cursor: pointer;
  background-color: var(--gray-light2-color);
}

.openlist input[type="button"],
.rvTB a,
.table__small input[type="submit"] {
  background-color: var(--main-color);
  border: none;
  color: var(--white-color);
  font-size: 1.2rem;
  font-weight: bold;
  letter-spacing: 0.2rem;
  padding: 0.5rem 0.8rem;
  border-radius: 5px;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  cursor: pointer;
  white-space: nowrap;
  text-decoration: none;
}

.openlist input[type="button"]:hover {
  cursor: pointer;
  background-color: var(--main-dark-color);
}

/*select+input改變樣式設定*/
select,
date,
input[type="date"],
input[type="text"] {
  border: var(--gray-light2-color) 1px solid;
  background-color: #FFF !important;
  color: var(--gray-dark2-color);
  height: 2.5rem;
  /*padding: 0.5rem 0 0.2rem;*/
  font-size: 1.2rem;
  outline: none;
}

#ContentPlaceHolderB_TXTTB02 {
  background-color: #FFF;
}

.select {
  margin: 0.2rem 1.5rem;
}

.select span {
  margin-left: 0.5rem;
}

@media screen and (max-width: 996px) {
  .select {
    margin: 0.2rem;
  }

  .swcmoney select,
  .swcmoney2 select {
    width: 100%;
  }

  .swcmoney input[type="text"] {
    width: 65%;
  }
}

/*改變input(text)樣式設定(以及自動輸入文件樣式)*/
.input__search,
.input__text {
  max-width: 100%;
  width: 100%;
  vertical-align: middle;
  border-radius: 5px;
}

.input__text {
  padding: 5px;
  /*background-color: var(--gray-light-color);
  border: var(--gray-light2-color) 1px solid;*/
  vertical-align: middle;
}

/*radio改變樣式設定*/
.radio__input {
  display: none;
}

.radio__input:checked~.radio__label {
  color: var(--main-dark-color);
}

.radio__input:checked~.radio__label .radio__btn {
  border: var(--main-color) 1px solid;
}

.radio__input:checked~.radio__label .radio__btn::after {
  opacity: 1;
}

.radio__label {
  font-weight: bold;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding-left: 2rem;
  cursor: pointer;
}

.radio__btn {
  position: absolute;
  background-color: var(--white-color);
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--gray-dark-color);
  border-radius: 50%;
  left: 0rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
  transform: translateY(-50%);
}

.radio__btn::after {
  content: "";
  position: absolute;
  background-color: var(--main-color);
  width: 0.9rem;
  height: 0.9rem;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
  transform: translate(-50%, -50%);
  border-radius: 50%;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

/*checkbox改變樣式*/
.searchbox input[type="checkbox"],
.searchbox input[type="radio"] {
  display: none;
}

.checkbox {
  border-radius: 3px;
  box-sizing: border-box;
  padding: 5px 8px 5px 0;
}

.checkbox input[type="checkbox"] {
  /* width:19px;
    height:19px;*/
  vertical-align: middle;
}

.checkbox .aspNetDisabled>label,
.checkbox>label {
  display: inline-block;
  font-size: 12pt;
  margin: 1px 0px;
  cursor: pointer;
  border-radius: 3px;
  border: 1px solid #aaa;
  box-sizing: border-box;
  padding: 5px 8px;
}

.checkbox .aspNetDisabled>input:checked+label,
.checkbox>input:checked+label {
  background: var(--main-color);
  color: #fff;
  border-radius: 3px;
  border: 1px solid #aaa;
  box-sizing: border-box;
  padding: 5px 8px;
}

.boxwidth {
  margin-bottom: 15px;
}

.boxwidth>label {
  width: 85px;
  text-align: center;

  margin-bottom: 10px;
}

/*.checkbox {
  display: inline-block;
  border: var(--main-color) 1px solid;
  padding: 0rem 0.5rem;
  border-radius: 8px;
  -webkit-transition: all 0.3s;
  transition: all 0.3s;
  margin: 0.5rem 0.2rem;
}

.checkbox__input {
  display: none;
}

.checkbox__input:checked ~ .checkbox__label {
  color: var(--white-color);
}

.checkbox__input:checked ~ .checkbox__label .checkbox__btn {
  border: var(--main-color) 1px solid;
}

.checkbox__input:checked ~ .checkbox__label .checkbox__btn::after {
  opacity: 1;
}

.checkbox__label {
  line-height: 2;
  font-weight: bold;
  position: relative;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
  padding-left: 2rem;
  cursor: pointer;
}

.checkbox__btn {
  position: absolute;
  background-color: var(--white-color);
  width: 1.5rem;
  height: 1.5rem;
  border: 1px solid var(--gray-dark-color);
  border-radius: 5px;
  left: 0rem;
  top: 50%;
  -webkit-transform: translateY(-50%);
          transform: translateY(-50%);
}

.checkbox__btn::after {
  content: "✔";
  color: var(--main-color);
  position: absolute;
  top: 50%;
  left: 50%;
  -webkit-transform: translate(-50%, -50%);
          transform: translate(-50%, -50%);
  border-radius: 5px;
  opacity: 0;
  -webkit-transition: all 0.2s;
  transition: all 0.2s;
}

.checkbox--active {
  background-color: var(--main-color);
}*/
/* common_class================================================*/
.border_bottom-none {
  border-bottom: none !important;
}

.bold {
  font-weight: bold !important;
}

.fs_m {
  font-size: 1.4rem !important;
}

/* padding系列===========*/
.pt_0 {
  padding-top: 0 !important;
}

.pt_s {
  padding-top: 0.5rem !important;
}

.pt_m {
  padding-top: 1rem !important;
}

.pt_m {
  padding-top: 1rem !important;
}

.pl_xxl {
  padding-left: 8rem !important;
}

/* margin系列 ==========*/
/*margun_left*/
.ml_0 {
  margin-left: 0 !important;
}

.ml_s {
  margin-left: 0.5rem !important;
}

.ml_m {
  margin-left: 1rem !important;
}

.ml_l {
  margin-left: 2rem !important;
}

.ml_auto {
  margin-left: auto !important;
}

/*margun_right*/
.mr_0 {
  margin-right: 0 !important;
}

.mr_s {
  margin-right: 0.5rem !important;
}

.mr_m {
  margin-right: 1rem !important;
}

.mr_l {
  margin-right: 2rem !important;
}

.mr_auto {
  margin-right: auto !important;
}

/*margun_top*/
.mt_0 {
  margin-top: 0 !important;
}

.mt_s {
  margin-top: 1rem !important;
}

.mt_m {
  margin-top: 1rem !important;
}

.mt_l {
  margin-top: 2rem !important;
}

.mt_xl {
  margin-top: 4rem !important;
}

/*margun_bottom*/
.mb_0 {
  margin-bottom: 0 !important;
}

.mb_s {
  margin-bottom: 0.5rem !important;
}

.mb_m {
  margin-bottom: 1rem !important;
}

.mb_l {
  margin-bottom: 2rem !important;
}

.mb_xl {
  margin-bottom: 3rem !important;
}

/* 寬高系列 ============*/
.w-100 {
  width: 100% !important;
}

/* 排版系列 ============*/
.inline_block {
  display: inline-block !important;
}

.center {
  text-align: center !important;
}

.left {
  text-align: left !important;
}

/*flex*/
/*橫向(會換行)*/
.row {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -ms-flex-wrap: wrap;
  flex-wrap: wrap;
}

.justify_center {
  -webkit-box-pack: center;
  -ms-flex-pack: center;
  justify-content: center;
}

/*垂直*/
.column {
  display: -webkit-box;
  display: -ms-flexbox;
  display: flex;
  -webkit-box-orient: vertical;
  -webkit-box-direction: normal;
  -ms-flex-direction: column;
  flex-direction: column;
}

/*不換行*/
.nowrap {
  -ms-flex-wrap: nowrap;
  flex-wrap: nowrap;
}

/*# sourceMappingURL=all.css.map */

.none {
  display: none;
}

.innerTB {
  table-layout: fixed;
}

.innerTB th {
  text-align: center;
}

.innerTB td {
  text-align: center;
}

.openlist th:nth-child(1) {
  width: 15%;
}

.openlist th:nth-child(2) {
  width: 18%;
}

.openlist th:nth-child(3) {
  width: 13%;
}

.openlist th:nth-child(5) {
  width: 20%;
}

.openlist .pgr table {
  /*Page 分頁表格寬度*/
  width: auto;
  margin-left: auto;
  margin-right: auto;
  background: var(--main2-color);
  border-radius: 4px;
}

.openlist .pgr table td {
  /*Page 分頁表格寬度*/
  border-width: 0px;
  width: auto;
  padding: 0px 5px;
}

.caTB th:nth-child(1),
.caTB th:nth-child(2),
.caTB th:nth-child(3),
.caTB th:nth-child(4),
.caTB th:nth-child(5) {
  width: 15%;
}

.caTB th:nth-child(6) {
  width: 28%;
}

.caTB th:nth-child(7),
.caTB th:nth-child(8) {
  width: 22% !important;
}

.caTB th:nth-child(1) {
  width: 10%;
}

.ctTB th:nth-child(2) {
  width: 28%;
}

.ctTB th:nth-child(4) {
  width: 38%;
}

.ctTB th:nth-child(5) {
  width: 15%;
}

.gkTB th:nth-child(4) {
  width: 9%;
}

.finishTB th:nth-child(4) {
  width: 38%;
}

.rvTB th:nth-child(1) {
  width: 12%;
}

.rvTB th:nth-child(2) {
  width: 14%;
}

.rvTB th:nth-child(3) {
  width: 14%;
}

.rvTB th:nth-child(4) {
  width: 28%;
}

.rvTB th:nth-child(5) {
  width: 14%;
}

.rvTB td:nth-child(6) {
  width: 20%;
}

.HLbtn {
  color: #081bfb;
  border: none;
  outline: none;
  text-decoration: underline;
  background: none;
  font-size: 16px;
  padding: 0px;
  cursor: pointer;
  word-wrap: break-word;
  white-space: pre-wrap;
  text-align: left;
}

.R_title {
  font-weight: bold;
  display: block;
  margin-bottom: 8px;
  color: var(--main-color);
  font-size: 17px;
  padding-left: 5px;
  border-left: 5px solid var(--main-color);
}

.pdflink {
  font-size: 1.4rem;
  color: var(--main-color);
  border: 2px solid var(--main-color);
  margin-left: 25px;
  font-weight: bold;
  text-decoration: none;
  padding: 5px 15px;
  border-radius: 15px;
  float: right;
  background: #fff;
  margin-top: 30px;
  margin-bottom: 10px;
}

.pdflink:hover {
  color: var(--main-dark-color);
  border: 2px solid var(--main-dark-color);
}

@media screen and (max-width: 680px) {
  .pdflink {
    font-size: 1.2rem;
    margin-top: 5px;
    margin-bottom: 15px;
  }
}

.newDom {
  font-size: 50px;
  color: red;
  position: fixed;
  z-index: 99;
  right: 20px;
  bottom: 20px;
  display: block;
}

.swcprivacy {
  background: #fff;
  margin-top: 45px;
  padding: 20px 10px;
  box-shadow: #eaeaea 0px 0px 20px;
}

.swcprivacy p {
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  color: var(--main-color);
}

.swcprivacy_model {
  background: #fff;
  margin-top: 5px;
  padding: 20px 10px;
  box-shadow: #eaeaea 0px 0px 20px;
}

.swcprivacy_model p {
  font-size: 25px;
  text-align: center;
  font-weight: bold;
  margin: 0 auto;
  padding-bottom: 15px;
  border-bottom: 1px solid #ccc;
  color: var(--main-color);
}

.Privacy {
  margin-top: 20px;
}

.Privacy th {
  font-size: 17px;
}

.Privacy span {
  font-size: 16px;
  line-height: 2.5;
}

.TBtitle {
  width: 100%;
}

.TBtitle input[type="radio"] {
  width: 17px;
  height: 17px;
  vertical-align: middle;
}

.TBtitle th {
  width: 18%;
  color: #fff;
  line-height: 2;
  font-size: 17px;
  border-bottom: 1px solid #ccc;
  background: #94b8c4;
}

.TBtitle td {
  background: #fff;
  border-bottom: 1px solid #ccc;
  padding: 8px;
}

.TBtitle th:nth-child(2) {
  background: #75b5a5;
  color: #fff;
  padding: 4px 6px;
  font-size: 17px;
}

.swcmoney {
  width: 100%;
  margin-bottom: 40px;
}

.swcmoney th {
  width: 18%;
  background: #c5dde5;
  padding: 0.8rem 0.2rem;
}

.swcmoney th:nth-child(3) {
  width: 18%;
  background: #dfeae5;
}

.swcmoney td {
  background: #fff;
  width: 32%;
  padding: 8px;
}

.swcmoney2 {
  width: 100%;
  margin-bottom: 40px;
}

.swcmoney2 th {
  width: 18%;
  background: #c5dde5;
  padding: 0.8rem 0.2rem;
}

.swcmoney2 td {
  background: #fff;
  padding: 8px;
}

.swcmoney3 {
  width: 100%;
  margin-top: 30px;
  margin-bottom: 40px;
}

.swcmoney3 th {
  width: 18%;
  background: #7fa5c0;
  color: #fff;
  border-bottom: 1px solid #dfdfdf;
}

.swcmoney3 td {
  background: #fff;
  padding: 15px 8px;
  border-bottom: 1px solid #dfdfdf;
  color: #000;
}

.titlelink a {
  font-size: 20px;
  font-weight: bold;
  color: var(--main-color);
}

.titlelink a:hover {
  color: var(--main-dark-color);
}

.text {
  display: block;
  margin-top: 10px;
  color: var(--gray-dark-color);
}

.link__wrap {
  background: #fff;
  padding: 15px;
}

.themes {
  background-color: var(--white-color);
  padding: 3px;
}

.themes img {
  width: 1194px;
}

.powerbiw {
  width: 100%;
  height: 700px !important;
  display: block;
}

@media only screen and (max-width: 780px) {
  .powerbiw {
    width: 100%;
    height: 200px !important;
    display: block;
  }

  .themes iframe {
    width: 100%;
    height: auto;
  }
}

.link-wrap {
  display: flex;
  flex-wrap: wrap;
  background-color: #fff;
  padding: 20px 8rem;
}

.a-wrap {
  width: 48%;
  padding: 10px;
  margin: 0 1%;
  display: inline-block;
  text-decoration: none;
  color: black;
  border-bottom: 1px solid #abcbd9;
}

.a-wrap img {
  margin-right: 10px;
}

.a-wrap:hover {
  background-color: #e0ecf1;
  font-weight: bold;
}

@media screen and (max-width:1120px) {
  .link-wrap {
    padding: 20px 1rem;
  }
}

@media screen and (max-width:768px) {
  .link-wrap {
    flex-direction: column;
    padding: 5px 1rem 10px;
  }

  .a-wrap {
    width: 100%;
    margin: 0;
  }
}

.fz-18 {
  font-size: 18px;
}

.fz-16 {
  font-size: 16px;
}

.addindex {
  background: rgba(236, 109, 113, 0.7);
  margin-top: 0px;
  color: #FFF;
  text-align: center;
  height: auto;
  line-height: 30px;
  font-size: 18px;
  font-weight: bold;
  vertical-align: middle;
  letter-spacing: 3px;
  max-width: 100vw;
  width: 100%;
  clear: both;
}

.select-container {
  width: 200px;
  overflow-x: auto;
}

.regular_table input[type="button"].delete-btn {
  border: 1px solid #d74f4f;
  color: #d74f4f;
  background-color: transparent;
}

.regular_table input[type="checkbox"],
.regular_table input[type="radio"] {
  margin-right: 0.5rem;
}

.regular_table input[type="checkbox"] {
  transform: translateY(-2px);
}

.regular_table input[type="radio"] {
  width: 17px;
  height: 17px;
  transform: translateY(2px);
}

.regular_table .remind {
  color: #d74f4f;
  margin-top: 0.5rem;
}

.regular_table input[type="text"] {
  padding: 0 0.5rem;
}

.align-center {
  text-align: center;
}

.regular_table .info-title {
  line-height: 2.5rem;
  font-weight: bold;
  margin-right: 1rem;
  width: 80px;
  text-align: left;
}

.lh25 {
  line-height: 2.5rem;
}

.regular_table .info input[type="text"] {
  max-width: 600px;
  width: 100%;
  margin-right: 5px;
  /*min-width: 300px;*/
}

.custom-input::placeholder {
  color: #bfbfbf;
}

.inline div {
  display: inline-block;
}

#ContentPlaceHolderB_UpdatePanel2 {
  max-width: 900px;
  width: 100%;
}

#ContentPlaceHolderB_TXTTB046 {
  width: 90%;
}

#ContentPlaceHolderB_TXTTB02 {
  border: var(--gray-light2-color) 1px solid;
  background-color: var(--gray-light-color);
  color: var(--gray-dark2-color);
  height: 2.5rem;
  /* padding: 0.5rem 0 0.2rem; */
  font-size: 1.2rem;
  outline: none;
}

.regular_table b {
  vertical-align: bottom;
  color: #000;
  margin: 5px 5px 0px 0px;
}

.reader {
  max-height: 60%;
  height: auto;
  max-width: 1200px;
  width: 100%;
  margin: 0 auto;
  padding: 20px;
  background: rgba(255, 255, 255, 1);
  z-index: 999;
  box-sizing: border-box;
  position: fixed;
  left: 50%;
  transform: translate(-50%);
  overflow-y: scroll;
}

input[type="text"]:disabled,
select:disabled,
input[type="date"]:disabled,
input[type="checkbox"]:disabled {
  background: #e9e9e9 !important;
  cursor: not-allowed !important;
}

.linkstyle {
  background: none;
  border: none;
  color: blue;
  text-decoration: underline;
  cursor: pointer;
  font-size: 16px;
}

.okread {
  margin: 0 auto;
  display: block;
  background: var(--main-color);
  color: var(--white-color);
  border: none;
  font-size: 20px;
  padding: 10px 20px;
  font-weight: bold;
  border-radius: 50px;
  letter-spacing: 2px;
  margin-top: 20px;
  cursor: pointer;
}

.swcprivacy_text {
  display: block;
  color: #F00;
  font-size: 15px;
  font-weight: bold;
  margin-top: 8px;
}

@media screen and (max-width: 996px) {
  .RWD_CheckBox span {
    display: block;
  }

  .RWD_div div {
    display: block !important;
    width: 100%;
    text-align: center;
  }

  .RWD_div b {
    display: block !important;
    text-align: left;
  }

  .RWD_div input[type="text"] {
    display: block;
    text-align: left;
  }

  .regular_table .info-title {
    width: 100%;
  }

  .regular_table .remind {
    text-align: left;
  }

  .reader {
    width: 80%;
  }

  .swcprivacy_model p {
    font-size: 18px;
  }

  .regular_table th {
    display: block;
    width: 100%;
  }

  .regular_table td {
    display: block;
  }

  .regular_table .table__small th {
    display: table-cell;
  }

  .regular_table .table__small td {
    display: table-cell;
  }

  .regular_table .table__small {
    width: 100%;
    table-layout: fixed;
  }
}

.margin p {
  margin: 0;
  margin-bottom: 10px;
  margin-right: 10px;
  display: inline-block;
}