@charset "UTF-8";
/* http://meyerweb.com/eric/tools/css/reset/
   v2.0 | 20110126
   License: none (public domain)
*/
html, body, div, span, applet, object, iframe,
h1, h2, h3, h4, h5, h6, p, blockquote, pre,
a, abbr, acronym, address, big, cite, code,
del, dfn, em, img, ins, kbd, q, s, samp,
small, strike, strong, sub, sup, tt, var,
b, u, i, center,
dl, dt, dd, ol, ul, li,
fieldset, form, label, legend,
table, caption, tbody, tfoot, thead, tr, th, td,
article, aside, canvas, details, embed,
figure, figcaption, footer, header, hgroup,
menu, nav, output, ruby, section, summary,
time, mark, audio, video {
  margin: 0;
  padding: 0;
  border: 0;
  /* font-size: 100%; */
  /* font: inherit; */
  vertical-align: baseline;
}

/* HTML5 display-role reset for older browsers */
article, aside, details, figcaption, figure,
footer, header, hgroup, menu, nav, section, main {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:before, blockquote:after,
q:before, q:after {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

*,
*::after,
*::before {
  box-sizing: border-box;
}

html {
  scroll-padding-top: 96px;
  font-size: small; /*  一般的 root size */
}
@media screen and (max-width: 768px) {
  html {
    font-size: x-small; /* 手機的 root size */
  }
}
@media screen and (min-width: 1366px) {
  html {
    font-size: small; /* 大於1366的 root size */
  }
}
@media screen and (min-width: 1920px) {
  html {
    font-size: small; /* 大於1920的 root size */
  }
}

body {
  font-size: 1.6rem;
  line-height: 1.9;
  font-family: "Noto Sans", "Microsoft JhengHei", "Open Sans", sans-serif !important;
  color: #3e454c;
  background-color: #f6f6f6;
}

a {
  color: #595959;
  text-decoration: none;
  cursor: pointer;
}
a:hover {
  text-decoration: none;
}
a::before {
  text-decoration: none;
}

img {
  width: 100%;
}

.hidden {
  overflow: hidden;
}

.contentSet {
  font-size: 1.4rem;
  flex-shrink: 1;
  margin-bottom: 2rem;
  transition: all 0.25s ease;
}
@media (max-width: 576px) {
  .contentSet {
    padding-left: 0;
    padding-right: 0;
  }
}

.cd-main-content {
  min-height: calc(100vh - 60px);
}
.cd-main-content .content-wrapper {
  padding-top: 10rem;
  padding-bottom: 1rem;
}
@media screen and (max-width: 768px) {
  .cd-main-content .content-wrapper {
    padding-top: 7rem;
  }
}
.cd-main-content .content-wrapper h1 {
  text-align: center;
  padding: 3em 0;
}
@media only screen and (min-width: 769px) {
  .cd-main-content .content-wrapper h1 {
    padding: 4em 0;
    font-weight: 300;
  }
}
.cd-main-content::before {
  display: none;
  content: "mobile";
}
@media only screen and (min-width: 769px) {
  .cd-main-content::before {
    content: "tablet";
  }
}
@media only screen and (min-width: 1170px) {
  .cd-main-content::before {
    content: "desktop";
  }
}

.explanBtm {
  color: #7c7c7c;
  padding-top: 20px;
}
@media (max-width: 576px) {
  .explanBtm {
    padding-left: 15px;
    padding-right: 15px;
  }
}
.explanBtm ul > li {
  list-style: disc;
  margin-left: 23px;
}
.explanBtm ol > li {
  list-style: decimal;
  margin-left: 23px;
}

.pageTitle {
  width: 100%;
  padding: 1rem 1.5rem;
  margin: 0px 0px 1rem;
  display: flex;
  align-items: center;
}
@media only screen and (min-width: 769px) {
  .pageTitle {
    margin: 0px 0px 1rem;
  }
}
@media only screen and (max-width: 767px) {
  .pageTitle {
    margin: 0;
  }
}
.pageTitle a {
  color: #212529;
  font-weight: bold;
  font-size: 1.6rem;
}
.pageTitle h2 {
  color: #212529;
  font-weight: bold;
  font-size: 2rem;
  margin-bottom: 0px;
}
.pageTitle span {
  color: #2F4F4F;
}

.tab-content {
  background-color: #fff;
  margin-top: 5px;
}

.whiteBg {
  background-color: #fff;
}
@media only screen and (min-width: 769px) {
  .whiteBg {
    border-radius: 2rem;
  }
}

.pageContent {
  padding: 4rem 3rem 2rem 3rem;
  margin-bottom: 4rem;
}

.indexGuide {
  display: flex;
  flex-direction: row;
}
.indexGuide .indexGuideItem {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  background-color: #2F4F4F;
  padding: 1.5rem;
  border-radius: 2rem;
  margin-bottom: 2rem;
}
.indexGuide .indexGuideItem img {
  width: 40%;
  min-height: 1px;
}
.indexGuide .indexGuideItem h3 {
  font-size: 1.6rem;
  font-weight: 700;
  padding-top: 1rem;
  text-align: center;
  color: #fff;
}

.indexRouterContent {
  padding: 2rem 3rem 4rem 3rem;
}

.indexRouterTitle {
  display: flex;
  align-items: center;
  margin: 2rem 0;
}
.indexRouterTitle a {
  font-size: 1.6rem;
  font-weight: bold;
  color: #2F4F4F;
}
.indexRouterTitle h2 {
  font-size: 2rem;
  font-weight: bold;
  color: #2F4F4F;
}

.indexRouter {
  display: flex;
  flex-direction: row;
  margin-bottom: 2rem;
}
.indexRouter a {
  color: #fff;
  font-size: 1.6rem;
  font-weight: bold;
}
.indexRouter a .indexRouterLink {
  padding: 0.5rem 1rem;
  text-align: center;
  background-color: #2F4F4F;
  border-radius: 0.5rem;
  margin-bottom: 1rem;
}

.sitemap {
  color: #2F4F4F;
  font-weight: bold;
  font-size: 1.6rem;
}
.sitemap .sitemap-content {
  padding: 0 2rem;
}
.sitemap .sitemap-link {
  padding-left: 6rem;
  padding-bottom: 2rem;
}
.sitemap .sitemap-link a {
  color: #2F4F4F;
}
.sitemap .sitemap-link .sub-link {
  padding-left: 2rem;
}

.cd-nav-trigger {
  /* navigation trigger - visible on mobile devices only */
  float: right;
  position: relative;
  display: block;
  width: 34px;
  height: 44px;
  margin-right: 5px;
  /* hide text */
  overflow: hidden;
  white-space: nowrap;
  color: transparent;
}
.cd-nav-trigger span {
  /* hamburger icon in CSS */
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 24px;
  background: #fff;
  top: 50%;
  right: 5px;
  margin-top: -2px;
  transition: background 0.2s;
}
.cd-nav-trigger span::before, .cd-nav-trigger span::after {
  /* hamburger icon in CSS */
  position: absolute;
  display: inline-block;
  height: 3px;
  width: 24px;
  background: #fff;
  /* other 2 lines */
  content: "";
  right: 0;
  /* Force Hardware Acceleration in WebKit */
  transform: translateZ(0);
  backface-visibility: hidden;
  transform-origin: 0% 50%;
  transition: transform 0.2s;
}
.cd-nav-trigger span::before {
  top: -6px;
}
.cd-nav-trigger span::after {
  top: 6px;
}
.cd-nav-trigger.nav-is-visible span {
  background: rgba(255, 255, 255, 0);
}
.cd-nav-trigger.nav-is-visible span::before, .cd-nav-trigger.nav-is-visible span::after {
  background: #fff;
}
.cd-nav-trigger.nav-is-visible span::before {
  transform: translateX(4px) translateY(-3px) rotate(45deg);
}
.cd-nav-trigger.nav-is-visible span::after {
  transform: translateX(4px) translateY(2px) rotate(-45deg);
}

noscript div {
  position: relative;
  top: 60px;
  color: red;
}
@media only screen and (min-width: 769px) {
  noscript div {
    top: 100px;
  }
}

.headerFix {
  position: fixed;
  z-index: 999;
  top: 0;
  left: 0;
  width: 100%;
  background-color: #00662C;
}
@media only screen and (min-width: 769px) {
  .headerFix {
    position: fixed;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
  }
}

header h1 {
  color: #fff;
  margin-left: 0.5em;
  padding-left: 0.5em;
  border-left: 1px solid #fff;
}

.cd-main-header {
  height: 45px;
  background-color: #00662C;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.cd-main-header::after {
  clear: both;
  content: "";
  display: table;
}
@media only screen and (min-width: 769px) {
  .cd-main-header {
    height: 55px;
    /*max-width: 1200px;*/
    max-width: 90%;
  }
}

@media only screen and (min-width: 769px) {
  .cd-nav {
    display: block;
    float: right;
    height: 100%;
  }
}
.cd-nav > li a {
  padding: 1em 5%;
}
.cd-nav > li > a::before {
  display: none;
}
.cd-nav > li.account a:before {
  font-size: 1em;
  display: inline-block;
  width: 22px;
  height: 22px;
  margin-right: 5px;
}

.cd-top-nav {
  /* top nav - visible on mobile devices */
  position: fixed;
  z-index: 998;
  top: 45px;
  left: 0;
  width: 100%;
  height: 100vh;
  overflow: hidden;
  background-color: #f6f6f6;
  display: flex;
  flex-direction: column;
  text-align: center;
  visibility: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  white-space: nowrap;
  opacity: 0;
  transition: opacity 0.2s;
}
.cd-top-nav li:first-child {
  display: none;
}
.cd-top-nav.nav-is-visible {
  visibility: visible;
  opacity: 1;
  overflow: scroll;
  -webkit-overflow-scrolling: touch;
}
.cd-top-nav.nav-is-visible li {
  padding: 2rem 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.05);
}
.cd-top-nav.nav-is-visible li a {
  display: block;
  width: 100%;
  font-size: 1.8rem;
  font-weight: bold;
}

.cd-logo {
  float: left;
  display: flex;
  align-items: center;
  margin: 0px;
  height: 100%;
}
.cd-logo img {
  display: block;
  width: 120px;
  height: 39px;
}
@media screen and (min-width: 1366px) {
  .cd-logo img {
    width: 200px;
    height: auto;
  }
}
.cd-logo h2 {
  font-size: 1.2rem;
  color: #fff;
  padding-top: 8px;
  margin-left: 10px;
  margin-bottom: 0px;
}

@media only screen and (min-width: 769px) {
  .cd-logo {
    margin: 0 0 0 10px;
  }
}
@media only screen and (min-width: 992px) {
  .cd-top-nav > li a {
    padding: 15px;
    font-size: 1.6rem;
  }
}
@media only screen and (min-width: 769px) {
  .cd-nav-trigger {
    display: none;
  }
  .cd-main-header {
    height: 75px;
  }
  .cd-top-nav {
    position: relative;
    top: 0;
    height: 100%;
    display: flex;
    flex-direction: row;
    background-color: transparent;
    overflow: visible;
    visibility: visible;
    opacity: 1;
  }
  .cd-top-nav li {
    display: flex;
    align-items: center;
    height: 100%;
    vertical-align: top;
    border-left: 1px solid rgba(255, 255, 255, 0.3);
  }
  .cd-top-nav li:first-child {
    display: flex;
    border: none;
  }
  .cd-top-nav li:last-of-type {
    margin-right: 0;
    border-right: 1px solid rgba(255, 255, 255, 0.3);
  }
  .cd-top-nav li a {
    display: block;
    font-size: 1.6rem;
    color: #fff;
    padding: 10px;
    transition: all 0.3s;
  }
  .cd-top-nav li a:before {
    font-family: "icomoon", sans-serif;
    color: #fff;
    display: block;
    background-color: rgb(0, 153, 68);
    width: 20px;
    height: 20px;
    border-radius: 20px;
    text-align: center;
    font-size: 2rem;
    line-height: 1;
    margin: 8px auto;
  }
  .cd-top-nav li.account {
    display: flex;
  }
  .cd-top-nav li.account .icon-user-circle-o:before {
    margin: 0 4px;
    vertical-align: sub;
  }
  .cd-top-nav li.account a {
    color: rgba(255, 255, 255, 0.8);
    padding: 8px;
  }
  .cd-top-nav li.account a:hover {
    color: rgb(255, 255, 255);
  }
  .cd-top-nav li.account a:before {
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}
.footerArea {
  background-color: #00662C;
}

footer {
  color: #fff;
  display: flex;
  justify-content: space-between;
  padding: 15px;
  flex-direction: column;
}
footer h2 {
  font-size: 1.6rem;
  text-align: center;
  margin-bottom: 12px;
}
footer .footerContact {
  flex-direction: column;
}
footer .footerContact ul {
  margin-left: 0px;
}
footer .footerContact ul li {
  font-size: 1.2rem;
  list-style: none;
  margin-left: 0px;
  margin-bottom: 0px;
  text-align: center;
}

@media screen and (-ms-high-contrast: active), (-ms-high-contrast: none) {
  footer .footerContact ul {
    min-width: 0%;
  }
}
@media only screen and (-ms-high-contrast: active) and (max-width: 1200px) and (min-width: 769px), only screen and (-ms-high-contrast: none) and (max-width: 1200px) and (min-width: 769px) {
  footer h2 {
    width: 68px;
  }
}
@media only screen and (-ms-high-contrast: active) and (max-width: 768px) and (min-width: 660px), only screen and (-ms-high-contrast: none) and (max-width: 768px) and (min-width: 660px) {
  footer .footerContact {
    margin-left: -20%;
  }
  footer .footerContact ul {
    min-width: auto;
  }
}
@media only screen and (min-width: 769px) {
  footer {
    flex-direction: row;
  }
}
@media only screen and (min-width: 660px) {
  footer .footerContact {
    display: flex;
    flex-direction: row;
    flex-wrap: nowrap;
    justify-content: center;
  }
  footer .footerContact ul {
    margin-bottom: 0px;
    margin-left: 15px;
  }
  footer .footerContact ul li {
    font-size: 1.2rem;
    margin-left: 23px;
    list-style: disc;
    text-align: left;
    white-space: nowrap;
  }
}/*# sourceMappingURL=style.css.map */