a, abbr, acronym, address, applet, article, aside, audio, b, big, blockquote, body, canvas, caption, center, cite, code, dd, del, details, dfn, div, dl, dt, em, embed, fieldset, figcaption, figure, footer, form, h1, h2, h3, h4, h5, h6, header, hgroup, html, i, iframe, img, ins, kbd, label, legend, li, mark, menu, nav, object, ol, output, p, pre, q, ruby, s, samp, section, small, span, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, time, tr, tt, u, ul, var, video {
  margin: 0;
  padding: 0;
  border: 0;
  font-size: 100%;
  font: inherit;
  vertical-align: baseline;
}

article, aside, details, figcaption, figure, footer, header, hgroup, menu, nav, section {
  display: block;
}

body {
  line-height: 1;
}

ol, ul {
  list-style: none;
}

blockquote, q {
  quotes: none;
}

blockquote:after, blockquote:before, q:after, q:before {
  content: "";
  content: none;
}

table {
  border-collapse: collapse;
  border-spacing: 0;
}

:root {
  color-scheme: light only;
  --wrapper-width: 1024px;
  --wrapper-padding: 8px;
  --color-primary: #1045a6;
  --color-secondary: #36c3cc;
  --swiper-navigation-sides-offset: -24px;
}
@media screen and (min-width: 768px) {
  :root {
    --swiper-navigation-sides-offset: -64px;
  }
}

*,
::before,
::after {
  box-sizing: border-box;
}

[v-cloak] {
  opacity: 0;
  visibility: hidden;
}

body {
  /* Prevent scroll chaining */
  overscroll-behavior-y: contain;
  /* scroll bar space */
  scrollbar-gutter: stable;
  font-family: "Noto Sans TC", "Microsoft JhengHei", Arial, Helvetica, sans-serif, monospace;
  max-width: 1920px;
  margin: 0 auto;
  line-height: 1.3;
}

#app {
  overflow-x: hidden;
}

/* Chrome, Safari, Edge, Opera */
input[type=number]::-webkit-outer-spin-button,
input[type=number]::-webkit-inner-spin-button {
  -webkit-appearance: none;
  margin: 0;
}

/* Firefox */
input[type=number] {
  -moz-appearance: textfield;
}

/* Remove default input eye */
input::-ms-reveal,
input::-ms-clear {
  display: none;
}

/* scrollbar */
::-webkit-scrollbar-track {
  background: #f1f1f1;
}
::-webkit-scrollbar-thumb {
  background: #888;
  border-radius: 4px;
}
::-webkit-scrollbar-thumb:hover {
  background: #555;
}

/* Transition */
.fade-enter-from, .fade-leave-to {
  opacity: 0;
}
.fade-enter-active, .fade-leave-active {
  transition: opacity 0.3s ease;
}
.fade-enter-to, .fade-leave-from {
  opacity: 1;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
}

.base-wrapper {
  display: flex;
  flex-direction: column;
  align-items: center;
  width: var(--wrapper-width);
  max-width: 100%;
  padding: 40px var(--wrapper-padding);
  margin: 0 auto;
}
@media screen and (min-width: 768px) {
  .base-wrapper {
    padding: 80px var(--wrapper-padding);
  }
}

.font-bold {
  font-weight: 700;
}

.base-link {
  overflow-wrap: break-word;
  word-break: break-all;
  text-decoration: none;
  color: #000;
}

.base-btn {
  background: none;
  border: none;
  outline: none;
  padding: 0;
  cursor: pointer;
}

.base-remark {
  font-size: 15px;
  color: #484848;
  align-self: flex-start;
}

.base-shadow {
  box-shadow: 0 1px 2px rgba(0, 0, 0, 0.07), 0 2px 4px rgba(0, 0, 0, 0.07), 0 4px 8px rgba(0, 0, 0, 0.07), 0 8px 16px rgba(0, 0, 0, 0.07), 0 16px 32px rgba(0, 0, 0, 0.07);
}

.color-primary {
  color: var(--color-primary);
}

.base-title {
  position: relative;
  font-size: 40px;
  font-weight: 700;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .base-title {
    text-align: center;
  }
}
@media screen and (min-width: 768px) {
  .base-title-2 {
    padding: 0 64px;
  }
}

.base-desc {
  font-size: 15px;
  margin-bottom: 16px;
}
@media screen and (max-width: 767px) {
  .base-desc {
    text-align: center;
  }
}

.base-table {
  width: 100%;
}
.base-table th,
.base-table td {
  text-align: center;
  vertical-align: middle;
  padding: 8px;
}

.line-break-sm {
  display: block;
}
@media screen and (min-width: 768px) {
  .line-break-sm {
    display: inline-block;
  }
}

@media screen and (min-width: 768px) {
  .line-break-md {
    display: block;
  }
}

.hidden-sm {
  display: none;
}
@media screen and (min-width: 768px) {
  .hidden-sm {
    display: unset;
  }
}

@media screen and (min-width: 768px) {
  .hidden-md {
    display: none !important;
  }
}

.swiper-navigation-icon {
  display: none;
}

.swiper-button-next,
.swiper-button-prev {
  color: #004ea1;
  font-size: 40px;
}

.pic-title-left {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  left: 0;
}
@media screen and (min-width: 768px) {
  .pic-title-left {
    display: block;
  }
}

.pic-title-right {
  display: none;
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  right: 0;
}
@media screen and (min-width: 768px) {
  .pic-title-right {
    display: block;
  }
}

.header {
  position: relative;
  background-color: #fff;
  z-index: 2;
}
.header .base-wrapper {
  flex-direction: row;
  justify-content: space-between;
  height: 56px;
  padding: 0 var(--wrapper-padding);
}

.footer {
  position: relative;
  color: #313e54;
  background: #f2f2f2;
  padding: 40px 0px 0;
  font-weight: bold;
  --background-rainbow: linear-gradient(
      90deg,
      #df1c4b 0%,
      #f41f5e 15%,
      #f96585 25%,
      #f8613c 40%,
      #b495cd 50%,
      #ceabf9 60%,
      #797df2 75%,
      #489cf6 85%,
      #6f59ed 100%
  );
}
.footer .base-wrapper {
  padding: 0 var(--wrapper-padding);
}
.footer .base-link {
  text-decoration: underline;
  color: blue;
}
.footer .footer-highlight {
  color: var(--color-primary);
}
.footer::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 16px;
  top: 0;
  background: var(--background-rainbow);
}
.footer .footer-head {
  width: 100%;
  display: flex;
  flex-direction: column;
  gap: 16px;
  text-align: center;
  font-weight: 700;
  margin-bottom: 24px;
}
.footer .footer-company-name {
  font-size: 22px;
  margin: 16px 0;
}
.footer .footer-company-desc {
  font-size: 14px;
}
.footer .footer-head-contact {
  display: flex;
  flex-direction: column;
  gap: 16px;
  font-weight: 700;
}
.footer .footer-head-phone {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer .footer-head-phone-number {
  font-size: 30px;
  color: #021d3a;
  text-decoration: none;
}
.footer .footer-social-media {
  padding: 0px;
  margin: 0px;
  list-style: none;
  display: flex;
  justify-content: center;
  gap: 16px;
}
.footer .footer-social-media-item {
  display: flex;
  justify-content: center;
  align-items: center;
  text-decoration: none;
  color: #fff;
  transition: 0.3s ease all;
  background: #021d3a;
  border-radius: 50%;
  width: 40px;
  height: 40px;
  font-size: 22px;
}
.footer .footer-warning {
  position: relative;
  padding: 24px 0 0;
}
.footer .footer-warning::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 2px;
  top: -2px;
  background: var(--background-rainbow);
}
.footer .footer-warning ul {
  padding: 0px;
  margin: 0px;
  list-style: none;
  font-size: 15px;
}
.footer .footer-warning ul li {
  margin-bottom: 16px;
  line-height: 1.5;
}
.footer .footer-copyright-text {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  width: -moz-max-content;
  width: max-content;
  font-size: 12px;
  border: solid 1px #50ffcf;
  margin: auto;
  padding: 4px 32px;
  border-radius: 30px;
  background: linear-gradient(90deg, rgba(75, 153, 255, 0.4) 0%, rgba(214, 125, 255, 0.5) 100%);
  line-height: 1.2rem;
}
.footer .footer-bottom-contact {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 8px;
  font-size: 12px;
  color: #fff;
  background-color: #021d3a;
  padding: 16px 0;
  margin: 40px 0 0;
}
.footer .footer-bottom-contact::before {
  content: "";
  position: absolute;
  width: 100%;
  height: 4px;
  top: -4px;
  background: var(--background-rainbow);
}
@media screen and (max-width: 1199px) {
  .footer .footer-head img {
    margin: auto;
  }
}
@media screen and (min-width: 769px) {
  .footer .footer-head {
    flex-direction: row;
    justify-content: space-evenly;
  }
  .footer .footer-social-media {
    order: -1;
  }
}
@media screen and (min-width: 1200px) {
  .footer .footer-head {
    text-align: left;
    justify-content: space-between;
  }
  .footer .footer-head-contact {
    flex-direction: row;
    align-self: flex-end;
  }
  .footer .footer-head-phone {
    flex-direction: row;
    align-items: center;
  }
}

.go-top-icon {
  position: fixed;
  top: 576px;
  right: max((100dvw - var(--wrapper-width)) / 2 - 92px, 20px);
  border-radius: 50%;
  z-index: 1;
  width: 48px;
  height: 48px;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  font-size: 12px;
  background-color: rgba(0, 0, 0, 0.6);
  color: #fff;
  cursor: pointer;
  border: 2px solid #fff;
  box-sizing: border-box;
  transition: opacity 0.4s;
}
.go-top-icon:hover {
  opacity: 0.8;
}
@media screen and (max-width: 767px) {
  .go-top-icon {
    top: unset;
    bottom: 88px;
  }
  .go-top-caret-icon {
    font-size: 24px;
  }
  .go-top-text {
    display: none;
  }
}

.section-main {
  position: relative;
  overflow-x: hidden;
  background: url("../images/05_bottom_mountain.webp") no-repeat bottom #eaf5f9;
}

.section-banner {
  background: url("../images/01_bg.jpg") no-repeat center/cover;
  height: 360px;
  position: relative;
  will-change: background-position;
}
.section-banner .pic-balloon-01 {
  display: none;
  position: absolute;
  top: 10dvw;
  animation: floating1 6s linear alternate infinite;
  pointer-events: none;
}
.section-banner .pic-balloon-02 {
  position: absolute;
  top: 37dvw;
  left: -10dvw;
  max-width: 30%;
  animation: floating2 6s linear alternate infinite;
  pointer-events: none;
  z-index: 1;
}
.section-banner .pic-balloon-03 {
  position: absolute;
  top: 50dvw;
  right: 12dvw;
  animation: floating3 6s linear alternate infinite;
  pointer-events: none;
}
.section-banner .pic-balloon-04 {
  position: absolute;
  z-index: 1;
  top: 80dvw;
  right: -10dvw;
  max-width: 30%;
  animation: floating4 6s linear alternate infinite;
  pointer-events: none;
  z-index: 3;
}
.section-banner .content {
  position: relative;
  text-align: center;
  z-index: 2;
  padding-top: 40px;
  text-shadow: 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff, 0 0 4px #fff;
}
.section-banner .content .desc {
  font-size: 20px;
  margin-bottom: 8px;
}
.section-banner .content .title {
  font-weight: 700;
}
.section-banner .content .main {
  font-size: 40px;
  margin-bottom: 8px;
}
.section-banner .content .sub {
  font-size: 25px;
}
@media screen and (min-width: 768px) {
  .section-banner .pic-balloon-02 {
    top: -8dvw;
    left: 0;
  }
  .section-banner .pic-balloon-03 {
    top: 40dvw;
    right: 30dvw;
  }
  .section-banner .pic-balloon-04 {
    top: -5dvw;
    right: -5dvw;
  }
  .section-banner .content {
    padding-top: 120px;
  }
  .section-banner .content .desc {
    font-size: 25px;
  }
  .section-banner .content .main {
    font-size: 50px;
  }
  .section-banner .content .sub {
    font-size: 35px;
  }
}
@media screen and (min-width: 1024px) {
  .section-banner {
    height: 600px;
  }
  .section-banner .pic-balloon-01 {
    display: block;
  }
  .section-banner .pic-balloon-02 {
    left: 10dvw;
  }
  .section-banner .pic-balloon-03 {
    top: 19dvw;
    right: 30dvw;
  }
}

.section-nav {
  position: absolute;
  top: 320px;
  width: 100%;
  z-index: 1;
}
.section-nav .base-wrapper {
  padding: 0 var(--wrapper-padding);
}
.section-nav .nav-list {
  display: flex;
  flex-direction: column;
  justify-content: center;
  align-items: center;
  width: 90%;
  background: var(--color-primary);
  border-radius: 8px;
}
.section-nav .nav-list .nav-item {
  width: 80%;
  position: relative;
  font-size: 20px;
  font-weight: 700;
  color: #fff;
  padding: 24px 8px;
  text-align: center;
  cursor: pointer;
}
.section-nav .nav-list .nav-item:not(:last-child)::after {
  content: "";
  position: absolute;
  height: 2px;
  width: 100%;
  background: #fff;
  left: 0;
  right: 0;
  bottom: 0;
}
@media screen and (min-width: 768px) {
  .section-nav {
    position: static;
    background: var(--color-primary);
  }
  .section-nav .nav-list {
    flex-direction: row;
    width: 100%;
  }
  .section-nav .nav-list .nav-item {
    width: 200px;
  }
  .section-nav .nav-list .nav-item:not(:last-child)::after {
    height: 60%;
    width: 1px;
    left: unset;
    top: 0;
    margin: auto;
  }
}

.main-bg {
  position: relative;
  background: url("../images/02_bg.jpg") no-repeat center/cover;
}
.main-bg .pic-left {
  display: none;
  position: absolute;
  top: 160px;
  left: -120px;
}
.main-bg .pic-right {
  display: none;
  position: absolute;
  top: 1440px;
  right: -160px;
}
@media screen and (min-width: 768px) {
  .main-bg .pic-left,
  .main-bg .pic-right {
    display: block;
  }
}

.section-essential {
  padding-top: 320px;
}
.section-essential .base-title {
  margin-bottom: 40px;
}
.section-essential .box {
  position: relative;
  text-align: left;
  padding: 40px 24px;
  border-radius: 4px;
  width: 100%;
  background: #fff;
}
.section-essential .box:not(:last-child) {
  margin-bottom: 80px;
}
.section-essential .box .box-title {
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%) translateY(-50%);
  color: #fff;
  background: var(--color-primary);
  width: 400px;
  max-width: 80%;
  margin: auto;
  padding: 8px;
}
.section-essential .box .box-desc-1 {
  color: var(--color-primary);
  margin: 16px 0;
  font-size: 25px;
  font-weight: 700;
}
@media screen and (min-width: 768px) {
  .section-essential {
    padding-top: 0;
  }
  .section-essential .base-title {
    margin-bottom: 80px;
  }
  .section-essential .box {
    width: 80%;
    text-align: center;
  }
}

.section-diverse .tab-bar {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-evenly;
  border-bottom: 1px solid #000;
  margin: 24px 0 40px;
}
.section-diverse .tab-bar .tab-item {
  position: relative;
  font-size: 20px;
  padding: 8px;
  cursor: pointer;
  transition: 0.4s colors;
}
.section-diverse .tab-bar .tab-item:hover {
  color: var(--color-primary);
}
.section-diverse .tab-bar .tab-item.active::after {
  content: "";
  position: absolute;
  left: 0;
  bottom: 0;
  height: 4px;
  width: 100%;
  background: var(--color-primary);
}
.section-diverse .base-swiper {
  width: 100%;
  position: relative;
}
.section-diverse .fundname {
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  margin-bottom: 24px;
}
.section-diverse .base-table thead {
  background: var(--color-primary);
}
.section-diverse .base-table tbody tr:nth-child(odd) {
  background: #fff;
}
.section-diverse .base-table tbody tr:nth-child(even) {
  background: #ddd;
}
.section-diverse .base-table th {
  color: #fff;
}
.section-diverse .base-table th,
.section-diverse .base-table td {
  border: 1px solid #eee;
}
.section-diverse .advantage {
  margin: 32px 0 0;
  padding: 8px;
  background: #fff;
  border-radius: 8px;
}
.section-diverse .advantage-item {
  font-size: 20px;
  display: flex;
  flex-direction: column;
  padding: 24px 8px;
}
.section-diverse .advantage-item-left {
  display: flex;
  align-items: center;
}
.section-diverse .advantage-item:not(:last-child) {
  border-bottom: 1px solid #000;
}
.section-diverse .advantage-item .pic-icon {
  margin-right: 16px;
}
.section-diverse .advantage-item .num {
  font-size: 35px;
  font-weight: 700;
  color: var(--color-primary);
  margin: 0 0 8px 4px;
}
.section-diverse .advantage-item .content {
  position: relative;
  margin-left: 39px;
}
.section-diverse .advantage-item .content::after {
  display: none;
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: -16px;
  margin: auto;
  width: 1px;
  height: 100%;
  background: #000;
}
.section-diverse .section-btn {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 16px;
  margin-top: 32px;
}
.section-diverse .section-btn .base-link {
  font-size: 20px;
  font-weight: 700;
  width: 80%;
  padding: 24px;
  text-align: center;
  flex: 1;
  background: var(--color-primary);
  border-radius: 8px;
  color: #fff;
  transition: 0.4s opacity;
}
.section-diverse .section-btn .base-link:hover {
  opacity: 0.8;
}
.section-diverse .section-btn .base-link:not(:first-child) {
  background: var(--color-secondary);
}
.section-diverse .base-remark {
  margin-top: 8px;
}
@media screen and (max-width: 767px) {
  .section-diverse .base-table {
    display: grid;
    grid-template-rows: repeat(var(--row-count), auto);
    grid-auto-flow: column;
  }
  .section-diverse .base-table thead,
  .section-diverse .base-table tbody,
  .section-diverse .base-table tr {
    display: contents;
  }
  .section-diverse .base-table th {
    background: var(--color-primary);
  }
  .section-diverse .base-table td,
  .section-diverse .base-table th {
    display: flex;
    align-items: center;
    justify-content: center;
  }
  .section-diverse .base-table tr:nth-child(odd) td {
    background: #fff;
  }
  .section-diverse .base-table tr:nth-child(even) td {
    background: #ccc;
  }
}
@media screen and (min-width: 768px) {
  .section-diverse .base-swiper {
    width: 90%;
  }
  .section-diverse .tab-bar {
    width: 100%;
  }
  .section-diverse .fundname {
    font-size: 25px;
    margin-bottom: 40px;
  }
  .section-diverse .advantage {
    padding: 24px;
    margin: 64px 0 0;
  }
  .section-diverse .advantage-item {
    padding: 24px;
    flex-direction: row;
    align-items: center;
  }
  .section-diverse .advantage-item .content {
    margin-left: 32px;
  }
  .section-diverse .advantage-item .content::after {
    display: block;
  }
  .section-diverse .section-btn {
    flex-direction: row;
    margin-top: 64px;
  }
}
@media screen and (min-width: 1024px) {
  .section-diverse .advantage {
    padding: 40px;
  }
  .section-diverse .advantage-item {
    padding: 24px 40px;
  }
}

.section-different .box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-radius: 4px;
  width: 100%;
  margin: 40px 0;
}
.section-different .box .pic-bird {
  display: none;
  position: absolute;
  top: -40px;
  left: 0;
}
.section-different .box .pic-bird-2 {
  top: 0;
  left: -80px;
}
.section-different .box .item {
  font-size: 15px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  text-align: center;
}
.section-different .box .item:first-child {
  font-size: 25px;
}
.section-different .box .item:not(:first-child) .left {
  color: #fff;
  background: var(--color-primary);
  clip-path: polygon(0% 0%, 85% 0%, 100% 50%, 85% 100%, 0% 100%);
}
.section-different .box .item:not(:first-child) .center {
  display: flex;
  justify-content: center;
}
.section-different .box .item:not(:first-child) .right {
  color: #fff;
  background: var(--color-secondary);
  clip-path: polygon(15% 0%, 100% 0%, 100% 100%, 15% 100%, 0% 50%);
}
.section-different .box .left {
  width: 50%;
  padding: 16px 8px;
}
.section-different .box .center {
  width: 13%;
  padding: 0 8px;
}
.section-different .box .right {
  width: 50%;
  padding: 16px 8px;
}
@media screen and (min-width: 768px) {
  .section-different .box {
    background: #fff;
    padding: 40px;
    gap: 32px;
  }
  .section-different .box .item {
    font-size: 20px;
  }
  .section-different .box .item:not(:first-child) .left {
    clip-path: polygon(0% 0%, 95% 0%, 100% 50%, 95% 100%, 0% 100%);
  }
  .section-different .box .item:not(:first-child) .right {
    clip-path: polygon(5% 0%, 100% 0%, 100% 100%, 5% 100%, 0% 50%);
  }
  .section-different .box .pic-bird {
    display: block;
  }
  .section-different .box .left,
  .section-different .box .right {
    padding: 16px;
  }
}

.section-tax .base-wrapper {
  padding: 80px var(--wrapper-padding);
}
.section-tax .tab-bar {
  display: flex;
  width: 100%;
  margin-top: 24px;
  gap: 8px;
  align-items: center;
  justify-content: space-evenly;
}
.section-tax .tab-bar .item {
  color: #fff;
  background: #ccc;
  padding: 24px;
  flex: 1;
  text-align: center;
}
.section-tax .tab-bar .item.active {
  background: var(--color-primary);
}
.section-tax .section-class {
  width: 100%;
}
.section-tax .bar {
  position: relative;
  width: 100%;
  margin: 40px 0 80px;
  padding: 24px 16px 96px;
  font-size: 25px;
  font-weight: 700;
  text-align: center;
  color: #fff;
  background: var(--color-primary);
  line-height: 1.5;
}
.section-tax .bar .pic-right {
  position: absolute;
  width: 280px;
  bottom: -40px;
  right: 0;
  z-index: -1;
}
.section-tax .base-table thead {
  background: #fff;
}
.section-tax .base-table tbody tr {
  border-bottom: 1px solid #000;
}
.section-tax .base-table th,
.section-tax .base-table td {
  padding: 24px 16px;
}
.section-tax .base-remark {
  margin-top: 40px;
}
.section-tax .box-bar {
  overflow-x: auto;
  overflow-y: hidden;
}
.section-tax .box-section {
  width: -moz-fit-content;
  width: fit-content;
  display: flex;
  gap: 24px 16px;
}
.section-tax .box {
  width: 320px;
  padding: 32px 24px;
  background: #fff;
  border-radius: 4px;
  line-height: 1.5;
  margin-bottom: 16px;
}
.section-tax .box .title {
  font-size: 25px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 40px;
}
.section-tax .box .desc {
  font-size: 15px;
}
.section-tax .box .desc-1 {
  margin-bottom: 24px;
}
.section-tax .info {
  font-size: 15px;
  line-height: 1.5;
}
.section-tax .info-2 {
  margin-top: 40px;
}
@media screen and (min-width: 768px) {
  .section-tax .tab-bar {
    display: none;
  }
  .section-tax .bar {
    text-align: left;
    padding: 96px 24px;
    width: calc(100% - 24px);
    border-radius: 4px;
  }
  .section-tax .bar .pic-right {
    width: 320px;
    right: -24px;
  }
  .section-tax .box-section {
    flex-direction: column;
  }
  .section-tax .box {
    width: 100%;
  }
}
@media screen and (min-width: 1024px) {
  .section-tax .base-wrapper {
    padding: 120px var(--wrapper-padding);
  }
  .section-tax .bar {
    margin: 80px 0 80px -24px;
  }
  .section-tax .bar .pic-right {
    width: unset;
    top: -24px;
  }
}

.section-faq {
  counter-reset: q-counter;
}
.section-faq .main-title {
  font-size: 40px;
  padding: 40px;
  text-align: center;
  color: #fff;
  background: var(--color-primary);
}
.section-faq .item {
  width: 100%;
  padding: 24px 16px;
}
.section-faq .item:not(:last-child) {
  border-bottom: 1px solid #000;
}
.section-faq .item .title {
  font-size: 20px;
  font-weight: 700;
  color: var(--color-primary);
  margin-bottom: 8px;
}
.section-faq .item .title::before {
  counter-increment: q-counter;
  content: counter(q-counter) ". ";
}
.section-faq .item .desc {
  font-size: 15px;
}
.section-faq .base-link {
  text-decoration: underline;
  color: blue;
}

.section-btn .item {
  width: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 32px;
  margin-bottom: 80px;
}
.section-btn .item:nth-child(2) {
  margin-bottom: 0;
}
.section-btn .item:nth-child(2) .desc {
  font-size: 30px;
}
.section-btn .content {
  display: flex;
  flex-direction: column;
  align-items: center;
  font-weight: 700;
}
.section-btn .title {
  font-size: 30px;
  position: relative;
  margin-bottom: 32px;
  align-self: stretch;
  text-align: center;
  color: var(--color-primary);
}
.section-btn .title::after {
  display: none;
  content: "";
  position: absolute;
  bottom: -16px;
  left: 0;
  width: 100%;
  height: 1px;
  background: #ccc;
}
.section-btn .desc {
  width: 100%;
  font-size: 20px;
  text-align: center;
}
.section-btn .subtitle {
  font-size: 20px;
  font-weight: 500;
  margin-bottom: 24px;
}
.section-btn .btn {
  position: relative;
  display: inline-block;
  color: #fff;
  background: var(--color-primary);
  padding: 16px 40px;
  border-radius: 4px;
  margin-top: 24px;
  transition: 0.4s;
}
.section-btn .btn:hover {
  opacity: 0.8;
}
.section-btn .btn-2 {
  padding: 0;
}
.section-btn .pointer {
  position: absolute;
  bottom: 0;
  right: 0;
  transform: rotate(-45deg);
}
.section-btn .download-bar {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: space-evenly;
  gap: 16px;
}
@media screen and (min-width: 768px) {
  .section-btn .item {
    flex-direction: row;
  }
  .section-btn .pic {
    width: 50%;
  }
  .section-btn .title::after {
    display: block;
  }
  .section-btn .content {
    width: 50%;
  }
  .section-btn .desc {
    font-size: 30px;
  }
  .section-btn .download-bar {
    flex-direction: row;
  }
}

.section-media {
  display: flex;
  flex-direction: column;
  padding: 40px 0;
}
.section-media .left,
.section-media .right {
  display: flex;
  flex-direction: column;
  align-items: center;
  background: var(--color-primary);
}
.section-media .left {
  --color-text: #fff;
  padding: 40px;
}
.section-media .right {
  --color-text: #000;
  padding: 40px;
  background: #fff;
}
.section-media .content {
  width: -moz-fit-content;
  width: fit-content;
  color: var(--color-text);
}
.section-media .title {
  width: -moz-fit-content;
  width: fit-content;
  margin: auto;
  position: relative;
  font-size: 20px;
  padding: 0 16px;
  text-align: center;
}
.section-media .title::before, .section-media .title::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  margin: auto;
  background: var(--color-text);
  width: 1px;
  height: 100%;
}
.section-media .title::before {
  left: 0;
}
.section-media .title::after {
  right: 0;
}
.section-media .pic-bar {
  display: flex;
  align-items: center;
  gap: 32px;
  justify-content: space-evenly;
  margin: 40px 0;
}
.section-media .desc {
  font-size: 15px;
}
.section-media .desc .list-item {
  position: relative;
  padding-left: 16px;
}
.section-media .desc .list-item::before {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  left: 0;
  margin: auto;
  width: 8px;
  height: 8px;
  background: var(--color-text);
  border-radius: 50%;
}
@media screen and (min-width: 768px) {
  .section-media {
    flex-direction: row;
    padding: 80px 0;
  }
  .section-media .left,
  .section-media .right {
    width: 50%;
  }
}
@media screen and (min-width: 1024px) {
  .section-media .left {
    padding: 80px 80px 80px max(20px, (100% - var(--wrapper-width)) / 2);
  }
  .section-media .left .content {
    margin-left: auto;
  }
  .section-media .right {
    padding: 80px max(20px, (100% - var(--wrapper-width)) / 2) 80px 80px;
  }
  .section-media .right .content {
    margin-right: auto;
  }
}

.section-reason .base-swiper {
  position: relative;
  width: 100%;
  margin: 40px 0;
}
.section-reason .swiper-pagination.swiper-reason-pagination {
  bottom: -24px;
}
.section-reason .box {
  color: #fff;
  background: var(--color-primary);
  text-align: center;
  padding: 24px 16px;
}
.section-reason .title {
  font-size: 25px;
  border-bottom: 1px solid #fff;
  padding-bottom: 16px;
  margin-bottom: 16px;
}
.section-reason .num {
  font-size: 50px;
}
.section-reason .desc {
  font-size: 15px;
}
@media screen and (max-width: 767px) {
  .section-reason .box.swiper-slide {
    transform: scale(0.8);
    opacity: 0.7;
    transition: 0.4s all;
  }
  .section-reason .box.swiper-slide-active {
    transform: scale(1);
    opacity: 1;
  }
}
@media screen and (min-width: 768px) {
  .section-reason .swiper-wrapper {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 16px;
    transform: unset !important;
  }
  .section-reason .swiper-slide {
    width: unset;
  }
  .section-reason .box {
    padding: 24px;
  }
  .section-reason .title {
    font-size: 30px;
  }
  .section-reason .num {
    font-size: 60px;
  }
  .section-reason .desc {
    font-size: 20px;
  }
}

.section-global .pic {
  margin: 40px 0;
  border: 8px solid var(--color-primary);
}

.section-timeline .pic {
  margin: 40px 0 320px;
}

.aside-bar {
  display: flex;
  width: 100%;
  position: fixed;
  bottom: 16px;
  z-index: 10;
  border: 4px solid #fff;
  background: #fff;
  border-radius: 40px;
}
.aside-bar .item {
  width: 50%;
  font-size: 20px;
  font-weight: 700;
  text-align: center;
  padding: 16px 8px;
  color: #fff;
  background: linear-gradient(to bottom, #0850d2, #2f24d8);
  line-height: 1.1;
  transition: 0.4s opacity;
  border-radius: 40px 0 0 40px;
}
.aside-bar .item:nth-child(1):hover {
  opacity: 0.8;
}
.aside-bar .item:nth-child(2) {
  display: flex;
  justify-content: center;
  padding: 8px;
  gap: 32px;
  background: linear-gradient(to bottom, #36c3cc, #feb352);
  border-radius: 0 40px 40px 0;
}
.aside-bar .item .icon {
  font-size: 36px;
  color: #fff;
}
.aside-bar .pic-balloon {
  display: none;
  position: absolute;
  top: -32px;
  left: -24px;
  pointer-events: none;
}
.aside-bar .pic-bird {
  display: none;
  position: absolute;
  bottom: -8px;
  right: -16px;
  transform: scaleX(-1);
  pointer-events: none;
}
@media screen and (min-width: 768px) {
  .aside-bar {
    flex-direction: column;
    top: 200px;
    right: max((100dvw - var(--wrapper-width)) / 2 - 96px, 16px);
    bottom: unset;
    width: unset;
  }
  .aside-bar .item {
    font-size: 30px;
    width: -moz-min-content;
    width: min-content;
    padding: 24px 12px;
    border-radius: 40px 40px 0 0;
    clip-path: polygon(0 0, 100% 0, 100% calc(100% - 24px), 0 100%);
  }
  .aside-bar .item:nth-child(2) {
    width: 100%;
    flex-direction: column;
    clip-path: polygon(0 24px, 100% 0, 100% 100%, 0 100%);
    border-radius: 0 0 40px 40px;
    margin-top: -20px;
    padding: 40px 4px;
  }
  .aside-bar .pic-balloon,
  .aside-bar .pic-bird {
    display: block;
  }
}

@keyframes floating1 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-24px);
  }
}
@keyframes floating2 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(40px);
  }
}
@keyframes floating3 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(-16px);
  }
}
@keyframes floating4 {
  0% {
    transform: translateY(0);
  }
  100% {
    transform: translateY(56px);
  }
}/*# sourceMappingURL=index.css.map */