@charset "UTF-8";
.for_pc {
  display: block;
}
@media screen and (max-width: 767px) {
  .for_pc {
    display: none !important;
  }
}

.for_mb {
  display: none;
}
@media screen and (max-width: 767px) {
  .for_mb {
    display: block !important;
  }
}

* {
  box-sizing: border-box;
  border: none;
  letter-spacing: 0.5px;
}

img {
  margin: 0 auto;
  width: 100%;
}

body {
  margin: 0;
  padding: 0;
  font-family: "Noto Sans TC", sans-serif;
  color: #2c2745;
  font-size: 16px;
  line-height: 26px;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  body {
    font-size: 16px;
  }
}

/* 字級顏色設定 */
body {
  /* 字級大小粗細 */
  /* 顏色設定 */
}
body .f32 {
  font-size: 32px;
}
body .f24 {
  font-size: 24px;
}
body .f20 {
  font-size: 20px;
}
body .f18 {
  font-size: 18px;
}
body .f16 {
  font-size: 16px;
}
body .f14 {
  font-size: 14px;
}
body .f22 {
  font-size: 22px;
  line-height: 36px;
}
@media screen and (max-width: 767px) {
  body .f22 {
    font-size: 18px;
    line-height: 28px;
  }
}
body .f30 {
  font-size: 30px;
  line-height: 1;
}
body .f40 {
  font-size: 40px;
  line-height: 1;
}
body .fw-500 {
  font-weight: 500;
}
body b,
body .bold {
  font-weight: 700;
}
body .blue {
  color: #005bac;
}
body .red {
  color: #d8002a;
}
body .black {
  color: #000;
}
body .yellow {
  color: #ffde00;
}

.container {
  overflow: hidden;
  margin: 0 auto;
  max-width: 1200px;
  width: 90%;
}
@media screen and (max-width: 767px) {
  .container {
    width: 100%;
    padding: 0 18px;
  }
}

.d-flex {
  display: flex;
  align-items: center;
  gap: 80px;
}
.d-flex .flex {
  flex: 1;
}
@media screen and (max-width: 767px) {
  .d-flex.m-col {
    flex-direction: column;
    gap: 40px;
  }
}

.d-none {
  display: none !important;
}

.top {
  right: 30px;
  bottom: 100px;
}
@media screen and (max-width: 767px) {
  .top {
    bottom: 60px;
  }
}

header {
  display: flex;
  justify-content: space-between;
  padding: 0 29px 0;
}
header a {
  display: inline-flex;
}
@media screen and (max-width: 992px) {
  header img {
    max-width: 100%;
  }
}
header .hbg {
  width: 25px;
  position: fixed;
  top: 8px;
  right: 20px;
  z-index: 11;
}
header .hbg span {
  display: block;
  margin: 7px 0;
  width: 100%;
  height: 2px;
  background: #005bac;
  transition: all 0.3s ease-in-out;
}
header .hbg.open {
  top: 13px;
}
header .hbg.open span {
  background: #FFF;
}
header .hbg.open span:first-child {
  transform: rotate(45deg) translate(4px, 3px);
}
header .hbg.open span:nth-child(2) {
  display: none;
}
header .hbg.open span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}
header .list {
  display: flex;
  align-items: center;
}
header .list ul {
  position: relative;
  display: inline-flex;
  align-items: center;
}
header .list ul li {
  cursor: pointer;
  padding: 0 30px;
  transition: all 0.3s ease-in-out;
}
header .list ul li a {
  display: inline-flex;
  color: #2e48ec;
}
@media screen and (min-width: 768px) {
  header .list ul li a:hover {
    color: #d8002a;
  }
}
header .list ul li:not(:first-child) {
  border-left: 1px solid #005bac;
}
@media screen and (max-width: 767px) {
  header .list {
    position: fixed;
    display: block;
    top: 0;
    left: 0;
    width: 100%;
    height: 105vh;
    background: #2e48ec;
    z-index: 10;
    padding-top: 25vh;
  }
  header .list ul {
    margin-top: 0;
    display: block;
  }
  header .list ul li {
    margin: 0;
    text-align: center;
    padding: 10px 30px;
    margin: 10px 0;
  }
  header .list ul li:not(:first-child) {
    border-left: none;
  }
  header .list ul li.f16 {
    font-size: 20px;
  }
  header .list ul li a {
    color: #ffffff;
  }
}
header .list .socialmedia {
  position: absolute;
  bottom: 50vw;
  left: 0;
  width: 100%;
}
header .list .socialmedia ol {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
header .list .socialmedia img {
  width: 22px;
  height: 22px;
}

section:not(.main):not(.warn) {
  padding: 20px 0 80px;
}
@media screen and (max-width: 767px) {
  section:not(.main):not(.warn) {
    padding: 20px 0 60px;
  }
}
section:not(.main):not(.warn) .content {
  margin: 0 auto;
  width: 100%;
  max-width: 1000px;
}
@media screen and (max-width: 767px) {
  section:not(.main):not(.warn) .content {
    max-width: 100%;
  }
}
section:not(.main):not(.warn) h2 {
  text-align: center;
}
section:not(.main):not(.warn) h2.title {
  color: #2e48ec;
  font-size: 48px;
  line-height: 1.5;
  padding: 80px 0;
  font-weight: bold;
}
@media screen and (max-width: 767px) {
  section:not(.main):not(.warn) h2.title {
    font-size: 32px;
    padding: 30px 0;
    letter-spacing: 0.2px;
  }
}
section:not(.main):not(.warn) h3 {
  text-align: center;
  color: #2e48ec;
  font-size: 28px;
  font-weight: bold;
  line-height: 1.5;
  padding: 20px 0;
}
section:not(.main):not(.warn) .highlight {
  color: #0149d9;
}
section:not(.main):not(.warn) p {
  margin-bottom: 3rem;
}
section:not(.main):not(.warn) .note {
  font-size: 14px;
  line-height: 1.4;
  font-weight: 600;
}
section:not(.main):not(.warn) .note .highlight {
  color: #005bac;
}
section:not(.main):not(.warn) .box {
  margin: 0 auto 80px;
}
@media screen and (max-width: 767px) {
  section:not(.main):not(.warn) .box {
    margin: 0 auto 40px;
  }
}
section.main {
  position: relative;
  width: 100%;
}
section.main .content {
  position: relative;
  margin-top: 70px;
  width: 100%;
}
@media (max-width: 992px) {
  section.main .content {
    margin-top: 50px;
  }
}
@media screen and (max-width: 767px) {
  section.main .content {
    margin-top: 50px;
  }
}
section.whyto.whyto .box-3 {
  text-align: center;
}
section.whyto.whyto .grid-table {
  display: grid;
  margin: 0 auto;
  font-size: 18px;
  grid-auto-flow: column;
}
@media (max-width: 990px) {
  section.whyto.whyto .grid-table {
    grid-row-gap: 0;
    grid-auto-flow: dense;
  }
}
section.whyto.whyto .grid-table-row {
  display: grid;
  text-align: center;
}
@media (max-width: 990px) {
  section.whyto.whyto .grid-table-row {
    display: block;
  }
}
@media (max-width: 990px) {
  section.whyto.whyto .grid-table-row:first-child {
    display: none;
  }
}
section.whyto.whyto .grid-table-row .grid-table-cell:first-child {
  background-color: #0149d9;
  color: #FFF;
  border-right: #FFF solid 1px;
}
section.whyto.whyto .grid-table-cell {
  padding: 1rem;
  border-bottom: 1px solid #afbedc;
}
@media (max-width: 990px) {
  section.whyto.whyto .grid-table-cell {
    text-align: center;
    display: grid;
    align-items: center;
  }
  section.whyto.whyto .grid-table-cell:not(:first-child) {
    text-align: left;
    grid-template-columns: 5fr 7fr;
  }
}
@media (max-width: 990px) {
  section.whyto.whyto .grid-table-cell:before {
    content: attr(data-title);
    font-weight: bold;
    display: block;
  }
  section.whyto.whyto .grid-table-cell:first-child {
    grid-column-start: 1;
    grid-column-end: 5;
  }
}
section.whyto.whyto .grid-table-cell:last-child {
  color: #0149d9;
  font-weight: 600;
}
section.etf00632R.etf00632R h2.title {
  color: #ffde00;
  text-align: left;
  padding: 0 0 40px;
}
@media screen and (max-width: 767px) {
  section.etf00632R.etf00632R h2.title {
    padding: 0 0 20px;
    text-align: center;
  }
}
section.etf00632R.etf00632R p {
  color: #FFF;
}
@media screen and (max-width: 767px) {
  section.etf00632R.etf00632R p {
    margin-bottom: 20px;
  }
}
section.etf00632R.etf00632R .note {
  color: #7ca6e0;
  letter-spacing: 0.1px;
}
section.etf00632R.etf00632R .note .highlight {
  color: #FFF;
}
section.etf00632R.etf00632R .etf-flex {
  margin: 50px 0;
  align-items: flex-start;
  gap: 20px;
}
@media screen and (max-width: 767px) {
  section.etf00632R.etf00632R .etf-flex {
    margin: 20px 0;
  }
}
section.etf00632R.etf00632R .etf-flex .left-box {
  flex: 3;
}
section.etf00632R.etf00632R .etf-flex .right-box {
  flex: 2.5;
}
section.example.example h2.title {
  padding-bottom: 0;
}
section.example.example h3 {
  color: #2c2745;
  font-size: 28px;
  font-weight: 500;
}
@media screen and (max-width: 767px) {
  section.example.example h3 {
    font-size: 20px;
  }
}
section.example.example .box {
  margin-top: 20px;
}
section.example.example p.small {
  padding-top: 1rem;
  text-align: right;
  font-size: 14px;
  color: #d8002a;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  section.example.example p.small {
    text-align: center;
  }
}
section.example.example p.dialog {
  display: flex;
  justify-content: center;
  margin: 20px auto;
  color: #2e48ec;
}
@media screen and (max-width: 767px) {
  section.example.example p.dialog {
    margin: 40px auto;
  }
}
section.example.example p.dialog span {
  font-size: 28px;
  height: 100px;
  line-height: 40px;
  padding: 0 20px;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  section.example.example p.dialog span {
    text-align: center;
    font-size: 20px;
  }
}
section.example.example p.dialog::before {
  display: inline-block;
  content: "";
  width: 20px;
  height: 40px;
  background: url("../images/icon-quote-left.svg") top left no-repeat;
}
section.example.example p.dialog::after {
  display: inline-block;
  content: "";
  width: 20px;
  height: 40px;
  background: url("../images/icon-quote-right.svg") bottom right no-repeat;
}
section.example.example .grid-table {
  display: grid;
  margin: 0 auto;
  font-size: 18px;
  font-weight: 500;
}
section.example.example .grid-table-row {
  display: grid;
  text-align: center;
  align-items: center;
  grid-template-columns: 1.5fr repeat(5, 1fr);
  border-bottom: 1px solid #afbedc;
}
section.example.example .grid-table-row:first-child {
  background-color: #0149d9;
  color: #FFF;
  border-bottom: none;
}
section.example.example .grid-table-row:first-child .grid-table-cell {
  border-right: #FFF solid 1px;
}
section.example.example .grid-table-row:last-child {
  color: #0149d9;
}
section.example.example .grid-table-row.bg-blue {
  background-color: #eff4ff;
}
section.example.example .grid-table-cell {
  padding: 1rem;
}
@media screen and (max-width: 767px) {
  section.example.example .grid-table-cell {
    padding: 0.5rem 0.125rem;
  }
}
section.example.example .grid-table-cell span {
  color: #d8002a;
}
section.example.example .noticebox {
  margin-bottom: 60px;
  padding: 2rem 4rem;
  background-color: rgba(216, 0, 42, 0.1);
  border-radius: 20px;
  border: 2px solid #d8002a;
  font-weight: 600;
}
@media screen and (max-width: 767px) {
  section.example.example .noticebox {
    padding: 1rem;
    margin-bottom: 40px;
  }
}
section.timeline.timeline .timeline-flex {
  margin: 0 auto 80px;
  align-items: stretch;
  gap: 80px;
}
@media screen and (max-width: 767px) {
  section.timeline.timeline .timeline-flex {
    margin: 0 auto 40px;
    gap: 40px;
  }
}
@media screen and (max-width: 767px) {
  section.timeline.timeline .timeline-flex .left-box {
    margin: 0 auto;
    width: 90%;
  }
}
section.timeline.timeline .vote-box {
  margin: 0 auto;
  height: 100%;
  width: 400px;
  padding: 30px;
  border-radius: 20px;
  background-color: #ccdfff;
  color: #2e48ec;
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  gap: 10px;
}
@media screen and (max-width: 767px) {
  section.timeline.timeline .vote-box {
    width: 98%;
    padding: 30px;
  }
}
section.timeline.timeline .vote-box .vote-img {
  width: 50%;
  margin: 0 auto;
}
@media screen and (max-width: 767px) {
  section.timeline.timeline .vote-box .vote-img {
    width: 40%;
  }
}
section.timeline.timeline .vote-box h4 {
  margin-bottom: 20px;
  text-align: center;
  font-size: 32px;
  line-height: 1.3;
  font-weight: 700;
}
section.timeline.timeline .vote-box ul {
  font-size: 22px;
  line-height: 2;
  font-weight: 500;
}
section.timeline.timeline .vote-box a {
  margin-top: 60px;
  display: block;
  font-size: 18px;
  background-color: #2e48ec;
  color: #FFF;
  padding: 8px 40px;
  border-radius: 50px;
  transition: all 0.2s;
}
@media screen and (max-width: 767px) {
  section.timeline.timeline .vote-box a {
    margin-top: 0;
  }
}
section.timeline.timeline .vote-box a:hover {
  filter: brightness(150%);
}
section.warn.warn {
  padding: 50px 0;
  background: #bcdeff;
  line-height: 22px;
  text-align: justify;
  color: #293f61;
}
@media screen and (max-width: 600px) {
  section.warn.warn {
    padding: 50px 0;
    line-height: 20px;
  }
}
section.warn.warn * {
  letter-spacing: 0.1px;
}
section.warn.warn .title b {
  margin-right: 20px;
}
section.warn.warn .info {
  padding: 20px 0;
}
@media screen and (max-width: 600px) {
  section.warn.warn .info {
    padding: 5px 0;
    text-align: left;
    letter-spacing: 0.01px;
  }
}
section.warn.warn .content p {
  margin-bottom: 15px;
  font-weight: 600;
}
section.warn.warn .content .highlight {
  color: #005bac;
}
section.warn.warn .content .underline {
  text-decoration: underline;
  text-underline-offset: 2px;
}

.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}/*# sourceMappingURL=main.css.map */