@charset "UTF-8";
body {
  font-family: "Noto Sans TC", "MS UI Gothic", Arial, Helvetica, sans-serif;
  line-height: 1.75em;
  color: #1c0d5b;
}

section {
  text-align: center;
}

img {
  width: 100%;
}

h2 {
  font-size: 32px;
  font-weight: 700;
  line-height: 1.25em;
}
@media screen and (min-width: 640px) {
  h2 {
    font-size: 48px;
  }
}
h2.title {
  color: #194dcd;
}

h3 {
  font-size: 24px;
  font-weight: 700;
  line-height: 1.25em;
}
@media screen and (min-width: 640px) {
  h3 {
    font-size: 32px;
  }
}

button {
  border: none;
  outline: none;
  background-color: transparent;
}

.txt-lg {
  font-size: 22px;
  line-height: 1.5em;
}
@media screen and (max-width: 640px) {
  .txt-lg {
    font-size: 20px;
  }
}
.txt-md {
  font-size: 16px;
  line-height: 1.5em;
}
@media screen and (min-width: 640px) {
  .txt-md {
    font-size: 18px;
  }
}
.txt-sm {
  font-size: 14px;
  line-height: 1.5em;
}
.txt-tn {
  font-size: 12px;
}
.txt-left {
  text-align: left;
}
.txt-center {
  text-align: center;
}

.fw-bold {
  font-weight: 700;
}

.borderRadius-lg {
  border-radius: 40px;
}
.borderRadius-md {
  border-radius: 20px;
}
.borderRadius-sm {
  border-radius: 10px;
}

.warning-text {
  font-size: 14px;
  line-height: 20px;
  color: #3a56ad;
  text-align: left;
  margin-top: 60px;
}
.warning-text .bold {
  font-weight: 700;
}

.item-mask {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  opacity: 0;
  background-color: rgba(0, 0, 0, 0.2);
  z-index: 9999;
  transition: all 0.5s ease-in-out;
}

/* Header ---------------------------------------- */
header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0 29px;
}
header .menu-btn {
  width: 25px;
  position: absolute;
  top: 8px;
  right: 20px;
  z-index: 11;
}
header .menu-btn span {
  display: block;
  margin: 7px 0;
  width: 100%;
  height: 2px;
  background: #002d94;
  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: block;
  top: 0;
  left: 0;
  width: 100%;
  height: 105vh;
  background: #002d94;
  z-index: 10;
  padding-top: 25vh;
}
@media screen and (min-width: 991px) {
  header .menu-list {
    position: relative;
    display: block !important;
    width: auto;
    height: auto;
    background: transparent;
    padding-top: 0;
  }
}
header .menu-list ul {
  margin-top: 0;
  display: block;
}
@media screen and (min-width: 991px) {
  header .menu-list ul {
    display: flex;
  }
}
header .menu-list ul li {
  text-align: center;
  padding: 10px 30px;
  margin: 10px 0;
  font-weight: 500;
}
@media screen and (min-width: 991px) {
  header .menu-list ul li {
    cursor: pointer;
    padding: 0 30px;
    transition: all 0.3s ease-in-out;
    position: relative;
  }
  header .menu-list ul li:not(:first-child):before {
    content: "";
    position: absolute;
    display: block;
    width: 1px;
    height: 15px;
    background: #002d94;
    top: 50%;
    left: 0;
    transform: translateY(-50%);
  }
}
header .menu-list ul li a {
  color: #ffffff;
}
@media screen and (min-width: 991px) {
  header .menu-list ul li a {
    display: inline-flex;
    color: #002d94;
  }
  header .menu-list ul li a:hover {
    color: #ff7900;
  }
}
header .menu-list .socialmedia {
  position: absolute;
  bottom: 20vh;
  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;
}

.menu-fade-enter-active,
.menu-fade-leave-active {
  transition: opacity 0.5s;
}

.menu-fade-enter,
.menu-fade-leave-to {
  opacity: 0;
}

/* Header ---------------------------------------- */
/* Sticker ---------------------------------------- */
.sticker {
  position: fixed;
  right: 20px;
  top: 50%;
  transform: translateY(-50%);
  z-index: 3000;
}
@media screen and (max-width: 576px) {
  .sticker {
    right: 10px;
  }
}
.sticker img.desktop {
  width: 120px;
}
.sticker img.pad {
  width: 40px;
}

/* Sticker ---------------------------------------- */
/* Container ---------------------------------------- */
.container {
  padding-top: 60px;
  padding-bottom: 60px;
  margin: 0 auto;
}
@media screen and (min-width: 640px) {
  .container {
    padding-top: 120px;
    padding-bottom: 120px;
  }
}
@media screen and (min-width: 1400px) {
  .container {
    max-width: 1224px;
  }
}
.container h2 {
  margin-bottom: 40px;
}
@media screen and (min-width: 640px) {
  .container h2 {
    margin-bottom: 100px;
  }
}

/* Container ---------------------------------------- */
/* KV ---------------------------------------- */
section.kv {
  position: relative;
  width: 100%;
  background: rgb(52, 65, 169);
  background: linear-gradient(180deg, rgb(52, 65, 169) 0%, rgb(62, 87, 208) 20%, rgb(0, 127, 255) 48%, rgb(0, 192, 255) 78%, rgb(146, 217, 255) 93%);
  z-index: 99;
}
@media (max-aspect-ratio: 9/16) {
  section.kv {
    height: 100vh;
  }
}
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
  section.kv {
    height: 168vw;
  }
}
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) and (min-width: 767px) {
  section.kv {
    height: 144vw;
  }
}
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) and (min-width: 1024px) {
  section.kv {
    height: 127vw;
  }
}
@media (min-aspect-ratio: 3/4) and (max-aspect-ratio: 4/3) {
  section.kv {
    height: 121vw;
  }
}
@media (min-aspect-ratio: 4/3) and (max-aspect-ratio: 16/9) {
  section.kv {
    height: 100vh;
  }
}
@media (min-aspect-ratio: 16/9) {
  section.kv {
    height: 46.87vw;
  }
}
section.kv .kv-grass {
  display: block;
  width: 50%;
  padding-bottom: 12.6%;
  position: absolute;
  background: url("../img/img-kv-grass.svg") no-repeat left/cover;
  right: 0;
  bottom: 0;
  transform: translate(0, 33%);
}
@media (max-aspect-ratio: 9/16) {
  section.kv .kv-grass {
    display: none;
  }
}
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
  section.kv .kv-grass {
    display: none;
  }
}
@media (min-aspect-ratio: 3/4) and (max-aspect-ratio: 4/3) {
  section.kv .kv-grass {
    display: none;
  }
}
@media (min-aspect-ratio: 16/9) {
  section.kv .kv-grass {
    width: 40%;
    padding-bottom: 10%;
  }
}

.kv-wrapper,
.kv-sky,
.kv-city {
  width: 100%;
  height: 100%;
  position: absolute;
  top: 0;
  left: 0;
}

@media (max-aspect-ratio: 9/16) {
  .kv-sky {
    background: url("../img/bg-kv-sky-mob.png") no-repeat center/cover;
  }
  .kv-city {
    background: url("../img/bg-kv-ground-mob.png") no-repeat center/cover;
  }
}
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
  .kv-sky {
    background: url("../img/bg-kv-sky-mob.png") no-repeat center/cover;
  }
  .kv-city {
    background: url("../img/bg-kv-ground-mob.png") no-repeat center/cover;
  }
}
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) and (min-width: 767px) {
  .kv-sky {
    background: url("../img/bg-kv-sky-pad.png") no-repeat center/cover;
  }
  .kv-city {
    background: url("../img/bg-kv-ground-pad.png") no-repeat center/cover;
  }
}
@media (min-aspect-ratio: 3/4) and (max-aspect-ratio: 4/3) {
  .kv-sky {
    background: url("../img/bg-kv-sky-pad.png") no-repeat center/cover;
  }
  .kv-city {
    background: url("../img/bg-kv-ground-pad.png") no-repeat center/cover;
  }
}
@media (min-aspect-ratio: 4/3) and (max-aspect-ratio: 16/9) {
  .kv-sky {
    background: url("../img/bg-kv-sky.png") no-repeat center/cover;
  }
  .kv-city {
    background: url("../img/bg-kv-ground.png") no-repeat center/cover;
  }
}
@media (min-aspect-ratio: 16/9) {
  .kv-sky {
    background: url("../img/bg-kv-sky.png") no-repeat center/cover;
  }
  .kv-city {
    background: url("../img/bg-kv-ground.png") no-repeat center/cover;
  }
}
.kv-content {
  width: 100%;
  height: 100%;
  margin: 0 auto;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding-top: 60px;
  position: relative;
}
@media screen and (min-width: 991px) {
  .kv-content {
    padding-top: 80px;
  }
}

.kv-slogan-img {
  width: 65%;
  margin: 0 auto 20px;
}

.kv-slogan {
  line-height: 1.375;
  font-weight: 900;
  font-style: italic;
  color: #fff;
  padding: 0 10px;
  position: relative;
  z-index: 1;
}
.kv-slogan span {
  color: #FFD957;
}

.kv-space {
  position: relative;
  height: 55vh;
  margin-top: -40%;
}

.kv-man {
  position: absolute;
  right: -30%;
}

@media (max-aspect-ratio: 9/16) {
  /* mb  */
  .kv-slogan-img {
    max-width: 300px;
  }
  .kv-slogan {
    font-size: 5vw;
  }
  .kv-man {
    transform: scale(1.3);
  }
}
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
  /* mb  */
  .kv-content {
    justify-content: flex-start;
    padding-top: 80px;
  }
  .kv-slogan-img {
    max-width: 300px;
  }
  .kv-slogan {
    font-size: 5vw;
  }
  .kv-man {
    transform: scale(1.3);
    position: absolute;
    right: -30%;
  }
}
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) and (min-width: 767px) {
  /* pad  */
  .kv-content {
    justify-content: flex-start;
    padding-top: 140px;
  }
  .kv-slogan-img {
    max-width: 500px;
    margin: 0 auto 30px;
  }
}
@media (min-aspect-ratio: 3/4) and (max-aspect-ratio: 4/3) {
  /* pad  */
  .kv-content {
    justify-content: flex-start;
    padding-top: 140px;
  }
  .kv-slogan-img {
    max-width: 350px;
    margin: 0 auto 30px;
  }
  .kv-slogan {
    font-size: 4.5vw;
  }
  .kv-space {
    margin-top: -50%;
  }
  .kv-man {
    transform: scale(0.9);
  }
}
@media (min-aspect-ratio: 4/3) and (max-aspect-ratio: 16/9) {
  /* pc  */
  .kv-slogan-block {
    margin-bottom: 10vh;
  }
  .kv-slogan-img {
    max-width: 420px;
    margin: 0 auto 30px;
  }
  .kv-slogan {
    font-size: 3vw;
  }
  .kv-space {
    position: absolute;
    width: 50%;
    height: 100vh;
    margin-top: 0;
    right: 0;
  }
  .kv-man {
    right: -50%;
    bottom: 2vh;
  }
}
@media (min-aspect-ratio: 16/9) {
  /* mb orientation  */
  .kv-content {
    justify-content: flex-start;
    padding-top: calc(50px + 5vh);
  }
  .kv-slogan-block {
    margin-bottom: 10vh;
  }
  .kv-slogan-img {
    width: 25%;
    margin: 0 auto 5vh;
  }
  .kv-slogan {
    font-size: 2.4vw;
  }
  .kv-space {
    position: absolute;
    width: 50%;
    height: auto;
    margin-top: 0;
    right: 0;
  }
  .kv-man {
    position: relative;
    right: -5%;
    transform: scale(1.1);
  }
}
@media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  /* pc  */
  .kv-content {
    justify-content: center;
    padding-top: 80px;
  }
  .kv-slogan-block {
    margin-bottom: 80px;
  }
  .kv-slogan-img {
    max-width: 430px;
    margin: 0 auto 45px;
  }
  .kv-man {
    position: relative;
    right: -5%;
    transform: scale(1.1);
  }
}
.kv-slogan-block {
  z-index: 999;
}

.kv-bar {
  background: rgb(62, 87, 209);
  background: linear-gradient(-90deg, rgba(62, 87, 208, 0.85) 8%, rgba(0, 127, 255, 0.85) 83%);
  width: calc(100% - 40px);
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 20px 10px;
  border-radius: 10px;
  z-index: 100;
}

.kv-bar.timeout {
  background: pink;
  background: transparent;
  width: 100%;
  padding: 20px 10px;
  border-radius: 0;
}

.kv-bar.timeout .kv-btn-apply,
.kv-btn-after-ipo {
  min-width: 10em;
  background: #ffe34d;
}

@media screen and (min-width: 767px) {
  .kv-bar.timeout .kv-btn-apply,
  .kv-btn-after-ipo {
    min-width: 15em;
  }
}
.kv-countdown {
  flex: 0 0 100%;
  font-size: 20px;
  line-height: 1.5em;
  font-weight: 500;
  color: #ffe34d;
}

.kv-bar-btn {
  width: calc(50% - 20px);
  display: inline-block;
  font-size: 18px;
  font-weight: 700;
  color: #18399f;
  padding: 0.75em 1em;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  transition: 0.3s ease;
}

.kv-btn-after-ipo {
  color: #ffffff;
  background: #cf0f20;
  pointer-events: none;
}

@media screen and (min-width: 1199px) {
  .kv-bar-btn:hover {
    opacity: 0.7;
  }
}
.kv-btn-remind {
  background: #ffe34d;
}

.kv-btn-remind a {
  color: #18399f;
}

.kv-btn-apply {
  background: #39e0ff;
}

@media (max-aspect-ratio: 9/16) {
  .kv-bar {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
    padding: 10px;
  }
  .kv-bar.timeout {
    bottom: 10vh;
  }
  .kv-bar-btn {
    padding: 0.5em 1em;
  }
}
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) {
  .kv-bar {
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
  }
  .kv-countdown {
    font-size: 6vw;
  }
  .kv-bar-btn {
    font-size: 4vw;
  }
}
@media (min-aspect-ratio: 9/16) and (max-aspect-ratio: 3/4) and (min-width: 767px) {
  /* pad  */
  .kv-bar {
    border-radius: 100px;
    padding: 30px 40px;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
  }
  .kv-bar-btn {
    width: 30%;
  }
  .kv-countdown {
    font-size: 4vw;
  }
  .kv-countdown br {
    display: none;
  }
  .kv-bar-btn {
    font-size: 3vw;
  }
}
@media (min-aspect-ratio: 3/4) and (max-aspect-ratio: 4/3) {
  /* pad  */
  .kv-bar {
    width: 85%;
    border-radius: 100px;
    padding: 20px 40px;
    position: absolute;
    bottom: 15px;
    left: 0;
    right: 0;
  }
  .kv-countdown {
    font-size: 3vw;
  }
  .kv-countdown br {
    display: none;
  }
  .kv-bar-btn {
    width: 30%;
    font-size: 2.5vw;
  }
}
@media (min-aspect-ratio: 4/3) and (max-aspect-ratio: 16/9) {
  /* pc  */
  .kv-bar {
    width: 85%;
    border-radius: 100px;
    padding: 20px 40px;
    flex-wrap: nowrap;
    gap: 20px;
  }
  .kv-countdown {
    flex: 1;
    font-size: 2.5vw;
    white-space: nowrap;
  }
  .kv-countdown br {
    display: none;
  }
  .kv-bar-btn {
    width: auto;
    font-size: 2vw;
    padding: 0.75em 2em;
  }
}
@media (min-aspect-ratio: 16/9) {
  /* mb orientation  */
  .kv-bar {
    width: auto;
    border-radius: 100px;
    padding: 10px 20px;
    flex-wrap: nowrap;
  }
  .kv-countdown {
    flex: 1;
    font-size: 2vw;
  }
  .kv-countdown br {
    display: none;
  }
  .kv-bar-btn {
    width: auto;
    font-size: 2vw;
    padding: 0.2em 1em;
  }
}
@media (min-aspect-ratio: 16/9) and (min-width: 1024px) {
  /* pc */
  .kv-bar {
    border-radius: 100px;
    padding: 20px 40px;
    flex-wrap: nowrap;
    gap: 20px;
  }
  .kv-countdown {
    flex: 1;
    font-size: 24px;
  }
  .kv-countdown br {
    display: none;
  }
  .kv-bar-btn {
    width: auto;
    font-size: 20px;
    padding: 0.5em 2em;
  }
}
@media screen and (max-width: 640px) {
  /* mb */
  .kv-bar.timeout .kv-btn-apply,
  .kv-btn-after-ipo {
    width: 70%;
  }
}
/* KV ---------------------------------------- */
/* Tab ---------------------------------------- */
.tab {
  cursor: pointer;
}

.tab-container {
  position: relative;
}

.tab-content {
  width: 100%;
  display: block;
  padding: 20px;
  background-color: #fff;
}

.tab-fade-enter-active,
.tab-fade-leave-active {
  transition: opacity 0.5s;
}

.tab-fade-enter,
.tab-fade-leave-to {
  opacity: 0;
  position: absolute;
  left: 0;
}

/* Tab ---------------------------------------- */
/* Section 1 ---------------------------------------- */
section.section1 {
  background-color: #92d9ff;
  position: relative;
}

section.section1:before {
  content: "";
  display: block;
  width: 80%;
  padding-bottom: 60.8%;
  position: absolute;
  background: url("../img/deco-trianglesky.png") no-repeat left/cover;
  right: 0;
  /* top: 2200px; */
  bottom: 50px;
}

@media screen and (min-width: 767px) {
  section.section1:before {
    width: 70%;
    padding-bottom: 53.2%;
    top: 1700px;
  }
}
@media screen and (min-width: 991px) {
  section.section1:before {
    width: 60%;
    padding-bottom: 45.6%;
    top: 1400px;
  }
}
@media screen and (min-width: 1199px) {
  section.section1:before {
    width: 55%;
    padding-bottom: 42%;
    top: 1300px;
  }
}
/* @media screen and (min-width: 1439px) {
  section.section1:before {
    top: 1300px;
  }
} */
@media screen and (min-width: 1599px) {
  section.section1:before {
    top: 1200px;
  }
}
.section1 .container {
  position: relative;
  z-index: 1;
}

.feature {
  margin-bottom: 40px;
}

@media screen and (min-width: 767px) {
  .feature {
    margin-bottom: 60px;
  }
}
.feature-row {
  display: flex;
  align-items: center;
  justify-content: center;
  flex-wrap: wrap;
  gap: 30px 0;
}

.feature-item {
  width: 100%;
  padding: 0 20px;
}

@media screen and (min-width: 767px) {
  .feature-item {
    width: 30%;
  }
}
@media screen and (min-width: 1199px) {
  /* .feature-item {
    width: 30%;
  } */
}
.feature-item:last-child {
  margin-bottom: 0;
}

.feature-icon {
  display: inline-block;
  width: 120px;
  height: 120px;
  margin-bottom: 10px;
}

@media screen and (min-width: 767px) {
  .feature-icon {
    margin-bottom: 30px;
  }
}
.feature-title {
  font-weight: 700;
  margin-bottom: 10px;
  color: #18399f;
}

@media screen and (min-width: 575px) {
  .feature-title {
    margin-bottom: 20px;
  }
}
.feature-description {
  line-height: 1.44em;
  color: #18399f;
}

.section1 .warning-text {
  margin-bottom: 60px;
}

@media screen and (min-width: 767px) {
  .section1 .warning-text {
    margin-bottom: 100px;
  }
}
.section1 .video-block {
  margin-bottom: 60px;
}

@media screen and (min-width: 767px) {
  .section1 .video-block {
    margin-bottom: 180px;
  }
}
.video-left {
  height: 100%;
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  margin-bottom: 60px;
}

@media screen and (min-width: 991px) {
  .video-left {
    align-items: flex-start;
  }
}
.video-text-wrap {
  color: #18399f;
  padding: 40px 30px;
  position: relative;
}

@media screen and (min-width: 767px) {
  .video-text-wrap {
    padding: 50px 58px;
  }
}
.video-title {
  font-size: 20px;
  margin-bottom: 10px;
}

@media screen and (min-width: 360px) {
  .video-title {
    font-size: 24px;
  }
}
@media screen and (min-width: 767px) {
  .video-title {
    font-size: 32px;
    margin-bottom: 20px;
  }
}
.video-description {
  font-size: 18px;
}

@media screen and (min-width: 360px) {
  .video-description {
    font-size: 22px;
  }
}
.video-star {
  width: 100%;
  position: absolute;
  z-index: 99;
  display: flex;
  align-items: center;
  gap: 15px;
}

@media screen and (min-width: 767px) {
  .video-star {
    gap: 30px;
  }
}
.video-star:before {
  content: "";
  width: 18px;
  height: 18px;
  display: block;
  background: url("../img/icon-star.svg") no-repeat center/cover;
}

.video-star:after {
  content: "";
  width: 50%;
  height: 1px;
  display: block;
  background: #194dcd;
}

.video-star-top {
  top: 0;
  left: 0;
}

.video-star-bottom {
  right: 0;
  bottom: 0;
  flex-direction: row-reverse;
}

.section1 .video {
  position: relative;
  width: 100%;
  padding-bottom: 56.25%;
  background: #252a7b;
  z-index: 1;
  border-radius: 10px;
  overflow: hidden;
}

.section1 .video .vframe {
  z-index: 1;
  position: absolute;
  left: 50%;
  top: 50%;
  width: 100%;
  height: 100%;
  transform: translate(-50%, -50%);
}

.section1 .video .vframe iframe {
  aspect-ratio: 16/9;
  height: 100%;
  width: 100%;
}

.section1 .video .play {
  cursor: pointer;
  z-index: 3;
  position: absolute;
  left: 50%;
  top: 50%;
  transform: translate(-50%, -50%);
  width: 100%;
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
}

@media screen and (min-width: 991px) {
  .section1 .video .play {
    transition: 0.5s ease transform;
  }
  .section1 .video .play:hover {
    transform: translate(-50%, -50%) scale(1.2);
  }
}
.section1 .video .play img {
  width: 60px;
}

@media screen and (min-width: 991px) {
  .section1 .video .play img {
    width: 80px;
  }
}
.feature-tab {
  position: relative;
  border-radius: 10px;
  overflow: clip;
  scroll-margin-top: 60px;
}

@media screen and (min-width: 991px) {
  .feature-tab {
    display: flex;
    flex-direction: row;
    scroll-margin-top: 90px;
  }
}
.feature-tab-left {
  width: 100%;
  position: sticky;
  top: 50px;
  z-index: 1;
}

@media screen and (min-width: 767px) {
  .feature-tab-left {
    position: relative;
    top: 0;
  }
}
@media screen and (min-width: 991px) {
  .feature-tab-left {
    width: 200px;
  }
}
.feature-tab-right {
  background-color: #fff;
  flex: 1;
  position: relative;
}

.feature-tab .tabs {
  width: 100%;
  display: flex;
  flex-direction: row;
}

@media screen and (min-width: 991px) {
  .feature-tab .tabs {
    height: 100%;
    flex-direction: column;
  }
}
.feature-tab .tab {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3dadfe;
  font-size: 18px;
  line-height: 1.33em;
  font-weight: 500;
  padding: 15px 7px;
  color: #fff;
  position: relative;
  transition: color 0.5s ease;
}

@media screen and (min-width: 991px) {
  .feature-tab .tab {
    font-size: 22px;
  }
}
.feature-tab .tab.active {
  color: #ffe34d;
  background: rgb(0, 127, 255);
  background: linear-gradient(90deg, rgb(0, 127, 255) 8%, rgb(62, 87, 208) 83%);
}

.feature-tab .tab:not(:last-child):before {
  content: "";
  display: block;
  width: 1px;
  height: calc(100% - 20px);
  background: #5cbdff;
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%);
}

.feature-tab .tab.no-divider:before {
  display: none;
}

@media screen and (min-width: 991px) {
  .feature-tab .tab:not(:last-child):before {
    width: calc(100% - 40px);
    height: 1px;
    top: auto;
    bottom: 0;
    left: 0;
    right: 0;
    margin: 0 auto;
  }
}
.feature-tab .tab: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 screen and (min-width: 991px) {
  .feature-tab .tab:after {
    width: 16px;
    height: 30px;
    top: 50%;
    bottom: auto;
    left: auto;
    right: -15px;
    transform: translateY(-50%);
  }
}
.feature-tab .tab.active:after {
  opacity: 1;
  bottom: -6px;
}

@media screen and (min-width: 991px) {
  .feature-tab .tab.active:after {
    right: -1px;
  }
}
.feature-tab .tab-content {
  padding: 30px 20px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

@media screen and (min-width: 767px) {
  .feature-tab .tab-content {
    min-height: 600px;
  }
  .feature-tab .tab-content.tab2 img {
    width: 85%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 991px) {
  .feature-tab .tab-content {
    padding: 30px 30px;
  }
}
@media screen and (min-width: 1199px) {
  .feature-tab .tab-content {
    padding: 60px 50px;
    min-height: 670px;
  }
}
.feature-tab-title {
  font-size: 18px;
  font-weight: 500;
  color: #18399f;
}

@media screen and (min-width: 575px) {
  .feature-tab-title {
    font-size: 22px;
    line-height: 48px;
  }
}
.feature-tab-subtitle {
  font-size: 18px;
  font-weight: 500;
  color: #18399f;
}
@media screen and (min-width: 575px) {
  .feature-tab-subtitle {
    font-size: 20px;
  }
}

.feature-tab-img-container {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-direction: column;
}

@media screen and (min-width: 768px) {
  .feature-tab-img-container {
    flex-direction: row;
  }
  .feature-tab-img2-2 {
    margin-top: 0px;
    margin-left: 20px;
  }
}
.feature-tab-img {
  width: 100%;
  margin: 40px auto 0;
}

.feature-tab-img1 {
  max-width: 800px;
}

.feature-tab-img2-1 {
  max-width: 628px;
}

.feature-tab-img2-2 {
  max-width: 628px;
}

.feature-tab-img3 {
  max-width: 442px;
}

.feature-tab-img4 {
  overflow-x: auto;
}

.feature-tab-img4 img {
  width: 720px;
}

@media screen and (min-width: 767px) {
  .feature-tab-img4 img {
    width: 100%;
  }
}
@media screen and (min-width: 991px) {
  .feature-tab-img1,
  .feature-tab-img4 {
    width: 90%;
  }
  .feature-tab-img2 {
    width: 70%;
  }
  .feature-tab-img3 {
    width: 50%;
  }
  .feature-tab-img4 {
    max-width: 795px;
  }
}
.feature-tab .warning-text {
  margin-bottom: 0;
}

section.section1 .container .timeline {
  display: flex;
  justify-content: space-between;
  text-align: center;
}

section.section1 .container .timeline .event {
  flex: 1;
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
}

section.section1 .container .timeline .event .detail {
  background: #194DCD;
  border-radius: 8px;
  color: #324554;
  width: 200px;
  max-width: 600px;
  /* 限制寬度 */
  position: relative;
}

section.section1 .container .timeline .event .detail .inner-detail {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  background: #fff;
  border-radius: 8px;
  overflow: hidden;
}

section.section1 .container .timeline .event .detail .title {
  font-size: 18px;
  /* 調整字體大小 */
  font-weight: bold;
  height: 75px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(to left, #194DCD, #007FFF);
  width: 100%;
  padding: 15px 0;
  color: #fff;
}

section.section1 .container .timeline .event .detail .date {
  font-size: 50px;
  /* 調整字體大小 */
  font-weight: bold;
  height: 90px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #fff;
  width: 100%;
  padding: 15px 30px 30px;
  color: #194DCD;
}

section.section1 .container .timeline .event:first-child .detail .title {
  background: #CF0F20;
}

section.section1 .container .timeline .event:first-child .detail .date {
  color: #CF0F20;
}

section.section1 .container .timeline .event .detail::after {
  content: "";
  position: absolute;
  bottom: -20px;
  left: 50%;
  transform: translateX(-50%);
  width: 0;
  height: 0;
  border-left: 20px solid transparent;
  border-right: 20px solid transparent;
  border-top: 20px solid #fff;
}

section.section1 .container .timeline .event .line {
  height: 4px;
  background: #194DCD;
  margin: 70px 0;
  /* 調整上下間距 */
  width: 100%;
  /* 確保寬度與 .detail 一致 */
  position: relative;
}

section.section1 .container .timeline .event .line::before {
  content: "";
  display: block;
  width: 25px;
  height: 25px;
  opacity: 1;
  top: calc(100% - 15px);
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  border-radius: 50%;
  background: #194DCD;
}

@media screen and (max-width: 767px) {
  section.section1 .container .timeline {
    display: block;
    padding-bottom: 20px;
  }
  section.section1 .container .timeline .event .detail {
    margin: 10px 0 10px 30px;
  }
  section.section1 .container .timeline .event .detail::after {
    display: none;
  }
  section.section1 .container .timeline .event .detail .title {
    height: auto;
    padding: 10px 0;
  }
  section.section1 .container .timeline .event .detail .date {
    font-size: 40px;
  }
  section.section1 .container .timeline .event .line {
    width: 4px;
    height: 100%;
    position: absolute;
    left: calc(50vw - 140px);
    top: 50%;
    transform: translateY(-50%);
    margin: 0;
  }
  section.section1 .container .timeline .event .line::before {
    top: calc(50% - 10px);
    left: 1.5px;
  }
}
.button-container {
  display: flex;
  justify-content: center;
  margin-top: 20px;
  position: relative;
}

.wheretobuy-button {
  background: linear-gradient(to left, #194DCD, #007FFF);
  color: white;
  padding: 15px 70px;
  border: none;
  border-radius: 27px;
  cursor: pointer;
  font-size: 20px;
  font-weight: bold;
  position: relative;
  overflow: hidden;
}

.wheretobuy-button::after {
  content: "";
  position: absolute;
  top: 50%;
  right: 0;
  transform: translateY(-50%) translateX(-150%);
  width: 0;
  height: 0;
  border-top: 8px solid transparent;
  border-bottom: 8px solid transparent;
  border-left: 12px solid #fff;
}

.popup-wrapper {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  width: 100vw;
  height: 100vh;
  background-color: rgba(0, 0, 0, 0.6);
  z-index: 99999;
}
.popup-wrapper .proportion {
  position: relative;
  max-height: 100%;
  padding: 1rem 0;
  overflow: auto;
}
.popup-wrapper .proportion .info-detail {
  padding: 30px 0;
  display: flex;
  width: 100%;
  justify-content: space-around;
}
@media screen and (max-width: 768px) {
  .popup-wrapper .proportion .info-detail {
    flex-direction: column;
    padding: 10px 0;
    align-items: center;
  }
}
.popup-wrapper .proportion .info-detail .chart-list {
  width: 50%;
}
@media screen and (max-width: 768px) {
  .popup-wrapper .proportion .info-detail .chart-list {
    padding: 6px;
    width: 100%;
  }
}
.popup-wrapper .proportion .info-detail .chart-list .data {
  display: flex;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 8px;
}
.popup-wrapper .proportion .info-detail .chart-list .data span:nth-child(1) {
  padding-left: 16px;
  margin-left: auto;
  text-align: left;
}
.popup-wrapper .proportion .info-detail .chart-list .data span:nth-child(2) {
  margin-right: auto;
  text-align: right;
  flex: auto;
}
@media screen and (max-width: 768px) {
  .popup-wrapper .proportion .info-detail .chart-list .data {
    padding: 0;
    margin: 8px 0 0 0;
  }
}
.popup-wrapper .proportion .info-detail .data {
  padding-left: 25px;
  margin-left: 20px;
}
.popup-wrapper .proportion .info-detail .data::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  margin-right: 10px;
}
.popup-wrapper .proportion .info-detail .data:nth-child(1)::before {
  background: #0088e4;
}
.popup-wrapper .proportion .info-detail .data:nth-child(2)::before {
  background: #ff6a00;
}
.popup-wrapper .proportion .info-detail .data:nth-child(3)::before {
  background: #005bac;
}
.popup-wrapper .proportion .info-detail .data:nth-child(4)::before {
  background: #ffd300;
}
.popup-wrapper .proportion .info-detail .data:nth-child(5)::before {
  background: #1799e2;
}
.popup-wrapper .proportion .info-detail .data:nth-child(6)::before {
  background: #ff8533;
}
.popup-wrapper .proportion .info-detail .data:nth-child(7)::before {
  background: #0b66b7;
}
.popup-wrapper .proportion .info-detail .data:nth-child(8)::before {
  background: #ffe266;
}
.popup-wrapper .proportion .info-detail .data:nth-child(9)::before {
  background: #2faae0;
}
.popup-wrapper .proportion .info-detail .data:nth-child(10)::before {
  background: #ff9750;
}
.popup-wrapper .proportion .info-detail .data:nth-child(11)::before {
  background: #1a73c4;
}
.popup-wrapper .proportion .info-detail .data:nth-child(12)::before {
  background: #ffe98a;
}
.popup-wrapper .proportion .info-detail .data:nth-child(13)::before {
  background: #47b6dd;
}
.popup-wrapper .proportion .info-detail .data:nth-child(14)::before {
  background: #ffa76c;
}
.popup-wrapper .proportion .info-detail .data:nth-child(15)::before {
  background: #2f80d1;
}
.popup-wrapper .proportion .info-detail .data:nth-child(16)::before {
  background: #fff1b6;
}
.popup-wrapper .proportion .info-detail .data:nth-child(17)::before {
  background: #5ec0db;
}
.popup-wrapper .proportion .info-detail .data:nth-child(18)::before {
  background: #ffb888;
}
.popup-wrapper .proportion .info-detail .data:nth-child(19)::before {
  background: #3c95e5;
}
.popup-wrapper .proportion .info-detail .data:nth-child(20)::before {
  background: #fff9de;
}
.popup-wrapper .proportion .info-detail .data:nth-child(21)::before {
  background: #3c95e5;
}
.popup-wrapper .proportion .info-detail .data:nth-child(22)::before {
  background: #ffb888;
}
.popup-wrapper .proportion .info-detail .data:nth-child(23)::before {
  background: #5ec0db;
}
.popup-wrapper .proportion .info-detail .data:nth-child(24)::before {
  background: #fff1b6;
}
.popup-wrapper .proportion .info-detail .data:nth-child(25)::before {
  background: #2f80d1;
}
.popup-wrapper .proportion .info-detail .data:nth-child(26)::before {
  background: #ffa76c;
}
.popup-wrapper .proportion .info-detail .data:nth-child(27)::before {
  background: #47b6dd;
}
.popup-wrapper .proportion .info-detail .data:nth-child(28)::before {
  background: #ffe98a;
}
.popup-wrapper .proportion .info-detail .data:nth-child(29)::before {
  background: #1a73c4;
}
.popup-wrapper .proportion .info-detail .data:nth-child(30)::before {
  background: #ff9750;
}
.popup-wrapper .proportion .info-detail .data:nth-child(31)::before {
  background: #2faae0;
}
.popup-wrapper .proportion .info-detail .data:nth-child(32)::before {
  background: #ffe266;
}
.popup-wrapper .proportion .info-detail .data:nth-child(33)::before {
  background: #0b66b7;
}
.popup-wrapper .proportion .info-detail .data:nth-child(34)::before {
  background: #ff8533;
}
.popup-wrapper .proportion .info-detail .data:nth-child(35)::before {
  background: #1799e2;
}
.popup-wrapper .proportion .info-detail .data:nth-child(36)::before {
  background: #ffd300;
}
.popup-wrapper .proportion .info-detail .data:nth-child(37)::before {
  background: #005bac;
}
.popup-wrapper .proportion .info-detail .data:nth-child(38)::before {
  background: #aaaaaa;
}
.popup-wrapper .proportion .info-detail .data:nth-child(39)::before {
  background: #666666;
}
.popup-wrapper .proportion .info-detail .data:nth-child(40)::before {
  background: #222222;
}
.popup-wrapper .proportion .info-detail .data span:nth-child(1) {
  margin-left: auto;
}
.popup-wrapper .proportion .info-detail .data span:nth-child(2) {
  margin-right: auto;
  text-align: right;
}
.popup-wrapper .canvas {
  flex: 1;
  min-width: 300px;
  max-width: 300px;
}
@media screen and (max-width: 1024px) {
  .popup-wrapper .canvas {
    min-width: 150px;
    max-width: 150px;
  }
}
@media screen and (max-width: 991px) {
  .popup-wrapper .canvas {
    min-width: 280px;
    max-width: 280px;
  }
}
@media screen and (max-width: 576px) {
  .popup-wrapper .canvas {
    min-width: 110px;
    max-width: 110px;
  }
}

.popup-sc {
  position: relative;
  width: 90%;
  max-width: 1200px;
  margin: 0 auto;
  background-color: #ffffff;
  padding: 50px;
  height: calc(100vh - 40px);
  max-height: 800px;
  top: 50%;
  transform: translateY(-50%);
}

.popup-sc button {
  position: absolute;
  width: 18px;
  height: 18px;
  top: 30px;
  right: 30px;
  background: url(../img/icon-close.svg) center center/100% no-repeat;
  cursor: pointer;
}

@media screen and (max-width: 768px) {
  .popup-sc {
    padding: 30px 25px 30px 30px;
  }
  .popup-sc button {
    top: 15px;
    right: 15px;
  }
}
.howToBuy-sale {
  height: 100%;
  overflow-y: auto;
  overflow-x: hidden;
}

.no-scroll {
  overflow: hidden;
}

/* Section 1 ---------------------------------------- */
/* Section 2 ---------------------------------------- */
.section2.buffett {
  background-color: #fff;
}

.buffett-method {
  margin-top: 50px;
}

.buffett-method > .row {
  gap: 40px;
}

@media screen and (min-width: 991px) {
  .buffett-method > .row {
    --bs-gutter-x: 2.5rem;
    gap: 0;
  }
}
.buffett-method-left {
  flex: 0 0 100%;
}

@media screen and (min-width: 991px) {
  .buffett-method-left {
    flex: 0 0 60%;
  }
}
@media screen and (min-width: 1199px) {
  .buffett-method-left {
    flex: 0 0 760px;
  }
}
.buffett-method-box {
  height: 100%;
  border-radius: 10px;
  border: 1px solid #3dadfe;
  box-shadow: 0 0 20px 0 rgba(0, 0, 0, 0.1);
  padding: 50px 40px 40px;
  position: relative;
}

@media screen and (min-width: 991px) {
  .buffett-method-box {
    padding: 70px 50px 50px;
  }
}
.buffett-method-title {
  width: 100%;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translate(-50%, -50%);
}

.buffett-method-title span {
  font-size: 18px;
  line-height: 1;
  font-weight: 700;
  color: #fff;
  border-radius: 30px;
  background-color: #3dadfe;
  padding: 8px 15px;
  white-space: nowrap;
}

@media screen and (min-width: 1199px) {
  .buffett-method-title span {
    font-size: 22px;
    padding: 12px 30px;
  }
}
.buffett-method-content {
  height: 100%;
  display: flex;
  align-items: center;
}

.buffett-method-right .buffett-method-content {
  width: 100%;
  margin: 0 auto;
}

@media screen and (min-width: 575px) {
  .buffett-method-right .buffett-method-content {
    max-width: 400px;
  }
}
@media screen and (min-width: 991px) {
  .buffett-method-right .buffett-method-content {
    max-width: auto;
  }
}
.buffett-method-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 75px;
}

@media screen and (min-width: 767px) {
  .buffett-method-row {
    flex-wrap: nowrap;
    gap: 20px;
  }
}
@media screen and (min-width: 1199px) {
  .buffett-method-row {
    gap: 15px;
  }
}
.buffett-method-col {
  flex: 0 0 100%;
}

@media screen and (min-width: 767px) {
  .buffett-method-col {
    flex: 1;
  }
  .buffett-method-arrow {
    flex: 0 0 10%;
  }
}
.buffett-method-icon-arrow {
  width: 80px;
  margin: 0 auto;
  transform: rotate(90deg);
}

@media screen and (min-width: 767px) {
  .buffett-method-icon-arrow {
    transform: rotate(0deg);
  }
}
.buffett-method-icon {
  width: 100%;
  max-width: 100px;
  margin: 0 auto 20px;
}

@media screen and (min-width: 575px) {
  .buffett-method-icon {
    max-width: 150px;
    margin: 0 auto 30px;
  }
}
.buffett-method-text {
  color: #18399f;
}

.buffett-method-text .txt-lg {
  font-weight: 700;
  margin-bottom: 10px;
}

/* Section 2 ---------------------------------------- */
/* Section 3 ---------------------------------------- */
section.section3 {
  background-color: #92d9ff;
  position: relative;
}

.section3:before {
  content: "";
  display: block;
  width: 250px;
  height: 60px;
  position: absolute;
  background: url("../img/s3-cloud.png") no-repeat right/cover;
  top: 0;
  left: 0;
  z-index: 1;
  transform: translate(0, -50%);
}

@media screen and (min-width: 767px) {
  .section3:before {
    width: 400px;
    height: 80px;
  }
}
@media screen and (min-width: 1199px) {
  .section3:before {
    width: 500px;
    height: 106px;
  }
}
@media screen and (min-width: 1399px) {
  .section3:before {
    width: 704px;
    height: 106px;
  }
}
.section3:after {
  content: "";
  display: block;
  width: 200px;
  height: 70px;
  position: absolute;
  background: url("../img/s3-cloud2.png") no-repeat right/cover;
  bottom: 0;
  right: 0;
}

@media screen and (min-width: 575px) {
  .section3:after {
    width: 464px;
    height: 145px;
  }
}
@media screen and (min-width: 1199px) {
  .section3:after {
    width: 664px;
    height: 208px;
    bottom: 20%;
  }
}
.cp-tab {
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  overflow: clip;
  scroll-margin-top: 60px;
  z-index: 1;
}

@media screen and (min-width: 991px) {
  .cp-tab {
    scroll-margin-top: 90px;
  }
}
.cp-tab .tabs {
  width: 100%;
  display: flex;
  position: sticky;
  top: 50px;
  z-index: 1;
}

@media screen and (min-width: 767px) {
  .cp-tab .tabs {
    position: relative;
    top: 0;
  }
}
.cp-tab .tab {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3dadfe;
  font-size: 18px;
  line-height: 1.33em;
  font-weight: 500;
  padding: 15px 7px;
  color: #fff;
  position: relative;
  transition: color 0.5s ease;
}

@media screen and (min-width: 991px) {
  .cp-tab .tab {
    font-size: 22px;
    padding: 30px 15px;
  }
}
.cp-tab .tab.active {
  color: #ffe34d;
  background: rgb(0, 127, 255);
  background: linear-gradient(90deg, rgb(0, 127, 255) 8%, rgb(62, 87, 208) 83%);
}

.cp-tab .tab: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 screen and (min-width: 991px) {
  .cp-tab .tab:after {
    width: 16px;
    height: 30px;
    bottom: -30px;
  }
}
.cp-tab .tab.active:after {
  opacity: 1;
  bottom: -8px;
}

.cp-tab .tab-content {
  padding: 30px;
}

@media screen and (min-width: 575px) {
  .cp-tab .tab-content {
    padding: 30px 50px;
  }
}
@media screen and (min-width: 991px) {
  .cp-tab .tab-content {
    padding: 60px 50px;
  }
  .cp-tab .tab-content2 img {
    max-width: 90%;
    margin: 0 auto;
  }
}
@media screen and (min-width: 1199px) {
  .cp-tab .tab-content {
    padding: 60px 100px;
  }
}
.cp-table-container {
  width: 100%;
  overflow-x: auto;
}

table.cp-table {
  width: 100%;
  min-width: 500px;
  margin-bottom: 30px;
}

@media screen and (min-width: 1199px) {
  table.cp-table {
    min-width: auto;
  }
}
.cp-table thead {
  background-color: #cbe5ff;
  color: #18399f;
}

.cp-table th,
.cp-table td {
  font-size: 18px;
  padding: 15px 10px;
  vertical-align: middle;
  text-align: center;
}

.cp-table tbody tr:nth-child(1) {
  color: #18399f;
}

.cp-table tbody tr:nth-child(2) {
  color: #1f9dfc;
}

.cp-table tbody td {
  font-weight: 700;
  border-bottom: 1px solid #cbe5ff;
}

.cp-table-tips {
  color: #ff7900;
  padding-left: 20px;
}

.cp-tab .cp-tab-subtitle {
  font-size: 18px;
  color: #18399f;
  margin-bottom: 53px;
}

@media screen and (min-width: 575px) {
  .cp-tab .cp-tab-subtitle {
    font-size: 22px;
  }
}
/* Section 3 ---------------------------------------- */
/* Section 4 ---------------------------------------- */
.file-tab {
  scroll-margin-top: 60px;
}

@media screen and (min-width: 991px) {
  .file-tab {
    scroll-margin-top: 90px;
  }
}
.file-tab .tabs {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  margin-bottom: 40px;
  position: sticky;
  top: 50px;
  z-index: 1;
  background-color: #fff;
}

@media screen and (min-width: 767px) {
  .file-tab .tabs {
    position: relative;
    top: 0;
  }
}
@media screen and (min-width: 991px) {
  .file-tab .tabs {
    margin-bottom: 80px;
  }
}
@media screen and (min-width: 575px) {
  .file-tab .tab {
    gap: 20px;
  }
}
.file-tab .tab {
  font-size: 18px;
  font-weight: 700;
  padding: 10px;
  color: #aaaaaa;
  position: relative;
  transition: all 0.5s ease;
}

@media screen and (min-width: 575px) {
  .file-tab .tab {
    flex: 0 0 auto;
  }
}
@media screen and (min-width: 991px) {
  .file-tab .tab {
    font-size: 22px;
    padding: 20px 25px;
  }
}
.file-tab .tab.active {
  color: rgb(0, 127, 255);
  background: -webkit-linear-gradient(0deg, rgb(0, 127, 255) 8%, rgb(62, 87, 208) 83%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.file-tab .tab:after {
  content: "";
  display: block;
  width: 100%;
  height: 2px;
  background: rgb(0, 127, 255);
  background: linear-gradient(90deg, rgb(0, 127, 255) 8%, rgb(62, 87, 208) 83%);
  position: absolute;
  bottom: -5px;
  left: 0;
  transition: all 0.5s ease;
  opacity: 0;
}

.file-tab .tab.active:after {
  bottom: 0;
  opacity: 1;
}

.file-table-container {
  width: 100%;
  overflow: hidden;
  border-radius: 10px;
  overflow-x: auto;
}

table.file-table {
  width: 100%;
  min-width: 500px;
  background-color: #cbe5ff;
  font-size: 16px;
}

@media screen and (min-width: 767px) {
  table.file-table {
    font-size: 18px;
  }
}
.file-table-title {
  background-color: #194dcd;
  color: #fff;
  font-weight: 700;
}

.file-table tr:nth-child(even) {
  background-color: #ecf3ff;
}

.file-table th {
  vertical-align: middle;
  text-align: center;
}

.file-table th,
.file-table td {
  padding: 10px 15px;
}

@media screen and (min-width: 1199px) {
  .file-table th,
  .file-table td {
    padding: 10px 30px;
  }
}
.file-table tbody {
  color: #18399f;
}

.file-table tr > *:not(:last-child) {
  border-right: 1px solid #fff;
}

@media screen and (min-width: 767px) {
  .file-table tr > *:not(:last-child) {
    width: 200px;
  }
}
.file-table .tips {
  font-size: 16px;
}

@media screen and (min-width: 767px) {
  .file-table .tips {
    margin-top: 16px;
  }
}
.file-table ul {
  list-style-type: disc;
  padding-left: 20px;
}

.file-fund .row {
  gap: 60px;
}

@media screen and (min-width: 991px) {
  .file-fund .row {
    --bs-gutter-x: 2.5rem;
    gap: 0;
  }
}
.file-fund .file-table {
  min-width: 100%;
}

.file-fund-head {
  font-weight: 700;
  margin-bottom: 10px;
}

.file-shareholding .row {
  gap: 60px;
}

@media screen and (min-width: 991px) {
  .file-shareholding .row {
    --bs-gutter-x: 2.5rem;
    gap: 0;
  }
  .file-shareholding .file-table {
    min-width: 100%;
  }
}
.file-shareholding-title {
  font-size: 18px;
  font-weight: 500;
  color: #18399f;
  margin-bottom: 40px;
}

@media screen and (min-width: 575px) {
  .file-shareholding-title {
    font-size: 22px;
  }
}
.file-shareholding-warning-text {
  text-align: left;
  font-size: 18px;
  line-height: 27px;
  color: #194dcd;
  margin-top: 32px;
}

.file-shareholding-img {
  width: 100%;
  max-width: 500px;
}

@media screen and (min-width: 991px) {
  .file-shareholding-img {
    max-width: 100%;
  }
}
.file-pdf-btns {
  gap: 30px;
  align-items: center;
  justify-content: center;
  margin-top: 30px;
}

@media screen and (min-width: 575px) {
  .file-pdf-btns {
    gap: 60px;
    margin-top: 60px;
  }
}
.file-pdf-btn {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  font-weight: 700;
  color: #194dcd;
}

@media screen and (min-width: 575px) {
  .file-pdf-btn {
    font-size: 24px;
    gap: 20px;
  }
}
@media screen and (min-width: 1199px) {
  .file-pdf-btn:hover {
    color: #3dadfe;
  }
}
.file-pdf-icon {
  width: 20px;
}

@media screen and (min-width: 575px) {
  .file-pdf-icon {
    width: 24px;
  }
}
/* Section 4 ---------------------------------------- */
/* Section 5 ---------------------------------------- */
section.section5 {
  background: rgb(52, 65, 169);
  background: linear-gradient(180deg, rgb(52, 65, 169) 0%, rgb(62, 87, 208) 20%, rgb(0, 127, 255) 48%, rgb(0, 192, 255) 78%, rgb(146, 217, 255) 93%);
}

.howToBuy .title {
  color: #ffe34d;
}

.howToBuy-tab {
  background-color: #fff;
  position: relative;
  border-radius: 10px;
  overflow: clip;
  scroll-margin-top: 60px;
}

@media screen and (min-width: 991px) {
  .howToBuy-tab {
    scroll-margin-top: 90px;
  }
}
.howToBuy-tab .tabs {
  width: 100%;
  display: flex;
  position: sticky;
  top: 50px;
  z-index: 1;
}

@media screen and (min-width: 767px) {
  .howToBuy-tab .tabs {
    position: relative;
    top: 0;
  }
}
.howToBuy-tab .tab {
  width: 100%;
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: #3dadfe;
  font-size: 18spx;
  line-height: 1.33em;
  font-weight: 500;
  padding: 15px 7px;
  color: #fff;
  position: relative;
  transition: color 0.5s ease;
}

@media screen and (min-width: 991px) {
  .howToBuy-tab .tab {
    font-size: 22px;
    padding: 30px 15px;
  }
}
.howToBuy-tab .tab.active {
  color: #3a56ad;
  background: #ffe34d;
}

.howToBuy-tab .tab: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 screen and (min-width: 991px) {
  .howToBuy-tab .tab:after {
    width: 16px;
    height: 30px;
    bottom: -30px;
  }
}
.howToBuy-tab .tab.active:after {
  opacity: 1;
  bottom: -8px;
}

.howToBuy-tab .tab-content {
  padding: 30px;
}

@media screen and (min-width: 575px) {
  .howToBuy-tab .tab-content {
    padding: 30px 50px;
  }
}
@media screen and (min-width: 991px) {
  .howToBuy-tab .tab-content {
    padding: 60px 50px;
  }
}
@media screen and (min-width: 1199px) {
  .howToBuy-tab .tab-content {
    padding: 60px 100px;
  }
}
.howToBuy-sale-title {
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  color: #18399f;
  margin-bottom: 20px;
  text-align: left;
  padding: 0 10px;
}

@media screen and (min-width: 575px) {
  .howToBuy-sale-title {
    margin-bottom: 40px;
    padding: 0 20px;
  }
}
.howToBuy-sale-row {
  display: flex;
  flex-wrap: wrap;
  text-align: left;
  gap: 20px 0;
}

@media screen and (min-width: 575px) {
  .howToBuy-sale-row {
    gap: 30px 0;
  }
}
.howToBuy-sale-col {
  width: 50%;
  padding: 0 10px;
  font-size: 18px;
  color: #18399f;
}

@media screen and (min-width: 575px) {
  .howToBuy-sale-col {
    padding: 0 20px;
    width: 33.33%;
  }
}
@media screen and (min-width: 991px) {
  .howToBuy-sale-col {
    width: 25%;
  }
}
@media screen and (min-width: 1199px) {
  .howToBuy-sale-col {
    width: 20%;
  }
}
.howToBuy-sale-divider {
  width: 100%;
  height: 1px;
  background-color: #ecf3ff;
  margin: 30px 0;
}

@media screen and (min-width: 991px) {
  .howToBuy-sale-divider {
    margin: 50px 0;
  }
}
.howToBuy-sale-tips {
  font-size: 18px;
  color: #18399f;
  margin-top: 60px;
  background-color: #ecf3ff;
  padding: 25px;
  border-radius: 10px;
}

@media screen and (min-width: 991px) {
  .howToBuy-sale-tips {
    padding: 40px;
  }
}
@media screen and (min-width: 1199px) {
  .howToBuy-sale-tips {
    text-align: center;
  }
}
.howToBuy-yuanta {
  display: flex;
  flex-direction: column;
  gap: 60px;
  font-size: 18px;
  line-height: 1.5em;
  color: #18399f;
}

.howToBuy-yuanta-title {
  margin-bottom: 20px;
}

@media screen and (min-width: 575px) {
  .howToBuy-yuanta-title {
    margin-bottom: 40px;
  }
}
.howToBuy-yuanta-text {
  margin-bottom: 10px;
}

.howToBuy-yuanta ul {
  list-style-type: decimal;
  padding-left: 20px;
}

.howToBuy-yuanta-btn-row {
  height: 100%;
  display: flex;
  gap: 20px;
  align-items: center;
  justify-content: flex-end;
  text-align: center;
}

.howToBuy-yuanta-btn-row .col:first-child .howToBuy-yuanta-btn-tips {
  color: #18399f;
}

.howToBuy-yuanta-btn-row .col:last-child .howToBuy-yuanta-btn-tips {
  color: #ff7900;
}

.howToBuy-yuanta-btn {
  display: block;
  width: 100%;
  font-size: 18px;
  font-weight: 700;
  padding: 10px 7px;
  border-radius: 100px;
  cursor: pointer;
  white-space: nowrap;
  color: #fff;
  margin-bottom: 10px;
  transition: 0.3s ease;
}

@media screen and (min-width: 575px) {
  .howToBuy-yuanta-btn {
    font-size: 20px;
    padding: 20px 15px;
    margin-bottom: 20px;
  }
}
@media screen and (min-width: 1199px) {
  .howToBuy-yuanta-btn:hover {
    opacity: 0.7;
  }
}
.howToBuy-yuanta-btn-apply {
  background: #c4c4c4;
  pointer-events: none;
}

.howToBuy-yuanta-btn-apply.active {
  background: #18399f;
  pointer-events: auto;
}

.howToBuy-yuanta-btn-account {
  background: #ff7900;
}

/* Section 5 ---------------------------------------- */
/* Warning ---------------------------------------- */
section.warning {
  color: #07206d;
  background-color: #92d9ff;
  line-height: 1.4em;
}

.warning .container {
  width: 90%;
  max-width: 1200px;
  padding: 40px 0 80px;
}

.warning-notice {
  padding-bottom: 30px;
  border-bottom: 1px solid #75b1ea;
}

.warning-notice ul {
  list-style-type: decimal;
  padding: 10px 0 0 20px;
}

.warning-cont p span {
  padding-right: 1em;
}

.warning-cont .info,
.warning-cont ul,
.warning-cont p.last {
  padding-top: 20px;
}

.warning-cont ul {
  display: flex;
  flex-direction: column;
  row-gap: 20px;
}

.warning u,
.warning .underline {
  text-decoration: underline;
  text-underline-offset: 0.125em;
}
.warning .lightblue {
  color: #194DCD;
}

/* Warning ---------------------------------------- */
/*---最近一次配息時程START---*/
/*輪播、顏色設定*/
:root {
  --swiper-navigation-color: #18399f;
  --default: #18399f;
}

.dividend-wrp .swiper .swiper-button-prev {
  left: 0;
}
.dividend-wrp .swiper .swiper-button-next {
  right: 0;
}
.dividend-wrp .swiper .swiper-navigation {
  transform: scale(0.8);
}
.dividend-wrp .swiper .swiper-button-disabled {
  opacity: 0;
}
.dividend-wrp .swiper-button-prev {
  left: -5px;
  transform: scale(0.8);
}
.dividend-wrp .swiper-button-next {
  right: -5px;
  transform: scale(0.8);
}
@media screen and (max-width: 899px) {
  .dividend-wrp .swiper-slide {
    transition: all 0.5s ease;
  }
  .dividend-wrp .swiper-slide-prev,
  .dividend-wrp .swiper-slide-next {
    opacity: 0.1;
  }
}

.dividend-wrp {
  position: relative;
  margin: 50px auto;
}
@media screen and (max-width: 899px) {
  .dividend-wrp {
    margin: 5vw auto;
  }
}
.dividend-wrp .dividend-subtitle {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
}
@media screen and (max-width: 899px) {
  .dividend-wrp .dividend-subtitle {
    font-size: 1.5rem;
    margin-bottom: 5vw;
  }
}
.dividend-wrp .dividend-container {
  padding: 50px 30px;
  height: -moz-fit-content;
  height: fit-content;
  justify-content: center;
}
@media screen and (max-width: 899px) {
  .dividend-wrp .dividend-container {
    padding: 7vw;
  }
}
.dividend-wrp .dividend-card {
  position: relative;
  padding: 0;
  border-radius: 12px;
  background: #FFF;
  color: #18399f;
  overflow: hidden;
  border: 1px solid #3dadfe;
}
@media screen and (max-width: 899px) {
  .dividend-wrp .dividend-card {
    padding: 0;
    max-width: inherit;
  }
}
.dividend-wrp .dividend-card .title {
  text-align: center;
  font-size: 1.25rem;
  font-weight: 600;
  line-height: 1.5;
  padding: 10px 0 10px;
  white-space: nowrap;
  color: #FFF;
  background-color: #3dadfe;
}
@media screen and (max-width: 899px) {
  .dividend-wrp .dividend-card .title {
    font-size: 4vw;
  }
}
.dividend-wrp .dividend-card .day {
  padding: 10px 20px;
}
.dividend-wrp .dividend-card .day .day-item {
  display: grid;
  border-bottom: 1px solid #d6e1ef;
  grid-template-columns: auto auto;
}
@media screen and (max-width: 899px) {
  .dividend-wrp .dividend-card .day .day-item {
    font-size: 3vw;
  }
}
.dividend-wrp .dividend-card .day .day-item:last-child {
  border-bottom: none;
}
.dividend-wrp .dividend-card .day .day-item > div {
  padding: 10px 0;
  display: grid;
  line-height: 1.2;
  align-items: center;
}
@media screen and (max-width: 899px) {
  .dividend-wrp .dividend-card .day .day-item > div {
    padding: 2vw 0;
    font-size: 3.5vw;
    line-height: 1.5;
  }
}
.dividend-wrp .dividend-card .day .day-item .left {
  text-align: left;
}
.dividend-wrp .dividend-card .day .day-item .right {
  margin-left: 10px;
  justify-content: right;
}

/*---最近一次配息時程END---*/
/*--- 基金基本資料 START ---*/
section.info {
  background: #fff;
  padding-bottom: 100px;
  background-size: 52%;
}
@media screen and (max-width: 1024px) {
  section.info {
    padding-bottom: 60px;
  }
}
@media screen and (max-width: 768px) {
  section.info {
    background-size: 300%;
    background-position: 0 60%;
  }
}
section.info p.title {
  font-size: 20px;
  line-height: 28px;
  font-weight: bold;
}
section.info .content {
  padding-top: 0;
  color: #18399f;
}
section.info .content .detail {
  display: flex;
  flex-wrap: wrap;
  padding: 0 40px 40px;
}
@media screen and (max-width: 800px) {
  section.info .content .detail {
    display: block;
    padding: 20px 0;
  }
}
section.info .content .detail .list {
  flex: 1;
  min-width: 50%;
  display: flex;
  align-items: stretch;
  margin: 1px 0;
  margin-top: 2px;
}
@media screen and (max-width: 1200px) {
  section.info .content .detail .list {
    min-width: 50%;
  }
}
@media screen and (max-width: 768px) {
  section.info .content .detail .list {
    margin-top: 3px;
  }
}
section.info .content .detail .list p {
  display: flex;
  align-items: center;
  justify-content: center;
  background: #dcecff;
  padding: 15px;
  min-width: 120px;
  text-align: center;
  border: 2px solid #dcecff;
}
@media screen and (max-width: 768px) {
  section.info .content .detail .list p {
    padding: 11px 15px;
  }
}
section.info .content .detail .list span {
  padding: 15px;
  display: flex;
  align-items: center;
  text-align: left;
  height: 100%;
  width: 100%;
  border-bottom: 2px solid #dcecff;
}
@media screen and (max-width: 768px) {
  section.info .content .detail .list span {
    padding: 12px 15px;
  }
}
section.info .content .info {
  align-items: stretch;
}
section.info .content .info .proportion {
  position: relative;
}
section.info .content .info .proportion:nth-child(1) {
  flex: 5;
}
section.info .content .info .proportion:nth-child(2) {
  flex: 6;
}
section.info .content .info .proportion .title {
  margin: 20px 0;
}
section.info .content .info .proportion .info-detail {
  padding: 30px 0;
  display: flex;
}
@media screen and (max-width: 768px) {
  section.info .content .info .proportion .info-detail {
    padding: 10px 0;
  }
}
section.info .content .info .proportion .info-detail .chart-list {
  width: 100%;
  flex: 2;
}
section.info .content .info .proportion .info-detail .chart-list .data {
  display: flex;
  text-align: left;
  align-items: center;
  justify-content: space-between;
  position: relative;
  padding: 8px;
}
section.info .content .info .proportion .info-detail .chart-list .data span {
  flex-grow: 1;
}
@media screen and (max-width: 768px) {
  section.info .content .info .proportion .info-detail .chart-list .data {
    padding: 6px;
  }
}
@media screen and (max-width: 991px) {
  section.info .content .info-chart {
    flex-wrap: wrap;
    flex-direction: column;
  }
}
section.info .content .info-chart .proportion {
  position: relative;
}
section.info .content .info-chart .proportion .title {
  color: #18399f;
}
section.info .content .info-chart .proportion:first-child {
  padding-right: 50px;
}
@media screen and (max-width: 1024px) {
  section.info .content .info-chart .proportion:first-child {
    padding-right: 20px;
  }
}
@media screen and (max-width: 991px) {
  section.info .content .info-chart .proportion:first-child {
    padding-right: 0;
  }
}
section.info .content .info-chart .proportion:last-child {
  padding-left: 50px;
}
@media screen and (max-width: 1024px) {
  section.info .content .info-chart .proportion:last-child {
    padding-left: 20px;
  }
}
@media screen and (max-width: 991px) {
  section.info .content .info-chart .proportion:last-child {
    padding-left: 0;
  }
}
section.info .content .info-chart .proportion .canvas {
  flex: 1;
  min-width: 200px;
  max-width: 200px;
}
@media screen and (max-width: 1024px) {
  section.info .content .info-chart .proportion .canvas {
    min-width: 150px;
    max-width: 150px;
  }
}
@media screen and (max-width: 991px) {
  section.info .content .info-chart .proportion .canvas {
    min-width: 200px;
    max-width: 200px;
  }
}
@media screen and (max-width: 576px) {
  section.info .content .info-chart .proportion .canvas {
    min-width: 110px;
    max-width: 110px;
  }
}
section.info .content .info-chart .proportion .info-detail .chart-list {
  padding-left: 70px;
}
@media screen and (max-width: 1024px) {
  section.info .content .info-chart .proportion .info-detail .chart-list {
    padding-left: 80px;
  }
}
@media screen and (max-width: 991px) {
  section.info .content .info-chart .proportion .info-detail .chart-list {
    padding-left: 80px;
  }
}
@media screen and (max-width: 576px) {
  section.info .content .info-chart .proportion .info-detail .chart-list {
    padding-left: 30px;
  }
}
section.info .content .info-chart .proportion .info-detail .chart-list .data {
  padding-left: 25px;
  align-items: baseline;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data::before {
  content: "";
  position: absolute;
  top: 50%;
  left: 0;
  transform: translateY(-50%);
  display: block;
  width: 10px;
  height: 10px;
  border-radius: 100px;
  margin-right: 10px;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(1)::before {
  background: #0088e4;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(2)::before {
  background: #ff6a00;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(3)::before {
  background: #005bac;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(4)::before {
  background: #ffd300;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(5)::before {
  background: #1799e2;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(6)::before {
  background: #ff8533;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(7)::before {
  background: #0b66b7;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(8)::before {
  background: #ffe266;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(9)::before {
  background: #2faae0;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(10)::before {
  background: #ff9750;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(11)::before {
  background: #1a73c4;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(12)::before {
  background: #ffe98a;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(13)::before {
  background: #47b6dd;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(14)::before {
  background: #ffa76c;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(15)::before {
  background: #2f80d1;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(16)::before {
  background: #fff1b6;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(17)::before {
  background: #5ec0db;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(18)::before {
  background: #ffb888;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(19)::before {
  background: #3c95e5;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(20)::before {
  background: #fff9de;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(21)::before {
  background: #3c95e5;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(22)::before {
  background: #ffb888;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(23)::before {
  background: #5ec0db;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(24)::before {
  background: #fff1b6;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(25)::before {
  background: #2f80d1;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(26)::before {
  background: #ffa76c;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(27)::before {
  background: #47b6dd;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(28)::before {
  background: #ffe98a;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(29)::before {
  background: #1a73c4;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(30)::before {
  background: #ff9750;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(31)::before {
  background: #2faae0;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(32)::before {
  background: #ffe266;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(33)::before {
  background: #0b66b7;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(34)::before {
  background: #ff8533;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(35)::before {
  background: #1799e2;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(36)::before {
  background: #ffd300;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(37)::before {
  background: #005bac;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(38)::before {
  background: #aaaaaa;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(39)::before {
  background: #666666;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data:nth-child(40)::before {
  background: #222222;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data span:nth-child(1) {
  margin-left: auto;
}
section.info .content .info-chart .proportion .info-detail .chart-list .data span:nth-child(2) {
  margin-right: auto;
  text-align: right;
}
section.info .content .info-topHoldings {
  margin-top: 50px;
}
@media screen and (max-width: 768px) {
  section.info .content .info-topHoldings .proportion .title {
    margin-top: 30px;
  }
}
@media screen and (max-width: 991px) {
  section.info .content .info-topHoldings .proportion .info-detail {
    padding-top: 5px;
  }
}
@media screen and (max-width: 576px) {
  section.info .content .info-topHoldings .proportion .info-detail {
    padding-top: 0;
  }
}
section.info .content .info-topHoldings .proportion .info-detail .chart-list {
  display: grid;
  grid: repeat(5, auto)/auto-flow;
}
@media screen and (max-width: 768px) {
  section.info .content .info-topHoldings .proportion .info-detail .chart-list {
    display: block;
  }
}
section.info .content .info-topHoldings .proportion .info-detail .chart-list .data {
  padding: 20px 10px;
  margin: 0 36px;
  border-bottom: 1px solid #cccccc;
}
@media screen and (max-width: 768px) {
  section.info .content .info-topHoldings .proportion .info-detail .chart-list .data {
    width: 90%;
    padding: 20px 0;
    margin: 0 auto;
  }
}
section.info .content .info-topHoldings .proportion .info-detail .chart-list .data span:nth-child(1) {
  margin-left: auto;
}
section.info .content .info-topHoldings .proportion .info-detail .chart-list .data span:nth-child(2) {
  margin-right: auto;
  text-align: right;
}
section.info .content .info-bottom {
  display: flex;
  justify-content: space-between;
}
section.info .content .info-bottom button {
  display: flex;
  align-items: center;
  font-size: 14px;
  background: transparent;
  color: #38a8fd;
  /* &::after {
        content: url('../img/select-arrow.svg');
        transform: rotate(-90deg);
    } */
}
section.info .content .info-bottom button:hover {
  cursor: pointer;
}
section.info .content .info-bottom button img {
  transform: rotate(-90deg);
  width: -moz-fit-content;
  width: fit-content;
}
section.info .content .notice {
  color: #3a56ad;
  font-size: 14px;
}
section.info .info-bottom {
  display: flex;
  justify-content: space-between;
}
section.info .info-bottom button {
  display: flex;
  align-items: center;
  font-size: 14px;
  background: transparent;
  color: #38a8fd;
  /* &::after {
          content: url('../img/select-arrow.svg');
          transform: rotate(-90deg);
      } */
}
section.info .info-bottom button:hover {
  cursor: pointer;
}
section.info .info-bottom button img {
  transform: rotate(-90deg);
}

/*--- 基金基本資料 END ---*//*# sourceMappingURL=main.css.map */