@charset "UTF-8";
@import url("https://fonts.googleapis.com/css2?family=Noto+Sans+TC:wght@300;400;500;700;900&display=swap");
@import url("https://fonts.googleapis.com/css2?family=Noto+Serif+TC:wght@300;400;500;700;900&display=swap");
.d-flex {
  display: flex;
}

.modal-mask {
  position: fixed;
  z-index: 99999;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.5);
  display: flex;
  transition: opacity 0.3s ease;
  overflow: hidden;
}

.modal-wrapper {
  display: flex;
  vertical-align: middle;
  background-color: #fff;
  border-radius: 10px;
  overflow: hidden;
  transition: all 0.3s ease-in-out;
}
.modal-wrapper.Y_center {
  margin: 5% auto auto;
  width: 1000px;
  height: 80dvh;
}
@media screen and (max-width: 992px) {
  .modal-wrapper.Y_center {
    margin: 5vh auto auto;
    width: 600px;
    height: 90dvh;
  }
}
@media screen and (max-width: 767px) {
  .modal-wrapper.Y_center {
    margin: 5dvh auto auto;
    width: 95%;
    height: 90dvh;
  }
}
.modal-wrapper .modal-container {
  position: relative;
  display: grid;
  width: 100%;
  margin: 0px auto;
  padding: 30px 30px 0;
  background-color: #fff;
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.33);
}
@media screen and (max-width: 767px) {
  .modal-wrapper .modal-container {
    padding: 10px 10px 0;
  }
}
.modal-wrapper .modal-container .modal-header h3 {
  margin-top: 0;
  padding: 20px 0;
  text-align: center;
  line-height: 1.5;
  font-size: 20px;
  color: #091d3d;
  font-weight: bolder;
}
@media screen and (max-width: 767px) {
  .modal-wrapper .modal-container .modal-header h3 {
    margin: 0 auto;
    padding: 12px 0;
    font-size: 18px;
    width: 76%;
    max-height: 110px;
  }
}
.modal-wrapper .modal-container .modal-header button.close {
  position: absolute;
  right: 15px;
  top: 15px;
  outline: none;
  width: 25px;
  height: 25px;
  background-image: url("data:image/svg+xml;base64,PHN2ZyB4bWxucz0iaHR0cDovL3d3dy53My5vcmcvMjAwMC9zdmciIHZpZXdCb3g9IjAgMCAxNy41IDE3LjUiPjxkZWZzPjxzdHlsZT4uYTc0YTE5NTgtODgzNC00MDk2LWI3MTUtZWZlM2Y2NjczMmVje2ZpbGw6bm9uZTtzdHJva2U6IzY2NjtzdHJva2UtbGluZWNhcDpyb3VuZDtzdHJva2UtbWl0ZXJsaW1pdDoxMDtzdHJva2Utd2lkdGg6MS41cHg7fTwvc3R5bGU+PC9kZWZzPjxnIGlkPSJhYjY5NDczZC05YzZjLTQyNmUtYmYyYy1jODEyMmQxOGNhOGQiIGRhdGEtbmFtZT0i5ZyW5bGkIDIiPjxnIGlkPSJmNzVkMzdiNy01OGJkLTQ2ZDItYWRhMS1jZmY5NTc3ZGZlYTIiIGRhdGEtbmFtZT0i5ZyW5bGkIDEiPjxsaW5lIGNsYXNzPSJhNzRhMTk1OC04ODM0LTQwOTYtYjcxNS1lZmUzZjY2NzMyZWMiIHgxPSIwLjc1IiB5MT0iMTYuNzUiIHgyPSIxNi43NSIgeTI9IjAuNzUiLz48bGluZSBjbGFzcz0iYTc0YTE5NTgtODgzNC00MDk2LWI3MTUtZWZlM2Y2NjczMmVjIiB4MT0iMC43NSIgeTE9IjAuNzUiIHgyPSIxNi43NSIgeTI9IjE2Ljc1Ii8+PC9nPjwvZz48L3N2Zz4=");
  background-repeat: no-repeat;
  background-color: transparent;
  cursor: pointer;
}
@media screen and (max-width: 767px) {
  .modal-wrapper .modal-container .modal-header button.close {
    right: 12px;
    top: 12px;
    width: 18px;
    height: 18px;
  }
}
.modal-wrapper .modal-container .modal-body {
  width: 100%;
  margin: 0;
  padding-bottom: 50px;
  max-height: 70vh;
  overflow-y: auto;
  overflow-x: hidden;
}
@media screen and (max-width: 767px) {
  .modal-wrapper .modal-container .modal-body {
    max-height: initial;
    margin: 0;
    padding-bottom: 20px;
  }
}
.modal-wrapper .modal-container .modal-body::-webkit-scrollbar {
  width: 2px;
}
.modal-wrapper .modal-container .modal-body::-webkit-scrollbar-thumb {
  background: #aaa;
}
.modal-wrapper .modal-container .modal-default-button {
  float: right;
}

.modal-enter-from,
.modal-leave-to {
  opacity: 0;
}

.modal-enter-active .modal-wrapper,
.modal-leave-active .modal-wrapper {
  transform: translateY(-10%);
}

/* ========== Color Variables ========== */
/* ========== Breakpoint Variables ========== */
/* ========== Media Query Mixins ========== */
/* ========== Global Styles ========== */
* {
  box-sizing: border-box;
  border: none;
  letter-spacing: 0;
}

u {
  text-decoration: underline;
  text-underline-offset: 0.2rem;
}

img {
  margin: 0 auto;
}

.flex {
  display: flex;
}

html {
  height: 100%;
  box-sizing: border-box;
}

body {
  padding-top: env(safe-area-inset-top);
  padding-bottom: env(safe-area-inset-bottom);
  padding-left: env(safe-area-inset-left);
  padding-right: env(safe-area-inset-right);
  background: #fff;
}

header {
  padding-top: env(safe-area-inset-top);
}

.mainBtn {
  padding-bottom: env(safe-area-inset-bottom);
}

/* ========== Body & Utility Classes ========== */
body {
  margin: 0;
  padding: 0;
  font-size: 16px;
  line-height: 1.4;
  width: 100%;
  overflow-x: hidden;
  font-family: "Noto Sans TC", "微軟正黑體", "MS UI Gothic", Arial, Helvetica, sans-serif;
  color: #2f4363;
}
@media screen and (max-width: 575px) {
  body {
    font-size: 15px;
  }
}
body b,
body .bold {
  font-weight: bold;
}
body .blue {
  color: #002bb5;
}
body .blue-shine {
  color: #1d3dff;
}
body .purple {
  color: #ee8dff;
}
body .yellow {
  color: #ffe000;
}
body .info {
  margin-top: 40px;
  text-align: justify;
  line-height: 1.5;
  color: #2f4363;
  font-size: 13px;
}
@media (min-width: 768px) {
  body .info {
    margin-top: 60px;
  }
}
body .info span {
  font-size: 14px;
  color: #1e46c3;
  font-weight: bold;
}
body .f15 {
  font-size: 15px;
}
body .center {
  text-align: center;
}
body section .img img.img-mob {
  width: 100%;
  max-width: 320px;
}
@media (min-width: 1025px) {
  body section .img img.img-mob {
    display: none;
  }
}
body section .img img.img-desktop {
  display: none;
}
@media (min-width: 1025px) {
  body section .img img.img-desktop {
    display: block;
  }
}
body section .notice {
  margin-top: 60px;
  line-height: 1.3;
  color: #2f4363;
  font-size: 13px;
}
body section .notice span {
  font-size: 14px;
  color: #1e46c3;
  font-weight: bold;
}
body section .notice b {
  font-size: 14px;
}

/* ========== Container Utilities ========== */
.container-lg {
  width: 95%;
  margin: 0 auto;
  max-width: 1440px;
}
@media (min-width: 1280px) {
  .container-lg {
    width: 100%;
    padding: 0 20px;
  }
}
.container-md {
  width: 92%;
  margin: 0 auto;
  max-width: 1200px;
}
@media (min-width: 1280px) {
  .container-md {
    width: 100%;
  }
}
.container-sm {
  width: 85%;
  margin: 0 auto;
  max-width: 1000px;
}
@media (min-width: 1280px) {
  .container-sm {
    width: 100%;
  }
}

/* ========== Header & Navigation ========== */
header {
  display: flex;
  justify-content: space-between;
  padding: 0 29px 0;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  header {
    padding: 0 0 0 20px;
  }
}
header.header-top {
  background: transparent;
  box-shadow: none;
}
header.header-top .menu-btn span {
  background: #fff;
}
header.header-top .menu-list ul li:not(:first-child)::before {
  background: #fff;
}
header.header-top .menu-list ul li a {
  color: #fff;
}
@media screen and (min-width: 1025px) {
  header.header-top .menu-list ul li a {
    transition: all 0.3s ease-in-out;
  }
  header.header-top .menu-list ul li a:hover {
    color: #ffe000;
  }
}
header .menu-btn {
  width: 25px;
  position: absolute;
  top: 8px;
  right: 20px;
  z-index: 11;
}
@media (min-width: 768px) {
  header .menu-btn {
    display: none;
  }
}
header .menu-btn span {
  display: block;
  margin: 7px 0;
  width: 100%;
  height: 2px;
  background: #002bb5;
  transition: all 0.3s ease-in-out;
}
header .menu-btn.open {
  top: 13px;
}
header .menu-btn.open span {
  background: #fff;
}
header .menu-btn.open span:first-child {
  transform: rotate(45deg) translate(4px, 3px);
}
header .menu-btn.open span:nth-child(2) {
  display: none;
}
header .menu-btn.open span:last-child {
  transform: rotate(-45deg) translate(3px, -3px);
}
header .menu-list {
  position: fixed;
  display: flex;
  align-items: center;
  justify-content: center;
  top: 0;
  left: 0;
  width: 100%;
  height: 100dvh;
  background: #002bb5;
  z-index: 10;
}
@media (min-width: 768px) {
  header .menu-list {
    position: relative;
    display: flex !important;
    align-items: center;
    width: auto;
    height: auto;
    background: transparent;
    padding-top: 0;
  }
}
header .menu-list ul {
  position: relative;
}
@media (min-width: 768px) {
  header .menu-list ul {
    display: inline-flex;
    align-items: center;
  }
}
header .menu-list ul li {
  cursor: pointer;
  padding: 0 30px;
  transition: all 0.3s ease-in-out;
  text-align: center;
  margin: 30px auto;
}
@media (min-width: 768px) {
  header .menu-list ul li {
    margin: 0;
  }
}
header .menu-list ul li a {
  display: inline-flex;
  justify-content: center;
  color: #fff;
}
@media (min-width: 768px) {
  header .menu-list ul li a {
    color: #002bb5;
  }
}
@media (min-width: 768px) {
  header .menu-list ul li:not(:first-child) {
    position: relative;
  }
  header .menu-list ul li:not(:first-child)::before {
    content: "";
    width: 1px;
    height: 15px;
    background: #002bb5;
    display: block;
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    left: 0;
  }
}
header .menu-list .socialmedia {
  position: absolute;
  bottom: 10dvh;
  left: 0;
  width: 100%;
}
header .menu-list .socialmedia ol {
  display: flex;
  justify-content: center;
  -moz-column-gap: 20px;
       column-gap: 20px;
}
header .menu-list .socialmedia img {
  width: 22px;
  height: 22px;
}
header a {
  display: inline-flex;
}

.background {
  position: fixed;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  z-index: -2;
  background: url(../img/kv-bg-m.png), #030d31;
  background-size: cover;
  background-position: left bottom;
}
@media (min-width: 768px) {
  .background {
    background: url(../img/kv-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
}
@media (min-width: 1025px) {
  .background {
    background: url(../img/kv-bg.png) no-repeat;
    background-size: cover;
    background-position: center;
  }
}

article.main {
  position: relative;
  width: 100vw;
  height: 100dvh;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  article.main {
    max-height: 100dvh;
  }
}
article.main .content {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 0;
  top: 40px;
}
@media (min-width: 640px) {
  article.main .content {
    top: 0;
    width: 100%;
    gap: 0;
  }
}
article.main .content img {
  width: 100%;
}
article.main .content .title {
  position: relative;
  transform: none;
  display: flex;
  flex-direction: column;
  width: 85vw;
  z-index: 1;
  font-family: "Noto Serif TC", sans-serif !important;
}
@media screen and (orientation: portrait) and (max-height: 680px) {
  article.main .content .title {
    width: 75vw;
    max-width: 320px;
  }
}
@media screen and (orientation: portrait) and (min-width: 768px) and (max-width: 1024px) {
  article.main .content .title {
    width: 75vw;
    max-width: 320px;
  }
}
@media (min-width: 768px) {
  article.main .content .title {
    width: 100%;
    max-width: 600px;
  }
}
@media screen and (orientation: portrait) and (min-width: 768px) and (max-width: 1024px) {
  article.main .content .title {
    top: 0;
    width: 80%;
    max-width: 600px;
  }
}
@media screen and (orientation: portrait) and (max-aspect-ratio: 3/4) and (min-width: 540px) and (max-width: 991px) {
  article.main .content .title {
    top: 0;
    width: 80%;
    max-width: 600px;
  }
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  article.main .content .title {
    width: 100%;
    max-width: 500px;
  }
}
@media (min-width: 1025px) {
  article.main .content .title {
    margin-top: 0;
  }
}
article.main .content .title .img-slogan1 {
  margin: 0 auto 20px;
  width: 100%;
  max-width: 400px;
  margin-bottom: 20px;
}
@media (min-width: 768px) {
  article.main .content .title .img-slogan1 {
    max-width: 500px;
  }
}
article.main .content .title .img-slogan2 {
  margin: 0 auto 20px;
  width: 100%;
  max-width: 400px;
}
@media (min-width: 768px) {
  article.main .content .title .img-slogan2 {
    max-width: 520px;
  }
}
article.main .content .img-fund-name {
  margin: 0 auto;
  width: 90%;
  max-width: 400px;
}
@media (min-width: 768px) {
  article.main .content .img-fund-name {
    max-width: 720px;
  }
}
article.main .mainBtn {
  position: relative;
  margin: 2vw auto;
  left: auto;
  bottom: 20px;
  transform: none;
  z-index: 999;
  color: #fff;
  padding: 16px;
  text-align: center;
  background: linear-gradient(to right, transparent 0%, rgba(0, 0, 255, 0.8) 15%, rgb(0, 0, 255) 40%, rgb(0, 0, 255) 50%, rgba(0, 0, 255, 0.8) 85%, transparent 100%);
  text-shadow: 0 0 #00112b;
  font-weight: 700;
}
@media (min-width: 1025px) {
  article.main .mainBtn {
    position: absolute;
    margin-bottom: 0;
    bottom: 65px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    background: linear-gradient(to right, transparent 10%, rgba(0, 0, 255, 0.8) 20%, rgb(0, 0, 255) 45%, rgb(0, 0, 255) 55%, rgba(0, 0, 255, 0.8) 80%, transparent 90%);
  }
}
article.main .mainBtn p {
  padding-bottom: 12px;
}
@media (min-width: 1025px) {
  article.main .mainBtn p {
    margin-right: 16px;
    padding-bottom: 0;
  }
}
article.main .mainBtn .link {
  background: #5adfff;
  color: #001854;
  width: 40%;
  height: 36px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: 600px;
  font-weight: bold;
  margin: 0 8px;
  cursor: pointer;
}
@media (min-width: 1025px) {
  article.main .mainBtn .link {
    width: 200px;
    height: 50px;
    margin: 0;
  }
}
article.main .mainBtn .link.allot {
  background: #ffeb10;
  color: #001854;
}
@media screen and (min-width: 1025px) {
  article.main .mainBtn .link {
    transition: all 0.3s ease-in-out;
  }
  article.main .mainBtn .link:hover {
    transform: translateY(-3px);
  }
}

/* ========== Animations ========== */
@keyframes glasses {
  0% {
    opacity: 0;
  }
  50% {
    opacity: 1;
  }
  100% {
    opacity: 0;
  }
}
/* ========== Main Article Section ========== */
/* ========== Sections ========== */
section {
  padding: 40px 0;
  text-align: center;
  /*基金投資配置、基金小檔案*/
}
@media (min-width: 1025px) {
  section.decoration {
    position: relative;
  }
  section.decoration::before {
    content: "";
    display: block;
    position: absolute;
    bottom: calc(100% - 1px);
    right: 0;
    width: 50%;
    height: 40px;
    background: inherit;
    clip-path: polygon(0 100%, 40px 0, 100% 0, 100% 100%);
  }
}
@media (min-width: 1025px) {
  section {
    padding: 60px 0 120px;
  }
}
section .text-right {
  text-align: right;
}
section .text-left {
  text-align: left;
}
section .font-serif {
  font-family: "Noto Serif TC", serif !important;
}
section h2.title {
  font-family: "Noto Serif TC", serif;
  text-align: center;
  font-size: 32px;
  line-height: 1.5;
  font-weight: bold;
  color: #fff;
  margin: 0 auto 40px;
  width: 90%;
}
@media (min-width: 768px) {
  section h2.title {
    width: 100%;
    font-size: 36px;
  }
}
@media (min-width: 1025px) {
  section h2.title {
    font-size: 48px;
    padding: 40px 0;
  }
}
section h2.title span {
  display: block;
}
section h2.title br {
  display: none;
}
@media (min-width: 768px) {
  section h2.title br {
    display: block;
  }
}
@media (min-width: 1025px) {
  section h2.title br {
    display: none;
  }
}
section .content {
  padding: 0;
}
@media (min-width: 1025px) {
  section .content {
    width: 1000px;
    margin: 0 auto;
  }
}
section .content .img img {
  max-width: 100%;
}
section .box .cards {
  display: flex;
  flex-direction: column;
  align-items: center;
}
@media (min-width: 1025px) {
  section .box .cards {
    flex-direction: row;
    justify-content: space-around;
    align-items: flex-start;
  }
}
section .box .cards .card {
  width: 100%;
}
section .box .cards .card .title {
  font-size: 18px;
  color: #002bb5;
  font-weight: bold;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  margin: 20px auto;
}
@media (min-width: 768px) {
  section .box .cards .card .title {
    font-size: 20px;
    margin: 20px auto 40px;
  }
}
section .box .cards .card .title img {
  width: 100px;
  margin: 0;
}
section .box .cards .card .title p {
  font-size: 18px;
  color: #002bb5;
  font-weight: normal;
  text-align: left;
  line-height: 1.5;
}
section .box .cards .card .title span {
  font-size: 36px;
}
section .box .cards .card .img img {
  width: 100%;
  max-width: 320px;
}
@media (min-width: 1025px) {
  section .box .cards .card .img img {
    max-width: -moz-max-content;
    max-width: max-content;
    max-width: 500px;
  }
}
section.reason {
  position: relative;
  background-image: linear-gradient(90deg, #2f61ff, #0000ff);
}
@media (min-width: 1025px) {
  section.reason {
    background-image: linear-gradient(45deg, #2f61ff, #0000ff);
  }
}
section.reason h2.title {
  color: #fff;
}
section.reason p.desc {
  color: #fff;
}
section.reason .strengths-cards {
  display: flex;
  flex-direction: column;
  gap: 0;
  margin-bottom: 40px;
  max-width: 1000px;
  margin: 0 auto 40px;
}
@media (min-width: 768px) {
  section.reason .strengths-cards {
    flex-direction: row;
    gap: 20px;
  }
}
section.reason .strengths-cards .card-item {
  flex: 1;
  border-radius: 12px;
  padding: 24px 16px;
  text-align: center;
  cursor: pointer;
  transition: all 0.3s ease;
  position: relative;
}
@media (min-width: 768px) {
  section.reason .strengths-cards .card-item {
    padding: 32px 20px;
  }
  section.reason .strengths-cards .card-item:hover {
    transform: translateY(-4px);
  }
  section.reason .strengths-cards .card-item::after {
    content: "";
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 0;
    border-left: 18px solid transparent;
    border-right: 18px solid transparent;
    border-top: 18px solid #5adfff;
    opacity: 0;
    transition: opacity 0.3s ease;
  }
}
section.reason .strengths-cards .card-item.active::after {
  opacity: 1;
}
section.reason .strengths-cards .card-item .card-icon {
  width: 60%;
  margin: 0 auto 16px;
}
@media (min-width: 768px) {
  section.reason .strengths-cards .card-item .card-icon {
    margin-bottom: 20px;
  }
}
section.reason .strengths-cards .card-item .card-icon img {
  width: 100%;
  height: 100%;
  -o-object-fit: contain;
     object-fit: contain;
}
section.reason .strengths-cards .card-item .card-text {
  color: #fff;
  font-size: 24px;
  font-weight: 600;
  margin-bottom: 12px;
}
@media (min-width: 768px) {
  section.reason .strengths-cards .card-item .card-text {
    font-size: 24px;
    margin-bottom: 16px;
  }
}
section.reason .strengths-cards .card-item .card-desc {
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.5;
  font-size: 18px;
}
@media (min-width: 768px) {
  section.reason .strengths-cards .card-item .card-desc {
    font-size: 16px;
  }
}
section.reason .strengths-content-box {
  position: relative;
  background: #fff;
  border-radius: 12px;
  padding: 0;
  scroll-margin-top: 60px;
}
@media (min-width: 768px) {
  section.reason .strengths-content-box {
    scroll-margin-top: 90px;
    padding: 40px;
    overflow: hidden;
  }
}
section.reason .strengths-content-box .strengths-tabs-mobile {
  position: sticky;
  top: 50px;
  z-index: 10;
  margin: 0 auto 0;
  padding-bottom: 0;
  display: flex;
  width: 100%;
  background: #fff;
  border-radius: 12px 12px 0 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.reason .strengths-content-box .strengths-tabs-mobile {
    display: none;
  }
}
section.reason .strengths-content-box .strengths-tabs-mobile .tab-btn {
  position: relative;
  flex: 1;
  padding: 8px 16px;
  background: #aaaaaa;
  font-size: 22px;
  color: #FFF;
  cursor: pointer;
  transition: all 0.3s ease;
  font-weight: 700;
}
section.reason .strengths-content-box .strengths-tabs-mobile .tab-btn.active {
  color: #0000ff;
  background: #fff;
}
section.reason .strengths-content-box .strengths-tabs-mobile .tab-btn.active::after {
  position: absolute;
  bottom: 0;
  left: 20%;
  content: "";
  display: block;
  width: 60%;
  height: 2px;
  background: #0000ff;
}
section.reason .strengths-content-box .strengths {
  padding: 40px 20px;
}
@media (min-width: 768px) {
  section.reason .strengths-content-box .strengths {
    padding: 0;
  }
}
section.reason .strengths-content-box .content-display .content-title {
  color: #001854;
  font-size: 18px;
  margin-bottom: 30px;
  text-align: center;
}
@media (min-width: 768px) {
  section.reason .strengths-content-box .content-display .content-title {
    font-size: 18px;
    margin-bottom: 50px;
  }
}
section.reason .strengths-content-box .content-display .content-body {
  margin-bottom: 20px;
}
section.reason .strengths-content-box .content-display .content-body img {
  margin: 0 auto;
  width: 100%;
  max-width: 800px;
  height: auto;
  border-radius: 8px;
}
section.reason .strengths {
  position: relative;
}
section.reason .strengths:before, section.reason .strengths:after {
  content: "";
  display: block;
  width: 100%;
  position: absolute;
  z-index: 1;
  left: 0;
  right: 0;
}
@media (min-width: 768px) {
  section.reason .strengths {
    content: none;
  }
}
section.reason .strengths .strengthsTab {
  width: 100%;
  display: flex;
  flex-direction: column;
}
@media (min-width: 768px) {
  section.reason .strengths .strengthsTab {
    flex-direction: row;
    gap: 40px;
  }
}
section.reason .strengths .strengthsTab-list {
  width: 100%;
  display: flex;
  flex-direction: row;
  padding-bottom: 10px;
}
@media (min-width: 768px) {
  section.reason .strengths .strengthsTab-list {
    width: 120px;
    flex: 0 0 auto;
    flex-direction: column;
    padding: 40px 0 30px 30px;
  }
}
section.reason .strengths .tab-container {
  width: 100%;
  min-height: 300px;
  position: relative;
}
@media (min-width: 768px) {
  section.reason .strengths .tab-container {
    padding: 40px 20px 30px 0;
  }
}
section.reason .strengths .tab-container::before {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  bottom: 0;
  left: 0;
  position: absolute;
  background: #f9e38e;
  clip-path: polygon(0 0, 100% 100%, 0 100%);
}
@media (min-width: 768px) {
  section.reason .strengths .tab-container::before {
    width: 150px;
    height: 150px;
    bottom: 29px;
  }
}
section.reason .strengths .tab-container::after {
  content: "";
  display: block;
  width: 40px;
  height: 40px;
  top: 0;
  right: 0;
  position: absolute;
  background: #f9e38e;
  clip-path: polygon(0 0, 100% 0, 100% 100%);
}
@media (min-width: 768px) {
  section.reason .strengths .tab-container::after {
    width: 150px;
    height: 150px;
    top: 30px;
    right: 19px;
  }
}
section.reason .strengths .strengths-content {
  display: flex;
  flex-direction: column;
  background-color: #fff;
  height: 100%;
  padding: 38px 20px;
}
@media (min-width: 768px) {
  section.reason .strengths .strengths-content {
    padding: 80px 0;
  }
}
section.reason .strengths .strengths-content .strengths-title {
  color: #af671b;
  font-weight: 600;
  font-size: 20px;
  line-height: 1.25;
}
@media (min-width: 768px) {
  section.reason .strengths .strengths-content .strengths-title {
    font-size: 32px;
  }
}
section.reason .strengths .strengths-content .warning-text {
  text-align: left;
  color: #233559;
  font-size: 14px;
}
@media (min-width: 768px) {
  section.reason .strengths .strengths-content .warning-text {
    text-align: center;
    padding: 0 60px;
  }
}
section.reason .strengths .strengths-content .strengths-img {
  padding: 20px 0;
}
@media (min-width: 768px) {
  section.reason .strengths .strengths-content .strengths-img {
    padding: 0;
  }
}
section.reason .strengths .strengths-tab-item {
  width: 33.3%;
  font-size: 16px;
  font-weight: 700;
  color: #5b3600;
  padding-bottom: 20px;
  cursor: pointer;
  position: relative;
}
@media (min-width: 768px) {
  section.reason .strengths .strengths-tab-item {
    width: 100%;
    height: 33.3%;
    flex: 0 0 auto;
    padding-bottom: 0px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
  }
}
section.reason .strengths .strengths-tab-item:after {
  content: "";
  display: block;
  width: 12px;
  height: 20px;
  background: url("../img/triangle.png") no-repeat center/contain;
  position: absolute;
  bottom: -15px;
  left: 50%;
  transform: translateX(-50%) rotate(90deg);
  transition: all 0.5s ease;
  opacity: 0;
}
@media (min-width: 768px) {
  section.reason .strengths .strengths-tab-item:after {
    width: 16px;
    height: 30px;
    left: auto;
    bottom: auto;
    top: 50%;
    right: -16px;
    transform: translateY(-50%) rotate(0deg);
  }
}
section.reason .strengths .strengths-tab-item.active {
  color: #fff;
}
section.reason .strengths .strengths-tab-item.active:after {
  opacity: 1;
  bottom: 0;
}
@media (min-width: 768px) {
  section.reason .strengths .strengths-tab-item.active:after {
    bottom: auto;
    transform: translateY(-50%) rotate(0deg) translateX(100%);
  }
}
section.reason .info.strengths-info {
  color: #5adfff;
}
section.reason .info.strengths-info span {
  color: #FFF;
}
section.trends {
  background: linear-gradient(to bottom, #3569a2 0%, #d6efff 100%);
  background-size: cover;
}
section.trends h2.title {
  color: #fff;
}
section.trends .content p {
  text-align: center;
  margin-bottom: 40px;
  font-size: 18px;
  color: #fff;
}
@media (min-width: 1025px) {
  section.trends .content p {
    margin-bottom: 80px;
  }
}
section.trends .content .charts {
  display: flex;
  gap: 20px;
  margin-bottom: 40px;
  flex-direction: column;
}
@media (min-width: 1025px) {
  section.trends .content .charts {
    gap: 40px;
  }
}
section.trends .content .charts .chart-item {
  flex: 1;
  background: #fff;
  border-radius: 16px;
  overflow: hidden;
  position: relative;
  padding: 0 0 20px 0;
}
@media (min-width: 768px) {
  section.trends .content .charts .chart-item {
    padding: 20px;
  }
}
section.trends .content .charts .chart-item .chart-label {
  position: relative;
  background: #3c7dff;
  color: #fff;
  padding: 18px 20px;
  border-radius: 0;
  font-size: 18px;
  z-index: 1;
  white-space: nowrap;
}
@media (min-width: 768px) {
  section.trends .content .charts .chart-item .chart-label {
    position: absolute;
    top: 0;
    left: 0;
    padding: 20px 24px;
    border-radius: 8px 0 8px 0;
  }
}
section.trends .content .charts .chart-item img {
  margin: 20px auto 0;
  width: 90%;
  border-radius: 0 0 16px 16px;
}
@media (min-width: 768px) {
  section.trends .content .charts .chart-item img {
    margin: 0 auto;
    width: 100%;
  }
}
section.trends .notice {
  color: rgba(255, 255, 255, 0.75);
}
section.attack {
  background: #fff;
}
section.attack h2.title {
  color: #002bb5;
}
section.attack .content p {
  margin-bottom: 40px;
  font-size: 18px;
}
@media (min-width: 1280px) {
  section.attack .content p {
    margin-bottom: 20px;
  }
}
section.feature {
  padding-top: 0;
  margin-top: 0;
  background: #d6efff;
}
section.feature .box {
  margin-top: 0;
}
@media (min-width: 1025px) {
  section.feature .box {
    margin-top: 120px;
  }
}
section.feature .feature-tabs {
  scroll-margin-top: 50px;
}
@media (min-width: 1025px) {
  section.feature .feature-tabs {
    scroll-margin-top: 70px;
  }
}
section.feature .feature-tabs .tabs-header {
  position: sticky;
  top: 48px;
  z-index: 10;
  margin: 0 auto 48px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  width: 100%;
}
@media (min-width: 1025px) {
  section.feature .feature-tabs .tabs-header {
    top: 72px;
    max-width: 900px;
    justify-content: center;
    gap: 0;
  }
}
section.feature .feature-tabs .tabs-header .tab-btn {
  font-family: "Noto Serif TC", serif;
  flex: 0 1 auto;
  border: none;
  background: #d0d0d0;
  color: #666666;
  font-size: 20px;
  padding: 6px;
  font-weight: 600;
  cursor: pointer;
  transition: background 0.3s ease;
  -webkit-mask-image: url("../img/tab.min.svg");
  -webkit-mask-size: 100% 100%;
  -webkit-mask-repeat: no-repeat;
  mask-image: url("../img/tab.min.svg");
  mask-size: 100% 100%;
  mask-repeat: no-repeat;
  position: relative;
  white-space: nowrap;
  width: 33.3%;
  line-height: 1.3;
}
@media (min-width: 480px) {
  section.feature .feature-tabs .tabs-header .tab-btn {
    padding: 1vw;
    font-size: 6vw;
    line-height: 1.3;
  }
}
@media (min-width: 1025px) {
  section.feature .feature-tabs .tabs-header .tab-btn {
    padding: 0;
    line-height: 2;
    width: 300px;
    font-size: 48px;
  }
}
section.feature .feature-tabs .tabs-header .tab-btn:hover {
  background: #b8b8b8;
}
section.feature .feature-tabs .tabs-header .tab-btn.active {
  background: #ff4800;
  color: #fff;
}
section.feature .feature-tabs .tabs-content .tab-pane {
  animation: fadeIn 0.3s ease;
}
section.feature .feature-tabs .three-box {
  margin-bottom: 3rem;
}
section.feature .feature-tabs .three-box > h3 {
  margin-bottom: 30px;
}
section.feature .feature-tabs .three-box > p {
  font-size: 18px;
  color: #001854;
  margin-bottom: 20px;
}
section.feature .feature-tabs .three-box .card-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-bottom: 80px;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .three-box .card-box {
    flex-direction: row;
    gap: 40px;
    align-items: stretch;
  }
}
section.feature .feature-tabs .three-box .card-box .card {
  flex: 1;
  padding: 0;
}
section.feature .feature-tabs .three-box .card-box .card .deco {
  display: flex;
  font-style: italic;
  align-items: baseline;
  gap: 0;
  font-size: 30px;
  font-weight: 800;
  margin-bottom: 16px;
  font-family: "Noto Serif TC", serif;
  line-height: 1;
  color: #76aaff;
}
section.feature .feature-tabs .three-box .card-box .card .deco span {
  position: relative;
  top: 18px;
  font-size: 60px;
  line-height: 1;
  color: #3c7dff;
  margin-right: 8px;
}
section.feature .feature-tabs .three-box .card-box .card ul {
  list-style: none;
  margin: 0 0 0 2rem;
  list-style: disc;
  padding-inline-start: 40px;
}
section.feature .feature-tabs .three-box .card-box .card ul li {
  font-size: 18px;
  color: #001854;
  padding: 0;
  position: relative;
  line-height: 1.6;
  text-align: left;
}
section.feature .feature-tabs .three-box .card-box .card ul li:last-child {
  border-bottom: none;
}
section.feature .feature-tabs .focus-box {
  margin-bottom: 3rem;
  border: 1px solid #002bb4;
  border-radius: 20px;
}
section.feature .feature-tabs .focus-box > h3 {
  position: relative;
  top: -1.25rem;
  margin: 0 auto 0;
  width: -moz-fit-content;
  width: fit-content;
  padding: 0 2rem;
  background: #d6efff;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .focus-box > h3 {
    margin: 0 auto 30px;
    padding: 0 2rem;
  }
}
section.feature .feature-tabs .focus-box .card-box {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 0 20px 30px;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .focus-box .card-box {
    flex-direction: row;
    gap: 20px;
    align-items: stretch;
    padding: 0 70px 40px 70px;
  }
}
section.feature .feature-tabs .focus-box .card-box .card {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 0;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .focus-box .card-box .card {
    flex-direction: row;
  }
}
section.feature .feature-tabs .focus-box .card-box .card .img {
  flex: 2;
  padding: 10px;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .focus-box .card-box .card .img {
    width: 88px;
    padding: 0;
  }
}
section.feature .feature-tabs .focus-box .card-box .card .img img {
  width: 100%;
}
section.feature .feature-tabs .focus-box .card-box .card .text {
  padding: 14px 0 14px 16px;
  flex: 5;
  text-align: left;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .focus-box .card-box .card .text {
    padding: 14px 16px;
  }
}
section.feature .feature-tabs .focus-box .card-box .card .text h4 {
  font-size: 18px;
  font-weight: 700;
  color: #001854;
  margin-bottom: 6px;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .focus-box .card-box .card .text h4 {
    font-size: 16px;
  }
}
section.feature .feature-tabs .focus-box .card-box .card .text p {
  font-size: 18px;
  color: #001854;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .focus-box .card-box .card .text p {
    font-size: 16px;
  }
}
section.feature .feature-tabs .focus-box > .info {
  font-size: 12px;
  color: #888;
  margin-top: 1rem;
  line-height: 1.6;
}
section.feature .feature-tabs .chance-box {
  margin-top: 80px;
  margin-bottom: 3rem;
}
section.feature .feature-tabs .chance-box > h3 {
  margin-bottom: 30px;
}
section.feature .feature-tabs .chance-box > p {
  font-size: 18px;
  color: #001854;
  margin-bottom: 40px;
}
section.feature .feature-tabs .chance-box .card-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .chance-box .card-box {
    flex-direction: row;
    gap: 80px;
    align-items: stretch;
  }
}
section.feature .feature-tabs .chance-box .card-box .card {
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
section.feature .feature-tabs .chance-box .card-box .card .title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}
section.feature .feature-tabs .chance-box .card-box .card .title-wrap .deco {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0000ff;
  color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  font-size: 18px;
  flex-shrink: 0;
}
section.feature .feature-tabs .chance-box .card-box .card .title-wrap .deco div {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
}
section.feature .feature-tabs .chance-box .card-box .card .title-wrap .title {
  font-size: 18px;
  color: #0000ff;
  line-height: 1.5;
  padding: 10px 0 10px 2.5rem;
  position: relative;
  left: -2.5rem;
  background-image: linear-gradient(to right, rgba(60, 125, 255, 0.5) 0%, rgba(60, 125, 255, 0) 100%);
  font-weight: 700;
  text-align: left;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .chance-box .card-box .card .title-wrap .title {
    line-height: 3;
    padding-left: 2.5rem;
    left: -2.5rem;
    font-size: 18px;
    white-space: nowrap;
  }
}
section.feature .feature-tabs .chance-box .card-box .card .img {
  padding: 0;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .chance-box .card-box .card .img {
    padding: 16px;
  }
}
section.feature .feature-tabs .chance-box .card-box .card .img img {
  width: 100%;
  display: block;
}
section.feature .feature-tabs .chance-box .card-box .card .good-wrap {
  margin: 20px 0 0;
  padding: 4px 0;
  background-color: #d6efff;
  border-top: 1px solid #002bb4;
  border-bottom: 1px solid #002bb4;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .chance-box .card-box .card .good-wrap {
    margin: 20px 0;
    padding: 8px 0;
    background-color: #d6efff;
    border-top: 1px solid #002bb4;
    border-bottom: 1px solid #002bb4;
  }
}
section.feature .feature-tabs .chance-box .card-box .card .good {
  padding: 10px;
  overflow: hidden;
  display: flex;
  align-items: stretch;
  background: white;
}
section.feature .feature-tabs .chance-box .card-box .card .good > p {
  flex: 2;
  font-size: 16px;
  font-weight: 700;
  color: #001854;
  text-align: center;
  display: flex;
  justify-content: center;
  align-items: center;
  border-right: 1px solid #002bb4;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .chance-box .card-box .card .good > p {
    flex: 3;
    padding: 0;
  }
}
section.feature .feature-tabs .chance-box .card-box .card .good ul {
  flex: 7;
  list-style: disc;
  padding-left: 2rem;
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .chance-box .card-box .card .good ul {
    padding-left: 3rem;
  }
}
section.feature .feature-tabs .chance-box .card-box .card .good ul li {
  font-size: 16px;
  color: #001854;
  position: relative;
  line-height: 1.6;
  text-align: left;
}
section.feature .feature-tabs .income-box > h3 {
  margin-bottom: 30px;
  font-size: 20px;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-box > h3 {
    font-size: 24px;
  }
}
section.feature .feature-tabs .income-box .card-box {
  display: flex;
  flex-direction: column;
  gap: 0;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-box .card-box {
    flex-direction: row;
    gap: 60px;
    align-items: stretch;
  }
}
section.feature .feature-tabs .income-box .card-box .card {
  margin-top: 40px;
  flex: 1;
  border-radius: 10px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
}
section.feature .feature-tabs .income-box .card-box .card .title-wrap {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 0;
}
section.feature .feature-tabs .income-box .card-box .card .title-wrap .deco {
  z-index: 2;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #0000ff;
  color: #fff;
  border-radius: 50%;
  width: 80px;
  height: 80px;
  font-size: 18px;
  flex-shrink: 0;
}
section.feature .feature-tabs .income-box .card-box .card .title-wrap .deco div {
  font-size: 28px;
  font-weight: 700;
  line-height: 1;
  font-style: italic;
}
section.feature .feature-tabs .income-box .card-box .card .title-wrap .title {
  font-size: 18px;
  font-weight: 700;
  color: #0000ff;
  line-height: 3;
  padding-left: 2.5rem;
  position: relative;
  left: -2.5rem;
  width: 100%;
  text-align: left;
  background-image: linear-gradient(to right, rgba(60, 125, 255, 0.5) 0%, rgba(60, 125, 255, 0) 100%);
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-box .card-box .card .title-wrap .title {
    font-size: 18px;
    white-space: nowrap;
  }
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-box .card-box .card .img {
    padding: 16px;
  }
}
section.feature .feature-tabs .income-box .card-box .card .img img {
  width: 100%;
}
section.feature .feature-tabs .income-box .card-box .card .good-wrap {
  margin: 20px 0 0;
  padding: 8px 0;
  background-color: #d6efff;
  border-top: 1px solid #002bb4;
  border-bottom: 1px solid #002bb4;
}
section.feature .feature-tabs .income-box .card-box .card .good-wrap .good {
  padding: 20px;
  overflow: hidden;
  background: white;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-box .card-box .card .good-wrap .good {
    min-height: 130px;
  }
}
section.feature .feature-tabs .income-box .card-box .card .good-wrap .good ul {
  margin-bottom: 8px;
}
section.feature .feature-tabs .income-box .card-box .card .good-wrap .good ul li {
  font-size: 18px;
  color: #2f4363;
  padding: 4px 0 4px 24px;
  position: relative;
  text-align: left;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-box .card-box .card .good-wrap .good ul li {
    font-size: 16px;
  }
}
section.feature .feature-tabs .income-box .card-box .card .good-wrap .good ul li::before {
  content: "■";
  position: absolute;
  left: 0;
  top: 6px;
  font-size: 18px;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-box .card-box .card .good-wrap .good ul li::before {
    top: 4px;
    font-size: 16px;
  }
}
section.feature .feature-tabs .income-box .card-box .card .good-wrap .good ul li:first-child::before {
  color: #002bb5;
}
section.feature .feature-tabs .income-box .card-box .card .good-wrap .good ul li:last-child::before {
  color: #99c0e8;
}
section.feature .feature-tabs .income-box .card-box .card .good-wrap .good > .info {
  font-size: 16px;
  color: #f46300;
  font-weight: bold;
  margin-top: 4px;
  text-align: center;
}
section.feature .feature-tabs .income-box .flex-box {
  display: flex;
  flex-direction: column;
  gap: 40px;
  margin: 40px auto;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-box .flex-box {
    flex-direction: row;
    align-items: flex-start;
    gap: 40px;
    margin: 80px auto;
  }
}
section.feature .feature-tabs .income-box .flex-box .flex-item:first-child {
  flex: 4;
}
section.feature .feature-tabs .income-box .flex-box .flex-item:nth-child(2) {
  flex: 8;
}
section.feature .feature-tabs .income-box .flex-box .flex-item > p {
  font-size: 18px;
  color: #001854;
  margin-bottom: 40px;
  text-align: left;
}
section.feature .feature-tabs .income-box .flex-box .flex-item > img {
  width: 100%;
  display: block;
}
section.feature .feature-tabs .income-table {
  width: 100%;
  font-size: 18px;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-table {
    margin-top: 60px;
    font-size: 18px;
  }
}
section.feature .feature-tabs .income-table .it-header {
  display: none;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-table .it-header {
    display: flex;
    background: #0000ff;
    color: #fff;
  }
  section.feature .feature-tabs .income-table .it-header .it-cell {
    flex: 1;
    text-align: center;
    color: #fff;
    padding: 12px 0;
  }
  section.feature .feature-tabs .income-table .it-header .it-cell.it-name {
    flex: 1.8;
    background: #d6efff;
  }
}
section.feature .feature-tabs .income-table .it-row {
  margin-bottom: 0;
  border-radius: 0;
  overflow: hidden;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-table .it-row {
    display: flex;
    margin-bottom: 0;
    border-radius: 0;
    border-bottom: 1px solid #0000ff;
  }
  section.feature .feature-tabs .income-table .it-row:last-of-type .it-cell.it-name {
    border-bottom: none;
  }
}
section.feature .feature-tabs .income-table .it-row .it-cell {
  text-align: center;
  color: #001854;
  font-size: 18px;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-table .it-row .it-cell {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px 8px;
    border-right: 1px solid #c0d4ff;
  }
  section.feature .feature-tabs .income-table .it-row .it-cell:last-child {
    border-right: none;
  }
}
section.feature .feature-tabs .income-table .it-row .it-cell.it-name {
  background: #0000ff;
  color: #fff;
  text-align: center;
  padding: 12px 16px;
  display: block;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-table .it-row .it-cell.it-name {
    flex: 1.8;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid white;
  }
}
section.feature .feature-tabs .income-table .it-row .it-cell.it-name small {
  display: block;
  font-size: 16px;
  color: #ffe066;
  font-weight: normal;
  margin-top: 2px;
}
section.feature .feature-tabs .income-table .it-row .it-cell:not(.it-name) {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 10px 16px;
  border-bottom: 1px solid #0000ff;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-table .it-row .it-cell:not(.it-name) {
    background: #f2f7ff;
    border-bottom: 1px solid #ddeaff;
  }
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-table .it-row .it-cell:not(.it-name):last-child {
    border-bottom: none;
  }
}
section.feature .feature-tabs .income-table .it-row .it-cell:not(.it-name)::before {
  content: attr(data-label);
  color: #001854;
  font-size: 18px;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-table .it-row .it-cell:not(.it-name) {
    border-bottom: none;
    background: transparent;
    justify-content: center;
    padding: 12px 8px;
  }
  section.feature .feature-tabs .income-table .it-row .it-cell:not(.it-name)::before {
    display: none;
  }
}
section.feature .feature-tabs .income-table .it-note {
  line-height: 1.5;
  font-size: 16px;
  color: #001854;
  text-align: left;
  margin-top: 18px;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .income-table .it-note {
    text-align: right;
  }
}
section.feature .feature-tabs .income-table .it-note span {
  color: #0000ff;
  font-weight: bold;
}
section.feature .feature-tabs .quality-box > h3 {
  margin-bottom: 30px;
}
section.feature .feature-tabs .quality-box > p {
  font-size: 18px;
  color: #001854;
  margin-bottom: 60px;
}
section.feature .feature-tabs .quality-box .card-box {
  display: flex;
  flex-direction: column;
  gap: 20px;
}
@media (min-width: 768px) {
  section.feature .feature-tabs .quality-box .card-box {
    flex-direction: row;
    gap: 80px;
    align-items: stretch;
  }
}
section.feature .feature-tabs .quality-box .card-box .card {
  flex: 1;
  display: flex;
  flex-direction: column;
}
section.feature .feature-tabs .quality-box .card-box .card .title-wrap {
  margin-bottom: 10px;
  font-size: 18px;
  font-weight: 700;
  color: #0000ff;
  line-height: 1.5;
  padding: 10px 1rem;
  position: relative;
  width: 100%;
  text-align: center;
  background-image: linear-gradient(to right, rgba(60, 125, 255, 0.5) 0%, rgba(60, 125, 255, 0) 100%);
}
@media (min-width: 768px) {
  section.feature .feature-tabs .quality-box .card-box .card .title-wrap {
    margin-bottom: 30px;
    padding: 0 0 0 2.5rem;
    line-height: 3;
    font-size: 18px;
    white-space: nowrap;
    text-align: left;
  }
}
section.feature .feature-tabs .quality-box .card-box .card .img-wrap {
  padding: 16px;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}
section.feature .feature-tabs .quality-box .card-box .card .img-wrap img {
  width: 100%;
}
section.attention {
  position: relative;
  background-image: linear-gradient(90deg, #b4ddfb, #86caf6);
  background-position: center;
  width: 100%;
  overflow: hidden;
}
section.attention .bg {
  z-index: 0;
  position: absolute;
  top: 13%;
  left: 0;
  width: 100%;
  margin: 0 auto;
}
@media (min-width: 768px) {
  section.attention .bg {
    position: absolute;
    top: 27%;
    left: 0;
    width: 100%;
  }
}
section.attention .bg img {
  position: relative;
  width: 200%;
  display: block;
  left: -50%;
}
@media (min-width: 768px) {
  section.attention .bg img {
    top: 0;
    left: 0;
    width: 100%;
  }
}
section.attention h2.title {
  color: #002bb5;
}
section.attention .img-box {
  position: relative;
  z-index: 2;
  margin: 0 auto 40px;
}
@media (min-width: 768px) {
  section.attention .img-box {
    margin: 0 auto 80px;
  }
}
@keyframes fadeIn {
  from {
    opacity: 0;
  }
  to {
    opacity: 1;
  }
}
section.section-info {
  position: relative;
  background: #fff;
}
section.section-info .title {
  color: #001854;
}
section.section-info h2 {
  color: #002bb5;
}
section.section-info h2 span {
  display: inline;
  font-size: 24px;
}
@media screen and (max-width: 575px) {
  section.section-info h2 span {
    font-size: 20px;
  }
}
section.section-info .flex {
  display: flex;
}
section.section-info .fund-file {
  padding: 0;
  text-align: center;
  margin: 0 auto 20px;
}
@media (min-width: 768px) {
  section.section-info .fund-file {
    width: 94%;
    margin: 0 auto 40px;
  }
}
section.section-info .fund-file .content {
  margin-top: 0;
  padding-top: 0;
}
section.section-info .fund-file .content h2 {
  margin-top: 0;
}
section.section-info .fund-file .detail {
  display: flex;
  width: 100%;
}
@media screen and (max-width: 992px) {
  section.section-info .fund-file .detail {
    display: block;
  }
}
section.section-info .fund-file .detail .list.list-top {
  width: 100%;
  background: #e1edff;
  color: #001854;
  padding: 20px 0;
  justify-content: center;
  align-items: center;
  gap: 8px;
}
@media (min-width: 768px) {
  section.section-info .fund-file .detail .list.list-top {
    gap: 40px;
    display: flex;
  }
}
section.section-info .fund-file .detail .list.list-top .flex {
  align-items: center;
  border-bottom: none;
  display: block;
  text-align: center;
}
@media (min-width: 768px) {
  section.section-info .fund-file .detail .list.list-top .flex {
    margin-bottom: 0;
    gap: 50px;
    display: flex;
  }
}
section.section-info .fund-file .detail .list.list-top span {
  display: none;
  background: transparent;
}
section.section-info .fund-file .detail .list.list-top span.item {
  color: #233559;
  background: transparent;
  display: inline-block;
  margin-bottom: 8px;
  display: block;
}
@media (min-width: 768px) {
  section.section-info .fund-file .detail .list.list-top span.item {
    display: flex;
    align-items: center;
    margin-bottom: 0;
  }
}
section.section-info .fund-file .detail .list.list-top span i {
  display: none;
}
@media (min-width: 768px) {
  section.section-info .fund-file .detail .list.list-top span i {
    display: inline-flex;
    margin-left: 20px;
    width: 60px;
    height: 1px;
    background-color: #1d3dff;
  }
}
section.section-info .fund-file .detail .list.list-top .links {
  display: inline-block;
}
section.section-info .fund-file .detail .list.list-top .links a {
  color: #233559;
  padding: 4px 8px;
  display: inline-block;
}
@media (min-width: 768px) {
  section.section-info .fund-file .detail .list.list-top .links a {
    padding: 4px 12px;
  }
}
section.section-info .fund-file .detail .list.list-top .links a img {
  width: 12px;
  margin-right: 4px;
}
@media (min-width: 768px) {
  section.section-info .fund-file .detail .list.list-top .links a img {
    width: 18px;
    margin-right: 12px;
  }
}
section.section-info .fund-file .detail ol {
  list-style: decimal;
  margin-left: 1rem;
}
section.section-info .fund-file .detail .list {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
}
section.section-info .fund-file .detail .list p {
  display: flex;
  align-items: center;
  margin-bottom: 1px;
  color: #fff;
  font-size: 16px;
  border-bottom: 1px solid #0055dd;
  padding: 0;
  width: 100%;
}
@media (min-width: 1025px) {
  section.section-info .fund-file .detail .list p {
    width: 50%;
  }
}
section.section-info .fund-file .detail .list p span.item {
  height: 100%;
  background: #1d3dff;
  display: flex;
  align-items: center;
  justify-content: center;
  flex: 1;
  padding: 0 8px;
}
@media (min-width: 640px) {
  section.section-info .fund-file .detail .list p span.item {
    min-width: 200px;
  }
}
section.section-info .fund-file .detail .list p span.val {
  width: 100%;
  text-align: left;
  vertical-align: middle;
  padding: 8px 16px;
  flex: 2;
  color: #233559;
}
@media (min-width: 640px) {
  section.section-info .fund-file .detail .list p span.val {
    padding: 8px;
    padding: 16px 24px;
  }
}
section.section-info .fund-file .fundInfo {
  align-items: stretch;
  gap: 0;
}
@media screen and (max-width: 991px) {
  section.section-info .fund-file .fundInfo {
    flex-direction: column;
  }
}
@media (min-width: 768px) {
  section.section-info .fund-file .fundInfo {
    gap: 40px;
  }
}
section.section-info .fund-file .fundInfo .proportion {
  position: relative;
  flex: 1;
  display: flex;
  justify-content: space-between;
  width: 50%;
  /* p.title {
    font-weight: bold;
    font-size: 18px;
    line-height: 26px;
    color: $blue-dark;
    background: $blue-light;
    padding: 8px 0;
    text-align: center;
    margin: 0 0 12px;
    width: 100%;

    @include md {
      margin: 0 0 50px;
      line-height: 28px;
      font-size: 20px;
    }
  } */
}
@media screen and (max-width: 991px) {
  section.section-info .fund-file .fundInfo .proportion {
    flex-direction: column;
    width: 100%;
  }
}
section.section-info .fund-file .fundInfo .proportion .info-detail {
  margin: 0;
  padding: 10px 0;
  display: flex;
  flex-wrap: wrap;
  flex-direction: column;
  width: 100%;
}
section.section-info .fund-file .fundInfo .proportion .info-detail .title {
  font-weight: bold;
  font-size: 18px;
  line-height: 26px;
  color: #2f4363;
  background: #e1edff;
  padding: 8px 0;
  text-align: center;
  margin: 0 0 12px;
  width: 100%;
}
@media (min-width: 768px) {
  section.section-info .fund-file .fundInfo .proportion .info-detail {
    padding: 0 0 30px;
  }
}
@media screen and (max-width: 575px) {
  section.section-info .fund-file .fundInfo .proportion .info-detail {
    flex-direction: column;
    margin: 0;
  }
}
section.section-info .fund-file .fundInfo .proportion .info-detail .img {
  margin: 0 auto;
  margin-top: 30px;
}
@media screen and (max-width: 575px) {
  section.section-info .fund-file .fundInfo .proportion .info-detail .img {
    margin: 20px 0;
  }
}
section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list {
  width: 100%;
  flex: 2;
}
@media (min-width: 768px) {
  section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list {
    margin: 0 auto;
    width: 80%;
  }
}
section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list .data {
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  padding: 6px;
  border-bottom: 1px solid #cccccc;
  font-size: 18px;
}
@media (min-width: 768px) {
  section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list .data {
    padding: 8px;
    font-size: 18px;
    border-bottom: none;
  }
}
section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list .data .stock {
  flex: 1;
  justify-content: center;
  align-items: center;
  padding: 0;
  width: 50%;
  text-align: left;
}
@media screen and (max-width: 575px) {
  section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list .data .stock {
    flex-direction: column;
  }
}
section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list .data .stock span {
  flex: 1;
}
section.section-info .fund-file .fundInfo .proportion .info-detail .chart-list .data > span {
  flex: 1;
  text-align: right;
}
section.warn {
  padding: 50px 0;
  background: #dfedfb;
  color: #0e2a55;
  line-height: 22px;
  text-align: left;
}
@media screen and (max-width: 600px) {
  section.warn {
    padding: 50px 0;
    line-height: 20px;
  }
}
section.warn .info {
  padding: 20px 0;
  color: inherit;
  margin-top: 0;
}
@media screen and (max-width: 600px) {
  section.warn .info {
    padding: 5px 0;
    text-align: left;
    letter-spacing: 0.01px;
  }
}
section.warn .content {
  text-align: justify;
  padding: 0;
  font-weight: bold;
  margin: 0;
  width: 100%;
}
section.warn .content span {
  color: #0953ad;
}
section.warn .content .red {
  color: #a3001b;
}
section.warn .end {
  padding-top: 40px;
  line-height: 28px;
}
@media screen and (max-width: 992px) {
  section.warn .end {
    padding-top: 10px;
    line-height: 22px;
  }
}
section.footer-banner {
  margin-bottom: 80px;
}
@media screen and (max-width: 575px) {
  section.footer-banner {
    margin-bottom: 40px;
  }
}
section.footer-banner .footer-wrp {
  display: flex;
  margin: 80px auto 40px;
  width: 900px;
  gap: 30px;
  color: #000;
  line-height: 1.5;
}
@media screen and (max-width: 992px) {
  section.footer-banner .footer-wrp {
    margin: 40px auto;
    width: 96%;
    flex-wrap: wrap;
    gap: 0;
  }
}
section.footer-banner .footer-wrp .footer-img {
  flex: 1;
}
@media screen and (max-width: 992px) {
  section.footer-banner .footer-wrp .footer-img {
    flex: auto;
  }
}
section.footer-banner .footer-wrp .footer-img img {
  width: 100%;
}
section.footer-banner .footer-wrp .footer-desc {
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  align-content: space-around;
  font-size: 20px;
  font-weight: 700;
}
@media screen and (max-width: 992px) {
  section.footer-banner .footer-wrp .footer-desc {
    flex: auto;
    justify-content: center;
    text-align: center;
  }
}
section.footer-banner .footer-wrp .footer-desc small {
  font-size: 14px;
}
section.footer-banner .footer-wrp .footer-desc .footer--btn {
  font-size: 18px;
  margin-top: 5px;
}
@media screen and (max-width: 992px) {
  section.footer-banner .footer-wrp .footer-desc .footer--btn {
    margin-top: 15px;
  }
}
section.footer-banner .footer-wrp .footer-desc .footer--btn a {
  background: #002bb5;
  display: block;
  padding: 5px 30px;
  color: white;
  border-radius: 8px;
  align-self: baseline;
  transition: background 0.2s ease;
}
section.footer-banner .footer-wrp .footer-desc .footer--btn a:hover {
  background: #002bb5;
}
section.footer-banner .ps {
  text-align: center;
  line-height: 1.2;
}

/* ========== Modal Styles ========== */
.modal .info-wrp {
  width: 100%;
}
.modal .info-wrp h3 {
  position: relative;
  text-align: left;
  font-size: 20px;
  line-height: 2;
  margin-bottom: 20px;
}
.modal .info-wrp .data-date {
  width: 80%;
  margin: 0 auto;
  padding: 20px 0;
  text-align: right;
  font-size: 14px;
  color: #3f5576;
}
.modal-chart .chart-wrp {
  width: 80%;
  margin: 0 auto;
  color: #091d3d;
}
@media (min-width: 768px) {
  .modal-chart .chart-wrp {
    display: flex;
    flex-direction: row;
    gap: 40px;
  }
}
.modal-chart .chart-wrp .chart-img {
  width: 60%;
  margin: 0 auto;
  max-width: 300px;
}
@media (min-width: 768px) {
  .modal-chart .chart-wrp .chart-img {
    margin-top: 30px;
    flex: 3;
    width: -moz-fit-content;
    width: fit-content;
    max-width: 300px;
  }
}
.modal-chart .chart-wrp .chart-list {
  padding: 10px 0;
  border-bottom: 1px solid #bfc3c9;
}
@media (min-width: 768px) {
  .modal-chart .chart-wrp .chart-list {
    flex: 4;
  }
}
.modal-chart .chart-wrp .chart-list .row-wrp {
  display: grid;
  grid-template-columns: 1fr;
}
.modal-chart .chart-wrp .chart-list .row {
  padding: 10px 0;
  display: grid;
  grid-template-columns: 20px 2fr 1fr;
  border: none;
  align-items: baseline;
  font-size: 16px;
}
.modal-chart .chart-wrp .chart-list .row .color {
  width: 12px;
  height: 12px;
}
.modal-chart .chart-wrp .chart-list .row .ratio {
  text-align: right;
}

/* ========== Lightbox & Transitions ========== */
.lightbox {
  position: fixed;
  top: 0;
  left: 0;
  width: 100vw;
  height: 100dvh;
  z-index: 10000;
  background: rgba(0, 0, 0, 0.6);
  display: flex;
  align-items: center;
  justify-content: center;
}
@media screen and (min-width: 1024px) and (orientation: landscape) {
  .lightbox {
    padding: 0;
  }
}
.lightbox.show {
  display: flex;
}
.lightbox.sales .lbox {
  padding: 24px 16px;
}
@media (min-width: 1025px) {
  .lightbox.sales .lbox {
    padding: 40px;
  }
}
.lightbox.sales .lbox .all-content {
  height: 100%;
}
.lightbox .lbox {
  background: #fff;
  padding: 0 16px 16px;
  position: relative;
  color: #002bb5;
  height: 60dvh;
}
@media (min-width: 480px) {
  .lightbox .lbox {
    height: auto;
  }
}
@media (min-width: 1025px) {
  .lightbox .lbox {
    padding: 0 40px 40px;
  }
}
.lightbox .lbox .tabs {
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
}
@media (min-width: 1025px) {
  .lightbox .lbox .tabs {
    gap: 300px;
    font-size: 22px;
  }
}
.lightbox .lbox .tabs .tab {
  cursor: pointer;
  color: #999;
  padding: 10px;
  width: 200px;
  position: relative;
}
@media (min-width: 1025px) {
  .lightbox .lbox .tabs .tab {
    padding: 30px;
  }
}
.lightbox .lbox .tabs .tab::after {
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  content: "";
  display: block;
  width: 0;
  height: 3px;
  background: #999;
  transition: all 0.3s ease-in-out;
}
@media screen and (min-width: 1025px) {
  .lightbox .lbox .tabs .tab:hover::after {
    width: 100%;
  }
}
.lightbox .lbox .tabs .tab.active {
  color: #002bb5;
  font-weight: bold;
}
.lightbox .lbox .tabs .tab.active::after {
  background: #002bb5;
  width: 100%;
}
.lightbox .lbox .all-content {
  height: calc(100% - 50px);
  overflow: auto;
  width: 100%;
}
@media (min-width: 480px) {
  .lightbox .lbox .all-content {
    height: auto;
  }
}
.lightbox .lbox .all-content::-webkit-scrollbar {
  width: 2px;
}
.lightbox .lbox .all-content::-webkit-scrollbar-thumb {
  background: #aaa;
}
.lightbox .lbox .all-content .more {
  background: #dfedfb;
  padding: 12px;
  margin: 16px auto;
  text-align: center;
}
@media (min-width: 768px) {
  .lightbox .lbox .all-content .more {
    padding: 24px;
    margin: 40px auto 20px;
  }
}
@media (min-width: 768px) {
  .lightbox .lbox .all-content .more br {
    display: none;
  }
}
@media (min-width: 1025px) {
  .lightbox .lbox .content {
    padding: 0 16px;
  }
}
.lightbox .lbox .content p.title {
  padding: 8px 0;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content p.title {
    margin-bottom: 8px;
    padding: 15px 0;
  }
}
.lightbox .lbox .content .allotInfo {
  margin-bottom: 12px;
  gap: 20px;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content .allotInfo {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    margin-bottom: 50px;
  }
}
.lightbox .lbox .content .allotInfo .date {
  display: flex;
  flex-direction: column;
  gap: 10px;
  word-break: break-all;
}
@media (min-width: 640px) {
  .lightbox .lbox .content .allotInfo .date br {
    display: none;
  }
}
.lightbox .lbox .content .allotInfo .btns {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  gap: 20px;
  margin: 20px auto;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content .allotInfo .btns {
    margin: 0;
  }
}
.lightbox .lbox .content .allotInfo .btns .btn {
  flex: 1;
  max-width: 200px;
}
.lightbox .lbox .content .allotInfo .btns .btn a {
  border-radius: 100px;
  color: #fff;
  width: 100%;
  height: 40px;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  margin: auto;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content .allotInfo .btns .btn a {
    height: 60px;
    width: 200px;
    height: 50px;
  }
}
@media screen and (min-width: 1025px) {
  .lightbox .lbox .content .allotInfo .btns .btn a:not(.disabled) {
    transition: all 0.3s ease-in-out;
  }
  .lightbox .lbox .content .allotInfo .btns .btn a:not(.disabled):hover {
    filter: brightness(0.9);
  }
}
.lightbox .lbox .content .allotInfo .btns .btn a.allot {
  background: #002bb5;
}
.lightbox .lbox .content .allotInfo .btns .btn a.allot.disabled {
  background: #ccc;
  cursor: default;
}
.lightbox .lbox .content .allotInfo .btns .btn a.openacc {
  background: #f46300;
}
.lightbox .lbox .content .allotInfo .btns .btn.acc {
  position: relative;
  padding-bottom: 30px;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content .allotInfo .btns .btn.acc {
    padding-bottom: 0;
  }
}
.lightbox .lbox .content .allotInfo .btns .btn.acc span {
  color: #f46300;
  position: absolute;
  bottom: 0;
  left: 50%;
  transform: translateX(-50%);
  font-size: 12px;
  width: -moz-max-content;
  width: max-content;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content .allotInfo .btns .btn.acc span {
    font-size: 18px;
    bottom: -40px;
  }
}
.lightbox .lbox .content .bank {
  margin-bottom: 20px;
  display: flex;
  flex-wrap: wrap;
}
.lightbox .lbox .content .bank p {
  width: 50%;
  padding: 4px 0;
}
@media (min-width: 1025px) {
  .lightbox .lbox .content .bank p {
    width: 20%;
    padding: 10px 0;
  }
}
.lightbox .lbox .content .bank p span {
  margin-right: 10px;
}

/* ========== Transitions ========== */
.fade-enter-active,
.fade-leave-active {
  transition: opacity 0.5s;
}

.fade-enter,
.fade-leave-to {
  opacity: 0;
}

.small-text {
  font-size: 15px;
}
@media (min-width: 1025px) {
  .small-text {
    font-size: 16px;
  }
}/*# sourceMappingURL=main.css.map */