@charset "UTF-8";
* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
  height: 100%;
  overscroll-behavior: none;
}

body {
  overscroll-behavior: none;
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", sans-serif;
  background-color: #FAFAFA;
  height: 100%;
  display: flex;
  flex-direction: column;
}

header {
  background-color: #FFFFFF;
  width: 100vw;
  margin: auto;
  position: fixed;
  top: 0;
  box-shadow: 0px 0px 24px 0px rgba(92, 92, 92, 0.1);
}

ul {
  padding: 0;
  margin: 0;
}

li {
  list-style: none;
}

ol {
  padding-left: 20px;
}
ol li {
  list-style: decimal;
}
ol li::marker {
  font-weight: 600;
  color: #333333;
}

a {
  text-decoration: none;
}

p {
  margin: 0;
}

h2,
h1,
h3,
h4 {
  margin: 0;
}

.mb-24 {
  margin-bottom: 24px;
}

.mb-16 {
  margin-bottom: 16px;
}

.mb-8 {
  margin-bottom: 8px;
}

.m8 {
  margin-right: 8px;
  margin-left: 8px;
}

.btn-group {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
.btn-group-2 {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
}
@media screen and (max-width: 540px) {
  .btn-group-2 {
    flex-direction: column;
  }
}
.btn-style_light {
  background-color: #DBEFE6;
  border-radius: 100px;
  padding: 9px 40px;
  color: #489859;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: calc(1.125rem + 12px);
}
.btn-style_light_m {
  background-color: #DBEFE6;
  border-radius: 100px;
  padding: 9px 39px;
  color: #489859;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: calc(1.125rem + 12px);
}
@media screen and (max-width: 540px) {
  .btn-style_light_m {
    width: 100%;
    text-align: center;
    padding: 9px 0;
  }
}
.btn-style_heavy {
  background: linear-gradient(90deg, #67B77E 0%, #87CB82 100%);
  border-radius: 100px;
  padding: 9px 40px;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: calc(1.125rem + 12px);
}
.btn-style_heavy_m {
  background: linear-gradient(90deg, #67B77E 0%, #87CB82 100%);
  border-radius: 100px;
  padding: 9px 39px;
  color: #FFFFFF;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: calc(1.125rem + 12px);
}
@media screen and (max-width: 540px) {
  .btn-style_heavy_m {
    width: 100%;
    text-align: center;
    padding: 9px 0;
  }
}
.btn-style_outline {
  border: 1px solid #67B77E;
  border-radius: 100px;
  padding: 8px 39px;
  color: #67B77E;
  font-size: 1.125rem;
  font-weight: 400;
  letter-spacing: 0;
  line-height: calc(1.125rem + 12px);
}

.header-logo {
  width: 150px;
  height: 34px;
}
.header-m {
  display: none;
}
@media screen and (max-width: 1080px) {
  .header-m {
    display: block;
  }
}
@media screen and (max-width: 1080px) {
  .header-desktop {
    display: none;
  }
}
.header-top {
  height: 76px;
  padding: 0 30px;
  background-color: #FFFFFF;
  z-index: 50;
  position: absolute;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
}
@media screen and (max-width: 1080px) {
  .header-top {
    height: 72px;
  }
}
@media screen and (max-width: 540px) {
  .header-top {
    padding: 0 16px;
  }
}
.header-bot {
  height: 64px;
  padding: 0 100px;
  width: 100%;
  position: absolute;
  z-index: 10;
  top: 76px;
  background-color: #FFFFFF;
  box-shadow: 0px 0px 24px 0px rgba(92, 92, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}
@media screen and (max-width: 1080px) {
  .header-bot {
    top: 72px;
    padding-left: 28px;
  }
}
@media screen and (min-width: 541px) {
  .header-bot {
    opacity: 0;
    transform: translateY(-20px);
    transition: all 0.5s ease;
    pointer-events: none;
  }
}
.header-bot.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (max-width: 540px) {
  .header-bot {
    opacity: 100%;
    height: 92px;
    padding: 0 40px;
    box-shadow: 8px 8px 48px 0px rgba(92, 92, 92, 0.1);
    top: 72px;
  }
}
@media screen and (max-width: 768px) {
  .header-bot {
    padding: 0 24px;
  }
}
@media screen and (max-width: 540px) {
  .header-bot .btn-group {
    width: 100%;
  }
}
@media screen and (max-width: 540px) {
  .header-bot {
    position: fixed;
    bottom: 0;
    top: auto;
    background-color: #FFFFFF;
  }
}
.header-title {
  font-size: 1.25rem;
  font-weight: 500;
  letter-spacing: 0.6px;
  line-height: calc(1.25rem + 12px);
  color: #333333;
}
@media screen and (max-width: 540px) {
  .header-title {
    display: none;
  }
}
.header-nav {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 4px;
  flex: 1 1 auto;
  min-width: 0;
  flex-wrap: nowrap;
}
.header-nav a {
  color: #333333;
  font-size: 14px;
  font-weight: 400;
  letter-spacing: 0;
  line-height: 26px;
}
.header-nav a:hover {
  color: #00994E;
  text-decoration: underline;
}

.header-nav > li {
  flex: 0 0 auto;
  white-space: nowrap;
}

.header-nav > img {
  flex: 0 0 auto;
  display: inline-block;
}

.header-nav > li:last-of-type {
  flex: 1 1 auto;
  min-width: 0;
}

.header-nav > li:last-of-type > a {
  display: block;
  overflow: hidden;
  white-space: nowrap;
  text-overflow: ellipsis;
}

.btn-group {
  flex-shrink: 0;
  white-space: nowrap;
}

@media screen and (max-width: 540px) {
  .nav-hide {
    display: none;
  }
}

.header-nav-m {
  display: none;
  width: 100%;
  background-color: #ffffff;
  padding: 7px 20px;
  margin-top: 72px;
}
.header-nav-m.active {
  opacity: 1;
  transform: translateY(0);
  pointer-events: auto;
}
@media screen and (max-width: 540px) {
  .header-nav-m {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0;
  }
}

.nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
}
.nav li a {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  text-decoration: none;
  color: #333333;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.64px;
  line-height: calc(1rem + 12px);
}
.nav li a:hover {
  color: #489859;
}
.nav li:last-child {
  margin-left: 16px;
}

.container {
  background-image: url("../assets/bg.svg");
  background-position: center top;
  background-repeat: no-repeat;
  background-size: cover;
  margin-top: 76px;
  display: flex;
  align-items: flex-start;
  justify-content: flex-start;
  gap: 0;
  flex-direction: column;
  flex: 1;
  padding: 64px 168px 85px 168px;
}
@media screen and (max-width: 1080px) {
  .container {
    margin-top: 72px;
  }
}
@media screen and (max-width: 1080px) {
  .container {
    padding: 20px 28px 40px 28px;
  }
}
@media screen and (max-width: 540px) {
  .container {
    padding: 20px 28px;
    margin-top: 0px;
  }
}
.container-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  width: 100%;
  padding-right: 86px;
  max-width: 1104px;
  margin: auto;
}
@media screen and (max-width: 768px) {
  .container-header {
    padding-right: 32px;
    margin-top: 15px;
  }
}
@media screen and (max-width: 540px) {
  .container-header {
    padding-right: 0;
  }
}
.container-header > img {
  width: 140px;
  margin-top: 2px;
}
@media screen and (max-width: 768px) {
  .container-header > img {
    width: 104px;
    height: 90px;
  }
}
@media screen and (max-width: 540px) {
  .container-header > img {
    width: 70px;
    height: 60px;
  }
}
.container-title {
  font-size: 38px;
  font-weight: 700;
  letter-spacing: 1px;
  line-height: 50px;
  color: #333333;
  line-height: 56px;
}
@media screen and (max-width: 540px) {
  .container-title {
    font-size: 2rem;
    line-height: 48px;
  }
}
@media screen and (max-width: 450px) {
  .container-title {
    font-size: 24px;
    line-height: 36px;
  }
}
.container-text {
  width: 100%;
  max-width: 1104px;
  margin: auto;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 24px;
  flex-direction: column;
}
.container-text section {
  width: 100%;
}
.container-text section img {
  width: 100%;
}
.container-chart {
  width: 100%;
  max-width: 1104px;
  margin: 48px auto 0 auto;
}
@media screen and (max-width: 768px) {
  .container-chart {
    margin-top: 20px;
  }
}
@media screen and (max-width: 540px) {
  .container-chart {
    margin-bottom: 114px;
  }
}

.chart-title {
  width: 100%;
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.48px;
  line-height: calc(1.5rem + 12px);
  color: #333333;
  text-align: center;
  margin-top: 48px;
  margin-bottom: 24px;
}
@media screen and (max-width: 540px) {
  .chart-title {
    margin-bottom: 16px;
  }
}
.chart-style_1 {
  background-color: #FFFFFF;
  box-shadow: 8px 8px 48px 0px rgba(92, 92, 92, 0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  flex-direction: column;
  width: 100%;
}
.chart-style_2 {
  background-color: #FFFFFF;
  box-shadow: 8px 8px 48px 0px rgba(92, 92, 92, 0.1);
  padding: 0px 60px;
  border-radius: 20px;
  width: 100%;
}
@media screen and (max-width: 768px) {
  .chart-style_2 {
    padding: 0 24px;
  }
}

.share {
  background-color: transparent;
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 4px;
  cursor: pointer;
}
.share-container {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-end;
  gap: 0;
}
@media screen and (max-width: 768px) {
  .share-container {
    margin-top: 20px;
  }
}
.share p {
  font-family: "Noto Sans TC", sans-serif;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.64px;
  line-height: calc(1rem + 12px);
  color: #67B77E;
}
@media screen and (max-width: 768px) {
  .share p {
    font-size: 14px;
  }
}

.title-h1 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.48px;
  line-height: calc(1.5rem + 12px);
  color: #67B77E;
}
@media screen and (max-width: 768px) {
  .title-h1 {
    font-size: 1.25rem;
  }
}
.title-h2 {
  font-size: 1rem;
  font-weight: 600;
  letter-spacing: 0.48px;
  line-height: calc(1rem + 12px);
  color: #333333;
  margin: 0;
}
.title-h3 {
  font-size: 1.5rem;
  font-weight: 500;
  letter-spacing: 0.48px;
  line-height: calc(1.5rem + 12px);
  color: #333333;
  line-height: 31px;
}
@media screen and (max-width: 540px) {
  .title-h3 {
    font-size: 1.375rem;
  }
}

.text-h1 {
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.32px;
  line-height: calc(1rem + 12px);
  color: #666666;
  text-align: justify;
  line-height: 26px;
}
.text-h2 {
  font-size: 0.875rem;
  font-weight: 400;
  letter-spacing: 0.32px;
  line-height: calc(0.875rem + 12px);
  color: #666666;
}
.text-h3 {
  font-size: 0.875rem;
  font-weight: 350;
  letter-spacing: 0.56px;
  line-height: calc(0.875rem + 12px);
  line-height: 26px;
  color: #888888;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  /* 限制顯示 2 行 */
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.hint {
  background-color: #f5f5f5;
  font-size: 1rem;
  font-weight: 400;
  letter-spacing: 0.64px;
  line-height: calc(1rem + 12px);
  color: #888888;
  line-height: 26px;
  padding: 16px;
  border-radius: 16px;
  width: 100%;
  max-width: 854px;
  text-align: center;
}
@media screen and (max-width: 540px) {
  .hint {
    text-align: left;
    line-height: 25px;
  }
}

.hl {
  font-weight: 600;
}

.hl2 {
  font-weight: 600;
  color: #333333;
}

.hl3 {
  font-family: Montserrat;
  font-size: 24px;
  color: #FF5A1D;
  font-weight: 400;
}

.topic li {
  padding: 24px;
}
.topic li a {
  display: flex;
  align-items: center;
  justify-content: flex-start;
  gap: 0;
}
.topic li .text-h3 {
  margin-top: 8px;
}
.topic li .title-h2 {
  margin: 6px 0 0 0;
}
@media screen and (max-width: 768px) {
  .topic li .text-h3 {
    display: none;
  }
  .topic li .title-h2 {
    width: 100%;
    margin: 0;
  }
}
.topic li section {
  margin: 0 12px 0 24px;
  width: 100%;
  max-width: 786px;
}
.topic li:not(:last-child) {
  border-bottom: 1px solid #DEDEDE;
}

.thumb {
  width: 90px;
  margin-top: 3px;
}
@media screen and (max-width: 768px) {
  .thumb {
    width: 45px;
    margin: 0;
  }
}

.footer-desktop {
  background-color: #FFFFFF;
  border-top: 8px solid #87CB82;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-direction: column;
}
@media screen and (max-width: 540px) {
  .footer-desktop {
    padding-bottom: 72px;
  }
}
.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  width: 100%;
  max-width: 1140px;
  margin: 0 auto;
  padding: 36px 40px;
}
@media screen and (max-width: 860px) {
  .footer-top {
    flex-direction: column;
    align-items: center;
  }
}
.footer-column {
  min-width: 120px;
}
.footer-columns {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 48px;
  width: 100%;
  max-width: 754px;
}
.footer-columns h4 {
  color: #87CB82;
  font-size: 1.25rem;
  font-weight: 400;
  margin: 0 0 16px 0;
}
.footer-columns ul li {
  margin-bottom: 8px;
}
.footer-columns ul li a {
  text-decoration: none;
  font-size: 1rem;
  letter-spacing: 0.36px;
  font-weight: 350;
  color: #333333;
}
.footer-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: wrap;
  row-gap: 8px;
  margin: 0 16px;
}
.footer-media {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 0;
  flex-direction: column;
  height: 100%;
}
@media screen and (max-width: 768px) {
  .footer-media {
    width: 100%;
    height: 128px;
    flex-direction: row;
  }
}
@media screen and (max-width: 540px) {
  .footer-media {
    width: 100%;
    height: 128px;
    flex-direction: column;
    align-items: flex-start;
  }
}
.footer-center {
  width: 100%;
  text-align: center;
  border-top: 1px solid #EEEEEE;
  border-bottom: 1px solid #EEEEEE;
  padding: 8px 0;
  margin-bottom: 15px;
}
.footer-center a {
  color: #333333;
  font-size: 1.125rem;
  text-decoration: none;
}
.footer-center a:first-child {
  color: #67B77E;
  border-right: 1px solid #EEEEEE;
  padding-right: 15px;
  margin-right: 15px;
}
.footer-bottom ul li a {
  color: #333333;
  font-size: 0.875rem;
  text-decoration: none;
}
.footer-bottom ul li:not(:last-child) {
  border-right: 1px solid #EEEEEE;
  padding-right: 15px;
  margin-right: 15px;
}

@media screen and (max-width: 768px) {
  .download {
    display: none;
  }
}
.download-m {
  display: none;
}
@media screen and (max-width: 768px) {
  .download-m {
    display: flex;
    flex-direction: column;
  }
}

.social-icons {
  display: flex;
  gap: 8px;
}
.social-icons a {
  display: flex;
  text-decoration: none;
}

.copyright {
  font-size: 0.8125rem;
  color: #888888;
  text-align: center;
  padding: 12px 0;
}

.mobile-only-break {
  display: none;
}

.table-wrapper {
  overflow-x: auto;
}

.compare-table {
  width: 100%;
  border-collapse: collapse;
  table-layout: fixed;
  font-size: 16px;
}
.compare-table td {
  font-weight: 350;
  padding: 24px;
}
@media screen and (max-width: 540px) {
  .compare-table td {
    padding: 16px 0;
    font-size: 14px;
  }
}
.compare-table thead {
  background-color: rgba(95, 176, 118, 0.7490196078);
  color: #fff;
}
.compare-table thead th {
  font-weight: 600;
  text-align: center;
  border: 1px solid #fff;
  height: 34px;
  padding: 4px;
}
@media screen and (max-width: 540px) {
  .compare-table thead th {
    font-size: 14px;
  }
}
.compare-table thead th:first-child {
  border-top-left-radius: 8px;
}
.compare-table thead th:last-child {
  border-top-right-radius: 8px;
}
.compare-table tbody tr:nth-child(odd) {
  background-color: #ffffff;
}
.compare-table tbody tr:nth-child(even) {
  background-color: #f5F5F5;
}
.compare-table tbody tr:nth-child(even) td:first-child {
  border-top-left-radius: 8px;
  border-bottom-left-radius: 8px;
}
.compare-table tbody tr:nth-child(even) td:last-child {
  border-top-right-radius: 8px;
  border-bottom-right-radius: 8px;
}
.compare-table tbody td:first-child {
  font-weight: 700;
}
.compare-table tbody td {
  text-align: center;
  color: #333333;
}

.img-link {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
}

@media screen and (max-width: 1240px) {
  .container-header {
    margin-bottom: 24px;
  }
}
@media screen and (max-width: 1240px) {
  .mobile-only-break {
    display: inline;
  }
}

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